@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700&display=swap");

:root {
  --color-bg: #faf7f2;
  --color-bg-alt: #f5efe7;
  --color-surface: #ffffff;
  --color-primary: #2ec27e;
  --color-primary-soft: rgba(46, 194, 126, 0.12);
  --color-primary-strong: #24b671;
  --color-text: #1f2a33;
  --color-text-muted: #6b7280;
  --color-border: #e7e1d8;
  --color-shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.06);
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 48px;
  --radius-1: 8px;
  --radius-2: 12px;
  --radius-3: 16px;
  --speed: 180ms;
}

body,
button,
input,
textarea {
  font-family: "Nunito", sans-serif;
}
body {
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  font-size: 16px;
}
a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--speed) ease;
}
a:hover {
  color: var(--color-primary-strong);
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Header */
.venturifypro-header {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.venturifypro-header__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.venturifypro-header__brand-mark {
  height: 32px;
  width: 32px;
}
.venturifypro-header__brand-text {
  font-weight: 700;
  color: var(--color-text);
}
.venturifypro-header__nav-list {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.venturifypro-header__nav-link {
  padding: 6px 10px;
  border-radius: 10px;
  color: var(--color-text);
  transition:
    background-color var(--speed) ease,
    color var(--speed) ease;
}
.venturifypro-header__nav-link:hover {
  background: var(--color-primary-soft);
  color: var(--color-primary-strong);
}

/* Sections container */
.venturifypro-main > section,
.venturifypro-legal > section {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-5) var(--space-4);
}

/* Hero */
.venturifypro-hero {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-3);
  box-shadow: var(--color-shadow-soft);
  text-align: center;
}
.venturifypro-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 14px;
}
.venturifypro-hero__tag {
  background: var(--color-primary-soft);
  color: var(--color-primary-strong);
  padding: 6px 10px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 13px;
}
.venturifypro-hero__title {
  font-size: 34px;
  line-height: 1.2;
  margin: 10px 0 12px;
}
.venturifypro-hero__lead {
  max-width: 820px;
  margin: 0 auto 18px;
  color: var(--color-text);
}
.venturifypro-hero__cta-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
}
.venturifypro-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--color-primary);
  color: #fff;
  border: 1px solid var(--color-primary);
  box-shadow: 0 6px 16px rgba(46, 194, 126, 0.25);
  transition:
    background-color var(--speed) ease,
    transform var(--speed) ease,
    box-shadow var(--speed) ease;
}
.venturifypro-hero__cta:hover {
  background: var(--color-primary-strong);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(46, 194, 126, 0.28);
}
.venturifypro-hero__cta + .venturifypro-hero__cta {
  background: transparent;
  color: var(--color-primary);
  box-shadow: none;
}
.venturifypro-hero__cta + .venturifypro-hero__cta:hover {
  background: var(--color-primary-soft);
  color: var(--color-primary-strong);
}

/* Onboarding */
.venturifypro-onboarding__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.venturifypro-onboarding__step {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 16px;
  transition: transform var(--speed) ease;
}
.venturifypro-onboarding__step:hover {
  transform: translateY(-2px);
}
.venturifypro-onboarding__step-title {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
}
.venturifypro-onboarding__step-desc {
  display: block;
  color: var(--color-text-muted);
}

/* Levels */
.venturifypro-levels__intro {
  max-width: 900px;
  margin: 0 auto 12px;
  text-align: center;
}
.venturifypro-levels__list {
  margin: 0 0 10px 18px;
}
.venturifypro-levels__item {
  margin-bottom: 6px;
}
.venturifypro-levels__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.venturifypro-levels__tag {
  background: var(--color-bg-alt);
  padding: 6px 10px;
  border-radius: 10px;
  color: var(--color-text);
}

/* Mechanics */
.venturifypro-mechanics__row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: center;
}
.venturifypro-mechanics__image-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--color-shadow-soft);
}
.venturifypro-mechanics__content {
}
.venturifypro-mechanics__title {
  margin: 0 0 10px;
  font-size: 26px;
}
.venturifypro-mechanics__bullets {
  margin: 0;
  padding-left: 18px;
}
.venturifypro-mechanics__bullet {
  margin: 6px 0;
}

/* Description */
.venturifypro-description__text {
  max-width: 900px;
  margin: 0 auto;
  color: var(--color-text);
}
.venturifypro-description__text p {
  margin: 0 0 10px;
}

