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

:root {
  --bg: #05060a;
  --fg: #f0f0f0;
  --accent: #b4ff4e;
  --muted: #8a8a9a;
  --border: #1a1a2e;
  --grid: #0f0f1a;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 48px;
  background: rgba(5, 6, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.15em;
  color: var(--accent);
}
.nav-tag {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
  font-family: var(--font-head);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 48px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,6,10,0) 0%, transparent 20%),
    repeating-linear-gradient(0deg, transparent, transparent 79px, var(--border) 79px, var(--border) 80px),
    repeating-linear-gradient(90deg, transparent, transparent 79px, var(--border) 79px, var(--border) 80px);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-label {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 24px;
  font-weight: 600;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero-accent { color: var(--accent); }
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
  font-family: var(--font-head);
  letter-spacing: 0.05em;
}
.proof-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

/* HERO IMAGE */
.hero-image {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border);
}

/* HERO CTA */
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-guarantee {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-top: 16px;
  padding: 8px 16px;
  border: 1px solid rgba(180,255,78,0.2);
  border-radius: 4px;
  background: rgba(180,255,78,0.05);
  width: fit-content;
}
.hero-guarantee svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent);
  color: #05060a;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.85; }
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: var(--fg);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: border-color 0.2s;
}
.btn-secondary:hover { border-color: var(--accent); }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.proof-sep { color: var(--border); }

/* RADAR VISUAL */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 360px;
  position: relative;
}
.radar {
  position: relative;
  width: 320px;
  height: 320px;
}
.radar-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--accent);
  opacity: 0.12;
}
.radar-ring-1 { width: 80px; height: 80px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.radar-ring-2 { width: 160px; height: 160px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.radar-ring-3 { width: 280px; height: 280px; top: 50%; left: 50%; transform: translate(-50%, -50%); border-style: dashed; }
.radar-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140px;
  height: 1px;
  background: var(--accent);
  opacity: 0.08;
  transform-origin: left center;
}
.radar-line-1 { transform: rotate(0deg); }
.radar-line-2 { transform: rotate(90deg); }
.radar-line-3 { transform: rotate(180deg); }
.radar-line-4 { transform: rotate(270deg); }
.radar-center {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px var(--accent);
}
.radar-sweep {
  position: absolute;
  width: 140px;
  height: 140px;
  top: 50%;
  left: 50%;
  transform-origin: left center;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(180,255,78,0.15) 30deg, transparent 60deg);
  border-radius: 50%;
  animation: sweep 4s linear infinite;
}
@keyframes sweep {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
.radar-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
  animation: blink 3s ease-in-out infinite;
}
.radar-dot-1 { top: 18%; left: 65%; animation-delay: 0s; }
.radar-dot-2 { top: 72%; left: 78%; animation-delay: 0.8s; }
.radar-dot-3 { top: 45%; left: 12%; animation-delay: 1.6s; }
.radar-dot-4 { top: 82%; left: 38%; animation-delay: 2.4s; }
.radar-dot-5 { top: 28%; left: 82%; animation-delay: 0.4s; }
@keyframes blink {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.5); }
}

/* HERO SCROLL INDICATOR */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--muted);
}
.scroll-line {
  width: 40px;
  height: 1px;
  background: var(--border);
}

/* SECTION SHARED */
.section-label {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 600;
}
.section-headline {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  max-width: 700px;
}

/* PROBLEM */
.problem {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
}
.problem .section-headline {
  margin-bottom: 60px;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--border);
}
.problem-card {
  background: var(--bg);
  padding: 48px 40px;
}
.problem-stat {
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
  line-height: 1;
}
.problem-label {
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.problem-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* FEATURES */
.features {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
}
.features .section-headline {
  margin-bottom: 64px;
}
.features-stack {
  max-width: 800px;
  margin: 0 auto;
}
.feature-item {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
.feature-item:first-child { border-top: 1px solid var(--border); }
.feature-connector {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  margin-left: 4px;
  opacity: 0.4;
}
.feature-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.feature-icon {
  flex-shrink: 0;
}
.feature-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.feature-index {
  font-family: var(--font-head);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.feature-name {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--fg);
}
.feature-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 600px;
  margin-left: 52px;
}

/* PRICING */
.pricing {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.pricing .section-headline { margin: 0 auto 60px; }
.pricing-card {
  max-width: 480px;
  margin: 0 auto;
  padding: 56px 48px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--grid);
}
.pricing-amount {
  font-family: var(--font-head);
  font-size: 72px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.pricing-period {
  font-family: var(--font-head);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: 8px;
}
.pricing-divider {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin: 32px auto;
}
.pricing-features {
  list-style: none;
  text-align: left;
  margin: 0 0 32px;
}
.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--fg);
}
.pricing-features li::before {
  content: '✓';
  color: var(--accent);
  margin-right: 12px;
  font-weight: 700;
}
.pricing-note {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
}

