*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --forest: #1A3C34;
  --forest-deep: #0F2A23;
  --emerald: #2FAB73;
  --emerald-20: rgba(47,171,115,0.2);
  --emerald-light: rgba(47,171,115,0.08);
  --mint: #DFF0E4;
  --mint-light: #EDF7F0;
  --coral: #E8653A;
  --coral-light: rgba(232,101,58,0.06);
  --amber: #F4A261;
  --offwhite: #F8FAF9;
  --cream: #F5F2EC;
  --sage: #6B7C75;
  --white: #FFFFFF;
  --text-muted: rgba(26,60,52,0.6);
  --border-subtle: rgba(26,60,52,0.08);
}

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

body {
  font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  color: var(--forest);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400; line-height: 1.1;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.32s; }
.stagger-5 { transition-delay: 0.4s; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 14px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.04); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 0 60px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo .wordmark {
  font-family: 'Public Sans', sans-serif;
  font-size: 24px; font-weight: 800; color: var(--forest);
  letter-spacing: -0.03em;
}
.nav-logo .wordmark .di {
  color: var(--coral); font-style: italic;
  font-family: 'DM Serif Display', Georgia, serif; font-size: 26px;
}
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 15px; font-weight: 600; color: var(--forest);
  transition: color 0.3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--coral); transition: width 0.3s;
}
.nav-links a:hover { color: var(--coral); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--coral); }
.nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--forest); color: var(--white); font-weight: 700;
  font-size: 13px; padding: 11px 24px; border-radius: 60px; border: none;
  cursor: pointer; transition: all 0.3s;
}
.nav-cta:hover { background: var(--forest-deep); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(26,60,52,0.2); }

/* ===== HERO ===== */
.hero-section {
  padding: 100px 60px 0;
  background: var(--white);
}

.hero-card {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--mint-light);
  border: 1.5px solid var(--emerald-20);
  border-radius: 24px;
  padding: 64px 64px 0;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* LEFT */
.hero-left { padding: 8px 0 64px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--emerald);
  background: var(--white); border: 1px solid var(--emerald-20);
  padding: 7px 16px; border-radius: 40px;
  margin-bottom: 28px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--emerald);
}

.hero-left h1 {
  font-size: clamp(2.2rem, 3.4vw, 3.2rem);
  line-height: 1.1; letter-spacing: -0.02em;
  color: var(--forest); margin-bottom: 8px;
}
.hero-left h1 .highlight {
  color: var(--coral);
}

.hero-subtitle {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
  line-height: 1.25; color: rgba(26,60,52,0.7);
  margin-bottom: 24px; font-weight: 400;
}
.hero-subtitle .accent {
  color: var(--coral); font-style: italic;
}

.hero-sub {
  font-size: 15px; line-height: 1.7; color: rgba(26,60,52,0.7);
  max-width: 480px; margin-bottom: 32px; font-weight: 400;
}

.hero-cta-row {
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--forest); color: var(--white);
  font-family: 'Public Sans', sans-serif; font-weight: 700; font-size: 14px;
  padding: 16px 32px; border-radius: 60px; border: none; cursor: pointer;
  transition: all 0.3s;
}
.btn-primary:hover { background: var(--forest-deep); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(26,60,52,0.25); }
.btn-primary .arrow { transition: transform 0.3s; }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Public Sans', sans-serif; font-weight: 600; font-size: 15px;
  color: var(--forest); background: none; border: none; cursor: pointer;
  transition: color 0.3s; padding: 0;
}
.btn-ghost:hover { color: var(--coral); }
.btn-ghost .circle {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--emerald-20); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--emerald); transition: all 0.3s;
}
.btn-ghost:hover .circle { border-color: var(--emerald); background: var(--emerald-light); }

/* RIGHT */
.hero-right {
  position: relative;
  align-self: end;
}

.hero-image-frame {
  width: 100%;
  aspect-ratio: 1 / 0.78;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  position: relative;
  background: var(--forest);
}

/* Hero image */
.hero-image-frame img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}

/* Floating badge - top right */
.badge-float-tr {
  position: absolute; top: -14px; right: -14px;
  background: var(--white);
  border-radius: 16px; padding: 16px 22px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1), 0 1px 3px rgba(0,0,0,0.06);
  z-index: 10;
  animation: float-gentle 5s ease-in-out infinite;
}
.badge-number {
  font-family: 'DM Serif Display', serif;
  font-size: 28px; color: var(--coral); line-height: 1;
}
.badge-label {
  font-size: 11px; font-weight: 600; color: var(--forest);
  margin-top: 2px; letter-spacing: 0.01em;
}

@keyframes float-gentle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Floating badge - bottom left */
.badge-float-bl {
  position: absolute; bottom: 90px; left: -20px;
  background: var(--white);
  border-radius: 14px; padding: 12px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1), 0 1px 3px rgba(0,0,0,0.06);
  z-index: 10;
  display: flex; align-items: center; gap: 12px;
  animation: float-gentle 5s ease-in-out infinite;
  animation-delay: -2.5s;
}
.badge-icon-circle {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--emerald-light); border: 1px solid var(--emerald-20);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--emerald); font-weight: 700;
}
.badge-text-group .badge-main-text {
  font-size: 13px; font-weight: 700; color: var(--forest); line-height: 1.2;
}
.badge-text-group .badge-sub-text {
  font-size: 10px; font-weight: 500; color: var(--sage); margin-top: 1px;
}

/* Stats row below image */
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-radius: 0;
  overflow: hidden;
  margin-top: 0;
}
.hero-stat {
  background: var(--white);
  text-align: center; padding: 18px 8px;
  position: relative;
}
.hero-stat + .hero-stat::before {
  content: '';
  position: absolute; left: 0; top: 25%; height: 50%;
  width: 1px; background: rgba(26,60,52,0.08);
}
.hero-stat-num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 22px; color: var(--forest); line-height: 1;
}
.hero-stat-label {
  font-size: 10px; font-weight: 600; color: var(--sage);
  text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--white);
  padding: 40px 60px 48px;
}
.trust-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: center; align-items: center; gap: 48px;
  padding: 24px 40px;
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  background: var(--offwhite);
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: var(--sage);
}
.trust-icon {
  width: 28px; height: 28px; border-radius: 6px;
  background: var(--emerald-light); border: 1px solid var(--emerald-20);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; color: var(--emerald);
}
.trust-sep {
  width: 1px; height: 20px; background: var(--border-subtle);
}

