/* ═══════════════════════════════════════════════════════════
   Autoli — Landing page
   Single CSS file. No frameworks. Indigo-violet brand.
   ═══════════════════════════════════════════════════════════ */

* { box-sizing: border-box; }

:root {
  --primary: #4F46E5;
  --primary-2: #7c3aed;
  --primary-soft: #eef2ff;
  --bg: #ffffff;
  --bg-soft: #fafafa;
  --bg-card: #ffffff;
  --text: #0b0d12;
  --text-mid: #374151;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --border-soft: #f1f3f7;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 24px 60px rgba(79, 70, 229, 0.18);
  --max: 1180px;
}

html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 11px;
  background: var(--primary-soft);
  color: var(--primary);
  border: 1px solid color-mix(in srgb, var(--primary) 16%, transparent);
  border-radius: 999px;
  font-size: 12.5px; font-weight: 500;
  letter-spacing: 0;
}
.eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 20%, transparent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

.grad {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ───────── Buttons ───────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 14px; font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: transform 120ms ease, background 150ms ease, border-color 150ms ease, box-shadow 150ms ease, color 150ms ease;
  white-space: nowrap;
}
.btn-lg { padding: 13px 22px; font-size: 15px; border-radius: 12px; }
.btn-block { width: 100%; }
.btn-primary {
  background: var(--text); color: #fff;
}
.btn-primary:hover { background: #1f2937; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,0.18); }
.btn-outline {
  background: var(--bg-card);
  color: var(--text); border-color: var(--border);
}
.btn-outline:hover { border-color: var(--text); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--text-mid);
}
.btn-ghost:hover { color: var(--text); background: var(--bg-soft); }

/* ───────── Nav ───────── */
.nav {
  position: sticky; top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease, background 200ms ease;
}
.nav.scrolled {
  border-bottom-color: var(--border);
  background: rgba(255, 255, 255, 0.95);
}
.nav-row {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 19px; letter-spacing: -0.015em;
  color: var(--text);
}
.brand img { width: 36px; height: 36px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 14px; color: var(--text-mid); font-weight: 500;
  transition: color 120ms ease;
}
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; gap: 8px; align-items: center; }
.nav-burger {
  display: none;
  width: 40px; height: 40px; padding: 0; gap: 4px;
  flex-direction: column; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--border); border-radius: 9px;
  cursor: pointer;
}
.nav-burger span {
  display: block; width: 18px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform 200ms;
}

/* ───────── Scroll progress bar ───────── */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  transform: scaleX(0); transform-origin: 0 50%;
  z-index: 100;
  transition: transform 80ms linear;
  box-shadow: 0 0 8px rgba(124, 58, 237, 0.6);
}

