:root {
  --bg: #F0F4FA;
  --bg-hero: #E8EDF6;
  --bg-card: #FFFFFF;
  --bg-warm: #F5F7FC;
  --text: #0F1729;
  --text-mid: #3D4663;
  --text-muted: #7A82A0;
  --accent: #2F54EB;
  --accent-hover: #1D3FCC;
  --accent-glow: rgba(47, 84, 235, 0.2);
  --accent-subtle: rgba(47, 84, 235, 0.06);
  --accent-light: #EBF0FF;
  --danger: #DC2626;
  --danger-light: #FEF2F2;
  --danger-border: rgba(220,38,38,0.15);
  --success: #16A34A;
  --success-light: #F0FDF4;
  --success-border: rgba(22,163,74,0.15);
  --warning: #E5920B;
  --warning-light: #FFFBEB;
  --border: rgba(15,23,41,0.06);
  --border-strong: rgba(15,23,41,0.1);
  --shadow-sm: 0 1px 3px rgba(15,23,41,0.04);
  --shadow-md: 0 4px 24px rgba(15,23,41,0.06);
  --shadow-lg: 0 12px 48px rgba(15,23,41,0.08);
  --shadow-xl: 0 24px 64px rgba(15,23,41,0.1);
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --mono: 'JetBrains Mono', monospace;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ====== NAV ====== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 14px 40px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(240,244,250,0.8);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--sans); font-weight: 700; font-size: 20px;
  display: flex; align-items: center; gap: 8px; color: var(--text);
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  color: var(--text-mid); text-decoration: none; font-size: 14px;
  font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--accent); color: #fff !important;
  padding: 10px 24px; border-radius: 10px;
  font-weight: 600; font-size: 14px;
  transition: all 0.2s;
  box-shadow: 0 2px 12px var(--accent-glow);
}
.nav-cta:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 4px 20px var(--accent-glow); }

/* ====== TICKER ====== */
.ticker-bar {
  margin-top: 53px;
  background: var(--accent-light);
  border-bottom: 1px solid rgba(47,84,235,0.08);
  overflow: hidden; white-space: nowrap; padding: 10px 0;
}
.ticker-track {
  display: inline-flex;
  animation: scroll-ticker 35s linear infinite;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0 40px;
  font-size: 13px; font-weight: 500; color: var(--accent);
}
.ticker-item .pulse {
  width: 6px; height: 6px; background: var(--success);
  border-radius: 50%; animation: blink 2s ease-in-out infinite;
}
.ticker-item .star-color { color: var(--warning); }
@keyframes scroll-ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* ====== HERO ====== */
.hero {
  padding: 100px 24px 80px;
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  min-height: calc(100vh - 90px);
  justify-content: center;
  position: relative; overflow: visible;
}
/* Gradient blob background */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.hero-blob-1 {
  width: 600px; height: 600px;
  top: -100px; right: -100px;
  background: radial-gradient(circle, rgba(47,84,235,0.18) 0%, rgba(47,84,235,0.03) 60%, transparent 80%);
}
.hero-blob-2 {
  width: 400px; height: 400px;
  bottom: -50px; left: -80px;
  background: radial-gradient(circle, rgba(99,140,255,0.12) 0%, transparent 70%);
}
.hero-blob-3 {
  width: 300px; height: 300px;
  top: 60%; left: 55%;
  background: radial-gradient(circle, rgba(139,92,246,0.08) 0%, transparent 70%);
}
.hero-content { max-width: 700px; position: relative; z-index: 1; }

