/* ============================================================
   INDIA → USA AGRI EXPORT INTELLIGENCE REPORT
   Palette: Chlorophyll — #B8F369, #2D6A1E, #0A1F02, #F0FFF0
   Fonts: Bricolage Grotesque (display) + Spline Sans (body)
   ============================================================ */

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

:root {
  --green-bright:   #B8F369;
  --green-mid:      #2D6A1E;
  --green-deep:     #0A1F02;
  --green-pale:     #F0FFF0;
  --green-soft:     #D4F5A0;
  --green-muted:    #6BAF3C;
  --green-dark2:    #142E08;
  --white:          #FFFFFF;
  --off-white:      #F7FDF2;
  --text-dark:      #0A1F02;
  --text-mid:       #2D4A1A;
  --text-light:     #B8F369;
  --text-muted:     #7AAF55;
  --border-dark:    rgba(184,243,105,0.15);
  --border-light:   rgba(45,106,30,0.15);

  --font-display:   'Bricolage Grotesque', sans-serif;
  --font-body:      'Spline Sans', sans-serif;

  --radius-sm:      6px;
  --radius-md:      12px;
  --radius-lg:      20px;
  --radius-xl:      32px;

  --shadow-sm:      0 2px 8px rgba(10,31,2,0.12);
  --shadow-md:      0 8px 32px rgba(10,31,2,0.18);
  --shadow-lg:      0 20px 60px rgba(10,31,2,0.25);

  --transition:     0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--green-deep);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal:nth-child(6) { transition-delay: 0.5s; }

/* ── AUDIO BAR ── */
.audio-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--green-deep);
  border-top: 1px solid var(--border-dark);
  padding: 10px 0;
  backdrop-filter: blur(12px);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.audio-bar.visible { transform: translateY(0); }
.audio-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.audio-bar__label {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-bright);
  flex-shrink: 0;
}
.audio-bar__icon { font-size: 0.7rem; }
.audio-bar__duration {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.72rem;
}
.audio-bar__controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}
.audio-btn {
  background: var(--green-bright);
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}
.audio-btn:hover { transform: scale(1.1); background: var(--green-soft); }
.audio-btn svg { width: 16px; height: 16px; color: var(--green-deep); }
.audio-progress-wrap {
  flex: 1;
  position: relative;
  height: 20px;
  display: flex;
  align-items: center;
}
.audio-progress-bg {
  width: 100%;
  height: 4px;
  background: rgba(184,243,105,0.15);
  border-radius: 2px;
  overflow: hidden;
}
.audio-progress-fill {
  height: 100%;
  background: var(--green-bright);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
}
.audio-range {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  margin: 0;
}
.audio-time {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
  min-width: 36px;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 16px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(10,31,2,0.95);
  backdrop-filter: blur(16px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--green-bright);
  letter-spacing: -0.01em;
}
.nav__leaf { font-size: 1.1rem; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav__links a:hover {
  color: var(--green-bright);
  background: rgba(184,243,105,0.08);
}
.nav__menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green-bright);
  border-radius: 1px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 850;
  background: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu ul { text-align: center; }
.mobile-menu li { margin: 16px 0; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--green-bright); }

/* ── TAGS ── */
.tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(184,243,105,0.15);
  color: var(--green-bright);
  border: 1px solid rgba(184,243,105,0.3);
}
.tag--outline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border-color: rgba(255,255,255,0.2);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
}
.btn--primary {
  background: var(--green-bright);
  color: var(--green-deep);
}
.btn--primary:hover {
  background: var(--green-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,243,105,0.3);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn--ghost:hover {
  border-color: var(--green-bright);
  color: var(--green-bright);
  transform: translateY(-2px);
}
.btn--small {
  font-size: 0.78rem;
  padding: 8px 16px;
  background: rgba(184,243,105,0.12);
  color: var(--green-bright);
  border: 1px solid rgba(184,243,105,0.25);
  border-radius: var(--radius-sm);
}
.btn--small:hover {
  background: rgba(184,243,105,0.2);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(45,106,30,0.4) 0%, transparent 70%),
              var(--green-deep);
}
.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184,243,105,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,243,105,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero__content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero__eyebrow {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.hero__title-line { display: block; }
.hero__title-line--accent { color: var(--green-bright); }
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.65);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}
.hero__stats {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hero__stat {
  background: rgba(255,255,255,0.03);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: background var(--transition);
}
.hero__stat:hover { background: rgba(184,243,105,0.06); }
.hero__stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--green-bright);
  line-height: 1;
  letter-spacing: -0.03em;
}
.hero__stat-unit {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-muted);
}
.hero__stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  line-height: 1.4;
}
.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(184,243,105,0.4);
  border-bottom: 2px solid rgba(184,243,105,0.4);
  transform: rotate(45deg);
  animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.4; }
  50% { transform: rotate(45deg) translateY(6px); opacity: 1; }
}