/* ───────── Hero ───────── */
.hero {
  position: relative;
  padding: 64px 0 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 800px 400px at 20% 0%, rgba(79, 70, 229, 0.13), transparent 60%),
    radial-gradient(ellipse 800px 400px at 100% 30%, rgba(124, 58, 237, 0.10), transparent 60%);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000, transparent);
  opacity: 0.7;
  transform: translateY(var(--parallax-y, 0));
  will-change: transform;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  pointer-events: none;
  will-change: transform;
}
.orb-1 {
  width: 380px; height: 380px;
  top: -80px; left: 8%;
  background: radial-gradient(circle, #a78bfa, transparent 70%);
  animation: orbFloat1 18s ease-in-out infinite;
}
.orb-2 {
  width: 420px; height: 420px;
  top: 100px; right: 5%;
  background: radial-gradient(circle, #818cf8, transparent 70%);
  animation: orbFloat2 22s ease-in-out infinite;
}
.orb-3 {
  width: 280px; height: 280px;
  top: 380px; left: 45%;
  background: radial-gradient(circle, #c4b5fd, transparent 70%);
  animation: orbFloat3 26s ease-in-out infinite;
}
@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, 40px) scale(1.1); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, 70px) scale(1.05); }
}
@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -50px) scale(0.9); }
}
.hero-inner { text-align: center; position: relative; }
.hero-title {
  margin: 22px 0 18px;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.hero-sub {
  max-width: 640px; margin: 0 auto 30px;
  color: var(--text-mid);
  font-size: clamp(15px, 2vw, 18px);
}
.hero-ctas { display: inline-flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.hero-trust {
  margin-top: 22px;
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 13px; color: var(--text-muted);
}
.hero-stars {
  display: inline-flex; align-items: center; gap: 2px;
  color: #f59e0b;
}
.hero-stars svg { width: 14px; height: 14px; fill: currentColor; }
.hero-stars strong { color: var(--text); margin-left: 6px; font-weight: 600; }

.hero-mock {
  margin-top: 60px;
  perspective: 1600px;
}
.mock-window {
  margin: 0 auto;
  max-width: 980px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: rotateX(2deg);
  transition: transform 400ms ease;
}
.mock-window:hover { transform: rotateX(0); }
.mock-chrome {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 16px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}
.mock-chrome span {
  width: 11px; height: 11px;
  border-radius: 50%; background: var(--border);
}
.mock-chrome span:nth-child(1) { background: #ef4444; }
.mock-chrome span:nth-child(2) { background: #f59e0b; }
.mock-chrome span:nth-child(3) { background: #10b981; }
.mock-body {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 360px;
}
.mock-side {
  background: var(--bg-soft);
  border-right: 1px solid var(--border);
  padding: 16px 12px;
  display: flex; flex-direction: column; gap: 4px;
  text-align: left;
}
.mock-side-row {
  display: flex; align-items: center; gap: 9px;
  padding: 8px 10px;
  font-size: 13px; color: var(--text-mid); font-weight: 500;
  border-radius: 7px;
}
.mock-side-row.active { background: var(--bg-card); color: var(--text); border: 1px solid var(--border); }
.mock-dot { width: 6px; height: 6px; background: var(--text-muted); border-radius: 50%; }
.mock-side-row.active .mock-dot { background: var(--primary); }
.mock-main {
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 14px;
  align-items: start;
  text-align: left;
}
.mock-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}
.mock-card-title { font-size: 12px; color: var(--text-muted); font-weight: 500; }
.mock-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 14px 0 18px;
}
.mock-stats > div { display: flex; flex-direction: column; }
.mock-stats strong { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; }
.mock-stats span { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.mock-bars {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  height: 80px;
  align-items: end;
}
.mock-bars i {
  display: block;
  background: linear-gradient(180deg, var(--primary), var(--primary-2));
  border-radius: 4px 4px 0 0;
  height: var(--h, 50%);
  opacity: 0.85;
  animation: barGrow 800ms ease-out backwards;
}
.mock-bars i:nth-child(1) { animation-delay: 0.05s; }
.mock-bars i:nth-child(2) { animation-delay: 0.10s; }
.mock-bars i:nth-child(3) { animation-delay: 0.15s; }
.mock-bars i:nth-child(4) { animation-delay: 0.20s; }
.mock-bars i:nth-child(5) { animation-delay: 0.25s; }
.mock-bars i:nth-child(6) { animation-delay: 0.30s; }
.mock-bars i:nth-child(7) { animation-delay: 0.35s; }
@keyframes barGrow { from { transform: scaleY(0); transform-origin: bottom; } }

.mock-card-mini {
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  min-height: 200px;
}
.mock-mini-title { font-size: 11px; color: var(--text-muted); margin-bottom: 12px; }
.mock-mini-sub { font-size: 12px; color: var(--text-mid); margin-top: 8px; }
.mock-pulse {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.6);
  animation: callPulse 1.6s ease-out infinite;
}
@keyframes callPulse {
  0% { box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.5); }
  100% { box-shadow: 0 0 0 30px rgba(79, 70, 229, 0); }
}

/* ───────── Logos strip ───────── */
.logos {
  padding: 36px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.logos-title {
  text-align: center; margin: 0 0 18px;
  font-size: 12.5px; color: var(--text-muted);
  letter-spacing: 0.04em;
}
.logos-row {
  display: flex; justify-content: space-around; align-items: center;
  flex-wrap: wrap; gap: 24px;
  font-weight: 700; font-size: 18px;
  color: #9ca3af;
  letter-spacing: -0.01em;
}
.logos-row span { transition: color 200ms; opacity: 0.85; }
.logos-row span:hover { color: var(--text-mid); opacity: 1; }

/* ───────── Sections ───────── */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 56px; }
.section-head h2 {
  margin: 16px 0 14px;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800; letter-spacing: -0.025em; line-height: 1.1;
}
.section-head p { color: var(--text-mid); font-size: 16px; }

/* ───────── Features ───────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 16px;
}
.feature-card {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 200ms ease, border-color 200ms, box-shadow 200ms;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}
.feature-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 11px;
  margin-bottom: 16px;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-card h3 {
  margin: 0 0 8px;
  font-size: 17px; font-weight: 700;
  letter-spacing: -0.01em;
}
.feature-card p {
  margin: 0; color: var(--text-mid);
  font-size: 14px; line-height: 1.6;
}

/* ───────── Steps ───────── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  position: relative;
}
.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.step h3 {
  margin: 0 0 8px;
  font-size: 18px; font-weight: 700;
  letter-spacing: -0.01em;
}
.step p { margin: 0; color: var(--text-mid); font-size: 14.5px; line-height: 1.6; }

/* ───────── Showcase ───────── */
.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.showcase h2 {
  margin: 16px 0 16px;
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 800; letter-spacing: -0.025em; line-height: 1.15;
}
.showcase-text > p { color: var(--text-mid); font-size: 15.5px; margin-bottom: 22px; }
.showcase-list {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.showcase-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14.5px; color: var(--text-mid);
}
.check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--primary) 12%, transparent);
  position: relative; flex-shrink: 0;
}
.check::after {
  content: ''; width: 8px; height: 4px;
  border-left: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(-45deg) translate(1px, -1px);
}

