/* ===== DESIGN TOKENS ===== */
:root {
  --green: #1C4230;
  --green-mid: #2A5C42;
  --green-light: #3A7055;
  --cream: #F5F0E8;
  --cream-dark: #EDE8DC;
  --cream-deep: #E0D9CC;
  --maroon: #7B2333;
  --maroon-dark: #5E1A26;
  --white: #FFFFFF;
  --text-dark: #1A1A1A;
  --text-mid: #3D3D3D;
  --text-muted: #6B6B6B;
  --text-light: #9A9A9A;
  --shadow-soft: 0 4px 24px rgba(28,66,48,0.10);
  --shadow-md: 0 8px 40px rgba(28,66,48,0.14);
  --shadow-lg: 0 16px 60px rgba(28,66,48,0.18);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
font-family: "Fields", serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== UTILITY ===== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px;
}
.container--wide {
  max-width: 1500px;
}
@media (max-width: 1024px) { .container { padding: 0 32px; } }
@media (max-width: 768px) { .container { padding: 0 20px; } }

.tag {
  display: inline-block;
  /* font-family: 'Helvetica Neue', Arial, sans-serif; */
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  padding: 0 0 12px 0;
  opacity: 0.75;
}
.tag--light { color: var(--cream); opacity: 0.65; }

/* ===== ANIMATION CLASSES ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(0.4,0,0.2,1), transform 0.75s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.40s; }
.reveal-delay-5 { transition-delay: 0.50s; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(245,240,232,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(28,66,48,0.10);
  transition: var(--transition);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 48px;
}
.nav__logo {
    font-family: "Fields", serif;
  /* font-family: 'Helvetica Neue', Arial, sans-serif; */
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--green);
  text-transform: uppercase;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav__links li a {
    font-family: "Fields", serif;
  /* font-family: 'Helvetica Neue', Arial, sans-serif; */
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav__links li a:hover { color: var(--green); }
.nav__ctas {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  /* font-family: 'Helvetica Neue', Arial, sans-serif; */
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 10px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: "Fields", serif;
  white-space: nowrap;
}
.btn--green {
  background: var(--green);
  color: var(--cream);
}
.btn--green:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(28,66,48,0.3);
}
.btn--maroon {
  background: var(--maroon);
  color: var(--white);
}
.btn--maroon:hover {
  background: var(--maroon-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(123,35,51,0.3);
}
.btn--outline-cream {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(245,240,232,0.45);
}
.btn--outline-cream:hover {
  background: rgba(245,240,232,0.12);
  border-color: rgba(245,240,232,0.7);
}
.btn--lg {
  font-size: 14px;
  padding: 14px 32px;
  border-radius: 10px;
  /* margin-bottom:-80px; */
}
.btn--xl {
  font-size: 15px;
  padding: 16px 40px;
  border-radius: 12px;
}
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__inner { padding: 0 24px; }
}
@media (max-width: 480px) {
  .nav__ctas { gap: 8px; }
  .btn { font-size: 12px; padding: 9px 16px; }
}

/* ── HERO ── */
  .hero {
    padding-top: 52px;
    padding-bottom: 20px;
    min-height: 60vh;
    background: url('../images/herobg.png') center/cover no-repeat;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    /* background:  */
      radial-gradient(ellipse 60% 70% at 70% 50%, rgba(45,106,79,0.6) 0%, transparent 60%),
      radial-gradient(ellipse 40% 60% at 20% 80%, rgba(123,30,45,0.15) 0%, transparent 50%);
  }

  .hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    /* background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E"); */
    background-size: 200px 200px;
  }

  .hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
  }

  .hero-eyebrow {
   font-family: "Fields", serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #d1ab2a;
    margin-bottom: 24px;
    display: block;
  }

  .hero h1 {
    font-family: "Fields", serif;
    font-size: clamp(40px, 5vw, 65px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--cream);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
  }

  .hero-subtext {
 font-family: "Fields", serif;
    font-size: 18px;
    color: rgba(250,247,240,0.7);
    line-height: 1.7;
    margin-bottom: 30px;
  }

  .hero-tagline {
    font-family: "Fields", serif;
    font-size: 13px;
    color: rgba(250,247,240,0.5);
    margin-bottom: 40px;
    /* font-style: italic; */
  }

  .hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .btn-primary {
  font-family: "Fields", serif;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 16px 32px;
    background: var(--green-light);
    color: var(--cream);
    border: 1.5px solid var(--green-light);
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
    display: inline-block;
  }

  .btn-primary:hover {
    background: #3A8064;
    border-color: #3A8064;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(27,67,50,0.4);
  }

  .btn-secondary {
  font-family: "Fields", serif;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 16px 32px;
    background: var(--maroon);
    color: var(--cream);
    border: 1.5px solid var(--maroon);
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
    display: inline-block;
  }

  .btn-secondary:hover {
    background: var(--maroon-light);
    border-color: var(--maroon-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(123,30,45,0.4);
  }

  .hero-image-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-image-frame {
    width: 100%;
    max-width: 520px;
    aspect-ratio: 1/1;
    /* background: linear-gradient(135deg, rgba(45,106,79,0.3), rgba(201,168,76,0.1)); */
    border-radius: var(--radius-xl);
    border: 1px solid rgba(201,168,76,0.2);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-xl);
  }

  .hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 40px;
    /* background: linear-gradient(180deg, rgba(27,67,50,0.2) 0%, rgba(27,67,50,0.8) 100%); */
  }

  .hero-badge {
    position: absolute;
    bottom: 32px;
    left: -20px;
    background: var(--cream);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    border: var(--border-gold);
  }

  .hero-badge-label {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
    margin-bottom: 4px;
  }

  .hero-badge-value {
   font-family: "Fields", serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--green);
    display: block;
  }

  .hero-badge-sub {
    font-size: 11px;
    color: var(--text-muted);
    display: block;
  }