/* SOCIAL PROOF */
.social-proof {
  padding: 80px 48px;
  border-top: 1px solid var(--border);
  background: var(--grid);
}
.social-proof .section-label { text-align: center; }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1000px;
  margin: 48px auto 0;
  background: var(--border);
}
.proof-item {
  background: var(--bg);
  padding: 40px 36px;
  text-align: center;
}
.proof-quote {
  font-size: 16px;
  color: var(--fg);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 16px;
}
.proof-author {
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
}

/* OUTCOMES */
.outcomes {
  padding: 80px 48px;
  border-top: 1px solid var(--border);
  background: var(--grid);
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 1200px;
  margin: 40px auto 0;
  background: var(--border);
}
.outcome-item {
  background: var(--bg);
  padding: 48px 32px;
  text-align: center;
}
.outcome-value {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
}
.outcome-label {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

/* VISION */
.vision {
  padding: 120px 48px;
  border-top: 1px solid var(--border);
}
.vision-inner {
  max-width: 720px;
  margin: 0 auto;
}
.vision-label {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 24px;
  font-weight: 600;
}
.vision-headline {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.vision-body {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 24px;
}
.vision-rule {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 48px 0;
}
.vision-closing {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.4;
  letter-spacing: -0.01em;
}

/* FOOTER */
.footer {
  padding: 60px 48px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--accent);
}
.footer-tagline {
  font-size: 13px;
  color: var(--muted);
}
.footer-meta {
  font-size: 11px;
  color: var(--muted);
  opacity: 0.5;
}

/* PRICING GRID */
.pricing {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.pricing .section-headline { margin: 0 auto 16px; }
.pricing-sub {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 48px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.pricing-card {
  background: var(--grid);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px 32px;
  text-align: left;
  position: relative;
}
.pricing-card.featured {
  border: 2px solid var(--accent);
  transform: scale(1.04);
  z-index: 1;
  padding: 48px 36px;
}
.pricing-badge {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 16px;
}
.featured-badge {
  color: var(--accent);
}
.pricing-tier-name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.pricing-card.featured .pricing-tier-name {
  font-size: 24px;
}
.pricing-amount {
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
}
.pricing-card.featured .pricing-amount {
  font-size: 72px;
  color: var(--accent);
}
.pricing-period {
  font-size: 20px;
  font-weight: 400;
  color: var(--muted);
}
.pricing-divider {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}
.pricing-features {
  list-style: none;
  margin: 0 0 32px;
}
.pricing-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--fg);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before {
  content: '✓';
  color: var(--accent);
  margin-right: 10px;
  font-weight: 700;
}
.pricing-recommended {
  font-size: 12px;
  color: var(--muted);
  margin-top: 16px;
  text-align: center;
}
.pricing-guarantee {
  margin-top: 48px;
  font-size: 14px;
  color: var(--muted);
}
.guarantee-icon { margin-right: 6px; }

/* CHECKOUT SUCCESS BANNER */
.checkout-success-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 14px 48px;
  background: rgba(180,255,78,0.12);
  border-bottom: 1px solid rgba(180,255,78,0.25);
  backdrop-filter: blur(12px);
}
.checkout-success-text {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--accent);
}
.checkout-success-dismiss {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 16px;
  cursor: pointer;
  padding: 0 4px;
}
.checkout-success-dismiss:hover { color: var(--fg); }

