/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:    #0F2D23;
  --green:   #16A34A;
  --light-green: #6BCB77;
  --off-white: #F2F4F3;
  --white:   #ffffff;
  --text:    #1a1a1a;
  --text-muted: #5a6a60;
  --radius:  12px;
  --shadow:  0 4px 24px rgba(15,45,35,.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: all .25s ease;
  border: 2px solid transparent;
  letter-spacing: .02em;
}

.btn--primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn--primary:hover { background: #128a3e; border-color: #128a3e; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(22,163,74,.35); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn--ghost:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

.btn--outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn--outline:hover { background: var(--green); color: var(--white); }

.btn--nav {
  background: var(--green);
  color: var(--white);
  padding: 10px 24px;
  font-size: .875rem;
}
.btn--nav:hover { background: #128a3e; }

.btn--lg { padding: 16px 48px; font-size: 1rem; }

/* ===== NAVBAR ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #ffffff;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e8ede9;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}

.nav__left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--dark);
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s;
}
.nav__phone svg { color: var(--green); }
.nav__phone:hover { color: var(--green); }

.nav__logo-img {
  height: 64px;
  width: auto;
  display: block;
  object-fit: contain;
}



.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a:not(.btn) {
  color: var(--dark);
  font-size: .9rem;
  font-weight: 500;
  transition: color .2s;
}
.nav__links a:not(.btn):hover { color: var(--green); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .3s;
}

.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid #e8ede9;
  padding: 16px 24px 24px;
  gap: 16px;
}
.nav__mobile a {
  color: var(--dark);
  font-weight: 500;
  font-size: .95rem;
  padding: 8px 0;
  border-bottom: 1px solid #f0f4f1;
}
.nav__mobile.open { display: flex; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a1f18 0%, #0F2D23 45%, #16A34A22 100%);
  z-index: 0;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(22,163,74,.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(107,203,119,.07) 0%, transparent 60%);
}

/* Two-column split */
.hero__split {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 100px 24px 80px;
  width: 100%;
}

/* LEFT column */
.hero__content { max-width: 540px; }

.hero__eyebrow {
  display: inline-block;
  background: rgba(107,203,119,.15);
  border: 1px solid rgba(107,203,119,.3);
  color: var(--light-green);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero__headline {
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 20px;
}

.hero__sub {
  font-size: 1rem;
  color: rgba(255,255,255,.72);
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero__trust {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.75);
  font-size: .875rem;
  font-weight: 500;
}

.trust-icon { color: var(--light-green); }

.hero__down-btn { font-size: .85rem; padding: 11px 24px; }

/* RIGHT column — form card */
.hero__form-wrap {
  background: rgba(255,255,255,.97);
  border-radius: 18px;
  padding: 36px 32px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

.hero__form-eyebrow {
  text-align: center;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e8ede9;
}

.hero-form__radio-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 16px;
}

.hero-form__radio-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .07em;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.4;
}

.hero-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.hero-form__submit {
  margin-top: 20px;
  text-align: center;
}

/* Shared form field styles (used in hero form too) */
.hero__form-wrap .form__field input,
.hero__form-wrap .form__field select,
.hero__form-wrap .form__field--full input,
.hero__form-wrap .form__field--full select {
  width: 100%;
  background: #f5f8f6;
  border: 1.5px solid #e0e8e4;
  border-radius: 50px;
  padding: 12px 18px;
  font-family: 'Poppins', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--text);
  outline: none;
  transition: border-color .2s, background .2s;
  appearance: none;
  -webkit-appearance: none;
}

.hero__form-wrap .form__field input::placeholder { color: #8a9e94; }
.hero__form-wrap .form__field input:focus,
.hero__form-wrap .form__field select:focus {
  border-color: var(--green);
  background: var(--white);
}

.hero__form-wrap .form__field--full {
  margin-bottom: 12px;
  position: relative;
}
.hero__form-wrap .form__field--full select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a9e94' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 40px;
}

/* Radio styles (shared) */
.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  user-select: none;
}
.radio-option input[type="radio"] { display: none; }
.radio-custom {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 2px solid #ccc;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
  transition: border-color .2s;
}
.radio-option input[type="radio"]:checked + .radio-custom { border-color: var(--green); }
.radio-option input[type="radio"]:checked + .radio-custom::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
}
.req { color: #e53e3e; }

/* ===== HOW-IT-WORKS BANNER ===== */
.how-banner {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  margin-bottom: 0;
}

.how-banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.how-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15,45,35,.35) 0%, rgba(15,45,35,.15) 100%);
}

#how-it-works {
  padding-top: 0;
}

#how-it-works .section__eyebrow {
  margin-top: 48px;
}

/* ===== STATS BAND ===== */
.stats-band {
  background: var(--green);
  padding: 40px 0;
}

.stats-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 0;
}

.stat {
  padding: 16px 24px;
  border-right: 1px solid rgba(255,255,255,.2);
}
.stat:last-child { border-right: none; }

