/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --primary-deep: #3730a3;
  --primary-light: #eef2ff;
  --primary-glow: rgba(99,102,241,.35);
  --green: #10b981;
  --blue: #3b82f6;
  --purple: #8b5cf6;
  --orange: #f59e0b;
  --teal: #14b8a6;
  --red: #ef4444;
  --text: #0d1117;
  --text-2: #1e293b;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --border-subtle: #f1f5f9;
  --bg: #f8fafc;
  --bg-dark: #060d1f;
  --white: #ffffff;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-xs: 0 1px 3px rgba(0,0,0,.05), 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 4px 6px rgba(0,0,0,.04), 0 10px 20px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.1), 0 2px 8px rgba(0,0,0,.06);
  --shadow-xl: 0 24px 60px rgba(0,0,0,.14), 0 4px 16px rgba(0,0,0,.08);
  --shadow-colored: 0 16px 48px rgba(99,102,241,.2);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 1.6rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; border-radius: var(--radius-sm); font-weight: 700; font-size: .95rem;
  transition: transform .18s, box-shadow .18s, background .18s;
  border: none; cursor: pointer; position: relative; overflow: hidden;
  letter-spacing: -.01em;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15), transparent);
  opacity: 0; transition: opacity .18s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(99,102,241,.45); }
.btn-primary:hover::after { opacity: 1; }
.btn-primary.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; border-radius: 14px; }
.btn-primary.btn-white { background: #fff; color: var(--primary-dark); }
.btn-primary.btn-white:hover { box-shadow: 0 8px 32px rgba(255,255,255,.2); }
.btn-ghost { display: inline-flex; align-items: center; padding: .7rem 1.25rem; color: var(--text-2); font-weight: 500; font-size: .9rem; border-radius: var(--radius-sm); transition: background .15s, color .15s; }
.btn-ghost:hover { background: var(--bg); color: var(--text); }
.btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .95rem 2rem; border: 1.5px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.85); border-radius: 14px; font-weight: 600; font-size: 1rem;
  backdrop-filter: blur(8px); background: rgba(255,255,255,.05);
  transition: border-color .18s, background .18s, color .18s;
}
.btn-outline svg { width: 18px; height: 18px; }
.btn-outline:hover { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.1); color: #fff; }
.btn-outline-primary {
  display: block; text-align: center; padding: .9rem;
  border: 1.5px solid var(--border); color: var(--text-2);
  border-radius: var(--radius-sm); font-weight: 600; font-size: .95rem;
  transition: border-color .18s, background .18s, color .18s, box-shadow .18s;
  background: #fff;
}
.btn-outline-primary:hover { border-color: var(--primary); color: var(--primary); box-shadow: 0 0 0 3px rgba(99,102,241,.1); }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: 1rem 2.25rem; border: 1.5px solid rgba(255,255,255,.25);
  color: #fff; border-radius: 14px; font-weight: 600; font-size: 1.05rem;
  backdrop-filter: blur(8px); background: rgba(255,255,255,.06);
  transition: border-color .18s, background .18s;
}
.btn-outline-white:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.12); }