.showcase-mock { display: flex; justify-content: center; perspective: 1400px; }
.phone-mock {
  position: relative;
  width: 290px; height: 596px;
  background:
    linear-gradient(145deg, #1f2937 0%, #0b0d12 100%);
  border-radius: 50px;
  padding: 8px;
  box-shadow:
    0 40px 80px rgba(15, 23, 42, 0.35),
    0 12px 24px rgba(15, 23, 42, 0.20),
    inset 0 0 0 1.5px rgba(255,255,255,0.06),
    inset 0 0 0 4px #0b0d12;
  transform: rotateY(-8deg) rotateX(4deg);
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}
.phone-mock:hover { transform: rotateY(0) rotateX(0); }
/* Side buttons */
.phone-mock::before, .phone-mock::after {
  content: '';
  position: absolute;
  background: #1a202d;
  border-radius: 2px;
}
.phone-mock::before {
  left: -2px; top: 110px; width: 3px; height: 30px;
  box-shadow: 0 50px 0 #1a202d, 0 92px 0 #1a202d;
}
.phone-mock::after {
  right: -2px; top: 140px; width: 3px; height: 60px;
}

.phone-notch {
  position: absolute;
  top: 14px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 26px;
  background: #000;
  border-radius: 0 0 18px 18px;
  z-index: 3;
}
.phone-notch::after {
  content: '';
  position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  width: 6px; height: 6px;
  background: #1a1f2b;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

.phone-screen {
  width: 100%; height: 100%;
  background:
    radial-gradient(circle at 50% 0%, rgba(124, 58, 237, 0.22), transparent 65%),
    linear-gradient(180deg, #14171f 0%, #0b0d12 70%);
  border-radius: 44px;
  overflow: hidden;
  position: relative;
  color: #fff;
}
.phone-status {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 30px 0;
  font-size: 13.5px; font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.phone-status::after {
  content: '·····';
  letter-spacing: -2px;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}
.phone-call {
  display: flex; flex-direction: column; align-items: center;
  padding: 52px 24px 34px;
  height: calc(100% - 20px);
}
.phone-call-state {
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
}
.phone-avatar {
  width: 96px; height: 96px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 38px; font-weight: 700; color: #fff;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 16px 40px rgba(79, 70, 229, 0.40), inset 0 1px 0 rgba(255,255,255,0.18);
}
.phone-avatar::before, .phone-avatar::after {
  content: '';
  position: absolute; inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(124, 58, 237, 0.55);
  animation: ringPulse 2s ease-out infinite;
  pointer-events: none;
}
.phone-avatar::after { animation-delay: 1s; }
@keyframes ringPulse {
  0%   { transform: scale(0.95); opacity: 0.9; }
  100% { transform: scale(1.55); opacity: 0; }
}
.phone-name { font-size: 21px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 4px; }
.phone-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.5px; color: rgba(255,255,255,0.55);
  margin-bottom: 22px; letter-spacing: 0.02em;
}
.phone-bars {
  display: flex; gap: 4px; align-items: end;
  height: 24px;
  margin-bottom: 14px;
}
.phone-bars i {
  display: block; width: 4px;
  background: linear-gradient(180deg, #c4b5fd, #8b5cf6);
  border-radius: 2px;
  animation: bar 1.2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(167, 139, 250, 0.5);
}
.phone-bars i:nth-child(1) { height: 30%; animation-delay: 0.0s; }
.phone-bars i:nth-child(2) { height: 60%; animation-delay: 0.1s; }
.phone-bars i:nth-child(3) { height: 100%; animation-delay: 0.2s; }
.phone-bars i:nth-child(4) { height: 70%; animation-delay: 0.3s; }
.phone-bars i:nth-child(5) { height: 40%; animation-delay: 0.4s; }
@keyframes bar {
  0%, 100% { transform: scaleY(0.35); }
  50% { transform: scaleY(1); }
}
.phone-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px; color: rgba(255,255,255,0.7);
  margin-top: auto; margin-bottom: 26px;
  font-variant-numeric: tabular-nums;
}
.phone-actions {
  display: flex; gap: 22px; align-items: center;
}
.phone-actions span {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.10);
  border-radius: 50%;
  position: relative;
  border: 1px solid rgba(255,255,255,0.06);
}
.phone-actions span::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.phone-actions span.hangup {
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(239, 68, 68, 0.40);
  width: 60px; height: 60px;
}
.phone-actions span.hangup::after {
  content: '';
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%) rotate(135deg);
  width: 22px; height: 8px;
  background: #fff;
  border-radius: 4px;
}

/* ───────── Pricing ───────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  align-items: stretch;
}
.price-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: transform 200ms, border-color 200ms;
}
.price-card:hover { transform: translateY(-3px); }
.price-card-pop {
  border-color: var(--text);
  background: var(--bg-card);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12), 0 8px 16px rgba(15, 23, 42, 0.06);
  transform: translateY(-8px);
}
.price-card-pop:hover { transform: translateY(-12px); }
.price-pop-badge {
  position: absolute; top: -13px; left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  border-radius: 999px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(124, 58, 237, 0.40);
  z-index: 3;
  white-space: nowrap;
}
.price-name { font-size: 14px; font-weight: 600; color: var(--text-muted); }
.price-amount {
  font-size: 44px; font-weight: 800;
  letter-spacing: -0.03em;
  margin: 8px 0 4px;
  display: flex; align-items: baseline; gap: 4px;
}
.price-amount .curr { font-size: 22px; font-weight: 600; color: var(--text-mid); }
.price-amount .per {
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  margin-left: 2px;
}
.price-sub {
  color: var(--text-muted); font-size: 13.5px;
  margin: 0 0 22px;
}
.price-feats {
  list-style: none; padding: 0; margin: 0 0 26px;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.price-feats li {
  position: relative; padding-left: 24px;
  font-size: 14px; color: var(--text-mid);
}
.price-feats li::before {
  content: ''; position: absolute; left: 0; top: 6px;
  width: 6px; height: 10px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(45deg);
}

/* ───────── Testimonials ───────── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 16px;
}
.testi {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.testi p {
  font-size: 16px; line-height: 1.55;
  color: var(--text);
  margin: 0 0 22px;
  letter-spacing: -0.005em;
}
.testi-by { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 14px;
}
.testi-by strong { display: block; font-weight: 600; font-size: 14px; }
.testi-by span { display: block; font-size: 12px; color: var(--text-muted); }

/* ───────── FAQ ───────── */
.faq-wrap { max-width: 760px; }
.faq { display: flex; flex-direction: column; gap: 10px; }
.faq details {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: border-color 200ms;
}
.faq details:hover { border-color: var(--text-muted); }
.faq details[open] { border-color: var(--text); }
.faq summary {
  cursor: pointer;
  font-weight: 600; font-size: 15px;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
}
.faq summary::-webkit-details-marker { display: none; }
.faq-x {
  position: relative;
  width: 14px; height: 14px;
  flex-shrink: 0;
}
.faq-x::before, .faq-x::after {
  content: ''; position: absolute;
  background: var(--text-muted);
  border-radius: 1px;
}
.faq-x::before { top: 6px; left: 0; right: 0; height: 2px; }
.faq-x::after { left: 6px; top: 0; bottom: 0; width: 2px; transition: transform 200ms; }
.faq details[open] .faq-x::after { transform: rotate(90deg); }
.faq details p {
  margin: 12px 0 0;
  color: var(--text-mid);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ───────── CTA banner ───────── */
.cta { padding: 32px 0 96px; }
.cta-card {
  position: relative;
  text-align: center;
  background: linear-gradient(135deg, #0b0d12 0%, #1f1244 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 68px 24px;
  overflow: hidden;
}
.cta-card::before {
  content: ''; position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.40), transparent 60%);
}
.cta-card::after {
  content: ''; position: absolute;
  bottom: -200px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.30), transparent 60%);
}
.cta-card h2 {
  position: relative;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800; letter-spacing: -0.025em;
  margin: 0 0 14px;
}
.cta-card .grad {
  background: linear-gradient(135deg, #c4b5fd, #a78bfa);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta-card p {
  position: relative;
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  margin: 0 0 28px;
}
.cta-actions {
  position: relative;
  display: inline-flex; gap: 10px; flex-wrap: wrap; justify-content: center;
}
.cta-card .btn-outline {
  background: transparent;
  color: #fff; border-color: rgba(255,255,255,0.3);
}
.cta-card .btn-outline:hover { border-color: #fff; }
.cta-card .btn-primary {
  background: #fff; color: var(--text);
}
.cta-card .btn-primary:hover { background: #f3f4f6; }

/* ───────── Footer ───────── */
.footer {
  padding: 56px 0 28px;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 36px;
}
.footer-brand p {
  margin: 12px 0 14px;
  color: var(--text-muted); font-size: 14px; max-width: 260px;
}
.footer-contact {
  display: inline-block;
  font-size: 14px; color: var(--primary);
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--primary) 35%, transparent);
  text-underline-offset: 3px;
}
.footer-contact:hover { text-decoration-color: var(--primary); }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 420px;
  justify-self: end;
}
.footer-cols h4 {
  margin: 0 0 12px;
  font-size: 12px; color: var(--text-muted); font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.footer-cols a {
  display: block;
  margin: 8px 0;
  color: var(--text-mid); font-size: 14px;
  transition: color 120ms;
}
.footer-cols a:hover { color: var(--text); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px; color: var(--text-muted);
  flex-wrap: wrap; gap: 14px;
}
.socials { display: flex; gap: 6px; }
.socials a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 9px;
  color: var(--text-muted);
  transition: background 150ms, color 150ms;
}
.socials a:hover { background: var(--bg-card); color: var(--text); }
.socials svg { width: 16px; height: 16px; }

