/* ==========================================================================
   AgriRobo Marketing Website — Design System v3
   Font: Space Grotesk (Google Fonts)
   Palette: #050c07 bg + #4ade80 lime
   ========================================================================== */

/* ── Variables ─────────────────────────────────────────────────────────── */
:root {
  --bg:           #050c07;
  --bg-alt:       #07100a;
  --surface:      #0d1a10;
  --surface-hi:   #142018;
  --border:       rgba(74,222,128,0.09);
  --border-hi:    rgba(74,222,128,0.22);
  --border-glow:  rgba(74,222,128,0.5);

  --accent:       #4ade80;
  --accent-dim:   rgba(74,222,128,0.10);
  --accent-glow:  rgba(74,222,128,0.3);
  --accent-dark:  #22c55e;
  --warn:         #f6c85f;
  --warn-dim:     rgba(246,200,95,0.1);

  --text:         #edfaf1;
  --text-muted:   #7aa384;
  --text-faint:   #3a5441;
  --text-ghost:   #1d3323;

  --radius-xs:    6px;
  --radius-sm:    10px;
  --radius:       16px;
  --radius-lg:    24px;
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.35);
  --shadow:       0 8px 32px rgba(0,0,0,0.5);
  --shadow-lg:    0 20px 64px rgba(0,0,0,0.6);
  --transition:   0.22s cubic-bezier(0.4,0,0.2,1);

  --max-w:        1160px;
  --section-py:   100px;
}

/* ── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: "Space Grotesk", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
ul { list-style: none; }
em { font-style: italic; }

/* ── Scroll animations ────────────────────────────────────────────────────── */
/* ── Animation system ────────────────────────────────────────────────────── */
/* expo-out — the easing used by Framer/Linear. Starts fast, decelerates smoothly. */

.reveal,
.reveal-up,
.reveal-left,
.reveal-right,
.stagger-child {
  opacity: 0;
  will-change: opacity, transform;
}

.reveal       { transform: translateY(32px) scale(0.97); transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1), transform 0.85s cubic-bezier(0.16,1,0.3,1); }
.reveal-up    { transform: translateY(52px) scale(0.96); transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1); }
.reveal-left  { transform: translateX(-48px); transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1), transform 0.85s cubic-bezier(0.16,1,0.3,1); }
.reveal-right { transform: translateX(48px);  transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1), transform 0.85s cubic-bezier(0.16,1,0.3,1); }

.reveal.revealed,
.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed,
.stagger-child.revealed {
  opacity: 1;
  transform: none;
}

.stagger-child {
  transform: translateY(28px) scale(0.96);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1) var(--delay, 0ms),
              transform 0.7s cubic-bezier(0.16,1,0.3,1) var(--delay, 0ms);
}

/* Word reveal — pure clip (no opacity, just translateY behind overflow:hidden) */
.word-wrap { overflow: hidden; display: inline-block; vertical-align: bottom; line-height: 1.1; padding-bottom: 0.05em; }
.word      { display: inline-block; transform: translateY(108%); transition: transform 0.9s cubic-bezier(0.16,1,0.3,1); }
.word.revealed { transform: translateY(0); }


