/* ============================================================
   AtlantaCarAccidentReports.com — consumer-watchdog civic style
   ============================================================ */
:root {
  --paper: #faf7f2;
  --paper-2: #f3efe7;
  --ink: #131b26;
  --navy: #0b2545;
  --slate: #46536a;
  --caution: #ffd60a;
  --caution-dark: #c7a600;
  --alert: #d92d20;
  --alert-bg: #fef3f2;
  --safe: #0ea55e;
  --safe-dark: #0b7f49;
  --safe-bg: #e8f6ef;
  --pop: #ff5a1f;
  --line: #e4ddd0;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(19, 27, 38, 0.10);
  --shadow-lg: 0 24px 60px rgba(19, 27, 38, 0.16);
  --font-display: "Archivo", system-ui, sans-serif;
  --font-body: "Public Sans", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; letter-spacing: -0.015em; }

/* ---------- utility strip ---------- */
.utility-strip {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 8px 16px;
}

/* ---------- scrolling ticker ---------- */
.ticker {
  display: block; overflow: hidden; white-space: nowrap;
  background: var(--navy); text-decoration: none;
  border-bottom: 2px solid var(--pop);
}
.ticker-track {
  display: inline-flex; width: max-content;
  animation: ticker-scroll 40s linear infinite;
  /* promote to its own GPU layer so the text doesn't repaint/shimmer each frame */
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-group { display: inline-flex; align-items: center; }
.ticker-item {
  color: #fff; font-size: 0.85rem; font-weight: 600;
  padding: 9px 20px; letter-spacing: 0.01em;
}
.ticker-item b { color: var(--caution); font-weight: 800; }
.ticker-sep { color: var(--pop); font-size: 0.6rem; align-self: center; }
@keyframes ticker-scroll { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(-50%, 0, 0); } }
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; }
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--caution); color: var(--ink);
  font-size: 1.15rem; font-weight: 900;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,.18);
}
.brand-text b { color: var(--alert); }
.brand-text .tld { color: var(--slate); font-weight: 600; }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-family: var(--font-display); font-weight: 800; border-radius: 999px; transition: transform .15s ease, box-shadow .15s ease, background .15s ease; }
.btn:active { transform: scale(.98); }
.btn-call { background: var(--safe); color: #fff; box-shadow: 0 6px 18px rgba(14, 165, 94, 0.4), inset 0 -3px 0 rgba(0,0,0,.18); }
.btn-call:hover { background: var(--safe-dark); transform: translateY(-2px); }
.btn-header { padding: 8px 18px; font-size: 0.95rem; border: 3px solid var(--pop); }
.btn-header .num-sub { font-size: 0.62em; }
.i-phone { width: 1.15em; height: 1.15em; flex-shrink: 0; }

.btn-giant { padding: 18px 30px; font-size: 1.35rem; width: 100%; justify-content: center; border: 4px solid var(--pop); }
.btn-giant .i-phone { width: 1.5em; height: 1.5em; }
.num-stack { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.15; }
.num-main { font-size: 1.15em; letter-spacing: 0.01em; }
.num-sub { font-size: 0.62em; font-weight: 700; opacity: 0.92; }

@keyframes pulse-ring {
  0% { box-shadow: 0 6px 18px rgba(14,165,94,.4), inset 0 -3px 0 rgba(0,0,0,.18), 0 0 0 0 rgba(14,165,94,.5); }
  70% { box-shadow: 0 6px 18px rgba(14,165,94,.4), inset 0 -3px 0 rgba(0,0,0,.18), 0 0 0 18px rgba(14,165,94,0); }
  100% { box-shadow: 0 6px 18px rgba(14,165,94,.4), inset 0 -3px 0 rgba(0,0,0,.18), 0 0 0 0 rgba(14,165,94,0); }
}
.pulse { animation: pulse-ring 2.4s infinite; }
@media (prefers-reduced-motion: reduce) { .pulse { animation: none; } html { scroll-behavior: auto; } }

/* ---------- hero ---------- */
.hero { padding: 64px 0 40px; position: relative; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 380px at 85% 0%, rgba(255, 196, 0, 0.14), transparent 60%),
    radial-gradient(600px 400px at 0% 100%, rgba(11, 37, 69, 0.06), transparent 60%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; position: relative; }
.kicker {
  display: inline-block;
  font-weight: 800; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.09em;
  color: var(--ink);
  background: var(--caution);
  padding: 6px 14px; border-radius: 6px;
  margin-bottom: 18px;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,.15);
}
.hero h1 { font-size: clamp(2rem, 4.4vw, 3.3rem); font-weight: 900; margin-bottom: 18px; color: var(--navy); }
.hero h1 .hl {
  text-decoration: underline;
  text-decoration-color: var(--caution);
  text-decoration-thickness: 0.16em;
  text-underline-offset: 0.18em;
}
.hero-sub { font-size: 1.15rem; color: var(--slate); max-width: 34em; margin-bottom: 22px; }
.hero-points { list-style: none; display: flex; flex-direction: column; gap: 10px; font-weight: 600; font-size: 1.02rem; }
.hero-points li { display: flex; align-items: center; gap: 12px; }
.pt-x, .pt-c {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  font-weight: 900; font-size: 0.85rem; flex-shrink: 0;
}
.pt-x { background: var(--alert-bg); color: var(--alert); border: 2px solid rgba(217, 45, 32, .35); }
.pt-c { background: var(--safe-bg); color: var(--safe); border: 2px solid rgba(10, 123, 75, .35); }