/* ───────── Responsive ───────── */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-row.open + .nav-mobile { display: flex; }
  .hero { padding: 40px 0 60px; }
  .hero-mock { margin-top: 36px; }
  .mock-body { grid-template-columns: 1fr; }
  .mock-side { display: none; }
  .mock-main { grid-template-columns: 1fr; }
  .showcase { grid-template-columns: 1fr; gap: 36px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .section { padding: 64px 0; }
}
@media (max-width: 540px) {
  .price-card-pop { transform: none; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .mock-stats { grid-template-columns: 1fr 1fr; }
  .hero-trust { flex-direction: column; gap: 6px; }
}

/* ═══════════════════════════════════════════════════
   Magic: scroll reveal · 3D tilt · entrance animations
   ═══════════════════════════════════════════════════ */

/* Reveal-on-scroll baseline (JS toggles .in) */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"].in { transition-delay: 0.08s; }
.reveal[data-delay="2"].in { transition-delay: 0.16s; }
.reveal[data-delay="3"].in { transition-delay: 0.24s; }
.reveal[data-delay="4"].in { transition-delay: 0.32s; }
.reveal[data-delay="5"].in { transition-delay: 0.40s; }
.reveal[data-delay="6"].in { transition-delay: 0.48s; }

/* Hero text auto-entrance (no scroll dependency) */
.hero .eyebrow      { animation: heroIn 800ms cubic-bezier(0.22, 1, 0.36, 1) backwards; animation-delay: .05s; }
.hero-title         { animation: heroIn 900ms cubic-bezier(0.22, 1, 0.36, 1) backwards; animation-delay: .15s; }
.hero-sub           { animation: heroIn 900ms cubic-bezier(0.22, 1, 0.36, 1) backwards; animation-delay: .25s; }
.hero-ctas          { animation: heroIn 900ms cubic-bezier(0.22, 1, 0.36, 1) backwards; animation-delay: .35s; }
.hero-trust         { animation: heroIn 900ms cubic-bezier(0.22, 1, 0.36, 1) backwards; animation-delay: .45s; }
.hero-mock          { animation: heroMockIn 1100ms cubic-bezier(0.22, 1, 0.36, 1) backwards; animation-delay: .55s; }
@keyframes heroIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroMockIn {
  from { opacity: 0; transform: translateY(60px) rotateX(8deg) scale(0.96); }
  to   { opacity: 1; transform: translateY(0)    rotateX(2deg) scale(1); }
}

/* The mock-window already has a subtle tilt; bind it to scroll for parallax */
.hero-mock {
  transform-style: preserve-3d;
}
.mock-window {
  transform: rotateX(2deg) translateY(var(--scroll-mock-y, 0));
  transition: transform 200ms ease-out;
}
.mock-window:hover { transform: rotateX(0) translateY(var(--scroll-mock-y, 0)) scale(1.005); }

/* 3D tilt for feature/step/testi/pricing cards (JS adds the rotation) */
.tilt {
  transform-style: preserve-3d;
  transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 300ms ease;
  will-change: transform;
}
.tilt::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(124,58,237,0.10), transparent 40%);
  opacity: 0;
  transition: opacity 200ms ease;
  pointer-events: none;
}
.tilt:hover::after { opacity: 1; }
.feature-card, .step, .testi {
  position: relative;
  overflow: hidden;
}
/* Pricing cards must stay overflow-visible so the "Most popular" badge
   isn't clipped. The pseudo glow is repositioned via clip-path instead. */
