/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0b0d12;
  --bg2:       #0f1118;
  --bg3:       #161922;
  --line:      rgba(255,255,255,0.07);
  --line2:     rgba(255,255,255,0.12);
  --text:      #f3f4f6;
  --muted:     #c0c0c8;
  --purple:    #818cf8;
  --purple-d:  #6366f1;
  --violet:    #a78bfa;
  --green:     #34d399;
  --red:       #f87171;
  --yellow:    #fbbf24;
  --font:      'Roboto Slab', Georgia, serif;
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

main {
  overflow: hidden;
  width: 100%;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ─── SCROLL ANIMATION ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.load-anim {
  opacity: 0;
  animation: loadAnim 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--delay, 0s);
  will-change: opacity, transform;
}

@keyframes loadAnim {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ─── NAV ──────────────────────────────────────────────────── */
.nav-wrap {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 200;
  transition: background .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav-wrap.solid {
  background: rgba(11,13,18,.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.logo-svg { width: 34px; height: 34px; }

/* Nav links */
.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  font-size: .875rem;
  font-weight: 400;
  color: var(--muted);
  transition: color .2s;
}
.nav-link:hover { color: var(--text); }

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.drawer-login { font-size: 1.25rem; }
.drawer-cta { width: 100%; text-align: center; font-size: 1.1rem; padding: 14px; }

/* ─── BUTTONS ──────────────────────────────────────────────── */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--purple-d);
  color: #fff;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: .875rem;
  font-weight: 500;
  font-family: var(--font);
  border: none;
  cursor: pointer;
  transition: opacity .2s, transform .2s;
  white-space: nowrap;
}
.btn-pill:hover { opacity: .85; transform: translateY(-1px); }
.btn-pill:active { transform: none; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  font-size: .875rem;
  font-weight: 400;
  font-family: var(--font);
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  transition: color .2s;
  white-space: nowrap;
}
.btn-ghost:hover { color: var(--text); }

.btn-lg { padding: 13px 28px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ─── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 140px 0 80px;
}
.hero-glow {
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: min(700px, 120vw);
  height: min(700px, 120vw);
  background: radial-gradient(circle, rgba(99,102,241,.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-grid-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 80%);
  mask-image: radial-gradient(ellipse at 50% 0%, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 80%);
  opacity: 0;
  animation: gridFadeIn 2s ease-out 0.2s forwards;
}

@keyframes gridFadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.hero-grid {
  position: absolute;
  inset: -100vw;
  top: 0;
  background-size: 60px 60px;
  background-position: center top;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  transform: perspective(1000px) rotateX(70deg) translateY(-200px);
  transform-origin: top center;
}

/* Electrons */
.electron {
  position: absolute;
  z-index: 1;
  opacity: 0;
}
.e-horiz {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet), transparent);
  box-shadow: 0 0 15px 2px var(--purple);
}
.e-vert {
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--violet), transparent);
  box-shadow: 0 0 15px 2px var(--purple);
}

.e-1 { width: 400px; top: 120px; left: calc(50% - 240px); animation: flyRight 12s linear infinite 1s; }
.e-2 { height: 500px; left: calc(50% - 150px); top: 60px; animation: flyUp 14s linear infinite 0s; }
.e-3 { width: 500px; top: 300px; left: calc(50% + 180px); animation: flyLeft 14s linear infinite 2s; }
.e-4 { height: 600px; left: calc(50% + 210px); top: 120px; animation: flyDown 16s linear infinite 0.5s; }
.e-5 { width: 450px; top: 480px; left: calc(50% - 60px); animation: flyRight 10s linear infinite 1.5s; }

@keyframes flyRight {
  0% { transform: translateX(-100vw); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateX(100vw); opacity: 0; }
}
@keyframes flyLeft {
  0% { transform: translateX(100vw); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateX(-100vw); opacity: 0; }
}
@keyframes flyDown {
  0% { transform: translateY(-100vh); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(100vh); opacity: 0; }
}
@keyframes flyUp {
  0% { transform: translateY(100vh); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100vh); opacity: 0; }
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border: 1px solid var(--line2);
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 400;
  color: var(--muted);
  margin-bottom: 28px;
}
.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  flex-shrink: 0;
}

.hero-title {
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.01em;
  margin-bottom: 20px;
}