/* the loud CTA card */
.cta-card {
  background: #fff;
  border: 3px solid var(--safe);
  border-radius: 22px;
  padding: 30px 28px 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: rotate(0.6deg);
}
.cta-flag {
  position: absolute; top: -16px; left: 26px;
  background: var(--navy); color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 7px 16px; border-radius: 999px;
}
.cta-title { font-size: 2rem; font-weight: 900; color: var(--navy); margin: 8px 0 10px; }
.cta-lead { color: var(--slate); font-size: 1rem; margin-bottom: 18px; }
.cta-checks { list-style: none; margin: 18px 0 12px; display: flex; flex-direction: column; gap: 8px; font-weight: 600; font-size: 0.96rem; color: var(--ink); }
.cta-bonus {
  background: var(--caution);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.93rem;
  color: var(--ink);
  margin-bottom: 14px;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,.12);
}
.cta-bonus b { text-transform: uppercase; letter-spacing: 0.05em; }
.cta-fine { font-size: 0.82rem; color: var(--slate); border-top: 1px dashed var(--line); padding-top: 12px; }
.hero-scroll {
  display: block; text-align: center; margin-top: 44px;
  font-weight: 700; color: var(--slate); text-decoration: none;
  font-size: 0.98rem;
}
.hero-scroll:hover { color: var(--navy); }

/* ---------- caution tape ---------- */
.tape {
  height: 26px;
  background: repeating-linear-gradient(-45deg, var(--caution) 0 26px, var(--ink) 26px 52px);
  opacity: 0.95;
}