/* Features */
.venturifypro-features__title {
  font-size: 28px;
  margin: 0 0 14px;
  text-align: center;
}
.venturifypro-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.venturifypro-features__item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 18px;
  transition:
    transform var(--speed) ease,
    box-shadow var(--speed) ease;
}
.venturifypro-features__item:hover {
  transform: translateY(-2px);
  box-shadow: var(--color-shadow-soft);
}
.venturifypro-features__item-title {
  margin: 0 0 6px;
  font-size: 18px;
}
.venturifypro-features__item-desc {
  margin: 0;
  color: var(--color-text-muted);
}

/* Gallery */
.venturifypro-gallery__title {
  font-size: 28px;
  margin: 0 0 10px;
  text-align: center;
}
.venturifypro-gallery__intro {
  max-width: 880px;
  margin: 0 auto 16px;
  text-align: center;
  color: var(--color-text-muted);
}
.venturifypro-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.venturifypro-gallery__item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  transition:
    transform var(--speed) ease,
    box-shadow var(--speed) ease;
}
.venturifypro-gallery__item:hover {
  transform: translateY(-2px);
  box-shadow: var(--color-shadow-soft);
}
.venturifypro-gallery__img {
  width: 100%;
  display: block;
}
.venturifypro-gallery__caption {
  display: block;
  padding: 10px 12px;
  color: var(--color-text-muted);
  font-size: 14px;
}

/* FAQ */
.venturifypro-faq__title {
  text-align: center;
  font-size: 28px;
  margin: 0 0 16px;
}
.venturifypro-faq__accordion {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}
.venturifypro-faq__item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
}
.venturifypro-faq__question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 14px 16px;
  font-weight: 700;
  color: var(--color-text);
  cursor: pointer;
  transition: background-color var(--speed) ease;
}
.venturifypro-faq__question:hover {
  background: var(--color-primary-soft);
}
.venturifypro-faq__answer {
  display: none;
  padding: 0 16px 14px;
  color: var(--color-text-muted);
}
.venturifypro-faq__question[aria-expanded="true"] + .venturifypro-faq__answer {
  display: block;
}

/* Testimonials */
.venturifypro-testimonials__title {
  text-align: center;
  font-size: 28px;
  margin: 0 0 16px;
}
.venturifypro-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.venturifypro-testimonials__card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 18px;
  box-shadow: var(--color-shadow-soft);
}
.venturifypro-testimonials__quote {
  margin: 0 0 8px;
  font-style: italic;
}
.venturifypro-testimonials__persona {
  color: var(--color-text-muted);
  font-weight: 600;
}

/* CTA */
.venturifypro-cta {
  background: linear-gradient(180deg, #f6fff9, rgba(246, 255, 249, 0));
  border: 1px solid var(--color-border);
  border-radius: 16px;
  text-align: center;
}
.venturifypro-cta__title {
  margin: 0 0 10px;
  font-size: 26px;
}
.venturifypro-cta__desc {
  max-width: 760px;
  margin: 0 auto 14px;
  color: var(--color-text-muted);
}
.venturifypro-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #fff;
  border: 1px solid var(--color-primary);
  padding: 12px 18px;
  border-radius: 12px;
  transition:
    background-color var(--speed) ease,
    transform var(--speed) ease;
}
.venturifypro-cta__button:hover {
  background: var(--color-primary-strong);
  transform: translateY(-1px);
}

/* Footer */
.venturifypro-footer {
  border-top: 1px solid var(--color-border);
  background: var(--color-surface);
  padding: 18px 20px;
}
.venturifypro-footer__nav-list {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
}
.venturifypro-footer__nav-link {
  color: var(--color-text-muted);
  transition: color var(--speed) ease;
}
.venturifypro-footer__nav-link:hover {
  color: var(--color-primary-strong);
}
.venturifypro-footer__copyright {
  color: var(--color-text-muted);
  font-size: 14px;
}

/* Legal pages */
.venturifypro-legal__inner {
  max-width: 920px;
  margin: 0 auto;
}
.venturifypro-legal__title {
  margin: 0 0 10px;
  font-size: 28px;
}
.venturifypro-legal__subtitle {
  margin: 0 0 8px;
  font-size: 20px;
}
.venturifypro-legal__section {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
}
.venturifypro-legal__text {
  margin: 0 0 8px;
  color: var(--color-text);
}
.venturifypro-legal__list {
  margin: 8px 0 0 18px;
}
.venturifypro-legal__item {
  margin: 6px 0;
}