.grad {
  background: linear-gradient(120deg, var(--purple), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.grad-green { color: var(--green); }

.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 36px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
}

.hero-scroll {
  display: flex;
  justify-content: center;
  margin-bottom: 56px;
}
.mouse {
  width: 24px;
  height: 36px;
  border: 2px solid var(--muted);
  border-radius: 12px;
  position: relative;
  opacity: 0.6;
}
.mouse::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--muted);
  border-radius: 50%;
  animation: scrollWheel 2s infinite;
}
@keyframes scrollWheel {
  0% { top: 6px; opacity: 1; }
  100% { top: 18px; opacity: 0; }
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 32px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.02);
  margin-bottom: 56px;
  flex-wrap: wrap;
  justify-content: center;
}
.stat { display: flex; flex-direction: column; align-items: center; }
.stat strong { font-size: 1.25rem; font-weight: 500; }
.stat span { font-size: .8rem; color: var(--muted); font-weight: 300; }
.stat-sep { width: 1px; height: 32px; background: var(--line); }

/* Terminal */
.terminal {
  width: 100%;
  max-width: 600px;
  background: var(--bg3);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
  font-family: 'Courier New', monospace;
}
.terminal-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  background: var(--bg2);
}
.dot-red   { width:10px;height:10px;border-radius:50%;background:#f87171;flex-shrink:0; }
.dot-yellow{ width:10px;height:10px;border-radius:50%;background:#fbbf24;flex-shrink:0; }
.dot-green { width:10px;height:10px;border-radius:50%;background:#34d399;flex-shrink:0; }
.terminal-title {
  margin-left: 6px;
  font-size: .75rem;
  color: var(--muted);
  font-family: var(--font);
}
.terminal-body { padding: 16px 18px; display: flex; flex-direction: column; gap: 6px; }
.tline { font-size: .82rem; color: var(--text); }
.t-dim  { color: var(--muted); }
.t-cmd  { color: var(--purple); }
.t-str  { color: var(--green); }
.t-green{ color: var(--green); }
.t-muted{ color: var(--muted); }

.progress-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
  margin-bottom: 4px;
}
.progress-wrap {
  flex: 1;
  height: 4px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
}
.pct-text {
  font-size: .82rem;
  font-family: 'Courier New', monospace;
  min-width: 32px;
  text-align: right;
}
.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--purple-d), var(--violet));
  border-radius: 2px;
  transition: width .1s linear;
}

/* ─── SECTION BASE ─────────────────────────────────────────── */
.section { 
  position: relative;
  padding: 64px 0;
  background: transparent;
  border: none;
}
.section .container {
  position: relative;
  z-index: 1;
}

.label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 14px;
}

.sec-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -.01em;
  margin-bottom: 48px;
}

/* ─── STEPS ────────────────────────────────────────────────── */
.steps {
  display: flex;
  align-items: stretch;
  gap: 16px;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 180px;
  padding: 28px 24px;
  background: var(--bg3);
  border: 1px solid var(--line);
  border-radius: 12px;
  position: relative;
  transition: border-color .25s, transform .25s;
}
.step:hover { border-color: var(--line2); transform: translateY(-3px); }

.step-num {
  position: absolute;
  top: 16px; right: 18px;
  font-size: 2rem;
  font-weight: 300;
  color: rgba(255,255,255,.04);
  line-height: 1;
}
.step-ico { font-size: 1.5rem; margin-bottom: 14px; }
.step h3  { font-size: 1rem; font-weight: 500; margin-bottom: 8px; }
.step p   { font-size: .875rem; font-weight: 300; color: var(--muted); }

.step-arrow {
  color: var(--line2);
  font-size: 1.25rem;
  align-self: center;
  flex-shrink: 0;
}

