/* ============================================================
   VOIGENT — "Midnight Conductor" design system
   Black + electric lime. Built per landing-page wireframe spec.
   ============================================================ */

:root {
  --bg:        #0A0A0F;   /* page background */
  --surface:   #13131A;   /* cards */
  --surface-2: #1A1A23;   /* nested / hover surface */
  --white:     #FFFFFF;   /* primary text */
  --muted:     #9CA3AF;   /* sublines */
  --muted-2:   #6B7280;   /* faint */
  --lime:      #D0FF14;   /* CTAs / accents */
  --lime-dim:  #aacf0e;
  --cyan:      #06B6D4;   /* links */
  --green:     #10B981;   /* live status */
  --red:       #F87171;   /* comparison negatives */
  --border:    rgba(255,255,255,0.08);
  --border-2:  rgba(255,255,255,0.14);

  --maxw: 1200px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 20px;
  --r-pill: 999px;

  --sans: "Inter", system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  --ease: cubic-bezier(.2,.7,.2,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

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

::selection { background: var(--lime); color: #000; }

a { color: var(--cyan); text-decoration: none; }

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-weight: 900; letter-spacing: -0.04em; line-height: 1.05; }
.h1 { font-size: clamp(48px, 8vw, 92px); }
.h2 { font-size: clamp(34px, 5vw, 56px); }
.h3 { font-size: clamp(22px, 3vw, 30px); }
.mono { font-family: var(--mono); }

.eyebrow {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 500;
}

.section { padding: clamp(72px, 11vw, 128px) 0; position: relative; }
.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .eyebrow { display: inline-block; margin-bottom: 18px; }
.section-head p { color: var(--muted); font-size: 19px; margin-top: 20px; }

.lime-text { color: var(--lime); }
.cyan-text { color: var(--cyan); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sans); font-weight: 700; font-size: 15px;
  border-radius: var(--r-pill); border: none; cursor: pointer;
  padding: 14px 24px; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
}
.btn-lime { background: var(--lime); color: #0A0A0F; }
.btn-lime:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(208,255,20,0.35); }
.btn-ghost { background: transparent; color: var(--white); border: 1.5px solid var(--border-2); }
.btn-ghost:hover { border-color: var(--lime); color: var(--lime); transform: translateY(-2px); }
.btn-lg { padding: 17px 30px; font-size: 16.5px; }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-grad { background: linear-gradient(100deg, #5eead4, #06B6D4 45%, #3B82F6); color: #04121f; }
.btn-grad:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(6,182,212,0.35); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s var(--ease), border-color .3s var(--ease), backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,10,15,0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; gap: 32px; height: 72px; }
.logo { display: flex; align-items: center; gap: 9px; font-weight: 900; font-size: 21px; letter-spacing: -0.04em; color: #fff; }
.logo img { height: 36px; width: auto; display: block; }
.logo .logo-dot { width: 11px; height: 11px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 14px var(--lime); }
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.nav-links a, .nav-trigger {
  color: var(--muted); font-size: 14.5px; font-weight: 500; padding: 8px 13px; border-radius: 8px;
  display: inline-flex; align-items: center; gap: 6px; cursor: pointer; background: none; border: none; font-family: var(--sans);
  transition: color .18s var(--ease), background .18s var(--ease);
}
.nav-links a:hover, .nav-trigger:hover { color: #fff; background: rgba(255,255,255,0.05); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.nav-right .sign-in { color: var(--muted); font-size: 14.5px; font-weight: 500; }
.nav-right .sign-in:hover { color: #fff; }

/* Product dropdown (11x-inspired) */
.has-dropdown { position: relative; }
.nav-trigger .chev { transition: transform .22s var(--ease); }
.has-dropdown.open .nav-trigger .chev { transform: rotate(180deg); }
.has-dropdown.open .nav-trigger { color: #fff; }
.dropdown {
  position: absolute; top: calc(100% + 14px); left: 0;
  width: 340px; background: #0e0e15; border: 1px solid var(--border-2);
  border-radius: var(--r-md); padding: 10px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
.has-dropdown.open .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; color: var(--muted-2); padding: 10px 12px 8px; text-transform: uppercase; }
.dd-item { display: flex; gap: 13px; padding: 12px; border-radius: 10px; cursor: pointer; transition: background .16s var(--ease); align-items: flex-start; }
.dd-item:hover { background: var(--surface-2); }
.dd-ic { width: 38px; height: 38px; border-radius: 9px; flex-shrink: 0; display: grid; place-items: center; background: rgba(208,255,20,0.1); }
.dd-ic svg { width: 20px; height: 20px; stroke: var(--lime); }
.dd-item:nth-child(3) .dd-ic { background: rgba(6,182,212,0.12); } .dd-item:nth-child(3) .dd-ic svg { stroke: var(--cyan); }
.dd-item:nth-child(4) .dd-ic { background: rgba(16,185,129,0.12); } .dd-item:nth-child(4) .dd-ic svg { stroke: var(--green); }
.dd-item:nth-child(5) .dd-ic { background: rgba(248,113,113,0.12); } .dd-item:nth-child(5) .dd-ic svg { stroke: var(--red); }
.dd-text strong { display: block; color: #fff; font-size: 14.5px; font-weight: 700; letter-spacing: -0.01em; }
.dd-text span { display: block; color: var(--muted); font-size: 12.5px; line-height: 1.45; margin-top: 2px; }

/* Mobile nav */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; margin: 5px 0; transition: .2s; }
.mobile-menu { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: 150px 0 90px; position: relative; overflow: hidden; }
.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.5; z-index: 0; pointer-events: none;
}
.hero::before { width: 600px; height: 600px; background: radial-gradient(circle, rgba(208,255,20,0.14), transparent 70%); top: -180px; right: -120px; }
.hero::after { width: 560px; height: 560px; background: radial-gradient(circle, rgba(6,182,212,0.12), transparent 70%); bottom: -220px; left: -160px; }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }

.live-pill {
  display: inline-flex; align-items: center; gap: 9px; padding: 7px 15px 7px 12px;
  border: 1px solid var(--border-2); border-radius: var(--r-pill); background: rgba(255,255,255,0.03);
  font-size: 13px; color: var(--muted); margin-bottom: 26px;
}
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(16,185,129,0.6); animation: pulse 2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(16,185,129,0.55); opacity: 1; }
  70% { box-shadow: 0 0 0 9px rgba(16,185,129,0); opacity: .55; }
  100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); opacity: 1; }
}