/* ===== SECTION 3: THE PROBLEM (Bento layout) ===== */
.problem-section {
  background: var(--forest-deep);
  padding: 120px 60px 80px;
  position: relative;
  overflow: hidden;
}
.problem-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}
.problem-inner {
  max-width: 1200px; margin: 0 auto;
  position: relative;
}
.problem-fig-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 20px;
}
.problem-header {
  max-width: 560px; margin-bottom: 48px;
}
.problem-header h2 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1.05; letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 12px;
}
.problem-header h2 .accent {
  color: var(--coral); font-style: italic;
}
.problem-header p {
  font-size: 16px; line-height: 1.6;
  color: rgba(255,255,255,0.65);
  max-width: 620px;
  white-space: nowrap;
}

/* Bento grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.bento-cell {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 28px 22px;
  position: relative;
  overflow: hidden;
}
.bento-cell::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}
.bento-span-2 { grid-column: span 2; }
.bento-span-3 { grid-column: span 3; }
.bento-label {
  font-family: 'Public Sans', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.bento-label .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--emerald);
}

/* Simulated AI response */
.sim-browser-bar {
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.sim-dot {
  width: 8px; height: 8px; border-radius: 50%;
}
.sim-dot-r { background: var(--coral); opacity: 0.8; }
.sim-dot-y { background: #EF9F27; opacity: 0.8; }
.sim-dot-g { background: var(--emerald); opacity: 0.8; }
.sim-query {
  font-family: 'DM Mono', monospace;
  font-size: 12px; color: rgba(255,255,255,0.65);
}
.sim-response {
  font-size: 14px; line-height: 1.85;
  color: rgba(255,255,255,0.7);
}
.sim-cited {
  color: #5DCAA5;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}
.sim-ghost {
  color: #E8653A;
  border: 1px dashed rgba(232,101,58,0.5);
  padding: 2px 10px;
  border-radius: 5px;
  font-size: 12px;
  font-family: 'DM Mono', monospace;
  font-weight: 500;
}
.sim-fade {
  font-size: 11px; opacity: 0.4;
}

/* Platform icons grid */
.plat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.plat-item {
  display: flex; flex-direction: column;
  align-items: center; gap: 6px;
  padding: 10px 4px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: border-color 0.3s, background 0.3s;
}
.plat-item:hover {
  border-color: rgba(47,171,115,0.3);
  background: rgba(255,255,255,0.08);
}
.plat-ico {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 600; color: rgba(255,255,255,0.85);
}
.plat-ico-google { background: rgba(66,133,244,0.2); }
.plat-ico-maps { background: rgba(52,168,83,0.2); }
.plat-ico-chatgpt { background: rgba(16,163,127,0.2); }
.plat-ico-gemini { background: rgba(138,133,248,0.2); }
.plat-ico-bing { background: rgba(0,120,212,0.2); }
.plat-ico-youtube { background: rgba(255,0,0,0.15); }
.plat-ico-instagram { background: rgba(225,48,108,0.15); }
.plat-ico-linkedin { background: rgba(10,102,194,0.2); }
.plat-ico-perplexity { background: rgba(32,175,167,0.2); }
.plat-ico-reddit { background: rgba(255,69,0,0.15); }
.plat-ico-tiktok { background: rgba(255,255,255,0.1); }
.plat-ico-amazon { background: rgba(255,153,0,0.15); }
.plat-name {
  font-family: 'DM Mono', monospace;
  font-size: 9px; color: rgba(255,255,255,0.55);
  text-align: center; letter-spacing: 0.02em;
}

/* Search behavior shift cards */
.shift-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.shift-card {
  padding: 24px 20px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.shift-stat {
  font-family: 'DM Serif Display', serif;
  font-size: 28px; color: var(--coral);
  margin-bottom: 8px;
}
.shift-name {
  font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.shift-desc {
  font-size: 13px; line-height: 1.6;
  color: rgba(255,255,255,0.55);
}

/* Problem CTA row */
.problem-cta-row {
  margin-top: 36px;
  display: flex; justify-content: center; align-items: center;
}
.problem-cta-hint {
  font-family: 'Public Sans', sans-serif;
  font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.01em;
}

/* ===== SECTION 4: WHAT IS SEO? (Marvelloux split-layout + scroll-highlight) ===== */
.seo-section {
  background: var(--forest-deep);
  padding: 120px 60px;
  position: relative;
}
.seo-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Split grid: left sticky, right scrolls */
.seo-grid {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 80px;
  align-items: start;
}

/* LEFT - Sticky heading + illustration */
.seo-left {
  position: sticky;
  top: 100px;
  align-self: start;
}
.seo-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--emerald);
  background: rgba(47,171,115,0.08);
  border: 1px solid rgba(47,171,115,0.15);
  padding: 6px 14px; border-radius: 40px;
  margin-bottom: 28px;
}
.seo-eyebrow .dot {
  width: 5px; height: 5px; border-radius: 50%; background: var(--emerald);
}
.seo-left h2 {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  line-height: 1.08; letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 24px;
}
.seo-left h2 .accent {
  color: var(--coral); font-style: italic;
}
.seo-left-desc {
  font-size: 16px; line-height: 1.7;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
  margin-bottom: 40px;
}
.seo-left-cta {
  margin-top: 32px;
}
.btn-coral {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--coral); color: var(--white);
  font-family: 'Public Sans', sans-serif; font-weight: 700; font-size: 14px;
  padding: 16px 32px; border-radius: 60px; border: none; cursor: pointer;
  transition: all 0.3s;
}
.btn-coral:hover {
  background: #d4552d;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,101,58,0.3);
}
.btn-coral .arrow { transition: transform 0.3s; }
.btn-coral:hover .arrow { transform: translateX(4px); }

/* RIGHT - Numbered items */
.seo-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.seo-item {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 60px 0;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 0;
  align-items: start;
  transition: opacity 0.6s ease;
  min-height: 320px;
}
.seo-item:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 40px;
}

/* Scroll-highlight: items start dimmed, highlight when in viewport */
.seo-item.dimmed {
  opacity: 0.25;
}
.seo-item.highlighted {
  opacity: 1;
}

.seo-item-number {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 18px;
  color: rgba(255,255,255,0.2);
  padding-top: 3px;
  transition: color 0.6s ease;
}
.seo-item.highlighted .seo-item-number {
  color: rgba(255,255,255,0.4);
}
.seo-item-content h3 {
  font-family: 'Public Sans', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.seo-item-body {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
}
.seo-item-body p {
  margin-bottom: 16px;
}
.seo-item-body p:last-child {
  margin-bottom: 0;
}
.seo-item-body strong {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}
.seo-item-body .highlight-line {
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* Visual elements inside seo-items */
.seo-item-visual {
  margin-top: 20px;
  transition: opacity 0.6s ease;
}
.seo-item.dimmed .seo-item-visual {
  opacity: 0.3;
}
.seo-scan-row {
  display: flex; gap: 8px;
}
.seo-scan-item {
  flex: 1; padding: 12px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.seo-scan-item i {
  font-size: 20px; color: rgba(255,255,255,0.5);
  display: block; margin-bottom: 6px;
}
.seo-scan-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px; color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}
.seo-plat-row {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.seo-plat-chip {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 12px; border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 11px; color: rgba(255,255,255,0.7); font-weight: 500;
}
.seo-plat-chip .chip-dot {
  width: 6px; height: 6px; border-radius: 50%;
}
.seo-flow-row {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.seo-flow-step {
  padding: 8px 16px; border-radius: 8px;
  background: rgba(47,171,115,0.1);
  border: 1px solid rgba(47,171,115,0.2);
  font-size: 12px; color: var(--emerald); font-weight: 600;
}
.seo-flow-step.final {
  background: rgba(232,101,58,0.12);
  border-color: rgba(232,101,58,0.25);
  color: var(--coral);
}
.seo-flow-arrow {
  color: rgba(255,255,255,0.2); font-size: 14px;
}

/* ===== SECTION 6: WHAT'S INCLUDED (Alternating feature strips) ===== */
.included-section {
  background: var(--offwhite);
  padding: 120px 60px;
}
.included-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.included-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}
.included-header h2 {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  line-height: 1.08; letter-spacing: -0.02em;
  color: var(--forest);
  margin-bottom: 16px;
}
.included-header h2 .accent {
  color: var(--coral); font-style: italic;
}
.included-header p {
  font-size: 16px; line-height: 1.7;
  color: rgba(26,60,52,0.6); font-weight: 400;
}

/* Feature strip - alternating layout */
.fstrip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 32px 0;
  border-top: 1.5px solid rgba(26,60,52,0.12);
}
.fstrip:last-child { padding-bottom: 0; }
.fstrip.reverse .fstrip-text { order: 2; }
.fstrip.reverse .fstrip-visual { order: 1; }

.fstrip-num {
  font-family: 'DM Mono', monospace;
  font-size: 16px; color: var(--emerald); font-weight: 700;
  letter-spacing: 0.08em; margin-bottom: 12px;
}
.fstrip-text h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 24px; color: var(--forest);
  font-weight: 400; margin-bottom: 14px; line-height: 1.2;
}
.fstrip-text p {
  font-size: 15px; line-height: 1.7;
  color: rgba(26,60,52,0.6); font-weight: 400;
  margin-bottom: 18px;
}
.fstrip-chips {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.fstrip-chip {
  padding: 5px 14px; border-radius: 6px;
  font-size: 12px; font-weight: 500; color: var(--forest);
  background: rgba(47,171,115,0.06);
  border: 1px solid rgba(47,171,115,0.12);
}

/* Glow card */
.glow-card {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06), 0 12px 32px rgba(26,60,52,0.09);
}
.glow-card::before {
  content: '';
  position: absolute; top: -1px; left: 12%; right: 12%;
  height: 3px; border-radius: 3px;
}
.glow-card.glow-emerald::before { background: linear-gradient(90deg, transparent, var(--emerald), transparent); }
.glow-card.glow-coral::before { background: linear-gradient(90deg, transparent, var(--coral), transparent); }
.glow-card.glow-blue::before { background: linear-gradient(90deg, transparent, #5B8DEF, transparent); }
.glow-card.glow-amber::before { background: linear-gradient(90deg, transparent, var(--amber), transparent); }
.glow-card.glow-purple::before { background: linear-gradient(90deg, transparent, #9B7BF4, transparent); }

.glow-ico {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 18px;
}
.glow-ico.gi-emerald { background: rgba(47,171,115,0.08); color: var(--emerald); }
.glow-ico.gi-coral { background: rgba(232,101,58,0.08); color: var(--coral); }
.glow-ico.gi-blue { background: rgba(91,141,239,0.08); color: #5B8DEF; }
.glow-ico.gi-amber { background: rgba(244,162,97,0.08); color: var(--amber); }
.glow-ico.gi-purple { background: rgba(155,123,244,0.08); color: #9B7BF4; }

.glow-title {
  font-size: 16px; font-weight: 700; color: var(--forest);
  margin-bottom: 16px; letter-spacing: -0.01em;
}
.glow-list {
  display: flex; flex-direction: column; gap: 10px;
}
.glow-li {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; color: var(--forest); font-weight: 500;
}
.glow-li i { font-size: 16px; flex-shrink: 0; }
.glow-li .ico-pass { color: var(--emerald); }
.glow-li .ico-fail { color: var(--coral); }

.glow-bar-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 15px; margin-bottom: 6px;
}
.glow-bar-label { color: var(--forest); font-weight: 500; }
.glow-bar-val { font-weight: 700; font-size: 15px; }
.glow-bar-val.val-green { color: var(--emerald); }
.glow-bar-val.val-orange { color: var(--coral); }
.glow-bar-track {
  height: 8px; background: rgba(26,60,52,0.08);
  border-radius: 8px; margin-bottom: 16px;
}
.glow-bar-fill {
  height: 100%; border-radius: 8px;
}
.glow-bar-fill.fill-green { background: var(--emerald); }
.glow-bar-fill.fill-orange { background: var(--coral); }

.glow-intent-chips {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.glow-intent {
  padding: 8px 18px; border-radius: 6px;
  font-size: 14px; font-weight: 600;
}

.glow-stats {
  display: flex; gap: 16px;
}
.glow-stat {
  text-align: center; flex: 1;
  padding: 16px 12px; border-radius: 12px;
}
.glow-stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 28px; margin-bottom: 4px; font-weight: 400;
}
.glow-stat-label {
  font-size: 12px; color: rgba(26,60,52,0.6); font-weight: 500;
  font-family: 'DM Mono', monospace;
}

/* ===== SECTION 7: OUR 4-STEP PROCESS ===== */
.process-section {
  background: var(--forest-deep);
  padding: 120px 60px;
  position: relative;
}
.process-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}
.process-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.process-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--emerald);
  background: rgba(47,171,115,0.08);
  border: 1px solid rgba(47,171,115,0.15);
  padding: 6px 14px; border-radius: 40px;
  margin-bottom: 28px;
}
.process-eyebrow .dot {
  width: 5px; height: 5px; border-radius: 50%; background: var(--emerald);
}
.process-header {
  max-width: 680px;
  margin-bottom: 64px;
}
.process-header h2 {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  line-height: 1.08; letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 16px;
}
.process-header h2 .accent {
  color: var(--coral); font-style: italic;
}
.process-header p {
  font-size: 16px; line-height: 1.7;
  color: rgba(255,255,255,0.5); font-weight: 400;
}

.process-flow {
  display: flex;
  align-items: stretch;
}
.process-card {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 28px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: background 0.3s, border-color 0.3s;
}
.process-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.14);
}
.process-card::before {
  content: '';
  position: absolute; top: -1px; left: 20%; right: 20%;
  height: 3px; border-radius: 2px;
}
.process-card:nth-child(1)::before { background: var(--emerald); }
.process-card:nth-child(3)::before { background: rgba(47,171,115,0.7); }
.process-card:nth-child(5)::before { background: var(--amber); }
.process-card:nth-child(7)::before { background: var(--coral); }

.process-arrow {
  display: flex; align-items: center; justify-content: center;
  width: 32px; flex-shrink: 0;
  color: rgba(255,255,255,0.15); font-size: 20px;
}

.process-num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 28px; font-weight: 400; margin-bottom: 14px;
}
.process-card:nth-child(1) .process-num { color: var(--emerald); }
.process-card:nth-child(3) .process-num { color: rgba(47,171,115,0.8); }
.process-card:nth-child(5) .process-num { color: var(--amber); }
.process-card:nth-child(7) .process-num { color: var(--coral); }

.process-time {
  font-family: 'DM Mono', monospace;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
}

.process-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 16px; color: var(--white);
  font-weight: 400; line-height: 1.35;
  margin-bottom: 10px;
}