/* ─── FEATURES ─────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feat-wide { grid-column: span 2; }

.feat-card {
  padding: 28px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color .25s, transform .25s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feat-card:hover { border-color: var(--line2); transform: translateY(-2px); }
.feat-ico { font-size: 1.5rem; }
.feat-card h3 { font-size: 1rem; font-weight: 500; }
.feat-card p  { font-size: .875rem; font-weight: 300; color: var(--muted); flex: 1; }

.code-block {
  margin-top: 6px;
  background: var(--bg3);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: 'Courier New', monospace;
  font-size: .78rem;
  line-height: 1.8;
}
.c-dim    { color: var(--muted); }
.c-cmd    { color: var(--purple); }
.c-str    { color: var(--green); }
.c-green  { color: var(--green); }

.chips { display: flex; gap: 8px; margin-top: 6px; }
.chip  {
  padding: 4px 12px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 500;
  font-family: var(--font);
}
.chip-green  { background: rgba(52,211,153,.1);  color: var(--green);  border: 1px solid rgba(52,211,153,.2); }
.chip-purple { background: rgba(129,140,248,.1); color: var(--purple); border: 1px solid rgba(129,140,248,.2); }

/* ─── COMPARISON ───────────────────────────────────────────── */
.compare-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.compare-col {
  flex: 1;
  padding: 36px 32px;
  border-radius: 16px;
  border: 1px solid var(--line);
}
.compare-col--aff  { 
  background: rgba(99,102,241,.04); 
  border-color: rgba(99,102,241,.3);
  box-shadow: 0 10px 40px -10px rgba(99,102,241,.15);
  transform: scale(1.03);
  z-index: 2;
}
.compare-col--trad { 
  background: var(--bg3); 
  opacity: 0.6;
}

.compare-head { margin-bottom: 24px; }
.compare-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 500;
  background: rgba(99,102,241,.15);
  color: var(--purple);
  border: 1px solid rgba(99,102,241,.25);
}
.compare-badge--gray {
  background: rgba(255,255,255,.05);
  color: var(--text);
  border-color: var(--line);
}

.compare-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: .85rem;
  font-weight: 500;
  color: var(--muted);
  flex-shrink: 0;
  background: var(--bg3);
  border: 1px solid var(--line);
  z-index: 1;
}

.compare-col ul { display: flex; flex-direction: column; gap: 20px; }
.compare-col li { display: flex; align-items: flex-start; gap: 14px; }
.compare-col li div { display: flex; flex-direction: column; }
.compare-col li strong { font-size: 1rem; font-weight: 500; line-height: 1.3; color: var(--text); }
.compare-col li span  { font-size: .85rem; color: var(--muted); font-weight: 300; margin-top: 2px; }

.ic-good { color: var(--green); font-weight: 600; flex-shrink: 0; }
.ic-bad  { color: var(--red);   font-weight: 600; flex-shrink: 0; }

/* ─── AUDIENCE ─────────────────────────────────────────────── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.aud-card {
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color .25s, transform .25s;
}
.aud-card:hover { border-color: var(--line2); transform: translateY(-3px); }
.aud-ico { font-size: 1.5rem; margin-bottom: 14px; }
.aud-card h3 { font-size: 1rem; font-weight: 500; margin-bottom: 8px; }
.aud-card p  { font-size: .875rem; font-weight: 300; color: var(--muted); }

/* ─── PRICING ──────────────────────────────────────────────── */
.pricing-wrap {
  display: flex;
  justify-content: center;
}
.pricing-card {
  width: 100%;
  max-width: 440px;
  border: 1px solid rgba(99,102,241,.25);
  border-radius: 16px;
  overflow: hidden;
}
.pricing-top {
  padding: 36px 36px 28px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  background: rgba(99,102,241,.04);
}
.pricing-name { font-size: .875rem; color: var(--muted); font-weight: 400; margin-bottom: 16px; }
.pricing-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  margin-bottom: 6px;
}
.price-currency { font-size: 1.5rem; font-weight: 500; margin-top: 8px; }
.price-num      { font-size: 4rem;   font-weight: 600; line-height: 1; }
.pricing-note   { font-size: .8rem;  color: var(--green); font-weight: 400; }

.pricing-list {
  padding: 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-bottom: 1px solid var(--line);
}
.pricing-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  font-weight: 300;
}
.pcheck { color: var(--purple); font-weight: 500; flex-shrink: 0; }

.pricing-card .btn-pill {
  display: block;
  margin: 24px 36px 0;
  border-radius: 8px;
}
.pricing-foot {
  text-align: center;
  font-size: .78rem;
  color: var(--muted);
  padding: 14px 36px 24px;
}

/* ─── FAQ ──────────────────────────────────────────────────── */
.faq-section {
  position: relative;
}
.faq-bg-glow {
  position: absolute;
  top: 20%;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(129,140,248,.06) 0%, transparent 70%);
  pointer-events: none;
}