/* ===== SECTION BASE ===== */
section { padding: 70px 0; }
.section-eyebrow {
  font-family: "Fields", serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #0e472a;
  opacity: 0.65;
  margin-bottom: 16px;
  display: block;
}
.section-title {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.16;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.section-title--center { text-align: center; }
.section-lead {
 font-family: "Fields", serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 680px;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.section-lead--center {
  text-align: center;
  margin: 0 auto 48px;
}

/* ===== SECTION 2 – THE PROBLEM ===== */
.s2 {
  background: var(--cream);
}
.s2__intro {
  text-align: center;
  margin-bottom: 64px;
}
.s2__intro .section-title { max-width: 680px; margin: 0 auto 16px; }
.s2__intro .section-lead { text-align: center; }

.s2__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.s2__card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid rgba(28,66,48,0.08);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}
.s2__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.s2__card-icon {
  width: 40px; height: 40px;
  background: var(--cream);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 18px;
}
.s2__card-title {
font-family: "Fields", serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.s2__card-text {
font-family: "Fields", serif;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.s2__callout {
  background: var(--maroon);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 32px;
  text-align: center;
font-family: "Fields", serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.s2__card-icon {
  width: 72px;
  height: 72px;
  /* margin: 0 auto 24px; */
  display: flex;
  /* align-items: center; */
  /* justify-content: center; */
  border-radius: 50%;

  background: rgba(201, 168, 104, 0.08);
  border: 1px solid rgba(201, 168, 104, 0.25);

  color: #c9a868;
  font-size: 28px;

  transition: all 0.4s ease;
}

.s2__card:hover .s2__card-icon {
  transform: translateY(-5px);
  background: rgba(201, 168, 104, 0.15);
  border-color: rgba(201, 168, 104, 0.45);
  box-shadow: 0 10px 30px rgba(201, 168, 104, 0.15);
}


@media (max-width: 1024px) { .s2__grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 576px) { .s2__grid { grid-template-columns: 1fr; } }

/* ===== SECTION 3 – OPPORTUNITY DASHBOARD ===== */
.s3 {
  background: var(--cream-dark);
}
.s3__head {
  text-align: center;
  margin-bottom: 56px;
}
.s3__dashboard {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
.s3__feature {
  grid-column: 1;
  grid-row: 1 / 3;
  background: #0e472a;
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.s3__feature::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  /* background: rgba(245,240,232,0.06); */
}
.s3__feature-eyebrow {
  font-family: "Fields", serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.55);
  margin-bottom: 20px;
}
.s3__feature-label {
  background: rgba(245,240,232,0.12);
  border: 1px solid rgba(245,240,232,0.2);
  border-radius: 8px;
  padding: 10px 16px;
  font-family: "Fields", serif;
  font-size: 16px;
  color: rgba(245,240,232,0.85);
  display: inline-block;
  margin-bottom: 32px;
}
.s3__feature-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 12px;
  color: var(--cream);
}
.s3__feature-sub {
 font-family: "Fields", serif;
  font-size: 13px;
  color: rgba(245,240,232,0.65);
  line-height: 1.6;
}
.s3__stat {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(28,66,48,0.07);
  transition: var(--transition);
}
.s3__stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.s3__stat--accent {
  background:#0e472a;
  color: var(--cream);
}
.s3__stat-label {
 font-family: "Fields", serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.s3__stat--accent .s3__stat-label {
  color: rgba(245,240,232,0.55);
}
.s3__stat-value {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 6px;
}
.s3__stat--accent .s3__stat-value { color: var(--cream); }
.s3__stat-desc {
  font-family: "Fields", serif;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}
.s3__stat--accent .s3__stat-desc { color: rgba(245,240,232,0.65); }
.s3__callout {
  grid-column: 1 / -1;
  background: var(--maroon);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 32px;
  text-align: center;
 font-family: "Fields", serif;
  /* font-style: italic; */
  letter-spacing: 0.01em;
}
@media (max-width: 1024px) {
  .s3__dashboard { grid-template-columns: 1fr 1fr; }
  .s3__feature { grid-column: 1 / -1; grid-row: auto; min-height: 280px; }
}
@media (max-width: 576px) {
  .s3__dashboard { grid-template-columns: 1fr; }
  .s3__callout { grid-column: 1; }
}

/* ===== SECTION 4 – INTRODUCING NATUF ===== */
.s4 {
  background: var(--cream);
}
.s4__head {
  text-align: center;
  margin-bottom: 56px;
}
.s4__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.s4__card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid rgba(28,66,48,0.08);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}
.s4__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.s4__card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.s4__card-text {
 font-family: "Fields", serif;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}
.s4__compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.s4__compare-col {
  border-radius: var(--radius-md);
  padding: 36px 32px;
}
.s4__compare-col--left {
  background: var(--white);
  border: 1px solid rgba(28,66,48,0.10);
  box-shadow: var(--shadow-soft);
}
.s4__compare-col--right {
  background: #0e472a;
  box-shadow: var(--shadow-md);
}
.s4__compare-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
}
.s4__compare-col--right .s4__compare-title { color: var(--cream); }
.s4__compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.s4__compare-list li {
  font-family: "Fields", serif;
  font-size: 13px;
  color: var(--text-mid);
  display: flex; align-items: flex-start; gap: 10px;
  line-height: 1.5;
}
.s4__compare-col--right .s4__compare-list li { color: rgba(245,240,232,0.82); }
.s4__compare-list li::before {
  content: '×';
  font-size: 14px;
  font-weight: 700;
  color: var(--maroon);
  flex-shrink: 0;
  margin-top: 1px;
}
.s4__compare-col--right .s4__compare-list li::before {
  content: '✓';
  color: rgba(245,240,232,0.8);
}


/* form */



/* ── FORM SECTION ── */
  .section-form {
    padding: 100px 0;
    background: var(--cream);
  }

  .form-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }

  .form-left h2 {
   font-family: "Fields", serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    color: var(--green);
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .form-left p {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.7;
  }

  .premium-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: var(--border);
    box-shadow: var(--shadow-lg);
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
  }

  .form-input {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid rgba(27,67,50,0.15);
    border-radius: 10px;
   font-family: "Fields", serif;
    font-size: 14px;
    color: var(--text-dark);
    background: var(--cream);
    transition: all 0.2s;
    outline: none;
  }

  .form-input:focus {
    border-color: var(--green);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(27,67,50,0.08);
  }

  .form-select {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid rgba(27,67,50,0.15);
    border-radius: 10px;
   font-family: "Fields", serif;
    font-size: 14px;
    color: var(--text-dark);
    background: var(--cream);
    transition: all 0.2s;
    outline: none;
    appearance: none;
    cursor: pointer;
  }

  .form-select:focus {
    border-color: var(--green);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(27,67,50,0.08);
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .btn-form-submit {
    width: 100%;
   font-family: "Fields", serif;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 18px 32px;
    background: var(--maroon);
    color: var(--cream);
    border: 1.5px solid var(--maroon);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s;
    margin-top: 8px;
  }

  .btn-form-submit:hover {
    background: var(--maroon-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(123,30,45,0.4);
  }

/*  */


@media (max-width: 1024px) { .s4__grid { grid-template-columns: 1fr; } }
@media (max-width: 768px) { .s4__compare { grid-template-columns: 1fr; } }

/* ===== SECTION 5 – FOUNDATION ===== */
.s5 {
  background:
    linear-gradient(
      rgba(10, 11, 10, 0.55),
      rgba(19, 19, 19, 0.55)
    ),
    url('../images/img2.png') center/cover no-repeat;

  color: var(--cream);
}
.s5__head { text-align: center; margin-bottom: 56px; }
.s5__head .section-title { color: var(--cream); }
.s5__head .section-lead { color: rgba(245,240,232,0.72); margin: 0 auto 0; }
.s5__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.s5__card {
  background: rgba(245,240,232,0.07);
  border: 1px solid rgba(245,240,232,0.12);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  transition: var(--transition);
}
.s5__card:hover {
  background: rgba(245,240,232,0.12);
  transform: translateY(-3px);
}
.s5__card-title {
  font-family: "Fields", serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.55);
  margin-bottom: 12px;
}
.s5__card-text {
  font-family: "Fields", serif;
  font-size: 14px;
  color: rgba(245,240,232,0.80);
  line-height: 1.65;
}


/*  */
 /* ── SECTION 12: WINDOW OF OPPORTUNITY ── */
  .section-window {
    padding: 100px 0;
    background: var(--green);
    position: relative;
    overflow: hidden;
  }

  .section-window::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 30% 50%, rgba(45,106,79,0.4), transparent);
  }

  .window-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }

  .window-left {
    /* content */
  }

  .window-left h2 {
    font-family: "Fields", serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: var(--cream);
    line-height: 1.15;
    margin-bottom: 20px;
  }

  .window-left p {
    font-size: 14px;
    color: rgba(250,247,240,0.75);
    line-height: 1.75;
    margin-bottom: 16px;
  }

  .window-list {
    list-style: none;
    margin-top: 28px;
  }

  .window-list li {
    font-size: 13px;
    color: rgba(250,247,240,0.8);
    padding: 10px 0;
    border-bottom: 1px solid rgba(250,247,240,0.08);
    display: flex;
    gap: 12px;
    align-items: flex-start;
  }

  .window-list li::before {
    content: '→';
    color: var(--gold);
    flex-shrink: 0;
  }

  .window-right {
    /* stats */
  }

  .window-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
  }

  .window-stat {
    background: rgba(250,247,240,0.06);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    transition: all 0.3s;
  }

  .window-stat:hover {
    background: rgba(250,247,240,0.1);
  }

  .window-stat .w-val {
    font-family: "Fields", serif;
    font-size: 30px;
    font-weight: 700;
    color: #ffeabb;
    display: block;
    margin-bottom: 4px;
  }

  .window-stat .w-label {
    font-size: 11px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  .btn-window {
    display: inline-block;
   font-family: "Fields", serif;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 18px 36px;
    background: var(--maroon);
    color: var(--cream);
    border: 1.5px solid var(--maroon);
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
    margin-top: 24px;
    width: 100%;
    text-align: center;
  }

  .btn-window:hover {
    background: var(--maroon-light);
    border-color: var(--maroon-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(123,30,45,0.5);
  }

/* faq */
/* ── FAQ ── */
  .section-faq {
    padding: 70px 0;
    background: var(--cream-mid);
  }

  .faq-header {
    text-align: center;
    margin-bottom: 56px;
  }

  .faq-header h2 {
   font-family: "Fields", serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: var(--green);
    margin-bottom: 16px;
  }

  .faq-list {
    max-width: 840px;
    margin: 0 auto;
  }

  .faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    border: var(--border);
    overflow: hidden;
    transition: all 0.3s;
  }

  .faq-item:hover { box-shadow: var(--shadow-sm); }

  .faq-q {
    padding: 22px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Fields", serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--green);
    user-select: none;
  }

  .faq-toggle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(27,67,50,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
    font-size: 14px;
    color: var(--green);
  }

  .faq-item.open .faq-toggle {
    background: var(--green);
    color: var(--cream);
    transform: rotate(45deg);
  }

  .faq-a {
    padding: 0 28px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.35s ease;
  }

  .faq-item.open .faq-a {
    max-height: 300px;
    padding: 0 28px 22px;
  }

  .faq-a p {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.7;
    border-top: 1px solid rgba(27,67,50,0.08);
    padding-top: 16px;
  }





@media (max-width: 1024px) { .s5__grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 576px) { .s5__grid { grid-template-columns: 1fr; } }

/* ===== SECTION 6 – FORMATS ===== */
.s6 {
  background: var(--cream-dark);
}
.s6__head { text-align: center; margin-bottom: 56px; }
.s6__formats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.s6__format {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  border: 1px solid rgba(28,66,48,0.08);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}
.s6__format:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.s6__format-icon {
  width: 44px; height: 44px;
  background: var(--cream-dark);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.s6__format-name {
font-family: "Fields", serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.s6__format-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.s6__format-range {
 font-family: "Fields", serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 12px;
}
.s6__format-desc {
 font-family: "Fields", serif;
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.6;
}
.s6__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}
.s6__tag {
 font-family: "Fields", serif;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--cream-dark);
  color: var(--text-mid);
}
.s6__note {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(28,66,48,0.08);
  padding: 16px 24px;
 font-family: "Fields", serif;
  font-size: 12.5px;
  color: var(--text-muted);
  /* font-style: italic; */
  text-align: center;
}
@media (max-width: 1024px) { .s6__formats { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 576px) { .s6__formats { grid-template-columns: 1fr; } }

/* ===== SECTION 7 – FRANCHISE ECOSYSTEM ===== */
.s7 {
  background: var(--cream);
}
.s7__head { text-align: center; margin-bottom: 56px; }
.s7__head .section-title em {
  /* font-style: italic; */
  color: var(--green);
}
.s7__carousel-wrap {
  overflow: hidden;
  position: relative;
}
.s7__carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 20px;
}
.s7__carousel::-webkit-scrollbar { display: none; }
.s7__slide {
  flex: 0 0 320px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid rgba(28,66,48,0.08);
  box-shadow: var(--shadow-soft);
  scroll-snap-align: start;
  transition: var(--transition);
}
/* .s7__slide:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
} */
.s7__slide--featured {
  background: #0e472a;
  border-color: var(--green);
}
.s7__slide-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}
.s7__slide--featured .s7__slide-icon { background: rgba(245,240,232,0.15); }
.s7__slide-title {
  font-family: "Fields", serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.s7__slide--featured .s7__slide-title { color: rgba(245,240,232,0.55); }
.s7__slide-heading {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}
.s7__slide--featured .s7__slide-heading { color: var(--cream); }
.s7__slide-text {
 font-family: "Fields", serif;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}
.s7__slide--featured .s7__slide-text { color: rgba(245,240,232,0.72); }
.s7__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.s7__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cream-deep);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.s7__dot.active { background: var(--green); width: 24px; border-radius: 4px; }

