/* ============================================================
   KCGF V19 — Stylesheet
   Editorial / Bold design — Archivo Black + Space Grotesk
   ============================================================ */

/* ── RESET & BASE ─────────────────────────────────────────── */
html { overflow-x: hidden; }
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --teal:       #3CB4B4;
  --teal-d:     #29a0a0;
  --grey:       #969696;
  --grey-light: #e0e0e0;
  --navy:       #0a1628;
  --offwhite:   #f4f6fa;
  --white:      #ffffff;
  --black:      #0b0b0b;

  --w-standard: rgb(153,37,37);
  --w-agro:     rgb(99,130,86);
  --w-grow:     rgb(134,250,132);
  --w-diaspora: rgb(94,125,171);
  --w-export:   rgb(80,21,51);
  --w-women:    rgb(228,135,110);
  --w-startup:  rgb(85,198,196);
}

body {
  font-family: 'Space Grotesk', sans-serif;
  background-color: var(--offwhite);
  color: var(--navy);
  line-height: 1.3;
  overflow-x: hidden;
}

a, button, select, input { cursor: pointer; }

h1, h2, h3, .headline {
  font-family: 'Archivo Black', sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.container { max-width: 1400px; margin: 0 auto; padding: 0 5%; }

/* ── NAV ─────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  background: rgba(255,255,255,0.90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
#nav.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 2px 24px rgba(0,0,0,0.08);
}

/* Logo */
.nav-logo { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.nav-logo img { height: 38px; width: auto; display: block; }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0;
  margin: 0; padding: 0;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 13px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4a5568;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
  border-radius: 6px;
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li.dd-open > a { color: var(--teal); background: rgba(60,180,180,0.07); }
.nav-links > li > a .chevron { font-size: 9px; opacity: 0.45; }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(10,22,40,0.14), 0 0 0 1px rgba(0,0,0,0.07);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 300;
}
.dropdown.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-width: 400px;
}
.dropdown.align-left  { left: 0; transform: translateX(0) translateY(8px); }
.dropdown.align-right { left: auto; right: 0; transform: translateX(0) translateY(8px); }

.nav-links > li.dd-open .dropdown               { opacity:1; pointer-events:auto; transform:translateX(-50%) translateY(0); }
.nav-links > li.dd-open .dropdown.align-left    { transform:translateX(0) translateY(0); }
.nav-links > li.dd-open .dropdown.align-right   { transform:translateX(0) translateY(0); }
/* CSS :hover fallback */
.nav-links > li:hover .dropdown                 { opacity:1; pointer-events:auto; transform:translateX(-50%) translateY(0); }
.nav-links > li:hover .dropdown.align-left      { transform:translateX(0) translateY(0); }
.nav-links > li:hover .dropdown.align-right     { transform:translateX(0) translateY(0); }

