/* Shared styles for all SEO landing pages */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #080810; --surface: #0f0f1a; --surface-hi: #141420;
  --border: rgba(255,255,255,0.06); --border-hi: rgba(255,255,255,0.12);
  --text: #eeeef8; --muted: #6868a0; --dim: #2e2e50;
  --accent: #5b5ef4; --accent-l: #818cf8; --glow: rgba(91,94,244,0.2);
  --green: #34d399; --amber: #fbbf24; --red: #f87171;
  --r: 12px; --rl: 20px;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body { background: var(--bg); color: var(--text); font-family: 'DM Sans', sans-serif; font-size: 16px; line-height: 1.6; overflow-x: hidden; }
body::after { content: ''; position: fixed; inset: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E"); pointer-events: none; z-index: 9999; opacity: 0.6; }
a { color: inherit; text-decoration: none; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 0 32px; height: 64px; display: flex; align-items: center; justify-content: space-between; background: rgba(8,8,16,0.85); backdrop-filter: blur(24px) saturate(180%); border-bottom: 1px solid var(--border); }
.nav-logo { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 17px; letter-spacing: -0.5px; }
.nav-logo span { color: var(--accent-l); }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links > li > a { font-size: 13px; font-weight: 500; color: var(--muted); transition: color .2s; }
.nav-links > li > a:hover { color: var(--text); }
.nav-ctas { display: flex; align-items: center; gap: 10px; }
.btn-ghost { padding: 8px 14px; font-size: 13px; font-weight: 500; color: var(--muted); transition: color .2s; }
.btn-ghost:hover { color: var(--text); }
.btn-nav { padding: 8px 18px; background: var(--accent); color: #fff; font-size: 13px; font-weight: 600; border-radius: 8px; transition: all .2s; }
.btn-nav:hover { background: var(--accent-l); box-shadow: 0 6px 20px var(--glow); transform: translateY(-1px); }

/* NAV DROPDOWN */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: flex; align-items: center; gap: 4px; cursor: pointer; }
.nav-chevron { font-size: 10px; transition: transform .2s; }
.nav-dropdown:hover .nav-chevron { transform: rotate(180deg); }
.nav-submenu { display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); padding-top: 12px; min-width: 210px; list-style: none; z-index: 200; }
.nav-submenu-inner { background: var(--surface); border: 1px solid var(--border-hi); border-radius: var(--r); padding: 8px; box-shadow: 0 16px 48px rgba(0,0,0,0.5); }
.nav-dropdown:hover .nav-submenu { display: block; }
.nav-submenu li a { display: block; padding: 9px 14px; font-size: 13px; color: var(--muted); border-radius: 8px; transition: background .15s, color .15s; }
.nav-submenu li a:hover { background: var(--surface-hi); color: var(--text); }

/* LAYOUT */
.container { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
section { padding: 72px 24px; }
.bg-surface { background: var(--surface); }

/* HERO */
.hero { padding: 130px 24px 72px; text-align: center; position: relative; }
.hero::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 800px; height: 600px; background: radial-gradient(ellipse at center, rgba(91,94,244,0.12) 0%, transparent 70%); pointer-events: none; }

.badge { display: inline-flex; align-items: center; gap: 8px; padding: 5px 14px; background: rgba(91,94,244,0.08); border: 1px solid rgba(91,94,244,0.22); border-radius: 100px; font-size: 11px; font-weight: 600; color: var(--accent-l); margin-bottom: 28px; font-family: 'JetBrains Mono', monospace; letter-spacing: 0.04em; }
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: blink 2s ease-in-out infinite; }
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:.3; } }

h1 { font-family: 'Bricolage Grotesque', sans-serif; font-size: clamp(36px, 5.5vw, 64px); font-weight: 800; line-height: 1.05; letter-spacing: -2px; margin-bottom: 24px; }
h1 em { font-style: italic; color: var(--accent-l); }
h2 { font-family: 'Bricolage Grotesque', sans-serif; font-size: clamp(24px, 3.5vw, 38px); font-weight: 800; letter-spacing: -1.2px; line-height: 1.1; margin-bottom: 16px; }
h2 em { font-style: italic; color: var(--accent-l); }
h3 { font-family: 'Bricolage Grotesque', sans-serif; }

.hero-sub { font-size: 18px; color: var(--muted); line-height: 1.7; max-width: 560px; margin: 0 auto 40px; }
.hero-ctas { display: flex; justify-content: center; align-items: center; gap: 16px; flex-wrap: wrap; }

.btn-primary { padding: 14px 28px; background: var(--accent); color: #fff; font-size: 15px; font-weight: 700; border-radius: 10px; transition: all .25s; letter-spacing: -0.2px; display: inline-block; }
.btn-primary:hover { background: var(--accent-l); box-shadow: 0 8px 30px var(--glow); transform: translateY(-2px); }
.btn-secondary { padding: 14px 24px; border: 1px solid var(--border-hi); border-radius: 10px; font-size: 14px; font-weight: 500; color: var(--muted); transition: all .2s; display: inline-block; }
.btn-secondary:hover { border-color: var(--accent); color: var(--text); }

/* SECTION LABELS */
.section-label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; color: var(--accent-l); text-transform: uppercase; font-family: 'JetBrains Mono', monospace; margin-bottom: 16px; display: block; }
.section-sub { font-size: 16px; color: var(--muted); line-height: 1.7; max-width: 560px; margin-bottom: 48px; }