/* ===== SECTION 8 – WHY DIFFERENT ===== */
.s8 {
  background: var(--cream-dark);
}
.s8__head { text-align: center; margin-bottom: 56px; }
.s8__head .section-title em {  color: var(--green); }
.s8__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.s8__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid rgba(28,66,48,0.08);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.s8__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.s8__card-num {
font-family: "Fields", serif;
  font-size: 72px;
  font-weight: 900;
  line-height: 0.9;
  color: var(--cream-dark);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.s8__card-icon {
  width: 44px; height: 44px;
  background: var(--cream-dark);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  margin-bottom: 16px;
}
.s8__card-title {
font-family: "Fields", serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
  /* white-space: nowrap; */
}
.s8__card-text {
font-family: "Fields", serif;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

.s7__slide-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: rgba(201, 168, 104, 0.08);
  border: 1px solid rgba(201, 168, 104, 0.25);

  color: #c9a868;
  font-size: 28px;

  transition: all 0.4s ease;
}

.s7__slide:hover .s7__slide-icon {
  transform: translateY(-5px);
  border-color: rgba(201, 168, 104, 0.45);
  box-shadow: 0 12px 30px rgba(201, 168, 104, 0.15);
}

.s8__card-icon {
  width: 70px;
  height: 70px;
  /* margin: 0 auto 20px; */
  display: flex;
  /* align-items: center; */
  /* justify-content: center; */

  border-radius: 50%;
  background: rgba(201, 168, 104, 0.08);
  border: 1px solid rgba(201, 168, 104, 0.25);

  color: #c9a868;
  font-size: 28px;

  transition: all 0.3s ease;
}

.s8__card:hover .s8__card-icon {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 104, 0.45);
  box-shadow: 0 12px 30px rgba(201, 168, 104, 0.15);
}