.process-desc {
  font-size: 13px; line-height: 1.65;
  color: rgba(255,255,255,0.45); font-weight: 400;
  margin-bottom: 16px; flex: 1;
}

.process-tags {
  display: flex; flex-wrap: wrap; gap: 4px;
}
.process-tag {
  font-size: 10px; padding: 4px 8px;
  border-radius: 4px; font-weight: 500;
}
.process-card:nth-child(1) .process-tag {
  background: rgba(47,171,115,0.12); color: var(--emerald);
  border: 1px solid rgba(47,171,115,0.15);
}
.process-card:nth-child(3) .process-tag {
  background: rgba(47,171,115,0.08); color: rgba(47,171,115,0.8);
  border: 1px solid rgba(47,171,115,0.12);
}
.process-card:nth-child(5) .process-tag {
  background: rgba(244,162,97,0.1); color: var(--amber);
  border: 1px solid rgba(244,162,97,0.15);
}
.process-card:nth-child(7) .process-tag {
  background: rgba(232,101,58,0.1); color: var(--coral);
  border: 1px solid rgba(232,101,58,0.12);
}

.process-cta-row {
  margin-top: 56px;
  display: flex; justify-content: center;
}

/* ===== SECTION 8: CLIENT LOGO WALL ===== */
.clients-section {
  background: var(--offwhite);
  padding: 100px 60px;
  overflow: hidden;
}
.clients-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.clients-header {
  text-align: center;
  margin-bottom: 56px;
}
.clients-header h2 {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  line-height: 1.08; letter-spacing: -0.02em;
  color: var(--forest);
  margin-bottom: 12px;
}
.clients-header h2 .accent {
  color: var(--coral); font-style: italic;
}
.clients-header p {
  font-size: 16px; line-height: 1.7;
  color: rgba(26,60,52,0.6); font-weight: 400;
}