.dropdown a {
  display: block;
  padding: 10px 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.dropdown a:hover    { background: rgba(60,180,180,0.09); color: var(--teal); }
.dropdown a.highlight { color: var(--teal); font-weight: 700; }
.dropdown a.highlight:hover { background: rgba(60,180,180,0.12); }

/* Nav right */
.nav-r {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Language */
.lang { display: flex; gap: 2px; border-right: 1px solid #E5E7EB; padding-right: 12px; }
.lang button {
  background: none; border: none;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #9CA3AF;
  padding: 4px 5px; border-radius: 4px;
  transition: color 0.2s; cursor: pointer;
}
.lang button.on { color: var(--teal); }
.lang button:hover:not(.on) { color: var(--navy); }

/* CTA */
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  background: var(--navy);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--teal); }

/* ── HAMBURGER ───────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none;
  padding: 8px; cursor: pointer;
  transition: background 0.2s;
}
.hamburger:hover { background: rgba(0,0,0,0.05); }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 1px;
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ─────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed; inset: 0;
  z-index: 999;
  background: #fff;
  overflow-y: auto;
  padding: 96px 28px 48px;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
  flex-direction: column;
  gap: 0;
}
.mobile-menu.open { transform: translateX(0); }

.mob-section-label {
  font-size: 9px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--grey);
  padding: 14px 8px 6px; display: block;
}
.mobile-direct-link {
  display: block; padding: 14px 8px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px; color: var(--navy); text-decoration: none;
  border-bottom: 1px solid #F3F4F6; text-transform: uppercase;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.mobile-direct-link:hover { color: var(--teal); }
.mobile-nav-toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 14px 8px; background: none; border: none;
  border-bottom: 1px solid #F3F4F6;
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px; color: var(--navy); text-align: left;
  cursor: pointer; text-transform: uppercase; letter-spacing: -0.01em;
  transition: color 0.2s;
}
.mobile-nav-toggle:hover { color: var(--teal); }
.mobile-nav-toggle .mob-chevron { font-size: 11px; transition: transform 0.3s; color: var(--grey); font-family: 'Space Grotesk', sans-serif; }
.mobile-nav-toggle.expanded .mob-chevron { transform: rotate(180deg); }
.mobile-subnav { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; background: #f9fafb; border-radius: 0 0 10px 10px; margin-bottom: 4px; }
.mobile-subnav.open { max-height: 500px; }
.mobile-subnav a { display: block; padding: 10px 24px; font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 500; color: #4a5568; text-decoration: none; transition: color 0.2s; }
.mobile-subnav a:hover, .mobile-subnav a.highlight { color: var(--teal); }
.mobile-cta-wrap { padding-top: 28px; }
.mobile-cta-primary { display: block; text-align: center; padding: 15px; background: var(--navy); color: #fff; font-family: 'Space Grotesk', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none; transition: background 0.2s; }
.mobile-cta-primary:hover { background: var(--teal); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 72px; /* offset for fixed nav */
}
.hero-left {
  background-color: var(--navy);
  color: var(--offwhite);
  padding: 6rem 5% 5rem;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.hero-left .kicker {
  font-size: 0.8rem; font-weight: 400; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--grey); margin-bottom: 2rem;
}
.hero-left h1 { font-size: clamp(4rem, 10vw, 7rem); margin-bottom: 2rem; line-height: 0.9; }
.hero-left h1 span { color: var(--teal); display: block; font-size: 1.2em; }
.hero-left p { font-size: 1.2rem; max-width: 500px; color: var(--grey-light); margin-bottom: 3rem; font-weight: 300; line-height: 1.6; }
.hero-cta {
  display: inline-flex; align-items: center; gap: 1rem;
  background: var(--teal); color: var(--navy);
  padding: 1.2rem 2.5rem; border-radius: 0;
  font-weight: 700; text-decoration: none;
  text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.9rem;
  transition: 0.2s; width: fit-content;
}
.hero-cta:hover { background: #fff; color: var(--navy); }

/* Hero right — real visible photo */
.hero-right {
  background-color: var(--navy);
  position: relative; overflow: hidden;
  min-height: 60vh;
}
.hero-right img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  opacity: 0.78;
  filter: contrast(1.06);
}
.hero-right .duotone {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(60,180,180,0.12) 0%, rgba(10,22,40,0.28) 100%);
  pointer-events: none;
}
.hero-right .vignette {
  position: absolute; bottom: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(to bottom, transparent, rgba(10,22,40,0.60));
  pointer-events: none;
}
.hero-stat {
  position: absolute; bottom: 3rem; right: 3rem;
  background: rgba(10,22,40,0.88);
  backdrop-filter: blur(8px);
  color: white; padding: 1.5rem 2rem;
  border-left: 6px solid var(--teal);
  font-size: 2.5rem; font-weight: 700; line-height: 1;
}
.hero-stat small { display: block; font-size: 0.8rem; font-weight: 300; color: var(--grey); letter-spacing: 0.1em; }

/* ── SECTIONS ────────────────────────────────────────────── */
.section-tag { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.4em; text-transform: uppercase; color: var(--teal); margin-bottom: 1rem; }
.section-title { font-size: clamp(3rem, 6vw, 5rem); margin-bottom: 2rem; line-height: 1; }

/* ── STATS ───────────────────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--grey-light); border: 2px solid var(--grey-light); }
.stat-card { background: var(--offwhite); padding: 3rem 1.5rem; text-align: center; }
.stat-number { font-size: 3.5rem; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 0.5rem; font-family: 'Archivo Black', sans-serif; }
.stat-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--grey); }

/* ── WINDOWS ─────────────────────────────────────────────── */
.windows-section { background: var(--navy); padding: 5rem 5%; position: relative; overflow: hidden; }
.windows-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 1.5rem; margin-top: 3rem; }