/* Contact */
.venturifypro-reach__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.venturifypro-reach__title {
  margin: 0 0 8px;
  font-size: 30px;
}
.venturifypro-reach__lead {
  margin: 0 0 16px;
  color: var(--color-text-muted);
}
.venturifypro-reach__group {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 14px;
}
.venturifypro-reach__group-title {
  margin: 0 0 6px;
  font-size: 20px;
}
.venturifypro-reach__group-desc {
  margin: 0 0 10px;
  color: var(--color-text-muted);
}
.venturifypro-reach__rows {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.venturifypro-reach__row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 10px;
  align-items: center;
}
.venturifypro-reach__label {
  color: var(--color-text-muted);
}
.venturifypro-reach__value a {
  text-decoration: underline;
}

/* Cookie consent */
.privacy-pane {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 16px;
  width: min(960px, calc(100% - 32px));
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--color-shadow-soft);
  border-radius: 14px;
  z-index: 9999;
  overflow: hidden;
}
.privacy-pane--hidden {
  display: none;
}
.privacy-pane__header {
  padding: 16px;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg);
}
.privacy-pane__badge {
  display: inline-block;
  background: var(--color-primary-soft);
  color: var(--color-primary-strong);
  padding: 4px 8px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 6px;
}
.privacy-pane__title {
  margin: 4px 0 6px;
  font-size: 20px;
}
.privacy-pane__desc {
  margin: 0 0 6px;
  color: var(--color-text-muted);
}
.privacy-pane__body {
  padding: 14px 16px;
}
.privacy-pane__categories-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.privacy-pane__category {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 12px;
  background: var(--color-surface);
}
.privacy-pane__cat-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.privacy-pane__cat-title {
  font-size: 14px;
}
.privacy-pane__cat-status {
  color: var(--color-text-muted);
  font-size: 12px;
}
.privacy-pane__cat-desc {
  margin: 0;
  color: var(--color-text-muted);
}
.privacy-pane__switch {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.privacy-pane__switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.privacy-pane__slider {
  position: relative;
  width: 44px;
  height: 24px;
  background: #d7dde3;
  border-radius: 20px;
  transition: background-color var(--speed) ease;
}
.privacy-pane__slider:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  transition: transform var(--speed) ease;
}
.privacy-pane__switch input:checked + .privacy-pane__slider {
  background: var(--color-primary);
}
.privacy-pane__switch input:checked + .privacy-pane__slider:after {
  transform: translateX(20px);
}
.privacy-pane__privacy-link {
  display: inline-block;
  margin-top: 8px;
  font-weight: 600;
}
.privacy-pane__actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  padding: 12px 16px;
  border-top: 1px solid var(--color-border);
  background: var(--color-bg);
}
.privacy-pane__btn {
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-text);
  cursor: pointer;
  transition:
    background-color var(--speed) ease,
    color var(--speed) ease,
    transform var(--speed) ease;
}
.privacy-pane__btn:hover {
  transform: translateY(-1px);
}
.privacy-pane__btn--accept {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}
.privacy-pane__btn--accept:hover {
  background: var(--color-primary-strong);
}
.privacy-pane__btn--save {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.privacy-pane__btn--save:hover {
  background: var(--color-primary-soft);
}
.privacy-pane__btn--reject {
  background: transparent;
}

/* Responsive */
@media (max-width: 1199px) {
  .venturifypro-onboarding__steps,
  .venturifypro-features__grid,
  .venturifypro-gallery__grid,
  .venturifypro-testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .venturifypro-mechanics__row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
@media (max-width: 767px) {
  .venturifypro-header {
    padding: 10px 14px;
  }
  .venturifypro-header__nav-list {
    gap: 12px;
    overflow-x: auto;
  }
  .venturifypro-hero__title {
    font-size: 28px;
  }
  .venturifypro-hero__cta {
    width: 100%;
  }
  .venturifypro-onboarding__steps,
  .venturifypro-features__grid,
  .venturifypro-gallery__grid,
  .venturifypro-testimonials__grid {
    grid-template-columns: 1fr;
  }
  .venturifypro-reach__row {
    grid-template-columns: 1fr;
  }
  .privacy-pane {
    width: calc(100% - 20px);
    bottom: 10px;
  }
}
