/* ============================================================
   DashCam Pro Mobile — responsive stylesheet
   Mobile-first base styles; desktop layout at min-width: 900px.
   ============================================================ */

:root {
  --bg: #0c0b0d;
  --bg-soft: rgba(12, 11, 13, .86);
  --bg-alt: rgba(19, 16, 22, .92);
  --panel: #141117;
  --panel-2: #0f0d12;
  --border: #2e2b36;
  --border-2: #2a2733;
  --line: #3a3742;
  --text: #f5f4f2;
  --text-2: #e2e1e4;
  --muted: #c2c0c8;
  --muted-2: #96939c;
  --dim: #6c6d76;
  --orange: #ff5b1a;
  --orange-l: #ff8a4d;
  --green: #2fbf6b;
  --gold: #c9a227;
  --red: #e0564a;
  --blue: #2f6bff;
  --f-black: 'Archivo Black', sans-serif;
  --f-body: 'Archivo', sans-serif;
  --f-cond: 'Barlow Semi Condensed', sans-serif;
  --f-mono: 'IBM Plex Mono', monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-body);
  -webkit-font-smoothing: antialiased;
  padding-bottom: 92px; /* clearance for fixed mobile CTA bar */
}

input, select, textarea, button { font-family: var(--f-body); }

img { display: block; max-width: 100%; }

a { color: inherit; }

/* ---------- keyframes ---------- */
@keyframes rec-blink { 0%, 100% { opacity: 1; } 50% { opacity: .25; } }
@keyframes coverage-radiate {
  0%   { transform: translate(-50%, -50%) scale(0); opacity: .85; }
  70%  { opacity: .5; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 0; }
}
@keyframes cal-attention {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.09); }
  65% { transform: scale(1.03) rotate(-1.5deg); }
  80% { transform: scale(1.03) rotate(1.5deg); }
}

/* ============================================================
   Motion background
   ============================================================ */
.bg-motion {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: var(--bg);
}
.bg-motion video {
  position: absolute;
  top: 0; left: 0;
  width: 180%; height: 130%;
  object-fit: cover;
  object-position: left top;
}
.bg-motion .bg-fade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,11,13,.45) 0%, rgba(12,11,13,.65) 50%, rgba(12,11,13,.9) 100%);
}
.bg-motion .bg-tint { display: none; }

/* ============================================================
   Layout shell
   ============================================================ */
.page {
  position: relative;
  z-index: 1;
  max-width: 430px;
  margin: 0 auto;
}

/* shared heading kit */
.section-eyebrow {
  font-family: var(--f-cond);
  font-size: 13.5px; font-weight: 700;
  color: var(--orange);
  text-transform: uppercase; letter-spacing: .06em;
  margin: 0 0 4px;
}
.section-title {
  font-family: var(--f-black);
  font-size: 30px; text-transform: uppercase; letter-spacing: -.01em;
  margin: 0 0 8px;
  background: linear-gradient(180deg, #fff, #c0c4cc);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-rule { width: 64px; height: 4px; background: var(--orange); margin-bottom: 12px; }
.section-lead { font-size: 15px; line-height: 1.6; color: var(--muted); margin: 0 0 24px; }

.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; text-align: center;
  background: var(--orange); color: #fff;
  font-family: var(--f-black); text-transform: uppercase; letter-spacing: .02em;
  box-shadow: 0 10px 34px rgba(255,91,26,.24);
  clip-path: polygon(3% 0, 100% 0, 97% 100%, 0 100%);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer;
}
.btn-primary:hover { background: #ff6d33; }
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; text-align: center;
  border: 2px solid var(--line); color: var(--text);
  background: rgba(12,11,13,.4);
  font-family: var(--f-cond); font-weight: 700; text-transform: uppercase; letter-spacing: .03em;
  transition: transform .2s ease, border-color .2s ease, color .2s ease, background .2s ease;
  cursor: pointer;
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }

/* ============================================================
   Announcement bar
   ============================================================ */
.announce {
  display: block; text-decoration: none;
  padding: 10px 16px;
  background: var(--orange); color: var(--bg);
  font-family: var(--f-cond); font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: .04em;
  text-align: center; line-height: 1.4;
}
.announce u { text-underline-offset: 2px; }
.announce .announce-lead { display: none; }

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(12,11,13,.82);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-2);
}
.nav-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 12px 16px; flex-wrap: wrap;
}
.brand { display: flex; align-items: center; gap: 9px; text-decoration: none; min-width: 0; }
.brand-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 7px; border: 2px solid var(--orange); background: rgba(255,91,26,.08);
  flex: 0 0 auto;
}
.brand-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--orange);
  box-shadow: 0 0 10px rgba(255,91,26,.85); animation: rec-blink 1.6s ease-in-out infinite;
}
.brand-rec { font-family: var(--f-black); font-size: 10px; color: var(--orange); letter-spacing: .08em; }
.brand-name {
  font-family: var(--f-black); font-size: 15px; letter-spacing: -.01em;
  text-transform: uppercase; color: var(--text); white-space: nowrap;
}
.brand-name span { color: var(--orange); }
.brand-tag { display: none; }

