﻿
:root {
  /* -- Brand -- */
  --green:         #00573F;
  --green-light:   #E8F4EE;
  --green-accent:  #00c853;
  --green-mint:    #5DCAA5;
  --green-mint-lt: #9FE1CB;

  /* -- Surfaces -- */
  --white:         #FFFFFF;
  --bg-primary:    #F5F5F7;
  --bg-card:       #FBFBFD;
  --bg-dark:       #1D1D1F;
  --bg-darker:     #141414;

  /* -- Text -- */
  --text-primary:   #1D1D1F;
  --text-secondary: #6E6E73;
  --text-tertiary:  #86868B;
  --text-positive:  #2ECC71;
  --text-negative:  #FF5252;

  /* -- Borders -- */
  --border:         rgba(0,0,0,0.08);
  --border-card:    rgba(0,0,0,0.06);

  /* -- Semantic -- */
  --gold:           #B8860B;

  /* -- Shadow scale -- */
  --shadow-sm:       0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:       0 8px 24px rgba(0,0,0,0.10);
  --shadow-lg:       0 16px 40px rgba(0,0,0,0.12);
  --shadow-xl:       0 24px 60px rgba(0,0,0,0.14);
  --shadow-hero:     0 32px 80px rgba(0,0,0,0.50);
  --shadow-green-xs: 0 3px 12px rgba(0,87,63,0.25);
  --shadow-green-sm: 0 4px 16px rgba(0,87,63,0.30);
  --shadow-green-md: 0 6px 20px rgba(0,87,63,0.38);

  /* -- Radii -- */
  --r-sm:  10px;
  --r-md:  16px;
  --r-lg:  22px;
  --r-xl:  28px;
  --r-2xl: 36px;

  /* -- Typography -- */
  --font: 'Poppins', sans-serif;

  /* -- Transitions -- */
  --t-fast:   0.15s ease;
  --t-smooth: 0.30s ease;
  --t-slow:   0.60s ease;

  /* -- Typography scale -- */
  --type-h1:     clamp(38px, 5vw, 65px);
  --type-h2:     clamp(28px, 3.5vw, 46px);
  --type-h3:     clamp(22px, 2.5vw, 30px);
  --type-body:   16px;
  --type-sm:     14px;
  --type-xs:     13px;
  --type-eyebrow: 11px;

  /* -- Type settings -- */
  --fw-bold:     700;
  --fw-extrabold: 800;
  --lh-heading:  1.1;
  --lh-subhead:  1.15;
  --lh-body:     1.75;
  --ls-h1:      -1.5px;
  --ls-h2:      -1.2px;
  --ls-h3:      -0.8px;
  --ls-eyebrow:  2.5px;
}

/* ── TICKER ── */
.ticker-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 34px;
  background: #0a1a12;
  border-bottom: 1px solid rgba(0,87,63,0.35);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ticker-label {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  height: 100%;
  border-right: 1px solid rgba(0,87,63,0.4);
  font-family: var(--font);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
}
.ticker-live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-accent);
  box-shadow: 0 0 6px var(--green-accent);
  animation: tickBlink 1.8s infinite;
}
@keyframes tickBlink { 0%,100%{opacity:1} 50%{opacity:.35} }
.ticker-scroll { flex: 1; overflow: hidden; position: relative; mask-image: linear-gradient(to right, transparent 0%, black 60px, black calc(100% - 60px), transparent 100%); -webkit-mask-image: linear-gradient(to right, transparent 0%, black 60px, black calc(100% - 60px), transparent 100%); }
.ticker-track {
  display: flex;
  animation: tickerScroll 55s linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
.tick-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 22px;
  height: 34px;
  border-right: 1px solid rgba(255,255,255,0.05);
  white-space: nowrap;
}
.tick-name { font-family: var(--font); font-size: 10px; font-weight: 500; color: rgba(255,255,255,0.55); }
.tick-price { font-family: var(--font); font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.88); }
.tick-up { font-family: var(--font); font-size: 9px; font-weight: 600; color: var(--green-accent); }
.tick-dn { font-family: var(--font); font-size: 9px; font-weight: 600; color: var(--text-negative); }
.tick-sep { color: rgba(255,255,255,0.12); font-size: 10px; }
@keyframes tickerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}
body { font-family: var(--font); background: var(--white); color: var(--text-primary); overflow-x: hidden; }
img { display: block; max-width: 100%; }