/* URGENCY NOTE */
.urgency-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  font-family: var(--font-head);
  letter-spacing: 0.03em;
  margin-bottom: 48px;
  padding: 10px 20px;
  border: 1px solid rgba(180,255,78,0.15);
  border-radius: 4px;
  background: rgba(180,255,78,0.04);
}
.urgency-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
.btn-outline {
  display: block;
  text-align: center;
  padding: 14px 32px;
  background: transparent;
  color: var(--fg);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: border-color 0.2s;
  margin-top: 8px;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* TRUST / SOCIAL PROOF */
.trust-section {
  padding: 80px 48px;
  border-top: 1px solid var(--border);
  background: var(--grid);
  text-align: center;
}
.trust-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-align: center;
  margin-bottom: 32px;
}
.trust-metrics-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.trust-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.trust-metric-value {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.trust-metric-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  max-width: 160px;
  line-height: 1.3;
}
.trust-sep { color: var(--border); font-size: 24px; }

.as-seen-in {
  margin-bottom: 36px;
}
.as-seen-label {
  font-family: var(--font-head);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 20px;
}
.logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.logo-item {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--muted);
  opacity: 0.5;
  text-transform: uppercase;
}

.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
  font-family: var(--font-head);
}
.trust-bar-sep { color: var(--border); }

/* COMPARISON TABLE */
.comparison-section {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.comparison-section .section-headline { margin-bottom: 56px; }
.comparison-table-wrap {
  max-width: 1000px;
  margin: 0 auto;
  overflow-x: auto;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.comparison-table th {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--muted);
  padding: 16px 24px;
  border-bottom: 2px solid var(--border);
  text-align: left;
}
.comparison-table th.intellispect-col {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.comparison-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  color: var(--fg);
}
.comparison-table td.intellispect-col {
  font-weight: 600;
}
.highlight-cell { color: var(--accent); font-weight: 700; }
.check-cell { color: var(--accent); }
.cross-cell { color: #666; }
.price-cell { color: var(--muted); }
.price-note { font-size: 11px; color: #666; font-weight: 400; }
.price-row td { border-top: 2px solid var(--border); font-weight: 600; }
.price-row .intellispect-col { color: var(--accent); }

/* TESTIMONIALS */
.testimonials {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
}
.testimonials .section-headline { margin-bottom: 56px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.testimonial-card {
  background: var(--grid);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px;
  text-align: left;
}
.testimonial-quote {
  font-size: 15px;
  color: var(--fg);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.testimonial-avatar-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--grid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 800;
  color: var(--accent);
  flex-shrink: 0;
  letter-spacing: 0.05em;
}
.testimonial-metric {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 16px;
  padding: 4px 10px;
  display: inline-block;
  border: 1px solid rgba(180,255,78,0.25);
  border-radius: 4px;
  background: rgba(180,255,78,0.06);
}
.testimonial-name {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--fg);
}
.testimonial-title {
  font-size: 12px;
  color: var(--muted);
}
.testimonial-agency {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-top: 2px;
}

/* CASE STUDY */
.case-study {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
  background: var(--grid);
}
.case-study-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.cs-label {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 48px;
  font-weight: 600;
}
.cs-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}
.cs-headline {
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-bottom: 24px;
}
.cs-highlight { color: var(--accent); }
.cs-body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 540px;
}
.cs-steps {
  margin: 32px 0;
}
.cs-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.cs-step-num {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.1em;
  min-width: 24px;
  padding-top: 2px;
}
.cs-step-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.cs-result {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 36px 0;
  padding: 24px;
  background: rgba(180,255,78,0.05);
  border: 1px solid rgba(180,255,78,0.15);
  border-radius: 8px;
  max-width: 480px;
}
.cs-result-value {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.cs-result-label {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4;
}
.cs-cta { margin-top: 8px; display: inline-block; }
.cs-result-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px 32px;
  text-align: center;
}
.cs-result-metric {
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.cs-result-metric-label {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 24px;
}
.cs-result-divider {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin: 0 auto 24px;
}
@media (max-width: 900px) {
  .cs-grid { grid-template-columns: 1fr; gap: 40px; }
  .cs-result-card { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; padding: 24px; }
  .cs-result-divider { display: none; }
  .cs-result-metric { font-size: 36px; margin-bottom: 4px; }
}

/* FAQ */
.faq {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
  background: var(--grid);
}
.faq .section-headline { margin-bottom: 56px; }
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}
.faq-toggle { display: none; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  padding: 24px 0;
  letter-spacing: 0.01em;
  cursor: pointer;
  gap: 16px;
}
.faq-question::after {
  content: '+';
  font-size: 20px;
  color: var(--accent);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-toggle:checked ~ .faq-item .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.faq-toggle:checked ~ .faq-item .faq-answer {
  max-height: 400px;
  padding-bottom: 24px;
}

/* STICKY CTA BAR */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(5,6,10,0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 14px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.sticky-cta-text {
  font-family: var(--font-head);
  font-size: 14px;
  color: var(--muted);
}
.sticky-cta-btn {
  padding: 10px 24px;
  font-size: 13px;
}

/* EXIT INTENT POPUP */
.exit-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0,0,0,0.8);
  align-items: center;
  justify-content: center;
}
.exit-popup.shown { display: flex; }
.exit-popup-inner {
  background: var(--grid);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 48px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  position: relative;
}
.exit-popup-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 18px;
  cursor: pointer;
}
.exit-popup-label {
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 12px;
}
.exit-popup-headline {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 12px;
}
.exit-popup-sub {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 28px;
}
.exit-popup-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.exit-popup-input {
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
}
.exit-popup-input:focus { border-color: var(--accent); }
.exit-popup-note {
  font-size: 12px;
  color: var(--muted);
}

