/* ==========================================================================
   Funken Auto Spa — design system
   Dark, high-gloss, premium. Brand blue #00B0FF sampled from the logo.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --ink:        #05070a;
  --ink-2:      #080b10;
  --surface:    #0b0f15;
  --elev:       #10151d;
  --elev-2:     #151b25;
  --line:       rgba(255, 255, 255, 0.09);
  --line-2:     rgba(255, 255, 255, 0.16);

  --text:       #e9eff7;
  --muted:      #8d9cb0;
  --dim:        #64748b;

  --brand:      #00b0ff;
  --brand-2:    #47c9ff;
  --brand-deep: #0069a8;
  --brand-glow: rgba(0, 176, 255, 0.35);

  --radius:     18px;
  --radius-sm:  12px;
  --radius-lg:  28px;

  --shell:      1240px;
  --gutter:     clamp(20px, 5vw, 48px);

  /* Unbounded echoes the wide geometric caps of the Funken wordmark;
     Hanken Grotesk keeps long-form copy warm and readable underneath it. */
  --sans:    'Hanken Grotesk', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --display: 'Unbounded', var(--sans);

  --ease:    cubic-bezier(0.22, 1, 0.36, 1);
  --dur:     0.55s;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.65;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--brand); color: #001018; }

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Layout ---------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.shell--wide { max-width: 1480px; }

section { position: relative; }
.section { padding-block: clamp(72px, 10vw, 132px); }
.section--tight { padding-block: clamp(56px, 7vw, 88px); }

.rule { border: 0; border-top: 1px solid var(--line); margin: 0; }

/* ---------- Type ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.h-xl { font-size: clamp(1.95rem, 4.9vw, 3.55rem); font-weight: 700; line-height: 1.14; }
.h-lg { font-size: clamp(1.5rem, 3.1vw, 2.35rem); }
.h-md { font-size: clamp(1.2rem, 2vw, 1.6rem); }
.h-sm { font-size: clamp(0.98rem, 1.25vw, 1.12rem); letter-spacing: -0.015em; line-height: 1.34; }

.lede {
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  color: var(--muted);
  line-height: 1.68;
  max-width: 62ch;
  text-wrap: pretty;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--sans);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand);
}
.kicker::before {
  content: '';
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand));
}

.accent { color: var(--brand); }
.muted  { color: var(--muted); }

.section-head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head > * + * { margin-top: 18px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .kicker::before { display: none; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--brand);
  --btn-fg: #00131f;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 27px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.3s var(--ease),
              background-color 0.25s, border-color 0.25s, color 0.25s;
}
.btn:hover  { transform: translateY(-2px); box-shadow: 0 12px 34px -12px var(--brand-glow); }
.btn:active { transform: translateY(0); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--text);
  border-color: var(--line-2);
}
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); box-shadow: none; }

.btn--light { --btn-bg: #fff; --btn-fg: #05070a; }
.btn--sm    { padding: 11px 20px; font-size: 0.85rem; }
.btn--block { width: 100%; }

.btn svg { width: 17px; height: 17px; flex: none; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 650;
  font-size: 0.9rem;
  color: var(--brand);
}
.link-arrow svg { width: 15px; height: 15px; transition: transform 0.3s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }

/* ---------- Header ---------- */
.topbar {
  display: none;
  background: var(--ink-2);
  border-bottom: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--muted);
}
@media (min-width: 900px) { .topbar { display: block; } }
.topbar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 42px;
}
.topbar__group { display: flex; align-items: center; gap: 22px; }
.topbar a { display: inline-flex; align-items: center; gap: 8px; transition: color 0.2s; }
.topbar a:hover { color: var(--brand); }
.topbar svg { width: 14px; height: 14px; color: var(--brand); flex: none; }

.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(5, 7, 10, 0.72);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background-color 0.3s;
}
.header.is-stuck {
  border-bottom-color: var(--line);
  background: rgba(5, 7, 10, 0.92);
}
.header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
}

.brand { display: inline-flex; align-items: center; flex: none; }
.brand img {
  width: auto;
  height: 40px;
  transition: filter 0.3s;
}
.brand:hover img { filter: drop-shadow(0 0 14px var(--brand-glow)); }

