/* ============================================================
   Car Spark Mobile Auto Detailing — styles
   Theme: cinematic near-black + violet (brand) accent
   Fonts: Sora (display) / Jost (body)
   ============================================================ */

:root {
  --bg:        #0a0a0c;
  --bg-2:      #0d0d11;
  --panel:     #141319;
  --panel-2:   #1a1922;
  --line:      rgba(255,255,255,.08);
  --line-2:    rgba(255,255,255,.16);

  --text:      #f4f4f7;
  --muted:     #a8a8b4;
  --faint:     #74747f;

  --violet:        #8b5cf6;
  --violet-bright: #c4a5ff;
  --violet-deep:   #6d28d9;
  --grad: linear-gradient(135deg, #7c4dff 0%, #a855f7 60%, #c084fc 100%);
  --grad-soft: linear-gradient(135deg, rgba(124,77,255,.18), rgba(192,132,252,.06));
  --grad-head: linear-gradient(100deg, #e9d5ff 0%, #c4a5ff 42%, #b689ff 100%);

  --mono: "Space Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --radius:   18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --shadow:   0 24px 60px -20px rgba(0,0,0,.7);
  --shadow-violet: 0 30px 80px -28px rgba(124,77,255,.55);

  --container: 1200px;
  --ease: cubic-bezier(.2,.7,.2,1);

  /* z-index scale */
  --z-amb: 0; --z-base: 1; --z-header: 50; --z-menu: 60; --z-skip: 100;
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce){ html { scroll-behavior: auto; } }

body {
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 400;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: clamp(1rem, .96rem + .2vw, 1.0625rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--violet-bright); outline-offset: 3px; border-radius: 4px; }

h1,h2,h3,h4 { font-family: "Sora", sans-serif; font-weight: 700; line-height: 1.08; letter-spacing: -.02em; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2.5rem); }
.section { padding-block: clamp(4.5rem, 9vw, 8rem); position: relative; z-index: var(--z-base); }
.section--tight { padding-block: clamp(3.5rem, 7vw, 6rem); }

.section__head { max-width: 720px; margin-bottom: clamp(2.2rem, 5vw, 3.5rem); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__title { font-size: clamp(1.9rem, 1.3rem + 2.6vw, 3rem); color: #fff; }

/* Gradient-fill headlines (signature) — legible on dark: light gradient stops.
   Falls back to solid #fff where background-clip:text is unsupported. */
.gradient-text,
.section__title {
  background: var(--grad-head);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section__sub { color: var(--muted); margin-top: 1rem; font-size: 1.05rem; max-width: 60ch; }
.section__head--center .section__sub { margin-inline: auto; }

.overline {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: "Sora", sans-serif; font-weight: 600;
  text-transform: uppercase; letter-spacing: .18em; font-size: .74rem;
  color: var(--violet-bright);
}
.overline .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--grad); box-shadow: 0 0 12px var(--violet); }

/* Mono index label (editorial section eyebrow) */
.index-label {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--mono); font-weight: 400; font-size: .72rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--faint);
  margin-bottom: 1rem;
}
.index-label b { color: var(--violet-bright); font-weight: 400; }
.section__head--center .index-label { justify-content: center; }