.price-card {
  position: relative;
  overflow: visible;
}
.price-card::after {
  border-radius: var(--radius-lg);
  clip-path: inset(0 round var(--radius-lg));
}
.price-card-pop { z-index: 2; }

/* Magnetic button — JS applies translation on mouse-move */
.btn { will-change: transform; }

/* Counter blink-in for stats */
.counter { display: inline-block; transition: transform 200ms; }
.counter.bumped { transform: scale(1.08); }

/* Reduced motion — kill all the bling */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .orb { display: none; }
  .reveal { opacity: 1; transform: none; }
}

/* ───────── Mobile menu (simple drawer) ───────── */
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 12px 24px 24px;
  gap: 6px;
  border-top: 1px solid var(--border);
  background: #fff;
}
.nav-mobile a {
  padding: 12px 0;
  font-size: 15px; color: var(--text-mid); font-weight: 500;
  border-bottom: 1px solid var(--border-soft);
}
.nav-mobile a:last-of-type { border-bottom: none; }
.nav-mobile .btn { margin-top: 8px; }

/* ═══════════════════════════════════════════════════
   Rotating hero word
   ═══════════════════════════════════════════════════ */
.rotator {
  display: inline-block;
  position: relative;
  overflow: hidden;
  vertical-align: bottom;
  line-height: 1;
  height: 1em;
}
.rotator-words {
  display: block;
  animation: rotate 9s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}
.rotator-words span {
  display: block;
  height: 1em;
  line-height: 1;
}
@keyframes rotate {
   0%,  16% { transform: translateY(0);    }
  20%,  36% { transform: translateY(-1em); }
  40%,  56% { transform: translateY(-2em); }
  60%,  76% { transform: translateY(-3em); }
  80%,  96% { transform: translateY(-4em); }
 100%       { transform: translateY(-5em); }
}