/* ---------- warning intro ---------- */
.warning-intro { background: var(--navy); color: #fff; padding: 64px 0 40px; }
.warn-eyebrow { font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.82rem; color: var(--caution); margin-bottom: 14px; }
.warning-intro h2 { font-size: clamp(1.5rem, 3vw, 2.3rem); font-weight: 900; max-width: 24em; margin-bottom: 18px; }
.underline-y {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: var(--caution);
  text-decoration-thickness: 0.16em;
  text-underline-offset: 0.18em;
}
.warn-lead { color: rgba(255,255,255,.78); max-width: 46em; font-size: 1.08rem; }

/* ---------- exhibits ---------- */
.exhibits { background: var(--navy); padding: 26px 0 76px; }
.ex-head { margin-bottom: 22px; }
.ex-head h3 { color: var(--caution); font-size: 1.5rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.03em; }
.ex-stage { position: relative; }
.ex-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 6;
  width: 54px; height: 54px; border-radius: 50%;
  border: none; background: var(--caution);
  color: var(--ink); font-size: 1.3rem; font-weight: 900; cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,.35), inset 0 -3px 0 rgba(0,0,0,.15);
  transition: background .15s ease, transform .15s ease;
}
.ex-btn:hover { background: #fff; transform: translateY(-50%) scale(1.07); }
.ex-prev { left: -10px; }
.ex-next { right: -10px; }
.ex-track {
  display: flex; gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.ex-track::-webkit-scrollbar { display: none; }
.ex-card {
  scroll-snap-align: start;
  flex: 0 0 min(88%, 720px);
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.ex-tag {
  position: absolute; top: 14px; left: -8px; z-index: 2;
  background: var(--alert); color: #fff;
  font-family: var(--font-display); font-weight: 900; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 7px 16px 7px 20px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 50%, 100% 100%, 0 100%, 8px 50%);
}
.browser-frame { background: #dcd6ca; padding: 0 0 2px; }
.browser-bar { display: flex; align-items: center; gap: 6px; padding: 10px 14px; }
.browser-bar span { width: 11px; height: 11px; border-radius: 50%; background: #b8b0a0; }
.browser-bar span:nth-child(1) { background: #e5766c; }
.browser-bar span:nth-child(2) { background: #e8c063; }
.browser-bar span:nth-child(3) { background: #7fc283; }
.browser-url {
  flex: 1; margin-left: 8px;
  background: #fff; border-radius: 6px;
  font-size: 0.8rem; font-weight: 600; color: var(--slate);
  padding: 4px 12px;
  font-family: ui-monospace, monospace;
}
.browser-frame img { width: 100%; max-height: 400px; object-fit: contain; object-position: top; background: #fff; }

.ex-zoom { display: block; }
/* "the page you see" thumbnail floats in the body beside the quote — never covers the fine print */
.ex-body { overflow: hidden; }
.ex-inset {
  float: right; width: 190px; margin: 2px 0 14px 20px;
  border-radius: 8px; overflow: hidden; background: #fff;
  box-shadow: 0 8px 22px rgba(0,0,0,.28); border: 1px solid var(--line);
}
.ex-inset figcaption {
  background: var(--navy); color: #fff;
  font-size: 0.6rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase;
  text-align: center; padding: 5px 4px;
}
.ex-inset-shot { position: relative; }
.ex-inset-shot img { width: 100%; display: block; max-height: 230px; object-fit: cover; object-position: top; }
.ex-inset-flag {
  position: absolute; bottom: 8px; right: 8px;
  background: var(--alert); color: #fff;
  font-size: 0.6rem; font-weight: 800; line-height: 1.1; text-align: center;
  padding: 5px 8px; border-radius: 6px;
  box-shadow: 0 3px 8px rgba(0,0,0,.4);
}
@media (max-width: 560px) {
  .ex-inset { float: none; width: 170px; margin: 0 auto 16px; }
}
.ex-body { padding: 20px 24px 24px; }
.ex-quote { font-size: 0.98rem; color: var(--ink); margin-bottom: 12px; }
.ex-quote mark { background: var(--caution); padding: 1px 2px; border-radius: 3px; font-weight: 700; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.ex-trans { font-size: 1.15rem; color: var(--alert); font-weight: 800; border-left: 5px solid var(--alert); padding-left: 14px; line-height: 1.45; }
.ex-trans b { text-transform: uppercase; font-size: 0.75em; letter-spacing: 0.06em; display: block; margin-bottom: 2px; }
.proof-link { color: var(--alert); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.exhibits-bait { padding-top: 0; }
.ex-sub { color: rgba(255,255,255,.72); font-size: 1rem; margin-bottom: 20px; max-width: 48em; }
.ex-tag-bait { background: var(--caution); color: var(--ink); }
.ex-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.ex-dot { width: 10px; height: 10px; border-radius: 50%; border: 0; background: rgba(255,255,255,.3); cursor: pointer; transition: all .2s; padding: 0; }
.ex-dot.active { background: var(--caution); transform: scale(1.3); }
.ex-note { text-align: center; color: rgba(255,255,255,.55); font-size: 0.8rem; margin-top: 18px; max-width: 56em; margin-left: auto; margin-right: auto; }

/* ---------- the trick ---------- */
.trick { padding: 80px 0; background: var(--paper); }
.trick h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 900; color: var(--navy); margin-bottom: 40px; }
.trick-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-bottom: 36px; }
.trick-step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow); position: relative; }
.t-num {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--alert); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 900; font-size: 1.3rem;
  margin-bottom: 16px;
  box-shadow: inset 0 -3px 0 rgba(0,0,0,.2);
}
.trick-step h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 10px; color: var(--navy); }
.trick-step p { color: var(--slate); font-size: 0.96rem; }
.trick-kicker {
  background: var(--alert-bg); border: 2px dashed rgba(217,45,32,.4);
  border-radius: var(--radius); padding: 20px 24px;
  font-size: 1.08rem; color: var(--ink); max-width: 62em;
}

/* ---------- real steps ---------- */
.steps { padding: 76px 0 60px; background: var(--paper-2); }
.steps-eyebrow { font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.82rem; color: var(--safe); margin-bottom: 12px; }
.steps h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 900; color: var(--navy); margin-bottom: 12px; }
.steps-lead { color: var(--slate); max-width: 46em; margin-bottom: 40px; }
.route-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-bottom: 34px; }
.route { background: #fff; border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow); border-top: 5px solid var(--safe); }
.route-badge {
  display: inline-block; background: var(--safe-bg); color: var(--safe);
  font-weight: 800; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 5px 12px; border-radius: 999px; margin-bottom: 14px;
}
.route h3 { font-size: 1.2rem; font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.route-sub { display: block; font-size: 0.78rem; color: var(--slate); font-weight: 600; margin-top: 3px; }
.route ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.route li { font-size: 0.94rem; color: var(--ink); padding-left: 16px; position: relative; }
.route li::before { content: "›"; position: absolute; left: 0; color: var(--safe); font-weight: 900; }
.reality-box {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--navy); color: #fff;
  border-radius: var(--radius); padding: 26px 28px;
  box-shadow: var(--shadow);
}
.rb-icon { font-size: 2rem; line-height: 1; }
.reality-box h4 { font-size: 1.12rem; font-weight: 800; color: var(--caution); margin-bottom: 8px; }
.reality-box p { color: rgba(255,255,255,.85); font-size: 0.98rem; }
.reality-box p + p { margin-top: 12px; }
.reality-box .btn-call { margin-top: 14px; padding: 12px 22px; font-size: 1rem; }

/* wait-line inside the BuyCrash route card */
.route-wait {
  margin-top: 14px; padding: 12px 14px;
  background: var(--caution); color: var(--ink);
  border-radius: 10px; font-size: 0.9rem; font-weight: 600;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,.12);
}

/* ---------- between-section CTA strips ---------- */
.cta-strip { background: var(--ink); padding: 26px 0; }
.cta-strip-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px 30px; flex-wrap: wrap;
}
.cs-text { color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; line-height: 1.2; }
.cs-text b { color: var(--caution); }
.btn-strip {
  padding: 15px 26px; font-size: 1.1rem; flex-shrink: 0;
  border: 3px solid var(--pop);
}
.btn-strip .i-phone { width: 1.25em; height: 1.25em; }
.btn-strip .num-sub { font-size: 0.6em; font-weight: 700; opacity: .92; display: block; }

/* ---------- second cta band ---------- */
.cta-band { background: var(--safe); color: #fff; padding: 70px 0; }
.cta-band-inner { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: center; }
.cb-copy h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 900; margin-bottom: 12px; }
.cb-lead { font-size: 1.12rem; opacity: 0.92; margin-bottom: 20px; }
.cb-list { list-style: none; display: flex; flex-direction: column; gap: 10px; font-weight: 600; margin-bottom: 22px; }
.cb-bonus { margin-bottom: 22px; }
.cb-bonus-title { font-family: var(--font-display); font-weight: 900; font-size: 1.25rem; margin-bottom: 6px; }
.cb-bonus-lead { opacity: 0.92; margin-bottom: 14px; font-size: 1rem; }
.q-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.q-chip {
  background: #fff;
  color: var(--safe-dark);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 9px 16px;
  border-radius: 999px;
  box-shadow: 0 3px 10px rgba(0,0,0,.18), inset 0 -2px 0 rgba(0,0,0,.06);
}
.cb-privacy {
  background: rgba(255,255,255,.12); border-left: 4px solid var(--caution);
  padding: 14px 18px; border-radius: 8px; font-size: 0.95rem;
}
.cb-cta .btn-call { background: #fff; color: var(--safe-dark); box-shadow: 0 10px 30px rgba(0,0,0,.25), inset 0 -3px 0 rgba(0,0,0,.08); }
.cb-cta .btn-call:hover { background: var(--paper); }
@keyframes pulse-ring-w {
  0% { box-shadow: 0 10px 30px rgba(0,0,0,.25), 0 0 0 0 rgba(255,255,255,.5); }
  70% { box-shadow: 0 10px 30px rgba(0,0,0,.25), 0 0 0 18px rgba(255,255,255,0); }
  100% { box-shadow: 0 10px 30px rgba(0,0,0,.25), 0 0 0 0 rgba(255,255,255,0); }
}
.cb-cta .pulse { animation: pulse-ring-w 2.4s infinite; }
.cb-under { text-align: center; margin-top: 14px; font-weight: 700; font-size: 0.92rem; opacity: 0.92; }

/* ---------- faq ---------- */
.faq { padding: 80px 0; }
.faq h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 900; color: var(--navy); margin-bottom: 34px; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  margin-bottom: 12px; overflow: hidden;
  box-shadow: 0 2px 8px rgba(19,27,38,.05);
}
.faq summary {
  cursor: pointer; list-style: none;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  padding: 18px 52px 18px 22px; position: relative;
  color: var(--navy);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--paper-2); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; transition: all .2s;
}
.faq details[open] summary::after { content: "–"; background: var(--caution); }
.faq details p { padding: 0 22px 20px; color: var(--slate); }
.faq details a { color: var(--safe); font-weight: 700; }