/* NAV */
nav {
  position: fixed; top: 34px; left: 0; right: 0; z-index: 100;
  height: 72px; display: flex; align-items: center;
  justify-content: space-between; padding: 0 48px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav-logo svg { height: 26px; }
.nav-links {
  display: flex; align-items: center; gap: 28px; list-style: none;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-links a { font-family: var(--font); font-size: 13px; font-weight: 500; color: var(--text-secondary); text-decoration: none; transition: color .15s; }
.nav-links a:hover { color: var(--text-primary); }
.nav-links li.active > a { color: var(--green); font-weight: 600; border-bottom: 2px solid var(--green); padding-bottom: 2px; }

/* Dropdown */
.nav-item-dropdown { position: relative; }
.nav-item-dropdown > a {
  display: inline-flex; align-items: center; gap: 4px;
}
.nav-item-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 7px; height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .2s;
}
.nav-item-dropdown:hover > a::after {
  transform: rotate(-135deg) translateY(-2px);
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%; transform: translateX(-50%);
  background: rgba(255,255,255,0.98);
  border: 1px solid rgba(0,0,0,0.09);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 160px;
  list-style: none;
  opacity: 0; pointer-events: none;
  transform: translateX(-50%) translateY(6px);
  transition: opacity .18s ease, transform .18s ease;
  backdrop-filter: blur(12px);
  z-index: 999;
}
.nav-item-dropdown:hover .nav-dropdown {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown li a {
  display: block;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 13px; font-weight: 400;
  color: var(--text-secondary);
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.nav-dropdown li a:hover {
  background: var(--green-light);
  color: var(--green);
}

.nav-cta { display: flex; align-items: center; gap: 10px; }
.btn-nav-ghost {
  font-family: var(--font); font-size: 14px; font-weight: 500;
  color: var(--text-secondary); background: transparent;
  border: 1px solid #D2D2D7; padding: 8px 16px;
  border-radius: 999px; cursor: pointer; text-decoration: none;
  transition: border-color .2s, color .2s;
}
.btn-nav-ghost:hover { border-color: var(--green); color: var(--green); }
.btn-nav-primary {
  font-family: var(--font); font-size: 14px; font-weight: 600;
  color: var(--white); background: var(--green); border: none;
  padding: 8px 16px; border-radius: 999px; cursor: pointer;
  text-decoration: none; transition: background .2s, box-shadow .2s;
}
.btn-nav-primary:hover { background: var(--green); box-shadow: var(--shadow-green-sm); }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 152px 72px 80px; /* 34px ticker + 72px nav + 46px breathing room */
  overflow: hidden;
}

/* ── Photo background ── */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
@keyframes heroZoom {
  from { transform: scale(1.00); }
  to   { transform: scale(1.06); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.88) 30%, rgba(0, 0, 0, 0.78) 60%, rgba(0, 0, 0, 0.65) 100%), linear-gradient(to top, rgba(0, 0, 0, 0.70) 0%, transparent 50%);
}

/* Subtle dot grid over image adds tech texture */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: radial-gradient(circle, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}

.hero-left { position: relative; z-index: 3; max-width: 640px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px; padding: 8px 16px; margin-bottom: 32px;
  animation: fadeUp .8s .1s ease both;
}
.hero-eyebrow span { font-family: var(--font); font-size: 11px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.60); }
.eyebrow-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green-accent); animation: pulse 2.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.75)} }

.hero-h1 {
  text-shadow: 0 2px 24px rgba(0,0,0,0.7), 0 1px 6px rgba(0,0,0,0.5);
  font-family: var(--font);
  font-size: clamp(38px, 5vw, 65px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  animation: fadeUp .8s .2s ease both;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.hero-h1 .h1-white { color: #FFFFFF; display: block; }
.hero-h1 .h1-green { color: #00573F; display: block; }

.hero-sub {
  text-shadow: 0 1px 12px rgba(0,0,0,0.6);
  font-family: var(--font);
  font-size: 16px; font-weight: 400; line-height: 1.75;
  color: #FFFFFF; max-width: 500px; margin-bottom: 40px;
  animation: fadeUp .8s .3s ease both;
}
.hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; animation: fadeUp .8s .4s ease both; }
.btn-primary {
  font-family: var(--font); font-size: 13px; font-weight: 600;
  color: var(--white); background: var(--green); border: none;
  padding: 8px 18px; border-radius: 999px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  text-decoration: none;
  transition: background var(--t-smooth), box-shadow var(--t-smooth), transform var(--t-smooth);
  box-shadow: var(--shadow-green-sm);
  letter-spacing: 0.1px;
}
.btn-primary:hover { background: var(--green); box-shadow: var(--shadow-green-md); transform: translateY(-1px); }
.btn-secondary {
  font-family: var(--font); font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,.85); background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.25); padding: 10px 24px;
  border-radius: 999px; cursor: pointer; display: inline-flex;
  align-items: center; gap: 6px; text-decoration: none;
  transition: border-color var(--t-smooth), background var(--t-smooth);
  backdrop-filter: blur(8px);
  letter-spacing: 0.1px;
}
.btn-secondary:hover { border-color: rgba(46,204,113,.5); background: rgba(46,204,113,.08); }

.hero-trust { display: flex; align-items: center; gap: 10px; margin-top: 48px; animation: fadeUp .8s .5s ease both; }
.trust-avatars { display: flex; }
.trust-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.4); background: rgba(46,204,113,0.15);
  margin-left: -8px; font-family: var(--font); font-size: 10px; font-weight: 700;
  color: rgba(255,255,255,.85); display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.trust-avatar:first-child { margin-left: 0; }
.trust-text { font-family: var(--font); font-size: 12px; color: rgba(255,255,255,.45); line-height: 1.4; }
.trust-text strong { color: rgba(255,255,255,.80); display: block; font-size: 12px; font-weight: 600; }

/* ── Right side: facility visual card ── */
.hero-right { position: absolute; right: 72px; top: 50%; transform: translateY(-50%); z-index: 3; width: 440px; animation: fadeUp .9s .35s ease both; }
.hero-facility-card {
  background: rgba(0,0,0,0.48);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-2xl);
  overflow: hidden;
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-hero);
}
/* Dashboard header strip */
.hfc-header {
  background: rgba(0,87,63,0.85);
  padding: 12px 18px;
  display: flex; align-items: center; justify-content: space-between;
}
.hfc-title { font-family: var(--font); font-size: 11px; font-weight: 700; letter-spacing: 0.5px; color: #fff; }
.hfc-live { display: flex; align-items: center; gap: 5px; font-family: var(--font); font-size: 9px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.hfc-live-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green-accent); box-shadow: 0 0 5px var(--green-accent); animation: tickBlink 1.8s infinite; }

/* Facility illustration area */
.hfc-scene {
  position: relative;
  height: 220px;
  background: #0d1f14;
  overflow: hidden;
}
.hfc-scene canvas { display: block; width: 100%; height: 100%; }