/* ═══════════════════════════════════════════════════
   Marquee (logos)
   ═══════════════════════════════════════════════════ */
.marquee {
  overflow: hidden;
  padding: 12px 0 4px;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: scrollX 40s linear infinite;
}
.marquee-track span {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: #c5cbd3;
  transition: color 200ms;
}
.marquee-track span:hover { color: var(--text); }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scrollX {
  to { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════
   Stats strip
   ═══════════════════════════════════════════════════ */
.stats-strip {
  padding: 56px 0;
  background: var(--text);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 600px 200px at 20% 0%, rgba(124, 58, 237, 0.35), transparent 60%),
    radial-gradient(ellipse 600px 200px at 100% 100%, rgba(79, 70, 229, 0.30), transparent 60%);
  pointer-events: none;
}
.stats-strip-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.stat-item { text-align: left; flex: 1; min-width: 160px; }
.stat-num {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, #c4b5fd 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  margin-top: 8px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.01em;
}
.stat-divider {
  width: 1px; height: 60px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.2), transparent);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════
   Bento grid — features
   ═══════════════════════════════════════════════════ */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 16px;
}
.bento-card {
  position: relative;
  grid-column: span 3;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 200ms, border-color 200ms, box-shadow 200ms;
  overflow: hidden;
}
.bento-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}
.bento-lg   { grid-column: span 4; grid-row: span 2; }
.bento-tall { grid-column: span 2; grid-row: span 2; }
.bento-wide { grid-column: span 4; }
.bento-sm   { grid-column: span 2; }