.hero h1 { margin-bottom: 24px; }
.hero h1 .line2 { color: var(--lime); }
.hero-sub { font-size: 19.5px; color: var(--muted); max-width: 520px; margin-bottom: 34px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-checks { display: flex; gap: 22px; flex-wrap: wrap; font-size: 13.5px; color: var(--muted); }
.hero-checks span { display: inline-flex; align-items: center; gap: 7px; }
.hero-checks .ck { color: var(--lime); font-weight: 800; }

/* Hero staggered entrance — base state is VISIBLE; animate from hidden only when body.hero-intro is set */
.reveal-hero > * { opacity: 1; transform: none; }
body.hero-intro .reveal-hero > * { animation: heroUp .8s var(--ease-out) backwards; }
body.hero-intro .reveal-hero > *:nth-child(1) { animation-delay: .05s; }
body.hero-intro .reveal-hero > *:nth-child(2) { animation-delay: .14s; }
body.hero-intro .reveal-hero > *:nth-child(3) { animation-delay: .23s; }
body.hero-intro .reveal-hero > *:nth-child(4) { animation-delay: .32s; }
body.hero-intro .reveal-hero > *:nth-child(5) { animation-delay: .41s; }
@keyframes heroUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }

/* Hero live-call card */
.callcard {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 20px 20px 18px; box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
body.hero-intro .callcard { animation: heroUp .9s var(--ease-out) .5s backwards; }
.callcard-top { display: flex; align-items: center; gap: 12px; padding-bottom: 15px; border-bottom: 1px solid var(--border); margin-bottom: 14px; }
.callcard .orb {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0; position: relative;
  background: conic-gradient(from 0deg, var(--lime), var(--cyan), var(--green), var(--lime));
}
.callcard .orb::before { content:""; position: absolute; inset: 5px; border-radius: 50%; background: var(--surface); }
.callcard .orb::after { content:""; position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 0 0 rgba(208,255,20,0); }
.callcard.ai-speaking .orb::after { animation: orbRing 1.3s ease-out infinite; }
@keyframes orbRing { 0% { box-shadow: 0 0 0 0 rgba(208,255,20,0.5); } 100% { box-shadow: 0 0 0 12px rgba(208,255,20,0); } }
.callcard-id { display: flex; flex-direction: column; line-height: 1.2; }
.callcard-id strong { font-size: 14px; font-weight: 700; color: #fff; letter-spacing: -0.01em; }
.callcard-id span { font-family: var(--mono); font-size: 10.5px; color: var(--muted-2); letter-spacing: 0.04em; }
.callcard-meta { margin-left: auto; display: flex; flex-direction: column; align-items: flex-end; gap: 3px; }
.callcard-status { display: inline-flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; color: var(--green); }
.callcard-time { font-family: var(--mono); font-size: 11px; color: var(--muted); }

.wave { display: flex; align-items: center; justify-content: center; gap: 3px; height: 32px; margin: 2px 0 14px; opacity: .55; transition: opacity .3s var(--ease); }
.wave i { display: block; width: 3px; border-radius: 3px; background: var(--muted-2); height: 14%; transition: background .3s var(--ease); }
.wave.speaking { opacity: 1; }
.wave.speaking i { animation: waveform 0.85s ease-in-out infinite; }
.wave.ai i { background: var(--lime); }
.wave.them i { background: var(--cyan); }
@keyframes waveform { 0%,100% { height: 14%; } 50% { height: 92%; } }

.transcript { display: flex; flex-direction: column; height: 188px; overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 16px, #000 calc(100% - 4px)); mask-image: linear-gradient(to bottom, transparent 0, #000 16px, #000 calc(100% - 4px)); }
.transcript-scroll { display: flex; flex-direction: column; gap: 11px; transition: transform .5s var(--ease-out); }
.t-line { display: flex; gap: 9px; align-items: flex-start; opacity: 0; transform: translateY(10px); transition: opacity .4s var(--ease-out), transform .4s var(--ease-out); }
.t-line.show { opacity: 1; transform: translateY(0); }
.t-who { font-family: var(--mono); font-size: 10px; font-weight: 700; padding: 3px 7px; border-radius: 6px; height: fit-content; flex-shrink: 0; min-width: 58px; text-align: center; letter-spacing: 0.02em; }
.t-who.ai { background: rgba(208,255,20,0.14); color: var(--lime); }
.t-who.them { background: rgba(6,182,212,0.14); color: var(--cyan); }
.t-text { font-size: 13.5px; color: #e5e7eb; line-height: 1.5; }
.t-text .typing { display: inline-flex; gap: 4px; align-items: center; height: 18px; }
.t-text .typing b { width: 5px; height: 5px; border-radius: 50%; background: currentColor; opacity: .4; animation: typedot 1.2s infinite; }
.t-text .typing b:nth-child(2) { animation-delay: .18s; }
.t-text .typing b:nth-child(3) { animation-delay: .36s; }
@keyframes typedot { 0%,60%,100% { opacity: .25; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }
.t-line.ai .t-text .typing { color: var(--lime); }
.t-line.them .t-text .typing { color: var(--cyan); }
.callcard-booked { display: flex; align-items: center; gap: 9px; margin-top: 12px; padding: 11px 14px; border-radius: 10px; background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.3); opacity: 0; transform: translateY(8px); transition: opacity .45s var(--ease-out), transform .45s var(--ease-out); }
.callcard-booked.show { opacity: 1; transform: translateY(0); }
.callcard-booked .bk-ic { width: 26px; height: 26px; border-radius: 7px; background: rgba(16,185,129,0.2); display: grid; place-items: center; flex-shrink: 0; }
.callcard-booked .bk-ic svg { width: 15px; height: 15px; stroke: var(--green); }
.callcard-booked .bk-text { font-size: 12.5px; color: #fff; font-weight: 600; }
.callcard-booked .bk-text span { display: block; font-family: var(--mono); font-size: 10.5px; color: var(--green); font-weight: 500; margin-top: 1px; }

/* ============================================================
   LOGO BAR
   ============================================================ */
.logobar { padding: 52px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.logobar p { text-align: center; color: var(--muted-2); font-size: 13px; font-family: var(--mono); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 28px; }
.logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 16px 48px; }
.logos span { font-size: 21px; font-weight: 800; color: var(--muted); letter-spacing: -0.03em; opacity: .72; transition: opacity .2s, color .2s; }
.logos span:hover { opacity: 1; color: #fff; }

/* ============================================================
   GENERIC reveal-on-scroll
   ============================================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-hero > *, .callcard { opacity: 1 !important; transform: none !important; animation: none !important; }
}

/* ---------- Cards ---------- */
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 30px; transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.card:hover { transform: translateY(-5px); border-color: rgba(208,255,20,0.45); box-shadow: 0 18px 50px rgba(0,0,0,0.45); }
.card .ic { width: 50px; height: 50px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 20px; }
.card .ic svg { width: 24px; height: 24px; }
.card h3 { font-size: 21px; margin-bottom: 11px; }
.card p { color: var(--muted); font-size: 15px; }

/* ---------- Problem (3-col) ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }

.problem-emoji { font-size: 30px; margin-bottom: 16px; display: block; }
.problem-after { text-align: center; margin-top: 48px; }
.problem-after a { font-size: 17px; font-weight: 700; color: var(--lime); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: 28px; position: relative; transition: transform .25s var(--ease), border-color .25s var(--ease); }
.step:hover { transform: translateY(-5px); border-color: var(--border-2); }
.step-num { font-family: var(--mono); font-size: 13px; color: var(--lime); font-weight: 700; letter-spacing: 0.1em; }
.step-ic { font-size: 26px; margin: 14px 0 16px; display: block; }
.step h3 { font-size: 22px; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 14.5px; }
.step-mock { margin-top: 20px; height: 96px; border-radius: 10px; background: linear-gradient(135deg, #16161f, #101017); border: 1px dashed var(--border-2); display: grid; place-items: center; color: var(--muted-2); font-family: var(--mono); font-size: 11px; }

/* ============================================================
   BELLA — autonomous outbound (Ava/Artisan-style)
   ============================================================ */
.bella { background: linear-gradient(180deg, #0c0c12 0%, var(--bg) 100%); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.bella-head { display: flex; align-items: flex-start; gap: 26px; flex-wrap: wrap; margin-bottom: 64px; }
.bella-avatar {
  width: 72px; height: 72px; border-radius: 20px; flex-shrink: 0; position: relative;
  background: conic-gradient(from 210deg, var(--lime), var(--cyan), var(--green), var(--lime));
  display: grid; place-items: center;
}
.bella-avatar::before { content:""; position: absolute; inset: 3px; border-radius: 17px; background: #0c0c12; }
.bella-avatar span { position: relative; font-family: var(--mono); font-weight: 800; font-size: 30px; color: var(--lime); }
.bella-head .bh-text { flex: 1; min-width: 280px; }
.bella-head h2 { font-size: clamp(30px, 4vw, 48px); margin-bottom: 14px; }
.bella-head p { color: var(--muted); font-size: 18px; max-width: 640px; }
.bella-head .eyebrow { display: inline-block; margin-bottom: 14px; }

.bella-steps { display: flex; flex-direction: column; gap: clamp(40px, 7vw, 88px); }
.bella-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.bella-row:nth-child(even) .bella-copy { order: 2; }
.bella-step-n { font-family: var(--mono); font-size: 14px; font-weight: 700; color: var(--bg); background: var(--lime); width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 22px; }
.bella-copy h3 { font-size: clamp(22px, 2.6vw, 30px); margin-bottom: 14px; }
.bella-copy p { color: var(--muted); font-size: 16.5px; line-height: 1.65; margin-bottom: 22px; }
.bella-copy .bella-link { display: inline-flex; align-items: center; gap: 8px; color: var(--lime); font-weight: 700; font-size: 15px; cursor: pointer; transition: gap .2s var(--ease); }
.bella-copy .bella-link:hover { gap: 12px; }
.bella-copy .bella-link svg { width: 16px; height: 16px; }

/* Bella visual mocks */
.bella-mock { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: 22px; box-shadow: 0 24px 60px rgba(0,0,0,0.4); }
.bella-mock-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.bella-mock-head .bm-title { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-2); }
.bella-mock-head .bm-count { font-family: var(--mono); font-size: 11px; color: var(--lime); }

/* lead list */
.lead { display: flex; align-items: center; gap: 12px; padding: 12px; border-radius: 10px; border: 1px solid var(--border); margin-bottom: 9px; background: var(--bg); }
.lead:last-child { margin-bottom: 0; }
.lead-av { width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center; font-family: var(--mono); font-weight: 700; font-size: 13px; color: var(--bg); }
.lead-info { flex: 1; min-width: 0; }
.lead-info strong { display: block; font-size: 13.5px; color: #fff; font-weight: 600; }
.lead-info span { font-size: 11.5px; color: var(--muted-2); }
.lead-tag { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.04em; text-transform: uppercase; padding: 4px 8px; border-radius: 6px; flex-shrink: 0; font-weight: 700; }
.lead-tag.hire { background: rgba(208,255,20,0.14); color: var(--lime); }
.lead-tag.fund { background: rgba(6,182,212,0.14); color: var(--cyan); }
.lead-tag.grow { background: rgba(16,185,129,0.14); color: var(--green); }

/* message composer */
.compose-to { font-size: 12.5px; color: var(--muted); margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.compose-to b { color: #fff; font-weight: 600; }
.compose-body { font-size: 14px; line-height: 1.7; color: #d1d5db; }
.compose-body .pz { background: rgba(208,255,20,0.16); color: var(--lime); border-radius: 4px; padding: 1px 5px; font-weight: 500; }
.compose-foot { display: flex; align-items: center; gap: 10px; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--border); }
.compose-chip { font-family: var(--mono); font-size: 10.5px; color: var(--muted-2); border: 1px solid var(--border-2); border-radius: 999px; padding: 4px 10px; }
.compose-chip.on { color: var(--lime); border-color: rgba(208,255,20,0.4); }

/* calendar booked */
.cal-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 7px; margin-bottom: 14px; }
.cal-cell { aspect-ratio: 1; border-radius: 8px; background: var(--bg); border: 1px solid var(--border); display: grid; place-items: center; font-family: var(--mono); font-size: 12px; color: var(--muted-2); }
.cal-cell.booked { background: rgba(16,185,129,0.16); border-color: rgba(16,185,129,0.4); color: var(--green); font-weight: 700; }
.cal-booking { display: flex; align-items: center; gap: 11px; padding: 12px; border-radius: 10px; background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.3); }
.cal-booking .cb-ic { width: 30px; height: 30px; border-radius: 8px; background: rgba(16,185,129,0.2); display: grid; place-items: center; flex-shrink: 0; }
.cal-booking .cb-ic svg { width: 16px; height: 16px; stroke: var(--green); }
.cal-booking .cb-t strong { display: block; font-size: 13px; color: #fff; font-weight: 600; }
.cal-booking .cb-t span { font-family: var(--mono); font-size: 11px; color: var(--green); }

/* ============================================================
   SAMPLE CALL PLAYER (in-page section 06)
   ============================================================ */
.player {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 30px; max-width: 880px; margin: 0 auto;
}
.player-top { display: flex; align-items: center; gap: 18px; margin-bottom: 22px; }
.play-btn { width: 60px; height: 60px; border-radius: 50%; background: var(--lime); border: none; cursor: pointer; display: grid; place-items: center; flex-shrink: 0; transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.play-btn:hover { transform: scale(1.06); box-shadow: 0 0 30px rgba(208,255,20,0.4); }
.play-btn svg { width: 24px; height: 24px; fill: #000; margin-left: 2px; }
.player-bigwave { display: flex; align-items: center; gap: 4px; height: 56px; flex: 1; }
.player-bigwave i { width: 4px; border-radius: 4px; background: linear-gradient(var(--lime), var(--cyan)); height: 30%; }
.player-time { font-family: var(--mono); font-size: 13px; color: var(--muted); }
.player-transcript { border-top: 1px solid var(--border); padding-top: 20px; display: flex; flex-direction: column; gap: 14px; }
.player-transcript .ts { font-family: var(--mono); font-size: 11px; color: var(--muted-2); min-width: 44px; }
.player-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; color: var(--muted-2); text-transform: uppercase; margin-bottom: 16px; }
.player-foot { text-align: center; margin-top: 26px; color: var(--muted); }

/* ============================================================
   USE CASES (11x-inspired big cards)
   ============================================================ */
.usecase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.uc {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: 28px;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.uc:hover { transform: translateY(-5px); border-color: rgba(208,255,20,0.45); box-shadow: 0 18px 50px rgba(0,0,0,0.45); }
.uc-emoji { font-size: 28px; display: block; margin-bottom: 16px; }
.uc h3 { font-size: 20px; margin-bottom: 9px; }
.uc p { color: var(--muted); font-size: 14.5px; }

/* ============================================================
   FEATURES (2x3)
   ============================================================ */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

/* ============================================================
   INTEGRATIONS
   ============================================================ */
.integ-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.integ {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 26px 18px; text-align: center; transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.integ:hover { border-color: var(--border-2); transform: translateY(-3px); }
.integ .integ-name { font-weight: 800; font-size: 17px; color: #fff; letter-spacing: -0.02em; }
.integ .integ-cat { font-family: var(--mono); font-size: 10.5px; color: var(--muted-2); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 6px; }

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.compare-wrap { overflow-x: auto; border-radius: var(--r-md); border: 1px solid var(--border); }
table.compare { width: 100%; border-collapse: collapse; min-width: 680px; background: var(--surface); }
table.compare th, table.compare td { padding: 18px 22px; text-align: left; border-bottom: 1px solid var(--border); font-size: 15px; }
table.compare thead th { font-size: 13px; font-family: var(--mono); letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
table.compare thead th.voi { color: var(--lime); }
table.compare tbody th { font-weight: 600; color: #fff; }
table.compare td.voi { background: rgba(208,255,20,0.05); color: #fff; font-weight: 700; border-left: 1px solid rgba(208,255,20,0.18); border-right: 1px solid rgba(208,255,20,0.18); }
table.compare tr:last-child td, table.compare tr:last-child th { border-bottom: none; }
table.compare .neg { color: var(--red); }
table.compare .mut { color: var(--muted-2); }
.compare-note { text-align: center; color: var(--muted-2); font-size: 13px; margin-top: 18px; font-family: var(--mono); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.tier { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: 32px; transition: transform .25s var(--ease), border-color .25s var(--ease); }
.tier:hover { transform: translateY(-5px); border-color: var(--border-2); }
.tier.popular { border-color: var(--lime); box-shadow: 0 0 50px rgba(208,255,20,0.12); position: relative; }
.tier-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--lime); color: #000; font-family: var(--mono); font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; padding: 5px 14px; border-radius: var(--r-pill); text-transform: uppercase; }
.tier h3 { font-size: 24px; margin-bottom: 6px; }
.tier .price { font-size: 40px; font-weight: 900; letter-spacing: -0.04em; margin: 4px 0; }
.tier .price-sub { color: var(--muted); font-size: 14px; margin-bottom: 24px; }
.tier ul { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 28px; }
.tier li { display: flex; gap: 10px; font-size: 14.5px; color: #d1d5db; }
.tier li .ck { color: var(--lime); font-weight: 800; flex-shrink: 0; }
.tier .btn { width: 100%; justify-content: center; }
.pricing-note { text-align: center; color: var(--muted); margin-top: 36px; font-size: 15px; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.finalcta { padding: clamp(80px,12vw,140px) 0; position: relative; overflow: hidden; }
.finalcta-card {
  position: relative; text-align: center; border-radius: var(--r-lg); padding: clamp(48px,7vw,88px) 32px;
  background: radial-gradient(circle at 50% 0%, rgba(208,255,20,0.1), transparent 60%), var(--surface);
  border: 1px solid var(--border-2); overflow: hidden;
}
.finalcta-card::after { content:""; position:absolute; inset:0; background: radial-gradient(circle at 50% 120%, rgba(208,255,20,0.08), transparent 55%); pointer-events:none; }
.finalcta h2 { max-width: 760px; margin: 0 auto 20px; position: relative; }
.finalcta p { color: var(--muted); font-size: 19px; max-width: 560px; margin: 0 auto 34px; position: relative; }
.finalcta .hero-cta { justify-content: center; position: relative; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 820px; margin: 0 auto; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 26px 4px; text-align: left; color: #fff; font-family: var(--sans); font-size: 19px; font-weight: 700; letter-spacing: -0.02em; transition: color .18s; }
.faq-q:hover { color: var(--lime); }
.faq-toggle { flex-shrink: 0; width: 26px; height: 26px; position: relative; }
.faq-toggle::before, .faq-toggle::after { content:""; position: absolute; background: var(--lime); border-radius: 2px; transition: transform .25s var(--ease); }
.faq-toggle::before { width: 16px; height: 2px; top: 12px; left: 5px; }
.faq-toggle::after { width: 2px; height: 16px; top: 5px; left: 12px; }
.faq-item.open .faq-toggle::after { transform: rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a-inner { padding: 0 4px 26px; color: var(--muted); font-size: 16px; line-height: 1.7; max-width: 680px; }

/* ============================================================
   FOOTER  (tightened — no contact details)
   ============================================================ */
.footer { border-top: 1px solid var(--border); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 32px; margin-bottom: 48px; }
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { color: var(--muted); font-size: 14px; max-width: 280px; }
.footer-col h4 { font-size: 13px; font-weight: 700; letter-spacing: 0.04em; color: #fff; margin-bottom: 16px; text-transform: uppercase; font-family: var(--mono); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: var(--muted); font-size: 14px; }
.footer-col a:hover { color: var(--lime); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 28px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.footer-bottom p { color: var(--muted-2); font-size: 13px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border-radius: 9px; border: 1px solid var(--border); display: grid; place-items: center; color: var(--muted); transition: border-color .2s, color .2s; }
.footer-social a:hover { border-color: var(--lime); color: var(--lime); }
.footer-social svg { width: 17px; height: 17px; }

/* ============================================================
   SAMPLE CALL MODAL
   ============================================================ */
.call-overlay {
  position: fixed; inset: 0; z-index: 1000; display: none;
  background: rgba(5,5,9,0.85); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  align-items: center; justify-content: center; padding: 24px;
}
.call-overlay.open { display: flex; animation: fadeIn .3s var(--ease-out); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.call-modal {
  width: 100%; max-width: 520px; background: var(--surface); border: 1px solid var(--border-2);
  border-radius: 24px; padding: 32px; position: relative;
  box-shadow: 0 40px 120px rgba(0,0,0,0.7); animation: modalUp .4s var(--ease-out);
}
@keyframes modalUp { from { opacity: 0; transform: translateY(30px) scale(.97); } to { opacity: 1; transform: none; } }
.call-close { position: absolute; top: 18px; right: 18px; width: 34px; height: 34px; border-radius: 50%; background: var(--surface-2); border: 1px solid var(--border); color: var(--muted); cursor: pointer; font-size: 18px; line-height: 1; display: grid; place-items: center; transition: .18s; }
.call-close:hover { color: #fff; border-color: var(--border-2); }

.call-head { text-align: center; margin-bottom: 24px; }
.call-orb {
  width: 96px; height: 96px; border-radius: 50%; margin: 6px auto 18px; position: relative;
  background: conic-gradient(from 0deg, var(--lime), var(--cyan), var(--green), var(--lime));
  display: grid; place-items: center;
}
.call-orb::before { content:""; position: absolute; inset: 8px; border-radius: 50%; background: var(--surface); }
.call-orb.speaking { animation: orbPulse 1.4s ease-in-out infinite; }
@keyframes orbPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(208,255,20,0.0); } 50% { box-shadow: 0 0 0 16px rgba(208,255,20,0.08), 0 0 50px rgba(208,255,20,0.3); } }
.call-orb .call-mono { position: relative; font-family: var(--mono); font-weight: 800; font-size: 26px; color: var(--lime); letter-spacing: -0.04em; }
.call-head .call-name { font-size: 20px; font-weight: 800; letter-spacing: -0.02em; }
.call-head .call-role { color: var(--muted); font-size: 13.5px; font-family: var(--mono); margin-top: 3px; }
.call-status-row { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; font-family: var(--mono); font-size: 12px; color: var(--green); }

.call-wave { display: flex; align-items: center; justify-content: center; gap: 4px; height: 44px; margin: 22px 0; }
.call-wave i { width: 4px; border-radius: 4px; background: var(--lime); height: 16%; }
.call-wave.active i { animation: waveform 0.9s ease-in-out infinite; }

.call-caption {
  background: var(--bg); border: 1px solid var(--border); border-radius: 14px; padding: 20px;
  min-height: 110px; display: flex; align-items: center; justify-content: center; text-align: center;
}
.call-caption p { font-size: 18px; line-height: 1.55; color: #fff; font-weight: 500; }
.call-caption .cursor { display: inline-block; width: 2px; height: 1.1em; background: var(--lime); margin-left: 2px; vertical-align: text-bottom; animation: blink 1s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }

.call-disclaimer { font-size: 11.5px; color: var(--muted-2); text-align: center; margin-top: 16px; line-height: 1.5; font-family: var(--mono); }
.call-actions { display: flex; gap: 12px; margin-top: 22px; }
.call-actions .btn { flex: 1; justify-content: center; }
.call-progress { height: 3px; background: var(--border); border-radius: 3px; margin-top: 20px; overflow: hidden; }
.call-progress i { display: block; height: 100%; width: 0%; background: var(--lime); border-radius: 3px; transition: width .4s linear; }
.call-mute { background: none; border: none; color: var(--muted); cursor: pointer; font-family: var(--mono); font-size: 12px; display: inline-flex; gap: 6px; align-items: center; margin-top: 14px; }
.call-mute:hover { color: #fff; }

/* ============================================================
   STAT TRUST BAR (replaces tech logo bar)
   ============================================================ */
.statbar { display: flex; justify-content: space-around; align-items: flex-start; flex-wrap: wrap; gap: 28px; }
.stat { text-align: center; flex: 1; min-width: 120px; }
.stat-n { font-family: var(--mono); font-size: clamp(34px, 5vw, 52px); font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.stat-l { color: var(--muted); font-size: 13px; margin-top: 9px; }

.grad-cyan {
  background: linear-gradient(100deg, #5eead4, #06B6D4 45%, #3B82F6);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ============================================================
   TRIAL CALL section  (matches reference SS)
   ============================================================ */
.trial-card {
  display: grid; grid-template-columns: 1fr 1fr;
  background: linear-gradient(155deg, #14140d 0%, #101007 50%, var(--surface) 100%);
  border: 1px solid var(--border-2); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 30px 90px rgba(0,0,0,0.45);
}
.trial-left { padding: clamp(28px, 4vw, 48px); border-right: 1px solid var(--border); }
.trial-right { padding: clamp(28px, 4vw, 48px); }
.trial-badge {
  display: inline-flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: 11px;
  font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--lime);
  background: rgba(208,255,20,0.1); border: 1px solid rgba(208,255,20,0.28);
  padding: 6px 12px; border-radius: var(--r-pill); margin-bottom: 22px;
}
.trial-left h2 { font-size: clamp(28px, 3.4vw, 38px); margin-bottom: 16px; }
.trial-left > p { color: var(--muted); font-size: 16px; margin-bottom: 30px; max-width: 420px; }
.trial-steps { list-style: none; display: flex; flex-direction: column; gap: 22px; }
.trial-steps li { display: flex; gap: 16px; align-items: flex-start; }
.ts-num {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--lime);
  color: var(--lime); font-family: var(--mono); font-size: 13px; font-weight: 700;
  display: grid; place-items: center;
}
.trial-steps strong { display: block; color: #fff; font-size: 15.5px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 4px; }
.trial-steps .mono { display: block; color: var(--muted-2); font-size: 12.5px; font-family: var(--mono); }

.trial-formhead { display: inline-flex; align-items: center; gap: 9px; font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 24px; }
.radio-dot { width: 16px; height: 16px; border-radius: 50%; border: 2px solid var(--lime); position: relative; }
.radio-dot::after { content:""; position: absolute; inset: 3px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 10px var(--lime); }
#trialForm label { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin: 16px 0 8px; }
#trialForm input {
  width: 100%; background: rgba(255,255,255,0.03); border: 1px solid var(--border-2); border-radius: 10px;
  padding: 14px 16px; color: #fff; font-family: var(--sans); font-size: 15px; transition: border-color .18s, box-shadow .18s;
}
#trialForm input::placeholder { color: var(--muted-2); }
#trialForm input:focus { outline: none; border-color: var(--lime); box-shadow: 0 0 0 3px rgba(208,255,20,0.18); }
.trial-two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.trial-two label { margin-top: 16px; }
.btn-callme {
  width: 100%; margin-top: 24px; border: none; cursor: pointer; padding: 16px;
  border-radius: 12px; font-family: var(--sans); font-weight: 700; font-size: 16px; color: #0A0A0F;
  background: var(--lime);
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.btn-callme:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(208,255,20,0.35); }
.trial-warn {
  margin-top: 22px; background: rgba(245,158,11,0.07); border: 1px solid rgba(245,158,11,0.28);
  border-radius: 12px; padding: 16px 18px; font-family: var(--mono); font-size: 12px; line-height: 1.6; color: #fcd34d;
}
#trialForm .req { color: var(--lime); font-weight: 800; }
.phone-row { display: flex; gap: 8px; }
#tf-code {
  flex: 0 0 auto; width: 116px; background: rgba(255,255,255,0.03); border: 1px solid var(--border-2);
  border-radius: 10px; color: #fff; padding: 14px 10px; font-family: var(--sans); font-size: 14px; cursor: pointer;
  transition: border-color .18s, box-shadow .18s;
}
#tf-code:focus { outline: none; border-color: var(--lime); box-shadow: 0 0 0 3px rgba(208,255,20,0.18); }
#tf-code option { background: #13131A; color: #fff; }
#trialForm input.invalid, #tf-code.invalid { border-color: var(--red); box-shadow: 0 0 0 3px rgba(248,113,113,0.16); }
.field-err { display: none; font-family: var(--mono); font-size: 11px; color: #fca5a5; margin-top: 7px; }
.field-err.show { display: block; }
.trial-consent { color: var(--muted-2); font-size: 11.5px; margin-top: 14px; line-height: 1.5; text-align: center; }
.btn-callme:disabled { opacity: 0.7; cursor: progress; }
.btn-callme .spin { width: 16px; height: 16px; border: 2px solid rgba(10,10,15,0.3); border-top-color: #0A0A0F; border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* success state */
.trial-success { text-align: center; padding: 18px 6px 8px; animation: heroUp .5s var(--ease-out); }
.trial-success .ts-check {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 18px; display: grid; place-items: center;
  background: rgba(16,185,129,0.14); border: 1.5px solid var(--green); color: var(--green); font-size: 30px; font-weight: 800;
}
.trial-success h3 { font-size: 24px; margin-bottom: 10px; }
.trial-success > p { color: var(--muted); font-size: 15px; margin-bottom: 22px; }
.trial-success .dialed { color: var(--lime); font-family: var(--mono); }
.trial-success .ts-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* use-case industry top bar + tag */
.uc { position: relative; overflow: hidden; padding-top: 30px; }
.uc .topbar { position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.uc-tag {
  display: inline-block; margin-top: 18px; font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--cyan);
  border: 1px solid var(--border-2); border-radius: 7px; padding: 6px 11px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav-links, .nav-right .sign-in { display: none; }
  .hamburger { display: block; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .grid-3, .steps, .usecase-grid, .feat-grid, .pricing-grid { grid-template-columns: 1fr; }
  .bella-row { grid-template-columns: 1fr; gap: 28px; }
  .bella-row:nth-child(even) .bella-copy { order: 0; }
  .integ-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .grid-2 { grid-template-columns: 1fr; }
  .trial-card { grid-template-columns: 1fr; }
  .trial-left { border-right: none; border-bottom: 1px solid var(--border); padding-right: 0; }
  .statbar { gap: 24px; flex-wrap: wrap; }
  .stat { min-width: 40%; }
  .mobile-menu.open { display: block; position: fixed; top: 72px; left: 0; right: 0; background: #0e0e15; border-bottom: 1px solid var(--border); padding: 18px 24px 24px; z-index: 99; }
  .mobile-menu.open a { display: block; padding: 13px 0; color: #fff; font-size: 16px; border-bottom: 1px solid var(--border); }
  .mobile-menu.open .btn { width: 100%; justify-content: center; margin-top: 16px; }
  /* Comparison table: allow horizontal scroll on tablet */
  .compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .compare { min-width: 560px; }
  /* Callcard: shrink on tablet */
  .callcard { width: 100%; max-width: 420px; margin: 0 auto; }
  /* Hero CTA: stack on small tablet */
  .hero-cta { flex-wrap: wrap; gap: 12px; }
  .hero-checks { flex-wrap: wrap; gap: 10px 20px; }
  /* Section padding reduce */
  .section { padding: 64px 0; }
}

@media (max-width: 560px) {
  /* Typography scale-down */
  .h1 { font-size: 40px; }
  .h2 { font-size: 28px; }
  .hero-sub { font-size: 15px; }

  /* Nav: reduce padding */
  .nav-inner { padding: 0 16px; }
  .container { padding: 0 16px; }

  /* Hero: tighter */
  .hero { padding: 100px 0 48px; }
  .hero-inner { gap: 28px; }
  .live-pill { font-size: 11px; padding: 6px 12px; }

  /* Buttons: full-width stacked */
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { text-align: center; justify-content: center; width: 100%; }

  /* Stats bar: 2×2 grid */
  .statbar { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat { min-width: unset; }
  .stat-n { font-size: 28px; }

  /* Problem / step cards */
  .card { padding: 24px; }
  .step { padding: 24px; }

  /* Trial form */
  .trial-card { padding: 24px; }
  .trial-two { grid-template-columns: 1fr; gap: 0; }
  .phone-row { gap: 8px; }
  .phone-row select { max-width: 100px; font-size: 13px; }
  .btn-callme { font-size: 15px; padding: 14px; }

  /* Pricing tiers */
  .tier { padding: 28px 20px; }

  /* Footer: single column */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-col { border-top: 1px solid var(--border); padding-top: 20px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }

  /* Comparison table */
  .compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .compare { min-width: 480px; }
  .compare th, .compare td { padding: 10px 12px; font-size: 13px; }

  /* Section padding */
  .section { padding: 52px 0; }
  .section-head { margin-bottom: 32px; }
  .section-head p { font-size: 15px; }

  /* Feature grid: 1 col already, fix icon size */
  .ic { width: 44px; height: 44px; border-radius: 10px; }

  /* FAQ */
  .faq-q { font-size: 15px; padding: 16px 0; }

  /* Final CTA */
  .finalcta-card { padding: 40px 20px; }
  .finalcta-card .h2 { font-size: 30px; }
}