/* Stats overlay on scene */
.hfc-stats-overlay {
  position: absolute;
  bottom: 12px; left: 12px; right: 12px;
  display: flex; gap: 8px;
}
.hfc-stat-chip {
  flex: 1;
  background: rgba(0,0,0,0.65);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 10px;
  padding: 8px 10px;
  backdrop-filter: blur(8px);
}
.hfc-stat-val { font-family: var(--font); font-size: 14px; font-weight: 800; color: #00573F; line-height: 1; }
.hfc-stat-lbl { font-family: var(--font); font-size: 9px; color: rgba(255,255,255,0.45); margin-top: 2px; }

/* Price rows */
.hfc-prices { padding: 14px 18px; display: flex; flex-direction: column; gap: 0; }
.hfc-price-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.055);
}
.hfc-price-row:last-child { border-bottom: none; }
.hfc-mat { display: flex; align-items: center; gap: 9px; }
.hfc-mat-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.hfc-mat-name { font-family: var(--font); font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.82); }
.hfc-mat-sub { font-family: var(--font); font-size: 9px; color: rgba(255,255,255,0.35); margin-top: 1px; }
.hfc-price-info { text-align: right; }
.hfc-price-val { font-family: var(--font); font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.92); }
.hfc-price-chg { font-family: var(--font); font-size: 9px; font-weight: 600; }
.hfc-price-chg.up { color: var(--text-positive); }
.hfc-price-chg.dn { color: var(--text-negative); }

/* Mini sparklines */
.hfc-spark { display: flex; align-items: flex-end; gap: 2px; height: 20px; }
.hfc-spark-bar { width: 3px; border-radius: 1.5px; background: rgba(255,255,255,0.15); }
.hfc-spark-bar.hi { background: rgba(46,204,113,0.7); }

@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

/* SECTIONS */
.section {
  padding: 48px 72px;
  box-sizing: border-box;
}
.section-eyebrow { font-family: var(--font); font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--green); margin-bottom: 8px; }
.section-title { font-family: var(--font); font-size: var(--type-h2); font-weight: var(--fw-bold); line-height: var(--lh-heading); letter-spacing: var(--ls-h2); color: var(--text-primary); margin-bottom: 16px; }
.section-sub { font-family: var(--font); font-size: var(--type-body); font-weight: 400; color: var(--text-secondary); line-height: var(--lh-body); max-width: 540px; }
.section-header-centered { text-align: center; max-width: 680px; margin: 0 auto 40px; }
.section-header-centered .section-sub { margin: 0 auto; }

/* CATEGORIES */
.categories-section { background: var(--bg-primary); }
.cat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; max-width: 1120px; margin: 0 auto; }
.cat-card {
  background: var(--white);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-sm);
  border-radius: var(--r-xl);
  overflow: visible;  /* allow shadow to bleed */
  cursor: pointer;
  position: relative;
  transition:
    transform .32s cubic-bezier(.22,.68,0,1.2),
    box-shadow .32s ease,
    border-color .22s ease;
}
/* No ring — shadow-first depth strategy */
.cat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0,87,63,0.18);
}

/* Image area: photo fills completely */
.cat-image {
  height: 220px;
  overflow: hidden;
  border-radius: calc(var(--r-xl) - 1px) calc(var(--r-xl) - 1px) 0 0;
  position: relative;
  background: #f0f0f0;
}
.cat-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform .45s cubic-bezier(.22,.68,0,1.2);
}
.cat-card:hover .cat-image img {
  transform: scale(1.05);
}
/* Light scrim at bottom of image for text legibility if ever needed */
.cat-image::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(0,0,0,0.08), transparent);
  pointer-events: none;
}
.cat-body { padding: 20px 22px 26px; }
.cat-tag {
  display: inline-block;
  font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--green);
  background: var(--green-light);
  border-radius: 999px;
  padding: 4px 8px;
  margin-bottom: 8px;
}
.cat-name { font-size: 18px; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.cat-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 16px; }
.cat-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 600; color: var(--green); text-decoration: none;
}
.cat-link svg { transition: transform .2s; }
.cat-card:hover .cat-link svg { transform: translateX(4px); }