/* Marquee */
.marquee-wrapper {
  position: relative;
}
.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, var(--offwhite), transparent);
}
.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(270deg, var(--offwhite), transparent);
}

.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee-scroll 35s linear infinite;
  margin-bottom: 20px;
}
.marquee-track:last-child { margin-bottom: 0; }
.marquee-track.reverse {
  animation: marquee-scroll-reverse 40s linear infinite;
}
.marquee-track:hover,
.marquee-track.reverse:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marquee-scroll-reverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.logo-slot {
  flex-shrink: 0;
  width: 180px;
  height: 72px;
  background: var(--white);
  border: 1px solid rgba(26,60,52,0.06);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  filter: grayscale(100%) opacity(0.45);
  transition: filter 0.4s, box-shadow 0.4s, border-color 0.3s;
  text-decoration: none;
  cursor: pointer;
}
.logo-slot:hover {
  filter: grayscale(0%) opacity(1);
  box-shadow: 0 4px 20px rgba(26,60,52,0.1);
  border-color: rgba(26,60,52,0.12);
}
.logo-slot img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.logo-placeholder {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  color: var(--forest);
  text-align: center;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.clients-cta-row {
  margin-top: 48px;
  display: flex; justify-content: center;
}

/* ===== SECTION 9: WHY CRAZYDI ===== */
.why-section {
  background: var(--forest-deep);
  padding: 120px 60px;
  position: relative;
}
.why-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}
.why-inner {
  max-width: 1200px; margin: 0 auto; position: relative;
}
.why-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.why-header h2 {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  line-height: 1.08; letter-spacing: -0.02em;
  color: var(--white); margin-bottom: 16px;
}
.why-header h2 .accent {
  color: var(--coral); font-style: italic;
}
.why-header p {
  font-size: 16px; line-height: 1.7;
  color: rgba(255,255,255,0.5); font-weight: 400;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 36px 32px;
  transition: background 0.3s, border-color 0.3s;
}
.why-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.14);
}

.why-card-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 20px; font-weight: 400;
  color: var(--white);
  margin-bottom: 14px; line-height: 1.3;
}
.why-card-title .dim {
  color: rgba(255,255,255,0.35);
}

.why-card-desc {
  font-size: 14px; line-height: 1.7;
  color: rgba(255,255,255,0.5); font-weight: 400;
}