.window-item {
  background: var(--navy);
  padding: 2.5rem;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative; overflow: hidden;
  transition: transform 0.25s ease;
  border-top: 3px solid var(--win-color, var(--teal));
}
.window-item::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--win-color, var(--teal));
  opacity: 0;
  transition: opacity 0.25s;
}
.window-item:hover { transform: translateY(-6px); }
.window-item:hover::before { opacity: 0.06; }

.window-item .num {
  font-size: 4rem; font-weight: 700;
  color: rgba(255,255,255,0.05);
  position: absolute; top: 1rem; right: 1.5rem; line-height: 1;
  font-family: 'Archivo Black', sans-serif;
}
.window-logo-v19 {
  height: 44px; width: auto;
  margin-bottom: 20px;
  display: block;
  position: relative; z-index: 2;
  object-fit: contain;
}
.window-item h3 { color: white; font-size: 2rem; margin-bottom: 1rem; position: relative; z-index: 2; }
.window-item p  { color: var(--grey); font-size: 0.9rem; margin-bottom: 2rem; max-width: 280px; position: relative; z-index: 2; line-height: 1.5; }
.window-coverage {
  display: inline-block;
  background: var(--win-color, var(--teal));
  color: #0a1628;
  padding: 0.4rem 1.2rem; font-weight: 700;
  font-size: 0.8rem; letter-spacing: 0.1em;
  position: relative; z-index: 2;
  font-family: 'Space Grotesk', sans-serif;
}
.win-export .window-coverage,
.win-standard .window-coverage { color: rgba(255,255,255,0.9); }
.win-standard { --win-color: var(--w-standard); }
.win-agro     { --win-color: var(--w-agro); }
.win-grow     { --win-color: var(--w-grow); }
.win-diaspora { --win-color: var(--w-diaspora); }
.win-export   { --win-color: var(--w-export); }
.win-women    { --win-color: var(--w-women); }
.win-startup  { --win-color: var(--w-startup); }

/* ── STORIES ─────────────────────────────────────────────── */
.story-block {
  display: grid; grid-template-columns: 1fr 1fr;
  margin-bottom: 2px; min-height: 480px;
}
.story-block.reverse { direction: rtl; }
.story-block.reverse .story-content { direction: ltr; }

.story-image { position: relative; overflow: hidden; min-height: 480px; }
.story-image img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center; display: block;
  filter: grayscale(0.15) contrast(1.05);
  transition: transform 0.6s ease, filter 0.4s ease;
}
.story-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,22,40,0.2) 0%, rgba(10,22,40,0.04) 100%);
  transition: opacity 0.3s;
}
.story-block.reverse .story-image::after { background: linear-gradient(to left, rgba(10,22,40,0.2) 0%, rgba(10,22,40,0.04) 100%); }
.story-block:hover .story-image img { transform: scale(1.03); filter: grayscale(0) contrast(1.08); }
.story-block:hover .story-image::after { opacity: 0; }

.story-content {
  background: var(--navy); color: white;
  padding: 4rem; display: flex; flex-direction: column; justify-content: center;
}
.story-window-tag {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 10px;
}
.story-window-tag::before { content: ''; width: 24px; height: 1px; background: var(--teal); }
.story-big-stat {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(5rem, 8vw, 9rem);
  line-height: 0.9; letter-spacing: -0.04em; color: var(--teal);
  margin-bottom: 1.5rem; text-shadow: 0 0 60px rgba(60,180,180,0.2);
}
.story-quote { font-size: 1.25rem; font-weight: 400; line-height: 1.55; margin-bottom: 2rem; font-style: italic; color: rgba(255,255,255,0.8); }
.story-meta { color: var(--teal); font-weight: 700; letter-spacing: 0.1em; font-size: 0.8rem; }
.story-meta span { color: rgba(255,255,255,0.4); font-weight: 400; }