/* TRUST / STATS */
.trust-section {
  background: var(--white);
  position: relative; overflow: hidden;
  border-top: none;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  padding-top: 64px;
  padding-bottom: 64px;
}
.trust-heading {
  text-align: center;
  margin-bottom: 40px;
}
.trust-heading-eyebrow {
  display: inline-block;
  font-family: var(--font); font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--green);
  margin-bottom: 12px;
}
.trust-heading-title {
  font-family: var(--font); font-size: var(--type-h2);
  font-weight: var(--fw-bold); letter-spacing: var(--ls-h2); color: var(--text-primary);
  line-height: var(--lh-heading);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  position: relative; z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
}
.trust-card {
  background: var(--white);
  border: 1px solid var(--border-card);
  border-radius: var(--r-xl);
  padding: 18px 20px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.trust-card:hover {
  border-color: rgba(0,0,0,.10);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
/* trust-card — shadow-first; no decorative line needed */
.trust-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: #F5F5F7;
  border: 1px solid rgba(0,0,0,.06);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px;
}
.trust-icon svg { width: 22px; height: 22px; stroke: var(--green); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.trust-number {
  font-family: var(--font);
  font-size: clamp(22px, 2.4vw, 30px); font-weight: 800;
  color: var(--text-primary);
  line-height: 1; margin-bottom: 8px;
  letter-spacing: -1.5px;
}
.trust-number em { font-style: normal; color: var(--text-primary); }
.trust-label {
  font-family: var(--font);
  font-size: 13px; font-weight: 500;
  color: #4B5563;
  line-height: 1.55;
}

/* ── REACH / GEOGRAPHY SECTIONS ── */
.reach-intro {
  background: #F2F4F0;
  padding: 48px 72px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.reach-intro-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 32px;
}
.reach-eyebrow {
  font-family: var(--font);
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--green); margin-bottom: 10px;
}
.reach-title {
  font-family: var(--font);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -1.2px;
  color: var(--text-primary); margin-bottom: 12px;
}
.reach-sub {
  font-family: var(--font);
  font-size: var(--type-body); font-weight: 400;
  color: var(--text-secondary); line-height: var(--lh-body);
}

/* Domestic & International split panels */
.geo-section {
  background: #F2F4F0;
  padding: 48px 72px 48px;
}
.geo-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 520px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  max-width: 1440px;
  margin: 0 auto;
}
.geo-panel + .geo-panel {
  margin-top: 48px;
}
.geo-text {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.geo-text-eyebrow {
  font-family: var(--font);
  font-size: var(--type-eyebrow); font-weight: var(--fw-bold);
  letter-spacing: var(--ls-eyebrow); text-transform: uppercase;
  color: var(--green); margin-bottom: 12px;
}
.geo-text h3 {
  font-family: var(--font);
  font-size: var(--type-h3);
  font-weight: var(--fw-bold); line-height: var(--lh-subhead);
  letter-spacing: var(--ls-h3);
  color: var(--text-primary); margin-bottom: 14px;
}
.geo-text p {
  font-family: var(--font);
  font-size: 15px; font-weight: 400;
  color: var(--text-secondary); line-height: 1.75;
  max-width: 420px; margin-bottom: 28px;
}
.geo-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.geo-tag {
  font-family: var(--font);
  font-size: 11px; font-weight: 500;
  color: var(--text-primary);
  background: white;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 999px;
  padding: 4px 12px;
}
.geo-map {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 480px;
}
/* India map: black bg matching the image */
.geo-map.india-map {
  background: #000;
}
/* World map: black bg */
.geo-map.world-map {
  background: #000;
}
.geo-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
/* Subtle border separator */
.geo-map.india-map { border-left: 1px solid rgba(0,0,0,0.08); }
.geo-map.world-map { border-right: 1px solid rgba(0,0,0,0.08); }

.geo-section-bottom-pad { background: #F2F4F0; padding-bottom: 40px; }

@media (max-width:1100px) {
  .geo-panel { grid-template-columns: 1fr; }
  .geo-map { min-height: 320px; }
  .geo-map.india-map, .geo-map.world-map { border: none; border-top: 1px solid rgba(0,0,0,0.08); }
  .reach-intro { padding: 56px 40px 0; }
  .geo-section { padding: 0 40px; }
  /* International panel: text before image on tablet + mobile */
  .geo-map.world-map { order: 2; }
  .geo-panel .geo-text { order: 1; }
}
@media (max-width:768px) {
  .reach-intro { padding: 48px 24px 0; }
  .geo-section { padding: 0 24px; }
  .geo-text { padding: 40px 24px; }
  /* International panel: text before image on mobile */
  .geo-map.world-map { order: 2; }
  .geo-panel .geo-text { order: 1; }
}

/* ════════ OFFERINGS ════════ */
.offerings-section {
  background: var(--white);
  padding: 0;
}

/* Header */
.off-header {
  padding: 48px 72px 0;
  text-align: center;
}
.off-header .section-eyebrow { color: var(--green); }
.off-header .section-title { color: var(--text-primary); }
.off-header .section-sub { color: var(--text-secondary); margin: 0 auto; }

/* Tabs */
.offerings-tabs {
  display: flex; gap: 8px;
  justify-content: center;
  padding: 40px 72px 0;
}
.tab-btn {
  font-family: var(--font); font-size: 13px; font-weight: 500;
  padding: 8px 24px; border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.12);
  background: var(--white); color: var(--text-secondary);
  cursor: pointer; transition: all .2s;
}
.tab-btn.active {
  background: var(--text-primary); border-color: var(--text-primary);
  color: var(--white); font-weight: 600;
}
.tab-btn:not(.active):hover { border-color: var(--green); color: var(--green); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── SELLER PANEL ── */
.seller-panel {
  padding: 56px 72px 80px;
}

/* Row 1: phone1 left, text right */
.seller-row1 {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 0;
}
.seller-phone-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.seller-phone-wrap img {
  max-height: 640px;
  width: auto;
  object-fit: contain;
  display: block;
  /* no drop-shadow — bg blends with white container */
}
.seller-text h2 {
  font-family: var(--font);
  font-size: var(--type-h2);
  font-weight: var(--fw-bold); line-height: var(--lh-heading);
  letter-spacing: var(--ls-h2);
  color: var(--text-primary);
  margin-bottom: 16px;
}
.seller-text p {
  font-family: var(--font);
  font-size: var(--type-body); color: var(--text-secondary);
  line-height: var(--lh-body); margin-bottom: 0;
}

/* Two-phones image wrap in row 2 */
.seller-two-phones-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.seller-two-phones-wrap img {
  width: 100%;
  max-width: 580px;
  height: auto;
  display: block;
  border-radius: 12px;
  filter: none;
}

/* Row 2: hidden until 5s after tab loads */
.seller-row2 {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
  padding-top: 56px;
  margin-top: 56px;
}
.seller-row2.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Phone slider */
.phone-slider {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* height matches USP column — controlled by parent grid */
  min-height: 360px;
  overflow: hidden;
}
.phone-slide {
  position: absolute;
  bottom: 0;
  width: 260px;
  transition: transform .6s cubic-bezier(.4,0,.2,1), opacity .6s ease;
}
.phone-slide img {
  width: 100%;
  height: auto;
  display: block;
  /* no shadow — tilted mockup bg blends with white container */
}
/* Slide states */
.phone-slide.ps-active { transform: translateX(0) scale(1); opacity: 1; z-index: 2; }
.phone-slide.ps-prev   { transform: translateX(-110%) scale(0.92); opacity: 0; z-index: 1; }
.phone-slide.ps-next   { transform: translateX(110%) scale(0.92); opacity: 0; z-index: 1; }

/* USP list */
.seller-usps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.seller-usp-item {
  display: flex;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  align-items: flex-start;
}
.seller-usp-item:last-of-type { border-bottom: none; }
.susp-num {
  font-family: var(--font);
  font-size: 11px; font-weight: 700;
  color: var(--green);
  background: var(--green-light);
  border-radius: 999px;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
  letter-spacing: 0;
}
.susp-title {
  font-family: var(--font);
  font-size: 15px; font-weight: 700;
  color: var(--text-primary); margin-bottom: 4px;
}
.susp-desc {
  font-family: var(--font);
  font-size: 13px; color: var(--text-secondary); line-height: 1.6;
}

/* Progress dots */
.slider-dots {
  display: flex; gap: 6px;
  justify-content: center;
  margin-top: 20px;
}
.s-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(0,0,0,0.15);
  cursor: pointer;
  transition: background .25s, transform .25s;
}
.s-dot.active { background: var(--green); transform: scale(1.3); }

/* ── BUYER PANEL ── */
.buyer-panel { padding: 0; }

/* Row A: desktop right, text left */
.buyer-row-a {
  display: grid;
  grid-template-columns: 1fr 2.4fr;
  gap: 40px;
  align-items: center;
  padding: 56px 72px 56px;
  background: var(--white);
}
.buyer-text-a h2 {
  font-family: var(--font);
  font-size: var(--type-h2);
  font-weight: var(--fw-bold); line-height: var(--lh-heading);
  letter-spacing: var(--ls-h2);
  color: var(--text-primary); margin-bottom: 16px;
}
.buyer-text-a p {
  font-family: var(--font);
  font-size: var(--type-body); color: var(--text-secondary);
  line-height: var(--lh-body);
}
.buyer-desktop-wrap {
  display: flex; justify-content: flex-end; align-items: center;
  margin-right: -40px;
}
.buyer-desktop-wrap img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow: var(--shadow-xl);
}