/* ===== ANNOUNCEMENT BAR ===== */
.ann-bar {
  background: linear-gradient(90deg, #1e1b4b 0%, #4f46e5 50%, #1e1b4b 100%);
  color: #fff; padding: .65rem 1.5rem;
  display: flex; align-items: center; justify-content: center; gap: .75rem;
  font-size: .84rem; position: relative;
  transition: max-height .3s ease, padding .3s ease, opacity .3s;
}
.ann-bar.hidden { max-height: 0; padding: 0; overflow: hidden; opacity: 0; }
.ann-inner { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; justify-content: center; }
.ann-badge { background: rgba(255,255,255,.18); padding: .15rem .65rem; border-radius: 20px; font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.ann-link { color: #c7d2fe; font-weight: 700; transition: color .15s; text-decoration: underline; text-underline-offset: 3px; }
.ann-link:hover { color: #fff; }
.ann-close { position: absolute; right: 1.25rem; background: none; border: none; color: rgba(255,255,255,.5); cursor: pointer; font-size: 1rem; padding: .25rem .5rem; transition: color .15s; line-height: 1; }
.ann-close:hover { color: #fff; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  transition: background .3s, backdrop-filter .3s, border-color .3s, box-shadow .3s, top .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255,255,255,.94); backdrop-filter: blur(20px) saturate(1.8);
  border-color: rgba(0,0,0,.06); box-shadow: 0 1px 24px rgba(0,0,0,.06);
}
.nav-inner { display: flex; align-items: center; gap: 2rem; height: 70px; }
.brand { display: flex; align-items: center; gap: .65rem; font-size: 1.2rem; font-weight: 800; color: var(--text); letter-spacing: -.02em; }
.brand-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 900; color: #fff;
  box-shadow: 0 4px 12px rgba(99,102,241,.4);
}
.brand strong { color: var(--primary); }
.nav-links { display: flex; align-items: center; gap: .15rem; flex: 1; }
.nav-links a { padding: .5rem 1rem; color: var(--text-muted); font-size: .875rem; font-weight: 500; border-radius: 8px; transition: color .15s, background .15s; }
.nav-links a:hover { color: var(--text); background: var(--bg); }
.nav-mobile-actions { display: none; }
.nav-actions { display: flex; align-items: center; gap: .75rem; margin-left: auto; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .5rem; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s, opacity .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 7rem 0 5rem;
  background: var(--bg-dark);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(99,102,241,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(120px); will-change: transform; }
.glow-1 { width: 800px; height: 800px; background: rgba(99,102,241,.3); top: -300px; right: -200px; animation: glow-drift 12s ease-in-out infinite; }
.glow-2 { width: 600px; height: 600px; background: rgba(16,185,129,.15); bottom: -150px; left: -150px; animation: glow-drift 15s ease-in-out infinite reverse; }
.glow-3 { width: 450px; height: 450px; background: rgba(139,92,246,.2); top: 35%; left: 30%; animation: glow-drift 9s ease-in-out infinite 2s; }
@keyframes glow-drift { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-40px,-25px)} }

.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.hero-left { color: #fff; }
.badge-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .45rem 1.1rem;
  background: rgba(99,102,241,.2);
  color: #c7d2fe; border-radius: 100px; font-size: .8rem; font-weight: 600;
  margin-bottom: 1.75rem;
  border: 1px solid rgba(99,102,241,.35);
  backdrop-filter: blur(8px);
}
.badge-dot { width: 7px; height: 7px; background: #34d399; border-radius: 50%; animation: pulse 2s infinite; flex-shrink: 0; }
@keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(52,211,153,.6)} 50%{box-shadow:0 0 0 8px rgba(52,211,153,0)} }

.hero-left h1 {
  font-size: clamp(2.75rem, 5vw, 4rem); font-weight: 900;
  line-height: 1.06; letter-spacing: -.04em; margin-bottom: 1.5rem; color: #fff;
}
.gradient-text {
  background: linear-gradient(135deg, #a5b4fc 0%, #34d399 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.text-red { color: #fca5a5; -webkit-text-fill-color: #fca5a5; }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,.6); margin-bottom: 2.5rem; line-height: 1.8; max-width: 490px; }
.hero-cta { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.1rem; }
.hero-note { font-size: .78rem; color: rgba(255,255,255,.35); margin-bottom: 2.25rem; letter-spacing: .01em; }
.hero-platforms { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.hp-label { font-size: .75rem; font-weight: 600; color: rgba(255,255,255,.35); white-space: nowrap; text-transform: uppercase; letter-spacing: .06em; }
.hp-icons { display: flex; gap: .4rem; }
.hp-icon {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,.96); border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  transition: transform .15s, box-shadow .15s;
  flex-shrink: 0;
}
.hp-icon:hover { transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0,0,0,.2); }
.hero-trust { display: flex; align-items: center; gap: 1rem; }
.ht-avatars { display: flex; }
.ht-av {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700; color: #fff;
  border: 2px solid var(--bg-dark); margin-right: -8px;
}
.ht-text { font-size: .8rem; color: rgba(255,255,255,.5); padding-left: 16px; line-height: 1.5; }
.ht-stars { display: block; color: #fbbf24; font-size: .85rem; margin-bottom: .1rem; letter-spacing: .05em; }

/* Hero Mockup */
.hero-right { position: relative; }
.hero-mockup {
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.07);
  transform: perspective(1200px) rotateY(-8deg) rotateX(4deg) scale(.97);
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.hero-right:hover .hero-mockup { transform: perspective(1200px) rotateY(-3deg) rotateX(1deg) scale(1); }
.mockup-chrome { background: #161625; padding: .7rem 1.1rem; display: flex; align-items: center; gap: .5rem; border-bottom: 1px solid rgba(255,255,255,.05); }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }
.mockup-url { margin-left: .75rem; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.07); border-radius: 5px; padding: .2rem .875rem; font-size: .7rem; color: rgba(255,255,255,.35); flex: 1; max-width: 200px; }
.mockup-body { display: flex; background: #0d0d1a; min-height: 300px; }
.mock-sidebar { width: 50px; background: #111120; display: flex; flex-direction: column; align-items: center; padding: .75rem .4rem; gap: .5rem; border-right: 1px solid rgba(255,255,255,.04); }
.mock-logo { width: 26px; height: 26px; background: var(--primary); border-radius: 7px; margin-bottom: .5rem; }
.mock-nav { width: 26px; height: 4px; background: rgba(255,255,255,.1); border-radius: 3px; }
.mock-nav.active { background: var(--primary); box-shadow: 0 0 8px rgba(99,102,241,.6); }
.mock-main { flex: 1; padding: .875rem; display: flex; flex-direction: column; gap: .6rem; overflow: hidden; }
.mock-header-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: .2rem; }
.mhb-title { height: 7px; width: 90px; background: rgba(255,255,255,.12); border-radius: 4px; }
.mhb-btn { height: 18px; width: 52px; background: var(--primary); border-radius: 5px; opacity: .9; }
.mock-stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: .35rem; }
.ms-card { background: rgba(255,255,255,.04); border-radius: 7px; padding: .5rem; border: 1px solid rgba(255,255,255,.05); display: flex; align-items: center; gap: .3rem; }
.ms-icon { width: 14px; height: 14px; border-radius: 4px; flex-shrink: 0; }
.ms-card.green .ms-icon { background: rgba(16,185,129,.5); }
.ms-card.blue .ms-icon { background: rgba(59,130,246,.5); }
.ms-card.purple .ms-icon { background: rgba(139,92,246,.5); }
.ms-card.orange .ms-icon { background: rgba(245,158,11,.5); }
.ms-data { flex: 1; min-width: 0; }
.ms-val { height: 7px; background: rgba(255,255,255,.18); border-radius: 3px; margin-bottom: .25rem; }
.ms-lbl { height: 4px; background: rgba(255,255,255,.07); border-radius: 3px; width: 65%; }
.mock-grid-2 { display: grid; grid-template-columns: 1.3fr 1fr; gap: .35rem; flex: 1; }
.mock-chart-card, .mock-reviews-card { background: rgba(255,255,255,.03); border-radius: 7px; padding: .6rem; border: 1px solid rgba(255,255,255,.05); }
.mc-title { height: 5px; background: rgba(255,255,255,.1); border-radius: 3px; width: 55%; margin-bottom: .6rem; }
.mock-bars { display: flex; align-items: flex-end; gap: 3px; height: 56px; }
.mb { flex: 1; background: rgba(99,102,241,.25); border-radius: 3px 3px 0 0; }
.mb.active { background: rgba(99,102,241,.85); box-shadow: 0 0 8px rgba(99,102,241,.5); }
.mock-review-row { display: flex; align-items: center; gap: .35rem; margin-bottom: .4rem; }
.mr-av { width: 14px; height: 14px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }
.mr-lines { flex: 1; }
.mr-line { height: 4px; background: rgba(255,255,255,.1); border-radius: 3px; margin-bottom: .18rem; }
.mr-line.short { width: 55%; }
.mr-stars { font-size: .5rem; color: #fbbf24; white-space: nowrap; }

/* Mockup floating badges */
.mockup-badge {
  position: absolute; border-radius: 14px;
  padding: .75rem 1rem; display: flex; align-items: center; gap: .625rem;
  box-shadow: 0 12px 40px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.1);
  backdrop-filter: blur(16px) saturate(1.5);
  background: rgba(255,255,255,.92);
  animation: badge-float 4s ease-in-out infinite;
}
.badge-pos-1 { bottom: 24px; left: -32px; animation-delay: 0s; }
.badge-pos-2 { top: 24px; right: -32px; animation-delay: 2.2s; }
@keyframes badge-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.mockup-badge strong { display: block; font-size: .8rem; color: var(--text); font-weight: 700; line-height: 1.3; }
.mockup-badge span { font-size: .7rem; color: var(--text-muted); }
.mb-icon { width: 30px; height: 30px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: .9rem; flex-shrink: 0; }
.mb-icon.green { background: #d1fae5; }
.mb-icon.blue { background: #dbeafe; }

/* ===== TRUST STRIP ===== */
.trust-strip { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 1.1rem 0; }
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: .5rem; font-size: .8rem; font-weight: 600; color: var(--text-muted); }
.trust-item svg { width: 15px; height: 15px; color: var(--primary); }
.trust-sep { width: 1px; height: 18px; background: var(--border); }

/* ===== MARQUEE ===== */
.marquee-section { padding: 2.25rem 0; overflow: hidden; background: var(--bg); border-bottom: 1px solid var(--border); }
.marquee-label { text-align: center; font-size: .72rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1.25rem; }
.marquee-track { overflow: hidden; position: relative; }
.marquee-track::before, .marquee-track::after { content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none; }
.marquee-track::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.marquee-track::after { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
.marquee-inner { display: flex; gap: .75rem; width: max-content; animation: marquee 30s linear infinite; }
.marquee-inner:hover { animation-play-state: paused; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.marquee-chip {
  padding: .45rem 1.1rem; background: var(--white); border: 1px solid var(--border);
  border-radius: 100px; font-size: .82rem; font-weight: 600; color: var(--text-2);
  white-space: nowrap; transition: border-color .15s, color .15s, box-shadow .15s;
}
.marquee-chip:hover { border-color: var(--primary); color: var(--primary); box-shadow: 0 0 0 3px rgba(99,102,241,.1); }

/* ===== SECTION SHARED ===== */
.section { padding: 7rem 0; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-pill {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .4rem 1rem;
  background: var(--primary-light); color: var(--primary-dark);
  border-radius: 100px; font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em; margin-bottom: 1.25rem;
  border: 1px solid rgba(99,102,241,.15);
}
.section-header h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.75rem); font-weight: 900;
  letter-spacing: -.03em; color: var(--text); margin-bottom: 1rem; line-height: 1.12;
}
.section-header p { font-size: 1.05rem; color: var(--text-muted); max-width: 520px; margin: 0 auto; line-height: 1.7; }

/* ===== PROBLEM SOLUTION ===== */
.problem-solution { background: linear-gradient(160deg, #f0f4ff 0%, #fafbff 100%); }
.ps-grid { display: grid; grid-template-columns: 1fr 80px 1fr; gap: 1.5rem; align-items: stretch; }
.ps-card {
  background: var(--white); border-radius: var(--radius); padding: 2.25rem;
  border: 1px solid var(--border); box-shadow: var(--shadow-xs);
}
.ps-card.before { border-top: 3px solid #ef4444; }
.ps-card.after { border-top: 3px solid #10b981; box-shadow: var(--shadow); }
.ps-label { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; margin-bottom: 1.5rem; padding: .3rem .875rem; border-radius: 100px; display: inline-block; }
.ps-label.bad { background: #fee2e2; color: #b91c1c; }
.ps-label.good { background: #d1fae5; color: #047857; }
.ps-list { list-style: none; display: flex; flex-direction: column; gap: .875rem; }
.ps-bad, .ps-good { display: flex; align-items: flex-start; gap: .75rem; font-size: .9rem; line-height: 1.55; color: var(--text-2); }
.ps-bad span { color: #ef4444; font-size: 1rem; font-weight: 800; margin-top: -.05rem; flex-shrink: 0; }
.ps-good span { color: #10b981; font-size: 1rem; font-weight: 800; margin-top: -.05rem; flex-shrink: 0; }
.ps-arrow { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .5rem; }
.ps-arrow-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: #fff;
  box-shadow: 0 8px 24px rgba(99,102,241,.35);
}
.ps-arrow span { font-size: .7rem; color: var(--text-muted); font-weight: 600; text-align: center; text-transform: uppercase; letter-spacing: .06em; }

/* ===== BENTO FEATURES ===== */
.features { background: var(--white); }
.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.bento-cell {
  background: var(--white); border-radius: var(--radius); padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s;
  position: relative; overflow: hidden;
}
.bento-cell::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  opacity: 0; transition: opacity .25s;
}
.bento-cell:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.bento-cell:hover::before { opacity: 1; }
.bento-cell:nth-child(1)::before { background: linear-gradient(90deg, #10b981, #34d399); }
.bento-cell:nth-child(2)::before { background: linear-gradient(90deg, #8b5cf6, #a78bfa); }
.bento-cell:nth-child(3)::before { background: linear-gradient(90deg, #ef4444, #f87171); }
.bento-cell:nth-child(4)::before { background: linear-gradient(90deg, #3b82f6, #60a5fa); }
.bento-cell:nth-child(5)::before { background: linear-gradient(90deg, #14b8a6, #2dd4bf); }
.bento-cell:nth-child(6)::before { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.bento-cell:nth-child(7)::before { background: linear-gradient(90deg, #8b5cf6, #6366f1); }
.bento-cell:nth-child(8)::before { background: linear-gradient(90deg, #10b981, #6366f1); }
.bento-large { grid-column: span 2; }
.bento-wide { grid-column: span 2; }
.bento-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.bento-icon svg { width: 24px; height: 24px; }
.bento-icon.green { background: linear-gradient(135deg, #d1fae5, #a7f3d0); color: #059669; }
.bento-icon.blue { background: linear-gradient(135deg, #dbeafe, #bfdbfe); color: #2563eb; }
.bento-icon.purple { background: linear-gradient(135deg, #ede9fe, #ddd6fe); color: #7c3aed; }
.bento-icon.orange { background: linear-gradient(135deg, #ffedd5, #fed7aa); color: #d97706; }
.bento-icon.teal { background: linear-gradient(135deg, #ccfbf1, #99f6e4); color: #0d9488; }
.bento-icon.red { background: linear-gradient(135deg, #fee2e2, #fecaca); color: #dc2626; }
.bento-cell h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: .6rem; letter-spacing: -.02em; color: var(--text); }
.bento-cell > p { font-size: .875rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.1rem; }
.bento-list { list-style: none; display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.5rem; }
.bento-list li { font-size: .84rem; color: var(--text-2); display: flex; align-items: center; gap: .6rem; }
.bento-list li::before { content: '✓'; color: var(--green); font-weight: 800; flex-shrink: 0; font-size: .9rem; }
.bento-stat-row { display: flex; gap: 1.5rem; margin-top: .75rem; }
.bsr { text-align: center; background: var(--bg); border-radius: 10px; padding: .75rem 1rem; flex: 1; }
.bsr-val { display: block; font-size: 1.75rem; font-weight: 900; color: var(--text); letter-spacing: -.04em; line-height: 1; margin-bottom: .25rem; }
.bsr-lbl { font-size: .72rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.bento-platform-row { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.bpr-chip { width: 26px; height: 26px; border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: .65rem; font-weight: 900; color: #fff; flex-shrink: 0; }
.bpr-chip.g { background: #4285f4; }
.bpr-chip.f { background: #1877f2; }
.bpr-chip.i { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }
.bpr-chip.l { background: #0a66c2; }
.bpr-chip.w { background: #21759b; }
.bpr-label { font-size: .73rem; color: var(--text-muted); font-weight: 600; }
.bento-severity-row { display: flex; gap: .5rem; margin: .875rem 0; }
.bsr-pill { padding: .3rem .8rem; border-radius: 100px; font-size: .73rem; font-weight: 700; }
.bsr-pill.high { background: #fee2e2; color: #b91c1c; }
.bsr-pill.med { background: #fef3c7; color: #92400e; }
.bsr-pill.low { background: #d1fae5; color: #065f46; }
.bento-sub { font-size: .82rem; color: var(--text-muted); margin-top: .25rem !important; }
.bento-link { color: var(--primary); font-weight: 700; }
.bento-link:hover { text-decoration: underline; text-underline-offset: 2px; }
.bento-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.bento-tags span { padding: .3rem .8rem; background: var(--bg); border: 1px solid var(--border); border-radius: 100px; font-size: .76rem; font-weight: 600; color: var(--text-2); }

/* Calendar preview */
.bento-preview { margin-top: 1rem; }
.bp-calendar { background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: .875rem; }
.bp-month-row { display: grid; grid-template-columns: repeat(7,1fr); gap: .25rem; margin-bottom: .3rem; }
.bp-day { height: 26px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: .68rem; font-weight: 700; }
.bp-day.hdr { color: var(--text-muted); font-size: .65rem; }
.bp-day.post { background: #dbeafe; color: #1d4ed8; }
.bp-day.today { background: var(--primary); color: #fff; box-shadow: 0 2px 8px rgba(99,102,241,.4); }

/* Rank grid preview */
.rank-grid-preview { display: grid; grid-template-columns: repeat(3,1fr); gap: 5px; margin-top: 1rem; border-radius: 10px; overflow: hidden; }
.rg-cell { height: 34px; border-radius: 5px; }
.rg-cell.r1 { background: #d1fae5; }
.rg-cell.r2 { background: #fef9c3; }
.rg-cell.r3 { background: #fee2e2; }
.rg-cell.active { background: linear-gradient(135deg, #10b981, #059669); box-shadow: 0 0 12px rgba(16,185,129,.4); }

/* ===== HOW IT WORKS ===== */
.how-it-works { background: linear-gradient(160deg, #f0f4ff 0%, #fafbff 100%); }
.steps-row { display: flex; align-items: flex-start; gap: 0; }
.step-card {
  flex: 1; text-align: center; padding: 2.5rem 2rem;
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); box-shadow: var(--shadow-xs);
  transition: box-shadow .25s;
}
.step-card:hover { box-shadow: var(--shadow-lg); }
.step-connector { width: 64px; flex-shrink: 0; height: 2px; background: linear-gradient(90deg, var(--border), var(--primary), var(--border)); margin-top: 88px; opacity: .6; }
.step-num { font-size: 4rem; font-weight: 900; line-height: 1; margin-bottom: .5rem; background: linear-gradient(135deg, var(--primary-light), var(--primary-light)); -webkit-background-clip: text; color: rgba(99,102,241,.15); letter-spacing: -.05em; }
.step-icon { width: 60px; height: 60px; background: var(--primary-light); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
.step-icon svg { width: 26px; height: 26px; color: var(--primary); }
.step-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: .6rem; letter-spacing: -.02em; }
.step-card p { font-size: .875rem; color: var(--text-muted); line-height: 1.65; }

/* ===== ROI CALCULATOR ===== */
.roi-section { background: var(--white); }
.roi-card {
  background: linear-gradient(135deg, #0d1117 0%, #1a1f3a 100%);
  border-radius: 28px; padding: 3.5rem;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem;
  border: 1px solid rgba(255,255,255,.06); overflow: hidden; position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,.2);
}
.roi-card::before {
  content: ''; position: absolute; top: -150px; right: -150px; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(99,102,241,.3), transparent 65%); pointer-events: none;
}
.roi-card::after {
  content: ''; position: absolute; bottom: -100px; left: -100px; width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(16,185,129,.15), transparent 65%); pointer-events: none;
}
.roi-left .section-pill { background: rgba(99,102,241,.25); color: #c7d2fe; border-color: rgba(99,102,241,.3); }
.roi-left h2 { font-size: clamp(1.5rem, 2.5vw, 2.1rem); font-weight: 900; color: #fff; margin: 1rem 0 .75rem; letter-spacing: -.03em; line-height: 1.15; }
.roi-left > p { font-size: .9rem; color: rgba(255,255,255,.5); margin-bottom: 2.25rem; line-height: 1.7; }
.roi-inputs { display: flex; flex-direction: column; gap: 1.75rem; position: relative; z-index: 1; }
.roi-input-group label { display: block; font-size: .83rem; font-weight: 600; color: rgba(255,255,255,.6); margin-bottom: .75rem; }
.roi-input-group label strong { color: #c7d2fe; font-size: 1rem; }
.roi-slider { width: 100%; -webkit-appearance: none; height: 4px; border-radius: 4px; background: rgba(255,255,255,.12); outline: none; cursor: pointer; }
.roi-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border: 2px solid rgba(255,255,255,.9); cursor: pointer; box-shadow: 0 2px 12px rgba(99,102,241,.5); transition: transform .15s; }
.roi-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }
.roi-right { display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 1; }
.roi-result { display: flex; flex-direction: column; background: rgba(255,255,255,.05); border-radius: 20px; border: 1px solid rgba(255,255,255,.08); overflow: hidden; margin-bottom: 1.75rem; }
.roi-metric { text-align: center; padding: 1.75rem 1.5rem; }
.roi-divider { height: 1px; background: rgba(255,255,255,.07); }
.roi-val { display: block; font-size: 2.75rem; font-weight: 900; color: #fff; letter-spacing: -.05em; line-height: 1; margin-bottom: .35rem; }
.roi-lbl { font-size: .72rem; color: rgba(255,255,255,.45); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.roi-cta { text-align: center; justify-content: center; }

/* ===== STATS ===== */
.stats-section {
  background: linear-gradient(135deg, #1a1040 0%, #2d1f6e 50%, #1a3a6e 100%);
  padding: 5.5rem 0; position: relative; overflow: hidden;
}
.stats-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-grid-lp { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; }
.stat-item { text-align: center; color: #fff; padding: 2rem 1rem; border-radius: var(--radius); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); backdrop-filter: blur(8px); }
.stat-num { font-size: clamp(2.25rem, 4vw, 3rem); font-weight: 900; line-height: 1; margin-bottom: .5rem; letter-spacing: -.04em; }
.stat-num span { font-size: 1.5rem; opacity: .55; font-weight: 700; }
.stat-desc { font-size: .825rem; opacity: .65; font-weight: 500; line-height: 1.4; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: #030712; }
.testimonials .section-header { color: #fff; }
.testimonials .section-pill { background: rgba(99,102,241,.2); color: #c7d2fe; border-color: rgba(99,102,241,.3); }
.testimonials .section-header h2 { color: #fff; }
.testimonials .section-header p { color: rgba(255,255,255,.5); }
.testi-rating-header { margin-top: .5rem; }
.trh-stars { font-size: 1.5rem; color: #fbbf24; letter-spacing: .12em; margin-bottom: .75rem; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.testi-card {
  background: rgba(255,255,255,.04); border-radius: var(--radius);
  padding: 2rem; border: 1px solid rgba(255,255,255,.07);
  backdrop-filter: blur(12px);
  transition: border-color .25s, background .25s, transform .25s;
  position: relative; overflow: hidden;
}
.testi-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,.03), transparent); }
.testi-card:hover { border-color: rgba(99,102,241,.4); background: rgba(99,102,241,.06); transform: translateY(-4px); }
.testi-card.testi-featured {
  border-color: rgba(99,102,241,.5);
  background: rgba(99,102,241,.08);
  box-shadow: 0 0 40px rgba(99,102,241,.15), inset 0 1px 0 rgba(255,255,255,.1);
}
.testi-featured-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; padding: .3rem 1rem; border-radius: 0 0 12px 12px;
  font-size: .7rem; font-weight: 800; white-space: nowrap; letter-spacing: .04em;
}
.stars { font-size: 1rem; color: #fbbf24; margin-bottom: 1rem; letter-spacing: .1em; }
.testi-card > p { font-size: .88rem; color: rgba(255,255,255,.7); line-height: 1.75; margin-bottom: 1.5rem; position: relative; }
.testi-author { display: flex; align-items: center; gap: .75rem; }
.testi-av { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; color: #fff; font-size: .95rem; flex-shrink: 0; }
.testi-author strong { display: block; font-size: .85rem; font-weight: 700; color: #fff; }
.testi-author span { font-size: .76rem; color: rgba(255,255,255,.45); }

/* ===== COMPARISON ===== */
.comparison { background: var(--bg); }
.comp-table { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow); background: var(--white); }
.comp-table table { width: 100%; min-width: 700px; border-collapse: collapse; }
.comp-table th { padding: 1.1rem 1.25rem; font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; color: var(--text-muted); text-align: left; background: var(--bg); border-bottom: 1px solid var(--border); }
.comp-table th.comp-us { background: var(--primary); color: #fff; }
.comp-table td { padding: .9rem 1.25rem; font-size: .875rem; border-bottom: 1px solid var(--border-subtle); vertical-align: middle; color: var(--text-2); }
.comp-table tr:last-child td { border-bottom: none; }
.comp-table tbody tr:hover td { background: #fafafa; }
.comp-table tbody tr:hover td.comp-us { background: rgba(99,102,241,.06); }
.comp-table td.comp-us { background: rgba(99,102,241,.03); }
.comp-yes { color: #059669; font-weight: 700; }
.comp-no { color: #dc2626; font-weight: 500; }
.comp-mid { color: #d97706; font-weight: 500; }
.comp-note { text-align: center; margin-top: 1.5rem; font-size: .9rem; color: var(--text-muted); }
.comp-note strong { color: var(--text); }

/* ===== PRICING ===== */
.pricing { background: var(--white); }
.toggle-billing { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 3.5rem; font-size: .9rem; font-weight: 600; color: var(--text-muted); }
.toggle-billing .active { color: var(--text); }
.toggle-switch { position: relative; width: 46px; height: 26px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; inset: 0; background: var(--border); border-radius: 100px; cursor: pointer; transition: background .2s; }
.slider::before { content: ''; position: absolute; width: 20px; height: 20px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: transform .2s; box-shadow: 0 1px 4px rgba(0,0,0,.2); }
.toggle-switch input:checked + .slider { background: var(--primary); }
.toggle-switch input:checked + .slider::before { transform: translateX(20px); }
.save-badge { background: #d1fae5; color: #047857; padding: .15rem .6rem; border-radius: 100px; font-size: .7rem; font-style: normal; font-weight: 700; margin-left: .25rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; margin-bottom: 1.5rem; }
.price-card {
  background: var(--bg); border-radius: var(--radius); padding: 2.25rem;
  border: 1px solid var(--border); position: relative;
  transition: transform .25s, box-shadow .25s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price-card.popular {
  background: linear-gradient(160deg, #1a1040 0%, #1a2040 100%);
  border-color: rgba(99,102,241,.6);
  box-shadow: 0 0 0 1px rgba(99,102,241,.4), var(--shadow-xl), 0 0 60px rgba(99,102,241,.1);
  transform: scale(1.04);
  color: #fff;
}
.price-card.popular:hover { transform: scale(1.04) translateY(-4px); }
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; padding: .35rem 1.25rem; border-radius: 100px;
  font-size: .72rem; font-weight: 800; white-space: nowrap; letter-spacing: .05em;
  box-shadow: 0 4px 16px rgba(99,102,241,.5);
}
.price-name { font-size: 1.1rem; font-weight: 800; margin-bottom: .35rem; letter-spacing: -.02em; }
.price-card.popular .price-name { color: #fff; }
.price-desc { font-size: .82rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.price-card.popular .price-desc { color: rgba(255,255,255,.55); }
.price-amount { display: flex; align-items: baseline; gap: .15rem; margin-bottom: .5rem; }
.currency { font-size: 1.3rem; font-weight: 700; color: var(--text-muted); }
.price-card.popular .currency { color: rgba(255,255,255,.6); }
.amount { font-size: 3.5rem; font-weight: 900; color: var(--text); line-height: 1; letter-spacing: -.04em; }
.price-card.popular .amount { color: #fff; }
.period { font-size: .9rem; color: var(--text-muted); }
.price-card.popular .period { color: rgba(255,255,255,.5); }
.price-savings { font-size: .78rem; color: #059669; font-weight: 700; margin-bottom: 1.75rem; }
.price-card.popular .price-savings { color: #34d399; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: .7rem; margin-bottom: 2.25rem; }
.price-features li { font-size: .875rem; color: var(--text-2); display: flex; align-items: flex-start; gap: .625rem; line-height: 1.4; }
.price-card.popular .price-features li { color: rgba(255,255,255,.8); }
.price-features li.feat-muted { color: var(--text-muted); }
.price-card.popular .price-features li.feat-muted { color: rgba(255,255,255,.3); }
.check { color: var(--green); font-size: .85rem; flex-shrink: 0; margin-top: .1rem; }
.price-card.popular .check { color: #34d399; }
.price-card.popular .btn-outline-primary { border-color: rgba(255,255,255,.25); color: #fff; background: rgba(255,255,255,.08); }
.price-card.popular .btn-outline-primary:hover { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.15); }
.enterprise-row {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg); border-radius: 14px; border: 1px solid var(--border);
  padding: 1.5rem 2rem; gap: 1rem;
}
.enterprise-row strong { font-size: .95rem; font-weight: 800; display: block; margin-bottom: .2rem; }
.enterprise-row span { font-size: .85rem; color: var(--text-muted); }
.enterprise-info { display: flex; flex-direction: column; }

/* ===== FAQ ===== */
.faq-section { background: var(--bg); }
.faq-inner { max-width: 760px; }
.faq-list { display: flex; flex-direction: column; gap: .625rem; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  overflow: hidden; transition: border-color .2s, box-shadow .2s;
  background: var(--white);
}
.faq-item.open { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(99,102,241,.08); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 1.5rem; background: none; border: none; cursor: pointer;
  text-align: left; font-size: .95rem; font-weight: 700; color: var(--text);
  transition: background .15s; gap: 1rem; letter-spacing: -.01em;
}
.faq-q:hover { background: var(--bg); }
.faq-q span { flex: 1; }
.faq-icon { width: 20px; height: 20px; flex-shrink: 0; color: var(--text-muted); transition: transform .3s cubic-bezier(.34,1.56,.64,1), color .2s; }
.faq-item.open .faq-icon { transform: rotate(180deg); color: var(--primary); }
.faq-a { padding: 0 1.5rem; max-height: 0; overflow: hidden; font-size: .9rem; color: var(--text-muted); line-height: 1.75; transition: max-height .35s cubic-bezier(.4,0,.2,1), padding .35s; }
.faq-item.open .faq-a { max-height: 250px; padding: 0 1.5rem 1.5rem; }

/* ===== SEO AUDIT SECTION ===== */
.seo-audit-section { background: var(--white); }
.seo-audit-card {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 5rem;
  background: var(--white); border-radius: 28px; padding: 4rem;
  border: 1px solid var(--border); box-shadow: var(--shadow-xl);
  overflow: hidden; position: relative;
}
.seo-audit-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--primary), var(--green), var(--blue)); }
.audit-pill { background: #d1fae5; color: #047857; border-color: rgba(5,150,105,.2); }
.seo-audit-left h2 { font-size: clamp(1.6rem, 2.5vw, 2.25rem); font-weight: 900; color: var(--text); margin: 1rem 0 .875rem; letter-spacing: -.03em; line-height: 1.15; }
.seo-audit-left > p { font-size: .9rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 2rem; }
.audit-checklist { list-style: none; display: flex; flex-direction: column; gap: .75rem; margin-bottom: 2.25rem; }
.audit-checklist li { display: flex; align-items: flex-start; gap: .75rem; font-size: .875rem; color: var(--text-2); line-height: 1.5; }
.ac-icon { color: var(--green); font-weight: 800; flex-shrink: 0; margin-top: .05rem; font-size: .9rem; }
.af-input-row { display: flex; gap: .625rem; }
.af-input-row input {
  flex: 1; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: .875rem 1.125rem; font-size: .9rem; color: var(--text); outline: none;
  transition: border-color .2s, box-shadow .2s; min-width: 0; font-family: inherit;
  background: var(--bg);
}
.af-input-row input:focus { border-color: var(--primary); background: #fff; box-shadow: 0 0 0 3px rgba(99,102,241,.1); }
.af-input-row input::placeholder { color: var(--text-muted); }
.af-note { font-size: .75rem; color: var(--text-muted); margin-top: .75rem; }
.seo-audit-right { display: flex; flex-direction: column; justify-content: center; }
.audit-preview { background: #0a0d1a; border-radius: 20px; padding: 2rem; display: flex; flex-direction: column; gap: 1.5rem; box-shadow: 0 24px 60px rgba(0,0,0,.3); }
.ap-header { display: flex; align-items: center; gap: 1.5rem; }
.ap-score-ring { position: relative; flex-shrink: 0; }
.ap-score-text { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); text-align: center; }
.ap-score-num { display: block; font-size: 1.6rem; font-weight: 900; color: #fbbf24; line-height: 1; }
.ap-score-lbl { font-size: .6rem; color: rgba(255,255,255,.4); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.ap-summary { display: flex; flex-direction: column; gap: .6rem; }
.ap-sum-row { display: flex; align-items: center; gap: .6rem; font-size: .82rem; color: rgba(255,255,255,.65); }
.aps-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.aps-dot.high { background: #f87171; }
.aps-dot.med { background: #fbbf24; }
.aps-dot.low { background: #34d399; }
.ap-issues { display: flex; flex-direction: column; gap: .625rem; }
.ap-issue { display: flex; align-items: flex-start; gap: .625rem; background: rgba(255,255,255,.04); border-radius: 10px; padding: .75rem 1rem; border: 1px solid rgba(255,255,255,.06); transition: background .15s; }
.ap-issue:hover { background: rgba(255,255,255,.07); }
.api-badge { font-size: .65rem; font-weight: 800; padding: .2rem .6rem; border-radius: 100px; flex-shrink: 0; margin-top: .1rem; text-transform: uppercase; letter-spacing: .05em; }
.ap-issue.high .api-badge { background: rgba(239,68,68,.2); color: #fca5a5; }
.ap-issue.med .api-badge { background: rgba(245,158,11,.2); color: #fcd34d; }
.ap-issue.low .api-badge { background: rgba(16,185,129,.2); color: #6ee7b7; }
.api-text { font-size: .82rem; color: rgba(255,255,255,.65); line-height: 1.45; }

/* ===== CTA BANNER ===== */
.cta-banner { position: relative; background: #030712; padding: 8rem 0; text-align: center; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 900px; height: 500px; background: radial-gradient(ellipse, rgba(99,102,241,.45), transparent 65%); }
.cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-badge { display: inline-block; padding: .45rem 1.25rem; background: rgba(99,102,241,.2); color: #c7d2fe; border: 1px solid rgba(99,102,241,.35); border-radius: 100px; font-size: .8rem; font-weight: 800; margin-bottom: 1.75rem; letter-spacing: .03em; }
.cta-inner h2 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 900; color: #fff; margin-bottom: 1.25rem; letter-spacing: -.04em; line-height: 1.1; }
.cta-inner > p { font-size: 1.1rem; color: rgba(255,255,255,.55); margin-bottom: 2.5rem; line-height: 1.65; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.cta-note { font-size: .78rem; color: rgba(255,255,255,.3); letter-spacing: .02em; }

/* ===== FOOTER ===== */
.footer { background: #030712; color: rgba(255,255,255,.65); padding: 5rem 0 0; border-top: 1px solid rgba(255,255,255,.06); }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr; gap: 5rem; }
.footer-brand .brand { color: #fff; margin-bottom: 1.1rem; display: inline-flex; }
.footer-brand > p { font-size: .875rem; line-height: 1.75; max-width: 280px; margin-bottom: 1.75rem; color: rgba(255,255,255,.45); }
.footer-newsletter { margin-bottom: 2rem; }
.nl-label { font-size: .78rem; font-weight: 700; color: rgba(255,255,255,.45); margin-bottom: .75rem; text-transform: uppercase; letter-spacing: .07em; }
.nl-form { display: flex; gap: .5rem; }
.nl-form input { flex: 1; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 10px; padding: .7rem 1rem; font-size: .85rem; color: #fff; outline: none; transition: border-color .2s, background .2s; min-width: 0; font-family: inherit; }
.nl-form input::placeholder { color: rgba(255,255,255,.25); }
.nl-form input:focus { border-color: var(--primary); background: rgba(255,255,255,.09); }
.nl-form button { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; border: none; border-radius: 10px; padding: .7rem 1.1rem; font-size: .85rem; font-weight: 700; cursor: pointer; white-space: nowrap; transition: opacity .15s; }
.nl-form button:hover { opacity: .88; }
.social-links { display: flex; gap: .625rem; }
.social-links a { width: 36px; height: 36px; background: rgba(255,255,255,.06); border-radius: 9px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); transition: background .15s, color .15s; border: 1px solid rgba(255,255,255,.08); }
.social-links a svg { width: 15px; height: 15px; }
.social-links a:hover { background: var(--primary); color: #fff; border-color: transparent; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.footer-col h4 { color: rgba(255,255,255,.9); font-size: .78rem; font-weight: 800; margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: .09em; }
.footer-col a { display: block; color: rgba(255,255,255,.45); font-size: .875rem; margin-bottom: .625rem; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); margin-top: 3.5rem; padding: 1.5rem 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; }
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.25); }

/* ===== SOCIAL PROOF TOAST ===== */
.sp-toast {
  position: fixed; bottom: 5.5rem; left: 1.5rem; z-index: 800;
  background: var(--white); border-radius: 16px;
  padding: 1rem 1.1rem; display: flex; align-items: center; gap: .875rem;
  box-shadow: 0 12px 40px rgba(0,0,0,.15), 0 0 0 1px rgba(0,0,0,.05);
  max-width: 290px; font-size: .84rem;
  transform: translateX(calc(-100% - 2rem)); transition: transform .45s cubic-bezier(.34,1.56,.64,1);
}
.sp-toast.show { transform: translateX(0); }
.sp-av { width: 36px; height: 36px; border-radius: 50%; background: var(--primary); color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: .85rem; }
.sp-text strong { display: block; font-weight: 800; color: var(--text); margin-bottom: .15rem; font-size: .82rem; }
.sp-text span { color: var(--text-muted); font-size: .78rem; }
.sp-close { background: none; border: none; cursor: pointer; color: var(--text-muted); font-size: .85rem; padding: .25rem; flex-shrink: 0; transition: color .15s; line-height: 1; }
.sp-close:hover { color: var(--text); }

/* ===== STICKY MOBILE CTA ===== */
.sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  padding: 1rem 1.25rem; background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px) saturate(1.5);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 32px rgba(0,0,0,.1);
  transform: translateY(100%); transition: transform .3s cubic-bezier(.16,1,.3,1);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta a { width: 100%; justify-content: center; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-large { grid-column: span 2; }
  .bento-wide { grid-column: span 2; }
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-right { display: none; }
  .hero-left { max-width: 660px; margin: 0 auto; text-align: center; }
  .hero-sub { max-width: 100%; }
  .hero-cta { justify-content: center; }
  .hero-platforms { justify-content: center; }
  .hero-trust { justify-content: center; }
  .ps-grid { grid-template-columns: 1fr; }
  .ps-arrow { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto 1.5rem; }
  .price-card.popular { transform: none; }
  .price-card.popular:hover { transform: translateY(-4px); }
  .stats-grid-lp { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 3rem; }
  .roi-card { grid-template-columns: 1fr; gap: 2.5rem; }
  .steps-row { flex-direction: column; align-items: center; }
  .step-connector { width: 2px; height: 40px; margin: 0; background: linear-gradient(180deg, var(--border), var(--primary), var(--border)); }
  .step-card { max-width: 420px; width: 100%; }
  .seo-audit-card { grid-template-columns: 1fr; gap: 2.5rem; padding: 2.5rem; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 70px; left: 0; right: 0;
    background: rgba(255,255,255,.97); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 1.5rem; z-index: 850; gap: .25rem;
    box-shadow: 0 12px 40px rgba(0,0,0,.08);
  }
  .nav-links.open .nav-mobile-actions { display: flex; flex-direction: column; gap: .625rem; padding-top: 1.1rem; border-top: 1px solid var(--border); margin-top: .625rem; }
  .hamburger { display: flex; margin-left: auto; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-large, .bento-wide { grid-column: span 1; }
  .testi-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .comp-table th, .comp-table td { padding: .7rem .875rem; font-size: .78rem; }
  .seo-audit-right { display: none; }
  .af-input-row { flex-direction: column; }
  .trust-inner { gap: 1.25rem; }
  .trust-sep { display: none; }
  .ann-bar { font-size: .78rem; }
  .sticky-cta { display: flex; }
  .sp-toast { bottom: 5.25rem; }
  .enterprise-row { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .section { padding: 5rem 0; }
  .roi-card { padding: 2.25rem; }
}

@media (max-width: 480px) {
  .hero { padding: 6rem 0 4rem; }
  .stats-grid-lp { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .stat-item { padding: 1.5rem .75rem; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions a { justify-content: center; text-align: center; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta a { justify-content: center; text-align: center; }
  .nl-form { flex-direction: column; }
  .seo-audit-card { padding: 1.75rem; }
}

/* ===== DEMO TEXT BUTTON ===== */
.demo-text-btn {
  background: none; border: none; padding: 0; cursor: pointer;
  color: rgba(255,255,255,.55); font-size: inherit; font-weight: 600;
  transition: color .15s; text-decoration: underline; text-underline-offset: 3px;
}
.demo-text-btn:hover { color: rgba(255,255,255,.9); }

/* ===== DEMO MODAL ===== */
.demo-modal {
  display: none; position: fixed; inset: 0; z-index: 2000;
  align-items: center; justify-content: center;
}
.demo-modal.open { display: flex; }
.demo-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.78); backdrop-filter: blur(6px);
}
.demo-card {
  position: relative; background: #fff; border-radius: 18px;
  width: min(760px, 94vw); overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,.35);
  animation: modalIn .25s cubic-bezier(.16,1,.3,1);
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(.93) translateY(16px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.demo-close {
  position: absolute; top: .875rem; right: .875rem; z-index: 1;
  width: 32px; height: 32px; border-radius: 50%; border: none;
  background: rgba(0,0,0,.12); color: #333; cursor: pointer;
  font-size: .95rem; display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.demo-close:hover { background: rgba(0,0,0,.22); }
.demo-video-wrap {
  aspect-ratio: 16/9; background: #0a0d1a;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 1rem;
}
.demo-placeholder { display: flex; flex-direction: column; align-items: center; gap: .75rem; }
.demo-play-ring {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex; align-items: center; justify-content: center; color: #fff;
  cursor: pointer; box-shadow: 0 0 0 0 rgba(99,102,241,.4);
  animation: pulse 2s ease-in-out infinite;
  padding-left: 4px;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(99,102,241,.4); }
  50%       { box-shadow: 0 0 0 18px rgba(99,102,241,0); }
}
.demo-placeholder-label { color: rgba(255,255,255,.75); font-weight: 600; font-size: .95rem; }
.demo-placeholder-sub   { color: rgba(255,255,255,.3); font-size: .78rem; }
.demo-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.5rem; background: #f8fafc; border-top: 1px solid var(--border);
}
.demo-footer-txt { font-size: .9rem; color: var(--text-muted); }

/* ===== EXIT INTENT POPUP ===== */
.exit-popup {
  display: none; position: fixed; inset: 0; z-index: 1900;
  align-items: center; justify-content: center;
}
.exit-popup.open { display: flex; }
.exit-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.65); backdrop-filter: blur(4px);
}
.exit-card {
  position: relative; background: #fff; border-radius: 20px;
  padding: 2.5rem 2rem; width: min(460px, 94vw); text-align: center;
  box-shadow: 0 40px 80px rgba(0,0,0,.25);
  animation: modalIn .25s cubic-bezier(.16,1,.3,1);
}
.exit-close {
  position: absolute; top: 1rem; right: 1rem; background: none; border: none;
  font-size: 1.1rem; color: var(--text-muted); cursor: pointer; padding: .25rem .5rem;
  transition: color .15s; line-height: 1;
}
.exit-close:hover { color: var(--text); }
.exit-emoji { font-size: 2.5rem; margin-bottom: .5rem; }
.exit-title { font-size: 1.25rem; font-weight: 800; margin-bottom: .5rem; color: var(--text); }
.exit-sub   { color: var(--text-muted); font-size: .93rem; margin-bottom: 1.5rem; }
.exit-form  { display: flex; flex-direction: column; gap: .75rem; }
.exit-input {
  padding: .8rem 1rem; border: 1px solid var(--border); border-radius: 10px;
  font-size: .95rem; font-family: inherit; outline: none; transition: border-color .15s, box-shadow .15s;
}
.exit-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(99,102,241,.1); }
.exit-form .btn-primary { justify-content: center; }
.exit-thanks { color: var(--green); font-weight: 600; font-size: 1rem; padding: 1rem 0; }
.exit-fine   { font-size: .76rem; color: var(--text-muted); margin-top: .75rem; }

/* ===== GUARANTEE BADGE ===== */
.guarantee-row { display: flex; justify-content: center; margin: 2rem 0 1.5rem; }
.guarantee-badge {
  display: flex; align-items: center; gap: 1rem;
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border: 1px solid #86efac; border-radius: 14px; padding: 1rem 1.75rem;
  max-width: 520px; width: 100%;
}
.guarantee-badge svg { color: #16a34a; flex-shrink: 0; }
.guarantee-text strong { display: block; color: #15803d; font-size: .95rem; font-weight: 700; margin-bottom: .2rem; }
.guarantee-text span   { font-size: .82rem; color: #166534; }