/* ── SECTIONS ── */
.section { padding: 100px 0; }
.section--dark { background: var(--green-deep); }
.section--light { background: var(--off-white); color: var(--text-dark); }
.section--light .section__num { color: var(--green-mid); }
.section--light .section__title { color: var(--text-dark); }
.section--light .section__desc { color: var(--text-mid); }

.section__header {
  margin-bottom: 64px;
}
.section__num {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-bright);
  display: block;
  margin-bottom: 12px;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  line-height: 1.7;
}

/* ── OVERVIEW GRID ── */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.overview-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.overview-card:hover {
  background: rgba(184,243,105,0.06);
  border-color: rgba(184,243,105,0.25);
  transform: translateY(-4px);
}
.overview-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.overview-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-bright);
  margin-bottom: 12px;
}
.overview-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ── TRADE FLOW BARS ── */
.trade-flow {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.trade-flow__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-bright);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}
.tf-bar {
  display: grid;
  grid-template-columns: 200px 1fr 80px;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.tf-bar__label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  text-align: right;
}
.tf-bar__track {
  height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
}
.tf-bar__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--green-mid), var(--green-bright));
  border-radius: 4px;
  transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
}
.tf-bar__fill.animated { width: var(--pct); }
.tf-bar__value {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-bright);
}

/* ── PRODUCTS GRID ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border: 1px solid rgba(45,106,30,0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-mid);
}
.product-card--featured {
  background: var(--green-deep);
  border-color: var(--green-bright);
  color: var(--white);
}
.product-card--featured .product-card__name { color: var(--green-bright); }
.product-card--featured .product-card__value { color: rgba(255,255,255,0.7); }
.product-card--featured .product-card__desc { color: rgba(255,255,255,0.65); }
.product-card--featured .metric__label { color: rgba(255,255,255,0.5); }
.product-card--featured .metric__val { color: var(--green-bright); }
.product-card__header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.product-card__emoji { font-size: 2rem; flex-shrink: 0; }
.product-card__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}
.product-card__value {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}
.product-card__badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 100px;
  margin-left: auto;
  flex-shrink: 0;
}
.product-card__badge--top { background: #FFF3CD; color: #856404; }
.product-card__badge--premium { background: #D1ECF1; color: #0C5460; }
.product-card__badge--high-margin { background: #D4EDDA; color: #155724; }
.product-card__badge--growing { background: #CCE5FF; color: #004085; }
.product-card__badge--opportunity { background: var(--green-bright); color: var(--green-deep); }
.product-card__desc {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 20px;
}
.product-card__metrics {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(45,106,30,0.1);
  padding-top: 16px;
}
.metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.metric__label {
  font-size: 0.75rem;
  color: rgba(45,74,26,0.6);
}
.metric__val {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* ── GEO TIMELINE ── */
.geo-timeline {
  position: relative;
  padding-left: 40px;
  margin-bottom: 64px;
}
.geo-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--green-bright), transparent);
}
.geo-event {
  position: relative;
  margin-bottom: 40px;
  padding-left: 24px;
}
.geo-event::before {
  content: '';
  position: absolute;
  left: -44px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-mid);
  border: 2px solid var(--green-bright);
}
.geo-event--current::before {
  background: var(--green-bright);
  box-shadow: 0 0 12px rgba(184,243,105,0.6);
}
.geo-event__year {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--green-bright);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.geo-event h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.geo-event p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 680px;
}
.geo-factors__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
}
.geo-factors__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.geo-factor {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: background var(--transition), transform var(--transition);
}
.geo-factor:hover {
  background: rgba(184,243,105,0.06);
  transform: translateY(-3px);
}
.geo-factor__icon { font-size: 1.8rem; margin-bottom: 12px; }
.geo-factor h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green-bright);
  margin-bottom: 8px;
}
.geo-factor p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ── REGULATIONS ── */
.reg-intro {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 56px;
  padding: 36px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
}
.reg-stat-big {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
}
.reg-stat-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: #FF6B6B;
  letter-spacing: -0.04em;
  line-height: 1;
}
.reg-stat-label {
  font-size: 0.78rem;
  color: rgba(45,74,26,0.6);
  max-width: 160px;
  line-height: 1.4;
}
.reg-intro p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
}
.reg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.reg-card {
  background: var(--white);
  border: 1px solid rgba(45,106,30,0.12);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.reg-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.reg-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.reg-card__icon { font-size: 1.5rem; }
.reg-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}
.reg-card p {
  font-size: 0.83rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 16px;
}
.reg-card__action {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--green-mid);
  background: rgba(45,106,30,0.08);
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  display: inline-block;
}