.stat__num {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.stat__label {
  font-size: .8rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* ===== SECTIONS ===== */
.section {
  padding: 96px 0;
}

.section--dark {
  background: var(--dark);
}

.section--teal {
  background: #0d2419;
}

.section--form {
  background: var(--off-white);
}

.section__eyebrow {
  display: inline-block;
  color: var(--green);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section--dark .section__eyebrow,
.section--teal .section__eyebrow { color: var(--light-green); }

.section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 56px;
  color: var(--text);
}

.section--dark .section__title,
.section--teal .section__title { color: var(--white); }

/* ===== STEPS ===== */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.step {
  flex: 1;
  text-align: center;
  padding: 40px 32px;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid rgba(22,163,74,.12);
  transition: transform .3s, box-shadow .3s;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.step__number {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--green);
  margin-bottom: 12px;
  opacity: .6;
}

.step__icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}

.step p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.step__arrow {
  font-size: 1.5rem;
  color: var(--light-green);
  align-self: center;
  padding: 0 16px;
  flex-shrink: 0;
  opacity: .6;
}

/* ===== BENEFITS ===== */
.benefits__layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
}

.benefits__image-wrap {
  position: sticky;
  top: 100px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
  min-height: 480px;
}

.benefits__image {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Tablet */
@media (max-width: 960px) {
  .benefits__layout {
    grid-template-columns: 1fr;
  }
  .benefits__image-wrap {
    position: static;
    min-height: 360px;
    height: 360px;
    width: 100%;
  }
  .benefits__image {
    min-height: 360px;
    height: 360px;
    width: 100%;
    object-position: center 20%;
  }
}

/* Mobile */
@media (max-width: 700px) {
  .benefits__image-wrap {
    min-height: 260px;
    height: 260px;
  }
  .benefits__image {
    min-height: 260px;
    height: 260px;
  }
}
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(107,203,119,.12);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: background .3s, border-color .3s;
}
.benefit-card:hover { background: rgba(107,203,119,.08); border-color: rgba(107,203,119,.3); }

.benefit-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.benefit-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
}

/* ===== PROGRAMS ===== */
.programs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.program-card {
  background: var(--off-white);
  border: 1px solid rgba(22,163,74,.15);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  transition: transform .3s, box-shadow .3s;
}
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.program-card--featured {
  background: var(--dark);
  border-color: var(--green);
  color: var(--white);
}

.program-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  white-space: nowrap;
}

.program-card__icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.program-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--dark);
}
.program-card--featured h3 { color: var(--white); }

.program-card p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.program-card--featured p { color: rgba(255,255,255,.7); }

.program-card ul {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.program-card li {
  font-size: .85rem;
  color: var(--text-muted);
}
.program-card--featured li { color: rgba(255,255,255,.75); }

/* ===== TESTIMONIALS ===== */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(107,203,119,.12);
  border-radius: var(--radius);
  padding: 32px;
}

.testimonial__quote {
  font-size: .9rem;
  color: rgba(255,255,255,.75);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial__quote::before { content: '\201C'; color: var(--light-green); font-size: 1.4rem; line-height: 0; vertical-align: -.3em; margin-right: 4px; }

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .8rem;
  flex-shrink: 0;
}

.testimonial__author strong {
  display: block;
  color: var(--white);
  font-size: .9rem;
}
.testimonial__author span {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}

/* ===== CONTACT FORM (hero-embedded) ===== */
/* Styles live in the hero__form-wrap block above */

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  padding: 56px 0 0;
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer__brand p {
  color: rgba(255,255,255,.5);
  font-size: .85rem;
  margin-top: 8px;
}

.footer__wordmark {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0;
}

.footer__logo-veri {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
}

.footer__logo-path {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--light-green);
}

.footer__logo-sub {
  display: block;
  width: 100%;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--light-green);
  margin-top: 2px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__links a {
  color: rgba(255,255,255,.6);
  font-size: .875rem;
  transition: color .2s;
}
.footer__links a:hover { color: var(--light-green); }

.footer__contact a {
  display: block;
  color: var(--light-green);
  font-size: .9rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.footer__bottom {
  text-align: center;
  padding: 20px 24px;
}
.footer__bottom p {
  font-size: .78rem;
  color: rgba(255,255,255,.3);
}

/* ===== SECTION TITLE CENTER ===== */
.section__title { text-align: left; }
#how-it-works .section__title,
#how-it-works .section__eyebrow,
.section--teal .section__title,
.section--teal .section__eyebrow { text-align: center; display: block; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .benefits__grid,
  .programs__grid,
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .stats-band__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat { border-bottom: 1px solid rgba(255,255,255,.15); }
  .stat:nth-child(3), .stat:nth-child(4) { border-bottom: none; }
}

@media (max-width: 900px) {
  .hero__split {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 90px 24px 60px;
  }
  .hero__content { max-width: 100%; }
  .hero__form-wrap { max-width: 560px; margin: 0 auto; width: 100%; }
}

@media (max-width: 700px) {
  .nav__links { display: none; }
  .nav__phone { display: none; }
  .nav__burger { display: flex; }

  .steps {
    flex-direction: column;
    gap: 16px;
  }
  .step__arrow { transform: rotate(90deg); align-self: center; padding: 8px 0; }

  .benefits__grid,
  .programs__grid,
  .testimonials__grid { grid-template-columns: 1fr; }

  .stats-band__grid { grid-template-columns: repeat(2, 1fr); }

  .hero-form__radio-row,
  .hero-form__row { grid-template-columns: 1fr; }

  .hero__headline { font-size: 2.2rem; }
  .hero__form-wrap { padding: 28px 20px; }

  .footer__inner { flex-direction: column; align-items: flex-start; }

  .hero-form__submit { text-align: center; }
  .hero-form__submit .btn { width: 100%; }
}