/* ── Utilities ───────────────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.section    { padding: var(--section-py) 0; }
.text-green { color: var(--accent); }

.label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--border-hi);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text);
}

/* ── Reveal animations ──────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1), transform 0.65s cubic-bezier(0.16,1,0.3,1);
}
.reveal.revealed { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.45s; }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  will-change: transform;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: white;
  opacity: 0;
  transition: opacity 0.15s;
}
.btn:active::after { opacity: 0.06; }

.btn-primary { background: var(--accent); color: #040c06; font-weight: 700; }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 32px var(--accent-glow); }
.btn-primary:active { transform: translateY(0); }

.btn-outline { background: transparent; color: var(--text); border: 1.5px solid rgba(255,255,255,0.25); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-lg { padding: 16px 34px; font-size: 16px; }
.btn-block { width: 100%; }

/* ── Navigation ─────────────────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.3s, padding 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.site-nav.scrolled {
  background: rgba(5,12,7,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-color: var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  flex-shrink: 0;
}
.nav-logo-svg { width: 36px; height: 36px; }
.nav-logo-text { letter-spacing: -0.01em; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.04); }

.nav-cta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.nav-demo-btn { gap: 10px; }
.nav-btn-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #050c07;
  border: 2px solid #050c07;
  background: currentColor;
  opacity: 0.6;
  display: inline-block;
  flex-shrink: 0;
}

.nav-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  align-items: center;
  justify-content: center;
}
.hamburger-line {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}
.nav-menu-btn.open .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-menu-btn.open .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-menu-btn.open .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: -5%;
  background:
    radial-gradient(circle, rgba(74,222,128,0.10) 1px, transparent 1px),
    radial-gradient(ellipse 75% 95% at 88% 42%, rgba(74,222,128,0.08) 0%, transparent 62%),
    radial-gradient(ellipse 45% 55% at 12% 78%, rgba(74,222,128,0.04) 0%, transparent 58%),
    #050c07;
  background-size: 38px 38px, 100% 100%, 100% 100%, 100% 100%;
  transform: scale(1.05);
  transition: transform 0.1s linear;
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(5,12,7,0.94) 0%, rgba(5,12,7,0.75) 55%, rgba(5,12,7,0.45) 100%),
    radial-gradient(900px circle at 15% 45%, rgba(74,222,128,0.07) 0%, transparent 60%);
  z-index: 1;
}
.hero .container { position: relative; z-index: 3; }
.hero-content { max-width: 660px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulsedot 2s ease-in-out infinite;
  flex-shrink: 0;
}

.hero-headline {
  font-size: clamp(52px, 7.5vw, 88px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0;
  color: var(--text);
  margin-bottom: 28px;
  display: block;
}
.hero-line { display: block; }
.hero-line-2 { display: block; }
.hero-em { font-style: italic; color: var(--accent); }
.hero-white { color: var(--text); }

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-muted);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.trust-sep { color: var(--text-faint); font-size: 10px; }

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}
.hero-particle {
  position: absolute;
  bottom: -20px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(74,222,128,0.45);
  white-space: nowrap;
  animation: particleFloat linear infinite;
  opacity: 0;
}
@keyframes particleFloat {
  0%   { transform: translateY(0) scale(0.85); opacity: 0; }
  8%   { opacity: 1; }
  85%  { opacity: 0.5; }
  100% { transform: translateY(-360px) scale(1.05); opacity: 0; }
}
@keyframes pulsedot {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.4); }
}

/* Hero two-column layout */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
  position: relative;
  flex-shrink: 0;
}
.hero-tower-svg {
  width: 260px;
  height: auto;
  filter: drop-shadow(0 0 48px rgba(74,222,128,0.10));
}
.hero-tower-img {
  height: 88vh;
  width: auto;
  max-width: 340px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 0 60px rgba(74,222,128,0.18)) drop-shadow(0 0 120px rgba(74,222,128,0.08));
  display: block;
}


/* ── Ticker ───────────────────────────────────────────────────────────────── */
.ticker-wrap {
  overflow: hidden;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  position: relative;
  z-index: 5;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 36px;
  width: max-content;
  animation: ticker 28s linear infinite;
}
.ticker-wrap:hover .ticker-track { animation-play-state: paused; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-dot {
  color: var(--accent);
  font-size: 8px;
  flex-shrink: 0;
}


/* ── Problem Section ─────────────────────────────────────────────────────── */
.problem-section { background: var(--bg); padding-bottom: 0; }
.problem-headline {
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 16px;
}
.problem-italic {
  font-size: 20px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 56px;
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.problem-photo-card {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  background:
    radial-gradient(ellipse 90% 70% at 80% 20%, rgba(74,222,128,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 10% 90%, rgba(74,222,128,0.04) 0%, transparent 55%),
    #070f09;
}
.problem-photo-deco {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.18;
}
.problem-photo-deco svg {
  width: 72%;
  height: auto;
}
.photo-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px;
  background: linear-gradient(to top, rgba(5,12,7,0.95) 0%, transparent 100%);
}
.photo-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.photo-body { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

.problem-quote-card {
  background: var(--surface);
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid var(--border);
  gap: 32px;
}
.problem-quote-text {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
}
.problem-quote-line {
  width: 48px; height: 3px;
  background: var(--accent);
  border-radius: 2px;
}
.problem-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.problem-stat-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.problem-stat-num {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1;
}
.problem-stat-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}


/* ── Stats Section ───────────────────────────────────────────────────────── */
.stats-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: "";
  position: absolute;
  right: -100px; top: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(74,222,128,0.04) 0%, transparent 65%);
  pointer-events: none;
}
.stats-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.stats-left .label { margin-bottom: 16px; }
.stats-copy {
  font-size: clamp(16px, 2.2vw, 22px);
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 500;
}
.stats-right { text-align: right; }
.big-stat-wrap { position: relative; display: inline-block; }
.big-stat-num {
  font-size: clamp(80px, 12vw, 148px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--accent);
  display: block;
}
.big-stat-ghost {
  position: absolute;
  top: 0; right: 0;
  font-size: clamp(80px, 12vw, 148px);
  font-weight: 700;
  color: rgba(74,222,128,0.06);
  letter-spacing: -0.04em;
  line-height: 0.9;
  transform: translate(30%, -10%);
  pointer-events: none;
  user-select: none;
}
.stats-right-label {
  font-size: 17px;
  color: var(--text-muted);
  margin-top: 12px;
  text-align: right;
}
.stats-right-label em { color: var(--text); font-style: italic; }


