/* ==========================================================
   EZ4U Auto Care — "Precision"
   ========================================================== */

@font-face { font-family: 'Chakra Petch'; font-weight: 500; font-style: normal; font-display: swap; src: url(/fonts/chakra-500.woff2) format('woff2'); }
@font-face { font-family: 'Chakra Petch'; font-weight: 600; font-style: normal; font-display: swap; src: url(/fonts/chakra-600.woff2) format('woff2'); }
@font-face { font-family: 'Chakra Petch'; font-weight: 700; font-style: normal; font-display: swap; src: url(/fonts/chakra-700.woff2) format('woff2'); }
@font-face { font-family: 'Inter'; font-weight: 400 700; font-style: normal; font-display: swap; src: url(/fonts/inter-var.woff2) format('woff2'); }

:root {
  --graphite-950: #0a0c0f;
  --graphite-900: #0f1216;
  --graphite-850: #14181e;
  --graphite-800: #1a1f27;
  --steel-700:    #2a323d;
  --steel-600:    #3a4452;
  --volt:         #00e5ff;
  --volt-deep:    #0891b2;
  --amber:        #ffb020;
  --heat:         #ff6b35;
  --chrome:       #f5f7fa;
  --chrome-dim:   #94a3b8;

  --grad-volt: linear-gradient(135deg, var(--volt), var(--volt-deep));
  --grad-heat: linear-gradient(135deg, var(--amber), var(--heat));
  --glow-volt: 0 0 32px rgba(0,229,255,.35);
  --glow-amber: 0 0 32px rgba(255,176,32,.4);

  --f-display: 'Chakra Petch', 'Rajdhani', system-ui, sans-serif;
  --f-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --r-sm: 6px;
  --r: 12px;
  --r-lg: 20px;
  --ease: cubic-bezier(.2,.7,.2,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --nav-h: 72px;
  --gutter: clamp(16px, 4vw, 40px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--graphite-950);
  color: var(--chrome);
  font: 400 1rem/1.6 var(--f-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; color: inherit; }
h1, h2, h3 { font-family: var(--f-display); line-height: 1.05; margin: 0; letter-spacing: -.01em; }
p { margin: 0; }
[hidden]:not(.drawer) { display: none !important; }
::selection { background: var(--volt); color: var(--graphite-950); }
:focus-visible { outline: 2px solid var(--volt); outline-offset: 3px; border-radius: 4px; }

.wrap { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 var(--gutter); }
.ico { width: 1.25em; height: 1.25em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.ico--amber { color: var(--amber); }
.grad { background: var(--grad-volt); -webkit-background-clip: text; background-clip: text; color: transparent; }
.grad-heat { background: var(--grad-heat); -webkit-background-clip: text; background-clip: text; color: transparent; }

.skip { position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--amber); color: var(--graphite-950); padding: 10px 16px; border-radius: var(--r-sm); font-weight: 700; text-decoration: none; }
.skip:focus { top: 12px; }

/* ---------- progress bar ---------- */
.progress { position: fixed; inset: 0 0 auto 0; height: 3px; z-index: 120; pointer-events: none; }
.progress span { display: block; height: 100%; background: var(--grad-volt); box-shadow: var(--glow-volt); transform-origin: 0 50%; transform: scaleX(0); }

/* ---------- buttons ---------- */
.btn {
  --mx: 0px; --my: 0px;
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  min-height: 48px; padding: 0 1.4em;
  border-radius: var(--r-sm); border: 1px solid transparent;
  font: 700 .95rem/1 var(--f-display); letter-spacing: .06em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transform: translate3d(var(--mx), var(--my), 0);
  transition: transform .35s var(--ease-out), box-shadow .3s, background-color .3s, border-color .3s, color .3s;
}
.btn .ico { transition: transform .3s var(--ease-out); }
.btn:hover .ico:last-child { transform: translateX(3px); }
.btn--sm { min-height: 40px; padding: 0 1.1em; font-size: .85rem; }
.btn--lg { min-height: 56px; padding: 0 1.7em; font-size: 1rem; }
.btn--block { width: 100%; }
.btn--amber { background: var(--amber); color: var(--graphite-950); box-shadow: 0 0 0 rgba(255,176,32,0); }
.btn--amber:hover { box-shadow: var(--glow-amber), 0 8px 24px rgba(255,107,53,.25); background: #ffbe45; }
.btn--ghost { background: rgba(245,247,250,.03); border-color: var(--steel-600); color: var(--chrome); }
.btn--ghost:hover { border-color: var(--volt); color: var(--volt); box-shadow: inset 0 0 0 1px rgba(0,229,255,.25), var(--glow-volt); }

/* ---------- nav ---------- */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--nav-h); transition: background-color .35s, border-color .35s, backdrop-filter .35s; border-bottom: 1px solid transparent; }
.nav.is-scrolled { background: rgba(10,12,15,.72); -webkit-backdrop-filter: blur(14px) saturate(140%); backdrop-filter: blur(14px) saturate(140%); border-bottom-color: rgba(42,50,61,.7); }
.nav__inner { height: 100%; display: flex; align-items: center; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand__mark { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid var(--steel-600); border-radius: 8px; background: var(--graphite-850); }
.brand__mark svg { width: 26px; height: 26px; fill: none; stroke: var(--volt); stroke-width: 3; stroke-linecap: round; }
.brand__mark circle { fill: var(--amber); stroke: none; }
.brand__mark .needle { stroke: var(--amber); transform-origin: 20px 20px; transition: transform .6s var(--ease-out); }
.brand:hover .needle { transform: rotate(-70deg); }
.brand__text { font: 700 1.25rem/1 var(--f-display); letter-spacing: .02em; display: flex; flex-direction: column; }
.brand__text b { font-weight: 500; font-size: .62rem; letter-spacing: .28em; text-transform: uppercase; color: var(--chrome-dim); margin-top: 3px; }
.nav__links { display: none; gap: 4px; margin-left: auto; }
.nav__links a { position: relative; padding: 8px 12px; font: 600 .9rem/1 var(--f-display); letter-spacing: .06em; text-transform: uppercase; text-decoration: none; color: var(--chrome-dim); transition: color .2s; }
.nav__links a::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 2px; height: 1px; background: var(--volt); transform: scaleX(0); transform-origin: 0 50%; transition: transform .3s var(--ease-out); }
.nav__links a:hover, .nav__links a.is-active { color: var(--chrome); }
.nav__links a:hover::after, .nav__links a.is-active::after { transform: scaleX(1); }
.nav__cta { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.nav__phone { display: none; align-items: center; gap: 8px; font: 600 1rem/1 var(--f-display); letter-spacing: .03em; text-decoration: none; color: var(--chrome); font-variant-numeric: tabular-nums; }
.nav__phone .ico { color: var(--volt); }
.nav__phone:hover { color: var(--volt); }
.nav__toggle { width: 44px; height: 44px; display: grid; place-items: center; background: var(--graphite-850); border: 1px solid var(--steel-700); border-radius: var(--r-sm); cursor: pointer; }
.nav__toggle .ico { width: 22px; height: 22px; }
@media (min-width: 960px) {
  .nav__links { display: flex; }
  .nav__cta { margin-left: 8px; }
  .nav__phone { display: inline-flex; }
  .nav__toggle { display: none; }
}
@media (max-width: 420px) { .nav__cta .btn--sm { display: none; } }

/* ---------- drawer ---------- */
.drawer { position: fixed; inset: 0; z-index: 150; }
.drawer[hidden] { display: block; visibility: hidden; pointer-events: none; }
.drawer__scrim { position: absolute; inset: 0; background: rgba(5,6,8,.6); opacity: 0; transition: opacity .35s; }
.drawer__panel { position: absolute; inset: 0 0 0 auto; width: min(360px, 88vw); background: var(--graphite-900); border-left: 1px solid var(--steel-700); padding: 80px 24px 32px; display: flex; flex-direction: column; gap: 24px; transform: translateX(100%); transition: transform .45s var(--ease-out); overflow-y: auto; }
.drawer.is-open { visibility: visible; pointer-events: auto; }
.drawer.is-open .drawer__scrim { opacity: 1; }
.drawer.is-open .drawer__panel { transform: none; }
.drawer__close { position: absolute; top: 16px; right: 16px; width: 44px; height: 44px; display: grid; place-items: center; background: none; border: 1px solid var(--steel-700); border-radius: var(--r-sm); cursor: pointer; }
.drawer nav { display: flex; flex-direction: column; }
.drawer nav a { padding: 14px 0; border-bottom: 1px solid var(--steel-700); font: 600 1.15rem/1.2 var(--f-display); letter-spacing: .03em; text-decoration: none; }
.drawer nav a:hover { color: var(--volt); }
.drawer__meta { color: var(--chrome-dim); font-size: .9rem; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding: calc(var(--nav-h) + 40px) 0 80px; overflow: hidden; isolation: isolate; }
.hero__bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero__grid {
  position: absolute; inset: -20% -10%;
  background-image:
    linear-gradient(rgba(0,229,255,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,.09) 1px, transparent 1px);
  background-size: 96px 96px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, #000 20%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, #000 20%, transparent 75%);
  will-change: transform;
}
.hero__grid--fine { background-size: 24px 24px; background-image: linear-gradient(rgba(0,229,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(0,229,255,.035) 1px, transparent 1px); }
.glow { position: absolute; width: 60vmax; height: 60vmax; border-radius: 50%; pointer-events: none; will-change: transform; }
.glow--volt { background: radial-gradient(circle, rgba(0,229,255,.18), rgba(0,229,255,0) 60%); top: -25vmax; left: -15vmax; animation: drift1 22s ease-in-out infinite alternate; }
.glow--amber { background: radial-gradient(circle, rgba(255,176,32,.13), rgba(255,107,53,0) 60%); bottom: -30vmax; right: -20vmax; animation: drift2 26s ease-in-out infinite alternate; }
@keyframes drift1 { to { transform: translate3d(18vmax, 10vmax, 0); } }
@keyframes drift2 { to { transform: translate3d(-16vmax, -12vmax, 0); } }
.hero__scan { position: absolute; left: 0; right: 0; top: 0; height: 140px; background: linear-gradient(to bottom, rgba(0,229,255,0), rgba(0,229,255,.06) 85%, rgba(0,229,255,.55) 99%, rgba(0,229,255,0)); animation: scan 7s cubic-bezier(.45,0,.55,1) infinite; will-change: transform; }
@keyframes scan { 0% { transform: translateY(-160px); opacity: 0; } 8% { opacity: 1; } 85% { opacity: 1; } 100% { transform: translateY(100svh); opacity: 0; } }

.hero__inner { position: relative; z-index: 1; }
/* over the photo the gradient ends on a lighter cyan so it holds 3:1+ against the busiest pixels */
.hero__title .grad { background-image: linear-gradient(135deg, var(--volt), #2cc3e0); }
.hero__copy { max-width: 640px; }

/* real-shop photo, Ken Burns drift (transform: scale only) */
.hero__photo { position: absolute; z-index: -2; inset: 0 0 auto 0; height: 60svh; overflow: hidden; background: var(--graphite-900); }
.hero__photo picture, .hero__photo img { display: block; width: 100%; height: 100%; }
.hero__photo img { object-fit: cover; object-position: 50% 30%; transform-origin: 55% 45%; animation: kenburns 26s ease-in-out infinite alternate; will-change: transform; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.08); } }
/* scrim: light over the top of the photo, near-solid wherever text sits */
.hero__scrim { position: absolute; z-index: -1; inset: 0; pointer-events: none; background:
  linear-gradient(180deg, rgba(10,12,15,.9) 0, rgba(10,12,15,.85) 9svh, rgba(10,12,15,.3) 16svh, rgba(10,12,15,.4) 26svh, rgba(10,12,15,.84) 40svh, rgba(10,12,15,.94) 52svh, var(--graphite-950) 60svh); }
.hero__scrim::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--volt) 30%, var(--volt-deep) 70%, transparent); box-shadow: var(--glow-volt); opacity: .7; }
@media (max-width: 979px) {
  .hero { align-items: flex-end; padding-top: 30svh; padding-bottom: 56px; }
}
@media (min-width: 980px) {
  .hero__photo { inset: 0 0 0 35%; height: auto; }
  .hero__photo img { object-position: 50% 35%; }
  .hero__scrim { background:
    linear-gradient(90deg, var(--graphite-950) 0, var(--graphite-950) 36%, rgba(10,12,15,.9) 50%, rgba(10,12,15,.45) 64%, rgba(10,12,15,.12) 88%),
    linear-gradient(0deg, var(--graphite-950) 0, rgba(10,12,15,0) 22%),
    linear-gradient(180deg, rgba(10,12,15,.65) 0, rgba(10,12,15,0) 18%); }
}