.nav { display: none; }
@media (min-width: 1000px) { .nav { display: flex; align-items: center; gap: 4px; } }
.nav a {
  position: relative;
  padding: 9px 15px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.22s, background-color 0.22s;
}
.nav a:hover { color: var(--text); background: rgba(255, 255, 255, 0.05); }
.nav a[aria-current='page'] { color: var(--text); }
.nav a[aria-current='page']::after {
  content: '';
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: var(--brand);
}

.header__cta { display: none; }
@media (min-width: 1000px) { .header__cta { display: inline-flex; } }

/* Mobile menu */
.burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 11px;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}
@media (min-width: 1000px) { .burger { display: none; } }
.burger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.burger[aria-expanded='true'] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded='true'] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.drawer {
  position: fixed;
  inset: 0;
  z-index: 190;
  display: grid;
  align-content: start;
  gap: 6px;
  padding: 118px var(--gutter) 40px;
  background: rgba(5, 7, 10, 0.97);
  backdrop-filter: blur(22px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.32s var(--ease), transform 0.32s var(--ease), visibility 0.32s;
  overflow-y: auto;
}
.drawer.is-open { opacity: 1; visibility: visible; transform: none; }
.drawer a {
  padding: 15px 4px;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.drawer a[aria-current='page'] { color: var(--brand); }
.drawer .btn { margin-top: 22px; }
.drawer__meta {
  margin-top: 26px;
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}
.drawer__meta a {
  padding: 0;
  border: 0;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: normal;
  color: var(--muted);
}
.drawer__meta a:hover { color: var(--brand); }
body.is-locked { overflow: hidden; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: clamp(600px, 90vh, 900px);
  padding-block: clamp(72px, 12vh, 128px);
  overflow: hidden;
  background: var(--ink);
}
.hero--inner { min-height: clamp(360px, 52vh, 520px); }

/* Real photography sits behind everything; the scrim below keeps text legible. */
.hero__photo {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 50%;
  opacity: 0.55;
}
.hero--photo .hero__bg::after {
  background:
    linear-gradient(90deg, var(--ink) 4%, rgba(5, 7, 10, 0.82) 42%, rgba(5, 7, 10, 0.34) 74%, rgba(5, 7, 10, 0.6)),
    linear-gradient(180deg, rgba(5, 7, 10, 0.72), transparent 32%, transparent 62%, var(--ink) 98%);
}
/* Blue bloom would wash out a photo — pull it right back when one is present. */
.hero--photo .hero__bg::before { opacity: 0.35; }
.hero--inner .hero__photo { object-position: 62% 46%; opacity: 0.45; }

@media (max-width: 760px) {
  .hero__photo { object-position: 62% 50%; opacity: 0.34; }
  .hero--photo .hero__bg::after {
    background: linear-gradient(180deg, rgba(5, 7, 10, 0.86), rgba(5, 7, 10, 0.78) 45%, var(--ink) 96%);
  }
}

/* Layered "light rolling over paint" backdrop */
.hero__bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__bg::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -42%;
  width: 165vw;
  aspect-ratio: 2 / 1;
  translate: -50% 0;
  border-radius: 50%;
  background: radial-gradient(closest-side,
              rgba(0, 176, 255, 0.30) 0%,
              rgba(0, 130, 200, 0.13) 42%,
              transparent 72%);
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 78% at 50% 108%, rgba(0, 176, 255, 0.16), transparent 62%),
    linear-gradient(180deg, transparent 40%, var(--ink) 96%);
}

/* The logo swoosh, echoed as a giant highlight arc */
.hero__arc {
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 46%;
  width: min(1500px, 148vw);
  translate: -50% -50%;
  opacity: 0.5;
  pointer-events: none;
}
.hero__arc path { fill: none; stroke-linecap: round; }
/* On narrow screens the arc crosses the body copy — drop it well back. */
@media (max-width: 899px) { .hero__arc { opacity: 0.16; top: 62%; } }

/* Pointer-tracked specular highlight */
.hero__spot {
  position: absolute;
  inset: -20%;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 50%),
              rgba(120, 215, 255, 0.16), transparent 68%);
  transition: opacity 0.6s;
}
@media (hover: hover) and (min-width: 900px) { .hero:hover .hero__spot { opacity: 1; } }