/* ── Product Intro ───────────────────────────────────────────────────────── */
.product-intro-section {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.product-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74,222,128,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,222,128,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.product-intro-headline {
  font-size: clamp(42px, 6.5vw, 80px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 24px;
  max-width: 700px;
}
.product-intro-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 40px;
}
.product-stats {
  display: flex;
  gap: 48px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.product-stat-item { }
.product-stat-num {
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.product-stat-lbl {
  font-size: 14px;
  color: var(--text-muted);
}


/* ── Features Bento Grid ─────────────────────────────────────────────────── */
.features-section { background: var(--bg-alt); }
.features-headline {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.06;
  color: var(--text);
  margin-bottom: 20px;
}
.features-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 56px;
}
.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.bento-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.bento-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-hi), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.bento-card:hover {
  border-color: var(--border-hi);
  transform: translateY(-3px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.5);
}
.bento-card:hover::before { opacity: 1; }

.bento-tag {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: var(--bg);
  margin-bottom: 28px;
}
.bento-tag-addon { color: var(--warn); border-color: rgba(246,200,95,0.25); background: var(--warn-dim); }
.bento-tag-auto { color: var(--accent); border-color: var(--border-hi); background: var(--accent-dim); }

.bento-icon {
  width: 52px; height: 52px;
  background: var(--accent-dim);
  border: 1px solid var(--border-hi);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 22px;
  transition: background var(--transition);
}
.bento-card:hover .bento-icon { background: rgba(74,222,128,0.18); }
.bento-icon svg { width: 24px; height: 24px; }

.bento-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.bento-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.72;
}


/* ── How It Works ────────────────────────────────────────────────────────── */
/* ── How It Works — pinned horizontal scroll ─────────────────────────────── */
.hiw-pin-section {
  height: 320vh; /* tall section drives the horizontal scroll via sticky */
  position: relative;
  background: var(--bg);
}
.hiw-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hiw-pin-header {
  padding: 0 clamp(24px, 5vw, 80px) 40px;
}
.hiw-headline {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
  margin-top: 12px;
}
.hiw-track-wrap {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hiw-track {
  display: flex;
  flex-shrink: 0;        /* don't let flex parent compress it */
  width: max-content;    /* expand to fit all 4 cards */
  padding: 0 clamp(24px, 5vw, 80px);
  gap: clamp(24px, 4vw, 56px);
  will-change: transform;
}
.hiw-step-h {
  min-width: clamp(280px, 32vw, 420px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 52px);
  flex-shrink: 0;
  transition: border-color 0.4s ease, background 0.4s ease;
}
.hiw-step-h.active {
  border-color: rgba(74,222,128,0.35);
  background: rgba(74,222,128,0.04);
}
.hiw-num {
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: rgba(74,222,128,0.15);
  line-height: 1;
  margin-bottom: 20px;
  user-select: none;
  transition: color 0.4s ease;
}
.hiw-step-h.active .hiw-num { color: rgba(74,222,128,0.4); }
.hiw-title {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.hiw-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.72;
}
.hiw-dots {
  display: flex;
  gap: 8px;
  padding: 24px clamp(24px, 5vw, 80px) 0;
}
.hiw-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  transition: background 0.3s ease, transform 0.3s ease;
}
.hiw-dot.active {
  background: var(--accent);
  transform: scale(1.5);
}