.napa-badge { display: inline-flex; align-items: stretch; border: 1px solid var(--steel-600); border-radius: var(--r-sm); overflow: hidden; background: rgba(20,24,30,.8); font-family: var(--f-display); margin-bottom: 28px; }
.napa-badge__tag { background: #0033a0; color: #fff; font-weight: 700; letter-spacing: .12em; padding: 7px 10px; font-size: .85rem; display: flex; align-items: center; border-right: 3px solid #ffc72c; }
.napa-badge__txt { padding: 7px 12px; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--chrome-dim); display: flex; align-items: center; gap: .4em; }
.napa-badge__txt b { color: var(--chrome); font-weight: 700; }
.napa-badge--sm { margin: 16px 0 0; }

.hero__title { font-size: clamp(2.4rem, 6.2vw, 4.9rem); font-weight: 700; line-height: .98; letter-spacing: -.02em; text-transform: uppercase; }
.hero__title .line { display: block; overflow: hidden; padding-bottom: .04em; }
.hero__title .line > span { display: inline-block; }
.js .hero__title .line > span { transform: translateY(105%); animation: rise .9s var(--ease-out) forwards; }
.js .hero__title .line:nth-child(1) > span { animation-delay: .1s; }
.js .hero__title .line:nth-child(2) > span:nth-child(1) { animation-delay: .25s; }
.js .hero__title .line:nth-child(2) > span:nth-child(2) { animation-delay: .35s; }
@keyframes rise { to { transform: none; } }
.hero__sub { margin-top: 24px; max-width: 34em; font-size: clamp(1.02rem, 1.6vw, 1.18rem); color: #c3cdd9; }
.js .hero__sub, .js .hero__rating, .js .hero__ctas, .js .napa-badge:not(.napa-badge--sm) { opacity: 0; animation: fadeUp .9s var(--ease-out) forwards; }
.js .napa-badge:not(.napa-badge--sm) { animation-delay: .05s; }
.js .hero__sub { animation-delay: .5s; }
.js .hero__rating { animation-delay: .62s; }
.js .hero__ctas { animation-delay: .74s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

.hero__rating { display: flex; align-items: center; gap: 12px; margin-top: 28px; font-family: var(--f-display); }
.hero__score { font-size: 2.6rem; font-weight: 700; line-height: 1; font-variant-numeric: tabular-nums; color: var(--chrome); }
.hero__stars { display: flex; gap: 2px; color: var(--amber); }
.hero__stars .ico { fill: currentColor; stroke: none; width: 22px; height: 22px; }
.hero__src { color: var(--chrome-dim); font-size: .95rem; letter-spacing: .08em; text-transform: uppercase; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
@media (max-width: 520px) { .hero__ctas .btn { width: 100%; } }

.hero__cue { position: absolute; left: 50%; bottom: 24px; width: 26px; height: 42px; margin-left: -13px; border: 1.5px solid var(--steel-600); border-radius: 14px; display: none; }
.hero__cue span { position: absolute; left: 50%; top: 8px; width: 3px; height: 8px; margin-left: -1.5px; border-radius: 2px; background: var(--volt); animation: cue 1.8s var(--ease) infinite; }
@keyframes cue { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(14px); opacity: 0; } 100% { opacity: 0; } }
@media (min-width: 980px) and (min-height: 760px) { .hero__cue { display: block; } }



/* ---------- trust strip ---------- */
.trust { border-block: 1px solid var(--steel-700); background: var(--graphite-900); overflow: hidden; }
.trust__track { overflow-x: auto; scrollbar-width: none; }
.trust__track::-webkit-scrollbar { display: none; }
.trust__list { list-style: none; margin: 0 auto; padding: 18px var(--gutter); display: flex; gap: 12px 36px; justify-content: center; flex-wrap: wrap; max-width: 1200px; }
.trust__list li, .trust__list a { display: inline-flex; align-items: center; gap: 10px; font-size: .92rem; color: var(--chrome-dim); white-space: nowrap; text-decoration: none; }
.trust__list b { color: var(--chrome); font-weight: 600; }
.trust__list .ico { color: var(--volt); }
.trust__list a:hover b { color: var(--volt); }
.trust__list a .ico.ico--amber { fill: var(--amber); stroke: none; }

/* ---------- section + headers ---------- */
.section { position: relative; padding: clamp(80px, 11vw, 140px) 0; }
.sh { max-width: 760px; margin: 0 auto 56px; text-align: center; position: relative; }
.sh--left { text-align: left; margin-left: 0; }
.sh__eyebrow { position: relative; display: inline-flex; align-items: center; gap: 10px; font: 600 .8rem/1 var(--f-display); letter-spacing: .28em; text-transform: uppercase; color: var(--volt); margin-bottom: 18px; }
.sh__eyebrow::before { content: ""; width: 22px; height: 1px; background: currentColor; }
.sh__eyebrow--amber { color: var(--amber); }
.sh__title { text-wrap: balance; font-size: clamp(2.1rem, 5vw, 3.6rem); font-weight: 700; text-transform: uppercase; letter-spacing: -.01em; }
.sh__lede { margin-top: 18px; color: var(--chrome-dim); font-size: 1.08rem; }
.sh--left .sh__lede { max-width: 36em; }

/* diagnostic scan-line reveal */
.js .sh { --sweep: 0; }
.js .sh::before { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 2px; background: linear-gradient(90deg, transparent, var(--volt) 40%, #fff 50%, var(--volt) 60%, transparent); box-shadow: var(--glow-volt); transform: scaleX(0); transform-origin: 0 50%; opacity: 0; pointer-events: none; }
.js .sh > * { opacity: 0; transform: translateY(12px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.js .sh.is-in::before { animation: sweep .9s var(--ease) forwards; }
.js .sh.is-in > * { opacity: 1; transform: none; }
.js .sh.is-in > *:nth-child(1) { transition-delay: .45s; }
.js .sh.is-in > *:nth-child(2) { transition-delay: .55s; }
.js .sh.is-in > *:nth-child(3) { transition-delay: .65s; }
.js .sh.is-in > *:nth-child(n+4) { transition-delay: .75s; }
@keyframes sweep { 0% { transform: scaleX(0); opacity: 1; transform-origin: 0 50%; } 50% { transform: scaleX(1); opacity: 1; transform-origin: 0 50%; } 51% { transform-origin: 100% 50%; } 100% { transform: scaleX(0); opacity: 1; transform-origin: 100% 50%; } }

/* generic reveal */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); transition-delay: var(--d, 0s); }
.js .reveal.is-in { opacity: 1; transform: none; }

/* ---------- symptoms ---------- */
.symptoms { background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0,229,255,.06), transparent 70%); }
.chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 900px; margin: 0 auto; }
.chip {
  display: inline-flex; align-items: center; gap: 10px; min-height: 48px; padding: 0 20px;
  background: var(--graphite-850); border: 1px solid var(--steel-700); border-radius: 999px;
  font: 600 .98rem/1 var(--f-body); color: var(--chrome); cursor: pointer;
  transition: transform .35s var(--ease-out), border-color .25s, background-color .25s, box-shadow .3s, color .25s;
}
.chip .ico { color: var(--volt); transition: transform .5s var(--ease-out); }
.chip:hover { transform: translateY(-3px); border-color: var(--volt); box-shadow: var(--glow-volt); }
.chip:hover .ico { transform: rotate(-20deg) scale(1.15); }
.chip[aria-pressed="true"] { background: var(--volt); border-color: var(--volt); color: var(--graphite-950); box-shadow: var(--glow-volt); }
.chip[aria-pressed="true"] .ico { color: var(--graphite-950); }
.chip--hot { border-color: rgba(255,176,32,.5); }
.chip--hot .ico { color: var(--amber); }
.chip--hot:hover { border-color: var(--amber); box-shadow: var(--glow-amber); }
.chip--hot[aria-pressed="true"] { background: var(--amber); border-color: var(--amber); box-shadow: var(--glow-amber); }
.js .chips .chip { opacity: 0; transform: translateY(16px) scale(.96); }
.js .chips.is-in .chip { animation: chipIn .6s var(--ease-out) forwards; animation-delay: calc(var(--i, 0) * 60ms); }
@keyframes chipIn { to { opacity: 1; transform: none; } }

.diag { position: relative; max-width: 760px; margin: 40px auto 0; min-height: 220px; border: 1px solid var(--steel-700); border-radius: var(--r-lg); background: linear-gradient(180deg, var(--graphite-850), var(--graphite-900)); overflow: hidden; }
.diag__idle { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; min-height: 220px; padding: 24px; color: var(--chrome-dim); font-family: var(--f-display); letter-spacing: .12em; text-transform: uppercase; font-size: .85rem; text-align: center; }
.diag__pulse { width: 14px; height: 14px; border-radius: 50%; background: var(--volt); box-shadow: 0 0 0 0 rgba(0,229,255,.6); animation: ping 1.8s infinite; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(0,229,255,.5); } 100% { box-shadow: 0 0 0 22px rgba(0,229,255,0); } }
.diag__result { position: relative; padding: clamp(24px, 4vw, 40px); }
.diag__result.is-anim > *:not(.diag__scan) { animation: fadeUp .6s var(--ease-out) both; }
.diag__result.is-anim > :nth-child(3) { animation-delay: .05s; }
.diag__result.is-anim > :nth-child(4) { animation-delay: .12s; }
.diag__result.is-anim > :nth-child(5) { animation-delay: .2s; }
.diag__scan { position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(0,229,255,.25), transparent); transform: translateX(-100%); pointer-events: none; }
.diag__result.is-anim .diag__scan { animation: diagScan .8s var(--ease) forwards; }
@keyframes diagScan { to { transform: translateX(100%); } }
.diag__label { font: 600 .75rem/1 var(--f-display); letter-spacing: .24em; text-transform: uppercase; color: var(--volt); }
.diag__service { font-size: clamp(1.7rem, 4vw, 2.4rem); text-transform: uppercase; margin-top: 10px; }
.diag__why { margin-top: 12px; color: #c3cdd9; max-width: 40em; }
.diag__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.diag__note { margin-top: 18px; font-size: .85rem; color: var(--chrome-dim); }

/* ---------- services ---------- */
.svc-grid { display: grid; gap: 16px; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 640px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .svc-grid { grid-template-columns: repeat(3, 1fr); } }
.svc { position: relative; background: var(--graphite-850); border: 1px solid var(--steel-700); border-radius: var(--r); transition: transform .45s var(--ease-out), border-color .3s, box-shadow .4s; }
.svc::after { content: ""; position: absolute; inset: -1px; border-radius: inherit; pointer-events: none; opacity: 0; transition: opacity .4s; background: radial-gradient(400px circle at var(--px, 50%) var(--py, 0%), rgba(0,229,255,.14), transparent 40%); }
.svc:hover { transform: translateY(-6px); border-color: rgba(0,229,255,.55); box-shadow: 0 0 0 1px rgba(0,229,255,.15), 0 18px 40px rgba(0,0,0,.4), var(--glow-volt); }
.svc:hover::after { opacity: 1; }
.svc.is-flash { animation: flash 1.6s var(--ease); }
@keyframes flash { 0%, 100% { box-shadow: none; } 20%, 60% { box-shadow: 0 0 0 2px var(--volt), var(--glow-volt); } }
.svc__head { width: 100%; display: flex; align-items: center; gap: 16px; padding: 22px; background: none; border: 0; cursor: pointer; text-align: left; }
.svc__icon { width: 52px; height: 52px; flex: none; display: grid; place-items: center; border-radius: 10px; background: rgba(0,229,255,.07); border: 1px solid rgba(0,229,255,.2); color: var(--volt); }
.svc__icon .ico { width: 28px; height: 28px; transition: transform .6s var(--ease-out); }
.svc__icon .ia { transition: transform .6s var(--ease-out); transform-origin: 12px 12px; transform-box: view-box; }
.svc:hover .svc__icon .ico { transform: rotate(-12deg) scale(1.08); }
.svc:hover .svc__icon .ia { transform: rotate(90deg); }
.svc__name { font: 700 1.2rem/1.15 var(--f-display); text-transform: uppercase; letter-spacing: .03em; flex: 1; }
.svc__plus { position: relative; width: 16px; height: 16px; flex: none; }
.svc__plus::before, .svc__plus::after { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 2px; margin-top: -1px; background: var(--chrome-dim); transition: transform .35s var(--ease-out), background-color .3s; }
.svc__plus::after { transform: rotate(90deg); }
.svc__head[aria-expanded="true"] .svc__plus::after { transform: rotate(0); }
.svc__head[aria-expanded="true"] .svc__plus::before, .svc__head[aria-expanded="true"] .svc__plus::after { background: var(--volt); }
.svc__body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s var(--ease-out); }
.svc__body > div { overflow: hidden; padding: 0 22px; }
.svc__head[aria-expanded="true"] + .svc__body { grid-template-rows: 1fr; }
.svc__head[aria-expanded="true"] + .svc__body > div { padding-bottom: 22px; }
.svc__body p { color: #c3cdd9; font-size: .96rem; }
.svc__body a { color: var(--volt); }
.svc__time { display: flex; align-items: center; gap: 8px; margin-top: 14px; font: 600 .82rem/1.3 var(--f-display); letter-spacing: .08em; text-transform: uppercase; color: var(--amber) !important; }

/* ---------- out-of-province ---------- */
.oop { background: var(--graphite-900); border-block: 1px solid var(--steel-700); overflow: hidden; }
.oop__bg { position: absolute; inset: 0; pointer-events: none; background:
  radial-gradient(ellipse 50% 60% at 100% 0%, rgba(255,176,32,.1), transparent 60%),
  repeating-linear-gradient(135deg, rgba(255,176,32,.035) 0 2px, transparent 2px 22px); }
.oop__top { display: grid; gap: 48px; }
@media (min-width: 980px) { .oop__top { grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; } }
.oop .sh { margin-bottom: 0; }
.oop__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.oop__more { margin-top: 20px; }
.oop__more a { display: inline-flex; align-items: center; gap: 8px; color: var(--amber); font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(255,176,32,.4); padding-bottom: 2px; }
.oop__more a:hover { border-color: var(--amber); }
.steps { list-style: none; margin: 0; padding: 0; position: relative; display: grid; gap: 14px; }
.steps::before { content: ""; position: absolute; left: 27px; top: 28px; bottom: 28px; width: 2px; background: linear-gradient(var(--amber), rgba(255,176,32,.1)); transform-origin: top; transform: scaleY(var(--fill, 1)); }
.js .steps::before { --fill: 0; transition: transform 1.4s var(--ease-out); }
.js .steps.is-in::before { --fill: 1; }
.step { position: relative; display: flex; gap: 18px; padding: 18px 20px 18px 0; }
.step__n { position: relative; z-index: 1; width: 56px; height: 56px; flex: none; display: grid; place-items: center; border-radius: 50%; background: var(--graphite-950); border: 1px solid rgba(255,176,32,.5); font: 700 1.05rem/1 var(--f-display); color: var(--amber); font-variant-numeric: tabular-nums; }
.step h3 { font-size: 1.2rem; text-transform: uppercase; letter-spacing: .03em; margin-top: 6px; }
.step p { margin-top: 6px; color: var(--chrome-dim); }
.faq { margin-top: 64px; display: grid; gap: 12px; }
@media (min-width: 860px) { .faq { grid-template-columns: 1fr 1fr; } }
.faq__item { background: var(--graphite-850); border: 1px solid var(--steel-700); border-radius: var(--r); transition: border-color .3s; }
.faq__item[open] { border-color: rgba(255,176,32,.5); }
.faq__item summary { list-style: none; cursor: pointer; padding: 20px 22px; font: 600 1.08rem/1.3 var(--f-display); letter-spacing: .02em; display: flex; justify-content: space-between; gap: 16px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; color: var(--amber); font-size: 1.4rem; line-height: 1; transition: transform .3s var(--ease-out); }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding: 0 22px 20px; color: #c3cdd9; }
.faq__item a { color: var(--amber); }

/* ---------- stats ---------- */
.stats { padding: 56px 0; border-bottom: 1px solid var(--steel-700); background: linear-gradient(90deg, rgba(0,229,255,.04), transparent 40%, transparent 60%, rgba(255,176,32,.04)); }
.stats__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
@media (min-width: 760px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: center; }
.stat__num { display: block; font: 700 clamp(2.6rem, 6vw, 4rem)/1 var(--f-display); font-variant-numeric: tabular-nums; background: var(--grad-volt); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat__num small { font-size: .45em; margin-left: .15em; }
.stat__label { display: block; margin-top: 10px; font: 600 .8rem/1.2 var(--f-display); letter-spacing: .2em; text-transform: uppercase; color: var(--chrome-dim); }

/* ---------- why ---------- */
.why__quote { margin: 0 auto 64px; max-width: 880px; text-align: center; position: relative; padding: 0 12px; }
.why__quote blockquote { margin: 0; font: 500 clamp(1.4rem, 3.2vw, 2.1rem)/1.3 var(--f-display); color: var(--chrome); }
.why__quote figcaption { margin-top: 18px; color: var(--volt); font: 600 .85rem/1 var(--f-display); letter-spacing: .2em; text-transform: uppercase; }
.why__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
@media (min-width: 700px) { .why__list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .why__list { grid-template-columns: repeat(4, 1fr); } }
.why__item { position: relative; padding: 28px 24px; border-radius: var(--r); background: var(--graphite-850); border: 1px solid var(--steel-700); overflow: hidden; transition: transform .45s var(--ease-out), border-color .3s; }
.why__item:hover { transform: translateY(-4px); border-color: var(--steel-600); }
.why__item::before { content: ""; position: absolute; left: 0; top: 0; height: 2px; width: 100%; background: var(--grad-volt); transform: scaleX(0); transform-origin: 0 50%; transition: transform .8s var(--ease-out) .2s; }
.why__item.is-in::before, html:not(.js) .why__item::before { transform: scaleX(1); }
.why__n { position: absolute; right: 18px; top: 12px; font: 700 3.2rem/1 var(--f-display); color: rgba(148,163,184,.12); font-variant-numeric: tabular-nums; }
.why__item > .ico { width: 30px; height: 30px; color: var(--volt); }
.why__item h3 { margin-top: 18px; font-size: 1.25rem; text-transform: uppercase; letter-spacing: .02em; }
.why__item p { margin-top: 10px; color: var(--chrome-dim); font-size: .96rem; }

/* ---------- napa ---------- */
.napa { background: linear-gradient(180deg, var(--graphite-950), var(--graphite-900)); border-top: 1px solid var(--steel-700); }
.napa__grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 980px) { .napa__grid { grid-template-columns: 1fr 1.1fr; gap: 64px; } }
.napa .sh { margin-bottom: 28px; }
.napa__cards { display: grid; gap: 14px; }
.ncard { display: grid; grid-template-columns: auto 1fr; gap: 4px 18px; padding: 22px; border-radius: var(--r); background: var(--graphite-850); border: 1px solid var(--steel-700); transition: transform .45s var(--ease-out), border-color .3s; }
.ncard:hover { transform: translateX(6px); border-color: rgba(0,229,255,.45); }
.ncard .ico { grid-row: span 2; width: 30px; height: 30px; color: var(--volt); margin-top: 2px; }
.ncard h3 { font-size: 1.15rem; text-transform: uppercase; letter-spacing: .03em; }
.ncard p { color: var(--chrome-dim); font-size: .95rem; }

/* ---------- reviews wall ---------- */
.wall { columns: 1; column-gap: 16px; }
@media (min-width: 700px) { .wall { columns: 2; } }
@media (min-width: 1040px) { .wall { columns: 3; } }
.rcard { break-inside: avoid; display: block; margin: 0 0 16px; padding: 26px; border-radius: var(--r); background: var(--graphite-850); border: 1px solid var(--steel-700); position: relative; transition: transform .45s var(--ease-out), border-color .3s, box-shadow .4s; }
.rcard:hover { transform: translateY(-4px); border-color: var(--steel-600); }
.rcard blockquote { margin: 0; font-size: 1.02rem; color: #d7dee7; }
.rcard blockquote::before { content: "“"; display: block; font: 700 3.2rem/.6 var(--f-display); color: var(--volt); margin-bottom: 10px; }
.rcard figcaption { margin-top: 18px; display: flex; flex-direction: column; gap: 2px; font-size: .9rem; }
.rcard figcaption b { font-family: var(--f-display); font-size: 1.05rem; letter-spacing: .03em; }
.rcard figcaption span { color: var(--chrome-dim); }
.rcard--score { text-align: center; background: radial-gradient(circle at 50% 0%, rgba(0,229,255,.12), transparent 70%), var(--graphite-850); border-color: rgba(0,229,255,.35); }
.rcard__big { display: block; font: 700 5.5rem/1 var(--f-display); font-variant-numeric: tabular-nums; background: var(--grad-volt); -webkit-background-clip: text; background-clip: text; color: transparent; }
.rcard__stars { display: flex; justify-content: center; gap: 4px; margin: 10px 0; color: var(--amber); }
.rcard__stars .ico { fill: currentColor; stroke: none; width: 24px; height: 24px; }
.rcard--score > p { color: var(--chrome-dim); }
.rcard__topics { margin-top: 18px !important; display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; font-size: .82rem; }
.rcard__topics span { padding: 4px 10px; border-radius: 999px; border: 1px solid var(--steel-600); color: var(--chrome); }
.rcard--feature { background: linear-gradient(160deg, rgba(0,229,255,.1), transparent 60%), var(--graphite-850); border-color: rgba(0,229,255,.3); }
.rcard--feature blockquote { font: 500 1.35rem/1.35 var(--f-display); color: var(--chrome); }
.rcard--short blockquote { font: 600 1.2rem/1.35 var(--f-display); }
.rcard--cta { display: flex; align-items: center; justify-content: space-between; gap: 12px; text-decoration: none; font: 700 1.05rem/1.2 var(--f-display); letter-spacing: .06em; text-transform: uppercase; background: var(--amber); color: var(--graphite-950); border-color: var(--amber); }
.rcard--cta:hover { box-shadow: var(--glow-amber); border-color: var(--amber); }
.rcard--cta .ico { width: 26px; height: 26px; transition: transform .3s var(--ease-out); }
.rcard--cta:hover .ico { transform: translateX(4px); }

/* ---------- book ---------- */
.book { background: radial-gradient(ellipse 60% 70% at 0% 50%, rgba(255,176,32,.07), transparent 70%), var(--graphite-900); border-block: 1px solid var(--steel-700); }
.book__grid { display: grid; gap: 48px; }
@media (min-width: 980px) { .book__grid { grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: start; } }
.book .sh { margin-bottom: 0; }
.book__call { --mx: 0px; --my: 0px; display: inline-flex; align-items: center; gap: 14px; margin-top: 28px; padding: 14px 20px 14px 14px; border-radius: var(--r); border: 1px solid var(--steel-600); text-decoration: none; background: var(--graphite-850); transform: translate3d(var(--mx), var(--my), 0); transition: transform .35s var(--ease-out), border-color .3s, box-shadow .3s; }
.book__call:hover { border-color: var(--volt); box-shadow: var(--glow-volt); }
.book__call > .ico { width: 44px; height: 44px; padding: 10px; border-radius: 10px; background: var(--grad-volt); color: var(--graphite-950); stroke-width: 2; }
.book__call span { display: flex; flex-direction: column; font: 700 1.5rem/1.1 var(--f-display); font-variant-numeric: tabular-nums; }
.book__call small { font: 600 .72rem/1 var(--f-display); letter-spacing: .2em; text-transform: uppercase; color: var(--chrome-dim); margin-bottom: 4px; }
.book__assure { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 8px; color: var(--chrome-dim); font-size: .95rem; }
.book__assure li { display: flex; gap: 10px; align-items: center; }
.book__assure .ico { color: var(--volt); }

.form { display: grid; gap: 16px; padding: clamp(22px, 4vw, 36px); border-radius: var(--r-lg); background: var(--graphite-850); border: 1px solid var(--steel-700); box-shadow: 0 30px 80px rgba(0,0,0,.35); }
.form__row { display: grid; gap: 16px; }
@media (min-width: 560px) { .form__row { grid-template-columns: 1fr 1fr; } .form__row--3 { grid-template-columns: .7fr 1fr 1fr; } }
.field { display: grid; gap: 8px; }
.field > span { font: 600 .78rem/1 var(--f-display); letter-spacing: .16em; text-transform: uppercase; color: var(--chrome-dim); }
.field em { font-style: normal; text-transform: none; letter-spacing: 0; font-family: var(--f-body); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 50px; padding: 12px 14px; border-radius: var(--r-sm);
  background: var(--graphite-950); border: 1px solid var(--steel-700); color: var(--chrome);
  font: 400 1rem/1.4 var(--f-body); transition: border-color .25s, box-shadow .25s;
}
.field textarea { resize: vertical; min-height: 96px; }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--chrome-dim) 50%), linear-gradient(135deg, var(--chrome-dim) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 15px) 50%; background-size: 5px 5px; background-repeat: no-repeat; padding-right: 40px; }
.field input::placeholder, .field textarea::placeholder { color: #5d6b7c; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--volt); box-shadow: 0 0 0 3px rgba(0,229,255,.18); }
.field.is-invalid input, .field.is-invalid select { border-color: var(--heat); }
.field.is-prefilled select { animation: prefill 1.4s var(--ease); }
@keyframes prefill { 0%, 100% { box-shadow: none; } 25%, 60% { box-shadow: 0 0 0 3px rgba(0,229,255,.45), var(--glow-volt); border-color: var(--volt); } }
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__submit { margin-top: 4px; }
.form__submit[disabled] { opacity: .7; cursor: progress; }
.form__status { min-height: 1.5em; font-size: .95rem; }
.form__status.is-ok { color: #3ddc84; }
.form__status.is-err { color: #ff9b76; }
.form__status a { color: var(--amber); }
.form.is-sent { border-color: rgba(61,220,132,.5); }

/* ---------- visit ---------- */
.visit__grid { display: grid; gap: 40px; }
@media (min-width: 980px) { .visit__grid { grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: stretch; } }
.visit .sh { margin-bottom: 28px; }
.vrow { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--steel-700); text-decoration: none; }
.vrow > .ico { width: 24px; height: 24px; color: var(--volt); margin-top: 2px; }
.vrow span { display: flex; flex-direction: column; color: var(--chrome-dim); }
.vrow b { color: var(--chrome); font-family: var(--f-display); font-size: 1.15rem; letter-spacing: .02em; }
.vrow em { font-style: normal; color: var(--volt); margin-top: 4px; font-size: .9rem; }
a.vrow:hover b { color: var(--volt); }
.hours { width: 100%; margin-top: 24px; border-collapse: collapse; font-variant-numeric: tabular-nums; }
.hours th, .hours td { padding: 10px 12px; text-align: left; border-bottom: 1px solid rgba(42,50,61,.6); font-weight: 400; }
.hours th { color: var(--chrome-dim); }
.hours td { text-align: right; }
.hours tr.is-today { background: rgba(0,229,255,.06); }
.hours tr.is-today th, .hours tr.is-today td { color: var(--chrome); font-weight: 600; }
.hours tr.is-today th::after { content: "Today"; margin-left: 10px; padding: 2px 8px; border-radius: 999px; font: 700 .65rem/1.4 var(--f-display); letter-spacing: .14em; text-transform: uppercase; background: var(--volt); color: var(--graphite-950); vertical-align: middle; }
.open-now { margin-top: 16px; display: inline-flex; align-items: center; gap: 10px; font: 600 .9rem/1 var(--f-display); letter-spacing: .1em; text-transform: uppercase; }
.open-now::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: currentColor; box-shadow: 0 0 10px currentColor; }
.open-now.is-open { color: #3ddc84; }
.open-now.is-closed { color: var(--amber); }
.visit__map { position: relative; min-height: 360px; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--steel-700); background: var(--graphite-850); }
.visit__map { box-shadow: 0 0 0 1px rgba(0,229,255,.08), 0 24px 60px rgba(0,0,0,.55); }
.visit__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
/* soft vignette sits on the wrapper, above the map; the map itself keeps Google's own colours */
.visit__map::after { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; box-shadow: inset 0 0 0 1px rgba(255,255,255,.05), inset 0 0 48px rgba(10,12,15,.55); }

/* ---------- footer ---------- */
.footer { padding: 64px 0 calc(28px + env(safe-area-inset-bottom)); background: var(--graphite-950); border-top: 1px solid var(--steel-700); }
.footer__grid { display: grid; gap: 36px; }
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer h3 { font-size: .8rem; letter-spacing: .24em; text-transform: uppercase; color: var(--volt); margin-bottom: 14px; }
.footer p { color: var(--chrome-dim); font-size: .95rem; margin-bottom: 6px; }
.footer a { text-decoration: none; }
.footer a:hover { color: var(--volt); }
.footer__tag { margin-top: 14px !important; }
.footer__social { display: inline-flex; align-items: center; gap: 8px; }
.footer__social .ico { fill: currentColor; stroke: none; }
.footer__legal { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--steel-700); }
.footer__legal p { color: #8a97a8; font-size: .82rem; }

/* ---------- mobile thumb bar ---------- */
.thumbbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: grid; grid-template-columns: 1fr 1.6fr; gap: 8px; padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); background: rgba(10,12,15,.88); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); border-top: 1px solid var(--steel-700); transform: translateY(110%); transition: transform .45s var(--ease-out); }
.thumbbar.is-shown { transform: none; }
.thumbbar a { min-height: 50px; display: flex; align-items: center; justify-content: center; gap: 8px; border-radius: var(--r-sm); font: 700 .95rem/1 var(--f-display); letter-spacing: .08em; text-transform: uppercase; text-decoration: none; }
.thumbbar__call { background: var(--graphite-850); border: 1px solid var(--volt); color: var(--volt); }
.thumbbar__book { background: var(--amber); color: var(--graphite-950); }
@media (min-width: 960px) { .thumbbar { display: none; } }
@media (max-width: 959px) { .footer { padding-bottom: calc(96px + env(safe-area-inset-bottom)); } }