.hero__inner { position: relative; max-width: 860px; }
.hero__inner > * + * { margin-top: 24px; }
.hero h1 { text-shadow: 0 2px 40px rgba(0, 0, 0, 0.6); }
.hero .lede { font-size: clamp(1.05rem, 1.6vw, 1.28rem); }

.hero__actions { display: flex; flex-wrap: wrap; gap: 13px; padding-top: 8px; }

.hero__note {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.86rem;
  color: var(--dim);
}
.hero__note svg { width: 15px; height: 15px; color: var(--brand); flex: none; }

/* Scroll hint */
.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 26px;
  translate: -50% 0;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
}
@media (min-width: 900px) { .scroll-hint { display: flex; } }
.scroll-hint i {
  display: block;
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, var(--brand), transparent);
  animation: drop 2.2s var(--ease) infinite;
}
@keyframes drop {
  0%   { transform: scaleY(0); transform-origin: top; }
  45%  { transform: scaleY(1); transform-origin: top; }
  55%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- Marquee trust strip ---------- */
.strip {
  border-block: 1px solid var(--line);
  background: var(--ink-2);
  overflow: hidden;
}
.strip__track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: slide 42s linear infinite;
}
.strip:hover .strip__track { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-50%); } }
.strip__set { display: flex; flex: none; }
.strip__item {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 18px 30px;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.strip__item svg { width: 15px; height: 15px; color: var(--brand); flex: none; }

/* ---------- Grids & cards ---------- */
.grid { display: grid; gap: clamp(16px, 2vw, 22px); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(224px, 1fr)); }

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 55%),
    var(--surface);
  overflow: hidden;
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease),
              background-color 0.35s;
}
.card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--brand), transparent 45%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}
.card:hover { transform: translateY(-4px); }
.card:hover::before { opacity: 0.8; }
.card > * + * { margin-top: 13px; }
.card p { color: var(--muted); font-size: 0.95rem; }
.card .link-arrow { margin-top: auto; padding-top: 18px; }

.card__idx {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--brand);
}

.card__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  background: rgba(0, 176, 255, 0.07);
  color: var(--brand);
  margin-bottom: 4px;
}
.card__icon svg { width: 22px; height: 22px; }

/* Service card with a gloss panel */
.svc { padding: 0; }
.svc__visual {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #070a0f;
}
.svc__visual svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.svc__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.card:hover .svc__visual img { transform: scale(1.04); }
/* Keeps the card title readable where a photo runs bright at the bottom edge. */
.svc__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(5, 7, 10, 0.55));
  pointer-events: none;
}
.svc__body { padding: clamp(22px, 2.6vw, 30px); display: flex; flex-direction: column; flex: 1; }
.svc__body > * + * { margin-top: 12px; }
.svc__price {
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 650;
  color: var(--brand);
  letter-spacing: -0.01em;
}

/* ---------- Feature list ---------- */
.checks { display: grid; gap: 11px; list-style: none; padding: 0; }
.checks li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 0.95rem;
  color: var(--muted);
}
.checks svg { width: 20px; height: 20px; color: var(--brand); margin-top: 2px; }
.checks--tight li { font-size: 0.9rem; }

/* ---------- Split panel ---------- */
.split {
  display: grid;
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
}
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } }
.split--reverse > :first-child { order: 2; }
@media (max-width: 899px) { .split--reverse > :first-child { order: 0; } }
.split__text > * + * { margin-top: 20px; }

/* ---------- Before / after slider ---------- */
.ba {
  position: relative;
  aspect-ratio: 16 / 11;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #05070a;
  cursor: ew-resize;
  touch-action: none;
  user-select: none;
}
.ba__layer { position: absolute; inset: 0; }
.ba__layer svg { width: 100%; height: 100%; }
.ba__layer--after {
  clip-path: inset(0 0 0 var(--pos, 50%));
}
.ba__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos, 50%);
  width: 2px;
  background: var(--brand);
  box-shadow: 0 0 22px var(--brand-glow);
  pointer-events: none;
}
.ba__knob {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--brand);
  color: #00131f;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
}
.ba__knob svg { width: 22px; height: 22px; }
.ba__tag {
  position: absolute;
  top: 15px;
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(5, 7, 10, 0.82);
  border: 1px solid var(--line-2);
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  pointer-events: none;
}
.ba__tag--l { left: 15px; color: var(--muted); }
.ba__tag--r { right: 15px; color: var(--brand); }

