/* ============================================================
   Nordisk Bilpleie — Design System
   Theme: light, clean, premium, modern tech
   Color rule: ~80% neutral (ice/white/navy) · ~15% teal · ~5% accent
   Pink = action only · Teal = brand · Gold = trust
   ============================================================ */

:root {
  /* Brand palette */
  --ice: #F3F6FC;
  --white: #FFFFFF;
  --navy: #19386F;
  --navy-deep: #0D1F44;
  --teal: #1FB6AD;
  --teal-dark: #138A84;
  --pink: #E62C82;
  --pink-dark: #A11E60;
  --gold: #F5B638;
  --gold-dark: #D69B1E;
  --text-secondary: #51678C;
  --border: #E1E6F1;
  --border-strong: #C6D1E6;

  /* Surfaces */
  --surface: var(--white);
  --bg: var(--ice);

  /* Typography */
  --font-display: "Manrope", system-ui, -apple-system, sans-serif;
  --font-body: "Manrope", system-ui, -apple-system, sans-serif;

  /* Radius */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 26px;
  --r-pill: 999px;

  /* Shadows — soft, premium */
  --shadow-xs: 0 1px 2px rgba(27,58,122,.05);
  --shadow-sm: 0 2px 8px rgba(27,58,122,.06), 0 1px 2px rgba(27,58,122,.04);
  --shadow-md: 0 10px 30px -12px rgba(27,58,122,.18), 0 2px 8px rgba(27,58,122,.05);
  --shadow-lg: 0 30px 60px -24px rgba(14,33,72,.30), 0 8px 20px -12px rgba(27,58,122,.14);
  --shadow-teal: 0 18px 40px -16px rgba(31,182,173,.42);
  --shadow-pink: 0 14px 30px -10px rgba(230,44,130,.40);

  /* Layout */
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 56px);

  /* Easing */
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--navy);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 4px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--navy);
  text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 800; letter-spacing: -0.038em; }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 800; letter-spacing: -0.03em; }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); letter-spacing: -0.02em; line-height: 1.15; }
h4 { font-size: 1.1rem; letter-spacing: -0.01em; }
p { text-wrap: pretty; }
strong { font-weight: 600; }
.lead { font-size: clamp(1.12rem, 1.6vw, 1.32rem); color: var(--text-secondary); line-height: 1.55; }

.ink-pink { color: var(--pink); }
.ink-teal { color: var(--teal-dark); }
.ink-muted { color: var(--text-secondary); }