/* ===== SECTION 10: ACRONYM PROBLEM ===== */
.acronym-section {
  background: var(--offwhite);
  padding: 120px 60px;
}
.acronym-inner {
  max-width: 1200px; margin: 0 auto;
}
.acronym-header {
  max-width: 720px;
  margin-bottom: 56px;
}
.acronym-header h2 {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  line-height: 1.08; letter-spacing: -0.02em;
  color: var(--forest); margin-bottom: 16px;
}
.acronym-header h2 .accent {
  color: var(--coral); font-style: italic;
}
.acronym-header p {
  font-size: 16px; line-height: 1.7;
  color: rgba(26,60,52,0.75); font-weight: 400;
}

.acronym-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.acr-card {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 28px 22px;
  position: relative;
}
.acr-card::before {
  content: '';
  position: absolute; top: -1px; left: 20%; right: 20%;
  height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--emerald), transparent);
}
.acr-abbr {
  font-family: 'DM Mono', monospace;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--emerald);
  margin-bottom: 6px;
}
.acr-full {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 17px; color: var(--forest);
  font-weight: 400; margin-bottom: 12px; line-height: 1.3;
}
.acr-desc {
  font-size: 13px; line-height: 1.65;
  color: rgba(26,60,52,0.75); font-weight: 400;
}

/* Google quote block */
.google-quote {
  background: var(--white);
  border: 1.5px solid var(--border-subtle);
  border-left: 4px solid var(--coral);
  border-radius: 14px;
  padding: 36px 40px;
  margin-bottom: 40px;
  position: relative;
}
.google-quote-source {
  font-family: 'DM Mono', monospace;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 14px;
}
.google-quote-text {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 20px; color: var(--forest);
  font-weight: 400; line-height: 1.45;
  font-style: italic;
  margin-bottom: 16px;
}
.google-quote-context {
  font-size: 14px; line-height: 1.7;
  color: rgba(26,60,52,0.75); font-weight: 400;
}

/* Bottom message */
.acronym-bottom {
  background: var(--forest-deep);
  border-radius: 16px;
  padding: 40px 44px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.acronym-bottom-text {
  flex: 1;
}
.acronym-bottom-text h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 22px; color: var(--white);
  font-weight: 400; margin-bottom: 12px; line-height: 1.3;
}
.acronym-bottom-text p {
  font-size: 14px; line-height: 1.7;
  color: rgba(255,255,255,0.75); font-weight: 400;
}

/* ===== SECTION 11: TESTIMONIALS SLIDER ===== */
.testimonials-section {
  background: var(--forest-deep);
  padding: 120px 60px;
  position: relative;
}
.testimonials-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}
.testimonials-inner {
  max-width: 1200px; margin: 0 auto; position: relative;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 56px;
}
.testimonials-header h2 {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  line-height: 1.08; letter-spacing: -0.02em;
  color: var(--white);
}
.testimonials-header h2 .accent {
  color: var(--coral); font-style: italic;
}

/* Slider */
.testi-slider {
  max-width: 1200px;
  margin: 0 auto;
}
.testi-slide {
  display: none;
  align-items: center;
  gap: 56px;
  padding: 0 40px;
  animation: testiFade 0.5s ease;
}
.testi-slide.active { display: flex; }

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

/* Avatar */
.testi-avatar-wrap {
  flex-shrink: 0;
  width: 160px; height: 160px;
  position: relative;
}
.testi-avatar {
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 40px; font-weight: 400;
  color: rgba(255,255,255,0.6);
  overflow: hidden;
}
.testi-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.testi-li-badge {
  position: absolute;
  bottom: -2px; right: -2px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #0A66C2;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: #fff;
  z-index: 2;
  text-decoration: none;
  transition: transform 0.2s;
}
.testi-li-badge:hover {
  transform: scale(1.1);
}

/* Quote content */
.testi-content { flex: 1; }
.testi-quote {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 17px; font-weight: 400;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 28px;
  font-style: italic;
}
.testi-name {
  font-size: 15px; font-weight: 600; color: var(--white);
  margin-bottom: 2px;
}
.testi-role {
  font-size: 12px; color: rgba(255,255,255,0.4);
}

/* Dots nav */
.testi-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-top: 48px;
}
.testi-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(47,171,115,0.25);
  border: none; cursor: pointer;
  transition: all 0.3s; padding: 0;
}
.testi-dot.active {
  background: var(--emerald);
}

/* ===== SECTION 12: INDUSTRIES ===== */
.industries-section {
  background: var(--offwhite);
  padding: 120px 60px;
}
.industries-inner {
  max-width: 1200px; margin: 0 auto;
}
.industries-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.industries-header h2 {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  line-height: 1.08; letter-spacing: -0.02em;
  color: var(--forest); margin-bottom: 16px;
}
.industries-header h2 .accent {
  color: var(--coral); font-style: italic;
}
.industries-header p {
  font-size: 16px; line-height: 1.7;
  color: rgba(26,60,52,0.6); font-weight: 400;
}

.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ind-card {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 32px 28px;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.ind-card:hover {
  box-shadow: 0 4px 16px rgba(26,60,52,0.08);
  border-color: rgba(47,171,115,0.2);
}
.ind-card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 18px;
  background: rgba(47,171,115,0.06);
  color: var(--emerald);
}
.ind-card-name {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 18px; color: var(--forest);
  font-weight: 400; margin-bottom: 10px;
}
.ind-card-desc {
  font-size: 13px; line-height: 1.65;
  color: rgba(26,60,52,0.55); font-weight: 400;
}

/* ===== SECTION 13: FINAL CTA ===== */
.final-cta-section {
  background: var(--forest-deep);
  padding: 120px 60px;
  position: relative;
}
.final-cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}
.final-cta-inner {
  max-width: 800px; margin: 0 auto;
  text-align: center;
  position: relative;
}
.final-cta-inner h2 {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  line-height: 1.12; letter-spacing: -0.02em;
  color: var(--white); margin-bottom: 20px;
}
.final-cta-inner h2 .accent {
  color: var(--coral); font-style: italic;
}
.final-cta-desc {
  font-size: 16px; line-height: 1.7;
  color: rgba(255,255,255,0.5); font-weight: 400;
  margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto;
}