.caption {
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--dim);
  text-align: center;
}

/* ---------- Process ---------- */
.steps { display: grid; gap: 0; list-style: none; padding: 0; }
.step {
  position: relative;
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: clamp(16px, 3vw, 34px);
  padding: clamp(22px, 2.6vw, 30px) 0;
}
/* Timeline rail: a dot per step, joined by a hairline */
.step__rail { position: relative; }
.step__rail::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 12px;
  width: 9px;
  height: 9px;
  translate: -50% 0;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(0, 176, 255, 0.12);
}
.step__rail::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 27px;
  bottom: calc(-1 * clamp(22px, 2.6vw, 30px) - 12px);
  width: 1px;
  translate: -50% 0;
  background: linear-gradient(180deg, rgba(0, 176, 255, 0.4), var(--line));
}
.step:last-child .step__rail::after { display: none; }
.step__body > * + * { margin-top: 9px; }
.step__body p { color: var(--muted); font-size: 0.95rem; max-width: 62ch; }
@media (min-width: 800px) {
  .step { grid-template-columns: 26px 300px 1fr; align-items: start; }
  .step__body { display: contents; }
  .step__body > * + * { margin-top: 0; }
  .step__body p { padding-top: 2px; }
}

/* ---------- Pricing ---------- */
.pricing__controls {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.segmented {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
}
.segmented button {
  padding: 9px 17px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.83rem;
  font-weight: 650;
  cursor: pointer;
  transition: background-color 0.25s, color 0.25s;
}
.segmented button:hover { color: var(--text); }
.segmented button[aria-selected='true'] { background: var(--brand); color: #00131f; }

.tier {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 2.8vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.tier:hover { transform: translateY(-3px); border-color: var(--line-2); }
.tier--featured {
  border-color: rgba(0, 176, 255, 0.45);
  background: linear-gradient(180deg, rgba(0, 176, 255, 0.075), transparent 46%), var(--surface);
  box-shadow: 0 30px 70px -40px var(--brand-glow);
}
.tier__flag {
  position: absolute;
  top: -11px;
  left: clamp(24px, 2.8vw, 32px);
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--brand);
  color: #00131f;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.tier__name { font-family: var(--display); font-size: 0.98rem; font-weight: 700; letter-spacing: -0.015em; line-height: 1.35; }
.tier__sub { margin-top: 6px; font-size: 0.87rem; color: var(--dim); }
.tier__price {
  margin: 18px 0 4px;
  font-family: var(--display);
  font-size: clamp(1.7rem, 2.8vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
}
.tier__price sup { font-size: 0.42em; font-weight: 650; top: -1.05em; margin-right: 2px; color: var(--muted); }
.tier__unit { font-size: 0.8rem; color: var(--dim); margin-bottom: 22px; }
.tier .checks { margin-bottom: 26px; }
.tier .btn { margin-top: auto; }

/* Comparison table */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  -webkit-overflow-scrolling: touch;
}
table { width: 100%; border-collapse: collapse; min-width: 640px; font-size: 0.92rem; }
th, td { padding: 15px 20px; text-align: left; border-bottom: 1px solid var(--line); }
thead th {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(255, 255, 255, 0.022);
  white-space: nowrap;
}
tbody tr:last-child td { border-bottom: 0; }
tbody tr { transition: background-color 0.2s; }
tbody tr:hover { background: rgba(255, 255, 255, 0.022); }
td { color: var(--muted); }
td:first-child { color: var(--text); font-weight: 550; }
td strong { color: var(--text); font-weight: 650; }

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat { padding: clamp(24px, 3vw, 34px); background: var(--surface); }
.stat__n {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.3vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
}
.stat__l { margin-top: 10px; font-size: 0.83rem; color: var(--muted); }

/* ---------- Areas ---------- */
.areas { display: flex; flex-wrap: wrap; gap: 9px; }
.areas span {
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-size: 0.86rem;
  color: var(--muted);
  transition: border-color 0.25s, color 0.25s, background-color 0.25s;
}
.areas span:hover { border-color: var(--brand); color: var(--text); background: rgba(0, 176, 255, 0.06); }

.radar {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.radar svg { width: 100%; height: 100%; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px 4px;
  cursor: pointer;
  list-style: none;
  font-family: var(--sans);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  transition: color 0.22s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--brand); }
.faq summary::after {
  content: '';
  flex: none;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  rotate: 45deg;
  translate: 0 -3px;
  transition: rotate 0.3s var(--ease), translate 0.3s var(--ease);
}
.faq details[open] summary::after { rotate: -135deg; translate: 0 3px; }
.faq__a { padding: 0 4px 24px; color: var(--muted); font-size: 0.95rem; max-width: 78ch; }
.faq__a > * + * { margin-top: 12px; }

/* ---------- CTA band ---------- */
.cta {
  position: relative;
  isolation: isolate;
  padding: clamp(48px, 7vw, 84px);
  border: 1px solid rgba(0, 176, 255, 0.28);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, rgba(0, 176, 255, 0.14), rgba(0, 105, 168, 0.05) 46%, transparent), var(--surface);
  overflow: hidden;
  text-align: center;
}
.cta::before {
  content: '';
  position: absolute;
  z-index: -1;
  left: 50%;
  bottom: -70%;
  width: 130%;
  aspect-ratio: 2 / 1;
  translate: -50% 0;
  border-radius: 50%;
  background: radial-gradient(closest-side, var(--brand-glow), transparent 70%);
}
.cta > * + * { margin-top: 20px; }
.cta .lede { margin-inline: auto; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 13px; justify-content: center; padding-top: 8px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: clamp(28px, 4vw, 52px); }
@media (min-width: 960px) { .contact-grid { grid-template-columns: 1fr 1.15fr; } }

.info-list { display: grid; gap: 4px; list-style: none; padding: 0; }
.info-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}
.info-list li:first-child { border-top: 1px solid var(--line); }
.info-list__ico {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-2);
  border-radius: 13px;
  background: rgba(0, 176, 255, 0.06);
  color: var(--brand);
}
.info-list__ico svg { width: 19px; height: 19px; }
.info-list dt {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 4px;
}
.info-list dd { margin: 0; font-size: 1rem; }
.info-list a:hover { color: var(--brand); }