.urgency-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px;
  background: var(--danger-light);
  border: 1px solid var(--danger-border);
  border-radius: 100px;
  font-size: 12px; font-weight: 600;
  color: var(--danger);
  margin-bottom: 28px;
  animation: pulse-badge 2s ease-in-out infinite;
}
.urgency-badge .live-dot {
  width: 7px; height: 7px; background: var(--danger);
  border-radius: 50%; animation: blink 1.5s ease-in-out infinite;
}
@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220,38,38,0.12); }
  50% { box-shadow: 0 0 0 8px rgba(220,38,38,0); }
}
.hero h1 {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.1; font-weight: 800;
  margin-bottom: 20px; letter-spacing: -0.03em;
  color: var(--text);
}
.hero h1 em {
  font-style: normal; color: var(--accent);
  position: relative;
}
.hero h1 em::after {
  content: ''; position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 3px; background: var(--accent);
  opacity: 0.3; border-radius: 2px;
}
.hero-tagline {
  font-size: 22px; font-weight: 600;
  color: var(--text); margin-bottom: 16px;
  letter-spacing: 0.01em;
}
.hero-sub {
  font-size: 17px; line-height: 1.7;
  color: var(--text-mid); margin-bottom: 36px;
  max-width: 520px; margin-left: auto; margin-right: auto;
}
.hero-input-wrap {
  display: flex; gap: 0;
  background: var(--bg-card);
  border: 2px solid var(--border-strong);
  border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s;
  max-width: 700px; 
  margin: 0 auto;
}
.hero-input-wrap:focus-within {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg), 0 0 0 4px var(--accent-glow);
}
.hero-input-wrap input {
  flex: 1; padding: 18px 24px;
  background: transparent; border: none;
  color: var(--text); font-size: 16px;
  font-family: var(--sans); outline: none;
}
.hero-input-wrap input::placeholder { color: var(--text-muted); }
.hero-input-wrap button {
  padding: 18px 32px;
  background: var(--danger); color: #fff;
  border: none; font-family: var(--sans);
  font-weight: 700; font-size: 15px;
  cursor: pointer; transition: all 0.2s;
  white-space: nowrap;
}
.hero-input-wrap button:hover { background: #B91C1C; }
.hero-micro {
  margin-top: 16px; font-size: 13px; color: var(--text-muted);
  display: flex; align-items: center; justify-content: center; gap: 16px;
}
.hero-micro span { display: flex; align-items: center; gap: 5px; }


/* ====== AUDIT DEMO ====== */
.audit-demo-wrap {
  width: 100%; max-width: 560px;
  margin: 48px auto 0;
  position: relative; z-index: 1;
}
.audit-demo {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.audit-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  background: var(--bg-warm);
  border-bottom: 1px solid var(--border);
}
.audit-dot { width: 10px; height: 10px; border-radius: 50%; }
.audit-dot.r { background: #ef4444; }
.audit-dot.y { background: #f59e0b; }
.audit-dot.g { background: #22c55e; }
.audit-url {
  flex: 1; margin-left: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px; padding: 6px 12px;
  font-family: var(--mono); font-size: 12px;
  color: var(--text-muted);
}
.audit-body { padding: 24px; }
.audit-site {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px; padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.audit-site-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), #5B8DEF);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 14px;
}
.audit-site-name { font-weight: 600; font-size: 14px; }
.audit-site-url { font-size: 11px; color: var(--text-muted); }
.audit-scores {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 10px; margin-bottom: 20px;
}
.score-item { text-align: center; }
.score-ring {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 17px; font-weight: 600;
  margin: 0 auto 5px; position: relative;
}
.score-ring::before {
  content: ''; position: absolute; inset: 0;
  border-radius: 50%; border: 3px solid var(--border);
}
.score-ring.red { color: var(--danger); }
.score-ring.red::before { border-color: var(--danger); border-right-color: transparent; border-bottom-color: transparent; }
.score-ring.orange { color: var(--warning); }
.score-ring.orange::before { border-color: var(--warning); border-bottom-color: transparent; }
.score-ring.green { color: var(--success); }
.score-ring.green::before { border-color: var(--success); }
.score-label {
  font-size: 9px; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.5px; font-weight: 500;
}
.audit-issues { list-style: none; }
.audit-issues li {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 8px;
  font-size: 12px; font-weight: 500;
  margin-bottom: 5px;
  opacity: 0; animation: fadeSlide 0.5s ease forwards;
}
.audit-issues li:nth-child(1) { animation-delay: 1.2s; }
.audit-issues li:nth-child(2) { animation-delay: 1.7s; }
.audit-issues li:nth-child(3) { animation-delay: 2.2s; }
.audit-issues li:nth-child(4) { animation-delay: 2.7s; }
@keyframes fadeSlide {
  from { opacity: 0; transform: translateX(-8px); }
  to { opacity: 1; transform: translateX(0); }
}
.issue-crit { background: var(--danger-light); color: var(--danger); }
.issue-warn { background: var(--warning-light); color: #92600B; }
.issue-pass { background: var(--success-light); color: var(--success); }
.issue-tag {
  font-size: 9px; font-weight: 700; padding: 2px 8px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: 0.5px; flex-shrink: 0;
}
.issue-crit .issue-tag { background: rgba(220,38,38,0.1); }
.issue-warn .issue-tag { background: rgba(245,158,11,0.12); }
.issue-pass .issue-tag { background: rgba(22,163,74,0.1); }
.audit-cta {
  margin-top: 16px; padding: 12px 14px;
  background: var(--accent-light);
  border: 1px solid rgba(47,84,235,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: space-between;
  opacity: 0; animation: fadeSlide 0.5s ease forwards; animation-delay: 3.2s;
}
.audit-cta p { font-size: 12px; font-weight: 600; color: var(--accent); }
.audit-cta a {
  padding: 7px 16px; background: var(--accent); color: #fff;
  border: none; border-radius: 8px;
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  cursor: pointer; transition: all 0.2s;
}
.audit-cta a:hover { background: var(--accent-hover); }


/* ====== PRODUCT DEMO SLIDESHOW ====== */
/*.demo-wrap {
  width: 100%; max-width: 720px;
  margin: 48px auto 0;
  position: relative; z-index: 1;
}
.demo-browser {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.demo-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  background: var(--bg-warm);
  border-bottom: 1px solid var(--border);
}
.audit-dot { width: 10px; height: 10px; border-radius: 50%; }
.audit-dot.r { background: #ef4444; }
.audit-dot.y { background: #f59e0b; }
.audit-dot.g { background: #22c55e; }
.demo-url {
  flex: 1; margin-left: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px; padding: 6px 12px;
  font-family: var(--mono); font-size: 12px;
  color: var(--text-muted);
}
.demo-slides {
  position: relative;
  aspect-ratio: 16 / 9.5;
  overflow: hidden;
  background: #0a0a0f;
}
.demo-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.demo-slide.active { opacity: 1; }
.demo-slide img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top left;
  display: block;
}
.demo-label-bar {
  padding: 12px 20px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.demo-label-text {
  font-size: 13px; font-weight: 600;
  color: var(--text-mid);
  transition: opacity 0.3s;
}
.demo-dots {
  display: flex; justify-content: center; gap: 8px;
  padding: 0 20px 16px;
  background: var(--bg-card);
}
.demo-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border-strong);
  cursor: pointer;
  transition: all 0.3s;
}
.demo-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}*/

/* ====== LIVE STATS ====== */
.live-bar {
  padding: 40px 24px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.live-inner {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; text-align: center;
}
.live-stat .num {
  font-family: var(--mono);
  font-size: 28px; font-weight: 600; color: var(--text);
}
.live-stat .label { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

/* ====== COST SECTION ====== */
.cost-section { padding: 100px 24px; text-align: center; }
.cost-box {
  max-width: 800px; margin: 0 auto;
  background: var(--bg-card);
  border: 2px solid var(--danger-border);
  border-radius: 20px; padding: 48px 40px;
  box-shadow: 0 8px 40px rgba(220,38,38,0.04);
  position: relative; overflow: hidden;
}
.cost-box::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(220,38,38,0.04), transparent);
  border-radius: 50%;
}
.section-label {
  font-family: var(--mono);
  font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px; font-weight: 600;
}
.cost-box .section-label { color: var(--danger); }
.cost-box h2 {
  
  font-size: 32px; font-weight: 700; margin-bottom: 8px;
}
.cost-number {
  font-family: var(--mono);
  font-size: 64px; font-weight: 600; color: var(--danger);
  margin: 16px 0;
}
.cost-box > p {
  color: var(--text-mid); font-size: 15px;
  max-width: 500px; margin: 0 auto; line-height: 1.6;
}
.cost-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 32px;
}
.cost-stat {
  padding: 20px; background: var(--bg);
  border-radius: 12px; border: 1px solid var(--border);
}
.cost-stat .num {
  font-family: var(--mono); font-size: 28px; font-weight: 600; color: var(--danger);
}
.cost-stat .label { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

/* ====== FEATURES ====== */
.features {
  padding: 100px 24px; max-width: 1100px; margin: 0 auto;
}
.features h2 {
  
  font-size: clamp(32px, 4vw, 48px); letter-spacing: -0.02em;
  font-weight: 400; margin-bottom: 64px; max-width: 600px;
}
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 36px 28px;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.feature-card:hover {
  border-color: rgba(47,84,235,0.15);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  background: var(--accent-light);
  border: 1px solid rgba(47,84,235,0.08);
}
.feature-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text-mid); line-height: 1.6; }

/* ====== PROOF ====== */
.proof {
  padding: 100px 24px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.proof h2 {
  
  font-size: clamp(32px, 4vw, 48px); letter-spacing: -0.02em;
  font-weight: 400; margin-bottom: 16px;
}
.proof-sub { color: var(--text-muted); font-size: 16px; margin-bottom: 64px; }
.proof-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; text-align: left;
}
.proof-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 32px 28px;
  transition: all 0.3s;
}
.proof-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.proof-card .stars { color: var(--warning); font-size: 16px; margin-bottom: 16px; }
.proof-card blockquote {
  font-size: 15px; line-height: 1.65;
  color: var(--text); margin-bottom: 20px; font-style: italic;
}
.proof-card .author { display: flex; align-items: center; gap: 12px; }
.proof-card .avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #5B8DEF);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: #fff;
}
.author-info .name { font-size: 14px; font-weight: 600; }
.author-info .role { font-size: 12px; color: var(--text-muted); }

/* ====== COMPARISON ====== */
.comparison {
  padding: 100px 24px; max-width: 900px; margin: 0 auto;
}
.comparison h2 {
  
  font-size: clamp(32px, 4vw, 48px); letter-spacing: -0.02em;
  font-weight: 400; text-align: center; margin-bottom: 48px;
}
.comparison h2 em { color: var(--danger); font-weight: 800; }
.comp-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-md);
}
.comp-table thead th {
  padding: 20px 24px; font-size: 14px; font-weight: 600;
  text-align: left; border-bottom: 1px solid var(--border);
  color: var(--text-muted); background: var(--bg-warm);
}
.comp-table thead th:last-child {
  background: var(--accent-light); color: var(--accent); font-weight: 700;
}
.comp-table tbody td {
  padding: 16px 24px; font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.comp-table tbody tr:last-child td { border-bottom: none; }
.comp-table tbody td:first-child { color: var(--text-mid); font-weight: 500; }
.comp-table tbody td:last-child { background: rgba(47,84,235,0.02); }
.check { color: var(--success); font-weight: 700; }
.cross { color: var(--text-muted); opacity: 0.3; }
.price-cell { font-family: var(--mono); font-weight: 600; }

/* ====== HOW IT WORKS ====== */
.how {
  padding: 100px 24px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.how-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.how h2 {
  
  font-size: clamp(32px, 4vw, 48px); letter-spacing: -0.02em;
  font-weight: 400; margin-bottom: 64px;
}
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px; text-align: left;
}
.step { position: relative; padding-top: 48px; }
.step-num {
  position: absolute; top: 0; left: 0;
  font-family: var(--mono);
  font-size: 48px; font-weight: 700;
  color: rgba(47,84,235,0.1); line-height: 1;
}
.step h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--text-mid); line-height: 1.6; }
.step-badge {
  display: inline-block; margin-top: 12px;
  padding: 4px 12px;
  background: var(--success-light);
  border: 1px solid var(--success-border);
  border-radius: 100px;
  font-family: var(--mono); font-size: 12px; color: var(--success);
}

