/* ============================================================
   Smili Phone — design system
   Tokens, base, header/hero, sections, cards, forms, footer,
   sticky CTA, motion. Mobile-first.
   ============================================================ */

/* Self-hosted Space Grotesk (variable, latin) — no third-party requests */
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("../fonts/space-grotesk-latin.woff2") format("woff2");
}

:root {
  --ink: #0c1524;
  --ink-2: #131f35;
  --brand: #1b7fb4;
  --brand-deep: #14638f;
  --brand-soft: #e7f4fb;
  --smile: #f0b040;
  --paper: #ffffff;
  --mist: #f4f7fc;
  --slate: #475569;
  --slate-light: #8a97a8;
  --line: #e3e9f2;
  --ok: #15803d;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(12, 21, 36, .10);
  --font-display: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --max-w: 1120px;
  --header-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 .6em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.1rem, 4.6vw + 1rem, 3.4rem); }
h2 { font-size: clamp(1.55rem, 2.6vw + .8rem, 2.2rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; max-width: 68ch; }
a { color: var(--brand); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--brand-deep); }
::selection { background: var(--smile); color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--smile);
  outline-offset: 3px;
  border-radius: 6px;
}

.wrap { width: min(var(--max-w), 100% - 2.5rem); margin-inline: auto; }
section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section-mist { background: var(--mist); }
.section-ink { background: var(--ink); color: #eaf0fa; }
.section-ink h2, .section-ink h3 { color: #fff; }
.section-ink p { color: #b9c6dd; }

.skip-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 200;
  background: var(--ink); color: #fff; padding: .7rem 1.1rem; border-radius: 10px;
  transition: top .2s ease;
}
.skip-link:focus { top: 1rem; color: #fff; }

/* ---------------- buttons ---------------- */
.ic { width: 1.25em; height: 1.25em; flex: none; vertical-align: -.2em; }
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  padding: .85rem 1.5rem; border-radius: 999px; border: 0; cursor: pointer;
  text-decoration: none; line-height: 1.2; white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.btn .ic { width: 1.15em; height: 1.15em; flex: none; }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 6px 18px rgba(64, 192, 240, .35); }
.btn-primary:hover { background: var(--brand-deep); color: #fff; transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { transform: translateY(-2px); color: var(--ink); box-shadow: var(--shadow); }
.btn-ghost-light { background: transparent; color: #fff; box-shadow: inset 0 0 0 2px rgba(255,255,255,.45); }
.btn-ghost-light:hover { color: #fff; box-shadow: inset 0 0 0 2px #fff; transform: translateY(-2px); }
.btn-outline { background: #fff; color: var(--brand); box-shadow: inset 0 0 0 2px var(--brand); }
.btn-outline:hover { background: var(--brand); color: #fff; transform: translateY(-2px); }
.btn-sm { padding: .6rem 1.1rem; font-size: .9rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.6rem; }

/* ---------------- header ---------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--ink); }
.brand-logo { width: auto; height: 72px; flex: none; object-fit: contain; transform-origin: 50% 75%;
  animation: logo-smile 3.2s ease-in-out infinite; }
/* logo entrance */
.site-header .brand { animation: brand-in .8s cubic-bezier(.22, 1.2, .36, 1) both; }
@keyframes brand-in {
  from { opacity: 0; transform: translateY(-10px) scale(.92); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
/* continuous smiley bounce — a happy little nod */
@keyframes logo-smile {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  25% { transform: translateY(-3px) rotate(-3deg) scale(1.04); }
  50% { transform: translateY(0) rotate(0deg) scale(1); }
  75% { transform: translateY(-2px) rotate(3deg) scale(1.02); }
}
.brand:hover .brand-logo { filter: drop-shadow(0 6px 14px rgba(240, 176, 64, .35)); }
.brand-logo { transition: filter .25s ease; }
.brand-word { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; letter-spacing: -.02em; line-height: 1; display: inline-block; }
.brand-word-2 { color: var(--brand); }
.brand-sub { display: block; font-family: var(--font-body); font-weight: 500; font-size: .68rem; letter-spacing: .08em; color: var(--slate-light); margin-top: 2px; }
.site-nav { display: flex; align-items: center; position: relative; }
.nav-toggle { display: none; background: none; border: 0; padding: .6rem; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; margin: 5px 0; transition: transform .2s ease, opacity .2s ease; }
.nav-list { display: flex; align-items: center; gap: .25rem; list-style: none; margin: 0; padding: 0; }
.nav-list a:not(.btn) { color: var(--ink); text-decoration: none; font-weight: 500; font-size: .98rem; padding: .55rem .8rem; border-radius: 8px; }
.nav-list a:not(.btn):hover { background: var(--mist); color: var(--brand-deep); }
.nav-list a.is-active { color: var(--brand); font-weight: 600; }
.nav-cta { margin-left: .5rem; }
.mobile-menu { display: none; } /* mobile-only flat menu */
.btn-quote { padding: .7rem 1.25rem; font-size: .95rem; background: var(--smile); color: var(--ink); font-weight: 700; }
.btn-quote:hover { background: var(--brand); color: #fff; transform: translateY(-2px); }
.btn-call { background: var(--ink); color: #fff; font-weight: 700; }
.btn-call:hover { background: var(--brand-deep); color: #fff; transform: translateY(-2px); }
/* top-level links: semibold display face for a premium feel */
.nav-list > li > a:not(.btn), .nav-list > li > .nav-drop-btn { font-family: var(--font-display); font-weight: 600; }

/* ---- top utility bar (uBreakiFix-style) ---- */
.topbar { background: var(--ink); color: #fff; font-size: .82rem; }
.topbar-inner { display: flex; align-items: center; gap: 1.2rem; padding-top: .35rem; padding-bottom: .35rem; }
.topbar .ic { width: 14px; height: 14px; }
.topbar-hours { display: inline-flex; align-items: center; gap: .35rem; opacity: .85; margin-right: auto; }
.topbar a { display: inline-flex; align-items: center; gap: .35rem; color: #fff; text-decoration: none; opacity: .92; }
.topbar a:hover { opacity: 1; color: var(--smile); }
.topbar-phone { font-weight: 700; }
/* one language button in the topbar: flag of the language you switch to, flag only, desktop + mobile */
.lang-flag { display: inline-flex; align-items: center; padding: .3rem;
  border: 0; border-radius: 8px; background: transparent; text-decoration: none; flex: none;
  transition: transform .15s ease, background .15s ease; }
.lang-flag:hover { transform: translateY(-1px); background: rgba(255,255,255,.14); }
.lang-flag .flag { width: 26px; height: 19px; display: block; }

/* ---- dropdowns + mega menu ---- */
.nav-list > li.has-sub { position: relative; }
.nav-drop-btn { display: inline-flex; align-items: center; gap: .3rem; background: none; border: 0; cursor: pointer;
  color: var(--ink); font-weight: 500; font-size: .98rem; padding: .55rem .8rem; border-radius: 8px; font-family: inherit; }
.nav-drop-btn:hover { background: var(--mist); color: var(--brand-deep); }
.nav-drop-btn.is-active { color: var(--brand); font-weight: 600; }
.nav-caret { width: 14px; height: 14px; transition: transform .2s ease; }
.has-sub.open .nav-caret, .has-sub:hover .nav-caret { transform: rotate(180deg); }
.nav-drop, .nav-mega { position: absolute; top: calc(100% + 8px); left: 50%; transform: translate(-50%, 6px);
  background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .18s ease, transform .18s ease, visibility .18s; z-index: 60; }
.has-sub:hover .nav-drop, .has-sub:hover .nav-mega,
.has-sub:focus-within .nav-drop, .has-sub:focus-within .nav-mega,
.has-sub.open .nav-drop, .has-sub.open .nav-mega { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }
.has-sub:hover .nav-mega, .has-sub:focus-within .nav-mega, .has-sub.open .nav-mega { transform: none; }
.nav-drop { min-width: 240px; padding: .5rem; }
.nav-drop ul { list-style: none; margin: 0; padding: 0; }
.nav-drop a { display: flex; align-items: center; gap: .6rem; padding: .6rem .7rem; border-radius: 9px;
  color: var(--ink); text-decoration: none; font-size: .95rem; font-weight: 500; }
.nav-drop a:hover { background: var(--mist); color: var(--brand-deep); }
.nav-drop a .ic { color: var(--brand); flex: none; }
/* mega menu: device grid like uBreakiFix — anchored to the nav, left aligned under Repairs */
.nav-list > li.has-sub.has-mega { position: static; }
.nav-mega { left: 0; right: auto; transform: translateY(6px); width: min(700px, calc(100vw - 2rem)); padding: 1rem; }
/* invisible hover bridge so the menu doesn't flicker when crossing the gap */
.nav-drop::before, .nav-mega::before { content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.mega-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .25rem; list-style: none; margin: 0; padding: 0; }
.mega-grid a { display: flex; align-items: center; gap: .65rem; padding: .65rem .7rem; border-radius: 10px;
  color: var(--ink); text-decoration: none; font-size: .93rem; font-weight: 500; }
.mega-grid a:hover { background: var(--brand-soft); color: var(--brand-deep); }
.mega-grid a .ic { width: 22px; height: 22px; color: var(--brand); flex: none; }
.nav-list a.mega-all { display: block; text-align: center; margin-top: .6rem; padding: .6rem; border-radius: 10px;
  background: var(--ink); color: #fff; text-decoration: none; font-weight: 600; font-size: .92rem; }
.nav-list a.mega-all:hover { background: var(--brand-deep); color: #fff; }

/* ---------------- hero ---------------- */
.hero {
  background:
    radial-gradient(900px 480px at 85% 10%, rgba(64, 192, 240, .28), transparent 60%),
    radial-gradient(600px 400px at 10% 90%, rgba(240, 176, 64, .10), transparent 55%),
    var(--ink);
  color: #eaf0fa;
  padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 4.5rem);
  overflow: hidden;
  position: relative;
}
.hero-inner { display: grid; gap: 2.5rem; align-items: center; }
.hero h1 { color: #fff; margin-bottom: .7rem; }
.hero h1 .smile-word { position: relative; white-space: nowrap; }
.hero h1 .smile-word svg { position: absolute; left: 0; right: 0; bottom: -.28em; width: 100%; height: .5em; }
.hero-lede { font-size: 1.15rem; color: #b9c6dd; max-width: 46ch; }
.hero-lede strong { color: #fff; font-weight: 600; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .9rem; margin: 1.7rem 0 1.4rem; }
.trust-row { display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; list-style: none; margin: 0; padding: 0; font-size: .95rem; color: #b9c6dd; }
.trust-row li { display: inline-flex; align-items: center; gap: .45rem; }
.trust-row .ic { color: var(--smile); width: 1.05em; height: 1.05em; }
.hero-art { display: flex; justify-content: center; }
.hero-art svg { width: min(420px, 100%); height: auto; filter: drop-shadow(0 24px 48px rgba(0,0,0,.45)); }

.page-hero { background: var(--ink); color: #eaf0fa; padding: clamp(2.5rem, 6vw, 4rem) 0; }
.page-hero h1 { color: #fff; margin-bottom: .5rem; }
.page-hero p { color: #b9c6dd; font-size: 1.12rem; max-width: 60ch; margin-bottom: 0; }
.breadcrumbs { font-size: .9rem; color: #8a97a8; margin-bottom: 1.2rem; }
.breadcrumbs a { color: #b9c6dd; text-decoration: none; }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs [aria-current] { color: #fff; }

/* ---------------- cards / grids ---------------- */
.grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.auto-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }

.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; text-decoration: none; color: var(--ink);
  display: flex; flex-direction: column; gap: .5rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
a.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #c9d6ea; color: var(--ink); }
.card h3 { margin: 0; font-size: 1.12rem; }
.card p { margin: 0; color: var(--slate); font-size: .98rem; }
.card-icon {
  width: 52px; height: 52px; border-radius: 14px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--brand-soft); color: var(--brand); margin-bottom: .4rem;
}
.card-icon .ic { width: 26px; height: 26px; }
.card-link { margin-top: auto; padding-top: .8rem; font-weight: 600; font-size: .95rem; color: var(--brand);
  display: inline-flex; align-items: center; gap: .4rem; }
.card-link .ic { width: 1em; height: 1em; transition: transform .2s ease; }
a.card:hover .card-link .ic { transform: translateX(4px); }

.check-list { list-style: none; margin: 1.2rem 0; padding: 0; display: grid; gap: .7rem; }
.check-list li { display: flex; gap: .7rem; align-items: flex-start; }
.check-list .ic { color: var(--ok); flex: none; width: 1.25em; height: 1.25em; margin-top: .2em; }

/* ---------------- deals ---------------- */
.deal-card { background: var(--ink); color: #eaf0fa; border: 0; position: relative; overflow: hidden; }
.deal-card::after {
  content: ""; position: absolute; inset: auto -30% -55% auto; width: 70%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(240,176,64,.22), transparent 70%);
}
.deal-card h3 { color: #fff; }
.deal-card p { color: #b9c6dd; }
.coupon-code {
  display: inline-block; font-family: var(--font-display); font-weight: 700; letter-spacing: .12em;
  background: rgba(240,176,64,.16); color: var(--smile);
  border: 1.5px dashed var(--smile); border-radius: 10px; padding: .45rem .9rem; margin-top: .6rem;
}
.deal-fine { font-size: .9rem; color: var(--slate-light); margin-top: 1.5rem; }

/* ---------------- faq accordion ---------------- */
.faq-list { display: grid; gap: .8rem; max-width: 820px; }
.faq-item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1.15rem 1.4rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-plus { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--mist);
  display: inline-flex; align-items: center; justify-content: center; transition: transform .25s ease, background-color .25s ease; }
.faq-item summary .faq-plus .ic { width: 15px; height: 15px; }
.faq-item[open] summary .faq-plus { transform: rotate(45deg); background: var(--brand); color: #fff; }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-answer > div { overflow: hidden; }
.faq-item[open] .faq-answer { grid-template-rows: 1fr; }
.faq-answer p { padding: 0 1.4rem 1.3rem; margin: 0; color: var(--slate); }

/* ---------------- contact ---------------- */
.contact-grid { display: grid; gap: 1.25rem; }
.contact-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem; }
.contact-card h2, .contact-card h3 { margin-top: 0; }
.contact-line { display: flex; gap: .9rem; align-items: flex-start; margin-bottom: 1.1rem; }
.contact-line .ic { width: 1.4em; height: 1.4em; color: var(--brand); flex: none; margin-top: .15em; }
.contact-line a { color: var(--ink); font-weight: 600; text-decoration: none; }
.contact-line a:hover { color: var(--brand); }
.hours-list { display: grid; grid-template-columns: auto 1fr; gap: .45rem 1.4rem; margin: 0; }
.hours-list dt { font-weight: 600; }
.hours-list dd { margin: 0; color: var(--slate); text-align: right; }
.today-line { display: flex; align-items: center; gap: .55rem; flex-wrap: wrap; margin: 0 0 .9rem; font-size: 1.06rem; }
.today-line strong { font-weight: 800; }
.today-dot { width: .7rem; height: .7rem; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 4px rgba(34,197,94,.18); flex: none; }
.today-line.closed .today-dot { background: #ef4444; box-shadow: 0 0 0 4px rgba(239,68,68,.18); }
.open-badge { font-size: .76rem; font-weight: 800; letter-spacing: .02em; padding: .22rem .65rem; border-radius: 999px; background: #e7f8ee; color: #15803d; border: 1px solid #bbf7d0; }
.today-line.closed .open-badge { background: #fee2e2; color: #b91c1c; border-color: #fecaca; }

/* ---------------- cta band ---------------- */
.cta-band { background: linear-gradient(135deg, var(--brand-deep), var(--brand) 70%); color: #fff; text-align: center; }
.cta-band-inner { display: flex; flex-direction: column; align-items: center; }
.smile-arc { width: 150px; height: auto; margin-bottom: 1rem; }
.cta-band h2 { color: #fff; margin-bottom: .4rem; }
.cta-band p { color: #dbe6ff; margin-bottom: 0; }
.cta-band .btn-row { justify-content: center; }

/* ---------------- footer ---------------- */
.site-footer { background: var(--ink); color: #b9c6dd; padding: 3.5rem 0 0; }
.footer-grid { display: grid; gap: 2.2rem; padding-bottom: 2.5rem; }
.footer-brand p { font-size: .95rem; }
.brand-footer { color: #fff; margin-bottom: 1rem; }
.site-footer h3 { color: #fff; font-size: .95rem; letter-spacing: .06em; margin-bottom: 1rem; }
.footer-nav ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer-nav a, .footer-contact a { color: #b9c6dd; text-decoration: none; font-size: .95rem; }
.footer-nav a:hover, .footer-contact a:hover { color: #fff; }
.footer-contact address { font-style: normal; margin-bottom: 1.1rem; line-height: 1.9; }
.social-row { display: flex; gap: .7rem; margin-top: 1.2rem; }
.social-row a { width: 42px; height: 42px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08); color: #fff; transition: background-color .2s ease, transform .2s ease; }
.social-row a:hover { background: var(--brand); transform: translateY(-2px); color: #fff; }
.social-row .ic { width: 20px; height: 20px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 1.4rem 0 6.5rem; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer-bottom p { margin: 0; font-size: .88rem; color: #8a97a8; }
.smile-arc-sm { width: 74px; margin: 0; }

/* ---------------- sticky mobile CTA ---------------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; gap: .6rem; padding: .7rem .9rem calc(.7rem + env(safe-area-inset-bottom));
  background: rgba(12, 21, 36, .94); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,.14);
}
.sticky-btn {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem; text-decoration: none;
  padding: .85rem 1rem; border-radius: 12px; min-height: 48px;
}
.sticky-btn .ic { width: 1.15em; height: 1.15em; }
.sticky-call { background: var(--brand); color: #fff; }
.sticky-dir { background: rgba(255,255,255,.12); color: #fff; }

/* ---------------- service page extras ---------------- */
.split { display: grid; gap: 2.5rem; align-items: start; }
.split-narrow { max-width: 720px; }
/* editorial photos */
.photo-frame { margin: 0; border-radius: 18px; overflow: hidden; box-shadow: 0 18px 44px rgba(12,21,36,.14); }
.photo-frame img { display: block; width: 100%; height: auto; }
.photo-frame figcaption { padding: .7rem 1.1rem; font-size: .85rem; color: var(--slate); background: #fff; }
.kicker { font-family: var(--font-display); font-weight: 600; color: var(--brand); font-size: .95rem; margin-bottom: .4rem; }
.pill-list { display: flex; flex-wrap: wrap; gap: .55rem; list-style: none; margin: 1.2rem 0; padding: 0; }
.pill-list li { background: var(--mist); border: 1px solid var(--line); border-radius: 999px; padding: .42rem .95rem; font-size: .92rem; font-weight: 500; }
.repair-grid { display: grid; gap: .9rem; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.repair-item { display: flex; gap: .7rem; align-items: center; background: var(--paper); border: 1px solid var(--line);
  border-radius: 12px; padding: .85rem 1rem; font-size: .96rem; font-weight: 500; }
.repair-item .ic { color: var(--brand); flex: none; width: 1.2em; height: 1.2em; }
.note-box { background: var(--brand-soft); border-left: 4px solid var(--brand); border-radius: 0 12px 12px 0;
  padding: 1.1rem 1.3rem; margin: 1.6rem 0; }
.note-box p { margin: 0; font-size: .98rem; }
.note-box strong { color: var(--brand-deep); }
.area-list { columns: 2; column-gap: 2rem; list-style: none; margin: 1.2rem 0; padding: 0; }
.area-list li { break-inside: avoid; padding: .35rem 0; display: flex; gap: .55rem; align-items: center; }
.area-list .ic { color: var(--brand); width: 1em; height: 1em; flex: none; }

/* ---------------- motion ---------------- */
@keyframes hero-rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.hero [data-hero] { animation: hero-rise .65s cubic-bezier(.2, .7, .3, 1) both; }
.hero [data-hero="1"] { animation-delay: .05s; }
.hero [data-hero="2"] { animation-delay: .16s; }
.hero [data-hero="3"] { animation-delay: .27s; }
.hero [data-hero="4"] { animation-delay: .38s; }
.hero [data-hero="5"] { animation-delay: .5s; }

/* hero illustration: broken -> fixed loop (6.5s) */
@keyframes fx-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes fx-crack { 0%, 34% { opacity: .9; } 46%, 88% { opacity: 0; } 100% { opacity: .9; } }
@keyframes fx-smile-draw { 0%, 40% { stroke-dashoffset: 72; opacity: 0; } 46% { opacity: 1; } 58%, 92% { stroke-dashoffset: 0; opacity: 1; } 100% { stroke-dashoffset: 0; opacity: 1; } }
@keyframes fx-smile-pop { 0%, 52% { opacity: 0; transform: scale(.4); } 64%, 92% { opacity: 1; transform: scale(1); } 100% { opacity: 1; transform: scale(1); } }
@keyframes fx-spark { 0%, 100% { opacity: .25; transform: scale(.8); } 50% { opacity: 1; transform: scale(1.25); } }
@keyframes fx-spin { to { transform: rotate(360deg); } }
@keyframes fx-spin-rev { to { transform: rotate(-360deg); } }
.hero-art .fx-float { animation: fx-float 6.5s ease-in-out infinite; }
.hero-art .fx-crack { animation: fx-crack 6.5s ease-in-out infinite; }
.hero-art .fx-smile path { stroke-dasharray: 72; animation: fx-smile-draw 6.5s ease-in-out infinite; }
.hero-art .fx-smile circle { transform-box: fill-box; transform-origin: center; animation: fx-smile-pop 6.5s ease-in-out infinite; }
.hero-art .fx-spark { transform-box: fill-box; transform-origin: center; animation: fx-spark 2.6s ease-in-out infinite; }
.hero-art .fx-spark-2 { animation-delay: .8s; }
.hero-art .fx-spark-3 { animation-delay: 1.6s; }
.hero-art .fx-orbit { transform-box: fill-box; transform-origin: center; animation: fx-spin 60s linear infinite; }
.hero-art .fx-orbit-rev { animation: fx-spin-rev 45s linear infinite; }

/* marquee strip */
.marquee { overflow: hidden; background: var(--ink); color: #fff; padding: .8rem 0;
  border-top: 1px solid rgba(255,255,255,.08); }
.marquee-track { display: flex; gap: 2.5rem; width: max-content; white-space: nowrap;
  font-family: var(--font-display); font-weight: 600; letter-spacing: .02em;
  animation: marquee-scroll 28s linear infinite; }
.marquee-track span { display: inline-flex; align-items: center; gap: 2.5rem; }
.marquee-track .dot { color: var(--smile); }
@keyframes marquee-scroll { to { transform: translateX(-50%); } }
.marquee:hover .marquee-track, .marquee:focus-within .marquee-track { animation-play-state: paused; }

/* stats band + counters */
.stats-band { background: var(--mist); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; text-align: center; }
.stat-num { font-family: var(--font-display); font-weight: 800; font-size: clamp(3rem, 7vw, 4.5rem);
  letter-spacing: -.02em; color: var(--ink); font-variant-numeric: tabular-nums; }
.stat-num .suffix { color: var(--brand); }
.stat-label { color: var(--slate); font-size: .95rem; margin-top: .25rem; }
@media (max-width: 640px) { .stats-grid { grid-template-columns: 1fr; gap: 1.25rem; } }

/* button shine + press */
.btn { position: relative; overflow: hidden; }
.btn-primary::after { content: ""; position: absolute; top: 0; left: -80%; width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg); transition: left .55s ease; }
.btn-primary:hover::after { left: 130%; }
.btn:active { transform: translateY(1px) scale(.99); }
.card { transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
a.card:hover { transform: translateY(-5px); box-shadow: 0 14px 34px rgba(12,21,36,.12); }
a.card:hover .card-icon { transform: rotate(-8deg) scale(1.08); }
.card-icon { transition: transform .25s cubic-bezier(.2, .7, .3, 1.4); }

/* nav underline */
.nav-list > li > a { position: relative; }
.nav-list > li > a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -3px; height: 2px;
  background: var(--brand); border-radius: 2px; transition: right .22s ease; }
.nav-list > li > a:hover::after, .nav-list > li > a.is-active::after { right: 0; }

.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s cubic-bezier(.2, .7, .3, 1); }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-art .fx-smile path { stroke-dashoffset: 0; }
}

/* ---------------- responsive ---------------- */
@media (min-width: 760px) {
  .hero-inner { grid-template-columns: 1.05fr .95fr; }
  .split { grid-template-columns: 1.2fr .8fr; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; }
  .area-list { columns: 3; }
}
@media (max-width: 900px) {
  .topbar-hours { display: none; }
  .topbar-inner { gap: .9rem; justify-content: flex-end; }
  /* solid header on mobile: backdrop-filter would trap the fixed menu */
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: #fff; }
  .site-header .brand, .nav-toggle { position: relative; z-index: 95; }
  .site-nav { position: static; }
  .nav-list { display: none; } /* desktop nav hidden on mobile */
  .nav-toggle { display: block; -webkit-tap-highlight-color: transparent; }
  /* ---- simple flat mobile menu ---- */
  .mobile-menu {
    display: block;
    position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 90;
    background: #fff;
    padding: calc(var(--header-h) + .6rem) 1.5rem calc(1.4rem + env(safe-area-inset-bottom, 0px));
    transform: translateX(103%); visibility: hidden;
    transition: transform .34s cubic-bezier(.32,.72,0,1), visibility 0s .34s;
    overflow-y: auto; overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch; touch-action: pan-y;
  }
  .mobile-menu.is-open { transform: none; visibility: visible; transition: transform .34s cubic-bezier(.32,.72,0,1); }
  body.nav-open { overflow: hidden; }
  /* pin the header (logo + close button) to the viewport top while the mobile menu
     is open — position:sticky can unstick on iOS when body scroll is locked, which
     leaves the open menu with no visible header/close button */
  body.nav-open .site-header { position: fixed; top: 0; left: 0; right: 0; }
  /* pin the header (logo + close button) to the viewport top while the mobile menu
     is open — position:sticky can lose its anchor on iOS when body scroll is locked,
     leaving the menu with no visible header/close button */
  body.nav-open .site-header { position: fixed; top: 0; left: 0; right: 0; }
  /* category groups that drop down */
  .mm-group { border-bottom: 1px solid var(--line); }
  .mm-group-btn { display: flex; align-items: center; justify-content: space-between; width: 100%;
    padding: 1.05rem .1rem; background: none; border: 0; cursor: pointer; text-align: left;
    font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; color: var(--ink);
    -webkit-tap-highlight-color: transparent; }
  .mm-chev { width: 32px; height: 32px; padding: 8px; border-radius: 50%; flex: none;
    background: var(--mist); color: var(--ink-soft);
    transition: transform .3s ease, background .3s ease, color .3s ease; }
  .mm-group.open > .mm-group-btn { color: var(--brand-deep); }
  .mm-group.open .mm-chev { transform: rotate(180deg); background: var(--brand-soft); color: var(--brand-deep); }
  .mm-sub { max-height: 0; overflow: hidden; transition: max-height .38s ease; }
  .mm-group.open > .mm-sub { max-height: 640px; }
  .mm-sub ul { list-style: none; margin: 0 0 1rem; padding: .5rem; display: grid; gap: 2px;
    background: var(--mist); border-radius: 18px; }
  .mm-sub a { display: flex; align-items: center; gap: .85rem; padding: .68rem .6rem; border-radius: 13px;
    font-size: 1rem; font-weight: 500; color: var(--ink); text-decoration: none; }
  .mm-sub a:hover { background: #fff; color: var(--brand-deep); }
  .mm-sub a .ic { width: 40px; height: 40px; padding: 10px; flex: none; background: #fff;
    color: var(--brand-deep); border-radius: 13px; box-shadow: 0 1px 4px rgba(12,21,36,.09); }
  .mm-sub a.mm-view-all { color: var(--brand-deep); font-weight: 600; }
  /* quick links */
  .mm-quick { list-style: none; margin: 1.2rem 0 0; padding: 0; }
  .mm-quick li { border-bottom: 1px solid var(--line); }
  .mm-quick li:last-child { border-bottom: 0; }
  .mm-quick a { display: flex; align-items: center; justify-content: space-between;
    padding: .85rem .1rem; font-size: 1.05rem; font-weight: 600; font-family: var(--font-display);
    color: var(--ink); text-decoration: none; }
  .mm-quick a::after { content: "\203A"; font-size: 1.4rem; line-height: 1; color: var(--ink-soft); font-weight: 400; }
  .mm-cta { position: sticky; bottom: 0; display: flex; gap: .7rem; margin-top: 1.3rem;
    padding: 1rem 0 .2rem; background: linear-gradient(to bottom, rgba(255,255,255,0), #fff 32%); }
  .mm-cta .btn { flex: 1 1 0; justify-content: center; padding: 1rem .5rem; font-size: 1rem; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
}
@media (max-width: 759px) {
  body { font-size: 1rem; }
  .sticky-cta { display: flex; }
  .footer-bottom { padding-bottom: 7.5rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .hero-art svg { width: min(300px, 86%); }
}

/* ---------------- quote page ---------------- */
.quote-tabs { display: flex; gap: .5rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.quote-tab { font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  padding: .7rem 1.4rem; border-radius: 999px; border: 2px solid var(--line);
  background: #fff; color: var(--slate); cursor: pointer; transition: all .2s ease; }
.quote-tab:hover { border-color: var(--brand); color: var(--brand-deep); }
.quote-tab.is-active { background: var(--ink); border-color: var(--ink); color: #fff;
  box-shadow: 0 6px 18px rgba(12,21,36,.22); }
.quote-panel { animation: hero-rise .4s ease both; }

/* chat */
.chat { max-width: 640px; margin: 0 auto; background: #fff; border: 1px solid var(--line);
  border-radius: 20px; overflow: hidden; box-shadow: 0 12px 40px rgba(12,21,36,.1); }
.chat-head { display: flex; align-items: center; gap: .8rem; padding: 1rem 1.25rem;
  background: var(--ink); color: #fff; }
.chat-avatar { width: 44px; height: 44px; border-radius: 13px; }
.chat-head strong { display: block; font-family: var(--font-display); font-size: 1.05rem; }
.chat-status { font-size: .8rem; color: #9FB3D8; display: flex; align-items: center; gap: .4rem; }
.chat-dot { width: 8px; height: 8px; border-radius: 50%; background: #34D399; display: inline-block;
  animation: fx-spark 2s ease-in-out infinite; }
.chat-log { height: 340px; overflow-y: auto; padding: 1.25rem; display: flex; flex-direction: column; gap: .7rem;
  background: linear-gradient(180deg, #F6F9FF, #fff); }
.chat-msg { max-width: 82%; padding: .7rem 1rem; border-radius: 16px; font-size: .96rem; line-height: 1.45;
  animation: hero-rise .3s ease both; }
.chat-bot { align-self: flex-start; background: #fff; border: 1px solid var(--line);
  border-bottom-left-radius: 5px; color: var(--ink); box-shadow: 0 2px 8px rgba(12,21,36,.06); }
.chat-user { align-self: flex-end; background: var(--brand); color: #fff;
  border-bottom-right-radius: 5px; }
.chat-typing { display: flex; gap: 5px; padding: .9rem 1.1rem; }
.chat-typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--slate-light);
  animation: typing-bounce 1s ease-in-out infinite; }
.chat-typing span:nth-child(2) { animation-delay: .15s; }
.chat-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes typing-bounce { 0%, 100% { transform: translateY(0); opacity: .5; } 50% { transform: translateY(-5px); opacity: 1; } }
.chat-img { padding: .4rem; }
.chat-device-img { width: 100%; max-width: 120px; border-radius: 10px; display: block; }
.chat-chips { display: flex; flex-wrap: wrap; gap: .5rem; padding: .9rem 1.25rem; border-top: 1px solid var(--line);
  background: #fff; min-height: 3.4rem; }
.chip { padding: .5rem 1rem; border-radius: 999px; border: 1.5px solid var(--brand);
  background: #EFF4FF; color: var(--brand-deep); font-weight: 600; font-size: .9rem; cursor: pointer;
  transition: all .18s ease; }
.chip:hover { background: var(--brand); color: #fff; transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(27,127,180,.3); }
.chat-input { display: flex; gap: .6rem; padding: 1rem 1.25rem; border-top: 1px solid var(--line); background: #fff; }
.chat-input input { flex: 1; padding: .75rem 1rem; border: 1.5px solid var(--line); border-radius: 12px;
  font-size: 1rem; font-family: var(--font-body); }
.chat-input input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(27,127,180,.15); }
.chat-input .btn { padding: .75rem 1.4rem; }
.chat-noscript { padding: 1rem 1.25rem; font-size: .95rem; }

/* form */
.quote-form { max-width: 720px; margin: 0 auto; background: #fff; border: 1px solid var(--line);
  border-radius: 20px; padding: 2rem; box-shadow: 0 12px 40px rgba(12,21,36,.08); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; margin-bottom: 1.25rem; }
.form-field label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: .35rem; color: var(--ink); }
.form-field .optional { font-weight: 400; color: var(--slate-light); }
.form-field input, .form-field select { width: 100%; padding: .75rem .9rem; border: 1.5px solid var(--line);
  border-radius: 12px; font-size: 1rem; font-family: var(--font-body); background: #fff; color: var(--ink); }
.form-field input:focus, .form-field select:focus { outline: none; border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(27,127,180,.15); }
.radio-row { display: flex; gap: 1.1rem; padding-top: .5rem; flex-wrap: wrap; }
.radio-row label { display: inline-flex; align-items: center; gap: .45rem; font-weight: 500; cursor: pointer; }
.radio-row input { width: 1.1rem; height: 1.1rem; accent-color: var(--brand); }
.form-error { color: #B42318; background: #FEF3F2; border: 1px solid #FECDCA; border-radius: 10px;
  padding: .7rem 1rem; margin: 0 0 1rem; font-size: .95rem; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } .quote-form { padding: 1.4rem; } }

/* handoff */
.quote-handoff { max-width: 720px; margin: 2.5rem auto 0; background: var(--ink); color: #fff;
  border-radius: 20px; padding: 2rem; animation: hero-rise .45s ease both; }
.quote-handoff h2 { color: #fff; margin-top: 0; }
.quote-handoff p { color: #C4D2EC; }
.handoff-preview { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px; padding: 1.1rem 1.25rem; white-space: pre-wrap; font-family: var(--font-body);
  font-size: .93rem; line-height: 1.55; color: #EAF0FC; }
.handoff-note { font-size: .92rem; margin-bottom: 0; }
.handoff-note a { color: var(--smile); font-weight: 600; }

/* trust strip */
.trust-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.5rem; }
.trust-item { display: flex; gap: .7rem; align-items: flex-start; background: var(--mist);
  border-radius: 14px; padding: 1.1rem 1.2rem; font-size: .95rem; color: var(--slate); }
.trust-item .ic { color: var(--brand); flex: none; margin-top: .15rem; }
.trust-item strong { color: var(--ink); }
@media (max-width: 720px) { .trust-strip { grid-template-columns: 1fr; } }

/* ---- repair tracking timeline ---- */
.timeline { display: flex; flex-direction: column; gap: 0; margin: 1rem 0; }
.t-step { display: flex; gap: .8rem; align-items: flex-start; padding: .45rem 0; color: var(--slate); }
.t-dot { width: 18px; height: 18px; border-radius: 50%; border: 2px solid #c9d5e0; flex: none; margin-top: 2px; background: #fff; }
.t-step.done { color: var(--ink); }
.t-step.done .t-dot { background: var(--brand); border-color: var(--brand); }
.t-step.current { color: var(--ink); font-weight: 700; }
.t-step.current .t-dot { border-color: var(--smile); box-shadow: 0 0 0 4px rgba(240,176,64,.25); }
.clean-list { list-style: none; padding: 0; margin: .5rem 0; }
.clean-list li { padding: .5rem 0; border-bottom: 1px solid var(--mist); }

/* ---- protection plan pricing ---- */
.plans { display: grid; gap: 1.4rem; margin-top: 2.5rem; }
@media (min-width: 900px) {
  .plans { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
}
.plan-card { position: relative; display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--line); border-radius: 24px; padding: 2rem 1.6rem;
  box-shadow: 0 6px 24px rgba(12,21,36,.07); transition: transform .25s ease, box-shadow .25s ease; }
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.plan-card.featured { background: linear-gradient(165deg, #14638F 0%, #1B7FB4 70%, #2395c9 100%);
  border: 0; color: #fff; box-shadow: 0 18px 44px rgba(20,99,143,.35); }
@media (min-width: 900px) { .plan-card.featured { transform: scale(1.04); } }
.plan-card.featured:hover { transform: translateY(-4px) scale(1.04); }
.plan-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  background: var(--smile); color: var(--ink); font-size: .72rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase; padding: .4rem 1rem; border-radius: 999px;
  white-space: nowrap; box-shadow: 0 4px 12px rgba(240,176,64,.45); }
.plan-name { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; margin: 0; }
.plan-price { font-family: var(--font-display); font-weight: 800; font-size: 3rem; line-height: 1; margin: .9rem 0 .15rem; }
.plan-price small { font-size: 1.1rem; font-weight: 600; }
.plan-per { font-size: .95rem; opacity: .65; }
.plan-card.featured .plan-per { opacity: .85; }
.plan-desc { margin: 1rem 0 1.4rem; font-size: 1rem; }
.plan-card.featured .plan-desc { opacity: .92; }
.plan-feats { list-style: none; margin: 0 0 1.8rem; padding: 0; display: grid; gap: .7rem; }
.plan-feats li { display: flex; gap: .65rem; align-items: flex-start; font-size: .98rem; }
.plan-feats .ic { width: 22px; height: 22px; flex: none; margin-top: 1px; color: var(--brand); }
.plan-card.featured .plan-feats .ic { color: var(--smile); }
.plan-card .btn { margin-top: auto; justify-content: center; }
.plan-card.featured .btn-light { background: #fff; }
.sample-note { display: inline-block; margin-top: 1.6rem; font-size: .85rem; color: var(--ink-soft);
  background: var(--mist); border: 1px dashed var(--line); border-radius: 12px; padding: .6rem 1rem; }
/* vs comparison */
.vs-grid { display: grid; gap: 1.25rem; margin-top: 2rem; }
@media (min-width: 860px) { .vs-grid { grid-template-columns: 1.1fr 1fr; } }
.vs-card { border-radius: 22px; padding: 1.8rem 1.6rem; }
.vs-card.us { background: var(--brand-soft); border: 1px solid #cfe7f5; }
.vs-card.them { background: #fff; border: 1px solid var(--line); }
.vs-card h3 { font-size: 1.2rem; margin: 0 0 1rem; display: flex; align-items: center; gap: .6rem; }
.vs-card h3 .ic { width: 26px; height: 26px; color: var(--brand-deep); }
.vs-card.them h3 .ic { color: var(--ink-soft); }
.vs-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .65rem; }
.vs-card.us li { display: flex; gap: .6rem; align-items: flex-start; font-weight: 500; }
.vs-card.us li .ic { width: 22px; height: 22px; flex: none; margin-top: 1px; color: var(--brand-deep); }
.vs-card.them li { color: var(--ink-soft); padding-left: 1.4rem; position: relative; }
.vs-card.them li::before { content: "–"; position: absolute; left: .3rem; }
/* steps */
.steps { display: grid; gap: 1.25rem; margin-top: 2rem; counter-reset: step; }
@media (min-width: 860px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 1.6rem 1.4rem;
  box-shadow: 0 6px 24px rgba(12,21,36,.06); }
.step-num { width: 74px; height: 74px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, #35a9dd 0%, var(--brand) 45%, var(--brand-deep) 100%);
  color: #fff; border: 3px solid #fff;
  font-family: var(--font-display); font-weight: 800; font-size: 2rem;
  text-shadow: 0 1px 2px rgba(0,0,0,.18);
  box-shadow: 0 10px 24px rgba(27,127,180,.35), 0 0 0 6px var(--brand-soft);
  margin-bottom: 1.15rem; }
.step h3 { font-size: 1.1rem; margin: 0 0 .5rem; }
.step p { margin: 0; color: var(--ink-soft); }

/* ---- covered services grid ---- */
.soft-grid { display: grid; gap: 1.1rem; margin-top: 2rem; }
@media (min-width: 640px) { .soft-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .soft-grid { grid-template-columns: repeat(3, 1fr); } }
.soft-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 1.5rem 1.35rem;
  box-shadow: 0 6px 24px rgba(12,21,36,.06); transition: transform .25s ease, box-shadow .25s ease; }
.soft-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.soft-icon { width: 48px; height: 48px; border-radius: 15px; display: grid; place-items: center;
  background: var(--brand-soft); color: var(--brand-deep); margin-bottom: 1rem; }
.soft-icon .ic { width: 26px; height: 26px; }
.soft-card h3 { font-size: 1.08rem; margin: 0 0 .45rem; }
.soft-card p { margin: 0; color: var(--ink-soft); font-size: .97rem; }

/* ---- coming soon ---- */
.soon { text-align: center; padding-top: .5rem; }
.soon-scene { position: relative; width: min(400px, 86vw); aspect-ratio: 1 / 1; margin: 0 auto 1.5rem; }
.soon-orb { position: absolute; inset: 6%; border-radius: 50%;
  background: radial-gradient(circle, var(--brand-soft) 0%, rgba(231,244,251,0) 68%);
  animation: orb-pulse 4.5s ease-in-out infinite; }
.soon-ring { position: absolute; inset: 2%; border-radius: 50%;
  border: 2px dashed #bcdcef; opacity: .8; animation: spin-slow 26s linear infinite; }
.soon-phone { position: absolute; inset: 24%; animation: floaty 3.6s ease-in-out infinite;
  filter: drop-shadow(0 18px 28px rgba(20,99,143,.22)); }
.soon-phone svg { width: 100%; height: 100%; display: block; }
.soon-chip { position: absolute; width: 64px; height: 64px; border-radius: 20px; background: #fff;
  display: grid; place-items: center; color: var(--brand-deep);
  box-shadow: 0 10px 26px rgba(12,21,36,.14); border: 1px solid var(--line);
  animation: floaty 3s ease-in-out infinite; animation-delay: var(--d, 0s); }
.soon-chip .ic { width: 30px; height: 30px; }
.soon-chip.c1 { top: 4%; left: 8%; }
.soon-chip.c2 { top: 10%; right: 4%; --d: .7s; }
.soon-chip.c3 { bottom: 8%; left: 2%; --d: 1.3s; }
.soon-chip.c4 { bottom: 4%; right: 10%; --d: 1.9s; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-13px); } }
@keyframes orb-pulse { 0%, 100% { transform: scale(1); opacity: .75; } 50% { transform: scale(1.07); opacity: 1; } }
@keyframes spin-slow { to { transform: rotate(360deg); } }
.soon-title { font-size: clamp(2rem, 6vw, 2.9rem); margin: 0 0 .8rem; }
.soon-dots::after { content: ""; animation: dots 1.6s steps(1) infinite; }
@keyframes dots { 0% { content: ""; } 25% { content: "."; } 50% { content: ".."; } 75% { content: "..."; } }
.soon-sub { max-width: 34rem; margin: 0 auto 1.8rem; color: var(--ink-soft); font-size: 1.08rem; }
.soon .btn-row { justify-content: center; }

/* ---- review nudge on tracking page ---- */
.review-nudge { margin-top: 1.4rem; padding: 1.4rem 1.3rem; border-radius: 18px;
  background: linear-gradient(150deg, #E7F4FB, #FFF6E3); border: 1px solid #cfe7f5; text-align: center; }
.review-nudge p { margin: 0 0 1rem; }
.review-nudge .btn { justify-content: center; }