.hours { display: grid; gap: 0; list-style: none; padding: 0; font-size: 0.93rem; }
.hours li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
.hours li:last-child { border-bottom: 0; }
.hours b { color: var(--text); font-weight: 550; }

form { display: grid; gap: 17px; }
.field { display: grid; gap: 8px; }
.field label {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--ink-2);
  color: var(--text);
  font-size: 0.97rem;
  transition: border-color 0.25s, background-color 0.25s;
}
.field textarea { min-height: 132px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: var(--surface);
}
.field input::placeholder, .field textarea::placeholder { color: #4b5768; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238d9cb0' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 17px;
  padding-right: 44px;
}
.field-row { display: grid; gap: 17px; }
@media (min-width: 560px) { .field-row { grid-template-columns: 1fr 1fr; } }
.form-note { font-size: 0.8rem; color: var(--dim); }

/* No invert/hue-rotate filter here on purpose: it mangles Google's own
   attribution and logo inside the embed. Plain map in a dark frame. */
.map-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}
.map-frame iframe { display: block; width: 100%; height: 380px; border: 0; }

/* ---------- Gallery ---------- */
/* Every shot shares one aspect ratio, so a plain grid beats masonry —
   no ragged column bottoms, and reading order stays left-to-right. */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: clamp(14px, 1.6vw, 20px);
}
.shot {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--surface);
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.shot:hover { border-color: var(--line-2); transform: translateY(-3px); }
.shot svg, .shot img {
  width: 100%;
  aspect-ratio: 700 / 432;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.shot:hover img { transform: scale(1.03); }
.shot__meta { margin-top: auto; }
.shot__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  font-size: 0.83rem;
}
.shot__meta b { font-family: var(--sans); font-weight: 650; }
.shot__meta span { color: var(--dim); font-size: 0.78rem; }