/* ── Testimonials ────────────────────────────────────────────────────────── */
.testimonials-section { background: var(--bg-alt); }
.testimonials-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.testimonials-headline {
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--text);
}
.testimonials-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  align-self: flex-end;
  padding-bottom: 6px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: border-color var(--transition), transform var(--transition);
}
.testimonial-card:hover { border-color: var(--border-hi); transform: translateY(-3px); }
.quote-mark {
  font-size: 40px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.7;
  letter-spacing: -0.05em;
}
.testimonial-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.78;
}


/* ── Pricing ─────────────────────────────────────────────────────────────── */
.pricing-section { background: var(--bg); }
.pricing-headline {
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 20px;
  text-align: center;
}
.pricing-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  text-align: center;
  max-width: 540px;
  margin: 0 auto 56px;
}
.pricing-sub strong { color: var(--text); font-weight: 600; }

.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
}
.pricing-card-live {
  border-color: rgba(74,222,128,0.35);
  background: linear-gradient(160deg, rgba(20,32,24,0.9), var(--surface));
  box-shadow: 0 0 0 1px rgba(74,222,128,0.12), 0 28px 64px rgba(74,222,128,0.08);
}

.pricing-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent);
  color: #040c06;
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 18px;
}
.pricing-stealth-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--surface-hi);
  color: var(--text-muted);
  border: 1px solid var(--border-hi);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 18px;
}

.pricing-tier-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.pricing-name {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 8px;
}
.pricing-tagline {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 24px;
}
.pricing-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
}
.pricing-price {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
}
.pricing-original {
  font-size: 18px;
  color: var(--text-faint);
  text-decoration: line-through;
}
.pricing-offer-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.pricing-feat-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.pricing-feat-list li {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}
.pricing-feat-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}
.pricing-addons-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.pricing-addon-item {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.pricing-addon-item span:first-child { color: var(--accent); }
.pricing-addon-price { color: var(--accent); font-weight: 600; }
.pricing-addon-discount { color: var(--text-faint); font-weight: 400; }
.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}


/* ── FAQ ────────────────────────────────────────────────────────────────── */
.faq-section { background: var(--bg-alt); }
.faq-header { margin-bottom: 48px; }
.faq-header .section-title { margin-top: 4px; }
.faq-list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--border-hi); }
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }
.faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  transition: transform 0.25s ease, color 0.2s;
  color: var(--text-muted);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--accent); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 22px;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 22px 22px; }
.faq-answer p { font-size: 14px; color: var(--text-muted); line-height: 1.75; }