/* ====== PRICING ====== */
.pricing { padding: 100px 24px; }
.pricing-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.pricing h2 {
  
  font-size: clamp(32px, 4vw, 48px); letter-spacing: -0.02em;
  font-weight: 400; margin-bottom: 8px;
}
.pricing-sub { color: var(--text-muted); font-size: 16px; margin-bottom: 32px; }
.pricing-toggle {
  display: inline-flex;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px; padding: 4px; margin-bottom: 48px;
  box-shadow: var(--shadow-sm);
}
.pricing-toggle button {
  padding: 10px 24px; font-family: var(--sans);
  font-size: 14px; font-weight: 600;
  border: none; border-radius: 8px;
  cursor: pointer; background: transparent;
  color: var(--text-muted); transition: all 0.2s;
}
.pricing-toggle button.active {
  background: var(--accent); color: #fff;
  box-shadow: 0 2px 12px var(--accent-glow);
}
.save-badge { font-size: 11px; color: var(--success); font-weight: 700; margin-left: 6px; }
.pricing-cards {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 32px 24px;
  text-align: left; position: relative;
  transition: all 0.3s; box-shadow: var(--shadow-sm);
}
.pricing-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
}
.pricing-card.featured {
  border: 2px solid var(--accent);
  box-shadow: 0 8px 40px var(--accent-glow);
}
.pricing-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1px; padding: 4px 16px; border-radius: 100px;
}
.plan-name { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.plan-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.plan-price {
  font-family: var(--mono);
  font-size: 40px; font-weight: 700;
  margin-bottom: 4px; line-height: 1.1;
}
.plan-price .period { font-size: 14px; color: var(--text-muted); font-weight: 400; }
.plan-trial { font-size: 12px; color: var(--success); font-weight: 600; margin-bottom: 24px; }
.plan-btn {
  display: block; width: 100%; padding: 14px; border-radius: 10px;
  border: 1px solid var(--border-strong);
  background: transparent; color: var(--text);
  font-family: var(--sans); font-size: 14px; font-weight: 600;
  cursor: pointer; transition: all 0.2s;
  text-align: center; text-decoration: none; margin-bottom: 24px;
}
.plan-btn:hover { background: var(--bg); border-color: var(--border-strong); }
.pricing-card.featured .plan-btn {
  background: var(--accent); border-color: var(--accent);
  color: #fff; box-shadow: 0 4px 20px var(--accent-glow);
}
.pricing-card.featured .plan-btn:hover { background: var(--accent-hover); }
.plan-free-btn { border-color: var(--success); color: var(--success); }
.plan-features { list-style: none; padding-left:0; }
.plan-features li {
  font-size: 13px; color: var(--text-mid);
  padding: 8px 0; border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.plan-features li::before {
  content: '✓'; color: var(--success);
  font-weight: 700; font-size: 12px;
}

/* ====== FAQ ====== */
.faq {
  padding: 100px 24px; max-width: 700px; margin: 0 auto;
}
.faq h2 {
  
  font-size: clamp(32px, 4vw, 48px); letter-spacing: -0.02em;
  font-weight: 400; text-align: center; margin-bottom: 48px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0; cursor: pointer;
}
.faq-q {
  font-size: 16px; font-weight: 600;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--text);
}
.faq-q::after {
  content: '+'; font-size: 24px; color: var(--text-muted);
  transition: transform 0.3s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-a { max-height: 200px; padding-top: 16px; }
.faq-a p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }

/* ====== FINAL CTA ====== */
.final-cta {
  padding: 120px 24px; text-align: center;
  position: relative; overflow: hidden;
  background: var(--text);
  color: #fff;
}
.final-cta::before {
  content: ''; position: absolute;
  top: -100px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(47,84,235,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta h2 {
  
  font-size: clamp(36px, 5vw, 56px); letter-spacing: -0.02em;
  font-weight: 400; margin-bottom: 16px;
  position: relative; z-index: 1;
}
.final-cta p {
  color: rgba(255,255,255,0.55); font-size: 17px;
  margin-bottom: 40px; max-width: 500px;
  margin-left: auto; margin-right: auto;
  position: relative; z-index: 1; line-height: 1.6;
}
.final-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 48px;
  background: #fff; color: var(--text);
  font-family: var(--sans); font-size: 17px; font-weight: 700;
  border-radius: 12px; text-decoration: none;
  transition: all 0.2s;
  position: relative; z-index: 1;
  box-shadow: 0 4px 30px rgba(255,255,255,0.1);
}
.final-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(255,255,255,0.15); }
.final-micro {
  margin-top: 16px; font-size: 13px;
  color: rgba(255,255,255,0.35);
  position: relative; z-index: 1;
}

/* ====== FOOTER ====== */
footer {
  padding: 48px 24px; text-align: center;
  background: var(--text);
  border-top: 1px solid rgba(255,255,255,0.06);
}
footer p { font-size: 13px; color: rgba(255,255,255,0.3); }
footer a { color: rgba(255,255,255,0.3); text-decoration: none; }
footer a:hover { color: rgba(255,255,255,0.5); }

/* ====== SCROLL REVEAL ====== */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .hero { min-height: auto; padding-top: 80px; }
  .audit-demo-wrap { max-width: 100%; }
}
@media (max-width: 768px) {
  nav { padding: 12px 20px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .features-grid, .proof-grid, .pricing-cards { grid-template-columns: 1fr; }
  .cost-stats, .steps, .live-inner { grid-template-columns: 1fr; }
  .audit-scores { grid-template-columns: repeat(2, 1fr); }
  .hero-input-wrap { flex-direction: column; max-width: 100%; }
  .hero-micro { flex-direction: column; gap: 6px; }
  .comp-table { font-size: 13px; }
  .comp-table thead th, .comp-table tbody td { padding: 12px 12px; }
  .hero-blob-1, .hero-blob-2, .hero-blob-3 { display: none; }
}