.skip-link {
  position: absolute; left: 1rem; top: -3rem; z-index: var(--z-skip);
  background: var(--violet); color: #fff; padding: .6rem 1rem; border-radius: 8px;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ---------- Ambient background ---------- */
.ambient { position: fixed; inset: 0; z-index: var(--z-amb); pointer-events: none; overflow: hidden; }
.glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; }
.glow--1 { width: 50vw; height: 50vw; top: -12vw; right: -8vw; background: radial-gradient(circle, rgba(124,77,255,.52), transparent 70%); }
.glow--2 { width: 44vw; height: 44vw; bottom: -10vw; left: -10vw; background: radial-gradient(circle, rgba(168,85,247,.34), transparent 70%); }
.grain {
  position: absolute; inset: 0; opacity: .04; mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: "Sora", sans-serif; font-weight: 600; font-size: .95rem; letter-spacing: -.01em;
  padding: .8rem 1.4rem; border-radius: 999px; border: 1px solid transparent;
  min-height: 46px; white-space: nowrap;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.btn .ico { width: 18px; height: 18px; }
.btn--lg { padding: 1rem 1.7rem; font-size: 1rem; min-height: 54px; }
.btn--block { width: 100%; }
.btn--primary { background: var(--grad); color: #fff; box-shadow: 0 10px 30px -10px rgba(124,77,255,.7); }
.btn--primary:hover { box-shadow: 0 16px 40px -10px rgba(124,77,255,.85); transform: translateY(-2px); }
.btn--outline { border-color: var(--line-2); color: var(--text); background: rgba(255,255,255,.02); }
.btn--outline:hover { border-color: var(--violet); color: #fff; background: rgba(124,77,255,.12); transform: translateY(-2px); }
.btn--ghost { color: var(--muted); }
.btn--ghost:hover { color: #fff; }
.ico { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Header / Nav ---------- */
.site-header { position: sticky; top: 0; z-index: var(--z-header); transition: background .3s var(--ease), border-color .3s var(--ease), backdrop-filter .3s; border-bottom: 1px solid transparent; }
.site-header.scrolled { background: rgba(10,10,12,.72); backdrop-filter: blur(16px) saturate(140%); border-bottom-color: var(--line); }
.nav { display: flex; align-items: center; gap: 1.5rem; min-height: 76px; }

.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand__logo { width: 40px; height: 40px; border-radius: 9px; object-fit: cover; background: #000; border: 1px solid var(--line); }
.brand__name { font-family: "Sora", sans-serif; font-weight: 800; letter-spacing: .04em; font-size: 1.02rem; line-height: 1; display: flex; flex-direction: column; gap: 3px; }
.brand__name small { font-family: "Jost", sans-serif; font-weight: 400; letter-spacing: .14em; font-size: .56rem; text-transform: uppercase; color: var(--faint); }

.nav__links { display: flex; gap: 1.7rem; margin-left: auto; }
.nav__links a { color: var(--muted); font-size: .95rem; position: relative; padding: .25rem 0; transition: color .2s var(--ease); }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--grad); transition: width .25s var(--ease); border-radius: 2px; }
.nav__links a:hover, .nav__links a.active { color: #fff; }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: .65rem; }
.nav__call { font-family: "Sora", sans-serif; font-weight: 600; font-size: .9rem; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; background: transparent; border: 1px solid var(--line-2); border-radius: 10px; }
.nav__toggle span { width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { display: none; padding: 1rem clamp(1.1rem,4vw,2.5rem) 1.6rem; background: rgba(12,12,16,.96); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a { padding: .9rem .25rem; border-bottom: 1px solid var(--line); color: var(--text); font-family: "Sora", sans-serif; font-weight: 500; }
.mobile-menu__actions { display: grid; gap: .6rem; margin-top: 1.1rem; }

/* ---------- Hero (full-bleed cinematic) ---------- */
.hero { position: relative; z-index: var(--z-base); }
.hero--full { min-height: clamp(600px, 94vh, 940px); display: flex; align-items: center; overflow: hidden; }

/* Background photo, graded to a violet night mood */
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 72% 58%; filter: brightness(.9) contrast(1.04) saturate(1.05); }
/* legibility gradients: left column for text, soft top, floor fade into page bg.
   The photo is already violet-dusk graded — keep the car bright and visible. */
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--bg) 0%, rgba(10,10,12,.82) 22%, rgba(10,10,12,.34) 44%, transparent 62%),
    linear-gradient(180deg, rgba(10,10,12,.72) 0%, rgba(10,10,12,.18) 22%, transparent 42%),
    linear-gradient(0deg, var(--bg) 0%, rgba(10,10,12,.3) 16%, transparent 36%);
}

.hero--full .hero__copy { position: relative; z-index: 2; max-width: 620px; padding-block: clamp(4.5rem, 11vw, 8rem); }
.hero__title { font-size: clamp(2.6rem, 1.6rem + 4.4vw, 4.9rem); font-weight: 800; letter-spacing: -.03em; color: #fff; }
.hero__title em { font-style: italic; font-weight: 700; color: #fff; }
.hero__loc { background: linear-gradient(120deg, #a78bfa 0%, #b689ff 55%, #c084fc 100%); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }
.hero__lede { color: var(--muted); font-size: clamp(1.05rem, 1rem + .4vw, 1.22rem); margin-top: 1.4rem; max-width: 52ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.hero__chips { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 2rem; }
.hero__chips li { font-size: .82rem; font-family: "Sora", sans-serif; font-weight: 500; color: var(--muted); padding: .5rem .9rem; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.02); }
.hero__chips li::before { content: "✓"; color: var(--violet-bright); margin-right: .45rem; font-weight: 700; }

/* ---------- Cards (Why us) ---------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; counter-reset: cardix; }
.card { background: linear-gradient(180deg, var(--panel), var(--bg-2)); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem 1.5rem; position: relative; overflow: hidden; counter-increment: cardix; transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease); }
.card::after { content: "[" counter(cardix, decimal-leading-zero) "]"; position: absolute; top: 1.3rem; right: 1.4rem; z-index: 2; font-family: var(--mono); font-size: .72rem; letter-spacing: .06em; color: var(--faint); }
.card::before { content: ""; position: absolute; inset: 0; background: var(--grad-soft); opacity: 0; transition: opacity .3s var(--ease); }
.card:hover { transform: translateY(-5px); border-color: var(--line-2); box-shadow: var(--shadow); }
.card:hover::before { opacity: 1; }
.card > * { position: relative; }
.card__ico { display: inline-flex; width: 50px; height: 50px; align-items: center; justify-content: center; border-radius: 14px; background: rgba(124,77,255,.14); border: 1px solid rgba(124,77,255,.3); margin-bottom: 1.1rem; }
.card__ico svg { width: 26px; height: 26px; fill: none; stroke: var(--violet-bright); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-size: 1.16rem; margin-bottom: .5rem; }
.card p { color: var(--muted); font-size: .96rem; }

/* ---------- Before / After (lives inside the gallery as one tile) ---------- */
.shot--ba { cursor: ew-resize; }
.shot--ba::after { pointer-events: none; }
.shot--ba:focus-within { box-shadow: inset 0 0 0 2px var(--violet); }
.ba__viewport { position: absolute; inset: 0; overflow: hidden; touch-action: pan-y; user-select: none; }
.ba__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.shot--ba:hover .ba__img { transform: none; }
.ba__img--before { clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0); z-index: 2; }
.ba__handle { position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); transform: translateX(-50%); z-index: 4; display: flex; align-items: center; justify-content: center; pointer-events: none; }
.ba__line { position: absolute; top: 0; bottom: 0; width: 2px; background: rgba(255,255,255,.85); box-shadow: 0 0 14px rgba(124,77,255,.8); }
.ba__grip { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; background: var(--grad); color: #fff; box-shadow: 0 6px 20px rgba(0,0,0,.5); }
.ba__grip svg { width: 20px; height: 20px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ba__tag { position: absolute; top: 12px; z-index: 5; pointer-events: none; font-family: "Sora", sans-serif; font-weight: 700; font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; padding: .3rem .6rem; border-radius: 999px; background: rgba(10,10,12,.7); backdrop-filter: blur(6px); border: 1px solid var(--line-2); }
.ba__tag--before { left: 12px; }
.ba__tag--after { right: 12px; }
.shot--ba figcaption { z-index: 6; pointer-events: none; }
/* range stays for keyboard users but is visually hidden — drag the image to compare */
.ba__range { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ---------- What's included ---------- */
.incl { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.incl__col { background: linear-gradient(180deg, var(--panel), var(--bg-2)); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.8rem; }
.incl__head { margin-bottom: 1.2rem; }
.incl__badge { font-family: "Sora", sans-serif; font-weight: 700; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; padding: .45rem .9rem; border-radius: 999px; background: rgba(124,77,255,.16); border: 1px solid rgba(124,77,255,.32); color: var(--violet-bright); }
.incl__badge--alt { background: rgba(255,255,255,.05); border-color: var(--line-2); color: var(--text); }
.ticks li { position: relative; padding: .55rem 0 .55rem 2rem; border-bottom: 1px solid var(--line); color: var(--text); }
.ticks li:last-child { border-bottom: 0; }
.ticks li::before { content: ""; position: absolute; left: 0; top: .72rem; width: 18px; height: 18px; border-radius: 50%; background: var(--grad); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 16.2l-3.5-3.5L4 14.2 9 19.2 20 8.2l-1.5-1.5z'/%3E%3C/svg%3E") center/contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 16.2l-3.5-3.5L4 14.2 9 19.2 20 8.2l-1.5-1.5z'/%3E%3C/svg%3E") center/contain no-repeat; }
.ticks--compact li { font-size: .95rem; color: var(--muted); padding-block: .45rem; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; counter-reset: galix; }
.shot { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4/5; }
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.shot:hover img { transform: scale(1.06); }
.shot figcaption { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; padding: 1.4rem .9rem .8rem; font-family: "Sora", sans-serif; font-weight: 600; font-size: .85rem; color: #fff; background: linear-gradient(0deg, rgba(8,8,10,.92), transparent); }
/* vignette + hover ring (sinks busy backgrounds into the dark theme) */
.shot::after { content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none; background: radial-gradient(125% 90% at 50% 36%, transparent 44%, rgba(8,8,12,.55) 100%); box-shadow: inset 0 0 0 1px transparent; transition: box-shadow .3s; }
.shot:hover::after { box-shadow: inset 0 0 0 2px var(--violet); }
/* mono portfolio index */
.shot { counter-increment: galix; }
.shot::before { content: "[" counter(galix, decimal-leading-zero) "]"; position: absolute; top: 12px; right: 12px; z-index: 3; font-family: var(--mono); font-size: .7rem; letter-spacing: .06em; color: #fff; text-shadow: 0 1px 5px rgba(0,0,0,.85); }

/* ---------- Per-car carousel cards ---------- */
.car__track {
  position: absolute; inset: 0; display: flex;
  overflow-x: auto; overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory; scrollbar-width: none;
}
.car__track::-webkit-scrollbar { display: none; }
.car__track:focus-visible { outline: 2px solid var(--violet-bright); outline-offset: -2px; }
.car__slide { position: relative; flex: 0 0 100%; scroll-snap-align: start; }
.car__slide img { width: 100%; height: 100%; object-fit: cover; }
.car:hover .car__slide img { transform: none; } /* no zoom-on-hover inside carousels */

.car__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 44px; height: 44px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(13,13,17,.62); backdrop-filter: blur(6px);
  border: 1px solid var(--line-2); color: #fff;
  transition: background .2s var(--ease), border-color .2s var(--ease), opacity .2s;
}
.car__nav svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.car__nav:hover { background: rgba(124,77,255,.5); border-color: var(--violet); }
.car__nav--prev { left: 10px; }
.car__nav--next { right: 10px; }
.car__nav[disabled] { opacity: .35; pointer-events: none; }

.car__count {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  font-family: var(--mono); font-size: .7rem; letter-spacing: .06em;
  color: #fff; text-shadow: 0 1px 5px rgba(0,0,0,.85);
}
.car__dots {
  position: absolute; left: 0; right: 0; bottom: 2.5rem; z-index: 4;
  display: flex; justify-content: center; gap: .45rem; pointer-events: none;
}
.car__dots button {
  width: 8px; height: 8px; padding: 0; border-radius: 50%; border: 0;
  background: rgba(255,255,255,.38); pointer-events: auto;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.car__dots button.active { background: var(--grad); transform: scale(1.25); box-shadow: 0 0 8px rgba(124,77,255,.8); }

/* the B/A compare lives as a slide inside the Hyundai card */
.car__slide.shot--ba { border-radius: 0; border: 0; aspect-ratio: auto; }

/* ---------- Pricing ---------- */
.plans { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; max-width: 900px; margin-inline: auto; }
.plan { position: relative; background: linear-gradient(180deg, var(--panel), var(--bg-2)); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2.2rem; display: flex; flex-direction: column; }
.plan--feature { border-color: rgba(124,77,255,.5); box-shadow: var(--shadow-violet); background: linear-gradient(180deg, rgba(124,77,255,.1), var(--bg-2)); }
.plan__flag { position: absolute; top: -13px; left: 2.2rem; font-family: "Sora", sans-serif; font-weight: 700; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; padding: .4rem .9rem; border-radius: 999px; background: var(--grad); color: #fff; box-shadow: 0 8px 20px -6px rgba(124,77,255,.7); }
.plan__name { font-size: 1.5rem; }
.plan__desc { color: var(--muted); margin-top: .5rem; font-size: .98rem; }
.plan__price-row { display: flex; flex-wrap: wrap; gap: 1.4rem; margin: 1.5rem 0; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line); }
.plan__price { font-family: "Sora", sans-serif; font-weight: 800; font-size: 2.8rem; line-height: 1; display: flex; align-items: baseline; gap: .1rem; }
.plan__price--alt { color: var(--muted); }
.plan__cur { font-size: 1.4rem; font-weight: 600; color: var(--violet-bright); }
.plan__unit { display: block; font-family: "Jost", sans-serif; font-weight: 400; font-size: .8rem; color: var(--faint); letter-spacing: .04em; margin-left: .35rem; align-self: flex-end; max-width: 90px; line-height: 1.2; }
.plan .ticks { flex: 1; margin-bottom: 1.6rem; }
.plan .ticks li { border-bottom: none; padding-block: .35rem; }
.plans__note { display: flex; align-items: flex-start; gap: .7rem; max-width: 760px; margin: 2rem auto 0; padding: 1rem 1.3rem; border: 1px dashed var(--line-2); border-radius: var(--radius); color: var(--muted); font-size: .95rem; background: rgba(255,255,255,.02); }
.plans__note .ico { flex: 0 0 auto; width: 22px; height: 22px; stroke: var(--violet-bright); margin-top: 2px; }
.plans__note strong { color: var(--text); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; counter-reset: step; }
.step { background: linear-gradient(180deg, var(--panel), var(--bg-2)); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.7rem; }
.step__num { font-family: "Sora", sans-serif; font-weight: 800; font-size: 2.4rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; display: block; margin-bottom: .6rem; }
.step h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.step p { color: var(--muted); font-size: .96rem; }

/* ---------- Quotes ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.quote { background: linear-gradient(180deg, var(--panel), var(--bg-2)); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; }
.quote__stars { color: var(--violet-bright); letter-spacing: .12em; margin-bottom: .9rem; }
.quote blockquote { font-size: 1.04rem; color: var(--text); }
.quote figcaption { margin-top: 1.1rem; color: var(--faint); font-family: "Sora", sans-serif; font-weight: 500; font-size: .9rem; }

/* ---------- Services ---------- */
.services { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.service { background: linear-gradient(180deg, var(--panel), var(--bg-2)); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2.2rem; display: flex; flex-direction: column; transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease); }
.service:hover { transform: translateY(-4px); border-color: var(--line-2); box-shadow: var(--shadow); }
.service__top { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.service__name { font-size: 1.35rem; }
.service__price { font-family: "Sora", sans-serif; font-weight: 700; font-size: .9rem; color: var(--violet-bright); background: rgba(124,77,255,.14); border: 1px solid rgba(124,77,255,.3); padding: .35rem .8rem; border-radius: 999px; white-space: nowrap; }
.service__copy { color: var(--muted); font-size: .98rem; }
.service__meta { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--line); font-family: "Sora", sans-serif; font-weight: 500; font-size: .9rem; color: var(--text); }
.service__actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.4rem; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: .8rem; max-width: 820px; }
.faq__item { background: linear-gradient(180deg, var(--panel), var(--bg-2)); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color .25s var(--ease); }
.faq__item[open] { border-color: var(--line-2); }
.faq__item summary { list-style: none; cursor: pointer; padding: 1.2rem 1.5rem; font-family: "Sora", sans-serif; font-weight: 600; font-size: 1.02rem; color: var(--text); display: flex; align-items: center; justify-content: space-between; gap: 1rem; transition: color .2s var(--ease); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: ""; width: 20px; height: 20px; flex: 0 0 auto; background: var(--grad); transition: transform .3s var(--ease); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M11 5h2v6h6v2h-6v6h-2v-6H5v-2h6z'/%3E%3C/svg%3E") center/contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M11 5h2v6h6v2h-6v6h-2v-6H5v-2h6z'/%3E%3C/svg%3E") center/contain no-repeat; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item summary:hover { color: var(--violet-bright); }
.faq__a { padding: 0 1.5rem 1.3rem; color: var(--muted); font-size: .98rem; }
.faq__a p { max-width: 68ch; }
.faq__foot { margin-top: 1.6rem; color: var(--muted); }
.faq__foot a { color: var(--violet-bright); font-weight: 600; }
.faq__foot a:hover { color: #fff; }

/* ---------- Contact ---------- */
.contact {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  grid-template-areas: "actions form" "list form";
  grid-template-rows: auto 1fr;
  column-gap: clamp(1.8rem, 4vw, 3.5rem); row-gap: 2rem;
  align-items: start;
}
.contact__actions { grid-area: actions; display: flex; flex-wrap: wrap; gap: .8rem; }
.contact__list { grid-area: list; display: grid; gap: 1.05rem; align-self: start; }
.form { grid-area: form; }
.contact__list li { display: flex; align-items: center; gap: .75rem; color: var(--muted); font-size: .98rem; }
.contact__list .ico { width: 20px; height: 20px; flex: 0 0 auto; stroke: var(--violet-bright); }
.contact__list a:hover { color: #fff; }

.form { background: linear-gradient(180deg, var(--panel), var(--bg-2)); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.2rem); display: grid; gap: 1.15rem; position: relative; }
.form label { display: block; font-family: "Sora", sans-serif; font-weight: 600; font-size: .85rem; margin-bottom: .45rem; color: var(--text); }
.form label span { color: var(--faint); font-weight: 400; }
.form input, .form textarea {
  width: 100%; background: rgba(255,255,255,.03); border: 1px solid var(--line-2);
  border-radius: var(--radius-sm); color: var(--text); font: inherit;
  padding: .8rem .95rem; min-height: 48px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form input::placeholder, .form textarea::placeholder { color: var(--faint); }
.form input:focus, .form textarea:focus { outline: none; border-color: var(--violet); box-shadow: 0 0 0 3px rgba(124,77,255,.22); }
.form textarea { resize: vertical; min-height: 130px; }
.form__honey { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form__status { margin: 0; font-size: .95rem; min-height: 1.4em; }
.form__status--ok { color: #7ee8a8; }
.form__status--err { color: #fca5a5; }
.form button[disabled] { opacity: .6; cursor: default; transform: none; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding-top: clamp(3rem, 6vw, 4.5rem); margin-top: 2rem; position: relative; z-index: var(--z-base); background: var(--bg-2); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer__tag { color: var(--muted); margin-top: 1.1rem; max-width: 38ch; font-size: .95rem; }
.site-footer h4 { font-family: "Sora", sans-serif; font-size: .78rem; text-transform: uppercase; letter-spacing: .14em; color: var(--faint); margin-bottom: 1.1rem; }
.footer__nav, .footer__contact { display: flex; flex-direction: column; gap: .7rem; }
.footer__nav a, .footer__contact a { color: var(--muted); font-size: .95rem; transition: color .2s; width: fit-content; }
.footer__nav a:hover, .footer__contact a:hover { color: var(--violet-bright); }
.footer__base { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; padding-block: 1.6rem; border-top: 1px solid var(--line); color: var(--faint); font-size: .85rem; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  .nav__links, .nav__actions { display: none; }
  .nav__toggle { display: flex; }
  .nav__links { margin-left: 0; }
  .nav { justify-content: space-between; }
  .mobile-menu.open { display: block; }
  .hero--full { min-height: clamp(640px, 97vh, 900px); }
  /* small screens: sink the car below the stacked text so it stays visible */
  .hero__bg img { object-position: 62% 24%; }
  .hero__bg::after {
    background:
      linear-gradient(180deg, rgba(10,10,12,.9) 0%, rgba(10,10,12,.6) 30%, rgba(10,10,12,.2) 52%, transparent 68%),
      linear-gradient(0deg, var(--bg) 0%, rgba(10,10,12,.25) 14%, transparent 34%);
  }
  .steps, .quotes { grid-template-columns: 1fr; }
  .services { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; max-width: 480px; }
  /* contact on phones: quick actions -> form -> compact info */
  .contact { grid-template-columns: 1fr; grid-template-areas: "actions" "form" "list"; grid-template-rows: none; row-gap: 1.5rem; }
  .contact__list { gap: .85rem; padding-top: .4rem; }
  .contact__list li:first-child { display: none; } /* phone number already on the buttons above */
  .form { padding: 1.3rem 1.1rem 1.5rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .cards, .incl { grid-template-columns: 1fr; }
  /* carousel cards go full-width on phones: bigger swipe area, Instagram-like feed */
  .gallery { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__cta .btn, .contact__actions .btn { width: 100%; }
  .section__head { margin-bottom: 2rem; }
}

/* ---------- Editorial bento (desktop only) ---------- */
@media (min-width: 1025px) {
  .cards { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; }
  .card:nth-child(1) { grid-column: span 2; }   /* wide feature */
  .card:nth-child(2) { grid-row: span 2; }        /* tall accent */
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .shot img { transition: none; }
  * { scroll-behavior: auto !important; }
}