.final-cta-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 40px 36px;
  text-align: left;
}
.final-cta-form-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 22px; color: var(--white);
  font-weight: 400; margin-bottom: 28px;
  text-align: center;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-field {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 14px; color: rgba(255,255,255,0.4);
  font-family: 'Public Sans', sans-serif;
}
.form-field-full {
  grid-column: span 2;
}
.form-radio-group {
  margin-bottom: 20px;
}
.form-radio-label {
  font-size: 13px; color: rgba(255,255,255,0.6);
  font-weight: 500; margin-bottom: 10px; display: block;
}
.form-radios {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.form-radio {
  padding: 8px 16px; border-radius: 8px;
  font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: all 0.3s;
}
.form-radio:hover, .form-radio.selected {
  border-color: var(--emerald);
  color: var(--emerald);
  background: rgba(47,171,115,0.08);
}
.form-submit {
  width: 100%;
  margin-top: 8px;
}
.final-trust {
  display: flex; justify-content: center; gap: 28px;
  margin-top: 32px; flex-wrap: wrap;
}
.final-trust-item {
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.35);
  display: flex; align-items: center; gap: 6px;
}
.final-trust-item .ft-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--emerald); opacity: 0.6;
}

/* ===== SECTION 14: FAQ ===== */
.faq-section {
  background: var(--offwhite);
  padding: 120px 60px;
}
.faq-inner {
  max-width: 800px; margin: 0 auto;
}
.faq-header {
  text-align: center;
  margin-bottom: 56px;
}
.faq-header h2 {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  line-height: 1.08; letter-spacing: -0.02em;
  color: var(--forest);
}
.faq-header h2 .accent {
  color: var(--coral); font-style: italic;
}

.faq-item {
  border-bottom: 1px solid rgba(26,60,52,0.1);
}
.faq-question {
  width: 100%;
  background: none; border: none; cursor: pointer;
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; text-align: left;
  font-family: 'Public Sans', sans-serif;
  font-size: 16px; font-weight: 600; color: var(--forest);
  transition: color 0.3s;
}
.faq-question:hover { color: var(--coral); }
.faq-toggle {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(47,171,115,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--emerald);
  flex-shrink: 0;
  transition: transform 0.3s, background 0.3s;
}
.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: rgba(232,101,58,0.08);
  color: var(--coral);
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: 24px;
}
.faq-answer p {
  font-size: 14px; line-height: 1.75;
  color: rgba(26,60,52,0.6); font-weight: 400;
}
.faq-answer p + p {
  margin-top: 12px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--forest);
  padding: 80px 60px 40px;
  position: relative;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand-desc {
  font-size: 14px; line-height: 1.7;
  color: rgba(255,255,255,0.5); font-weight: 400;
  margin-bottom: 24px;
}
.footer-social {
  display: flex; gap: 10px;
}
.footer-social-link {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: rgba(255,255,255,0.5);
  transition: all 0.3s;
}
.footer-social-link:hover {
  background: rgba(47,171,115,0.12);
  border-color: rgba(47,171,115,0.3);
  color: var(--emerald);
}

.footer-col-title {
  font-family: 'Public Sans', sans-serif;
  font-size: 13px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-links {
  display: flex; flex-direction: column; gap: 12px;
}
.footer-links a {
  font-size: 14px; color: rgba(255,255,255,0.6);
  font-weight: 400; transition: color 0.3s;
}
.footer-links a:hover { color: var(--emerald); }

.footer-contact-item {
  font-size: 14px; color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
  display: flex; align-items: flex-start; gap: 8px;
}
.footer-contact-item i {
  font-size: 16px; color: var(--emerald); margin-top: 2px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 13px; color: rgba(255,255,255,0.3); font-weight: 400;
}
.footer-bottom-links {
  display: flex; gap: 24px;
}
.footer-bottom-links a {
  font-size: 13px; color: rgba(255,255,255,0.3);
  font-weight: 400; transition: color 0.3s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }
.placeholder-section {
  min-height: 400px; display: flex; align-items: center; justify-content: center;
  background: var(--offwhite); border-top: 1px solid var(--border-subtle);
}
.placeholder-section h2 { font-size: 1.8rem; color: var(--sage); margin-bottom: 6px; text-align: center; }
.placeholder-section p { color: var(--sage); font-size: 13px; opacity: 0.5; text-align: center; }

/* ===== RESPONSIVE ===== */
/* ===== MOBILE HAMBURGER ===== */
.nav-hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 36px; height: 36px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--forest); border-radius: 2px;
  transition: all 0.3s;
}
.nav-mobile-menu {
  display: none;
  position: fixed; top: 56px; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 24px;
  flex-direction: column; gap: 0;
  overflow-y: auto;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  font-size: 18px; font-weight: 600; color: var(--forest);
  padding: 16px 0;
  border-bottom: 1px solid var(--border-subtle);
  display: block;
}
.nav-mobile-menu a.active { color: var(--coral); }
.nav-mobile-menu .nav-cta-mobile {
  margin-top: 24px;
  background: var(--forest); color: var(--white); font-weight: 700;
  font-size: 15px; padding: 16px 32px; border-radius: 60px; border: none;
  cursor: pointer; text-align: center; width: 100%;
}

/* ===== SIDE DOT NAV ===== */
.side-dots {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 900;
  opacity: 0;
  transition: opacity 0.4s;
}
.side-dots.visible { opacity: 1; }
.side-dot-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.side-dot-label {
  position: absolute;
  right: 22px;
  background: var(--forest);
  color: var(--white);
  font-family: 'Public Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
}
.side-dot-item:hover .side-dot-label {
  opacity: 1;
  transform: translateX(0);
}
.side-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(47,171,115,0.25);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  border: none;
  padding: 0;
}
.side-dot:hover {
  background: rgba(47,171,115,0.5);
  transform: scale(1.3);
}
.side-dot.active {
  background: var(--emerald);
  transform: scale(1.3);
}