/* ── REFUSAL BARS ── */
.refusal-section h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
}
.refusal-bars { display: flex; flex-direction: column; gap: 14px; }
.refusal-bar {
  display: grid;
  grid-template-columns: 260px 1fr 60px;
  align-items: center;
  gap: 16px;
}
.refusal-bar__label {
  font-size: 0.83rem;
  color: var(--text-mid);
  text-align: right;
}
.refusal-bar__track {
  height: 10px;
  background: rgba(45,106,30,0.1);
  border-radius: 5px;
  overflow: hidden;
}
.refusal-bar__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #FF6B6B, #FF8E53);
  border-radius: 5px;
  transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
}
.refusal-bar__fill.animated { width: var(--pct); }
.refusal-bar__pct {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: #FF6B6B;
}

/* ── REVENUE TABLE ── */
.revenue-table-wrap {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 48px;
}
.revenue-table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border-dark);
}
.revenue-table-header h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.table-scroll { overflow-x: auto; }
.revenue-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.revenue-table thead tr {
  background: rgba(184,243,105,0.06);
}
.revenue-table th {
  padding: 14px 20px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-bright);
  white-space: nowrap;
}
.revenue-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-dark);
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
}
.revenue-table tbody tr:hover { background: rgba(184,243,105,0.04); }
.revenue-table tbody tr:last-child td { border-bottom: none; }
.t-emoji { margin-right: 6px; }
.t-high { color: var(--green-bright) !important; font-weight: 600; }
.t-med { color: #90EE90 !important; }
.t-low { color: rgba(255,255,255,0.5) !important; }
.risk {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
}
.risk--low { background: rgba(184,243,105,0.15); color: var(--green-bright); }
.risk--med { background: rgba(255,193,7,0.15); color: #FFC107; }
.risk--high { background: rgba(255,107,107,0.15); color: #FF6B6B; }

/* ── REVENUE INSIGHTS ── */
.revenue-insights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.insight-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: background var(--transition), transform var(--transition);
}
.insight-card:hover {
  background: rgba(184,243,105,0.06);
  transform: translateY(-3px);
}
.insight-card__icon { font-size: 1.5rem; margin-bottom: 12px; }
.insight-card h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green-bright);
  margin-bottom: 10px;
}
.insight-card p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

/* ── STRATEGY ── */
.strategy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.strategy-card {
  background: var(--white);
  border: 1px solid rgba(45,106,30,0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.strategy-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.strategy-card__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(45,106,30,0.15);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.04em;
}
.strategy-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}
.strategy-card p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── ROADMAP ── */
.roadmap {
  background: var(--green-deep);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 48px;
}
.roadmap__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 36px;
  letter-spacing: -0.02em;
}
.roadmap__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.roadmap__steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--green-bright), rgba(184,243,105,0.2));
}
.roadmap__step { position: relative; }
.roadmap__step-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--green-deep);
  background: var(--green-bright);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.roadmap__step-content h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green-bright);
  margin-bottom: 12px;
}
.roadmap__step-content li {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  padding: 4px 0;
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.roadmap__step-content li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--green-muted);
  font-size: 0.7rem;
}

/* ── FOOTER ── */
.footer {
  background: var(--green-dark2);
  border-top: 1px solid var(--border-dark);
  padding: 60px 0 40px;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--green-bright);
}
.footer__leaf { font-size: 1.2rem; }
.footer__note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  max-width: 680px;
  line-height: 1.65;
}
.footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--green-bright); }
.footer__copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  margin-top: 8px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .overview-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .geo-factors__grid { grid-template-columns: repeat(2, 1fr); }
  .reg-grid { grid-template-columns: repeat(2, 1fr); }
  .revenue-insights { grid-template-columns: 1fr; }
  .strategy-grid { grid-template-columns: repeat(2, 1fr); }
  .roadmap__steps { grid-template-columns: repeat(2, 1fr); }
  .roadmap__steps::before { display: none; }
  .tf-bar { grid-template-columns: 160px 1fr 70px; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__menu-btn { display: flex; }
  .hero { padding: 100px 24px 60px; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; }
  .geo-factors__grid { grid-template-columns: 1fr; }
  .reg-grid { grid-template-columns: 1fr; }
  .reg-intro { grid-template-columns: 1fr; }
  .strategy-grid { grid-template-columns: 1fr; }
  .roadmap__steps { grid-template-columns: 1fr; }
  .refusal-bar { grid-template-columns: 1fr; gap: 6px; }
  .refusal-bar__label { text-align: left; }
  .tf-bar { grid-template-columns: 1fr; gap: 4px; }
  .tf-bar__label { text-align: left; }
  .audio-bar__label { display: none; }
  .section { padding: 64px 0; }
  .roadmap { padding: 28px; }
}

@media (max-width: 480px) {
  .hero__stats { grid-template-columns: 1fr 1fr; }
  .hero__cta { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}