/* STATS */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.stat-card { text-align: center; padding: 28px 16px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--rl); }
.stat-num { font-family: 'Bricolage Grotesque', sans-serif; font-size: 36px; font-weight: 800; letter-spacing: -1px; color: var(--text); line-height: 1; margin-bottom: 6px; }
.stat-num span { color: var(--accent-l); }
.stat-label { font-size: 13px; color: var(--muted); }

/* CARDS */
.card-grid { display: grid; gap: 16px; }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card { padding: 28px; border: 1px solid var(--border); border-radius: var(--rl); background: var(--bg); transition: border-color .2s, transform .2s; }
.card:hover { border-color: rgba(91,94,244,0.4); transform: translateY(-2px); }
.card-icon { font-size: 26px; margin-bottom: 14px; display: block; font-style: normal; }
.card-icon-wrap { width: 42px; height: 42px; border-radius: 10px; background: rgba(91,94,244,0.1); display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 16px; }
.card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* STEPS */
.step-list { display: flex; flex-direction: column; margin-top: 48px; }
.step { display: grid; grid-template-columns: 56px 1fr; gap: 24px; padding: 32px 0; border-bottom: 1px solid var(--border); align-items: start; }
.step:last-child { border-bottom: none; }
.step-num { width: 44px; height: 44px; border-radius: 50%; background: rgba(91,94,244,0.1); border: 1px solid rgba(91,94,244,0.3); display: flex; align-items: center; justify-content: center; font-family: 'JetBrains Mono', monospace; font-size: 14px; font-weight: 600; color: var(--accent-l); flex-shrink: 0; }
.step-content h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 8px; }
.step-content p { font-size: 15px; color: var(--muted); line-height: 1.7; max-width: 600px; }
.step-tag { display: inline-block; margin-top: 12px; padding: 3px 10px; background: rgba(52,211,153,0.08); border: 1px solid rgba(52,211,153,0.2); border-radius: 6px; font-size: 12px; color: var(--green); font-family: 'JetBrains Mono', monospace; }

/* COMPARISON TABLE */
.comparison-wrap { overflow-x: auto; margin-top: 48px; }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
thead th { padding: 14px 20px; text-align: left; font-family: 'Bricolage Grotesque', sans-serif; font-size: 13px; font-weight: 700; color: var(--muted); border-bottom: 1px solid var(--border); }
thead th.highlight { color: var(--accent-l); }
tbody tr { border-bottom: 1px solid var(--border); }
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: var(--surface-hi); }
tbody td { padding: 14px 20px; color: var(--muted); }
tbody td:first-child { color: var(--text); font-weight: 500; }
td.hc { background: rgba(91,94,244,0.04); }
.check { color: var(--green); } .cross { color: var(--red); }

/* FAQ */
.faq-list { margin-top: 48px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; background: none; border: none; padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; text-align: left; color: var(--text); font-family: 'Bricolage Grotesque', sans-serif; font-size: 17px; font-weight: 600; letter-spacing: -0.3px; transition: color .2s; }
.faq-q:hover { color: var(--accent-l); }
.faq-arrow { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; border: 1px solid var(--border-hi); display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--muted); transition: transform .25s, border-color .2s; }
.faq-item.open .faq-arrow { transform: rotate(45deg); border-color: var(--accent); color: var(--accent-l); }
.faq-a { display: none; padding-bottom: 20px; font-size: 15px; color: var(--muted); line-height: 1.7; max-width: 720px; }
.faq-item.open .faq-a { display: block; }

/* CTA */
.cta-section { padding: 80px 24px; text-align: center; }
.cta-box { max-width: 640px; margin: 0 auto; padding: 56px 48px; background: var(--surface); border: 1px solid var(--border-hi); border-radius: 24px; }
.cta-box h2 { margin-bottom: 16px; }
.cta-box p { color: var(--muted); margin-bottom: 32px; font-size: 16px; }
.cta-note { margin-top: 14px; font-size: 12px; color: var(--muted); }

/* FOOTER */
footer { padding: 40px 24px; border-top: 1px solid var(--border); text-align: center; }
.footer-links { display: flex; justify-content: center; gap: 32px; margin-bottom: 16px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--muted); transition: color .2s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 12px; color: var(--dim); }

@media (max-width: 768px) {
  nav { padding: 0 16px; }
  .nav-links { display: none; }
  .card-grid.cols-2, .card-grid.cols-3 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-box { padding: 36px 24px; }
  .step { grid-template-columns: 44px 1fr; gap: 16px; }
}