/* ===== TABLET: 1024px ===== */
@media (max-width: 1024px) {
  /* Nav — hide links, show hamburger on tablet too */
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { padding: 0 24px; }

  /* Hero */
  .hero-section { padding: 80px 24px 0; }
  .hero-card { padding: 40px 32px 0; overflow: hidden; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-left { padding-bottom: 0; }
  .hero-left h1 { font-size: 2.6rem; }
  .hero-right { max-width: 100%; margin: 0 auto; position: relative; overflow: hidden; }
  .badge-float-tr, .badge-float-bl { display: none; }
  .hero-image-frame { border-radius: 16px 16px 0 0; }

  /* Trust */
  .trust-bar { padding: 20px 24px; }
  .trust-inner { gap: 20px; padding: 18px 20px; flex-wrap: wrap; justify-content: center; }
  .trust-sep { display: none; }

  /* Problem */
  .problem-section { padding: 80px 24px 60px; }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-span-2 { grid-column: span 2; }
  .bento-span-3 { grid-column: span 2; }
  .shift-row { grid-template-columns: repeat(2, 1fr); }
  .plat-grid { grid-template-columns: repeat(4, 1fr); }

  /* SEO section */
  .seo-section { padding: 80px 24px; }
  .seo-grid { grid-template-columns: 1fr; gap: 48px; }
  .seo-left { position: static; }

  /* Included */
  .included-section { padding: 80px 24px; }
  .fstrip { grid-template-columns: 1fr; gap: 28px; }
  .fstrip.reverse .fstrip-text { order: 1; }
  .fstrip.reverse .fstrip-visual { order: 2; }
  .glow-card { max-width: 480px; }

  /* Process */
  .process-section { padding: 80px 24px; }
  .process-flow { flex-wrap: wrap; gap: 16px; }
  .process-card { flex: 1 1 calc(50% - 24px); min-width: 240px; }
  .process-arrow { display: none; }

  /* Clients */
  .clients-section { padding: 80px 24px; }
  .logo-slot { width: 150px; height: 64px; }
  .marquee-wrapper::before, .marquee-wrapper::after { width: 60px; }

  /* Why CrazyDi */
  .why-section { padding: 80px 24px; }

  /* Acronym */
  .acronym-section { padding: 80px 24px; }
  .acronym-grid { grid-template-columns: repeat(2, 1fr); }
  .acronym-bottom { flex-direction: column; gap: 24px; text-align: center; }

  /* Testimonials */
  /* Testimonials */
  .testimonials-section { padding: 80px 24px; }
  .testi-avatar-wrap { width: 120px; height: 120px; }
  .testi-avatar { width: 120px; height: 120px; font-size: 30px; }
  .testi-slide { gap: 32px; }

  /* Industries */
  .industries-section { padding: 80px 24px; }
  .ind-grid { grid-template-columns: repeat(2, 1fr); }

  /* Final CTA */
  .final-cta-section { padding: 80px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .form-field-full { grid-column: span 1; }

  /* FAQ */
  .faq-section { padding: 80px 24px; }

  /* Footer */
  .footer { padding: 60px 24px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ===== MOBILE: 768px ===== */
@media (max-width: 768px) {
  .side-dots { display: none; }
  /* Nav */
  .nav { padding: 10px 0; }
  .nav-inner { padding: 0 16px; }

  /* Hero */
  .hero-section { padding: 68px 12px 0; }
  .hero-card { padding: 28px 20px 0; border-radius: 16px; }
  .hero-left h1 { font-size: 2rem; }
  .hero-subtitle { font-size: 1.1rem; }
  .hero-sub { font-size: 14px; max-width: 100%; }
  .hero-eyebrow { font-size: 10px; padding: 6px 12px; margin-bottom: 16px; }
  .hero-cta-row { flex-direction: column; align-items: stretch; gap: 12px; }
  .btn-primary { justify-content: center; padding: 14px 24px; font-size: 14px; }
  .btn-ghost { justify-content: center; font-size: 14px; }
  .hero-left { padding: 0 0 24px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stat { padding: 14px 6px; }
  .hero-stat-num { font-size: 18px; }
  .hero-stat-label { font-size: 9px; }
  .hero-image-frame { border-radius: 12px 12px 0 0; }

  /* Trust bar */
  .trust-bar { padding: 12px 12px 16px; }
  .trust-inner { gap: 12px; padding: 14px; border-radius: 12px; }
  .trust-item { font-size: 11px; gap: 6px; }
  .trust-icon { width: 22px; height: 22px; font-size: 10px; border-radius: 5px; }

  /* Section 3: Problem / Bento */
  .problem-section { padding: 56px 14px 40px; }
  .problem-header { margin-bottom: 28px; }
  .problem-header h2 { font-size: 1.7rem; }
  .problem-header p { font-size: 14px; }
  .bento-grid { grid-template-columns: 1fr; gap: 10px; }
  .bento-span-2, .bento-span-3 { grid-column: span 1; }
  .bento-cell { padding: 20px 16px; border-radius: 12px; }
  .bento-label { font-size: 13px; }
  .sim-response { font-size: 13px; line-height: 1.7; }
  .sim-browser-bar { padding: 8px 12px; }
  .sim-query { font-size: 11px; }
  .shift-row { grid-template-columns: 1fr 1fr; gap: 8px; }
  .shift-card { padding: 16px 12px; border-radius: 10px; }
  .shift-stat { font-size: 20px; }
  .shift-name { font-size: 11px; margin-bottom: 4px; }
  .shift-desc { font-size: 12px; }
  .plat-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .plat-ico { width: 28px; height: 28px; font-size: 13px; border-radius: 8px; }
  .plat-name { font-size: 8px; }
  .problem-cta-row { margin-top: 20px; }
  .problem-cta-row .btn-primary { width: 100%; justify-content: center; }

  /* Section 4: What is SEO */
  .seo-section { padding: 64px 16px; }
  .seo-left h2 { font-size: 1.8rem; }
  .seo-left-desc { font-size: 14px; }
  .seo-left-cta .btn-coral { width: 100%; justify-content: center; }
  .seo-item { grid-template-columns: 40px 1fr; padding: 24px 0; min-height: auto; }
  .seo-item-number { font-size: 14px; }
  .seo-item-content h3 { font-size: 17px; }
  .seo-item-body { font-size: 14px; }
  .seo-scan-row { flex-direction: column; gap: 6px; }
  .seo-scan-item { padding: 10px 8px; text-align: left; display: flex; align-items: center; gap: 8px; }
  .seo-plat-row { gap: 6px; }
  .seo-plat-chip { font-size: 10px; padding: 5px 10px; }
  .seo-flow-row { gap: 6px; }
  .seo-flow-step { padding: 6px 12px; font-size: 11px; }

  /* Section 6: What's Included */
  .included-section { padding: 64px 16px; }
  .included-header { margin: 0 auto 48px; }
  .included-header h2 { font-size: 1.8rem; }
  .included-header p { font-size: 14px; }
  .fstrip { padding: 28px 0; gap: 24px; }
  .fstrip-num { font-size: 14px; }
  .fstrip-text h3 { font-size: 19px; }
  .fstrip-text p { font-size: 14px; }
  .fstrip-chips { gap: 5px; }
  .fstrip-chip { font-size: 11px; padding: 4px 10px; }
  .glow-card { padding: 28px 22px; }
  .glow-ico { width: 42px; height: 42px; font-size: 20px; }
  .glow-title { font-size: 15px; }
  .glow-li { font-size: 14px; gap: 8px; }
  .glow-bar-row { font-size: 14px; }
  .glow-bar-val { font-size: 14px; }
  .glow-bar-track { height: 6px; margin-bottom: 14px; }
  .glow-intent { padding: 6px 14px; font-size: 13px; }
  .glow-stats { gap: 10px; }
  .glow-stat { padding: 12px 8px; }
  .glow-stat-num { font-size: 24px; }
  .glow-stat-label { font-size: 11px; }

  /* Section 7: Process */
  .process-section { padding: 64px 16px; }
  .process-header { margin-bottom: 48px; }
  .process-header h2 { font-size: 1.8rem; }
  .process-header p { font-size: 14px; }
  .process-card { flex: 1 1 100%; padding: 24px 18px; }
  .process-num { font-size: 28px; }
  .process-title { font-size: 15px; }
  .process-desc { font-size: 12px; }
  .process-tag { font-size: 9px; padding: 3px 7px; }

  /* Section 8: Clients */
  .clients-section { padding: 64px 16px; }
  .clients-header { margin-bottom: 40px; }
  .clients-header h2 { font-size: 1.8rem; }
  .clients-header p { font-size: 14px; }
  .logo-slot { width: 140px; height: 58px; padding: 10px 16px; }
  .marquee-track { gap: 16px; margin-bottom: 16px; }
  .marquee-wrapper::before, .marquee-wrapper::after { width: 40px; }

  /* Section 9: Why CrazyDi */
  .why-section { padding: 64px 16px; }
  .why-header { margin: 0 auto 48px; }
  .why-header h2 { font-size: 1.8rem; }
  .why-header p { font-size: 14px; }
  .why-grid { grid-template-columns: 1fr; gap: 12px; }
  .why-card { padding: 28px 22px; }
  .why-card-title { font-size: 18px; }
  .why-card-desc { font-size: 13px; }

  /* Section 10: Acronym */
  .acronym-section { padding: 64px 16px; }
  .acronym-header { margin-bottom: 40px; }
  .acronym-header h2 { font-size: 1.8rem; }
  .acronym-header p { font-size: 14px; }
  .acronym-grid { grid-template-columns: 1fr; gap: 10px; }
  .acr-card { padding: 22px 18px; }
  .acr-full { font-size: 15px; }
  .acr-desc { font-size: 12px; }
  .google-quote { padding: 24px 20px; }
  .google-quote-text { font-size: 16px; }
  .google-quote-context { font-size: 13px; }
  .acronym-bottom { padding: 28px 22px; }
  .acronym-bottom-text h3 { font-size: 18px; }
  .acronym-bottom-text p { font-size: 13px; }

  /* Section 11: Testimonials */
  .testimonials-section { padding: 64px 16px; }
  .testimonials-header { margin-bottom: 40px; }
  .testimonials-header h2 { font-size: 1.8rem; }
  .testi-slide { flex-direction: column; text-align: center; gap: 24px; }
  .testi-quote { font-size: 16px; }
  .testi-nav { margin-top: 36px; }
  .testi-text { font-size: 14px; }

  /* Section 12: Industries */
  .industries-section { padding: 64px 16px; }
  .industries-header { margin: 0 auto 48px; }
  .industries-header h2 { font-size: 1.8rem; }
  .industries-header p { font-size: 14px; }
  .ind-grid { grid-template-columns: 1fr; gap: 10px; }
  .ind-card { padding: 24px 20px; }
  .ind-card-name { font-size: 16px; }
  .ind-card-desc { font-size: 12px; }

  /* Section 13: Final CTA */
  .final-cta-section { padding: 64px 16px; }
  .final-cta-inner h2 { font-size: 1.8rem; }
  .final-cta-desc { font-size: 14px; }
  .final-cta-form { padding: 28px 22px; }
  .final-cta-form-title { font-size: 18px; }
  .final-trust { gap: 16px; }

  /* Section 14: FAQ */
  .faq-section { padding: 64px 16px; }
  .faq-header h2 { font-size: 1.8rem; }
  .faq-question { font-size: 14px; padding: 18px 0; }
  .faq-answer p { font-size: 13px; }

  /* Footer */
  .footer { padding: 48px 16px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-bottom-links { gap: 16px; }
}

/* ===== SMALL MOBILE: 480px ===== */
@media (max-width: 480px) {
  .hero-left h1 { font-size: 1.7rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-card { padding: 24px 16px 0; border-radius: 14px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stat-num { font-size: 16px; }
  .problem-header h2 { font-size: 1.5rem; }
  .shift-row { grid-template-columns: 1fr; }
  .shift-card { padding: 16px; }
  .plat-grid { grid-template-columns: repeat(3, 1fr); }
  .seo-left h2 { font-size: 1.5rem; }
  .seo-item { grid-template-columns: 1fr; gap: 8px; }
  .seo-item-number { font-size: 14px; }
  .included-header h2 { font-size: 1.5rem; }
  .fstrip-text h3 { font-size: 17px; }
  .glow-stats { flex-direction: column; gap: 8px; }
  .glow-intent-chips { gap: 6px; }
  .glow-intent { padding: 5px 12px; font-size: 12px; }
  .process-header h2 { font-size: 1.5rem; }
  .process-num { font-size: 24px; }
  .clients-header h2 { font-size: 1.5rem; }
  .logo-slot { width: 120px; height: 52px; padding: 8px 12px; border-radius: 10px; }
  .logo-placeholder { font-size: 9px; }
  .marquee-track { gap: 12px; margin-bottom: 12px; }
  .marquee-wrapper::before, .marquee-wrapper::after { width: 24px; }
  .why-header h2 { font-size: 1.5rem; }
  .why-card-title { font-size: 16px; }
  .acronym-header h2 { font-size: 1.5rem; }
  .google-quote-text { font-size: 15px; }
  .acronym-bottom-text h3 { font-size: 16px; }
  .testimonials-header h2 { font-size: 1.5rem; }
  .testi-avatar-wrap { width: 100px; height: 100px; }
  .testi-avatar { width: 100px; height: 100px; font-size: 26px; }
  .testi-li-badge { width: 32px; height: 32px; font-size: 16px; }
  .testi-quote { font-size: 15px; }
  .industries-header h2 { font-size: 1.5rem; }
  .final-cta-inner h2 { font-size: 1.5rem; }
  .faq-header h2 { font-size: 1.5rem; }
  .faq-question { font-size: 13px; }
}