/* Row B: alternating phone screens left, USPs right */
.buyer-row-b {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 56px 72px 80px;
  background: var(--white);
}

/* Stacked phone pair with crossfade */
.buyer-phone-stack {
  position: relative;
  height: 820px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bps-slide {
  position: absolute;
  width: 100%;
  max-width: 560px;
  transition: opacity .8s ease, transform .8s ease;
}
.bps-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}
.bps-slide.bps-active { opacity: 1; transform: scale(1); z-index: 2; }
.bps-slide.bps-hidden { opacity: 0; transform: scale(0.97); z-index: 1; }

/* Buyer USP list */
.buyer-usps { display: flex; flex-direction: column; gap: 0; }
.buyer-usp-item {
  display: flex; gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  align-items: flex-start;
}
.buyer-usp-item:last-of-type { border-bottom: none; }
.busp-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--green-light);
  border: 1px solid rgba(0,87,63,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.busp-icon svg { width: 18px; height: 18px; stroke: var(--green); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.busp-title { font-family: var(--font); font-size: 14px; font-weight: 700; color: var(--text-primary); margin-bottom: 3px; }
.busp-desc { font-family: var(--font); font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ── SHARED BUTTON (compact) ── */
.btn-offer {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font); font-size: 14px; font-weight: 600;
  color: var(--white); background: var(--green);
  border: none; padding: 10px 24px;
  border-radius: 999px; cursor: pointer; text-decoration: none;
  transition: background var(--t-smooth), box-shadow var(--t-smooth), transform var(--t-smooth);
  box-shadow: var(--shadow-green-xs);
  margin-top: 24px;
  width: fit-content;
}
.btn-offer:hover { background: var(--green); box-shadow: var(--shadow-green-md); transform: translateY(-1px); }

/* Enterprise: keep simple layout */
.enterprise-panel { padding: 56px 72px 80px; }
.enterprise-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}
.ent-text h2 { font-family: var(--font); font-size: var(--type-h2); font-weight: var(--fw-bold); line-height: var(--lh-heading); letter-spacing: var(--ls-h2); color: var(--text-primary); margin-bottom: 16px; }
.ent-text p { font-family: var(--font); font-size: var(--type-body); color: var(--text-secondary); line-height: var(--lh-body); margin-bottom: 0; }
.ent-features { display: flex; flex-direction: column; gap: 0; }
.ent-item { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.ent-item:last-of-type { border-bottom: none; }
.ent-check { width: 22px; height: 22px; border-radius: 50%; background: var(--green-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.ent-check svg { width: 11px; height: 11px; stroke: var(--green); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.ent-title { font-family: var(--font); font-size: 14px; font-weight: 700; color: var(--text-primary); margin-bottom: 3px; }
.ent-desc { font-family: var(--font); font-size: 13px; color: var(--text-secondary); line-height: 1.55; }

/* Responsive */
@media (max-width:1100px) {
  .off-header { padding: 40px 40px 0; }
  .offerings-tabs { padding: 28px 40px 0; }
  .seller-panel { padding: 48px 40px 64px; }
  .seller-row1, .seller-row2 { grid-template-columns: 1fr; gap: 40px; }
  .phone-slider { height: 380px; }
  .phone-slide { width: 200px; }
  .buyer-row-a, .buyer-row-b { grid-template-columns: 1fr; gap: 40px; padding: 48px 40px; }
  .buyer-phone-stack { height: 360px; }
  .enterprise-panel { padding: 48px 40px 64px; }
  .enterprise-grid { grid-template-columns: 1fr; gap: 40px; }
  /* For Buyers Row B: content before image on tablet + mobile */
  .buyer-usps { order: 1; }
  .buyer-phone-stack { order: 2; height: auto; }
}
@media (max-width:768px) {
  .off-header { padding: 32px 24px 0; }
  .offerings-tabs { padding: 24px 24px 0; }
  .seller-panel { padding: 40px 24px 56px; }
  .buyer-row-a, .buyer-row-b { padding: 40px 24px; }
  .enterprise-panel { padding: 40px 24px 56px; }
}

/* USP */
.usp-section { background: var(--bg-primary); }
.usp-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  max-width: 1440px;
  margin: 0 auto;
}
.usp-card {
  border-radius: var(--r-lg);
  padding: 32px 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
}
/* Card colour themes */
.usp-card.card-green  { background: linear-gradient(135deg, #00573F 0%, #0A8A5E 55%, #12B87A 100%); grid-column: span 3; }
.usp-card.card-black  { background: #000000; grid-column: span 3; }
.usp-card.card-light  {
  background: #F5F5F7;
  grid-column: span 2;
  width: 100%;
  max-width: 100%;
  min-height: 260px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  box-shadow: var(--shadow-lg);
}
.usp-card.card-dark   { background: #1D1D1F; grid-column: span 2; }
.usp-card.card-mint   {
  background: #F5F5F7;
  grid-column: span 2;
  box-shadow: var(--shadow-lg);
}

.usp-tag {
  font-family: var(--font);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 10px; display: block;
}
.card-green  .usp-tag { color: var(--green-mint-lt); }
.card-black  .usp-tag { color: var(--green-mint); }
.card-light  .usp-tag { color: #00573F; }
.card-dark   .usp-tag { color: var(--green-mint); }
.card-mint   .usp-tag { color: #00573F; }

.usp-name {
  font-family: var(--font);
  font-size: 22px; font-weight: 700;
  line-height: 1.18; margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.card-green  .usp-name { color: #ffffff; }
.card-black  .usp-name { color: #ffffff; }
.card-light  .usp-name { color: #1D1D1F; }
.card-dark   .usp-name { color: #ffffff; }
.card-mint   .usp-name { color: #1D1D1F; }

.usp-desc {
  font-family: var(--font);
  font-size: 13px; line-height: 1.7;
  max-width: 290px;
}
.card-green  .usp-desc { color: rgba(255,255,255,0.62); }
.card-black  .usp-desc { color: rgba(255,255,255,0.55); }
.card-light  .usp-desc { color: #6B6B6B; }
.card-dark   .usp-desc { color: rgba(255,255,255,0.55); }
.card-mint   .usp-desc { color: #6B6B6B; }

.usp-deco { position: absolute; right: 0; bottom: 0; pointer-events: none; }
.card-light .usp-card-inline-icon {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 120px;
  height: auto;
  pointer-events: none;
}

/* Compliance checklist */
.usp-check-list { margin-top: 20px; display: flex; flex-direction: column; gap: 9px; position: relative; z-index: 1; }
.usp-check-item {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font); font-size: 12px; color: #1D1D1F;
}
.usp-check-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #00573F; flex-shrink: 0;
}

@media (max-width:1100px) {
  /* Tablet: keep 2-row structure — row1: 2 cards, row2: 3 cards */
  .usp-grid { grid-template-columns: repeat(6, 1fr); }
  .usp-card.card-green { grid-column: span 3; }
  .usp-card.card-black { grid-column: span 3; }
  .usp-card.card-light { grid-column: span 2; flex-direction: column; align-items: flex-start; }
  .usp-card.card-dark  { grid-column: span 2; }
  .usp-card.card-mint  { grid-column: span 2; }
  .card-light .usp-card-inline-icon { position: absolute; right: 0; bottom: 0; width: 110px; height: auto; }
}
@media (max-width:768px) {
  /* Mobile: one-at-a-time swipe carousel */
  .usp-section { overflow: hidden; }
  .usp-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .usp-grid::-webkit-scrollbar { display: none; }
  .usp-card {
    flex: 0 0 calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    scroll-snap-align: start;
    min-height: 260px;
    grid-column: unset;
  }
  .usp-card.card-light { width: calc(100vw - 40px); max-width: calc(100vw - 40px); flex-direction: column; align-items: flex-start; }
  .card-light .usp-card-inline-icon { position: absolute; right: 0; bottom: 0; width: 100px; height: auto; }
}

/* TESTIMONIALS */
.testimonials-section { background: var(--white); }
.test-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; max-width: 1440px; margin: 0 auto; }
.test-card { border: 1px solid var(--border-card); border-radius: var(--r-xl); padding: 32px 32px; background: var(--bg-card); box-shadow: var(--shadow-sm); transition: border-color .25s, box-shadow .25s, transform .25s; position: relative; overflow: hidden; }
.test-card:hover { border-color: rgba(0,87,63,0.20); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.test-card::before { content: '"'; position: absolute; top: -8px; right: 20px; font-size: 100px; font-weight: 800; color: rgba(0,0,0,.04); line-height: 1; font-family: Georgia, serif; }
.test-tag { display: inline-flex; align-items: center; gap: 4px; font-size: 10px; font-weight: 600; color: var(--text-tertiary); background: var(--bg-primary); padding: 4px 8px; border-radius: 999px; margin-bottom: 16px; }
.test-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.test-stars svg { width: 14px; height: 14px; fill: var(--gold); stroke: none; }
.test-quote { font-size: 15px; font-weight: 400; line-height: 1.75; color: var(--text-secondary); margin-bottom: 24px; letter-spacing: -.1px; }
.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 700; color: var(--white); flex-shrink: 0; }
.test-avatar.a1 { background: #2A5C45; }
.test-avatar.a2 { background: var(--gold); }
.test-avatar.a3 { background: #3A6B8A; }
.test-name { font-size: 14px; font-weight: 600; color: var(--text-primary); letter-spacing: -.2px; }
.test-role { font-size: 12px; color: var(--text-tertiary); margin-top: 1px; }

/* FOOTER */
footer { background: var(--bg-darker); padding: 64px 72px 40px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.06); max-width: 1440px; margin: 0 auto; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.35); line-height: 1.75; margin-top: 14px; max-width: 280px; letter-spacing: -.1px; }
.footer-brand-badges { display: flex; gap: 8px; margin-top: 20px; }
.fbadge { font-size: 10px; font-weight: 500; color: rgba(255,255,255,.35); border: 1px solid rgba(255,255,255,.10); padding: 4px 10px; border-radius: 999px; }
.footer-col h4 { font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.25); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col li a { font-size: 13px; color: rgba(255,255,255,.50); text-decoration: none; transition: color .15s; letter-spacing: -.1px; }
.footer-col li a:hover { color: rgba(255,255,255,.85); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; max-width: 1440px; margin: 0 auto; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.20); }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,.20); text-decoration: none; transition: color .15s; }
.footer-legal a:hover { color: rgba(255,255,255,.50); }
.footer-logo-wrap { display: flex; align-items: center; margin-bottom: 0; text-decoration: none; }
.footer-logo-wrap svg { height: 26px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.count-up { display: inline; }

/* Shrink hero card on small desktops before it clips the headline */
@media (max-width: 1300px) {
  .hero-right { width: 360px; }
}
@media (max-width: 1200px) {
  .hero-right { display: none; }
}

/* ── TABLET NAV: show hamburger, hide links ── */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  nav:not(.nav-scrolled) .nav-mobile-toggle { color: rgba(255,255,255,0.9); }
  nav.nav-scrolled .nav-mobile-toggle { color: #1D1D1F; }
  .nav-mobile-toggle { color: #1D1D1F; }
}

@media (max-width:1100px) {
  .hero { padding: 94px 40px 60px; }
  .hero-left { max-width: 100%; }
  .hero-right { display: none; }
  .cat-grid { grid-template-columns: repeat(2,1fr); }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .test-grid { grid-template-columns: repeat(2,1fr); }
  .usp-grid { grid-template-columns: 1fr 1fr; }
  .usp-grid .usp-card:nth-child(5) { grid-column: span 2; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .offerings-tabs { flex-wrap: wrap; }
}
@media (max-width:768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .section { padding: 40px 24px; }
  .hero { padding: 94px 24px 60px; }
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .tab-panel.active { grid-template-columns: 1fr; }
  .offerings-visual { display: none; }
  .usp-grid { grid-template-columns: 1fr; }
  .usp-grid .usp-card:nth-child(5) { grid-column: span 1; flex-direction: column; }
  .footer-top { flex-direction: column; gap: 32px; }
  footer { padding: 48px 24px 32px; }
  .hero-h1 { letter-spacing: -1px; }
  .section-title { letter-spacing: -1px; }

  /* ── Testimonials: one-at-a-time swipe carousel ── */
  .testimonials-section { overflow: hidden; }
  .test-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    /* Bleed past section padding so cards sit edge-to-edge */
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .test-grid::-webkit-scrollbar { display: none; }
  .test-card {
    flex: 0 0 calc(100vw - 48px);
    max-width: calc(100vw - 48px);
    scroll-snap-align: start;
    /* Disable the lift-on-hover so it doesn't interfere with swipe */
    transform: none !important;
  }
}

/* ── FEATURED IN ── */
.featured-in-section {
  background: var(--white);
  padding: 64px 0;
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.07);
  border-bottom: none;
}
.fi-inner { max-width: 100%; }
.fi-header {
  text-align: center;
  margin-bottom: 20px;
  padding: 0 72px;
}
.fi-eyebrow {
  font-family: var(--font);
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--green); margin-bottom: 10px;
}
.fi-title {
  font-family: var(--font);
  font-size: var(--type-h2);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-h2);
  color: var(--text-primary);
  line-height: var(--lh-heading);
}
.fi-slider-wrap {
  position: relative;
  overflow: hidden;
}
.fi-fade-left,
.fi-fade-right {
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.fi-fade-left {
  left: 0;
  background: linear-gradient(to right, var(--white) 0%, transparent 100%);
}
.fi-fade-right {
  right: 0;
  background: linear-gradient(to left, var(--white) 0%, transparent 100%);
}
.fi-track-outer {
  overflow: hidden;
  /* Force GPU compositing layer so iOS Safari renders animated children */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.fi-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: fiScroll 22s linear infinite;
  -webkit-animation: fiScroll 22s linear infinite;
  align-items: center;
  padding: 12px 0;
  will-change: transform;
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.fi-track:hover { animation-play-state: paused; }
@-webkit-keyframes fiScroll {
  0%   { -webkit-transform: translateX(0); transform: translateX(0); }
  100% { -webkit-transform: translateX(-50%); transform: translateX(-50%); }
}
@keyframes fiScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.fi-card {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--r-lg);
  width: 260px;
  height: 130px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  transition: box-shadow .28s ease, transform .28s ease, border-color .22s ease;
  box-shadow: var(--shadow-sm);
  padding: 24px 32px;
  gap: 0;
}
.fi-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(0,87,63,0.25);
}
.fi-share-btn {
  position: absolute;
  top: 12px; right: 12px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(0,0,0,0.05);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.fi-card:hover .fi-share-btn {
  background: rgba(0,87,63,0.12);
}
.fi-share-btn svg {
  width: 13px; height: 13px;
  stroke: var(--text-tertiary);
  fill: none; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
.fi-card:hover .fi-share-btn svg { stroke: var(--green); }
.fi-logo-wrap {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
}
.fi-logo-wrap svg,
.fi-logo-wrap img {
  max-height: 52px;
  max-width: 160px;
  object-fit: contain;
  display: block;
  margin: auto;
}

.geo-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 10px 24px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow-green-xs);
  transition: transform var(--t-smooth), box-shadow var(--t-smooth), background var(--t-smooth);
  width: fit-content;
}
.geo-cta:hover {
  background: var(--green);
  transform: translateY(-1px);
  box-shadow: var(--shadow-green-sm);
}


.cat-glass .cat-image img,
.geo-map.world-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}


.start-buying-neutral {
  background: #F5F5F7;
  color: var(--green);
  border-color: rgba(0,87,63,0.18);
}
.start-buying-neutral:hover {
  background: #F5F5F7;
  color: var(--green);
  border-color: rgba(0,87,63,0.32);
}


.trust-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trust-number {
  white-space: nowrap;
  display: block;
  text-align: center;
  line-height: 1;
}

.trust-number em,
.trust-number .currency-symbol,
.trust-number .count-up {
  display: inline;
}

.trust-label {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
}


.rupee-stat-icon {
  font-family: var(--font);
  font-size: 28px;
  font-weight: 500;
  color: var(--green);
  line-height: 1;
}



.nav-logo img {
  height: 26px;
  display: block;
}

nav.nav-scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}
nav:not(.nav-scrolled) .nav-links a { color: rgba(255,255,255,0.90); text-shadow: 0 1px 4px rgba(0,0,0,0.6); }
nav:not(.nav-scrolled) .nav-links a:hover { color: #fff; }
nav:not(.nav-scrolled) .btn-nav-ghost { color: rgba(255,255,255,0.90); border-color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.08); }
nav:not(.nav-scrolled) .btn-nav-ghost:hover { border-color: rgba(255,255,255,0.70); color: #fff; }
nav:not(.nav-scrolled) .nav-item-dropdown > a::after { border-color: rgba(255,255,255,0.70); }

/* ══ MOBILE OVERRIDES ══ */
@media (max-width: 768px) {
  /* Nav */
  nav { height: 52px; padding: 0 16px; }
  .btn-nav-ghost { display: none; }
  .btn-nav-primary { font-size: 12px; padding: 10px 14px; min-height: 44px; white-space: nowrap; }
  .nav-cta { gap: 8px; }

  /* Hero */
  .hero { padding: 110px 20px 56px; min-height: 100svh; }
  .hero-h1 { font-size: clamp(32px, 9vw, 48px); letter-spacing: var(--ls-h1); margin-bottom: 16px; }
  .hero-sub { font-size: 14px; margin-bottom: 28px; }
  .hero-actions { gap: 10px; }
  .btn-primary, .btn-secondary { font-size: 13px; padding: 12px 20px; min-height: 44px; }
  .hero-right { display: none; }
  .hero-trust { margin-top: 32px; }

  /* Sections */
  .section { padding: 32px 20px; }
  .section-title { font-size: clamp(26px, 7vw, 36px); letter-spacing: var(--ls-h2); }
  .section-sub { font-size: 15px; }
  .section-header-centered { margin-bottom: 40px; }

  /* Categories */
  .cat-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Trust */
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  /* Tabs / Offerings */
  .off-header { padding: 32px 20px 0; }
  .offerings-tabs { padding: 24px 20px 0; flex-wrap: wrap; gap: 8px; }
  .tab-btn { font-size: 12px; padding: 12px 16px; min-height: 44px; }
  .offerings-visual { display: none; }
  .tab-panel.active { grid-template-columns: 1fr; gap: 12px; }

  /* USP — handled by swipe carousel rules above */

  /* Geo */
  .geo-panel { grid-template-columns: 1fr; }
  .geo-text { padding: 32px 20px; }
  .reach-intro { padding: 40px 20px 0; }
  .geo-section { padding: 0 20px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  footer { padding: 40px 20px 28px; }
}

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  /* Featured In — reduce fade masks so content is visible */
  .fi-fade-left, .fi-fade-right { width: 48px; }
  /* Footer bottom — wrap on narrow phones */
  .footer-bottom { flex-wrap: wrap; gap: 8px; justify-content: center; }
}

/* USP bento icon — hide at very small screens to prevent text overlap */
@media (max-width: 360px) {
  .card-light .usp-card-inline-icon { display: none; }
}

/* ── BUYER PANEL ── */

.buyer-panel {
    padding: 0;
}

.buyer-row-a {
    display: grid;
    grid-template-columns: 1fr 2.4fr;
    gap: 40px;
    align-items: center;
    padding: 56px 72px 20px;
    background: var(--white);
}

.buyer-desktop-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.buyer-desktop-wrap img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
}

/* Bottom Section */

.buyer-row-b {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 20px 72px 40px;
    background: var(--white);
}

.buyer-phone-stack {
    width: 100%;
    position: relative;
    display: block;
    min-height: auto;
    height: auto;
}

.bps-slide {
    position: relative;
    width: 100%;
    max-width: none;
    top: auto;
    left: auto;
    transform: none;
}

.bps-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.bps-slide.bps-hidden {
    display: none;
}

.bps-slide.bps-active {
    display: block;
}

@media (max-width:1100px) {
    .buyer-row-a,
    .buyer-row-b {
        grid-template-columns: 1fr;
        padding: 40px;
    }
}

@media (max-width:768px) {
    .buyer-row-a,
    .buyer-row-b {
        padding: 24px;
    }
}