.bento-tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--primary-soft);
  color: var(--primary);
  border: 1px solid color-mix(in srgb, var(--primary) 20%, transparent);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  width: fit-content;
}
.bento-card h3 {
  margin: 4px 0 4px;
  font-size: 20px; font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.bento-lg h3, .bento-wide h3 { font-size: 26px; }
.bento-card p {
  margin: 0;
  color: var(--text-mid);
  font-size: 14px; line-height: 1.6;
}
.bento-visual { margin-top: auto; padding-top: 16px; }

/* Voice visual */
.bento-visual-voice {
  padding: 24px;
  background: linear-gradient(135deg, #0b0d12 0%, #1f1244 100%);
  border-radius: var(--radius);
  color: #fff;
  margin: 18px -6px 0;
  display: flex; flex-direction: column; gap: 16px;
}
.v-wave {
  display: flex; gap: 5px; align-items: center; height: 50px;
  justify-content: center;
}
.v-wave i {
  display: block; width: 4px;
  background: linear-gradient(180deg, #a78bfa, #6d28d9);
  border-radius: 2px;
  animation: wave 1.2s ease-in-out infinite;
  box-shadow: 0 0 12px rgba(167, 139, 250, 0.6);
}
.v-wave i:nth-child(1) { height: 30%; animation-delay: 0.0s; }
.v-wave i:nth-child(2) { height: 65%; animation-delay: 0.08s; }
.v-wave i:nth-child(3) { height: 85%; animation-delay: 0.16s; }
.v-wave i:nth-child(4) { height: 100%; animation-delay: 0.24s; }
.v-wave i:nth-child(5) { height: 70%; animation-delay: 0.32s; }
.v-wave i:nth-child(6) { height: 45%; animation-delay: 0.40s; }
.v-wave i:nth-child(7) { height: 60%; animation-delay: 0.48s; }
.v-wave i:nth-child(8) { height: 30%; animation-delay: 0.56s; }
@keyframes wave {
  0%, 100% { transform: scaleY(0.4); }
  50%      { transform: scaleY(1); }
}
.v-labels {
  display: flex; justify-content: space-between; align-items: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px; color: rgba(255,255,255,0.7);
}
.v-live { color: #f87171; font-weight: 700; letter-spacing: 0.06em; font-size: 10.5px; }

/* Chat visual */
.bento-visual-chat {
  display: flex; flex-direction: column; gap: 8px;
  font-size: 13px;
}
.chat-msg {
  padding: 8px 12px;
  border-radius: 12px;
  max-width: 85%;
  line-height: 1.4;
  animation: chatIn 400ms cubic-bezier(0.22, 1, 0.36, 1) backwards;
}
.chat-msg:nth-child(1) { animation-delay: 0.0s; }
.chat-msg:nth-child(2) { animation-delay: 0.3s; }
.chat-msg:nth-child(3) { animation-delay: 0.6s; }
.chat-msg:nth-child(4) { animation-delay: 0.9s; }
.chat-user {
  background: var(--primary-soft);
  color: var(--primary);
  border-top-right-radius: 4px;
  align-self: flex-end;
  font-weight: 500;
}
.chat-ai {
  background: var(--bg-soft);
  color: var(--text);
  border: 1px solid var(--border);
  border-top-left-radius: 4px;
  align-self: flex-start;
}
.chat-typing { display: inline-flex; gap: 4px; align-items: center; padding: 10px 12px; }
.chat-typing span {
  width: 5px; height: 5px;
  background: var(--text-muted);
  border-radius: 50%;
  animation: typing 1.2s ease-in-out infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.15s; }
.chat-typing span:nth-child(3) { animation-delay: 0.30s; }
@keyframes chatIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
@keyframes typing {
  0%, 60%, 100% { opacity: 0.3; transform: scale(0.9); }
  30%           { opacity: 1;   transform: scale(1.1); }
}

/* WhatsApp */
.bento-visual-wa {
  display: flex; flex-direction: column; gap: 6px;
  padding: 14px;
  background: #f0f2f5;
  border-radius: var(--radius);
  margin-top: 16px;
  font-size: 13px;
}
.wa-bubble {
  padding: 8px 10px;
  border-radius: 10px;
  max-width: 80%;
  line-height: 1.4;
  position: relative;
}
.wa-in  { background: #fff; align-self: flex-start; border-top-left-radius: 2px; }
.wa-out { background: #d9fdd3; align-self: flex-end; border-top-right-radius: 2px; }
.wa-tick { font-size: 10px; color: #34a853; margin-left: 6px; }

/* Kanban */
.bento-visual-kanban {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px;
  margin-top: 16px;
}
.k-col {
  padding: 8px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; flex-direction: column; gap: 4px;
}
.k-col > span {
  font-size: 10px; font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.k-col i {
  display: block; height: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
}
.k-col i.k-won {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  border-color: #10b981;
}

/* Campaign progress */
.bento-visual-progress { margin-top: 16px; }
.p-bar {
  height: 10px; background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
}
.p-bar i {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(124, 58, 237, 0.50);
  animation: progressFill 2s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}
@keyframes progressFill { from { width: 0; } }
.p-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 10px;
  font-size: 13px; color: var(--text-muted);
}
.p-meta strong { color: var(--text); font-weight: 700; }

/* ═══════════════════════════════════════════════════
   Dark pricing section
   ═══════════════════════════════════════════════════ */
.section-dark {
  background: #0b0d12;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 700px 400px at 10% 0%, rgba(124, 58, 237, 0.18), transparent 60%),
    radial-gradient(ellipse 700px 400px at 100% 100%, rgba(79, 70, 229, 0.16), transparent 60%);
  pointer-events: none;
}
.section-dark > .container { position: relative; }
.section-dark .section-head h2 { color: #fff; }
.section-dark .section-head p  { color: rgba(255,255,255,0.65); }
.section-dark .eyebrow {
  background: rgba(124, 58, 237, 0.18);
  color: #c4b5fd;
  border-color: rgba(124, 58, 237, 0.35);
}
.section-dark .price-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.10);
  color: #fff;
  backdrop-filter: blur(8px);
}
.section-dark .price-card:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
}
.section-dark .price-name { color: rgba(255, 255, 255, 0.6); }
.section-dark .price-amount .curr,
.section-dark .price-amount .per { color: rgba(255, 255, 255, 0.55); }
.section-dark .price-sub  { color: rgba(255, 255, 255, 0.6); }
.section-dark .price-feats li { color: rgba(255, 255, 255, 0.82); }
.section-dark .price-feats li::before { border-color: #a78bfa; }
.section-dark .price-card-pop {
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.18), rgba(79, 70, 229, 0.08));
  border-color: rgba(167, 139, 250, 0.45);
}
.section-dark .btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}
.section-dark .btn-outline:hover { border-color: #fff; }
.section-dark .btn-primary { background: #fff; color: var(--text); }
.section-dark .btn-primary:hover { background: #f3f4f6; }

/* Responsive bento + stats */
@media (max-width: 900px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-card,
  .bento-lg, .bento-tall, .bento-wide, .bento-sm {
    grid-column: span 2; grid-row: auto;
  }
  .stats-strip-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .stat-divider { display: none; }
}

/* ─────────────────────────── Talk-to-sales (inline) ─────────────────────────── */
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
.contact-intro h2 { margin: 10px 0 14px; font-size: 36px; line-height: 1.1; letter-spacing: -0.02em; }
.contact-intro p { margin: 0 0 20px; color: #6b7280; font-size: 16px; line-height: 1.6; }
.contact-bullets { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.contact-bullets li { display: flex; align-items: center; gap: 10px; color: #374151; font-size: 15px; }

.contact-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px -20px rgba(15, 16, 30, 0.18), 0 4px 16px -6px rgba(15, 16, 30, 0.08);
  padding: 32px;
  max-width: 100%;
  min-width: 0;
}

.contact-form { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.contact-form .form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
}
.form-field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.form-field label { font-size: 12px; font-weight: 600; color: #374151; letter-spacing: 0.02em; text-transform: uppercase; }
.form-field input {
  appearance: none; -webkit-appearance: none;
  width: 100%;
  min-width: 0;
  border: 1px solid #e5e7eb; border-radius: 10px;
  background: #f9fafb;
  padding: 11px 14px;
  font: inherit; font-size: 15px; color: #111827;
  transition: border-color 120ms ease, background 120ms ease, box-shadow 120ms ease;
}
.form-field input:hover { border-color: #d1d5db; }
.form-field input:focus {
  outline: none; background: #fff;
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.18);
}
.form-error {
  background: #fef2f2; color: #b91c1c;
  border: 1px solid #fecaca; border-radius: 10px;
  padding: 10px 12px; font-size: 13px;
}
.form-submit { margin-top: 6px; width: 100%; }
.form-submit:disabled { opacity: 0.7; cursor: wait; }
.form-fine { margin: 8px 0 0; color: #9ca3af; font-size: 12px; text-align: center; }

.form-success { text-align: center; padding: 40px 32px; }
.form-success-icon {
  width: 56px; height: 56px; margin: 0 auto 14px;
  border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: #fff; font-size: 28px; font-weight: 700;
}
.form-success h3 { margin: 0 0 6px; font-size: 20px; }
.form-success p { margin: 0; color: #6b7280; font-size: 14px; line-height: 1.5; }

@media (max-width: 900px) {
  .contact-section { grid-template-columns: 1fr; gap: 32px; }
  .contact-intro h2 { font-size: 28px; }
}
@media (max-width: 480px) {
  .contact-card { padding: 24px 20px; border-radius: 16px; }
  .contact-form .form-row { grid-template-columns: 1fr; }
}

/* ─────────────────────────── Legal pages (Terms, Privacy) ─────────────────────────── */
body.legal { background: #fafafa; }

.legal-header {
  padding: 120px 0 40px;
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  border-bottom: 1px solid var(--border-soft);
}
.legal-header h1 {
  margin: 14px 0 10px;
  font-size: 44px; line-height: 1.1; letter-spacing: -0.02em;
}
.legal-meta {
  margin: 0; color: var(--text-muted); font-size: 14px;
}
.legal-meta strong { color: var(--text-mid); font-weight: 600; }

.legal-body { padding: 48px 0 80px; }
.legal-grid {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.legal-toc {
  position: sticky; top: 90px;
  align-self: start;
  max-height: calc(100vh - 110px);
  overflow-y: auto;
}
.legal-toc-inner {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
}
.legal-toc-title {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  color: var(--text-muted); text-transform: uppercase;
  margin-bottom: 12px;
}
.legal-toc ol {
  list-style: none; padding: 0; margin: 0;
  counter-reset: toc;
}
.legal-toc li {
  counter-increment: toc;
  font-size: 13.5px; line-height: 1.5;
  margin: 2px 0;
}
.legal-toc a {
  display: block;
  padding: 6px 10px 6px 32px;
  position: relative;
  color: var(--text-mid);
  border-radius: 8px;
  transition: background 120ms ease, color 120ms ease;
}
.legal-toc a::before {
  content: counter(toc);
  position: absolute; left: 10px; top: 6px;
  font-size: 11px; font-weight: 600; color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}
.legal-toc a:hover {
  background: var(--primary-soft);
  color: var(--primary);
}
.legal-toc a:hover::before { color: var(--primary); }

.legal-content {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 56px 64px;
  box-shadow: var(--shadow-sm);
  min-width: 0;
  color: var(--text-mid);
  font-size: 15.5px;
  line-height: 1.7;
}

.legal-lede {
  font-size: 17px; line-height: 1.65;
  color: var(--text-mid);
  padding: 18px 20px;
  background: var(--primary-soft);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius);
  margin: 0 0 36px;
}
.legal-lede strong { color: var(--text); }

.legal-content h2 {
  font-size: 22px; line-height: 1.25;
  color: var(--text);
  margin: 44px 0 14px;
  letter-spacing: -0.01em;
  scroll-margin-top: 90px;
}
.legal-content h2:first-of-type { margin-top: 16px; }
.legal-content h3 {
  font-size: 16px; font-weight: 600;
  color: var(--text);
  margin: 22px 0 8px;
  scroll-margin-top: 90px;
}
.legal-content p { margin: 0 0 14px; }
.legal-content ul {
  margin: 0 0 16px;
  padding-left: 22px;
}
.legal-content li { margin: 4px 0; }
.legal-content a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--primary) 35%, transparent);
  text-underline-offset: 3px;
}
.legal-content a:hover {
  text-decoration-color: var(--primary);
}
.legal-content strong { color: var(--text); font-weight: 600; }

.legal-address {
  font-style: normal;
  padding: 16px 18px;
  background: #fafafa;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin: 12px 0 32px;
}

.legal-back {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
  font-size: 14px;
}

@media (max-width: 1000px) {
  .legal-grid { grid-template-columns: 1fr; gap: 28px; }
  .legal-toc { position: static; max-height: none; }
  .legal-toc-inner { padding: 18px 20px; }
  .legal-content { padding: 36px 32px; }
}
@media (max-width: 600px) {
  .legal-header { padding: 96px 0 28px; }
  .legal-header h1 { font-size: 32px; }
  .legal-content { padding: 28px 22px; font-size: 15px; }
  .legal-content h2 { font-size: 20px; margin-top: 36px; }
}