.s8__card:nth-child(1) .s8__card-num,
.s8__card:nth-child(3) .s8__card-num { color: rgba(28,66,48,0.08); }
@media (max-width: 1024px) { .s8__grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 576px) { .s8__grid { grid-template-columns: 1fr; } }

/* ===== SECTION 9 – INVESTMENT ===== */
.s9 {
  background: var(--cream);
}
.s9__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}
.s9__left .section-title { margin-bottom: 16px; }
.s9__left .section-lead { margin-bottom: 32px; }
.s9__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.s9__card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid rgba(28,66,48,0.08);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  cursor: pointer;
}
.s9__card:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.s9__card--featured {
  background: #0e472a;
  border-color: var(--green);
}
.s9__card-label {
font-family: "Fields", serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.s9__card--featured .s9__card-label { color: rgba(245,240,232,0.55); }
.s9__card-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.s9__card--featured .s9__card-name { color: var(--cream); }
.s9__card-range {
 font-family: "Fields", serif;
  font-size: 35px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 8px;
}
.s9__card--featured .s9__card-range { color: rgba(245,240,232,0.9); }
.s9__card-roi {
 font-family: "Fields", serif;
  font-size: 14px;
  color: var(--text-muted);
}
.s9__card--featured .s9__card-roi { color: rgba(245,240,232,0.65); }
@media (max-width: 1024px) { .s9__inner { grid-template-columns: 1fr; gap: 40px; } }

/* ===== SECTION 10 – FRANCHISE COMPARISON ===== */
.s10 {
  background: var(--cream-dark);
}
.s10__head { text-align: center; margin-bottom: 56px; }
.s10__plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.s10__plan {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1px solid rgba(28,66,48,0.08);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}
.s10__plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.s10__plan--featured {
  background: #0e472a;
  border-color: var(--green);
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}
.s10__plan--featured:hover { transform: scale(1.02) translateY(-6px); }
.s10__plan-badge {
  font-family: "Fields", serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(245,240,232,0.15);
  color: rgba(245,240,232,0.75);
  display: inline-block;
  margin-bottom: 16px;
}
.s10__plan-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.s10__plan--featured .s10__plan-name { color: var(--cream); }
.s10__plan-size {
 font-family: "Fields", serif;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.s10__plan--featured .s10__plan-size { color: rgba(245,240,232,0.6); }
.s10__plan-price {
  font-family: "Fields", serif;
  font-size: 35px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 4px;
  line-height: 1;
}
.s10__plan--featured .s10__plan-price { color: var(--cream); }
.s10__plan-fee {
 font-family: "Fields", serif;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.s10__plan--featured .s10__plan-fee { color: rgba(245,240,232,0.6); }
.s10__plan-divider {
  height: 1px;
  background: rgba(28,66,48,0.08);
  margin-bottom: 16px;
}
.s10__plan--featured .s10__plan-divider { background: rgba(245,240,232,0.15); }
.s10__plan-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.s10__plan-row-label {
 font-family: "Fields", serif;
  font-size: 14px;
  color: var(--text-muted);
}
.s10__plan--featured .s10__plan-row-label { color: rgba(245,240,232,0.6); }
.s10__plan-row-value {
  font-family: "Fields", serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}
.s10__plan--featured .s10__plan-row-value { color: var(--cream); }
.s10__table-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(28,66,48,0.08);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.s10__table {
  width: 100%;
  border-collapse: collapse;
}
.s10__table th {
  background: var(--green);
  color: rgba(245,240,232,0.85);
  font-family: "Fields", serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 14px 16px;
  text-align: left;
}
.s10__table td {
font-family: "Fields", serif;
  font-size: 12.5px;
  color: var(--text-mid);
  padding: 12px 16px;
  border-bottom: 1px solid rgba(28,66,48,0.06);
}
.s10__table tr:last-child td { border-bottom: none; }
.s10__table tr:nth-child(even) td { background: var(--cream); }
@media (max-width: 1024px) { .s10__plans { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 576px) { .s10__plans { grid-template-columns: 1fr; } }

/* ===== SECTION 11 – PARTNERS ===== */
.s11 {
  background: var(--cream);
}
.s11__head { text-align: center; margin-bottom: 56px; }
.s11__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.s11__card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid rgba(28,66,48,0.08);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}
.s11__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.s11__card-icon {
  width: 44px; height: 44px;
  background: var(--cream-dark);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  margin-bottom: 14px;
}
.s11__card-title {
  font-family: "Fields", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.s11__card-text {
font-family: "Fields", serif;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}
.s11__opportunity {
  background: #0e472a;
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  color: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.s11__opp-eyebrow {
 font-family: "Fields", serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
  margin-bottom: 16px;
}
.s11__opp-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.18;
  margin-bottom: 24px;
}
.s11__opp-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.s11__opp-points li {
font-family: "Fields", serif;
  font-size: 13px;
  color: rgba(245,240,232,0.78);
  display: flex; align-items: flex-start; gap: 10px;
}
.s11__opp-points li::before {
  content: '→';
  color: rgba(245,240,232,0.45);
  flex-shrink: 0;
}
.s11__opp-right {}
.s11__opp-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.s11__opp-stat {
  background: rgba(245,240,232,0.08);
  border: 1px solid rgba(245,240,232,0.12);
  border-radius: var(--radius-sm);
  padding: 20px 16px;
}
.s11__opp-stat-label {
font-family: "Fields", serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.45);
  margin-bottom: 6px;
}
.s11__opp-stat-value {
  font-size: 30px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
}

.s11__card-icon {
  width: 70px;
  height: 70px;
  /* margin: 0 auto 20px; */
  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: rgba(201, 168, 104, 0.08);
  border: 1px solid rgba(201, 168, 104, 0.25);

  color: #c9a868;
  font-size: 28px;

  transition: all 0.35s ease;
}

.s11__card:hover .s11__card-icon {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 104, 0.45);
  box-shadow: 0 12px 30px rgba(201, 168, 104, 0.15);
}

@media (max-width: 1024px) {
  .s11__grid { grid-template-columns: 1fr 1fr; }
  .s11__opportunity { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 576px) {
  .s11__grid { grid-template-columns: 1fr; }
  .s11__opp-stats { grid-template-columns: 1fr 1fr; }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--green);
  padding: 60px 0 40px;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.footer__logo {
  font-family: "Fields", serif;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
}
.footer__tagline {
 font-family: "Fields", serif;
  font-size: 16px;
  color: rgba(245,240,232,0.55);
  /* font-style: italic; */
  letter-spacing: 0.04em;
}
.footer__divider {
  width: 100%;
  height: 1px;
  background: rgba(245,240,232,0.10);
}
.footer__bottom {font-family: "Fields", serif;
  font-size: 16px;
  color: rgba(245,240,232,0.35);
  text-align: center;
}

/* === ADDITIONAL MOBILE RESPONSIVENESS === */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 40px 20px; text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-image-wrap { margin: 0 auto; max-width: 400px; }
  .form-split { grid-template-columns: 1fr; gap: 40px; }
  .form-left { text-align: center; }
}
@media (max-width: 768px) {
  .hero h1 { font-size: 36px; }
  section { padding: 60px 0; }
  .section-form { padding: 20px 0; }
}


.nav__logo img {
  height: 50px; /* Adjust as needed */
  width: auto;
  display: block;
}


/*  */
/* ============================================
   MOBILE CENTER ALIGNMENT FIX
   Paste this at the very BOTTOM of your CSS
   ============================================ */

@media (max-width: 768px) {

  /* ─── GLOBAL: All section icons center ─── */
  .s2__card-icon,
  .s4__card-icon,
  .s6__format-icon,
  .s7__slide-icon,
  .s8__card-icon,
  .s11__card-icon {
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    justify-content: center;
  }

  /* ─── S2: Problem Cards ─── */
  .s2__card {
    text-align: center;
  }
  .s2__card-icon {
    margin-bottom: 16px;
  }

  /* ─── S4: NATUF Feature Cards (Image 2) ─── */
  .s4__card {
    text-align: center;
  }
  .s4__grid {
    grid-template-columns: 1fr;
  }

  /* ─── S4: Compare columns ─── */
  .s4__compare {
    grid-template-columns: 1fr;
  }
  .s4__compare-col {
    text-align: center;
    padding: 28px 20px;
  }
  .s4__compare-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: left;
    gap: 10px;
  }

  /* ─── S5: Foundation Cards (Image 3 – dark green) ─── */
  .s5__card {
    text-align: center;
  }
  .s5__grid {
    grid-template-columns: 1fr;
  }

  /* ─── S6: Format Cards ─── */
  .s6__format {
    text-align: center;
  }
  .s6__format-icon {
    margin-bottom: 16px;
  }
  .s6__tags {
    justify-content: center;
  }
  .s6__formats {
    grid-template-columns: 1fr;
  }

  /* ─── S7: Carousel Slides (Image 4 & 5) ─── */
  .s7__carousel {
    padding-top: 15px;
  }
  .s7__slide {
    text-align: center;
    flex: 0 0 280px;
    scroll-snap-align: center;
  }
  .s7__slide-icon {
    margin-bottom: 24px;
  }

  /* ─── S8: Why Different Cards ─── */
  .s8__card {
    text-align: center;
  }
  .s8__card-icon {
    margin-bottom: 16px;
    align-items: center;
    justify-content: center;
  }
  .s8__card-num {
    text-align: center;
  }
  .s8__grid {
    grid-template-columns: 1fr;
  }

  /* ─── S9: Investment ─── */
  .s9__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .s9__left {
    text-align: center;
  }
  .s9__left .section-lead {
    text-align: center;
    margin: 0 auto 32px;
  }
  .s9__card {
    text-align: center;
  }
  /* disable slide-right hover on mobile */
  .s9__card:hover {
    transform: translateY(-4px);
  }

  /* ─── S10: Plans ─── */
  .s10__plans {
    grid-template-columns: 1fr;
  }
  .s10__plan {
    text-align: center;
    transform: none !important;
  }
  .s10__plan--featured {
    transform: none !important;
  }
  .s10__plan-row {
    justify-content: center;
    gap: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(28,66,48,0.08);
  }
  .s10__plan-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .s10__plan--featured .s10__plan-row {
    border-bottom: 1px solid rgba(245,240,232,0.15);
  }
  .s10__plan--featured .s10__plan-row:last-child {
    border-bottom: none;
  }

  /* ─── S11: Partner Cards ─── */
  .s11__grid {
    grid-template-columns: 1fr;
  }
  .s11__card {
    text-align: center;
  }
  .s11__card-icon {
    margin-bottom: 14px;
  }

  /* ─── S11: Opportunity block ─── */
  .s11__opportunity {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 36px 20px;
    text-align: center;
  }
  .s11__opp-stat-row {
    white-space: nowrap;
    align-items: center;
  }
  .s11__opp-stat-row .s11__opp-stat-label,
  .s11__opp-stat-row .s11__opp-stat-value {
    font-size: 9.5px !important;
  }
  .s11__opp-points {
    display: inline-flex;
    flex-direction: column;
    text-align: left;
    width: 100%;
  }
  .s11__opp-stats {
    grid-template-columns: 1fr 1fr;
  }
  .s11__opp-stat {
    text-align: center;
  }

  /* ─── Window of Opportunity section ─── */
  .window-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .window-list {
    display: inline-block;
    text-align: left;
    width: 100%;
  }
  .window-stat {
    text-align: center;
  }

  /* ─── Form section ─── */
  .form-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .form-left {
    text-align: center;
  }

  /* ─── Section 3 dashboard feature block ─── */
  .s3__feature {
    text-align: center;
    align-items: center;
    min-height: auto;
    padding: 36px 24px;
  }
  .s3__feature-label {
    text-align: center;
  }
  .s3__stat {
    text-align: center;
  }

  /* ─── Global section eyebrows ─── */
  .section-eyebrow,
  .hero-eyebrow,
  .tag {
    display: block;
    text-align: center;
  }

  /* ─── Global section lead text ─── */
  .section-lead,
  .section-lead--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: 350px;
  }

  /* ─── Section titles ─── */
  .section-title {
    text-align: center;
  }

  /* ─── Hero ─── */
  .hero-inner {
    text-align: center;
  }
  .hero-ctas {
    justify-content: center;
  }

  /* ─── FAQ ─── */
  .faq-header {
    text-align: center;
  }

}