/* ---------- sources ---------- */
.sources { padding: 48px 0; }
.sources h2 { font-size: 1.35rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.sources p { color: var(--slate); margin-bottom: 14px; max-width: 50em; }
.sources ul { list-style: none; display: flex; flex-direction: column; gap: 6px; color: var(--slate); font-size: 0.92rem; margin-bottom: 16px; }
.sources li { padding-left: 18px; position: relative; }
.sources li::before { content: "✓"; position: absolute; left: 0; color: var(--safe); font-weight: 900; }
.updated { font-size: 0.85rem; font-weight: 700; color: var(--slate); }

/* ---------- footer ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,.8); padding: 56px 0 90px; }
.foot-brand { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: #fff; margin-bottom: 24px; }
.foot-brand b { color: var(--caution); }
.foot-disclosure { max-width: 62em; display: flex; flex-direction: column; gap: 12px; font-size: 0.92rem; line-height: 1.65; }
.foot-disclosure b { color: #fff; }
.foot-copy { margin-top: 28px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.15); font-size: 0.85rem; }
.foot-copy a { color: var(--caution); font-weight: 700; text-decoration: none; }

/* ---------- sticky mobile call bar ---------- */
.sticky-call {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
  background: var(--safe); color: #fff;
  text-decoration: none; text-align: center;
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 800;
  padding: 15px 10px calc(15px + env(safe-area-inset-bottom));
  align-items: center; justify-content: center; gap: 8px;
  border-top: 3px solid var(--pop);
  box-shadow: 0 -6px 20px rgba(0,0,0,.3);
}
.sticky-call .i-phone { width: 1.5em; height: 1.5em; }
.sticky-txt { display: flex; flex-direction: column; line-height: 1.15; align-items: flex-start; }
.sticky-txt b { font-size: 1.25rem; letter-spacing: 0.01em; }
.sticky-txt small { font-size: 0.72rem; font-weight: 700; opacity: 0.95; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .cta-card { transform: none; }
  .trick-grid, .route-grid { grid-template-columns: 1fr; }
  .cta-band-inner { grid-template-columns: 1fr; gap: 32px; }
  .ex-card { flex-basis: 92%; }
}
@media (max-width: 640px) {
  .utility-strip { font-size: 0.68rem; }
  /* header call button hidden on phones — the sticky bottom bar covers it */
  .btn-header { display: none; }
  .cta-strip-inner { flex-direction: column; align-items: stretch; text-align: center; }
  .btn-strip { width: 100%; justify-content: center; }
  .ex-btn { width: 44px; height: 44px; font-size: 1.1rem; }
  .ex-prev { left: -4px; }
  .ex-next { right: -4px; }
  .btn-header { padding: 9px 14px; font-size: 0.85rem; }
  .brand-text { font-size: 0.9rem; }
  .hero { padding-top: 44px; }
  .browser-frame img { max-height: 260px; }
  .sticky-call { display: flex; }
  .site-footer { padding-bottom: 110px; }
  .reality-box { flex-direction: column; gap: 10px; }
}