/* ── ELIGIBILITY ─────────────────────────────────────────── */
.elig-section { background: var(--teal); padding: 6rem 5%; text-align: center; position: relative; overflow: hidden; }
.elig-title { font-size: clamp(3rem, 8vw, 7rem); color: var(--navy); margin-bottom: 2rem; }
.elig-sub { font-size: 1.4rem; color: var(--navy); opacity: 0.8; max-width: 700px; margin: 0 auto 4rem; }
.elig-calc { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; max-width: 800px; margin: 0 auto; }
.elig-calc select, .elig-calc input {
  flex: 1 1 200px; padding: 1.2rem; border: none;
  font-family: 'Space Grotesk', sans-serif; font-size: 1rem;
  background: var(--navy); color: white; border-radius: 0; outline: none;
}
.elig-calc button {
  background: var(--navy); color: white; border: none;
  padding: 1.2rem 2.5rem; font-weight: 700; letter-spacing: 0.2em;
  cursor: pointer; transition: 0.2s; font-family: 'Space Grotesk', sans-serif;
  text-transform: uppercase;
}
.elig-calc button:hover { background: white; color: var(--navy); }
#eligResult { margin-top: 2rem; font-size: 2rem; font-weight: 700; color: var(--navy); font-family: 'Archivo Black', sans-serif; }