.slot-note {
  display: flex;
  gap: 13px;
  padding: 18px 20px;
  border: 1px dashed rgba(0, 176, 255, 0.35);
  border-radius: var(--radius-sm);
  background: rgba(0, 176, 255, 0.04);
  font-size: 0.9rem;
  color: var(--muted);
}
.slot-note svg { width: 19px; height: 19px; color: var(--brand); flex: none; margin-top: 2px; }

/* ---------- Notice ---------- */
.notice {
  display: flex;
  gap: 14px;
  padding: 20px 24px;
  border: 1px solid rgba(0, 176, 255, 0.22);
  border-radius: var(--radius-sm);
  background: rgba(0, 176, 255, 0.045);
  font-size: 0.92rem;
  color: var(--muted);
}
.notice svg { width: 20px; height: 20px; color: var(--brand); flex: none; margin-top: 2px; }
.notice b { color: var(--text); }

/* ---------- Breadcrumb ---------- */
.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  font-size: 0.8rem;
  color: var(--dim);
}
.crumbs a:hover { color: var(--brand); }
.crumbs li { display: flex; align-items: center; gap: 9px; list-style: none; }
.crumbs ol { display: contents; padding: 0; margin: 0; }
.crumbs li + li::before { content: '/'; color: #35404f; }
.crumbs [aria-current] { color: var(--muted); }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  background: var(--ink-2);
  padding-block: clamp(52px, 6vw, 76px) 0;
}
.footer__top {
  display: grid;
  gap: clamp(32px, 4vw, 52px);
  padding-bottom: 44px;
}
@media (min-width: 780px)  { .footer__top { grid-template-columns: 1.5fr 1fr 1fr; } }
@media (min-width: 1040px) { .footer__top { grid-template-columns: 1.6fr 1fr 1fr 1.1fr; } }
.footer__brand img { height: 46px; width: auto; }
.footer__brand p { margin-top: 18px; font-size: 0.9rem; color: var(--muted); max-width: 38ch; }
.footer h3 {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 16px;
}
.footer ul { list-style: none; padding: 0; display: grid; gap: 10px; font-size: 0.9rem; }
.footer ul a { color: var(--muted); transition: color 0.2s; }
.footer ul a:hover { color: var(--brand); }
.footer address { font-style: normal; font-size: 0.9rem; color: var(--muted); display: grid; gap: 10px; }
.footer address a:hover { color: var(--brand); }

.socials { display: flex; gap: 10px; margin-top: 20px; }
.socials a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--muted);
  transition: color 0.25s, border-color 0.25s, background-color 0.25s;
}
.socials a:hover { color: var(--brand); border-color: var(--brand); background: rgba(0, 176, 255, 0.07); }
.socials svg { width: 17px; height: 17px; }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  align-items: center;
  justify-content: space-between;
  padding-block: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--dim);
}
.footer__bottom nav { display: flex; flex-wrap: wrap; gap: 20px; }
.footer__bottom a:hover { color: var(--brand); }

/* ---------- Sticky mobile call bar ---------- */
.callbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 180;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
}
.callbar.is-visible { transform: none; }
@media (min-width: 1000px) { .callbar { display: none; } }
.callbar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 10px;
  background: rgba(8, 11, 16, 0.96);
  backdrop-filter: blur(14px);
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 700;
}
.callbar a:last-child { background: var(--brand); color: #00131f; }
.callbar svg { width: 17px; height: 17px; }
@media (max-width: 999px) { .footer { padding-bottom: 60px; } }

/* ---------- Scroll reveal ----------
   Scoped to .js so that without JavaScript — including AI crawlers that don't
   execute it — every element renders normally instead of staying invisible. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.js [data-reveal].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .js [data-reveal] { opacity: 1; transform: none; }
}

/* ---------- Utilities ---------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.skip {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 999;
  padding: 12px 20px;
  border-radius: 0 0 12px 12px;
  background: var(--brand);
  color: #00131f;
  font-weight: 700;
  transition: top 0.25s;
}
.skip:focus { top: 0; }

.stack > * + * { margin-top: 20px; }
.stack-sm > * + * { margin-top: 12px; }
.center { text-align: center; }
.mt-lg { margin-top: clamp(36px, 5vw, 60px); }
.mt-md { margin-top: clamp(24px, 3vw, 36px); }