/* ---------- guide page ---------- */
.page-hero { position: relative; padding: calc(var(--nav-h) + 72px) 0 72px; overflow: hidden; isolation: isolate; border-bottom: 1px solid var(--steel-700); }
.page-hero .hero__title { font-size: clamp(2.4rem, 6.4vw, 4.6rem); }
.crumbs { font: 600 .8rem/1 var(--f-display); letter-spacing: .16em; text-transform: uppercase; color: var(--chrome-dim); margin-bottom: 24px; }
.crumbs a { color: var(--volt); text-decoration: none; }
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(1.6rem, 3.4vw, 2.2rem); text-transform: uppercase; margin: 56px 0 16px; }
.prose p, .prose li { color: #c3cdd9; font-size: 1.05rem; }
.prose p + p { margin-top: 14px; }
.prose ul { padding-left: 1.2em; display: grid; gap: 8px; }
.prose a { color: var(--volt); }
.callout { margin: 32px 0; padding: 22px 24px; border-radius: var(--r); border: 1px solid rgba(255,176,32,.45); background: rgba(255,176,32,.06); }
.callout p { color: var(--chrome) !important; }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; animation-delay: 0s !important; transition-duration: .001ms !important; transition-delay: 0s !important; }
  .hero__scan, .glow, .hero__cue, .diag__scan { display: none; }
  .hero__photo img { animation: none !important; transform: none !important; }
  .hero__grid { transform: none !important; }
  .btn, .book__call { transform: none !important; }
}