/* TRUST BADGES */
.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.trust-badge {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent);
  padding: 8px 16px;
  border: 1px solid rgba(180,255,78,0.25);
  border-radius: 100px;
  background: rgba(180,255,78,0.06);
}

/* PRICING BADGE ROW */
.pricing-badge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.pricing-trust-badge {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
}

/* SECURITY BADGES */
.pricing-security-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.pricing-security-badge {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--muted);
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pricing-security-badge svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
  .nav { padding: 16px 24px; }
  .hero { padding: 120px 24px 60px; }
  .problem, .features, .outcomes, .vision, .footer,
  .comparison-section, .testimonials, .faq { padding-left: 24px; padding-right: 24px; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
  .feature-desc { margin-left: 0; }
  .proof-grid { grid-template-columns: 1fr; }
  .pricing { padding-left: 24px; padding-right: 24px; }
  .social-proof, .trust-section { padding-left: 24px; padding-right: 24px; }
  .pricing-card { padding: 40px 28px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 20px; }
  .pricing-card.featured { transform: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .trust-metrics-bar { flex-direction: column; gap: 20px; }
  .trust-badges { gap: 12px; }
  .sticky-cta { padding: 12px 24px; }
  .sticky-cta-text { font-size: 13px; }
  .comparison-table th, .comparison-table td { padding: 12px 16px; font-size: 13px; }
}
@media (max-width: 600px) {
  .outcomes-grid { grid-template-columns: 1fr; }
  .problem-stat { font-size: 40px; }
  .outcome-value { font-size: 32px; }
  .trust-bar { flex-direction: column; gap: 8px; }
  .trust-bar-sep { display: none; }
  .logo-row { gap: 28px; }
  .logo-item { font-size: 14px; }
  .exit-popup-inner { padding: 32px 24px; }
  .exit-popup-headline { font-size: 22px; }
}

/* LEAD MAGNET */
.lead-magnet {
  padding: 80px 48px;
  background: linear-gradient(180deg, var(--bg) 0%, #08091200 0%, var(--grid) 30%, var(--bg) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.lead-magnet::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(180,255,78,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.lm-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}
.lm-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--accent);
  border: 1px solid rgba(180,255,78,0.3);
  background: rgba(180,255,78,0.06);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.lm-headline {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.lm-accent { color: var(--accent); }
.lm-sub {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.lm-form {
  background: var(--grid);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 24px;
  text-align: left;
}
.lm-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.lm-field-wide { grid-column: 1 / -1; }
.lm-field-group { display: flex; flex-direction: column; gap: 6px; }
.lm-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-family: var(--font-head);
}
.lm-hint {
  font-weight: 400;
  font-family: var(--font-body);
  letter-spacing: 0;
  text-transform: none;
}
.lm-input {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s;
}
.lm-input:focus { border-color: var(--accent); }
.lm-input::placeholder { color: #3a3a5a; }
.lm-submit {
  width: 100%;
  background: var(--accent);
  color: #05060a;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
  border: none;
  border-radius: 6px;
  padding: 14px 24px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.1s;
}
.lm-submit:hover { opacity: 0.9; transform: translateY(-1px); }
.lm-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.lm-status {
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 14px;
  margin-bottom: 20px;
  text-align: left;
}
.lm-status-ok {
  background: rgba(180,255,78,0.08);
  border: 1px solid rgba(180,255,78,0.25);
  color: var(--accent);
}
.lm-status-err {
  background: rgba(255,80,80,0.08);
  border: 1px solid rgba(255,80,80,0.25);
  color: #ff7070;
}
.lm-proof-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.lm-proof-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}
.lm-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}
@media (max-width: 640px) {
  .lead-magnet { padding: 60px 24px; }
  .lm-form { padding: 24px 20px; }
  .lm-fields { grid-template-columns: 1fr; }
  .lm-field-wide { grid-column: 1; }
  .lm-proof-row { gap: 16px; }
}
/* ============================================================
   VS COMPARISON PAGES (/vs/apollo, /vs/zoominfo, /vs/artisan-ava)
   ============================================================ */

/* Hero */
.vs-hero {
  padding: 140px 48px 80px;
  border-bottom: 1px solid var(--border);
  background:
    repeating-linear-gradient(0deg, transparent, transparent 79px, var(--border) 79px, var(--border) 80px),
    repeating-linear-gradient(90deg, transparent, transparent 79px, var(--border) 79px, var(--border) 80px);
}
.vs-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}
.vs-h1 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 20px 0 24px;
}
.vs-intro {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 40px;
}
.vs-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* Sections shared */
.vs-section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}
.vs-table-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