.nav-actions { display: flex; align-items: center; gap: 8px; flex: 0 0 auto; }
.nav-call-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border: 1px solid var(--line);
  color: var(--orange); font-size: 18px; text-decoration: none;
}
.nav-call-block { display: none; }
.nav-book {
  display: inline-flex; align-items: center; height: 44px; padding: 0 18px;
  background: var(--orange); color: #fff;
  font-family: var(--f-black); font-size: 12px; text-transform: uppercase; letter-spacing: .03em;
  text-decoration: none; clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  transition: transform .2s ease, background .2s ease;
}
.nav-book:hover { background: #ff6d33; }

.nav-links {
  order: 3; flex-basis: 100%;
  display: flex; gap: 22px; overflow-x: auto;
  padding: 0 16px 11px; margin: 0 -16px -1px;
  font-family: var(--f-cond); font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em; color: var(--muted);
  scrollbar-width: none; -ms-overflow-style: none;
}
.nav-links::-webkit-scrollbar { display: none; }
.nav-links a { white-space: nowrap; color: inherit; text-decoration: none; padding-bottom: 3px; border-bottom: 2px solid transparent; transition: color .2s ease, border-color .2s ease; }
.nav-links a:hover { color: var(--orange); border-bottom-color: var(--orange); }

/* ============================================================
   Trust strip
   ============================================================ */
.trust {
  background: linear-gradient(180deg, #17131a, #100e14);
  border-top: 1px solid var(--border-2); border-bottom: 1px solid var(--border-2);
}
.trust-hatch {
  height: 3px; opacity: .35;
  background: repeating-linear-gradient(45deg, var(--orange), var(--orange) 14px, transparent 14px, transparent 28px);
}
.trust-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px 0;
  padding: 4px 16px 14px;
}
.trust-item { display: flex; align-items: center; gap: 8px; padding: 10px 6px; }
.trust-item span:first-child { color: var(--orange); font-size: 15px; }
.trust-item span:last-child {
  font-family: var(--f-cond); font-size: 12.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em; color: #e6e6ea;
}
.trust-sep { display: none; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  background: linear-gradient(180deg, rgba(12,11,13,.42), rgba(12,11,13,.62));
}
.hero-photo { position: relative; height: 270px; overflow: hidden; order: 0; }
.hero-photo img {
  position: absolute; inset: 0; width: 100%; height: 118%;
  object-fit: fill; object-position: 78% 20%;
}
.hero-photo-fade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,11,13,.35) 0%, rgba(12,11,13,0) 30%, rgba(12,11,13,.55) 68%, var(--bg) 100%);
}
.hero-badge-live {
  position: absolute; left: 16px; bottom: 14px;
  display: flex; align-items: center; gap: 9px;
  background: rgba(12,11,13,.72); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,91,26,.4); padding: 9px 13px;
}
.hero-badge-live span:first-child {
  width: 8px; height: 8px; border-radius: 50%; background: var(--orange);
  box-shadow: 0 0 10px rgba(255,91,26,.85); animation: rec-blink 1.6s ease-in-out infinite;
}
.hero-badge-live span:last-child {
  font-family: var(--f-cond); font-size: 11.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; color: var(--text);
}
.hero-glow, .hero-bottom-fade { display: none; }