/* ── PARTNERS MARQUEE ────────────────────────────────────── */
.partners {
  background: var(--offwhite); padding: 4rem 5%;
  border-top: 2px solid var(--grey-light); border-bottom: 2px solid var(--grey-light);
  overflow: hidden;
}
.marquee { white-space: nowrap; display: flex; gap: 4rem; animation: scroll 40s linear infinite; width: max-content; }
.marquee span { font-size: 1.1rem; font-weight: 600; color: var(--grey); text-transform: uppercase; letter-spacing: 0.2em; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── FOOTER ──────────────────────────────────────────────── */
footer { background: var(--navy); color: white; padding: 4rem 5% 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.footer-links a { color: var(--grey); text-decoration: none; display: block; margin-bottom: 0.8rem; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-logo-img { height: 44px; width: auto; filter: brightness(0) invert(1); }

/* ── REVEAL ──────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s, transform 0.8s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── INTERIOR PAGE STYLES ────────────────────────────────── */
.page-wrap { padding-top: 72px; }

.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 5%; background: var(--offwhite);
  border-bottom: 2px solid var(--grey-light);
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  font-family: 'Space Grotesk', sans-serif; color: var(--grey);
}
.breadcrumb a { color: var(--grey); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb .sep { opacity: 0.35; }
.breadcrumb .current { color: var(--navy); font-weight: 700; }

/* Page hero — editorial style */
.page-hero {
  background: var(--navy); padding: 80px 5% 80px;
  position: relative; overflow: hidden;
}
.page-hero-inner { max-width: 1300px; margin: 0 auto; position: relative; z-index: 2; }
.page-eyebrow {
  font-size: 10px; font-weight: 600; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 20px; display: block;
}
.page-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(48px, 7vw, 96px);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 0.92;
  margin-bottom: 20px;
}
.page-title .teal { color: var(--teal); }
.page-subtitle { font-size: 18px; color: rgba(255,255,255,0.55); max-width: 560px; line-height: 1.6; font-weight: 300; }

/* Content sections */
.int-section { padding: 72px 5%; }
.int-section-inner { max-width: 1300px; margin: 0 auto; }
.int-label { font-size: 10px; font-weight: 600; letter-spacing: 0.35em; text-transform: uppercase; color: var(--teal); margin-bottom: 12px; display: block; }
.int-title { font-family: 'Archivo Black', sans-serif; font-size: clamp(32px, 5vw, 60px); text-transform: uppercase; letter-spacing: -0.02em; color: var(--navy); line-height: 0.95; margin-bottom: 16px; }
.int-body { font-size: 16px; color: #555; line-height: 1.65; max-width: 680px; }

/* Value grid */
.val-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 2px; margin-top: 40px; background: var(--grey-light); border: 2px solid var(--grey-light); }
.val-item { background: var(--offwhite); padding: 36px; transition: background 0.2s; }
.val-item:hover { background: #fff; }
.val-num { font-family: 'Archivo Black', sans-serif; font-size: 48px; color: var(--teal); letter-spacing: -0.04em; line-height: 1; margin-bottom: 16px; }
.val-title { font-weight: 700; font-size: 18px; color: var(--navy); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.04em; font-family: 'Space Grotesk', sans-serif; }
.val-body { font-size: 14px; color: #666; line-height: 1.6; }

/* Stats dark band */
.stats-band-dark { background: var(--navy); padding: 72px 5%; position: relative; overflow: hidden; }
.stats-band-inner { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; background: rgba(255,255,255,0.06); }
.sbi { padding: 40px 32px; text-align: center; border-right: 1px solid rgba(255,255,255,0.08); }
.sbi:last-child { border-right: none; }
.sbi-num { font-family: 'Archivo Black', sans-serif; font-size: 52px; color: var(--teal); letter-spacing: -0.04em; line-height: 1; margin-bottom: 10px; }
.sbi-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.22em; color: rgba(255,255,255,0.35); font-weight: 600; }

/* Grow characteristics */
.grow-chars { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 2px; background: var(--grey-light); border: 2px solid var(--grey-light); margin-top: 32px; }
.grow-char-item { background: var(--offwhite); padding: 32px; }
.grow-char-num { font-family: 'Archivo Black', sans-serif; font-size: 44px; color: #39ac5a; letter-spacing: -0.04em; line-height: 1; margin-bottom: 6px; }
.grow-char-lbl { font-size: 10px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--grey); font-weight: 600; }

/* Elig table (interior pages) */
.elig-tbl { width: 100%; border-collapse: collapse; margin-top: 24px; }
.elig-tbl th { background: var(--navy); color: rgba(255,255,255,0.75); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 14px 20px; text-align: left; }
.elig-tbl td { padding: 13px 20px; font-size: 14px; color: #374151; border-bottom: 1px solid #eee; }
.elig-tbl tr:nth-child(even) td { background: #f9fafb; }
.elig-tbl tr:hover td { background: rgba(60,180,180,0.04); }

/* Process list (V19 uses horizontal steps) */
.process-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 2px; background: var(--grey-light); border: 2px solid var(--grey-light); margin-top: 32px; }
.process-item { background: var(--offwhite); padding: 32px 28px; }
.proc-num { font-family: 'Archivo Black', sans-serif; font-size: 56px; color: rgba(60,180,180,0.25); line-height: 1; letter-spacing: -0.04em; margin-bottom: 12px; }
.proc-title { font-weight: 700; font-size: 16px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--navy); margin-bottom: 8px; }
.proc-body { font-size: 13px; color: #666; line-height: 1.55; }

/* CTA band */
.cta-band { background: var(--teal); padding: 72px 5%; text-align: center; position: relative; overflow: hidden; }
.cta-title { font-family: 'Archivo Black', sans-serif; font-size: clamp(32px, 6vw, 64px); text-transform: uppercase; letter-spacing: -0.02em; color: var(--navy); margin-bottom: 16px; }
.cta-sub { font-size: 18px; color: var(--navy); opacity: 0.75; margin-bottom: 36px; }
.cta-btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 40px; background: var(--navy); color: #fff; font-family: 'Space Grotesk', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none; transition: background 0.2s; }
.cta-btn:hover { background: #fff; color: var(--navy); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1200px) {
  .nav-links > li > a { font-size: 10px; padding: 7px 9px; }
}
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .lang { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-r { gap: 0; }
  .mobile-menu { display: flex; }
  .hero { grid-template-columns: 1fr; padding-top: 72px; }
  .hero-right { min-height: 50vh; }
  .story-block { grid-template-columns: 1fr; }
  .story-block.reverse { direction: ltr; }
  .story-image { min-height: 280px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: clamp(2rem, 8vw, 3.5rem); }
  .windows-grid { grid-template-columns: 1fr; }
  .stats-band-inner { grid-template-columns: 1fr 1fr; }
  .val-grid { grid-template-columns: 1fr; }
  .grow-chars { grid-template-columns: 1fr 1fr; }
  .process-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .story-content { padding: 2.5rem; }
  .story-big-stat { font-size: clamp(3rem, 12vw, 5rem); }
  .section-title { font-size: clamp(2.2rem, 9vw, 3rem); }
}
@media (max-width: 480px) {
  .hero-left h1 { font-size: clamp(3rem, 12vw, 5rem); }
  .grow-chars { grid-template-columns: 1fr; }
  .process-row { grid-template-columns: 1fr; }
  .stats-band-inner { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .story-content { padding: 2rem; }
}