/* Two-column comparison table */
.vs-table th:nth-child(3),
.vs-table td:nth-child(3) {
  background: rgba(180,255,78,0.01);
}

/* Pain section */
.vs-pain-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.vs-pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.vs-pain-card {
  background: var(--grid);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 28px;
}
.vs-pain-number {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.vs-pain-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 14px;
}
.vs-pain-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* CTA section */
.vs-cta-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
  background: rgba(180,255,78,0.03);
}
.vs-cta-inner {
  text-align: center;
}
.vs-cta-headline {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 20px auto 16px;
  max-width: 600px;
}
.vs-cta-sub {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.vs-cta-inner .vs-cta-row {
  justify-content: center;
  margin-bottom: 20px;
}
.vs-cta-note {
  font-size: 13px;
  color: var(--muted);
  font-family: var(--font-head);
  letter-spacing: 0.04em;
}

/* FAQ section on VS pages */
.vs-faq-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

/* Footer compare links */
.footer-compare-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 16px;
}
.footer-compare-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.03em;
  font-family: var(--font-body);
  transition: color 0.2s;
}
.footer-compare-links a:hover { color: var(--accent); }

/* One-liner above fold */
.vs-one-liner {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* Trust row under CTA */
.vs-trust-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.vs-trust-item {
  font-family: var(--font-head);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.vs-trust-sep { color: var(--border); font-size: 14px; }

/* Problem section */
.vs-problem-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
  background: var(--grid);
}
.vs-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.vs-problem-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 28px;
}
.vs-problem-icon {
  margin-bottom: 20px;
}
.vs-problem-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 14px;
  color: var(--fg);
}
.vs-problem-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* Social proof strip */
.vs-social-proof-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.vs-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.vs-proof-item {
  background: var(--grid);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px;
}
.vs-proof-quote {
  font-size: 15px;
  color: var(--fg);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}
.vs-proof-author {
  font-family: var(--font-head);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .vs-pain-grid { grid-template-columns: 1fr; }
  .vs-problem-grid { grid-template-columns: 1fr; }
  .vs-proof-grid { grid-template-columns: 1fr; }
  .vs-hero { padding: 120px 24px 60px; }
  .vs-section-inner { padding: 0 24px; }
  .vs-cta-section { padding: 60px 0; }
  .vs-table-section { padding: 60px 0; }
  .vs-pain-section { padding: 60px 0; }
  .vs-faq-section { padding: 60px 0; }
  .vs-problem-section { padding: 60px 0; }
  .vs-social-proof-section { padding: 60px 0; }
}