/* ── Contact Form ────────────────────────────────────────────────────────── */
.form-section { background: var(--bg); }
.form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.form-headline {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.06;
  color: var(--text);
  margin-bottom: 20px;
}
.form-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.72;
  margin-bottom: 32px;
}
.form-bullets {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-bullets li {
  font-size: 15px;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}
.form-bullets li::before {
  content: "•";
  color: var(--accent);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: -1px;
}

.form-success {
  background: var(--accent-dim);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  text-align: center;
}
.form-success-icon { font-size: 48px; margin-bottom: 16px; }
.form-success h4 { font-size: 22px; font-weight: 700; color: var(--accent); margin-bottom: 10px; }
.form-success p { font-size: 15px; color: var(--text-muted); line-height: 1.65; }

.form-card-new {
  background: var(--surface);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}
.form-row-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group-new {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}
.form-label-new {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.req { color: var(--accent); }
.form-input-new {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  color: var(--text);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-input-new:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(74,222,128,0.1);
}
.form-input-new::placeholder { color: var(--text-faint); }
.form-select-new {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237aa384' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}
.form-select-new option { background: var(--surface); }
.form-textarea-new { resize: vertical; min-height: 90px; line-height: 1.6; }
.form-error {
  background: rgba(255,80,80,0.08);
  border: 1px solid rgba(255,80,80,0.28);
  color: #ff8080;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.5;
}
.form-disclaimer {
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 14px;
  text-align: center;
  line-height: 1.55;
}

/* Cloudflare Turnstile */
.cf-turnstile { margin: 12px 0; }


/* ── Footer ─────────────────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}
.footer-grid-new {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.footer-logo-new {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}
.footer-desc-new {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 260px;
  margin-bottom: 20px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.social-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.social-icon:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-dim); }

.footer-col-new { }
.footer-col-title-new {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.footer-links-new {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links-new a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links-new a:hover { color: var(--accent); }
.footer-email-new {
  font-size: 14px;
  color: var(--accent);
  font-weight: 500;
  display: block;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-email-new:hover { color: var(--accent-dark); }
.footer-location { font-size: 14px; color: var(--text-muted); }

.footer-watermark {
  font-size: clamp(64px, 12vw, 160px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: rgba(74,222,128,0.035);
  text-align: center;
  line-height: 1;
  margin-top: 24px;
  user-select: none;
  pointer-events: none;
}
.footer-bottom-new {
  border-top: 1px solid var(--border);
  padding: 20px 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-faint);
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  z-index: 1;
}

/* ── SEO guide pages ────────────────────────────────────────────────────── */
.seo-nav {
  background: rgba(5,12,7,0.96);
  border-bottom: 1px solid var(--border);
}
.seo-page {
  background: var(--bg);
  color: var(--text);
}
.seo-hero {
  padding: 150px 0 96px;
  background:
    radial-gradient(circle at 78% 20%, rgba(74,222,128,0.16), transparent 34%),
    linear-gradient(180deg, #07100a 0%, #050c07 100%);
  overflow: hidden;
}
.seo-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 72px;
  align-items: center;
}
.seo-hero h1 {
  font-size: clamp(44px, 6vw, 80px);
  line-height: 1.04;
  letter-spacing: 0;
  max-width: 860px;
  margin: 20px 0 26px;
}
.seo-hero-sub {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.75;
  max-width: 720px;
  margin-bottom: 34px;
}
.seo-product-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 520px;
}
.seo-product-visual img {
  width: auto;
  height: min(68vh, 620px);
  object-fit: contain;
  filter: drop-shadow(0 0 60px rgba(74,222,128,0.18));
}
.seo-section {
  padding: 86px 0;
  background: var(--bg);
}
.seo-section-alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.seo-content {
  max-width: 860px;
}
.seo-content h2,
.seo-feature-grid h2,
.seo-cta-band h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.14;
  letter-spacing: 0;
  margin: 14px 0 18px;
}
.seo-content h3 {
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: 0;
  margin: 34px 0 10px;
  color: var(--text);
}
.seo-content p,
.seo-feature-grid p,
.seo-cta-band p {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.85;
  margin-bottom: 18px;
}
.seo-callout {
  margin: 34px 0;
  padding: 22px 24px;
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-sm);
  background: var(--accent-dim);
  color: var(--text);
  font-size: 17px;
}
.seo-callout strong {
  color: var(--accent);
}
.seo-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.seo-feature-grid article {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  padding: 28px 24px;
}
.seo-feature-grid span {
  display: inline-flex;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 18px;
}
.seo-feature-grid h2 {
  font-size: 22px;
  margin: 0 0 10px;
}
.seo-feature-grid p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 0;
}
.seo-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-top: 28px;
}
.seo-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: var(--surface);
}
.seo-table th,
.seo-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  color: var(--text-muted);
}
.seo-table th {
  color: var(--text);
  font-weight: 700;
  background: rgba(74,222,128,0.06);
}
.seo-table tr:last-child td {
  border-bottom: 0;
}
.seo-cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 40px;
  padding: 34px;
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-sm);
  background: var(--surface);
}
.seo-cta-band h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin-top: 0;
}
.seo-cta-band p {
  margin-bottom: 0;
}


