/* ============================================================
   Callerbot — AI Receptionist for Car Dealerships
   Design tokens — deliberately distinct from the dental page:
   deep automotive navy, metallic silver, electric blue accent,
   controlled red/orange for CTA & urgency only.
   ============================================================ */
:root{
  --navy:      #07182F;
  --navy-2:    #102A4A;
  --navy-3:    #173B63;
  --silver:    #B7C6D8;
  --steel:     #F2F6FA;
  --white:     #FFFFFF;
  --ink:       #102238;
  --muted:     #53657A;
  --blue:      #1478E8;
  --blue-dark: #0758B8;
  --cta:       #E84B2A;
  --cta-dark:  #C9381B;
  --line:      #D7E1EC;
  --line-dark: #284665;
  --launch-ribbon-height: 0px;

  --font-head: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-s: 8px;
  --radius-m: 16px;
  --max-w: 1200px;
}

*, *::before, *::after{ box-sizing:border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--steel);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
.wrap{ max-width: var(--max-w); margin:0 auto; padding: 0 28px; }
.launch-ribbon{
  position:sticky; top:0; z-index:60;
  background: var(--navy);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.launch-ribbon-inner{
  min-height: 48px;
  display:flex; align-items:center; justify-content:center; gap:18px;
  font-size:.86rem;
}
.launch-ribbon strong{
  color:var(--white); background:var(--cta); border-radius:999px; padding:5px 11px;
  font-family:var(--font-head); font-size:.82rem; letter-spacing:.05em; white-space:nowrap;
}
.launch-ribbon a{
  color:var(--white); background:var(--urgency, #EF4444); font-weight:700; white-space:nowrap; padding:8px 12px;
  border:1px solid transparent; border-radius:12px;
  box-shadow:0 5px 14px rgba(239,68,68,.24);
  transition:transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.launch-ribbon a:hover{ background:#D93636; transform:translateY(-1px); box-shadow:0 8px 18px rgba(239,68,68,.32); }
h1,h2,h3{
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}
h1{ font-size: clamp(2.3rem, 4vw, 3.4rem); }
h2{ font-size: clamp(1.7rem, 2.6vw, 2.2rem); }
h3{ font-size: 1.1rem; }
p{ margin: 0 0 1em; }
.lede{ font-size: 1.1rem; color: var(--muted); max-width: 48ch; }

.btn{
  display:inline-flex; align-items:center; gap:.5em;
  padding: 13px 28px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  border: 1px solid transparent;
  cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover{ transform: translateY(-1px); }
.btn-primary{
  background:#F45132; color:#FFFFFF; border-color:transparent;
  box-shadow:0 8px 18px rgba(244,81,50,.24);
}
.btn-primary:hover{ background:#D94127; box-shadow:0 11px 24px rgba(244,81,50,.34); }
.btn-outline{
  background:#FFFFFF; color:var(--navy); border-color:var(--navy);
  box-shadow:0 4px 12px rgba(10,22,40,.1);
}
.btn-outline:hover{ border-color:var(--blue); background:#EFF6FF; color:var(--navy); box-shadow:0 7px 16px rgba(29,78,216,.16); }
.btn-outline-dark{
  background:#FFFFFF; color:var(--navy); border-color:var(--navy);
  box-shadow:0 4px 12px rgba(10,22,40,.1);
}
.btn-outline-dark:hover{ background:#EFF6FF; color:var(--navy); border-color:var(--blue); box-shadow:0 7px 16px rgba(29,78,216,.16); }
.btn:active{ transform:translateY(1px); }
.btn-block{ width:100%; justify-content:center; }
.btn svg{ width:16px; height:16px; }

/* ---------- Header / Nav ---------- */
header.site{
  position: sticky; top:var(--launch-ribbon-height); z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--line-dark);
}
header.site .wrap{ display:flex; align-items:center; justify-content:space-between; height: 56px; padding: 0 24px; }
.logo{ display:flex; align-items:center; gap:9px; font-family: var(--font-head); font-size:1.2rem; font-weight:600; color: var(--navy); }
.logo .mark{
  width:28px; height:28px;
  flex-shrink:0; object-fit:contain;
}
nav.site-nav{ display:flex; align-items:center; gap: 26px; }
nav.site-nav a{ font-size:.95rem; color: var(--muted); }
nav.site-nav a:hover{ color: var(--navy); }
nav.site-nav a.cta{
  background:#F45132; color:#FFFFFF; font-weight:700;
  padding: 9px 16px; border-radius: 12px;
  box-shadow:0 5px 14px rgba(244,81,50,.22);
  transition:transform .15s ease, background .15s ease, box-shadow .15s ease;
}
nav.site-nav a.cta:hover{ background:#D94127; transform:translateY(-1px); box-shadow:0 8px 18px rgba(244,81,50,.32); }
.nav-toggle{ display:none; background:none; border:none; color:var(--navy); font-size:1.6rem; cursor:pointer; }
@media (max-width: 860px){
  nav.site-nav a:not(.cta){ display:none; }
  nav.site-nav{ gap: 14px; }
}
@media (max-width: 420px){
  header.site .wrap{ padding: 0 18px; }
}

/* ---------- Hero ---------- */
.hero{
  background: var(--navy);
  color: var(--white);
  padding: 48px 0 84px;
  position: relative;
  overflow: hidden;
}
.hero::after{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(120deg, rgba(20,120,232,.18), transparent 42%),
    radial-gradient(circle at 90% 15%, rgba(20,120,232,.3), transparent 40%);
  pointer-events:none;
}
.hero .wrap{ position:relative; display:grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items:center; }
.hero-copy{ align-self: start; padding-top: 52px; }
@media (max-width: 940px){
  .hero .wrap{ grid-template-columns: 1fr; }
  .hero-copy{ padding-top: 0; }
}

.hero-copy h1{ color: var(--white); }
.hero-copy h1 .accent{ color: var(--blue); }
.hero-copy .lede{ color: var(--silver); }
.hero-actions{ display:flex; gap:14px; flex-wrap:wrap; margin: 26px 0 24px; }
.hero-actions .btn-primary{ padding:15px 34px; font-size:1.05rem; box-shadow:0 12px 26px rgba(244,81,50,.3); }
.hero-bullets{ list-style:none; padding:0; margin:0; display:grid; grid-template-columns: 1fr 1fr; gap: 10px 22px; }
.hero-bullets li{ font-size:.92rem; color: var(--silver); display:flex; align-items:center; gap:8px; }
.hero-bullets li::before{ content:"✓"; color: var(--blue); font-weight:700; }
@media (max-width: 480px){ .hero-bullets{ grid-template-columns: 1fr; } }

/* Hero visual: car photo + floating UI cards */
.hero-visual{ position:relative; }
.hero-photo{
  border-radius: var(--radius-m);
  overflow:hidden;
  border: 1px solid var(--line-dark);
  aspect-ratio: 4/5;
  position: relative;
}
.hero-photo img{ width:100%; height:100%; object-fit:cover; }
.hero-photo::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(10,14,26,0) 40%, rgba(10,14,26,.85) 100%);
}
.ui-card{
  position:absolute;
  background: rgba(19,26,44,.92);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  padding: 12px 14px;
  min-width: 200px;
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
}
.ui-card .k{ font-size:.72rem; color: var(--blue); font-weight:600; text-transform:uppercase; letter-spacing:.04em; margin-bottom:3px; display:flex; align-items:center; gap:6px; }
.ui-card .k .dot{ width:6px; height:6px; border-radius:50%; background: var(--blue); }
.ui-card .v{ font-size:.9rem; color: var(--white); font-weight:500; }
.card-call{ top: 6%; left: -8%; }
.card-lead{ top: 32%; right: -10%; }
.card-appt{ bottom: 20%; left: -10%; }
.card-handoff{ bottom: -3%; right: -6%; }
.card-handoff .k{ color: var(--cta); }
.card-handoff .k .dot{ background: var(--cta); }
@media (max-width: 940px){
  .ui-card{ min-width: 160px; padding:10px 12px; }
  .card-call{ left: 4%; }
  .card-lead{ right: 4%; }
  .card-appt{ left: 4%; }
  .card-handoff{ right: 4%; }
}
@media (max-width: 560px){
  .ui-card{ position:static; margin-top: 10px; width:100%; }
  .hero-visual .ui-card{ display:inline-block; width: calc(50% - 6px); margin-right: 6px; }
}

/* ---------- Hero value snapshot strip ---------- */
.snapshot{ background: var(--navy-2); border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.snapshot .wrap{ display:grid; grid-template-columns: repeat(3,1fr); }
@media (max-width: 760px){ .snapshot .wrap{ grid-template-columns: 1fr; } }
.snap-item{ padding: 26px 20px; text-align:center; border-right: 1px solid var(--line-dark); }
.snap-item:last-child{ border-right:none; }
@media (max-width: 760px){ .snap-item{ border-right:none; border-bottom:1px solid var(--line-dark); } .snap-item:last-child{ border-bottom:none; } }
.snap-figure{ font-family: var(--font-head); font-size: 1.9rem; color: var(--white); }
.snap-label{ font-size:.85rem; color: var(--silver); margin-top:4px; }

/* ---------- Section shared ---------- */
section{ padding: 68px 0; }
.section-head{ max-width: 62ch; margin-bottom: 40px; }
.band-white{ background: var(--white); }
.band-navy{ background: var(--navy); color: var(--white); }
.band-navy h2, .band-navy .lede, .band-navy p{ color: var(--white); }
.band-navy .lede{ color: var(--silver); }
#roi .section-head{ max-width:62ch; margin:0 auto 32px; text-align:center; }
#roi .section-head .lede{ margin:0 auto; }

/* ---------- Testimonial marquee ---------- */
.testimonial-marquee{ overflow:hidden; width:100%; }
.testimonial-track{
  display:flex; width:200%;
  animation:testimonial-scroll 36s linear infinite;
}
.testimonial-marquee:hover .testimonial-track,
.testimonial-marquee:focus-within .testimonial-track,
.testimonial-marquee.is-touching .testimonial-track{ animation-play-state:paused; }
.testimonial-card{
  flex:0 0 16.6667%; min-width:0; margin:0; padding:30px 26px 26px;
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius-m);
  box-shadow:0 10px 24px rgba(10,14,26,.07); position:relative;
  transition:transform .2s ease, box-shadow .2s ease;
}
.testimonial-card:hover{ transform:translateY(-4px); box-shadow:0 16px 30px rgba(10,14,26,.12); }
.testimonial-stars{ color:var(--blue); font-size:.9rem; letter-spacing:.12em; margin-bottom:14px; }
.testimonial-quote{ color:var(--blue); font-family:Georgia,serif; font-size:4rem; line-height:.7; position:absolute; top:29px; right:25px; opacity:.18; }
.testimonial-card blockquote{ margin:0 0 24px; color:var(--ink); font-size:.95rem; line-height:1.55; min-height:120px; }
.testimonial-author{ display:flex; align-items:center; gap:11px; color:var(--ink); }
.testimonial-author strong{ display:block; font-size:.88rem; }
.testimonial-author small{ display:block; color:var(--muted); font-size:.76rem; line-height:1.35; margin-top:2px; }
.testimonial-avatar{
  width:36px; height:36px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  flex-shrink:0; background:var(--navy); color:var(--white); font-family:var(--font-head); font-size:.72rem; font-weight:700;
}
@keyframes testimonial-scroll{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }
@media (max-width: 980px){ .testimonial-card{ flex-basis:25%; } }
@media (max-width: 640px){
  .testimonial-track{ animation-duration:30s; }
  .testimonial-card{ flex-basis:50%; padding:24px 20px 22px; }
  .testimonial-card blockquote{ min-height:150px; font-size:.9rem; }
}
@media (prefers-reduced-motion: reduce){ .testimonial-track{ animation:none; } .testimonial-card{ transition:none; } }

/* ---------- Calculator ---------- */
.calc{
  display:grid; grid-template-columns: 1fr 1fr;
  background: var(--white); border:1px solid var(--line); border-radius: var(--radius-m);
  overflow:hidden; max-width:1000px; margin:0 auto;
}
@media (max-width: 900px){ .calc{ grid-template-columns:1fr; } }
.calc-inputs{ padding: 26px; }
.field{ margin-bottom: 16px; }
.field label{ display:flex; justify-content:space-between; font-size:.9rem; margin-bottom:8px; }
.field label .val{ font-weight:700; color: var(--blue-dark); font-variant-numeric: tabular-nums; }
input[type="range"]{ width:100%; accent-color: var(--blue); }
input[type="number"]{
  width:100%; padding:10px 12px; border:1px solid var(--line); border-radius: var(--radius-s);
  font-family: var(--font-body); font-size:1rem; background: var(--steel);
}
.calc-results{ background: var(--navy); color: var(--white); padding: 26px; display:flex; flex-direction:column; justify-content:center; }
.calc-results .row{ display:flex; justify-content:space-between; align-items:baseline; padding: 9px 0; border-bottom: 1px solid var(--line-dark); }
.calc-results .row:last-of-type{ border-bottom:none; }
.calc-results .row .amt{ font-family: var(--font-head); font-size:1.35rem; font-variant-numeric: tabular-nums; }
.calc-results .headline-row .amt{ font-size:1.9rem; color: var(--blue); }
.calc-results .row .lab{ font-size:.86rem; color: var(--silver); max-width: 22ch; }
.calc-note{ font-size:.75rem; color: var(--silver); margin-top:14px; }
.calc-disclaimer{ font-size:.8rem; color: var(--muted); margin-top: 16px; }

/* ---------- Staffing scenario grid ---------- */
.scenario-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
@media (max-width: 860px){ .scenario-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .scenario-grid{ grid-template-columns: 1fr; } }
.scenario{ background: var(--navy-2); border:1px solid var(--line-dark); border-radius: var(--radius-s); padding: 18px 20px; font-size:.92rem; color: var(--silver); }
.scenario strong{ display:block; color: var(--white); font-family: var(--font-head); font-size:.98rem; margin-bottom: 4px; font-weight:600; }

/* ---------- Capability grid ---------- */
.cap-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
@media (max-width: 940px){ .cap-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .cap-grid{ grid-template-columns: 1fr; } }
.cap-card{ background: var(--white); border:1px solid var(--line); border-radius: var(--radius-m); padding: 22px; }
.cap-card .ic{
  width:38px; height:38px; border-radius:10px; background: rgba(47,111,237,.1);
  display:flex; align-items:center; justify-content:center; color: var(--blue); margin-bottom: 12px;
}
.cap-card h3{ font-size:1rem; margin-bottom:6px; }
.cap-card p{ font-size:.88rem; color: var(--muted); margin:0; }

/* ---------- Use case cards ---------- */
.usecase-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 860px){ .usecase-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .usecase-grid{ grid-template-columns: 1fr; } }
.usecase{
  position: relative;
  border-radius: var(--radius-m);
  padding: 24px;
  background: var(--navy-2);
  border: 1px solid var(--line-dark);
  overflow: hidden;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
/* subtle automotive-dashboard accent edge */
.usecase::before{
  content:"";
  position:absolute; top:0; left:0; right:0; height:2px;
  background: linear-gradient(90deg, var(--blue), rgba(47,111,237,0) 72%);
  opacity:.5;
}
.usecase:hover{
  border-color: rgba(47,111,237,.55);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,.28);
}
.usecase .uc-ic{
  width:38px; height:38px; border-radius:10px;
  background: linear-gradient(135deg, rgba(47,111,237,.20), rgba(47,111,237,.07));
  border: 1px solid rgba(47,111,237,.28);
  display:flex; align-items:center; justify-content:center;
  color: var(--blue); margin-bottom: 14px;
}
.usecase h3{ color: var(--white); font-size:1.05rem; margin-bottom:6px; }
.usecase p{ color: var(--silver); font-size:.9rem; margin:0; }

/* ---------- Trust / value row ---------- */
.trust-row{
  list-style:none; margin: 36px 0 0; padding: 22px 0 0;
  border-top: 1px solid var(--line-dark);
  display:grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 16px 24px;
}
.trust-row li{
  display:flex; align-items:center; gap:10px;
  font-size:.88rem; color: var(--silver); font-weight:500;
}
.trust-row li svg{ color: var(--blue); flex-shrink:0; }

/* ---------- Sample call ---------- */
.sample-call{ display:flex; align-items:center; gap: 22px; background: var(--white); border:1px solid var(--line); border-radius: var(--radius-m); padding: 26px 30px; flex-wrap:wrap; }
.play-btn{
  width: 56px; height:56px; border-radius:50%; background: var(--blue); color:var(--white);
  border:none; display:flex; align-items:center; justify-content:center; cursor:pointer; flex-shrink:0;
  transition: transform .15s ease, background .15s ease;
}
.play-btn:hover{ transform: scale(1.05); background: var(--blue-dark); }
.play-btn:disabled{ background: var(--line); color: var(--muted); cursor:not-allowed; transform:none; }
.play-btn svg{ width:20px; height:20px; }
.sample-info{ flex:1; min-width: 220px; }
.sample-info .lab{ font-size:.78rem; color: var(--blue); font-weight:700; text-transform:uppercase; letter-spacing:.04em; margin-bottom:4px; }
.sample-progress{ height:6px; background: var(--steel); border-radius:3px; margin-top: 12px; overflow:hidden; }
.sample-progress-bar{ height:100%; width:0%; background: var(--blue); transition: width .1s linear; }

/* ---------- 4-step flow ---------- */
.steps4{ display:grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
@media (max-width: 860px){ .steps4{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px){ .steps4{ grid-template-columns: 1fr; } }
.step4{ text-align:left; }
.step4 .n{
  display:flex; align-items:center; justify-content:center;
  width:36px; height:36px; border-radius:10px;
  background: var(--blue); color:var(--white);
  font-family: var(--font-head); font-weight:700; margin-bottom: 14px;
}
.step4 p{ color: var(--muted); font-size:.9rem; }

/* ---------- Comparison ---------- */
.compare-scroll{ overflow-x:auto; }
.compare{ width:100%; border-collapse:collapse; background: var(--white); border-radius: var(--radius-m); overflow:hidden; border:1px solid var(--line); min-width: 560px; }
.compare th, .compare td{ padding: 15px 20px; text-align:left; border-bottom:1px solid var(--line); font-size:.94rem; }
.compare th{ background: var(--steel); font-family: var(--font-head); font-weight:600; }
.compare tr:last-child td{ border-bottom:none; }
.compare td.trad{ color: var(--muted); }
.compare td.cb{ color: var(--blue-dark); font-weight:600; }

/* ---------- Pricing ---------- */
.pricing-heading{ max-width:62ch; margin:0 auto 34px; text-align:center; }
.pricing-heading .lede{ margin:0 auto; }
.launch-badge{
  display:inline-block; margin-bottom:14px; padding:6px 12px; border-radius:999px;
  color:var(--blue-dark); background:#DCE7FF; font-size:.76rem; font-weight:700;
  text-transform:uppercase; letter-spacing:.06em;
}
.pricing-grid{ display:grid; grid-template-columns:repeat(3, minmax(0, 1fr)); gap:20px; align-items:stretch; }
.pricing-plan{
  min-width:0; margin:0; padding:30px 26px 26px;
  background:var(--steel); color:var(--ink); border:1px solid var(--line);
  border-radius:var(--radius-m); display:flex; flex-direction:column; min-height:320px;
  box-shadow:0 10px 24px rgba(16,34,56,.06);
}
.pricing-plan-pro{ border:2px solid var(--blue); box-shadow:0 16px 32px rgba(20,120,232,.16); transform:translateY(-6px); }
.popular-badge{
  align-self:flex-end; margin:-8px 0 10px; padding:6px 10px; border-radius:999px;
  background:var(--blue); color:var(--white); font-size:.7rem; font-weight:700;
  letter-spacing:.08em; text-transform:uppercase;
}
.plan-kicker{ color:var(--blue); font-size:.75rem; font-weight:700; text-transform:uppercase; letter-spacing:.1em; }
.pricing-plan h3{ color:var(--ink); font-size:1.35rem; margin:6px 0 14px; }
.price-reference{ color:var(--muted); font-size:.68rem; line-height:1.3; margin-bottom:4px; }
.price-original{ color:var(--muted); font-family:var(--font-head); font-size:1.1rem; text-decoration:line-through; }
.price-original span{ font-family:var(--font-body); font-size:.8rem; }
.discount-label{ color:var(--cta-dark); font-size:.75rem; font-weight:700; letter-spacing:.08em; margin:5px 0 2px; }
.price-figure{ font-family: var(--font-head); font-size: 2.2rem; color: var(--navy); white-space:nowrap; }
.price-figure span{ display:block; font-size:1rem; color: var(--muted); font-family: var(--font-body); }
.price-list{ list-style:none; margin: 12px 0 0; padding:0; font-size:.84rem; }
.price-list li{ padding: 4px 0 4px 22px; position:relative; color: var(--muted); }
.price-list li::before{ content:"✓"; position:absolute; left:0; color: var(--blue); font-weight:700; }
.pricing-plan .btn{ margin-top:auto; }
.plan-copy{ color:var(--muted); font-size:.92rem; margin:18px 0; }
.pricing-footnote{ margin-top:28px; text-align:center; color:var(--muted); font-size:.92rem; font-weight:600; }
.pricing-sales-message{ margin:10px auto 0; text-align:center; color:var(--muted); font-size:.92rem; }
@media (max-width: 640px){
  .launch-ribbon-inner{ min-height:64px; padding-top:8px; padding-bottom:8px; gap:7px 12px; flex-wrap:wrap; line-height:1.25; }
  .launch-ribbon-inner span{ flex:1 1 100%; text-align:center; order:3; font-size:.78rem; }
  .pricing-plan{ min-height:320px; padding:22px 18px 18px; }
  .pricing-plan-pro{ transform:none; }
}
@media (max-width: 900px){ .pricing-grid{ grid-template-columns:1fr; max-width:560px; margin:0 auto; } }

/* ---------- ROI message ---------- */
.roi-compare{ display:flex; align-items:center; gap: 26px; flex-wrap:wrap; justify-content:center; }
.roi-box{ flex:1; min-width: 220px; background: var(--white); border:1px solid var(--line); border-radius: var(--radius-m); padding: 26px; text-align:center; }
.roi-box .amt{ font-family: var(--font-head); font-size: 2rem; color: var(--ink); }
.roi-box .lab{ font-size:.85rem; color: var(--muted); margin-top:6px; }
.roi-vs{ font-family: var(--font-head); font-size:1.3rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq{ max-width: 780px; }
.faq-item{ border-bottom: 1px solid var(--line); }
.faq-q{
  width:100%; text-align:left; background:none; border:none; cursor:pointer;
  padding: 18px 4px; display:flex; justify-content:space-between; align-items:center;
  font-family: var(--font-head); font-size:1rem; font-weight:600; color: var(--ink);
}
.faq-q .plus{ font-size:1.3rem; color: var(--blue); transition: transform .2s ease; flex-shrink:0; margin-left: 16px; }
.faq-item.open .plus{ transform: rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition: max-height .25s ease; }
.faq-a p{ padding: 0 4px 18px; color: var(--muted); font-size:.94rem; margin:0; }

/* ---------- Final CTA ---------- */
.final-cta{ background: linear-gradient(135deg, var(--navy), var(--navy-3)); color:var(--white); text-align:center; padding: 72px 0; }
.final-cta h2{ color:var(--white); }
.final-cta .lede{ color: var(--silver); margin: 0 auto 26px; text-align:center; }
.final-cta .actions{ display:flex; gap: 14px; justify-content:center; flex-wrap:wrap; }

/* ---------- Footer ---------- */
footer.site{ background: var(--navy); color: var(--silver); padding: 48px 0 100px; font-size:.88rem; border-top: 1px solid var(--line-dark); }
footer.site .wrap{ display:flex; flex-wrap:wrap; justify-content:space-between; gap: 32px; }
footer.site .brand{ color: var(--white); font-family: var(--font-head); font-size:1.1rem; margin-bottom:8px; }
footer.site .col a{ display:block; color: var(--silver); padding: 4px 0; font-size:.88rem; }
footer.site .col a:hover{ color: var(--white); }
footer.site .col h4{ color:var(--white); font-size:.82rem; text-transform:uppercase; letter-spacing:.05em; margin-bottom:10px; }
footer.site .badges{ display:flex; gap:10px; flex-wrap:wrap; margin-top:14px; }
footer.site .badge{ border:1px solid var(--line-dark); border-radius:999px; padding:5px 12px; font-size:.76rem; }
footer.site .fine{ margin-top:26px; font-size:.76rem; color:#6E7690; max-width:75ch; }
@media (max-width: 760px){ footer.site{ padding-bottom: 110px; } }

/* ---------- Sticky mobile CTA ---------- */
.mobile-cta{
  display:none;
  position: fixed; left:0; right:0; bottom:0; z-index: 60;
  background: var(--navy); border-top: 1px solid var(--line-dark);
  padding: 12px 16px; padding-bottom: calc(12px + env(safe-area-inset-bottom));
}
@media (max-width: 760px){ .mobile-cta{ display:block; } }

:focus-visible{ outline: 2px solid var(--blue); outline-offset:2px; }

/* ============================================================
   Special offer popup (conversion modal)
   Additive only — overlays the page via fixed positioning,
   never enters the normal document flow.
   ============================================================ */
.offer-modal{
  position: fixed; inset: 0; z-index: 1000;
  display: flex;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 28px 16px;
  pointer-events: none;
}
.offer-modal[hidden]{ display: none; }
.offer-modal.is-open{ pointer-events: auto; }

.offer-modal__backdrop{
  position: fixed; inset: 0;
  background: rgba(6, 15, 27, .66);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity .25s ease;
}
.offer-modal.is-open .offer-modal__backdrop{ opacity: 1; }

.offer-modal__dialog{
  position: relative;
  margin: auto;
  width: min(540px, 100%);
  border-radius: 22px;
  padding: 46px 40px 36px;
  color: var(--silver);
  background:
    radial-gradient(130% 120% at 0% -10%, rgba(20, 120, 232, .28), transparent 46%),
    linear-gradient(165deg, #123059 0%, #071a33 62%);
  border: 1px solid rgba(126, 168, 232, .24);
  box-shadow:
    0 44px 100px -24px rgba(0, 0, 0, .62),
    0 0 44px -10px rgba(20, 120, 232, .4),
    inset 0 1px 0 rgba(255, 255, 255, .06);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .26s ease, transform .26s cubic-bezier(.2, .8, .2, 1);
}
.offer-modal.is-open .offer-modal__dialog{ opacity: 1; transform: none; }
.offer-modal__dialog:focus{ outline: none; }

.offer-modal__close{
  position: absolute; top: 12px; right: 12px;
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border: none; border-radius: 999px;
  background: rgba(255, 255, 255, .06); color: var(--silver);
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.offer-modal__close:hover{ background: rgba(255, 255, 255, .15); color: var(--white); }
.offer-modal__close:focus-visible{ outline: 2px solid var(--blue); outline-offset: 2px; }

.offer-modal__badge{
  position: absolute; top: -15px; left: 30px; z-index: 2;
  display: inline-flex; align-items: center;
  padding: 9px 16px;
  font-family: var(--font-head); font-weight: 700;
  font-size: .8rem; letter-spacing: .09em;
  color: var(--white);
  background: linear-gradient(135deg, #ff5c37, #e5401f);
  border-radius: 999px;
  box-shadow: 0 12px 26px -6px rgba(232, 75, 42, .6);
  animation: offer-badge-pulse 2.4s ease-in-out infinite;
}
@keyframes offer-badge-pulse{
  0%, 100% { box-shadow: 0 12px 26px -6px rgba(232, 75, 42, .55), 0 0 0 0 rgba(232, 75, 42, .3); }
  50%      { box-shadow: 0 14px 30px -4px rgba(232, 75, 42, .7),  0 0 0 9px rgba(232, 75, 42, 0); }
}

.offer-modal__eyebrow{
  margin: 6px 0 0;
  font-family: var(--font-head); font-weight: 700;
  font-size: .74rem; letter-spacing: .18em; text-transform: uppercase;
  color: #7fb0ff;
}
.offer-modal__headline{
  margin: 9px 0 0;
  font-family: var(--font-head); font-weight: 600;
  font-size: 1.62rem; line-height: 1.16; letter-spacing: -.01em;
  color: var(--white);
}
.offer-modal__text{
  margin: 12px 0 0;
  font-size: .95rem; line-height: 1.55; color: var(--silver);
}
.offer-modal__urgency{
  display: flex; align-items: center; gap: 9px;
  margin: 14px 0 0;
  font-family: var(--font-head); font-weight: 600;
  font-size: .9rem; color: var(--white);
}
.offer-modal__spark{
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(232, 75, 42, .18); color: #ff7a58;
}
.offer-modal__offer{
  display: flex; align-items: center; gap: 12px;
  margin: 20px 0 0; padding: 13px 16px;
  background: rgba(20, 120, 232, .12);
  border: 1px solid rgba(20, 120, 232, .32);
  border-radius: 12px;
  color: var(--white);
}
.offer-modal__offer svg{ flex-shrink: 0; color: #59a2ff; }
.offer-modal__offer strong{
  display: block;
  font-family: var(--font-head); font-weight: 700; font-size: .92rem;
}
.offer-modal__offer-sub{
  display: block; margin-top: 1px;
  font-size: .78rem; font-weight: 400; color: var(--silver);
}

.offer-modal__actions{
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 22px;
}
.offer-modal__actions .btn{ width: 100%; justify-content: center; }
.offer-modal__actions .btn-primary{
  padding-top: 16px; padding-bottom: 16px;
  font-size: 1.03rem;
  background:#F45132; color:#FFFFFF;
  box-shadow: 0 14px 30px -8px rgba(244, 81, 50, .42);
  position: relative; overflow: hidden;
}
.offer-modal__actions .btn-primary:hover{ background:#D94127; box-shadow:0 17px 34px -8px rgba(244,81,50,.5); }
.offer-modal__actions .btn-primary::after{
  content: "";
  position: absolute; top: 0; left: -60%;
  width: 38%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .38), transparent);
  transform: skewX(-18deg);
  animation: offer-sheen 3.6s ease-in-out infinite;
}
@keyframes offer-sheen{
  0%, 64% { left: -60%; }
  100%    { left: 130%; }
}

html.offer-modal-open{ overflow: hidden; }

@media (max-width: 560px){
  .offer-modal{ padding: 24px 16px; }
  .offer-modal__dialog{ padding: 42px 22px 26px; border-radius: 20px; }
  .offer-modal__badge{ left: 22px; }
  .offer-modal__headline{ font-size: 1.4rem; }
}

@media (prefers-reduced-motion: reduce){
  .offer-modal__backdrop,
  .offer-modal__dialog{ transition-duration: 1ms; }
  .offer-modal__dialog{ transform: none; }
  .offer-modal__badge{ animation: none; }
  .offer-modal__actions .btn-primary::after{ display: none; }
}