/* ─── Extra small phones (< 480px) ─── */
@media (max-width: 480px) {

  .s11__opp-stats,
  .window-stats {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* .s10__plan-row {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  } */

}

/* footer logo */
.footer__logo img {
  height: 60px; /* Adjust size as needed */
  width: auto;
  display: block;
}


/* ===== FOOTER TEXT CENTER FIX ===== */
/* Paste this at the bottom of your CSS */

.footer__tagline {
  text-align: center;
}

.footer__logo {
  text-align: center;
}

.footer__bottom {
  text-align: center;
}

/* Mobile fix too */
@media (max-width: 768px) {
  .footer__inner {
    text-align: center;
    align-items: center;
  }
  .footer__tagline {
    text-align: center;
    max-width: 320px;
    margin: 0 auto;
    line-height: 1.7;
  }
}



/* ============================================
   MOBILE HERO UPDATE — Replace old mobile hero
   Paste this at the BOTTOM of your existing CSS
   (it will override the previous mobile hero rules)
   ============================================ */

@media (max-width: 768px) {

  /* ── New mobile hero background image ── */
  .hero {
    background: url('../images/Mobile-image.png') center bottom / cover no-repeat !important;
    min-height: 100vh !important;        /* was 60vh — increase further if needed */
    padding-top: 100px !important;
    padding-bottom: 100px !important;
    align-items: flex-start !important; /* push text to top so image shows at bottom */
  }

  /* Darken overlay so cream text stays readable */
  .hero::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(
      to bottom,
      rgba(10, 40, 25, 0.72) 0%,
      rgba(10, 40, 25, 0.55) 45%,
      rgba(10, 40, 25, 0.20) 100%
    ) !important;
  }

  /* Re-center the hero text block */
  .hero-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 20px 24px 40px !important;
    gap: 0 !important;
  }

  /* Hide the right-side image frame on mobile
     (the background IS the image now) */
  .hero-image-wrap {
    display: none !important;
  }

  /* Make sure heading and subtext stay legible */
  .hero h1 {
    font-size: clamp(32px, 8vw, 48px) !important;
    margin-bottom: 16px !important;
  }

  .hero-subtext {
    font-size: 15px !important;
    margin-bottom: 20px !important;
  }

  .hero-tagline {
    margin-bottom: 32px !important;
  }

   .hero-ctas {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    gap: 12px !important;
  }
 
  .btn-primary,
  .btn-secondary {
    width: 90% !important;
    max-width: 300px !important;
    text-align: center !important;
    display: block !important;
    margin: 0 auto !important;
  }
}

/* ── Extra-small phones ── */
@media (max-width: 480px) {
  .hero {
    min-height: 90vh !important;
  }
}


@media (max-width: 768px) {
  .s3__feature-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
}