/* ── Scroll progress bar ──────────────────────────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, #4ade80, #22c55e);
  z-index: 9999;
  transition: width 0.1s linear;
  pointer-events: none;
}


/* ── Sticky mobile CTA ──────────────────────────────────────────────────── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: rgba(5,12,7,0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
}
.sticky-cta-inner { display: flex; gap: 10px; }
.sticky-cta .btn { flex: 1; padding: 13px; font-size: 14px; }


/* ── Page intro (sprout loader) ───────────────────────────────────────────── */
#page-intro {
  position: fixed;
  inset: 0;
  background: #050c07;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 10000;
  transition: opacity 0.5s ease;
}
#page-intro.hiding { opacity: 0; pointer-events: none; }
#page-intro .intro-sprout { position: relative; width: 80px; height: 80px; }
#page-intro .intro-sprout .seed {
  position: absolute; bottom: 8px; left: 50%;
  width: 20px; height: 14px;
  background: #c6a06a; border-radius: 50% 50% 45% 45%;
  transform: translateX(-50%);
  animation: seedPulse 2.4s ease-in-out infinite;
}
#page-intro .intro-sprout .stem {
  position: absolute; bottom: 20px; left: 50%;
  width: 4px; height: 0;
  background: #7bd389; border-radius: 6px;
  transform: translateX(-50%);
  animation: stemGrow 2.4s ease-in-out infinite;
}
#page-intro .intro-sprout .leaf {
  position: absolute; bottom: 38px;
  width: 18px; height: 10px;
  background: #5ac77d; border-radius: 0 80% 0 80%;
  opacity: 0;
  animation: leafBloom 2.4s ease-in-out infinite;
}
#page-intro .intro-sprout .leaf.left {
  left: 50%; transform: translateX(-100%) rotate(-20deg);
}
#page-intro .intro-sprout .leaf.right {
  left: 50%; transform: translateX(0%) rotate(20deg); border-radius: 80% 0 80% 0;
}
#page-intro .intro-sprout .droplet {
  position: absolute; top: 0; left: 50%;
  width: 10px; height: 14px;
  background: #72d5ff; border-radius: 50%;
  transform: translateX(-50%);
  animation: dropletFall 2.4s ease-in-out infinite;
}
#page-intro .intro-msg {
  font-size: 13px; color: rgba(255,255,255,0.4);
  font-weight: 500; letter-spacing: 0.04em;
}
@keyframes seedPulse { 0%,100%{transform:translateX(-50%) scale(1)} 50%{transform:translateX(-50%) scale(1.06)} }
@keyframes stemGrow  { 0%{height:0} 40%,100%{height:28px} }
@keyframes leafBloom { 0%,30%{opacity:0} 60%,100%{opacity:1} }
@keyframes dropletFall { 0%{top:0;opacity:1} 60%{top:20px;opacity:0} 100%{top:20px;opacity:0} }


/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .bento-grid { grid-template-columns: 1fr; }
  .pricing-cards-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .form-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid-new { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-layout { grid-template-columns: 1fr; gap: 40px; }
  .stats-right { text-align: left; }
  .stats-right-label { text-align: left; }
  .hero-tower-svg { width: 200px; }
  .hero-layout { gap: 32px; }
  .seo-hero-grid { grid-template-columns: minmax(0, 1fr) 240px; gap: 40px; }
  .seo-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  :root { --section-py: 72px; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .seo-hero-grid { grid-template-columns: 1fr; }
  .seo-product-visual { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-photo-card { min-height: 360px; }
  .hiw-pin-section { height: auto; }
  .hiw-sticky { position: relative; height: auto; padding: 60px 0; }
  .hiw-track { flex-direction: column; gap: 16px; }
  .hiw-step-h { min-width: unset; width: 100%; }
  .hiw-dots { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-header { flex-direction: column; gap: 16px; }
  .bento-grid { grid-template-columns: 1fr; }
  .seo-feature-grid { grid-template-columns: 1fr; }
  .seo-cta-band { flex-direction: column; align-items: flex-start; padding: 26px; }
}

@media (max-width: 680px) {
  :root { --section-py: 60px; }
  .container { padding: 0 20px; }

  /* Nav mobile */
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(5,12,7,0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 16px;
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; border-radius: var(--radius-sm); }
  .nav-menu-btn { display: flex; }

  .hero-headline { font-size: clamp(40px, 11vw, 60px); }
  .hero-sub { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .hero-trust { gap: 10px; flex-direction: column; align-items: flex-start; }
  .trust-sep { display: none; }

  .problem-quote-card { padding: 32px 24px; }
  .hiw-step { padding: 32px 24px; }

  .form-row-new { grid-template-columns: 1fr; }
  .form-card-new { padding: 28px 20px; }

  .footer-grid-new { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom-new { flex-direction: column; align-items: flex-start; }
  .footer-watermark { font-size: 56px; }
  .seo-nav .nav-links { display: none; }
  .seo-hero { padding: 130px 0 70px; }
  .seo-section { padding: 64px 0; }

  .sticky-cta { display: block; }
  body { padding-bottom: 76px; }

}

@media (max-width: 420px) {
  .product-stats { flex-direction: column; gap: 24px; }
}