.faq-header {
  margin-bottom: 52px;
}
.faq-header .sec-title {
  margin-bottom: 12px;
  max-width: none;
}
.faq-intro {
  font-size: .95rem;
  color: var(--muted);
  font-weight: 300;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: stretch;
}

.faq-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,.015);
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  transition: background .2s;
}
.faq-q:hover { background: rgba(255,255,255,.025); }
.faq-q span:not(.faq-icon) { flex: 1; }

.faq-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}

.faq-arrow {
  width: 16px; height: 16px;
  stroke: var(--muted);
  flex-shrink: 0;
  margin-left: auto;
  transition: transform .35s var(--ease);
}
.faq-q[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); }
.faq-q[aria-expanded="true"] { background: rgba(99,102,241,.04); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.faq-a p {
  padding: 4px 24px 22px 66px;
  font-size: .9rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
}

/* FAQ Aside */
.faq-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 88px;
}

.faq-contact-card {
  padding: 40px 32px;
  background: radial-gradient(circle at top right, rgba(99,102,241,.12), rgba(99,102,241,.04));
  border: 1px solid rgba(99,102,241,.2);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  flex: 1;
  position: relative;
  overflow: hidden;
}
.faq-contact-card::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 150px; height: 150px;
  background: var(--purple);
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
}
.faq-contact-icon { font-size: 2.2rem; margin-bottom: 4px; }
.faq-contact-card h3 { font-size: 1.25rem; font-weight: 500; }
.faq-contact-card p { font-size: .95rem; color: var(--muted); font-weight: 300; line-height: 1.6; max-width: 240px; }
.faq-contact-card .btn-pill { margin-top: 12px; font-size: .95rem; padding: 12px 28px; }

.faq-stat-card {
  padding: 24px 28px;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}
.faq-stat-num {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--purple);
  letter-spacing: -.01em;
}
.faq-stat-label {
  font-size: .8rem;
  color: var(--muted);
  font-weight: 300;
  text-align: right;
}
.faq-stat-divider {
  height: 1px;
  background: var(--line);
}


/* ─── FINAL CTA ────────────────────────────────────────────── */
.cta-section {
  text-align: center;
  position: relative;
  padding: 80px 0;
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: min(600px, 90vw);
  height: min(600px, 90vw);
  background: radial-gradient(circle, rgba(99,102,241,.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 0; }
.cta-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 500;
  margin-bottom: 14px;
}
.cta-sub  { font-size: 1rem; color: var(--muted); font-weight: 300; margin-bottom: 32px; }
.cta-foot { font-size: .8rem; color: var(--muted); margin-top: 14px; }

/* ─── FOOTER ───────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--line);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-links a {
  font-size: .8rem;
  font-weight: 300;
  color: var(--muted);
  transition: color .2s;
}
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: .8rem; color: var(--muted); font-weight: 300; }

/* ─── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .feat-wide { grid-column: span 2; }

  .audience-grid { grid-template-columns: 1fr 1fr; }

  .compare-wrap { flex-direction: column; }
  .compare-vs { padding: 12px 0; border: none; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .compare-col--trad { border-left: none; border-top: 1px solid var(--line); }

  .faq-grid { grid-template-columns: 1fr; }
  .faq-aside { position: static; flex-direction: row; flex-wrap: wrap; }
  .faq-contact-card, .faq-stat-card { flex: 1; min-width: 280px; }
}

@media (max-width: 640px) {
  .nav-actions { gap: 8px; }
  .nav-actions .btn-ghost, .nav-actions .btn-pill { padding: 8px 12px; font-size: .8rem; }
  .section { padding: 40px 0; }
  .cta-section { padding: 50px 0; }
  .hero { padding: 110px 0 60px; }
  .hero-stats { gap: 16px; padding: 14px 20px; }
  .stat-sep { display: none; }

  .steps { flex-direction: column; }
  .step-arrow { display: none; }
  .step { min-width: 100%; }

  .features-grid { grid-template-columns: 1fr; }
  .feat-wide { grid-column: span 1; }

  .audience-grid { grid-template-columns: 1fr 1fr; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { gap: 14px; }

  .faq-aside { flex-direction: column; }
  .faq-a p { padding-left: 24px; }
}

@media (max-width: 420px) {
  .audience-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 1.8rem; }
  .compare-col { padding: 24px 18px; }
}