/* Kicker / eyebrow label */
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-weight: 600; font-size: .78rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal-dark);
}
.kicker::before {
  content: ""; width: 22px; height: 2px; border-radius: 2px;
  background: var(--teal);
}
.kicker.center::after {
  content: ""; width: 22px; height: 2px; border-radius: 2px; background: var(--teal);
}

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 130px); position: relative; }
.section--tight { padding-block: clamp(48px, 6vw, 84px); }
.section--ice { background: var(--ice); }
.section--white { background: var(--white); }
.section--navy { background: var(--navy-deep); color: #DCE6FB; }
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4 { color: #fff; }

.sec-head { max-width: 640px; margin-bottom: clamp(32px, 4vw, 56px); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head .kicker { margin-bottom: 16px; }
.sec-head p { margin-top: 16px; }

.grid { display: grid; gap: 24px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: .98rem;
  padding: 15px 26px; border-radius: var(--r-pill);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s, border-color .2s;
  white-space: nowrap; line-height: 1; position: relative;
}
.btn .ic { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--pink { background: var(--pink); color: var(--cta-ink, #fff); box-shadow: 0 8px 20px -10px rgba(14,33,72,.45); position: relative; overflow: hidden; }
.btn--pink:hover { background: var(--pink-dark); box-shadow: 0 14px 28px -12px rgba(14,33,72,.5); }
.btn--pink .ic { transition: transform .3s var(--ease); }
.btn--pink:hover .ic { transform: translateX(4px); }
/* Keep primary CTA legible on dark backgrounds (esp. with navy CTA color) */
.section--navy .btn--pink, .hero-cine .btn--pink { box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.38), 0 8px 18px -12px rgba(0,0,0,.4); }

.btn--teal { background: var(--teal); color: #fff; box-shadow: var(--shadow-teal); }
.btn--teal:hover { background: var(--teal-dark); }

.btn--outline {
  background: transparent; color: var(--navy);
  box-shadow: inset 0 0 0 1.5px var(--border-strong);
}
.btn--outline:hover { box-shadow: inset 0 0 0 1.5px var(--teal); color: var(--teal-dark); }

.btn--ghost-light { background: rgba(31,182,173,.30); color: #fff; box-shadow: inset 0 0 0 1px rgba(127,227,220,.6); backdrop-filter: blur(8px) saturate(1.1); -webkit-backdrop-filter: blur(8px) saturate(1.1); }
.btn--ghost-light:hover { background: rgba(31,182,173,.46); }

.btn--lg { padding: 18px 32px; font-size: 1.05rem; }
.btn--sm { padding: 11px 18px; font-size: .9rem; }
.btn--block { width: 100%; }

.textlink {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 600; color: var(--teal-dark);
  transition: gap .25s var(--ease), color .2s;
}
.textlink .ic { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.textlink:hover { color: var(--navy); gap: 11px; }

/* ---------- Badges ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 600; font-size: .82rem; padding: 7px 14px;
  border-radius: var(--r-pill); background: var(--white);
  box-shadow: inset 0 0 0 1px var(--border);
}
.badge .ic { width: 15px; height: 15px; }
.badge--gold { background: #FFF8E7; color: var(--gold-dark); box-shadow: inset 0 0 0 1px #F4E2AE; }
.badge--teal { background: #E7FAF8; color: var(--teal-dark); box-shadow: inset 0 0 0 1px #BCEDE9; }
.badge--pink { background: #FFE9F4; color: var(--pink-dark); box-shadow: inset 0 0 0 1px #FFC8E2; }
.badge--pop {
  background: var(--pink); color: #fff; box-shadow: var(--shadow-pink);
  letter-spacing: .02em;
}

/* Stars */
.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars .ic { width: 16px; height: 16px; fill: var(--gold); stroke: none; }
/* Google review lockup (logo + stars) */
.greview { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; color: inherit; transition: opacity .2s; }
.greview:hover { opacity: .78; }
.greview__logo { width: 20px; height: 20px; display: block; flex: none; }

/* ---------- Cards ---------- */
.card {
  background: var(--surface); border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm); border: 0.5px solid var(--border);
  padding: 30px; position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.card--hover:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }

/* ---------- Icons ---------- */
.ic { display: inline-flex; align-items: center; justify-content: center; vertical-align: middle; stroke: currentColor; stroke-width: 1.7; fill: none; stroke-linecap: round; stroke-linejoin: round; }
svg.ic { display: block; }
.icon-tile {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(145deg, #E7FAF8, #D2F2EF);
  color: var(--teal-dark); box-shadow: inset 0 0 0 1px #C6ECE8;
  flex: none;
}
.icon-tile .ic { width: 27px; height: 27px; stroke-width: 1.6; }
.icon-tile--navy { background: linear-gradient(145deg, #EAF0FE, #DCE6FB); color: var(--navy); box-shadow: inset 0 0 0 1px #CFDBF4; }
.icon-tile--gold { background: linear-gradient(145deg, #FFF6E0, #FCEBBE); color: var(--gold-dark); box-shadow: inset 0 0 0 1px #F2E0AC; }

/* ---------- Decorative blobs ---------- */
.blob { position: absolute; border-radius: 50%; filter: blur(8px); pointer-events: none; z-index: 0; opacity: .5; }
.blob--teal { background: radial-gradient(circle, rgba(42,188,180,.30), transparent 68%); }
.blob--pink { background: radial-gradient(circle, rgba(230,44,130,.16), transparent 68%); }
.blob--navy { background: radial-gradient(circle, rgba(27,58,122,.16), transparent 68%); }
.section > .wrap { position: relative; z-index: 1; }

/* ---------- Image placeholder frames ---------- */
.ph {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  background:
    radial-gradient(120% 90% at 80% 0%, rgba(42,188,180,.16), transparent 60%),
    linear-gradient(150deg, #E9EFFC 0%, #DCE6FB 55%, #CBD8F2 100%);
  box-shadow: inset 0 0 0 1px var(--border);
  display: grid; place-items: center; color: var(--navy);
  min-height: 220px;
}
.ph__inner { text-align: center; padding: 22px; z-index: 2; }
.ph .ic { width: 34px; height: 34px; opacity: .55; margin-inline: auto; margin-bottom: 12px; stroke-width: 1.4; }
.ph__label { font-size: .8rem; font-weight: 600; color: var(--navy); opacity: .8; }
.ph__sub { font-size: .72rem; color: var(--text-secondary); margin-top: 3px; }
.ph__tag {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  font-size: .64rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  background: rgba(13,31,68,.66); color: #fff; padding: 6px 12px; border-radius: var(--r-pill);
  backdrop-filter: blur(8px) saturate(1.2); -webkit-backdrop-filter: blur(8px) saturate(1.2);
  box-shadow: 0 2px 10px rgba(13,31,68,.25), inset 0 0 0 1px rgba(255,255,255,.18);
}
.ph::after { /* subtle car-glint sweep */
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.35) 50%, transparent 65%);
}
.ph--tall { min-height: 460px; }
.ph--wide { aspect-ratio: 16/10; min-height: 0; }

/* image-slot styling hook */
image-slot { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); }

/* ---------- Forms ---------- */
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-weight: 600; font-size: .9rem; color: var(--navy); }
.field .req { color: var(--pink); }
.input, .select, .textarea {
  width: 100%; background: var(--white);
  border: 1.5px solid var(--border); border-radius: var(--r-md);
  padding: 13px 15px; font-size: 1rem; color: var(--navy);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.input::placeholder, .textarea::placeholder { color: #9DB0CF; }
.input:focus, .select:focus, .textarea:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(42,188,180,.14);
}
.textarea { resize: vertical; min-height: 110px; line-height: 1.5; }
.select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' stroke='%234A6FA5' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 8l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 42px; cursor: pointer; }
.field.invalid .input, .field.invalid .select, .field.invalid .textarea { border-color: var(--pink); box-shadow: 0 0 0 4px rgba(255,45,155,.1); }
.field .err { font-size: .8rem; color: var(--pink-dark); display: none; }
.field.invalid .err { display: block; }

/* choice chips (radio as cards) */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  position: relative; cursor: pointer;
  padding: 11px 16px; border-radius: var(--r-pill);
  border: 1.5px solid var(--border); background: var(--white);
  font-weight: 600; font-size: .92rem; color: var(--text-secondary);
  transition: all .2s var(--ease); display: inline-flex; align-items: center; gap: 8px;
}
.chip input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.chip .ic { width: 16px; height: 16px; }
.chip:has(input:checked) { border-color: var(--teal); background: #E7FAF8; color: var(--teal-dark); }
.chip:hover { border-color: var(--border-strong); }

/* ---------- Misc utility ---------- */
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: 10px; } .gap-md { gap: 16px; } .gap-lg { gap: 24px; }
.wrap-gap { flex-wrap: wrap; }
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; }
.center { text-align: center; }
.divider { height: 1px; background: var(--border); border: none; margin: 0; }
.muted-card { background: var(--ice); border-radius: var(--r-md); padding: 22px 24px; }

/* fact box — AI-citeable summary */
.factbox {
  background: linear-gradient(150deg, #EAF0FE, #F4F7FF);
  border: 1px solid var(--border); border-left: 4px solid var(--teal);
  border-radius: var(--r-md); padding: 24px 26px;
}
.factbox h4 { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.factbox dl { display: grid; grid-template-columns: auto 1fr; gap: 8px 20px; font-size: .95rem; }
.factbox dt { color: var(--text-secondary); font-weight: 600; }
.factbox dd { font-weight: 600; color: var(--navy); }

/* feature list */
.checklist { display: grid; gap: 14px; }
.checklist li { display: flex; gap: 13px; align-items: flex-start; }
.checklist .tick {
  flex: none; width: 22px; height: 22px;
  background: none; color: var(--teal-dark); display: grid; place-items: center; margin-top: 1px;
}
.checklist .tick .ic { width: 19px; height: 19px; stroke-width: 2.4; }
.checklist span.tx { color: var(--text-secondary); line-height: 1.5; }
.checklist span.tx strong { color: var(--navy); }
/* On dark sections: brighten icon + keep text readable */
.section--navy .checklist .tick { color: var(--teal); }
.section--navy .checklist span.tx strong { color: #fff; }

/* article thumbnail image */
.artimg { position: relative; width: 100%; aspect-ratio: 16/10; overflow: hidden; background: var(--ice); }
.artimg img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease), filter .4s var(--ease); filter: saturate(1.06) contrast(1.04); }
/* unify a mismatched photo set: soft scrim for depth + badge legibility, hairline frame */
.artimg::after { content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none; background: linear-gradient(180deg, rgba(13,31,68,.20) 0%, rgba(13,31,68,0) 24%, rgba(13,31,68,0) 52%, rgba(13,31,68,.30) 100%); }
.artimg::before { content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none; box-shadow: inset 0 0 0 1px rgba(13,31,68,.07); }
.card--hover:hover .artimg img { transform: scale(1.04); filter: saturate(1.1) contrast(1.05) brightness(1.03); }
.artimg--fill { aspect-ratio: auto; height: 100%; min-height: 320px; }

/* responsive video embed */
.video-frame { position: relative; width: 100%; aspect-ratio: 16/9; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 0.5px solid var(--border); background: #000; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-facade { cursor: pointer; }
.video-facade__thumb { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-facade::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,33,72,.12), rgba(14,33,72,.28)); transition: background .25s; }
.video-facade:hover::after { background: linear-gradient(180deg, rgba(14,33,72,.05), rgba(14,33,72,.18)); }
.video-facade__play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 2; filter: drop-shadow(0 8px 20px rgba(0,0,0,.35)); transition: transform .25s var(--ease); }
.video-facade:hover .video-facade__play { transform: translate(-50%,-50%) scale(1.08); }

/* article body typography */
.prose { max-width: 720px; font-size: 1.08rem; line-height: 1.75; color: #2C4775; }
.prose > * + * { margin-top: 22px; }
.prose h2 { font-size: clamp(1.6rem,2.4vw,2rem); margin-top: 48px; }
.prose h3 { font-size: 1.3rem; margin-top: 34px; }
.prose p { color: #3A557F; }
.prose strong { color: var(--navy); }
.prose ul.dotted { display: grid; gap: 12px; padding-left: 4px; }
.prose ul.dotted li { display: flex; gap: 12px; align-items: flex-start; }
.prose ul.dotted li::before { content: ""; flex: none; width: 8px; height: 8px; margin-top: 10px; border-radius: 50%; background: var(--teal); }
.prose blockquote { border-left: 4px solid var(--teal); background: var(--ice); padding: 18px 24px; border-radius: 0 var(--r-md) var(--r-md) 0; font-size: 1.15rem; font-weight: 500; color: var(--navy); }
.prose .keytake { background: linear-gradient(150deg,#EAF0FE,#F4F7FF); border: 1px solid var(--border); border-radius: var(--r-md); padding: 22px 26px; }
.prose .keytake h4 { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.toc { position: sticky; top: 100px; }
.toc h5 { font-family: var(--font-body); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 14px; font-weight: 700; }
.toc ul { display: grid; gap: 9px; }
.toc a { font-size: .94rem; color: var(--text-secondary); border-left: 2px solid var(--border); padding-left: 14px; display: block; transition: color .2s, border-color .2s; }
.toc a:hover { color: var(--teal-dark); border-color: var(--teal); }
@media (max-width: 900px) { .toc { display: none; } }

/* ---------- Article body: tables, callouts, pros/cons ---------- */
.prose .table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-inline: -2px; }
.prose table {
  width: 100%; border-collapse: collapse; font-size: .98rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); overflow: hidden; min-width: 440px;
}
.prose table th, .prose table td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--border); vertical-align: top; }
.prose table thead th { background: var(--ice); font-family: var(--font-display); font-weight: 700; color: var(--navy); letter-spacing: -.01em; border-bottom: 1.5px solid var(--border-strong); }
.prose table tbody tr:last-child td { border-bottom: none; }
.prose table tbody tr:nth-child(even) td { background: rgba(244,247,255,.5); }
.prose table td:first-child { font-weight: 600; color: var(--navy); }
.prose table .yes { color: var(--teal-dark); font-weight: 600; }
.prose table .no { color: var(--pink-dark); font-weight: 600; }
.prose .cap { font-size: .82rem; color: var(--text-secondary); margin-top: 10px; }

/* callout (tip / note) */
.prose .callout { display: flex; gap: 14px; align-items: flex-start; background: #E7FAF8; border: 1px solid #BCEDE9; border-radius: var(--r-md); padding: 18px 20px; }
.prose .callout .ic { flex: none; width: 22px; height: 22px; color: var(--teal-dark); margin-top: 2px; }
.prose .callout p { margin: 0; color: #2C5C58; }
.prose .callout strong { color: var(--teal-dark); }
.prose .callout--gold { background: #FFF8E7; border-color: #F4E2AE; }
.prose .callout--gold .ic { color: var(--gold-dark); }
.prose .callout--gold p { color: #7A5E12; }
.prose .callout--gold strong { color: var(--gold-dark); }

/* pros / cons split */
.prose .pc { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.prose .pc__col { border: 1px solid var(--border); border-radius: var(--r-md); padding: 20px 22px; background: var(--white); }
.prose .pc__col h4 { display: flex; align-items: center; gap: 9px; margin-bottom: 12px; }
.prose .pc__col ul { display: grid; gap: 10px; }
.prose .pc__col li { display: flex; gap: 10px; align-items: flex-start; font-size: .96rem; line-height: 1.45; }
.prose .pc__col li .ic { flex: none; width: 18px; height: 18px; margin-top: 2px; stroke-width: 2.3; }
.prose .pc--pro h4 { color: var(--teal-dark); } .prose .pc--pro li .ic { color: var(--teal-dark); }
.prose .pc--con h4 { color: var(--pink-dark); } .prose .pc--con li .ic { color: var(--pink-dark); }
@media (max-width: 620px) { .prose .pc { grid-template-columns: 1fr; } }

/* inline author/share row + tag chips */
.art-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 14px; }
.art-tags a { font-size: .82rem; font-weight: 600; color: var(--text-secondary); background: var(--white); border: 1px solid var(--border); padding: 6px 13px; border-radius: var(--r-pill); transition: all .2s; }
.art-tags a:hover { border-color: var(--teal); color: var(--teal-dark); }
.prose .price-list { display: grid; gap: 0; border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; }
.prose .price-list .pl-row { display: flex; justify-content: space-between; gap: 16px; padding: 14px 18px; border-bottom: 1px solid var(--border); }
.prose .price-list .pl-row:last-child { border-bottom: none; }
.prose .price-list .pl-row:nth-child(even) { background: rgba(244,247,255,.5); }
.prose .price-list .pl-k { font-weight: 600; color: var(--navy); }
.prose .price-list .pl-v { font-weight: 700; color: var(--teal-dark); font-family: var(--font-display); white-space: nowrap; }

/* TODO marker for client */
.todo {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .7rem; font-weight: 700; letter-spacing: .04em;
  background: #FFF1C2; color: #8A6A00; padding: 2px 8px; border-radius: 5px;
  border: 1px dashed #E6C65C; vertical-align: middle;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  transition: background .3s, box-shadow .3s, border-color .3s;
  background: #fff;
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.site-header.scrolled { background: rgba(255,255,255,.86); box-shadow: var(--shadow-sm); border-bottom-color: var(--border); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 20px; }
.nav__logo img { height: 38px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  padding: 9px 14px; border-radius: var(--r-pill); font-weight: 500; font-size: .96rem; white-space: nowrap;
  color: var(--navy); transition: background .2s, color .2s; position: relative;
}
.nav__links a:hover { background: rgba(42,188,180,.12); color: var(--teal-dark); }
.nav__links a.active { color: var(--teal-dark); }
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__toggle { display: none; width: 44px; height: 44px; border-radius: 12px; place-items: center; color: var(--navy); }
.nav__toggle .ic { width: 26px; height: 26px; }

/* dropdown */
.has-drop { position: relative; }
.drop {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md);
  box-shadow: var(--shadow-lg); padding: 10px; width: 290px;
  opacity: 0; visibility: hidden; transition: all .22s var(--ease); z-index: 50;
}
.has-drop:hover .drop, .has-drop:focus-within .drop { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.drop a { display: flex; gap: 12px; align-items: center; padding: 11px 12px; border-radius: 10px; }
.drop a:hover { background: var(--ice); }
.drop a .ic { width: 20px; height: 20px; color: var(--teal-dark); flex: none; }
.drop a .d-t { font-weight: 600; font-size: .92rem; color: var(--navy); display: block; }
.drop a .d-s { font-size: .78rem; color: var(--text-secondary); }

/* mobile nav panel */
.mnav { display: none; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: #AEC0E6; padding-block: clamp(56px,7vw,84px) 32px; position: relative; overflow: hidden; }
.site-footer a { color: #C3D2F0; transition: color .2s; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand img { height: 58px; margin-bottom: 18px; }
.footer-brand p { color: #93A6CE; max-width: 300px; font-size: .95rem; }
.foot-col h5 { font-family: var(--font-body); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: #6E84B4; margin-bottom: 16px; font-weight: 700; }
.foot-col ul { display: grid; gap: 11px; font-size: .95rem; }
.app-btns { display: flex; flex-direction: column; gap: 10px; max-width: 200px; }
.app-btn {
  display: flex; align-items: center; gap: 11px; padding: 9px 16px;
  border-radius: 12px; border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.05); transition: background .2s, border-color .2s;
}
.app-btn:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.3); }
.app-btn .ic { width: 24px; height: 24px; color: #fff; flex: none; }
.app-btn small { display: block; font-size: .66rem; color: #8DA1CC; line-height: 1.2; }
.app-btn b { font-size: .95rem; color: #fff; font-weight: 600; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; margin-top: 52px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.1); font-size: .85rem; color: #7E92BD; }
.social { display: flex; gap: 10px; }
.social a { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,255,255,.06); }
.social a:hover { background: var(--teal); }
.social .ic { width: 19px; height: 19px; }

/* Pink footer variant */
.site-footer--pink { background: linear-gradient(160deg, var(--pink), var(--pink-dark)); color: #fff; }
.site-footer--pink a { color: #fff; }
.site-footer--pink a:hover { color: #fff; opacity: .82; }
.site-footer--pink .foot-col h5 { color: #fff; }
.site-footer--pink .footer-brand p { color: #fff; }
.site-footer--pink .app-btn { border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.14); }
.site-footer--pink .app-btn:hover { background: rgba(255,255,255,.24); }
.site-footer--pink .app-btn small { color: #fff; }
.site-footer--pink .footer-bottom { border-top-color: rgba(255,255,255,.28); color: #fff; }
.site-footer--pink .social a { background: rgba(255,255,255,.16); }
.site-footer--pink .social a:hover { background: rgba(255,255,255,.3); }
.site-footer--pink .blob { display: none; }

/* ---------- Light footer theme ---------- */
.site-footer, .site-footer--pink {
  background: #fff;
  color: #4A6FA5;
  border-top: 1px solid var(--border);
}
.site-footer a, .site-footer--pink a { color: var(--navy); }
.site-footer a:hover, .site-footer--pink a:hover { color: var(--teal-dark); opacity: 1; }
.site-footer .footer-brand p, .site-footer--pink .footer-brand p { color: #4A6FA5; }
.site-footer .foot-col h5, .site-footer--pink .foot-col h5 { color: #7C90B6; }
.site-footer .app-btn, .site-footer--pink .app-btn {
  background: #fff; border-color: var(--border); box-shadow: var(--shadow-sm);
}
.site-footer .app-btn:hover, .site-footer--pink .app-btn:hover { background: #fff; border-color: var(--teal); }
.site-footer .app-btn .ic, .site-footer--pink .app-btn .ic { color: var(--navy); }
.site-footer .app-btn small, .site-footer--pink .app-btn small { color: #6E84B4; }
.site-footer .app-btn b, .site-footer--pink .app-btn b { color: var(--navy); }
.site-footer .footer-bottom, .site-footer--pink .footer-bottom {
  border-top-color: rgba(27,58,122,.14); color: #6E84B4;
}
.site-footer .social a, .site-footer--pink .social a { background: rgba(27,58,122,.06); color: var(--navy); }
.site-footer .social a:hover, .site-footer--pink .social a:hover { background: rgba(27,58,122,.12); }
.site-footer .blob, .site-footer--pink .blob { display: none; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; } html { scroll-behavior: auto; } }

/* ---------- Before / After slider ---------- */
.ba {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 16/10; box-shadow: var(--shadow-md); user-select: none; touch-action: none;
  border: 0.5px solid var(--border);
}
.ba__pane { position: absolute; inset: 0; display: grid; place-items: center; }
.ba__before { background: linear-gradient(150deg,#B9C6E0,#9AAACB); }
.ba__after { background: linear-gradient(150deg, #E9EFFC, #CFE9E6 120%); clip-path: inset(0 0 0 50%); }
.ba__lbl { position: absolute; bottom: 16px; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 6px 12px; border-radius: var(--r-pill); color: #fff; }
.ba__before .ba__lbl { left: 16px; background: rgba(14,33,72,.65); }
.ba__after .ba__lbl { right: 16px; background: var(--teal); }
.ba__pane .ic { width: 40px; height: 40px; opacity: .4; }
.ba__handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: #fff; transform: translateX(-50%); box-shadow: 0 0 0 1px rgba(27,58,122,.1); z-index: 3; }
.ba__grip { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 46px; height: 46px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-md); display: grid; place-items: center; color: var(--navy); cursor: ew-resize; }
.ba__grip .ic { width: 22px; height: 22px; opacity: 1; }
.ba__range { position: absolute; inset: 0; width: 100%; opacity: 0; cursor: ew-resize; z-index: 4; }

/* ---------- Testimonial carousel ---------- */
.tcar { overflow: hidden; }
.tcar__track { display: flex; gap: 24px; transition: transform .55s var(--ease-out); }
.tcar__card { flex: 0 0 calc((100% - 48px)/3); }
.tquote { font-size: 1.05rem; line-height: 1.55; color: var(--navy); font-weight: 500; }
.tmeta { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.tavatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(145deg,var(--teal),var(--navy)); color: #fff; display: grid; place-items: center; font-weight: 700; font-family: var(--font-display); flex: none; letter-spacing: 0; }
.tcar__nav { display: flex; gap: 10px; }
/* Masonry flow for the review grid — cards pack by natural height, creating a lively, staggered layout */
.tcar--grid .tcar__track { display: block; columns: 3; column-gap: 18px; transform: none !important; }
.tcar--grid .tcar__card { width: 100%; flex: none; display: inline-block; break-inside: avoid; margin: 0 0 12px; vertical-align: top; }
@media (max-width: 1000px) { .tcar--grid .tcar__track { columns: 2; } }
@media (max-width: 640px) { .tcar--grid .tcar__track { columns: 1; } }

/* ---------- Depth stack — reviews at different distances (3D overlap) ---------- */
.tcar--depth { overflow: visible; perspective: 1900px; padding-block: 24px; }
.tcar--depth .tcar__track {
  display: flex; align-items: center; justify-content: center;
  gap: 0; transform: none; transform-style: preserve-3d;
}
.tcar--depth .rd-col {
  flex: 0 0 360px; max-width: 37%;
  display: flex; flex-direction: column; gap: 22px;
  transition: transform .6s var(--ease-out), opacity .6s var(--ease-out), filter .6s var(--ease-out);
  will-change: transform;
}
.tcar--depth .rd-col .tcar__card { transition: box-shadow .4s var(--ease); }
/* front column — nearest the viewer: sharp, full size, on top, overlapping its neighbours */
.tcar--depth .rd-col--front {
  z-index: 6; transform: translateZ(95px); margin-inline: -26px;
}
.tcar--depth .rd-col--front .tcar__card { box-shadow: var(--shadow-lg); }
/* back-left column — set back and angled toward centre */
.tcar--depth .rd-col--back {
  z-index: 3; transform-origin: right center;
  transform: translateZ(-70px) translateX(26px) rotateY(9deg);
  opacity: .92; filter: saturate(.97);
}
/* back-right column — further still */
.tcar--depth .rd-col--back2 {
  z-index: 2; transform-origin: left center;
  transform: translateZ(-160px) translateX(-26px) rotateY(-11deg);
  opacity: .8; filter: saturate(.94) brightness(.99);
}
.tcar--depth .rd-col--back .tcar__card,
.tcar--depth .rd-col--back2 .tcar__card { box-shadow: var(--shadow-md); }
/* hover any column to pull it forward */
.tcar--depth .rd-col:hover {
  transform: translateZ(120px) rotateY(0deg) translateX(0);
  opacity: 1; filter: none; z-index: 7;
}
.tcar--depth .rd-col:hover .tcar__card { box-shadow: var(--shadow-lg); }
@media (prefers-reduced-motion: reduce) {
  .tcar--depth .rd-col { transition: none; }
}
/* mobile / tablet: flatten into a clean single column */
@media (max-width: 880px) {
  .tcar--depth { perspective: none; padding-block: 0; }
  .tcar--depth .tcar__track { flex-direction: column; gap: 16px; }
  .tcar--depth .rd-col {
    flex: none; max-width: 100%; margin-inline: 0;
    transform: none !important; opacity: 1 !important; filter: none !important;
  }
}

/* Fluid review wall — varied card weights for a lively, flowing feel */
.tcar--grid .tcar__card {
  padding: 19px 21px; position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.tcar--grid .tcar__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); z-index: 3; }
/* Slight overlap for a packed, flowing collage */
.tcar--grid .tcar__card:nth-child(even) { margin-top: -14px; }
.tcar--grid .tquote { font-size: .95rem; line-height: 1.5; }
.tcar--grid .tmeta { margin-top: 14px; }
.tcar--grid .tavatar { width: 38px; height: 38px; font-size: .9rem; }
.tcar--grid .tcar__card--feat {
  background: linear-gradient(165deg, #EAF7F6, #fff);
  border-color: #BCEDE9;
}
.tcar--grid .tcar__card--feat .tquote { font-size: 1.12rem; line-height: 1.48; }
.tcar--grid .tcar__card--sm .tquote { font-size: .92rem; }
.tcar--grid .tcar__card--navy {
  background: linear-gradient(165deg, var(--navy), var(--navy-deep));
  border-color: transparent;
}
.tcar--grid .tcar__card--navy .tquote { color: #fff; }
.tcar--grid .tcar__card--navy .tmeta > div > div:first-child { color: #fff; }
.tcar--grid .tcar__card--navy .ink-muted { color: #AEC0E6 !important; }
/* Minimized review label (small stars + tiny Google g) */
.greview--mini { display: inline-flex; align-items: center; gap: 7px; }
.greview--mini .stars .ic { width: 14px; height: 14px; }
.greview--mini .greview__logo { width: 15px; height: 15px; opacity: .8; }

/* App promo — light, on-brand feature layout */
.app-promo .app-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 20px; margin-top: 28px; }
.app-promo .app-feats li { display: flex; gap: 13px; align-items: flex-start; }
.app-promo .app-feats .fi {
  flex: none; width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(145deg, #E7FAF8, #D2F2EF);
  color: var(--teal-dark); box-shadow: inset 0 0 0 1px #C6ECE8;
}
.app-promo .app-feats .fi .ic { width: 21px; height: 21px; }
.app-promo .app-feats b { display: block; font-family: var(--font-display); font-size: 1rem; color: var(--navy); letter-spacing: -.01em; }
.app-promo .app-feats span.s { font-size: .85rem; color: var(--text-secondary); line-height: 1.35; }
.app-promo .app-btn { background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.app-promo .app-btn:hover { border-color: var(--teal); background: #fff; }
.app-promo .app-btn .ic { color: var(--navy); }
.app-promo .app-btn small { color: var(--text-secondary); }
.app-promo .app-btn b { color: var(--navy); }
@media (max-width: 560px) { .app-promo .app-feats { grid-template-columns: 1fr; } }
.tcar__btn { width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--border-strong); display: grid; place-items: center; color: var(--navy); background: #fff; transition: all .2s; }
.tcar__btn:hover { border-color: var(--teal); color: var(--teal-dark); }
.tcar__btn:disabled { opacity: .35; cursor: default; }

/* ---------- Accordion / FAQ ---------- */
.acc { border-top: 1px solid var(--border); }
.acc__item { border-bottom: 1px solid var(--border); }
.acc__q { width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 4px; font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; letter-spacing: -0.01em; color: var(--navy); }
.acc__q .pm { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--ice); display: grid; place-items: center; transition: background .2s, transform .3s var(--ease); }
.acc__q .pm .ic { width: 17px; height: 17px; }
.acc__item.open .acc__q .pm { background: var(--teal); color: #fff; transform: rotate(180deg); }
.acc__a { overflow: hidden; max-height: 0; transition: max-height .4s var(--ease); }
.acc__a > div { padding: 0 4px 24px; color: var(--text-secondary); max-width: 760px; }
.acc__a p + p { margin-top: 12px; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; gap: 28px; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: start; }
.step__num { counter-increment: step; flex: none; width: 52px; height: 52px; border-radius: 16px; background: var(--white); box-shadow: var(--shadow-sm); border: .5px solid var(--border); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--teal-dark); }
.step__num::before { content: counter(step,decimal-leading-zero); }

/* ---------- Stat ---------- */
.stat__num { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.4rem,4vw,3.4rem); letter-spacing: -0.04em; line-height: 1; background: linear-gradient(120deg,var(--navy),var(--teal-dark)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat__lbl { color: var(--text-secondary); font-size: .92rem; margin-top: 8px; }

/* ---------- Price card ---------- */
.price { display: flex; align-items: baseline; gap: 8px; }
.price__amt { font-family: var(--font-display); font-weight: 700; font-size: 2.4rem; letter-spacing: -0.03em; color: var(--navy); }
.price__per { color: var(--text-secondary); font-size: .95rem; }
.price__from { font-size: .8rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: .1em; font-weight: 600; }

/* ---------- Breadcrumb ---------- */
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: .85rem; color: var(--text-secondary); }
.crumbs a:hover { color: var(--teal-dark); }
.crumbs .sep { opacity: .5; }

/* ---------- City / link grid ---------- */
.citygrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.citycard { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; background: var(--white); border: .5px solid var(--border); border-radius: var(--r-md); box-shadow: var(--shadow-xs); transition: all .25s var(--ease); }
.citycard:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--teal); }
.citycard__name { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--navy); }
.citycard__region { font-size: .82rem; color: var(--text-secondary); }
.citycard .ic { width: 20px; height: 20px; color: var(--teal-dark); transition: transform .25s var(--ease); }
.citycard:hover .ic { transform: translateX(4px); }

/* ---------- Toast / form success ---------- */
.formcard { background: var(--white); border-radius: var(--r-xl); box-shadow: var(--shadow-lg); border: .5px solid var(--border); padding: clamp(28px,4vw,44px); }
.success-state { display: none; text-align: center; padding: 30px 10px; }
.success-state.show { display: block; animation: pop .5s var(--ease-out); }
@keyframes pop { from { opacity: 0; transform: scale(.92); } to { opacity: 1; transform: none; } }
.success-ring { width: 84px; height: 84px; border-radius: 50%; background: #E7FAF8; color: var(--teal-dark); display: grid; place-items: center; margin: 0 auto 22px; }
.success-ring .ic { width: 40px; height: 40px; stroke-width: 2; }

/* ---------- Marquee trust bar ---------- */
.trust-row { display: flex; align-items: center; gap: clamp(28px,5vw,64px); flex-wrap: wrap; justify-content: center; }
.trust-logo { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; letter-spacing: .02em; color: var(--navy); opacity: .42; transition: opacity .25s; }
.trust-logo:hover { opacity: .8; }
.brand-slot { border-radius: 8px; box-shadow: none !important; opacity: .85; transition: opacity .2s; }
.brand-slot:hover { opacity: 1; }
.brand-img { height: 30px; width: auto; object-fit: contain; opacity: .62; transition: opacity .2s; }
.brand-img:hover { opacity: 1; }
.brand-img--shield { height: 48px; }

/* ===========================================================
   Cinematic video hero (GYEON-style)
   =========================================================== */
.hero-cine {
  position: relative; overflow: hidden;
  min-height: clamp(580px, 100svh, 960px);
  display: flex; align-items: center;
  background: var(--navy-deep);
  padding: 76px 0 0; margin-top: -76px; /* bg full-bleed under header, content clears it */
}
.hero-cine__bg { position: absolute; inset: 0; z-index: 0; }
.hero-cine__bg iframe, .hero-cine__bg #hero-yt {
  position: absolute; top: 50%; left: 50%;
  width: 100vw; height: 56.25vw;
  min-height: 100%; min-width: 177.78vh;
  transform: translate(-50%, -50%);
  border: 0; pointer-events: none;
}
.hero-cine__bg .hero-cine__gif {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; pointer-events: none;
}
.hero-cine__poster {
  position: absolute; inset: 0; display: none; pointer-events: none;
  background: url("detailing-work.png") 62% center / cover no-repeat;
}
.hero-cine__bg::after { /* fallback poster tint while video loads */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(150deg, #16305f, #0b1a38);
  z-index: -1;
}
.hero-cine__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(11,20,40,.48) 0%, rgba(11,20,40,.28) 42%, rgba(11,20,40,.66) 100%);
}
.hero-cine__overlay::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(130% 80% at 50% 118%, rgba(42,188,180,.28), transparent 58%);
}
.hero-cine .wrap { position: relative; z-index: 2; }
.hero-cine__inner {
  max-width: 880px; margin-inline: auto; text-align: center; color: #fff;
  padding-block: clamp(48px, 7vh, 96px) clamp(72px, 10vh, 120px);
  animation: heroIn .9s var(--ease-out) both;
}
@keyframes heroIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .hero-cine__inner { animation: none; } }
.hero-cine .badge--glass {
  background: rgba(255,255,255,.12); color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.28);
  backdrop-filter: blur(6px); margin-bottom: 26px; white-space: nowrap;
}
.hero-cine .badge--glass .stars .ic { fill: var(--gold); }
.hero-cine h1 { color: #fff; font-size: clamp(2.5rem, 5vw, 4.2rem); line-height: 1.08; text-shadow: 0 2px 28px rgba(0,0,0,.4); }
.txt-grad { background: linear-gradient(100deg, #43E0D6, #2ABCB4 60%, #8FF0EA); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-cine .lead { color: rgba(255,255,255,.88); max-width: 600px; margin-inline: auto; text-shadow: 0 1px 14px rgba(0,0,0,.35); }
.hero-cine .hero-cta { justify-content: center; }
.hero-stats {
  display: flex; justify-content: center; align-items: center; flex-wrap: wrap;
  gap: clamp(14px, 3vw, 34px); margin-top: 40px;
  color: rgba(255,255,255,.92); font-size: .95rem; font-weight: 500;
}
.hero-stats .hs { display: inline-flex; align-items: center; gap: 9px; }
.hero-stats .hs b { font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; color: #fff; }
.hero-stats .hs .ic { width: 17px; height: 17px; color: var(--teal); }
.hero-stats .hs .stars .ic { width: 14px; height: 14px; fill: var(--gold); color: var(--gold); }
.hero-stats .sep { width: 1px; height: 26px; background: rgba(255,255,255,.22); }
.hero-scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 2;
  display: grid; place-items: center; gap: 6px; color: rgba(255,255,255,.7);
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
}
.hero-scroll .ic { width: 22px; height: 22px; animation: heroBob 1.8s var(--ease) infinite; }
@keyframes heroBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
@media (prefers-reduced-motion: reduce) { .hero-scroll .ic { animation: none; } }

/* Header overlaying the dark hero */
.site-header--overlay { background: transparent; backdrop-filter: none; border-bottom-color: transparent; }
.logo-light { display: none; }
.site-header--overlay:not(.scrolled) .logo-dark { display: none; }
.site-header--overlay:not(.scrolled) .logo-light { display: block; }
.site-header--overlay:not(.scrolled) .nav__links a { color: #fff; }
.site-header--overlay:not(.scrolled) .nav__links a:hover { background: rgba(255,255,255,.16); color: #fff; }
.site-header--overlay:not(.scrolled) .btn--outline { color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.45); }
.site-header--overlay:not(.scrolled) .btn--outline:hover { box-shadow: inset 0 0 0 1.5px #fff; color: #fff; }
.site-header--overlay:not(.scrolled) .nav__toggle { color: #fff; }
.site-header--overlay:not(.scrolled) .nav__phone { color: #fff; }
.site-header--overlay:not(.scrolled) .nav__phone .ic { color: #fff; }
.site-header--overlay:not(.scrolled) .nav__phone:hover { background: rgba(255,255,255,.16); color: #fff; }
@media (max-width: 860px) { .hero-cine { margin-top: -76px; } }
/* Mobile: play the video here too. The Ken Burns poster sits BEHIND it as a
   fallback — if a device blocks autoplay (iOS Low Power Mode / Data Saver) the
   poster stays visible; once the video plays it covers the poster. */
@media (max-width: 760px) {
  .hero-cine__bg .hero-cine__gif { display: block; object-position: 62% center; }
  .hero-cine__poster { display: block; animation: heroKenBurns 22s ease-in-out both; transform-origin: 60% 42%; }
}
@keyframes heroKenBurns { from { transform: scale(1.14); } to { transform: scale(1); } }
@media (prefers-reduced-motion: reduce) { .hero-cine__poster { animation: none; } }

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 1000px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
  .citygrid { grid-template-columns: repeat(2,1fr); }
  .tcar__card { flex-basis: calc((100% - 24px)/2); }
}
@media (max-width: 860px) {
  .nav__links, .nav__cta .btn { display: none; }
  .nav__toggle { display: grid; }
  .nav__cta .btn--pink.always { display: inline-flex; }
  .mnav .mnav__cta { color: var(--navy); font-weight: 600; }
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
  .cols-4.keep-2, .cols-3.keep-2 { grid-template-columns: 1fr 1fr; }
  .step { grid-template-columns: 1fr; gap: 12px; }
  .tcar__card { flex-basis: 100%; }
  .mnav.open { display: block; }
  .mnav {
    position: fixed; inset: 76px 0 0; background: var(--ice); z-index: 90;
    padding: 24px var(--gutter); overflow-y: auto;
    animation: slidein .3s var(--ease-out);
  }
  @keyframes slidein { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }
  .mnav a { display: block; padding: 16px 4px; font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; border-bottom: 1px solid var(--border); color: var(--navy); }
  .mnav .btn { margin-top: 24px; }
  .mnav .mnav__call {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    margin-top: 22px; padding: 16px; border-radius: 14px;
    background: var(--white); border: 1px solid var(--border-strong);
    font-size: 1.15rem; color: var(--navy);
  }
  .mnav .mnav__call .ic { width: 22px; height: 22px; color: var(--teal-dark); }
  .mnav .mnav__call:hover { background: var(--ice); }
  body.menu-open { overflow: hidden; }
}
@media (max-width: 560px) {
  .citygrid { grid-template-columns: 1fr; }
  .factbox dl { grid-template-columns: 1fr; gap: 2px 0; }
  .factbox dd { margin-bottom: 10px; }
  .btn { width: 100%; }
  .hero-cta .btn, .inline-cta .btn { width: auto; }
}

/* ===========================================================
   v2 — Modern enhancements (2026 refresh)
   =========================================================== */

/* Space Grotesk runs a touch wide — refine display rhythm */
.hero-cine h1, .section h1, .section h2 { letter-spacing: -0.04em; }
.kicker, .foot-col h5, .toc h5 { font-family: var(--font-body); }

/* ---------- Animated headline sheen ---------- */
.txt-grad {
  background: linear-gradient(100deg, #43E0D6, #2ABCB4 42%, #8FF0EA 70%, #43E0D6);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: grad-pan 7s linear infinite;
}
@keyframes grad-pan { to { background-position: 220% 0; } }
@media (prefers-reduced-motion: reduce) { .txt-grad { animation: none; } }

/* ---------- Hero refinements ---------- */
.hero-cine__inner h1 { margin-top: 4px; }
.hero-cine__bg .hero-cine__gif { animation: heroZoom 18s var(--ease) both; transform-origin: 60% 40%; }
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }
@media (prefers-reduced-motion: reduce) { .hero-cine__bg .hero-cine__gif { animation: none; } }
/* grain/vignette for cinematic depth */
.hero-cine__overlay::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 120% at 50% 30%, transparent 50%, rgba(8,16,34,.55) 100%);
}
.hero-trust {
  margin-top: 30px; display: inline-flex; align-items: center; gap: 14px;
  color: rgba(255,255,255,.7); font-size: .82rem; font-weight: 500;
}
.hero-trust b { color: #fff; font-weight: 700; }

/* ---------- Header click-to-call ---------- */
.nav__phone {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 14px; border-radius: var(--r-pill);
  font-weight: 600; font-size: .95rem; color: var(--navy);
  letter-spacing: -.01em; white-space: nowrap;
  transition: background .2s, color .2s;
}
.nav__phone .ic { width: 18px; height: 18px; color: var(--teal-dark); transition: color .2s; }
.nav__phone:hover { background: rgba(42,188,180,.12); color: var(--teal-dark); }
.nav__phone .nav__phone-lbl { color: var(--text-secondary); font-weight: 500; font-size: .78rem; }
.site-header--overlay:not(.scrolled) .nav__phone .nav__phone-lbl { color: rgba(255,255,255,.72); }
@media (max-width: 980px) { .nav__phone .nav__phone-lbl { display: none; } }
@media (max-width: 860px) {
  .nav__phone { padding: 0; width: 44px; height: 44px; justify-content: center; border-radius: 12px; }
  .nav__phone .nav__phone-num { display: none; }
  .nav__phone .ic { width: 22px; height: 22px; }
}

/* ---------- Hero social proof (Google stars) ---------- */
.hero-proof {
  display: inline-flex; align-items: center; gap: 11px; white-space: nowrap;
  padding: 9px 17px 9px 14px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.24);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  color: rgba(255,255,255,.94); font-size: .92rem; font-weight: 500;
  transition: background .2s, transform .2s;
}
.hero-proof:hover { background: rgba(255,255,255,.17); transform: translateY(-1px); }
.hero-proof .greview__logo { width: 19px; height: 19px; flex: none; }
.hero-proof__stars { display: inline-flex; gap: 2px; }
.hero-proof__stars .ic { width: 15px; height: 15px; color: var(--gold); fill: var(--gold); }
.hero-proof__txt b { font-weight: 800; color: #fff; }
.hero-proof__div { width: 1px; height: 16px; background: rgba(255,255,255,.28); }

/* ---------- PPF thickness callout ---------- */
.thick-callout {
  position: relative; overflow: hidden;
  background: repeating-linear-gradient(125deg, rgba(255,255,255,.04) 0 1px, transparent 1px 26px), linear-gradient(150deg, var(--navy), var(--navy-deep));
  border-radius: var(--r-lg); padding: clamp(22px, 3vw, 30px); color: #fff;
}
.thick-callout::before {
  content: ""; position: absolute; width: 280px; height: 280px; top: -150px; right: -110px;
  background: radial-gradient(circle, rgba(42,188,180,.32), transparent 68%); pointer-events: none;
}
.thick-callout::after {
  content: ""; position: absolute; left: -46px; bottom: -64px; width: 240px; height: 240px;
  transform: rotate(-8deg); opacity: .06; pointer-events: none; z-index: 0;
  background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2 2 7l10 5 10-5-10-5z M2 12l10 5 10-5 M2 17l10 5 10-5'/%3E%3C/svg%3E");
}
.thick-callout__top { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; position: relative; }
.thick-callout__num { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.8rem, 3.4vw, 2.4rem); letter-spacing: -.03em; line-height: 1; white-space: nowrap; }
.thick-callout__unit { color: rgba(255,255,255,.7); font-weight: 500; white-space: nowrap; }
.thick-callout p { color: rgba(255,255,255,.84); margin-top: 12px; font-size: .98rem; line-height: 1.6; position: relative; }
.thick-callout p strong { color: #fff; }

/* wide, full-width variant: text left, comparison right */
.thick-callout--wide { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(26px, 4vw, 56px); align-items: center; }
.thick-callout--wide .thick-callout__top { margin-top: 0; }
.thick-callout--wide .thick-compare { margin-top: 0; }
@media (max-width: 760px) { .thick-callout--wide { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- Contact-led pricing (anchor + factors + CTA) ---------- */
.priceanchor { max-width: 580px; margin: clamp(22px,3vw,34px) auto 0; }
.priceanchor__row { display: flex; align-items: center; justify-content: center; gap: clamp(22px,5vw,56px); }
.priceanchor__item { display: flex; flex-direction: column; gap: 5px; text-align: center; }
.priceanchor__lbl { font-size: .82rem; color: var(--text-secondary); font-weight: 600; letter-spacing: .02em; }
.priceanchor__amt { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.55rem,3vw,2.05rem); color: var(--navy); letter-spacing: -.02em; line-height: 1; }
.priceanchor__divider { width: 1px; align-self: stretch; background: var(--border); }
.priceanchor__note { margin-top: 14px; font-size: .85rem; color: var(--text-secondary); text-align: center; }

.contactprice { margin-top: clamp(28px,3.5vw,42px); display: flex; flex-wrap: wrap; gap: clamp(20px,3vw,40px); align-items: center; justify-content: space-between; background: linear-gradient(150deg,#EAF0FE,#F4F7FF); border: .5px solid var(--border); border-radius: var(--r-lg); padding: clamp(24px,3vw,38px); }
.contactprice__body { flex: 1 1 320px; }
.contactprice__body h3 { font-size: clamp(1.2rem,2.2vw,1.55rem); letter-spacing: -.02em; }
.contactprice__body > p { color: var(--text-secondary); margin-top: 8px; max-width: 50ch; }
.contactprice__link { margin-top: 13px; }
.contactprice__actions { display: flex; flex-direction: column; gap: 12px; flex: 0 0 auto; }
@media (max-width: 600px) { .contactprice__actions { width: 100%; } .contactprice__actions .btn { width: 100%; justify-content: center; } }

.btn--ghost { background: transparent; color: var(--navy); box-shadow: inset 0 0 0 1.5px var(--border-strong); }
.btn--ghost:hover { background: #fff; box-shadow: inset 0 0 0 1.5px var(--navy); transform: translateY(-1px); }

/* campaign highlight cards in the price article */
.campaign-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; margin: 22px 0 8px; }
.campaign-card { position: relative; background: var(--white); border: .5px solid var(--border); border-radius: var(--r-md); padding: 22px 22px 24px; box-shadow: var(--shadow-sm); }
.campaign-card__tag { display: inline-flex; align-items: center; gap: 6px; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--teal-dark); background: rgba(42,188,180,.12); padding: 5px 10px; border-radius: var(--r-pill); }
.campaign-card h4 { margin-top: 12px; font-size: 1.05rem; }
.campaign-card__price { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--navy); letter-spacing: -.02em; margin-top: 6px; }
.campaign-card__price small { font-size: .8rem; color: var(--text-secondary); font-weight: 500; }
.campaign-card p { color: var(--text-secondary); font-size: .9rem; margin-top: 8px; }
/* tangible comparison — vertical bars (paint vs film) */
.thick-compare { margin-top: 22px; position: relative; }
.tc-bars { display: flex; align-items: flex-end; justify-content: center; gap: clamp(28px, 7vw, 64px); }
.tc-col { display: flex; flex-direction: column; align-items: center; flex: 0 1 150px; }
.tc-stack { width: 100%; max-width: 132px; border-radius: 6px 6px 3px 3px; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 10px 24px -10px rgba(0,0,0,.55); }
.tc-stack--ppf { position: relative; background: linear-gradient(125deg, #43E0D6, var(--teal) 52%, #1f8e87); }
.tc-stack--ppf::after { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, transparent 38%, rgba(255,255,255,.38) 50%, transparent 62%); }
.tc-seg { display: block; width: 100%; }
.tc-val { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; letter-spacing: -.02em; color: rgba(255,255,255,.86); margin-top: 14px; }
.tc-val--hi { color: #fff; }
.tc-cap { font-size: .78rem; line-height: 1.35; color: rgba(255,255,255,.6); margin-top: 3px; text-align: center; }
.tc-cap--hi { color: var(--teal); font-weight: 700; }

/* ---------- PPF finish cards ---------- */
.finish-card { background: var(--white); border: .5px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.finish-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.finish-swatch { position: relative; height: 132px; overflow: hidden; }
.finish-swatch__tag { position: absolute; left: 14px; bottom: 12px; z-index: 2; font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.9); }
.finish-swatch--gloss { background: linear-gradient(125deg, #f4f8fc 0%, #d4dfed 34%, #b2c2d6 50%, #e9eff8 78%, #ffffff 100%); }
.finish-swatch--gloss .finish-swatch__tag { color: var(--navy); text-shadow: 0 1px 2px rgba(255,255,255,.6); }
.finish-swatch--gloss::after { content: ""; position: absolute; inset: 0; background: linear-gradient(112deg, transparent 30%, rgba(255,255,255,.7) 50%, transparent 64%); }
.finish-swatch--matte { background: linear-gradient(125deg, #3a3f46, #23262b 55%, #16181c); }
.finish-swatch--color { background: linear-gradient(125deg, #1f9a8c 0%, #157f9c 48%, #103f78 100%); }
.finish-swatch--color::after { content: ""; position: absolute; inset: 0; background: linear-gradient(112deg, transparent 42%, rgba(255,255,255,.18) 52%, transparent 64%); }
.finish-card__body { padding: 18px 20px 22px; }

/* ---------- Marquee trust strip ---------- */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee__track {
  display: flex; align-items: center; gap: clamp(44px, 7vw, 90px);
  width: max-content; padding-block: 4px;
  animation: marquee 32s linear infinite;
  will-change: transform; transform: translateZ(0); backface-visibility: hidden;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee .brand-img { height: 36px; width: auto; flex: none; object-fit: contain; }
.marquee .brand-img--shield { height: 54px; }
@keyframes marquee { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }
/* A slow linear logo ticker is gentle, non-flashing motion — keep it running even with
   reduced-motion, but slow it down so it never feels aggressive. */
@media (prefers-reduced-motion: reduce) { .marquee__track { animation-duration: 48s; } }

/* ---------- Count-up stat band ---------- */
.statband { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 44px); }
.statband .st { text-align: center; }
.statband .st__num { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.6rem, 5vw, 4rem); line-height: 1; letter-spacing: -0.04em; color: var(--navy); }
.statband .st__num .u { color: var(--teal-dark); }
.statband .st__lbl { color: var(--text-secondary); font-size: .95rem; margin-top: 10px; font-weight: 500; }

/* ---------- Fact band ("i tall" — clean stat row, no box) ---------- */
.factband {
  position: relative;
  background: none; border: 0; border-radius: 0;
  padding: clamp(6px, 1.5vw, 16px) 0; box-shadow: none;
}
.factband::before { content: none; }
.factband__head { text-align: center; margin-bottom: clamp(34px, 4.2vw, 54px); position: relative; z-index: 1; }
.factband__head .kicker { color: var(--teal-dark); justify-content: center; }
.factband__head .kicker::before { background: var(--teal); }
.factband__head h2 { color: var(--navy-deep); margin-top: 12px; letter-spacing: -.02em; }
.factband__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.factstat { text-align: center; padding: 6px clamp(16px, 2.4vw, 34px); position: relative; }
.factstat + .factstat::before { content: none; }
.factstat__ic {
  width: 30px; height: 30px; margin: 0 auto 16px; border-radius: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: none; box-shadow: none; color: var(--teal-dark);
}
.factstat__ic svg { width: 28px; height: 28px; }
.factstat__num {
  font-family: var(--font-display); font-weight: 700; line-height: 1;
  font-size: clamp(2.7rem, 5vw, 3.7rem); letter-spacing: -.04em; color: var(--navy-deep);
  font-feature-settings: "tnum" 1; font-variant-numeric: tabular-nums;
}
.factstat__num .u { color: rgba(14,33,72,.4); font-size: .4em; font-weight: 600; margin-left: .2em; letter-spacing: 0; }
.factstat__lbl {
  color: var(--text-secondary); font-size: .72rem; margin-top: 16px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .13em;
}
.factstat__stars { display: inline-flex; gap: 3px; margin-top: 12px; color: var(--gold); }
.factstat__stars svg { width: 15px; height: 15px; fill: currentColor; stroke: currentColor; }

/* Slim, low-key variant (index): oblong band, two inks only, no icons */
.factband--slim { padding: 0; }
.factband--slim .factband__grid { max-width: 680px; margin-inline: auto; align-items: center; }
.factband--slim .factstat { padding: 4px clamp(14px, 2.6vw, 30px); }
.factband--slim .factstat + .factstat::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  height: 38px; width: 1px; background: var(--border-strong);
}
.factband--slim .factstat__ic, .factband--slim .factstat__stars { display: none; }
.factband--slim .factstat__num {
  font-size: clamp(1.55rem, 2.6vw, 2.05rem); letter-spacing: -.03em; color: var(--navy-deep);
}
.factband--slim .factstat__num .u { color: var(--text-secondary); font-size: .5em; margin-left: .14em; }
.factband--slim .factstat__lbl {
  color: var(--text-secondary); font-size: .66rem; margin-top: 7px;
  font-weight: 600; letter-spacing: .1em;
}
@media (max-width: 680px) {
  .factband--slim .factband__grid { grid-template-columns: 1fr 1fr; gap: 22px 0; }
}
@media (max-width: 680px) {
  .factband__grid { grid-template-columns: 1fr 1fr; gap: 30px 0; }
  .factstat:nth-child(2)::before, .factstat:nth-child(4)::before { display: none; }
  .factstat:nth-child(3)::after, .factstat:nth-child(4)::after {
    content: ""; position: absolute; top: 0; left: 14%; width: 72%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(14,33,72,.14), transparent);
  }
}
.section--navy .statband .st__num { color: #fff; }
.section--navy .statband .st__num .u { color: var(--teal); }
.section--navy .statband .st__lbl { color: #AEC0E6; }
@media (max-width: 760px) { .statband { grid-template-columns: 1fr 1fr; gap: 32px 20px; } }

/* ---------- PPF vs Coating comparison ---------- */
.vs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 2.5vw, 28px); }
.vs-card {
  position: relative; overflow: hidden; border-radius: var(--r-xl);
  padding: clamp(28px, 3.4vw, 44px); border: .5px solid var(--border);
  background: var(--white); box-shadow: var(--shadow-md);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.vs-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.vs-card--ppf { background: linear-gradient(165deg, #fff, #F4F7FF); }
.vs-card--coat { background: linear-gradient(165deg, #fff, #EEFBFA); border-color: #BCEDE9; }
.vs-card__top { display: flex; align-items: center; gap: 14px; }
.vs-card h3 { font-size: clamp(1.5rem, 2.2vw, 1.9rem); }
.vs-card .lead { font-size: 1.04rem; margin-top: 14px; }
.vs-tagline { font-size: .82rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--teal-dark); }
.vs-card--ppf .vs-tagline { color: var(--navy); }
.vs-attrs { display: grid; gap: 0; margin-top: 22px; border-top: 1px solid var(--border); }
.vs-attrs .row { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--border); font-size: .95rem; }
.vs-attrs .row .k { color: var(--text-secondary); font-weight: 500; }
.vs-attrs .row .v { color: var(--navy); font-weight: 600; text-align: right; }
.vs-best { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; font-weight: 600; font-size: .92rem; color: var(--navy); background: rgba(42,188,180,.1); padding: 10px 16px; border-radius: var(--r-pill); }
.vs-best .ic { width: 16px; height: 16px; color: var(--teal-dark); }
.vs-both { margin-top: 26px; text-align: center; }
.vs-both .pill { display: inline-flex; align-items: center; gap: 10px; padding: 14px 24px; border-radius: var(--r-pill); background: var(--navy-deep); color: #fff; font-weight: 600; box-shadow: var(--shadow-md); }
.vs-both .pill .ic { width: 18px; height: 18px; color: var(--teal); }
@media (max-width: 760px) { .vs-grid { grid-template-columns: 1fr; } }

/* ---------- PPF vs Coating — clean comparison table ---------- */
.vscmp {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl);
  overflow: hidden; box-shadow: 0 24px 60px -38px rgba(14,33,72,.40);
  margin-top: clamp(8px, 1.5vw, 18px);
}
.vscmp__table { width: 100%; border-collapse: collapse; table-layout: fixed; }
.vscmp__table th, .vscmp__table td { padding: 15px clamp(12px, 2vw, 22px); vertical-align: middle; }
.vscmp__corner { width: 28%; text-align: center; }
.vscmp__vs {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%; background: var(--navy-deep);
  color: #fff; font-family: var(--font-display); font-weight: 700; font-size: .82rem;
}
.vscmp__h { width: 36%; text-align: center; color: #fff; vertical-align: bottom; padding: 24px 16px 20px; }
.vscmp__h--ppf { background: linear-gradient(160deg, #2a539b, var(--navy-deep)); }
.vscmp__h--coat { background: linear-gradient(160deg, var(--teal), var(--teal-dark)); }
.vscmp__ic {
  display: inline-flex; width: 46px; height: 46px; border-radius: 13px;
  align-items: center; justify-content: center; margin-bottom: 12px;
  background: rgba(255,255,255,.16); box-shadow: inset 0 0 0 1px rgba(255,255,255,.28);
}
.vscmp__ic .ic { width: 24px; height: 24px; }
.vscmp__name { display: block; font-family: var(--font-display); font-weight: 700; font-size: clamp(1.05rem, 1.6vw, 1.28rem); line-height: 1.15; }
.vscmp__tag { display: block; font-size: .76rem; opacity: .82; margin-top: 4px; font-weight: 500; }
.vscmp__table tbody tr { border-top: 1px solid var(--border); }
.vscmp__table tbody tr:nth-child(even) { background: #FAFBFE; }
.vscmp__table tbody th { text-align: left; font-weight: 600; color: var(--text-secondary); font-size: .9rem; }
.vscmp__table tbody td { text-align: center; color: var(--navy); font-weight: 600; font-size: .95rem; }
.vscmp__table td + td, .vscmp__table thead th + th, .vscmp__table tbody th + td, .vscmp__table tfoot td + td { border-left: 1px solid var(--border); }
.vscmp__price { font-family: var(--font-display); font-size: 1.12rem !important; color: var(--navy-deep) !important; }
.vyes, .vno { display: inline-flex; width: 20px; height: 20px; border-radius: 50%; align-items: center; justify-content: center; vertical-align: -5px; margin-right: 4px; }
.vyes { background: rgba(42,188,180,.14); }
.vno { background: rgba(14,33,72,.06); }
.vyes .ic { width: 13px; height: 13px; color: var(--teal-dark); }
.vno .ic { width: 12px; height: 12px; color: #9AA7C2; }
.vscmp__table tfoot td { padding: 18px clamp(12px, 2vw, 22px) 22px; border-top: 1px solid var(--border); }
@media (max-width: 620px) {
  .vscmp__table th, .vscmp__table td { padding: 11px 9px; }
  .vscmp__corner { width: 23%; }
  .vscmp__name { font-size: .9rem; }
  .vscmp__tag { display: none; }
  .vscmp__ic { width: 34px; height: 34px; margin-bottom: 8px; }
  .vscmp__ic .ic { width: 18px; height: 18px; }
  .vscmp__vs { width: 30px; height: 30px; font-size: .72rem; }
  .vscmp__table tbody th { font-size: .8rem; }
  .vscmp__table tbody td { font-size: .8rem; }
  .vscmp__price { font-size: .9rem !important; }
}

/* ---------- PPF/Coating/Wrap/Voks — star comparison ---------- */
.starcmp { max-width: 940px; margin: clamp(12px, 2vw, 26px) auto 0; }
.starcmp__scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: thin; }
.starcmp__t { width: 100%; border-collapse: collapse; table-layout: fixed; min-width: 620px; }
.starcmp__t th, .starcmp__t td { padding: clamp(14px, 1.7vw, 19px) clamp(8px, 1.4vw, 16px); }
.starcmp__t thead th, .starcmp__t thead td { vertical-align: bottom; text-align: center; padding-top: 0; }
.starcmp__corner { width: 27%; }
.starcmp__name { display: block; font-family: var(--font-display); font-weight: 700; font-size: clamp(.98rem, 1.5vw, 1.18rem); color: var(--navy-deep); letter-spacing: -.01em; line-height: 1.12; }
.starcmp__sub { display: block; margin-top: 5px; font-size: .72rem; color: var(--text-secondary); font-weight: 500; }
.starcmp__t tbody tr { border-top: 1px solid var(--border); }
.starcmp__t tbody tr:last-child { border-bottom: 1px solid var(--border); }
.starcmp__t tbody th { width: 27%; text-align: left; font-weight: 600; color: var(--navy); font-size: clamp(.86rem, 1.3vw, .98rem); }
.starcmp__t tbody td { text-align: center; }
.starcmp .stars { display: inline-flex; gap: 3px; }
.starcmp .st .ic { width: 16px; height: 16px; color: #DDE3F0; }
.starcmp .st .ic svg { fill: currentColor; stroke: currentColor; }
.starcmp .st--on .ic { color: var(--gold); }
.starcmp__note { margin-top: 18px; font-size: .82rem; color: var(--text-secondary); text-align: center; text-wrap: pretty; }
@media (max-width: 560px) {
  .starcmp .st .ic { width: 13px; height: 13px; }
  .starcmp__name { font-size: .92rem; }
  .starcmp__sub { font-size: .66rem; }
}

/* ---------- PPF vs Coating — Apple-style comparison ---------- */
.appcmp { max-width: 900px; margin: clamp(12px, 2vw, 26px) auto 0; }
.appcmp__t { width: 100%; border-collapse: collapse; table-layout: fixed; }
.appcmp__t th, .appcmp__t td { padding: clamp(15px, 1.9vw, 21px) clamp(12px, 2vw, 26px); }
.appcmp__t thead th, .appcmp__t thead td { padding-top: 0; vertical-align: bottom; text-align: center; }
.appcmp__corner { width: 36%; }
.appcmp__pname { display: block; font-family: var(--font-display); font-weight: 700; font-size: clamp(1.15rem, 1.9vw, 1.5rem); color: var(--navy-deep); letter-spacing: -.02em; line-height: 1.1; }
.appcmp__pdesc { display: block; margin-top: 7px; font-size: .78rem; color: var(--text-secondary); font-weight: 500; }
.appcmp__t tbody tr { border-top: 1px solid var(--border); }
.appcmp__t tbody tr:last-child { border-bottom: 1px solid var(--border); }
.appcmp__t tbody th { width: 36%; text-align: left; font-weight: 600; color: var(--navy); font-size: clamp(.9rem, 1.4vw, 1rem); }
.appcmp__t tbody td { text-align: center; color: var(--navy); font-size: .95rem; font-weight: 500; vertical-align: middle; }
.appcmp__v { display: inline-flex; align-items: center; gap: 8px; justify-content: center; }
.acy { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 50%; background: rgba(42,188,180,.12); flex: none; }
.acy .ic { width: 14px; height: 14px; color: var(--teal-dark); }
.acn { color: var(--border-strong); font-size: 1.15rem; line-height: 1; }
.appcmp__cta { margin-top: clamp(28px, 4vw, 44px); }
@media (max-width: 560px) {
  .appcmp__t th, .appcmp__t td { padding: 13px 8px; }
  .appcmp__corner, .appcmp__t tbody th { width: 30%; }
  .appcmp__t tbody th { font-size: .82rem; }
  .appcmp__t tbody td { font-size: .82rem; }
  .appcmp__pname { font-size: 1.05rem; }
  .appcmp__pdesc { font-size: .68rem; }
  .appcmp__v { gap: 5px; flex-direction: column; }
}

/* combo banner */
.vs-combo {
  margin-top: clamp(20px, 3vw, 30px); display: flex; align-items: center; justify-content: space-between;
  gap: clamp(18px, 3vw, 32px); flex-wrap: wrap; color: #fff; border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--navy-deep), #16407e);
  padding: clamp(24px, 3.4vw, 40px); box-shadow: 0 24px 60px -38px rgba(14,33,72,.5);
}
.vs-combo__txt { flex: 1 1 340px; }
.vs-combo h3 { color: #fff; margin-top: 6px; font-size: clamp(1.3rem, 2vw, 1.7rem); }
.vs-combo p { color: #C3D2F0; margin-top: 8px; max-width: 560px; }
.vs-combo__cta { flex: none; }
@media (max-width: 620px) { .vs-combo__cta { width: 100%; } }

/* ---------- Feature split (image + content, premium) ---------- */
.feature-media { position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.feature-media img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4/3; transition: transform .7s var(--ease); }
.feature-media:hover img { transform: scale(1.05); }
.feature-media__chip {
  position: absolute; left: 18px; bottom: 18px; z-index: 2;
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  padding: 11px 17px; border-radius: var(--r-pill); font-weight: 600; font-size: .9rem; color: var(--navy);
  box-shadow: var(--shadow-md);
}
.feature-media__chip .ic { width: 17px; height: 17px; color: var(--teal-dark); }

/* ---------- Section eyebrow centered helper ---------- */
.sec-head.center .kicker { justify-content: center; }

/* ---------- Photo CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden; border-radius: var(--r-xl);
  background: var(--white); isolation: isolate;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  min-height: clamp(340px, 34vw, 440px);
  display: flex; align-items: center;
}
.cta-band__img {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('cta-car.png');
  background-size: cover; background-position: center right; background-repeat: no-repeat;
}
.cta-band__img::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(70% 120% at 6% 110%, rgba(31,182,173,.16), transparent 56%),
    linear-gradient(90deg, #FFFFFF 0%, rgba(255,255,255,.95) 32%, rgba(255,255,255,.62) 56%, rgba(255,255,255,.14) 84%, rgba(255,255,255,0) 100%);
}
.cta-band__body {
  position: relative; z-index: 1;
  max-width: 600px; padding: clamp(38px, 5vw, 66px);
}
.cta-band__title {
  color: var(--navy); font-size: clamp(2.05rem, 3.6vw, 3.05rem); line-height: 1.07; letter-spacing: -.015em;
}
.cta-band__title .ln2 { display: block; color: var(--pink); }
.cta-band__sub { color: var(--text-secondary); margin-top: 18px; font-size: 1.08rem; line-height: 1.55; max-width: 430px; }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.cta-band__book { background: var(--navy); color: #fff; box-shadow: inset 0 0 0 1px rgba(255,255,255,.18); }
.cta-band__book:hover { background: var(--navy-deep); }
.cta-band__points {
  display: flex; flex-wrap: wrap; gap: 11px 26px; margin: 30px 0 0; padding: 0;
}
.cta-band__points li {
  list-style: none; display: flex; align-items: center; gap: 9px;
  color: var(--navy); font-size: .95rem; font-weight: 500;
}
.cta-band__points li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--pink); flex: none;
}
@media (max-width: 860px) {
  .cta-band__img::after { background: linear-gradient(180deg, rgba(255,255,255,.82) 0%, rgba(255,255,255,.94) 100%); }
  .cta-band__body { max-width: none; }
}

/* ---------- Pill nav for service pages ---------- */
.pillnav { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.pillnav a { padding: 11px 20px; border-radius: var(--r-pill); background: var(--white); border: 1px solid var(--border); font-weight: 600; font-size: .95rem; color: var(--navy); transition: all .2s var(--ease); }
.pillnav a:hover { border-color: var(--teal); color: var(--teal-dark); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* ---------- Glass benefit cards (coating page) ---------- */
.bcard { position: relative; padding: 28px; border-radius: var(--r-lg); background: var(--white); border: .5px solid var(--border); box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease); overflow: hidden; }
.bcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.bcard__glow { position: absolute; inset: auto -40px -40px auto; width: 120px; height: 120px; border-radius: 50%; background: radial-gradient(circle, rgba(42,188,180,.16), transparent 70%); }

/* ---------- Refined card hover glint ---------- */
.card--hover { isolation: isolate; }
.services .card::after, .vs-card::before {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0;
  background: radial-gradient(80% 60% at 50% 0%, rgba(42,188,180,.08), transparent 70%);
  transition: opacity .4s var(--ease); pointer-events: none; border-radius: inherit;
}
.services .card:hover::after { opacity: 1; }

/* ---------- Magnetic CTA shine ---------- */
.btn--pink::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; overflow: hidden;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform .7s var(--ease); pointer-events: none;
}
.btn--pink:hover::before { transform: translateX(120%); }

/* ---------- Process timeline (vertical, animated) ---------- */
.timeline { position: relative; display: grid; gap: 0; }
.timeline::before { content: ""; position: absolute; left: 25px; top: 12px; bottom: 12px; width: 2px; background: linear-gradient(var(--teal), var(--border)); }
.tl-step { position: relative; display: grid; grid-template-columns: 52px 1fr; gap: 22px; padding: 14px 0 28px; }
.tl-step:last-child { padding-bottom: 0; }
.tl-dot { position: relative; z-index: 1; width: 52px; height: 52px; border-radius: 16px; background: var(--white); border: .5px solid var(--border); box-shadow: var(--shadow-sm); display: grid; place-items: center; color: var(--teal-dark); font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; }
.tl-step h4 { margin-bottom: 4px; }

/* ---------- Sticky CTA bar (mobile) — dual action: call + quote ---------- */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; display: none; gap: 10px; padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom)); background: rgba(255,255,255,.94); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-top: 1px solid var(--border); box-shadow: 0 -10px 30px -18px rgba(14,33,72,.4); transform: translateY(110%); transition: transform .35s var(--ease); }
.sticky-cta.show { transform: none; }
.sticky-cta .btn { width: 100%; min-height: 50px; }
.sticky-cta--dual { display: none; }
.sticky-cta--dual .sticky-cta__call { flex: 0 0 38%; }
.sticky-cta--dual .sticky-cta__quote { flex: 1 1 auto; }
.sticky-cta .btn--call { background: var(--white); color: var(--navy); box-shadow: inset 0 0 0 1.5px var(--border-strong); }
.sticky-cta .btn--call .ic { color: var(--teal-dark); }
.sticky-cta .btn--call:hover { box-shadow: inset 0 0 0 1.5px var(--teal); }
@media (max-width: 860px) {
  .sticky-cta, .sticky-cta--dual { display: flex; align-items: center; }
  body { padding-bottom: 80px; }
}
@media (max-width: 860px) and (display-mode: standalone) { body { padding-bottom: 80px; } }


/* ---------- Floating quiz launcher (site-wide lead driver) ---------- */
.quiz-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 85;
  width: min(342px, calc(100vw - 32px));
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  transform: translateY(150%);
  opacity: 0;
  transition: transform .5s var(--ease), opacity .4s var(--ease);
  overflow: hidden;
}
.quiz-fab.show { transform: none; opacity: 1; }
.quiz-fab::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--pink));
}
.quiz-fab__link {
  display: flex; align-items: center; gap: 13px;
  padding: 16px 42px 16px 15px;
}
.quiz-fab__icon {
  flex: none; width: 46px; height: 46px; border-radius: 13px;
  display: grid; place-items: center;
  background: linear-gradient(145deg, #E7FAF8, #D2F2EF);
  color: var(--teal-dark); box-shadow: inset 0 0 0 1px #C6ECE8;
  position: relative;
}
.quiz-fab__icon .ic { width: 24px; height: 24px; }
.quiz-fab__icon::after {
  content: ""; position: absolute; top: -3px; right: -3px;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--pink); box-shadow: 0 0 0 3px var(--white);
}
.quiz-fab__title {
  display: block; font-family: var(--font-display); font-weight: 700;
  font-size: 1rem; line-height: 1.18; color: var(--navy); letter-spacing: -.01em;
  transition: color .2s var(--ease);
}
.quiz-fab__sub {
  display: block; font-size: .82rem; color: var(--text-secondary);
  margin-top: 3px; line-height: 1.35;
}
.quiz-fab__arrow {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  display: none; place-items: center;
  background: var(--ice); color: var(--teal-dark);
  transition: background .2s var(--ease), color .2s var(--ease), transform .25s var(--ease);
}
.quiz-fab__arrow .ic { width: 17px; height: 17px; }
.quiz-fab__link:hover .quiz-fab__title { color: var(--teal-dark); }
.quiz-fab__link:hover .quiz-fab__arrow { background: var(--teal); color: #fff; transform: translateX(3px); }
.quiz-fab__close {
  position: absolute; top: 8px; right: 8px;
  width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center;
  background: transparent; border: 0; color: var(--text-secondary);
  cursor: pointer; transition: background .2s, color .2s;
}
.quiz-fab__close:hover { background: var(--ice); color: var(--navy); }
.quiz-fab__close .ic { width: 16px; height: 16px; }

@media (min-width: 861px) {
  .quiz-fab__arrow { display: grid; }
  .quiz-fab__link { padding-right: 15px; }
}
@media (prefers-reduced-motion: no-preference) {
  .quiz-fab__icon::after { animation: quizFabPulse 2.1s ease-in-out infinite; }
}
@keyframes quizFabPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: .65; }
}
@media (max-width: 860px) {
  .quiz-fab {
    right: 10px; left: 10px; width: auto;
    bottom: calc(78px + env(safe-area-inset-bottom));
    border-radius: 14px;
  }
  .quiz-fab__link { padding: 11px 38px 11px 11px; gap: 11px; }
  .quiz-fab__icon { width: 40px; height: 40px; border-radius: 11px; }
  .quiz-fab__icon .ic { width: 21px; height: 21px; }
  .quiz-fab__title { font-size: .92rem; }
  .quiz-fab__sub { font-size: .78rem; }
}


/* ---------- Lead popup ---------- */
.lead-overlay { position: fixed; inset: 0; z-index: 2000; display: none; align-items: center; justify-content: center; padding: 20px; background: rgba(8,15,35,.55); backdrop-filter: blur(4px); }
.lead-overlay.is-open { display: flex; animation: leadFade .2s ease; }
@keyframes leadFade { from { opacity: 0 } to { opacity: 1 } }
.lead-card { position: relative; width: 100%; max-width: 460px; background: var(--white,#fff); border-radius: var(--r-xl,24px); box-shadow: 0 40px 80px -24px rgba(8,15,35,.5); padding: clamp(26px,4vw,40px); max-height: calc(100vh - 40px); overflow-y: auto; animation: leadPop .26s cubic-bezier(.2,.8,.2,1); }
@keyframes leadPop { from { opacity:0; transform: translateY(14px) scale(.98) } to { opacity:1; transform:none } }
.lead-close { position: absolute; top: 12px; right: 14px; width: 38px; height: 38px; border-radius: 50%; border: 0; background: transparent; font-size: 26px; line-height: 1; color: var(--text-secondary); cursor: pointer; display: grid; place-items: center; }
.lead-close:hover { background: var(--ice); color: var(--navy); }
.lead-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 600; color: var(--navy); }
.lead-eyebrow .stars { color: var(--gold); }
.lead-panel--form h2, .lead-panel--ok h2 { margin-top: 12px; font-size: clamp(1.5rem,3.4vw,1.9rem); line-height: 1.12; }
.lead-sub { color: var(--text-secondary); margin-top: 8px; font-size: .96rem; line-height: 1.5; }
.lead-form { margin-top: 18px; display: grid; gap: 13px; }
.lead-form .btn--lg { margin-top: 4px; }
.lead-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.lead-fine { display: flex; align-items: center; justify-content: center; gap: 7px; color: var(--text-secondary); font-size: .78rem; margin-top: 2px; text-align: center; }
.lead-fine .ic { width: 14px; height: 14px; color: var(--teal-dark); flex: none; }
.lead-err { display: none; color: var(--pink-dark,#b01f6e); font-size: .8rem; margin-top: 4px; }
.field.has-err .input, .field.has-err .select { border-color: var(--pink,#ff2d9b); box-shadow: 0 0 0 3px rgba(255,45,155,.12); }
.field.has-err .lead-err { display: block; }
.lead-panel--ok { text-align: center; padding: 10px 0; }
.lead-panel--ok .success-ring { margin: 0 auto 18px; }
@media (max-width: 420px) { .lead-grid { grid-template-columns: 1fr; } }

/* ===========================================================
   MOBILE PASS (95% of traffic) — thorough audit fixes
   =========================================================== */
@media (max-width: 760px) {
  /* 1) Collapse EVERY inline/utility 2–3 col grid to a single column.
        Inline grid-template-columns needs !important to be overridden. */
  .grid[style*="grid-template-columns"],
  .grid.cols-2, .grid.cols-3, .grid.cols-4 { grid-template-columns: 1fr !important; }
  /* keep deliberate 2-up pairs (stats etc.) as 2 cols */
  .grid.keep-2[style*="grid-template-columns"],
  .cols-2.keep-2, .cols-3.keep-2, .cols-4.keep-2 { grid-template-columns: 1fr 1fr !important; }

  /* 2) Contain decorative blobs so they never create horizontal scroll */
  .blob { max-width: 70vw; max-height: 70vw; filter: blur(50px); }

  /* 3) Tap targets: header CTA + small buttons reach 44px */
  .nav__cta .btn--sm.always { min-height: 44px; padding-inline: 18px; }
  .btn--sm { min-height: 42px; }

  /* 4) Comfortable reading sizes on small screens */
  .kicker { font-size: .8rem; }
  body { font-size: 16.5px; }

  /* 5) City price tabs scroll horizontally instead of squashing */
  .citytabs { display: flex; flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; gap: 8px; padding-bottom: 4px; }
  .citytabs::-webkit-scrollbar { display: none; }
  .citytab { flex: 0 0 auto; }

  /* 6) Section vertical rhythm: tighten so content isn't lost in whitespace */
  .section { padding-block: clamp(44px, 9vw, 72px); }

  /* 7) Service cards: single column on phones so copy is readable (no cramped 2-up) */
  .grid.services.keep-2,
  .grid.feat-cards.keep-2 { grid-template-columns: 1fr !important; gap: 16px !important; }
  .grid.services .card,
  .grid.feat-cards .card { display: flex; flex-direction: column; }

  /* 8) Crisp separation between adjacent same-tone light sections */
  .section--white + .section--white,
  .section--ice + .section--ice { border-top: 1px solid var(--border); }
}

@media (max-width: 560px) {
  /* article/byline meta + small labels readable */
  .toc h5, .crumbs, .art-meta, .meta-row { font-size: .82rem; }
  /* full-width primary buttons already handled; keep hero CTAs auto */
  .cta-band__actions .btn { width: 100%; }
  /* price tables: allow horizontal scroll, never overflow the page */
  .pmatrix { font-size: .9rem; }
  .pmatrix th, .pmatrix td { padding-inline: 10px; }

  /* value cards: single column on phones so paragraphs don't break into 1–2 words */
  .value-cards.keep-2 { grid-template-columns: 1fr !important; gap: 14px !important; }

  /* Systemic: any 3- or 4-up card grid with real paragraph cards goes single
     column on phones (stat grids using .muted-card / .stat__num stay 2-up). */
  .grid.cols-2.keep-2:has(> .card p),
  .grid.cols-3.keep-2:has(> .card p),
  .grid.cols-4.keep-2:has(> .card p),
  .grid.cols-2.keep-2:has(> a.card p),
  .grid.cols-3.keep-2:has(> a.card p),
  .grid.cols-4.keep-2:has(> a.card p) { grid-template-columns: 1fr !important; gap: 14px !important; }
}

/* ===========================================================
   v3 — Section rhythm + interactivity (2026 "wow" pass)
   Goal: adjacent sections never read as the same flat band.
   =========================================================== */

/* Scroll progress bar (global, subtle) */
.scroll-prog {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--teal), var(--navy) 60%, var(--pink));
  z-index: 200; pointer-events: none;
  box-shadow: 0 0 10px rgba(42,188,180,.5);
  transition: width .08s linear;
}

/* --- New light section treatment: soft brand "mesh" (depth without flatness) --- */
.section--mesh {
  background:
    radial-gradient(60% 80% at 88% -10%, rgba(42,188,180,.14), transparent 60%),
    radial-gradient(55% 70% at 0% 110%, rgba(27,58,122,.10), transparent 62%),
    linear-gradient(180deg, #FAFCFF, var(--ice));
}
.section--mesh-pink {
  background:
    radial-gradient(55% 75% at 92% 0%, rgba(255,45,155,.08), transparent 58%),
    radial-gradient(50% 70% at 5% 100%, rgba(42,188,180,.12), transparent 60%),
    linear-gradient(180deg, var(--white), #F6F9FF);
}

/* --- Soft wedge separators so two stacked sections feel intentional --- */
.section--wedge-top { clip-path: polygon(0 2.2vw, 100% 0, 100% 100%, 0 100%); margin-top: -1px; }
.section--wedge-bottom { clip-path: polygon(0 0, 100% 0, 100% calc(100% - 2.2vw), 0 100%); }
@media (max-width: 700px) { .section--wedge-top, .section--wedge-bottom { clip-path: none; } }

/* --- Eyebrow divider dot row (decorative break between sections) --- */
.sec-divider { display: flex; align-items: center; justify-content: center; gap: 10px; padding-block: 6px; }
.sec-divider span { width: 5px; height: 5px; border-radius: 50%; background: var(--border-strong); }
.sec-divider span:nth-child(2) { background: var(--teal); width: 7px; height: 7px; }

/* --- Interactivity: lift + tilt on key cards --- */
.card--hover, .citycard, .vs-card { will-change: transform; }
.icon-tile { transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.card--hover:hover .icon-tile { transform: translateY(-3px) rotate(-4deg) scale(1.06); }
.services .card:hover { box-shadow: var(--shadow-lg); }

/* --- Factband: animate the numbers in --- */
.factband::after { content: none; }

/* --- Section intro: kicker underline draws in when revealed --- */
.reveal.in .kicker::before { animation: kicker-grow .6s var(--ease-out) both; }
@keyframes kicker-grow { from { width: 0; opacity: 0; } to { opacity: 1; } }

/* --- Pulsing focus ring on the primary "wow" CTA band --- */
.cta-band { transition: box-shadow .5s var(--ease); }
.cta-band:hover { box-shadow: 0 40px 80px -34px rgba(8,15,35,.28), 0 0 0 1px rgba(42,188,180,.25); }

/* ===========================================================
   PPF price / ROI estimator
   =========================================================== */
.calc {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(20px, 3vw, 44px);
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: clamp(24px, 3vw, 40px); box-shadow: var(--shadow-md); align-items: stretch;
}
.calc__controls { display: flex; flex-direction: column; gap: 22px; }
.calc__group > span.calc__lbl { display: block; font-family: var(--font-body); font-weight: 700; color: var(--navy); font-size: .82rem; letter-spacing: .02em; margin-bottom: 10px; }
.calc__seg { display: flex; flex-wrap: wrap; gap: 8px; }
.calc__seg button {
  flex: 1 1 auto; min-height: 46px; padding: 10px 14px; border-radius: var(--r-md);
  border: 1.5px solid var(--border-strong); background: var(--white); color: var(--navy);
  font-family: var(--font-body); font-weight: 600; font-size: .92rem; cursor: pointer;
  transition: all .2s var(--ease); white-space: nowrap;
}
.calc__seg button:hover { border-color: var(--teal); }
.calc__seg button.is-active { background: var(--navy); color: #fff; border-color: var(--navy); box-shadow: var(--shadow-sm); }
.calc__cov { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.calc__cov button { flex: none; }

.calc__out {
  background: linear-gradient(155deg, var(--navy-deep), var(--navy) 70%, #16407e);
  border-radius: var(--r-lg); padding: clamp(24px, 3vw, 34px); color: #fff;
  display: flex; flex-direction: column; gap: 14px; position: relative; overflow: hidden;
}
.calc__out::before { content: ""; position: absolute; width: 280px; height: 280px; top: -130px; right: -110px; background: radial-gradient(circle, rgba(42,188,180,.3), transparent 68%); }
.calc__out .calc__eyebrow { font-size: .76rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--teal); position: relative; }
.calc__price { font-family: var(--font-display); font-size: clamp(1.7rem, 3.4vw, 2.5rem); line-height: 1.05; letter-spacing: -.03em; position: relative; }
.calc__price strong { font-weight: 700; }
.calc__incl { display: grid; gap: 9px; position: relative; margin: 2px 0 0; }
.calc__incl li { display: flex; align-items: flex-start; gap: 9px; font-size: .95rem; color: rgba(255,255,255,.9); }
.calc__incl .ic { flex: none; width: 17px; height: 17px; color: var(--teal); margin-top: 2px; stroke-width: 2.4; }
.calc__roi { font-size: .88rem; color: #AFC0DE; line-height: 1.5; position: relative; border-top: 1px solid rgba(255,255,255,.12); padding-top: 14px; margin-top: 2px; }
.calc__roi strong { color: #fff; }
.calc__cta { position: relative; margin-top: 4px; }
.calc__note { font-size: .8rem; color: var(--text-secondary); margin-top: 14px; display: flex; align-items: center; gap: 7px; }
.calc__note .ic { width: 14px; height: 14px; color: var(--teal-dark); flex: none; }
@keyframes calcPulse { 0% { opacity: .35; transform: translateY(2px); } 100% { opacity: 1; transform: none; } }
.calc__pulse { animation: calcPulse .32s var(--ease-out); }
@media (max-width: 820px) {
  .calc { grid-template-columns: 1fr; }
}
@media (max-width: 460px) {
  .calc__cov { grid-template-columns: 1fr; }
}

/* ---------- Quiz → tilbud recommendation banner ---------- */
.reco-banner {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 22px; padding: 14px 16px;
  background: linear-gradient(135deg, #EAF7F6, #F4FBFA);
  border: 1.5px solid var(--teal);
  border-radius: var(--r-md);
}
.reco-banner__ic {
  flex: none; width: 42px; height: 42px; border-radius: 11px;
  background: var(--teal); color: #fff; display: grid; place-items: center;
}
.reco-banner__ic .ic { width: 22px; height: 22px; }
.reco-banner__body { flex: 1; display: flex; flex-direction: column; gap: 1px; line-height: 1.2; }
.reco-banner__t { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--teal-dark); }
.reco-banner__n { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--navy); letter-spacing: -.01em; }
.reco-banner__redo {
  flex: none; display: inline-flex; align-items: center; gap: 6px;
  font-size: .82rem; font-weight: 600; color: var(--teal-dark);
  padding: 7px 12px; border-radius: var(--r-pill); background: rgba(255,255,255,.7);
  transition: background .2s, color .2s;
}
.reco-banner__redo:hover { background: #fff; color: var(--navy); }
.reco-banner__redo .ic { width: 14px; height: 14px; }
.reco-success {
  margin-top: 14px; font-size: .92rem; color: var(--teal-dark);
  background: #EAF7F6; border: 1px solid #C9ECE9; border-radius: var(--r-md);
  padding: 12px 16px; max-width: 460px; margin-inline: auto;
}
@media (max-width: 460px) {
  .reco-banner { flex-wrap: wrap; }
  .reco-banner__redo { margin-left: 56px; }
}

/* ============================================================
   Bedrift / business page
   ============================================================ */
.bizhero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(80% 70% at 88% -8%, rgba(42,188,180,.10), transparent 60%),
    radial-gradient(60% 80% at -5% 110%, rgba(27,58,122,.06), transparent 62%),
    linear-gradient(180deg, #FAFCFF 0%, var(--ice) 100%);
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}
.bizhero h1 { color: var(--navy); }
.bizhero .lead { color: var(--text-secondary); }
.bizhero__chips { color: var(--text-secondary) !important; }
.bizhero__trust { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 16px 9px 12px; border-radius: 999px;
  background: rgba(255,255,255,.7); border: 1px solid var(--border);
  box-shadow: 0 1px 2px rgba(16,33,72,.04);
  font-size: .88rem; font-weight: 600; color: var(--navy); white-space: nowrap;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.trust-chip .ic {
  width: 17px; height: 17px; flex: none; color: var(--teal-dark); stroke-width: 2;
}
.bizhero__media {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
}
.bizhero__media img, .bizhero__media image-slot { display: block; width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* business value row */
.bizval { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.bizval__item { display: flex; gap: 14px; align-items: flex-start; }
.bizval__ic {
  flex: none; width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center;
  background: linear-gradient(145deg, #EAF0FE, #DCE6FB); color: var(--navy); box-shadow: inset 0 0 0 1px #CFDBF4;
}
.bizval__ic .ic { width: 23px; height: 23px; stroke-width: 1.6; }
.bizval b { display: block; font-family: var(--font-display); color: var(--navy); font-size: 1.02rem; letter-spacing: -.01em; }
.bizval span { font-size: .88rem; color: var(--text-secondary); line-height: 1.42; }

/* wash subscription plans */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: 32px 30px; display: flex; flex-direction: column; position: relative;
  box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.plan:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.plan--feat { border-color: var(--teal); box-shadow: var(--shadow-teal); }
.plan--feat:hover { border-color: var(--teal); }
.plan__freq { color: var(--teal-dark); font-weight: 700; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.plan__name { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: var(--navy); letter-spacing: -.02em; margin-top: 8px; }
.plan__desc { color: var(--text-secondary); font-size: .92rem; margin-top: 8px; }
.plan__list { list-style: none; padding: 0; margin: 22px 0 26px; display: grid; gap: 12px; }
.plan__list li { display: flex; gap: 11px; align-items: flex-start; font-size: .94rem; color: var(--navy); }
.plan__list .ic { color: var(--teal-dark); flex: none; width: 19px; height: 19px; margin-top: 2px; }
.plan .btn { margin-top: auto; width: 100%; }

@media (max-width: 900px) {
  .bizval { grid-template-columns: 1fr 1fr; gap: 22px; }
  .plans { grid-template-columns: 1fr; }
}
@media (max-width: 520px) { .bizval { grid-template-columns: 1fr; } }

/* ============================================================
   Gavekort / gift-card page
   ============================================================ */
.gift-points { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 18px; }
.gift-points li { display: flex; gap: 14px; align-items: flex-start; }
.gift-points__ic {
  flex: none; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(145deg, #EAF0FE, #DCE6FB); color: var(--navy); box-shadow: inset 0 0 0 1px #CFDBF4;
}
.gift-points__ic .ic { width: 21px; height: 21px; stroke-width: 1.7; }
.gift-points b { display: block; font-family: var(--font-display); color: var(--navy); font-size: 1rem; letter-spacing: -.01em; }
.gift-points span { font-size: .9rem; color: var(--text-secondary); line-height: 1.45; }

.gift-buy {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg); overflow: hidden; width: 100%; max-width: 500px; margin-inline: auto;
}
.gift-buy__head {
  display: flex; align-items: center; gap: 14px; padding: 18px 22px;
  border-bottom: 1px solid var(--border); background: linear-gradient(180deg, #FAFCFF, #fff);
}
.gift-buy__head > .ic {
  flex: none; width: 40px; height: 40px; padding: 9px; border-radius: 11px;
  background: var(--teal); color: #fff; box-shadow: var(--shadow-teal); stroke-width: 1.8;
}
.gift-buy__head b { display: block; font-family: var(--font-display); color: var(--navy); font-size: 1.05rem; letter-spacing: -.01em; }
.gift-buy__head span { font-size: .82rem; color: var(--text-secondary); }
.gift-buy__frame {
  display: block; width: 100%; height: max(820px, 78vh); border: 0; background: var(--white);
}

@media (max-width: 900px) {
  .gift-hero { grid-template-columns: 1fr !important; }
  .gift-buy { order: -1; }
}

/* ============================================================
   Gift-card showcase — premium card images
   ============================================================ */
.gk-showcase {
  position: relative; display: flex; justify-content: center; align-items: center;
  gap: 0; min-height: 420px; perspective: 1800px;
}
.gk-card {
  width: clamp(280px, 31vw, 430px); display: block;
  filter: drop-shadow(0 26px 40px rgba(11,27,54,.34)) drop-shadow(0 8px 16px rgba(11,27,54,.22));
  transition: transform .5s var(--ease-out), filter .5s var(--ease-out);
  -webkit-transform: translateZ(0);
}
.gk-card--l { transform: translateX(20%) rotate(-9deg) scale(.9); z-index: 1; }
.gk-card--c { z-index: 3; transform: translateY(-12px); }
.gk-card--r { transform: translateX(-20%) rotate(9deg) scale(.9); z-index: 2; }
.gk-showcase:hover .gk-card--l { transform: translateX(-4%) rotate(-11deg) scale(.94); }
.gk-showcase:hover .gk-card--r { transform: translateX(4%) rotate(11deg) scale(.94); }
.gk-card:hover { transform: translateY(-22px) rotate(0) scale(1.04) !important; z-index: 9 !important;
  filter: drop-shadow(0 36px 52px rgba(11,27,54,.4)) drop-shadow(0 12px 22px rgba(11,27,54,.28)); }
@media (max-width: 760px) {
  .gk-showcase { min-height: 0; flex-direction: column; gap: 18px; perspective: none; }
  .gk-card, .gk-card--l, .gk-card--c, .gk-card--r {
    width: min(86%, 360px); transform: none !important; }
}

/* gifting scenarios */
.gk-occ { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gk-occ__item {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 24px; display: flex; gap: 15px; align-items: flex-start;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.gk-occ__item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.gk-occ__ic {
  flex: none; width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  background: linear-gradient(145deg, #EAF0FE, #DCE6FB); color: var(--navy); box-shadow: inset 0 0 0 1px #CFDBF4;
}
.gk-occ__ic .ic { width: 23px; height: 23px; stroke-width: 1.7; }
.gk-occ__item b { display: block; font-family: var(--font-display); color: var(--navy); font-size: 1.02rem; letter-spacing: -.01em; }
.gk-occ__item span { font-size: .89rem; color: var(--text-secondary); line-height: 1.45; }
@media (max-width: 860px) { .gk-occ { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .gk-occ { grid-template-columns: 1fr; } }

/* redemption — numbered elegant steps */
.gk-redeem { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.gk-redeem__card {
  position: relative; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: 34px 32px; box-shadow: var(--shadow-sm);
}
.gk-redeem__tag { font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--teal-dark); }
.gk-redeem__h { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; color: var(--navy); letter-spacing: -.02em; margin-top: 8px; }
.gk-redeem ol { list-style: none; counter-reset: r; padding: 0; margin: 20px 0 0; display: grid; gap: 16px; }
.gk-redeem ol li { counter-increment: r; display: flex; gap: 14px; align-items: flex-start; font-size: .95rem; color: var(--navy); line-height: 1.5; }
.gk-redeem ol li::before {
  content: counter(r); flex: none; width: 28px; height: 28px; border-radius: 50%;
  background: var(--navy); color: #fff; font-weight: 700; font-size: .85rem; display: grid; place-items: center; margin-top: 1px;
}
.gk-redeem code, .gk-pill {
  background: var(--ice); border: 1px solid var(--border); border-radius: 6px;
  padding: 1px 8px; font-family: var(--font-display); font-weight: 700; font-size: .88em; color: var(--navy);
}
.gk-redeem__note { margin-top: 26px; font-size: .9rem; color: var(--text-secondary); }
.gk-redeem__note a { color: var(--teal-dark); font-weight: 600; }
@media (max-width: 760px) { .gk-redeem { grid-template-columns: 1fr; } }

.gk-redeem-methods { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; }
.gk-redeem-methods li { display: flex; gap: 13px; align-items: flex-start; }
.gk-redeem-methods .ic { flex: none; width: 20px; height: 20px; color: var(--teal-dark); margin-top: 2px; }
.gk-redeem-methods b { color: var(--navy); }

/* ============================================================
   Hero imagery height fix + taller first-section shots
   ------------------------------------------------------------
   <image-slot> ships a default 160px height in its shadow DOM, which
   silently overrode the authored inline `aspect-ratio` — every slot
   collapsed to a thin 160px bar. Freeing the height lets the aspect
   ratio drive it again.
   ============================================================ */
image-slot[style*="aspect-ratio"] { height: auto !important; }

/* First-section hero imagery — taller & more immersive on every page */
image-slot[id$="-hero"],
image-slot#svc-ppf,
img.hero-shot {
  height: auto !important;
  aspect-ratio: 1 / 1 !important;
}
@media (max-width: 760px) {
  image-slot[id$="-hero"],
  image-slot#svc-ppf,
  img.hero-shot {
    aspect-ratio: 4 / 5 !important;
  }
}