.hero-content { position: relative; padding: 22px 20px 40px; }
.hero-tag {
  display: inline-flex; align-items: center;
  font-family: var(--f-cond); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; color: #fff;
  background: rgba(255,91,26,.14); border: 1px solid rgba(255,91,26,.24);
  padding: 6px 12px; margin-bottom: 18px;
}
.hero h1 {
  font-family: var(--f-black); font-size: 38px; line-height: 1; letter-spacing: -.02em;
  text-transform: uppercase; margin: 0 0 16px;
  background: linear-gradient(180deg, #fff 0%, #e8eaee 42%, #b7bbc4 62%, #eef0f3 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero h1 .accent {
  background: linear-gradient(180deg, var(--orange-l), #c7480f);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { font-size: 16px; line-height: 1.6; color: var(--text-2); margin: 0 0 24px; }
.hero-cta { display: flex; flex-direction: column; gap: 11px; }
.hero-cta .btn-primary { padding: 17px 20px; font-size: 15px; }
.hero-cta .btn-ghost { padding: 15px 20px; font-size: 15px; }
.hero-stats {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  margin-top: 28px; border-top: 1px solid rgba(255,255,255,.14);
}
.hero-stat { padding: 16px 8px 0 16px; border-left: 1px solid rgba(255,255,255,.14); }
.hero-stat:first-child { padding-left: 0; padding-right: 8px; border-left: none; }
.hero-stat b { display: block; font-family: var(--f-black); font-size: 24px; color: #fff; font-weight: 400; }
.hero-stat b span { color: var(--orange); }
.hero-stat i {
  font-style: normal; font-family: var(--f-cond); font-size: 12px;
  text-transform: uppercase; letter-spacing: .05em; color: #a8a5ad;
}

/* ============================================================
   Reliability band
   ============================================================ */
.reliability {
  position: relative; z-index: 2;
  padding: 8px 16px 20px; background: var(--bg-soft);
}
.reliability-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.rel-card {
  position: relative; overflow: hidden;
  background: rgba(20,16,24,.78); border: 1px solid var(--border);
  border-top: 3px solid var(--orange); padding: 20px 18px;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.rel-card:hover { border-color: var(--orange); box-shadow: 0 22px 50px rgba(255,91,26,.22); }
.rel-num {
  font-family: var(--f-black); font-size: 38px; line-height: 1;
  color: rgba(255,91,26,.14); position: absolute; top: 12px; right: 14px;
}
.rel-head { display: flex; align-items: center; gap: 11px; margin-bottom: 10px; }
.rel-icon {
  display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto;
  width: 42px; height: 42px; border-radius: 11px;
  background: rgba(255,91,26,.12); border: 1px solid rgba(255,91,26,.35);
  color: var(--orange); font-size: 20px;
}
.rel-title {
  min-width: 0; overflow-wrap: break-word;
  font-family: var(--f-black); font-size: 16px; line-height: 1.2; color: #fff; text-transform: uppercase;
}
.rel-card p { font-size: 14.5px; line-height: 1.6; color: #c6c4cc; margin: 0; }

/* ============================================================
   Generic section padding
   ============================================================ */
.section { padding: 48px 16px; }
.section.bg-soft { background: var(--bg-soft); }
.section.bg-alt { background: var(--bg-alt); }

/* ============================================================
   Service tiers
   ============================================================ */
.tiers { display: grid; grid-template-columns: 1fr; gap: 14px; }
.tier {
  border: 1px solid var(--border); background: var(--panel);
  padding: 24px 20px; display: flex; flex-direction: column; position: relative;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.tier:hover { border-color: var(--orange); box-shadow: 0 20px 50px rgba(255,91,26,.22); }
.tier.popular {
  border: 2px solid var(--orange);
  background: linear-gradient(180deg, #17110f, #141117);
  box-shadow: 0 0 40px rgba(255,91,26,.25);
  order: -1; /* popular first on mobile */
}
.tier-badge {
  position: absolute; top: 0; right: 0; background: var(--orange); color: #fff;
  font-family: var(--f-black); font-size: 10px; text-transform: uppercase; letter-spacing: .05em;
  padding: 6px 13px;
}
.tier-kicker {
  font-family: var(--f-cond); font-size: 12px; font-weight: 700; color: var(--orange);
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px;
}
.tier-name { display: none; font-family: var(--f-black); font-size: 28px; color: #fff; text-transform: uppercase; }
.tier-pricerow { display: flex; align-items: baseline; gap: 12px; }
.tier-price { font-family: var(--f-black); font-size: 38px; color: #fff; }
.tier-for { font-family: var(--f-cond); font-size: 12px; text-transform: uppercase; letter-spacing: .05em; color: var(--muted-2); }
.tier p { font-size: 14.5px; line-height: 1.6; color: var(--muted); margin: 12px 0 18px; flex: 1; }
.tier.popular p { color: #dedce0; }
.tier .btn-primary { padding: 15px; font-size: 14px; width: 100%; }
.tier .btn-ghost { padding: 14px; font-size: 14px; width: 100%; border-width: 2px; font-family: var(--f-black); }

.addons-head { font-family: var(--f-black); font-size: 20px; text-transform: uppercase; letter-spacing: -.01em; color: #fff; margin: 36px 0 6px; }
.addons-lead { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0 0 16px; }
.addons { display: grid; grid-template-columns: 1fr; gap: 12px; }
.addon { border-left: 4px solid var(--orange); background: var(--panel); padding: 18px; display: flex; flex-direction: column; }
.addon-top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 5px; }
.addon-title { font-family: var(--f-cond); font-size: 14px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: .05em; }
.addon-price { font-family: var(--f-black); font-size: 17px; color: #fff; white-space: nowrap; }
.addon-tag { font-family: var(--f-cond); font-size: 12px; text-transform: uppercase; letter-spacing: .05em; color: var(--muted-2); margin-bottom: 8px; }
.addon p { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0; }
.addon.travel { grid-column: 1 / -1; }
.addon.travel .addon-title { margin-bottom: 7px; }

/* ============================================================
   How it works
   ============================================================ */
.steps { display: flex; flex-direction: column; position: relative; }
.step { position: relative; display: flex; gap: 16px; padding-bottom: 28px; }
.step-rail { position: relative; flex: 0 0 auto; display: flex; flex-direction: column; align-items: center; }
.step-num {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--bg); border: 2px solid var(--orange);
  font-family: var(--f-black); font-size: 19px; color: var(--orange);
  box-shadow: 0 0 24px rgba(255,91,26,.3);
}
.step:last-child .step-num { background: var(--orange); color: var(--bg); }
.step-line { flex: 1; width: 2px; margin-top: 6px; background: linear-gradient(180deg, var(--orange), rgba(255,91,26,.15)); }
.step:last-child .step-line { display: none; }
.step-body { padding-top: 4px; }
.step-title { font-family: var(--f-body); font-weight: 800; font-size: 17px; color: #fff; margin: 0 0 6px; text-transform: uppercase; }
.step-body p { font-size: 14.5px; line-height: 1.6; color: var(--muted); margin: 0; }

.notes { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 8px; }
.note {
  background: linear-gradient(180deg, #191521, #120f16);
  border: 1px solid var(--border); border-left: 3px solid var(--orange); padding: 20px 18px;
}
.note.green { border-left-color: var(--green); }
.note-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.note-icon {
  flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 11px;
  background: rgba(255,91,26,.12); border: 1px solid rgba(255,91,26,.35); color: var(--orange); font-size: 19px;
}
.note.green .note-icon { background: rgba(47,191,107,.12); border-color: rgba(47,191,107,.35); color: var(--green); }
.note-title { font-family: var(--f-black); font-size: 16px; color: #fff; text-transform: uppercase; line-height: 1.1; }
.note p { font-size: 14px; line-height: 1.65; color: var(--muted); margin: 0; }
.note p strong { color: var(--text); }

.tips {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(255,91,26,.14), rgba(255,91,26,0) 60%), linear-gradient(180deg, #191521, #120f16);
  border: 1px solid rgba(255,91,26,.35); padding: 20px 18px;
}
.tips-title { font-family: var(--f-black); font-size: 16px; color: #fff; text-transform: uppercase; margin-bottom: 12px; }
.tips-grid { display: flex; flex-direction: column; gap: 10px; }
.tip { background: rgba(12,11,13,.55); border-left: 3px solid var(--orange); padding: 12px 14px; }
.tip b { display: block; font-family: var(--f-cond); font-size: 12px; font-weight: 700; color: var(--orange-l); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 3px; }
.tip p { font-size: 13.5px; line-height: 1.5; color: #dedce0; margin: 0; }
.tip p strong { color: #fff; }

/* ============================================================
   Why us
   ============================================================ */
.why-list { display: flex; flex-direction: column; gap: 26px; }
.why-item { border-top: 1px solid var(--border-2); padding-top: 22px; }
.why-head { display: flex; align-items: center; gap: 14px; margin-bottom: 8px; }
.why-num {
  font-family: var(--f-black); font-size: 44px; line-height: 1; flex: 0 0 auto;
  color: transparent; -webkit-text-stroke: 2px rgba(255,91,26,.6);
}
.why-title { font-family: var(--f-black); font-size: 19px; color: #fff; text-transform: uppercase; letter-spacing: -.01em; line-height: 1.15; }
.why-sub { font-family: var(--f-cond); font-size: 13.5px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: .04em; margin-top: 4px; }
.why-item > p { font-size: 14.5px; line-height: 1.6; color: var(--muted); margin: 0 0 14px; }
.why-compare { display: flex; flex-direction: column; background: var(--panel); border: 1px solid var(--border); overflow: hidden; }
.why-bad { padding: 12px 15px 11px; border-left: 3px solid var(--red); background: rgba(224,86,74,.05); }
.why-good { padding: 12px 15px 13px; border-left: 3px solid var(--green); background: rgba(47,191,107,.05); border-top: 1px solid var(--border); }
.why-bad b, .why-good b { display: block; font-family: var(--f-cond); font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.why-bad b { color: var(--red); }
.why-good b { color: var(--green); }
.why-bad span { font-size: 14px; line-height: 1.55; color: #9a97a2; }
.why-good span { font-size: 14px; line-height: 1.55; color: #eceaf0; }

.promise {
  border: 2px solid var(--orange);
  background: linear-gradient(135deg, rgba(255,91,26,.1), rgba(255,91,26,0) 55%), var(--panel);
  padding: 28px 20px; margin-top: 28px; box-shadow: 0 0 46px rgba(255,91,26,.18);
}
.promise-head { text-align: center; margin-bottom: 22px; }
.promise-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-cond); font-size: 12px; font-weight: 700; color: var(--orange);
  text-transform: uppercase; letter-spacing: .08em;
  border: 1px solid rgba(255,91,26,.45); background: rgba(255,91,26,.1); padding: 7px 14px; margin-bottom: 12px;
}
.promise-title { font-family: var(--f-black); font-size: 24px; color: #fff; text-transform: uppercase; letter-spacing: -.01em; line-height: 1.1; }
.promise-lead { display: none; }
.promise-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.promise-card { position: relative; background: var(--bg); border: 1px solid var(--border); padding: 22px 18px; overflow: hidden; }
.promise-free { position: absolute; top: 0; right: 0; background: var(--green); color: var(--bg); font-family: var(--f-black); font-size: 10px; text-transform: uppercase; letter-spacing: .05em; padding: 6px 13px; }
.promise-kicker { font-family: var(--f-cond); font-size: 12px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.promise-name { font-family: var(--f-black); font-size: 18px; color: #fff; text-transform: uppercase; line-height: 1.15; margin-bottom: 10px; }
.promise-card p { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0; }
.promise-foot { display: none; }

/* ============================================================
   Motion break
   ============================================================ */
.motion-break {
  position: relative; min-height: 230px;
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 56px 20px;
}
.motion-break-tag {
  display: inline-flex; align-items: center;
  font-family: var(--f-cond); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; color: var(--orange-l);
  background: rgba(12,11,13,.55); border: 1px solid rgba(255,91,26,.3); padding: 6px 13px; margin-bottom: 14px;
}
.motion-break-title {
  font-family: var(--f-black); font-size: 28px; line-height: 1.08;
  text-transform: uppercase; letter-spacing: -.01em; color: #fff;
  text-shadow: 0 6px 34px rgba(0,0,0,.75);
}

/* ============================================================
   Gallery
   ============================================================ */
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; gap: 10px; }
.gallery-tile { position: relative; overflow: hidden; background: var(--panel); border: 1px solid var(--border-2); }
.gallery-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.gallery-tile.g-feature { grid-column: span 2; }

/* ============================================================
   Reviews
   ============================================================ */
.reviews-rating { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.reviews-rating b { font-family: var(--f-black); font-size: 28px; color: #fff; line-height: 1; font-weight: 400; }
.stars { color: var(--orange); font-size: 14px; letter-spacing: 2px; line-height: 1; }
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 12px; align-items: stretch; }
.review { display: flex; flex-direction: column; border: 1px solid var(--border); background: var(--bg); padding: 20px 18px; }
.review-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.review-who { display: flex; align-items: center; gap: 11px; }
.review-avatar { width: 38px; height: 38px; border-radius: 50%; background: #1c1820; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-family: var(--f-black); font-size: 15px; color: var(--orange); }
.review-name { font-family: var(--f-cond); font-weight: 700; font-size: 14.5px; color: #eceaf0; line-height: 1.2; }
.review-loc { font-family: var(--f-mono); font-size: 10.5px; color: #5a5a63; margin-top: 2px; }
.review-src { font-family: var(--f-mono); font-size: 9.5px; color: #5a5a63; border: 1px solid var(--border); padding: 3px 7px; white-space: nowrap; }
.review-stars { color: var(--orange); font-size: 13px; letter-spacing: 2px; margin-bottom: 9px; }
.review p { font-size: 14.5px; line-height: 1.6; color: #dedce0; margin: 0; }
.review-cta { display: flex; flex-direction: column; gap: 11px; border: 1px dashed #3a3644; background: rgba(255,91,26,.04); padding: 20px 18px; justify-content: center; }
.review-cta .stars { font-size: 13px; }
.review-cta b { font-family: var(--f-cond); font-weight: 700; text-transform: uppercase; font-size: 15px; letter-spacing: .04em; color: #eceaf0; line-height: 1.35; }
.review-cta p { font-size: 13.5px; line-height: 1.6; color: var(--muted-2); margin: 0; }
.review-cta a { align-self: flex-start; font-family: var(--f-cond); font-weight: 700; text-transform: uppercase; font-size: 13px; letter-spacing: .06em; color: var(--bg); background: var(--orange); padding: 11px 18px; text-decoration: none; }

/* ============================================================
   Service area
   ============================================================ */
.area-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.area-map { border: 1px solid var(--border-2); background: var(--panel-2); overflow: hidden; display: flex; flex-direction: column; }
.area-map-img { position: relative; width: 100%; aspect-ratio: 1661/947; }
.area-map-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.area-ping { position: absolute; left: 47.6%; top: 57.6%; width: 29%; aspect-ratio: 1; border-radius: 50%; border: 3px solid var(--blue); background: radial-gradient(circle, rgba(47,107,255,.35), rgba(47,107,255,0) 70%); transform: translate(-50%,-50%) scale(0); animation: coverage-radiate 3.2s ease-out infinite; pointer-events: none; }
.area-ping.d2 { animation-delay: 1.06s; }
.area-ping.d3 { animation-delay: 2.13s; }
.area-cities { padding: 16px 18px 18px; border-top: 1px solid var(--border-2); background: var(--panel); }
.area-cities b { display: block; font-family: var(--f-cond); font-size: 12px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.area-cities p { font-size: 13.5px; line-height: 1.7; color: var(--muted); margin: 0; }

.area-side { display: flex; flex-direction: column; gap: 12px; }
.zones { border: 1px solid var(--border-2); background: var(--panel); }
.zone { display: flex; align-items: center; gap: 13px; padding: 16px 18px; border-bottom: 1px solid var(--border-2); }
.zone:last-child { border-bottom: none; }
.zone-dot { flex: 0 0 auto; width: 11px; height: 11px; border-radius: 50%; }
.zone-dot.g { background: var(--green); box-shadow: 0 0 12px rgba(47,191,107,.6); }
.zone-dot.o { background: var(--orange); box-shadow: 0 0 12px rgba(255,91,26,.6); }
.zone-dot.y { background: var(--gold); box-shadow: 0 0 12px rgba(201,162,39,.6); }
.zone-body { flex: 1; min-width: 0; }
.zone-body b { display: block; font-family: var(--f-black); font-size: 15px; color: #fff; text-transform: uppercase; font-weight: 400; }
.zone-body span { font-family: var(--f-cond); font-size: 12px; font-weight: 600; color: var(--muted-2); text-transform: uppercase; letter-spacing: .04em; }
.zone-price { font-family: var(--f-black); font-size: 16px; text-transform: uppercase; white-space: nowrap; }
.zone-price.g { color: var(--green); }
.zone-price.o { color: var(--orange); }
.zone-price.y { color: var(--gold); }

.zipbox { border: 1px solid var(--orange); background: linear-gradient(160deg, rgba(255,91,26,.08), rgba(255,91,26,0) 60%), var(--panel); padding: 22px 18px; display: flex; flex-direction: column; justify-content: center; }
.zipbox-eyebrow { font-family: var(--f-cond); font-size: 13px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.zipbox-title { font-family: var(--f-black); font-size: 19px; color: #fff; text-transform: uppercase; line-height: 1.15; margin-bottom: 12px; }
.zip-form { display: flex; gap: 9px; }
.zip-form input { flex: 1; min-width: 0; background: var(--bg); border: 2px solid var(--line); color: var(--text); padding: 13px 14px; font-size: 16px; }
.zip-form button { cursor: pointer; padding: 13px 20px; background: var(--orange); color: #fff; border: none; font-family: var(--f-black); font-size: 14px; text-transform: uppercase; letter-spacing: .02em; transition: background .2s ease; }
.zip-form button:hover { background: #ff6d33; }
.zip-result { display: none; margin-top: 12px; padding: 13px 15px; background: var(--bg); border-left: 4px solid var(--orange); }
.zip-result.show { display: block; }
.zip-result b { display: block; font-family: var(--f-black); font-size: 13.5px; text-transform: uppercase; letter-spacing: .02em; margin-bottom: 4px; }
.zip-result span { font-size: 14px; line-height: 1.55; color: var(--muted); }

.callout { border-left: 4px solid var(--orange); background: var(--panel); padding: 18px; margin-top: 12px; }
.callout b { display: block; font-family: var(--f-cond); font-size: 13px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 6px; }
.callout p { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-group { display: flex; flex-direction: column; margin-bottom: 32px; border-bottom: 1px solid var(--border); }
.faq-group:last-of-type { margin-bottom: 0; }
.faq-cat { font-family: var(--f-cond); font-size: 13.5px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: .06em; margin: 0 0 2px; }
details.faq { border-top: 1px solid var(--border); }
details.faq summary { cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 17px 0; }
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary span:first-child { font-family: var(--f-body); font-weight: 800; font-size: 15.5px; line-height: 1.35; color: #fff; text-transform: uppercase; }
.faq-plus { flex: 0 0 auto; font-family: var(--f-black); font-size: 22px; line-height: 1; color: var(--orange); transition: transform .25s ease; }
details.faq[open] .faq-plus { transform: rotate(45deg); }
details.faq p { font-size: 14.5px; line-height: 1.65; color: var(--muted); margin: 0; padding: 0 8px 18px 0; }

/* ============================================================
   Appointment policy
   ============================================================ */
.deposit-math {
  display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center;
  border: 1px solid var(--orange);
  background: linear-gradient(135deg, rgba(255,91,26,.08), rgba(255,91,26,0) 60%), var(--panel);
  padding: 26px 20px; margin-bottom: 12px;
}
.dm-num { font-family: var(--f-black); font-size: 36px; line-height: 1; color: #fff; }
.dm-num.green { color: var(--green); }
.dm-label { font-family: var(--f-cond); font-size: 13px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: .05em; }
.dm-label.green { color: var(--green); }
.dm-label small { display: block; font-size: 13px; font-weight: 700; }
.dm-op { font-family: var(--f-black); font-size: 22px; color: var(--orange); margin: 4px 0; }
.dm-op.h { display: none; }
.dm-cell p { display: none; }

.policy-cards { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--border-2); border: 1px solid var(--border-2); }
.policy-card { background: var(--panel); padding: 18px; }
.policy-card b { display: flex; gap: 9px; align-items: baseline; font-family: var(--f-cond); font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.policy-card.good b { color: var(--green); }
.policy-card.warn b { color: var(--gold); }
.policy-card p { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0; }

/* ============================================================
   Booking
   ============================================================ */
.book { background: var(--bg-alt); border-top: 1px solid var(--border); }
.book-grid { display: grid; grid-template-columns: 1fr; }
.book-main { padding: 48px 16px; }
.book-eyebrow { font-family: var(--f-cond); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--orange); margin-bottom: 10px; }
.book-lead { font-size: 15px; line-height: 1.6; color: var(--muted); margin: 0 0 22px; }
.book-steps { display: flex; flex-direction: column; margin-bottom: 24px; }
.book-step { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-top: 1px solid var(--border); }
.book-step:last-child { border-bottom: 1px solid var(--border); }
.book-step-num { flex: 0 0 auto; display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--orange); font-family: var(--f-black); font-size: 14px; color: var(--orange); }
.book-step b { display: block; font-family: var(--f-body); font-weight: 800; font-size: 15px; color: #fff; text-transform: uppercase; margin-bottom: 3px; }
.book-step span { font-size: 14px; line-height: 1.55; color: var(--muted-2); }
.book-main .btn-primary { display: block; width: 100%; padding: 18px 20px; font-size: 15px; }
.book-fineprint { font-family: var(--f-cond); font-size: 11.5px; text-transform: uppercase; letter-spacing: .04em; color: var(--dim); margin: 12px 0 0; text-align: center; }

.book-side { padding: 0 16px 48px; display: flex; flex-direction: column; gap: 12px; }
.book-card { border: 1px solid var(--border); background: var(--panel); padding: 22px 20px; }
.book-card-title { font-family: var(--f-cond); font-size: 12.5px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; }
.math-row { display: flex; justify-content: space-between; align-items: baseline; padding: 9px 0; border-bottom: 1px solid var(--border); }
.math-row span { font-size: 14.5px; color: var(--muted); }
.math-row b { font-family: var(--f-black); font-size: 17px; color: #fff; font-weight: 400; }
.math-row.total { border-bottom: none; padding: 10px 0 2px; }
.math-row.total span { font-family: var(--f-body); font-weight: 800; font-size: 14px; color: #fff; text-transform: uppercase; }
.math-row.total b { font-size: 20px; color: var(--green); }
.book-phone { text-decoration: none; font-family: var(--f-black); font-size: 26px; color: #fff; letter-spacing: -.01em; display: inline-block; }
.book-card p { font-size: 13.5px; line-height: 1.6; color: var(--muted-2); margin: 8px 0 0; }
.book-card-title.tight { margin-bottom: 6px; }

/* ============================================================
   Contact CTA / footer
   ============================================================ */
.footer-hatch { height: 8px; background: repeating-linear-gradient(45deg, var(--orange), var(--orange) 18px, var(--bg) 18px, var(--bg) 36px); }
.footer { padding: 56px 20px 40px; text-align: center; position: relative; overflow: hidden; }
.footer-glow { display: none; }
.footer h2 { position: relative; font-family: var(--f-black); font-size: 32px; text-transform: uppercase; letter-spacing: -.01em; margin: 0 0 12px; background: linear-gradient(180deg, #fff, #c0c4cc); -webkit-background-clip: text; background-clip: text; color: transparent; }
.footer-sub { position: relative; font-size: 15.5px; color: #cececf; margin: 0 0 24px; }
.footer .btn-primary { position: relative; display: block; width: 100%; padding: 18px 20px; font-size: 15px; }
.footer-call { position: relative; margin-top: 20px; font-size: 15px; color: #cececf; }
.footer-call a { color: var(--orange-l); text-decoration: none; font-family: var(--f-black); }
.footer-copy { position: relative; margin-top: 34px; font-family: var(--f-cond); font-size: 12px; text-transform: uppercase; letter-spacing: .05em; color: var(--dim); }

/* ============================================================
   Sticky bottom CTA bar
   ============================================================ */
.cta-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
  background: rgba(12,11,13,.9);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 2px solid var(--orange); box-shadow: 0 -10px 30px rgba(0,0,0,.5);
}
.cta-bar-inner {
  max-width: 430px; margin: 0 auto;
  display: flex; align-items: stretch; gap: 10px;
  padding: 11px 16px calc(11px + env(safe-area-inset-bottom));
}
.cta-bar-msg { display: none; }
.cta-bar-actions { display: flex; align-items: stretch; gap: 10px; flex: 1; }
.cta-call {
  flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  min-height: 48px; padding: 0 18px; border: 1px solid var(--line); color: var(--text);
  font-family: var(--f-cond); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: .03em;
  text-decoration: none; white-space: nowrap;
}
.cta-call .cta-call-num { display: none; }
.cta-book {
  flex: 1; display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; background: var(--orange); color: #fff;
  font-family: var(--f-black); font-size: 14px; text-transform: uppercase; letter-spacing: .03em;
  text-decoration: none; box-shadow: 0 6px 22px rgba(255,91,26,.24);
  clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%); transition: background .2s ease;
}
.cta-book:hover { background: #ff6d33; }

/* Calendly badge (desktop): lift above nothing on mobile, hidden by default via widget */
/* floating Calendly badge: hidden on phone, shown on desktop only */
.calendly-badge-widget { display: none; animation: cal-attention 2.4s ease-in-out infinite; transform-origin: center; }
.calendly-badge-widget:hover { animation-play-state: paused; }
.calendly-badge-widget .calendly-badge-content { box-shadow: 0 8px 26px rgba(255,91,26,.45) !important; }

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s cubic-bezier(.16,.7,.3,1), transform .7s cubic-bezier(.16,.7,.3,1); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   ============  DESKTOP  (min-width: 900px)  ================
   ============================================================ */
@media (min-width: 900px) {
  body { padding-bottom: 0; }
  .bg-motion video { width: 128%; height: 128%; }
  .bg-motion .bg-tint { display: block; position: absolute; inset: 0; background: radial-gradient(120% 100% at 50% 30%, rgba(12,11,13,0) 0%, rgba(12,11,13,.7) 100%); }
  .bg-motion .bg-fade { background: linear-gradient(180deg, rgba(12,11,13,.38) 0%, rgba(12,11,13,.6) 50%, rgba(12,11,13,.88) 100%); }

  .page { max-width: 1280px; }

  .section-title { font-size: 42px; margin-bottom: 10px; }
  .section-rule { width: 78px; height: 5px; margin-bottom: 16px; }
  .section-lead { font-size: 17px; max-width: 680px; }
  .section { padding: 66px 48px; }

  /* announcement */
  .announce { display: flex; align-items: center; justify-content: center; gap: 14px; padding: 11px 20px; font-size: 14.5px; letter-spacing: .05em; }
  .announce .announce-lead { display: inline-flex; align-items: center; gap: 8px; }
  .announce .announce-lead::before { content: ""; display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--bg); }
  .announce .announce-div { opacity: .55; }

  /* nav */
  .nav-bar { flex-wrap: nowrap; align-items: center; padding: 16px 24px; gap: 14px; }
  .brand-badge { padding: 6px 8px; gap: 6px; }
  .brand-dot { width: 8px; height: 8px; }
  .brand-rec { font-size: 11px; }
  .brand { flex: 0 0 auto; flex-direction: row; }
  .brand-text { display: flex; flex-direction: column; line-height: 1; }
  .brand-name { font-size: 18px; }
  .brand-tag { display: block; font-family: var(--f-cond); font-size: 10px; font-weight: 600; color: var(--muted-2); text-transform: uppercase; letter-spacing: .13em; margin-top: 4px; white-space: nowrap; }
  .nav-links { order: 0; flex: 1 1 auto; min-width: 0; flex-basis: auto; overflow-x: auto; justify-content: center; padding: 0 8px; margin: 0; gap: 18px; font-size: 15px; letter-spacing: .03em; }
  .nav-call-icon { display: none; }
  .nav-call-block {
    text-decoration: none; display: flex; flex-direction: column; line-height: 1.1; text-align: right;
    padding: 7px 11px; border: 1px solid var(--line);
    transition: border-color .2s ease, background .2s ease;
  }
  .nav-call-block:hover { border-color: var(--orange); background: rgba(255,91,26,.06); }
  .nav-call-block small { font-family: var(--f-cond); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--orange); }
  .nav-call-block strong { font-family: var(--f-black); font-size: 15px; color: #fff; letter-spacing: -.01em; font-weight: 400; }
  .nav-book { height: auto; padding: 12px 18px; }

  /* trust strip */
  .trust-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; padding: 15px 24px; }
  .trust-item { padding: 0 28px; }
  .trust-item span:last-child { font-size: 14px; letter-spacing: .08em; }
  .trust-sep { display: block; width: 1px; height: 20px; background: var(--border); transform: skewX(-18deg); }

  /* hero */
  .hero { display: block; padding: 86px 48px 150px; }
  .hero-photo { position: absolute; top: 0; right: 0; bottom: 0; left: auto; width: 58%; height: auto; overflow: hidden; }
  .hero-photo img { width: 100%; height: 132%; object-fit: cover; object-position: 100% 18%; }
  .hero-photo-fade {
    background:
      linear-gradient(90deg, var(--bg) 0%, rgba(12,11,13,.82) 20%, rgba(12,11,13,.25) 48%, rgba(12,11,13,0) 72%),
      linear-gradient(180deg, rgba(12,11,13,.55) 0%, rgba(12,11,13,0) 26%, rgba(12,11,13,0) 42%, rgba(12,11,13,.92) 78%, var(--bg) 100%);
  }
  .hero-badge-live { left: auto; right: 40px; bottom: 170px; padding: 12px 18px; }
  .hero-badge-live span:last-child { font-size: 13px; letter-spacing: .07em; }
  .hero-bottom-fade { display: block; position: absolute; left: 0; right: 0; bottom: 0; height: 190px; background: linear-gradient(180deg, rgba(12,11,13,0), rgba(12,11,13,.88) 72%, var(--bg) 100%); pointer-events: none; }
  .hero-content { padding: 0; max-width: 600px; }
  .hero-tag { font-size: 14px; letter-spacing: .09em; padding: 7px 14px; margin-bottom: 26px; }
  .hero h1 { font-size: 62px; line-height: .96; margin-bottom: 24px; text-shadow: 0 4px 40px rgba(0,0,0,.5); }
  .hero-sub { font-size: 19px; max-width: 480px; margin-bottom: 34px; }
  .hero-cta { flex-direction: row; align-items: center; gap: 14px; }
  .hero-cta .btn-primary { padding: 18px 34px; font-size: 16px; clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%); }
  .hero-cta .btn-primary:hover, .hero-cta .btn-ghost:hover { transform: translateY(-3px); }
  .hero-cta .btn-ghost { padding: 18px 30px; font-size: 16px; }
  .hero-stats { margin-top: 44px; }
  .hero-stat { padding: 20px 30px 0; }
  .hero-stat:first-child { padding: 20px 30px 0 0; }
  .hero-stat b { font-size: 30px; }
  .hero-stat i { font-size: 13px; }

  /* reliability */
  .reliability { margin-top: -92px; padding: 0 48px 12px; background: transparent; }
  .reliability-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .rel-card { backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); padding: 28px 26px; }
  .rel-card:hover { transform: translateY(-8px); }
  .rel-num { font-size: 46px; top: 14px; right: 18px; }
  .rel-icon { width: 46px; height: 46px; border-radius: 12px; font-size: 22px; }
  .rel-title { font-size: 18px; }
  .rel-card p { font-size: 15px; }

  /* tiers */
  .tiers { grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }
  .tier { padding: 32px; }
  .tier:hover { transform: translateY(-8px); }
  .tier.popular { order: 0; box-shadow: 0 0 40px rgba(255,91,26,.25); }
  .tier.popular:hover { transform: translateY(-12px) scale(1.02); box-shadow: 0 26px 64px rgba(255,91,26,.4); }
  .tier-badge { padding: 7px 16px; font-size: 11px; }
  .tier-kicker { font-size: 13px; }
  .tier-name { display: block; }
  .tier-pricerow { display: block; }
  .tier-price { display: block; font-size: 44px; margin: 16px 0 4px; }
  .tier-for { display: block; font-size: 13px; margin-bottom: 20px; }
  .tier p { font-size: 15px; margin: 0 0 24px; }
  .tier .btn-primary { clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%); }

  .addons-head { font-size: 26px; margin: 52px 0 8px; }
  .addons-lead { font-size: 15.5px; max-width: 660px; margin-bottom: 22px; }
  .addons { grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }
  .addon { padding: 22px 24px; margin-top: 0; }
  .addon-title { font-size: 14px; }
  .addon-price { font-size: 18px; }

  /* how it works */
  .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
  .steps::before { content: ""; position: absolute; top: 34px; left: 16.66%; right: 16.66%; height: 2px; background: linear-gradient(90deg, var(--orange), rgba(255,91,26,.35)); z-index: 0; }
  .step { display: block; position: relative; z-index: 1; padding: 0 26px; }
  .step-rail { flex-direction: row; margin-bottom: 22px; }
  .step-num { width: 68px; height: 68px; font-size: 26px; box-shadow: 0 0 0 6px rgba(19,16,22,.92), 0 0 30px rgba(255,91,26,.35); }
  .step:last-child .step-num { box-shadow: 0 0 0 6px rgba(19,16,22,.92), 0 0 34px rgba(255,91,26,.5); }
  .step-line { display: none; }
  .step-title { font-size: 20px; margin-bottom: 8px; }
  .step-body { padding-top: 0; }
  .step-body p { font-size: 15px; }

  .notes { grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 44px; }
  .note { padding: 30px; }
  .note-icon { width: 50px; height: 50px; border-radius: 14px; font-size: 23px; }
  .note-title { font-size: 19px; }
  .note p { font-size: 14.5px; }
  .tips { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; padding: 26px 30px; margin-top: 16px; }
  .tips-title { display: flex; align-items: center; gap: 12px; margin: 0; flex: 0 0 auto; }
  .tips-title::before { content: "💡"; display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 14px; background: rgba(255,91,26,.14); border: 1px solid rgba(255,91,26,.4); font-size: 24px; }
  .tips-title span { display: none; }
  .tips-title::after { content: "Pro buying tips"; font-family: var(--f-black); font-size: 19px; color: #fff; text-transform: uppercase; letter-spacing: -.01em; }
  .tips-grid { flex: 1 1 300px; flex-direction: row; gap: 12px; flex-wrap: wrap; }
  .tip { flex: 1 1 240px; padding: 14px 16px; }
  .tip p { font-size: 14px; }

  /* why us */
  .why-list { border-top: 1px solid var(--border-2); }
  .why-item { display: grid; grid-template-columns: 150px 1fr 380px; gap: 34px; align-items: center; padding: 36px 8px; border-top: none; border-bottom: 1px solid var(--border-2); transition: background .25s ease; }
  .why-item:hover { background: rgba(255,91,26,.04); }
  .why-head { display: block; margin-bottom: 0; order: 0; }
  .why-num { grid-column: 1; font-size: 88px; }
  .why-title { font-size: 26px; margin-bottom: 6px; }
  .why-sub { font-size: 16px; letter-spacing: .05em; margin-top: 0; margin-bottom: 10px; }
  .why-item > p { font-size: 15px; margin: 0; max-width: 620px; }
  .why-mid { display: block; }
  .why-compare { }
  .why-bad, .why-good { padding: 13px 18px; }
  .why-bad span, .why-good span { font-size: 15px; }

  .promise { padding: 44px 40px; margin-top: 28px; }
  .promise-head { margin-bottom: 34px; }
  .promise-eyebrow { font-size: 14px; letter-spacing: .09em; padding: 8px 18px; margin-bottom: 16px; }
  .promise-title { font-size: 36px; }
  .promise-lead { display: block; font-size: 16px; line-height: 1.6; color: var(--muted); margin: 12px auto 0; max-width: 620px; }
  .promise-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .promise-card { padding: 30px 28px; transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease; }
  .promise-card:hover { transform: translateY(-6px); border-color: var(--green); box-shadow: 0 18px 44px rgba(47,191,107,.16); }
  .promise-free { padding: 7px 16px; font-size: 11px; }
  .promise-name { font-size: 22px; }
  .promise-card p { font-size: 14.5px; margin-bottom: 18px; }
  .promise-foot { display: flex; gap: 10px; align-items: baseline; border-top: 1px solid var(--border); padding-top: 14px; font-family: var(--f-cond); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: #dedce0; }
  .promise-foot span:first-child { color: var(--green); }

  /* motion break */
  .motion-break { min-height: 340px; padding: 78px 48px; }
  .motion-break-tag { font-size: 14px; letter-spacing: .09em; padding: 7px 16px; margin-bottom: 20px; }
  .motion-break-title { font-size: 48px; line-height: 1.02; }

  /* gallery */
  .gallery-grid { grid-template-columns: 1.35fr 1fr 1fr; grid-template-rows: 256px 256px; grid-auto-rows: 256px; gap: 14px; }
  .gallery-tile.g-feature { grid-column: auto; grid-row: span 2; }

  /* reviews */
  .reviews-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
  .reviews-head .section-title { margin: 0; }
  .reviews-rating b { font-size: 34px; }
  .reviews-rating .stars { font-size: 16px; }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .review { padding: 26px; }
  .review-avatar { width: 42px; height: 42px; font-size: 16px; }
  .review-name { font-size: 15px; }
  .review p { font-size: 15px; }
  .review-cta { padding: 26px; }
  .review-cta b { font-size: 17px; }

  /* service area */
  .area-grid { grid-template-columns: 1.05fr .95fr; gap: 16px; align-items: stretch; }
  .area-cities { padding: 20px 26px 24px; flex: 1; }
  .area-cities p { font-size: 14.5px; }
  .area-side { gap: 16px; }
  .zone { padding: 20px 26px; gap: 16px; }
  .zone-body b { font-size: 17px; }
  .zone-body span { font-size: 13px; }
  .zone-price { font-size: 18px; }
  .zipbox { padding: 28px 26px; flex: 1; }
  .zipbox-title { font-size: 22px; }
  .callout { padding: 22px 24px; margin-top: 20px; }
  .callout b { font-size: 14px; }
  .callout p { font-size: 14.5px; }

  /* faq */
  .faq-cat { font-size: 15px; }
  .faq-group { margin-bottom: 44px; }
  details.faq summary { gap: 20px; padding: 23px 0; }
  details.faq summary:hover span:first-child { color: var(--orange); }
  details.faq summary span:first-child { font-size: 19px; }
  .faq-plus { font-size: 24px; }
  details.faq p { font-size: 15px; padding: 0 40px 24px 0; max-width: 860px; }

  /* appointment policy */
  .deposit-math { flex-direction: row; align-items: stretch; gap: 0; padding: 34px 38px; }
  .dm-cell { flex: 1; text-align: center; }
  .dm-num { font-size: 44px; }
  .dm-label { margin-top: 8px; }
  .dm-label small { display: none; }
  .dm-cell p { display: block; font-size: 13.5px; line-height: 1.5; color: var(--muted-2); margin: 6px 0 0; }
  .dm-op { display: none; }
  .dm-op.h { display: flex; align-items: center; justify-content: center; font-size: 28px; padding: 0 22px; margin: 0; }
  .policy-cards { grid-template-columns: repeat(3, 1fr); }
  .policy-card { padding: 24px 28px; }
  .policy-card b { font-size: 13px; }
  .policy-card p { font-size: 14.5px; }

  /* booking */
  .book-grid { grid-template-columns: 1.05fr .95fr; align-items: stretch; }
  .book-main { padding: 64px 48px; }
  .section-title.book-title { font-size: 42px; margin: 0 0 8px; }
  .book-lead { font-size: 16px; max-width: 480px; margin: 16px 0 30px; }
  .book-steps { max-width: 520px; }
  .book-step { gap: 18px; padding: 16px 0; }
  .book-step b { font-size: 16px; }
  .book-step span { font-size: 14.5px; }
  .book-main .btn-primary { display: inline-flex; width: auto; padding: 19px 34px; font-size: 16px; }
  .book-main .btn-primary:hover { transform: translateY(-3px); }
  .book-fineprint { text-align: left; font-size: 12px; margin-top: 16px; }
  .book-side { padding: 64px 48px; border-left: 1px solid var(--border); justify-content: center; gap: 16px; }
  .book-card { padding: 28px 30px; }
  .math-row span { font-size: 15px; }
  .math-row b { font-size: 18px; }
  .math-row.total b { font-size: 22px; }
  .math-row.total span { font-size: 15px; }
  .book-phone { font-size: 30px; }
  .book-card p { font-size: 14px; }

  /* footer */
  .footer { padding: 80px 48px; }
  .footer-glow { display: block; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 760px; height: 420px; background: radial-gradient(ellipse, rgba(255,91,26,.14) 0%, rgba(255,91,26,0) 65%); pointer-events: none; }
  .footer h2 { font-size: 56px; margin-bottom: 16px; }
  .footer-sub { font-size: 19px; margin-bottom: 34px; }
  .footer .btn-primary { display: inline-flex; width: auto; padding: 20px 46px; font-size: 18px; clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%); }
  .footer .btn-primary:hover { transform: translateY(-3px); }
  .footer-call { margin-top: 26px; font-size: 17px; }
  .footer-copy { margin-top: 46px; font-size: 13px; }

  /* sticky bar */
  .cta-bar { position: sticky; background: rgba(12,11,13,.86); }
  .cta-bar-inner { max-width: 1280px; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 48px; }
  .cta-bar-msg { display: flex; align-items: center; gap: 16px; }
  .cta-bar-msg .cta-pin { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: rgba(255,91,26,.12); border: 1px solid rgba(255,91,26,.4); color: var(--orange); font-size: 19px; flex: 0 0 auto; }
  .cta-bar-msg b { display: block; font-family: var(--f-black); font-size: 16px; color: var(--text); text-transform: uppercase; letter-spacing: -.01em; font-weight: 400; }
  .cta-bar-msg small { font-family: var(--f-cond); font-size: 13px; font-weight: 600; color: var(--muted-2); text-transform: uppercase; letter-spacing: .04em; }
  .cta-bar-actions { flex: 0 0 auto; align-items: center; }
  .cta-call { border: none; padding: 0; min-height: 0; font-size: 15px; }
  .cta-call .cta-call-label { display: none; }
  .cta-call .cta-call-num { display: inline; }
  .cta-call .cta-call-num span { color: var(--orange-l); }
  .cta-book { flex: 0 0 auto; padding: 14px 30px; clip-path: polygon(7% 0, 100% 0, 93% 100%, 0 100%); }

  /* lift calendly badge above the sticky bar */
  .calendly-badge-widget { display: block !important; bottom: 96px !important; }
}

/* very large screens: keep content tidy */
@media (min-width: 1340px) {
  .announce, .nav, .trust, .cta-bar { }
}
