/* =========================================================
   ATTILA-AUTÓ — Autómentés & Használtautó adás-vétel
   Design system: industrial charcoal + safety amber
   Type: Anton (display) / Sora (body)
   ========================================================= */

:root {
  /* Surfaces */
  --base: #0E0F12;
  --surface: #16181D;
  --elevated: #1F232A;
  --steel: #2A2F38;
  --steel-2: #3A4150;

  /* Accents */
  --amber: #FF7A00;
  --amber-soft: #ff9433;
  --red: #E5392E;
  --yellow: #FFC400;
  --green: #3FBF7F;

  /* Text */
  --text: #F5F6F7;
  --muted: #9AA1AC;
  --muted-2: #6B727E;

  /* Tokens */
  --maxw: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
  --gap: clamp(1rem, 3vw, 2rem);
  --section-pad: clamp(4rem, 9vw, 7.5rem);
  --ease: cubic-bezier(.16,1,.3,1);
  --shadow: 0 24px 60px -20px rgba(0,0,0,.7);
  --shadow-amber: 0 18px 50px -16px rgba(255,122,0,.45);

  --grain: 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='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

/* ---------- 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; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  font-family: 'Sora', system-ui, -apple-system, sans-serif;
  background: var(--base);
  color: var(--text);
  line-height: 1.65;
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  letter-spacing: .002em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }

/* Global page grain */
body::after {
  content: "";
  position: fixed; inset: 0;
  background-image: var(--grain);
  opacity: .035;
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: overlay;
}

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }
.container-narrow { max-width: 820px; }

.accent { color: var(--amber); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 10000;
  background: var(--amber); color: #1a1205; padding: .6rem 1rem; border-radius: 0 0 8px 0; font-weight: 700;
}
.skip-link:focus { left: 0; }

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

/* =========================================================
   Typography
   ========================================================= */
h1, h2, h3, h4 { line-height: 1.05; font-weight: 400; }
.hero-title, .section-head h2, .stat-num {
  font-family: 'Anton', 'Sora', sans-serif;
  text-transform: uppercase;
  letter-spacing: -.01em;
  font-weight: 400;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  --btn-bg: var(--amber);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: .98rem;
  padding: .85rem 1.4rem; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap; line-height: 1;
}
.btn svg { flex: none; }
.btn-call {
  background: linear-gradient(180deg, var(--amber-soft), var(--amber));
  color: #1a1205;
  box-shadow: var(--shadow-amber);
}
.btn-call:hover { transform: translateY(-2px); box-shadow: 0 22px 56px -14px rgba(255,122,0,.6); }
.btn-ghost {
  background: rgba(255,255,255,.03); color: var(--text);
  border-color: var(--steel-2);
}
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--amber); background: rgba(255,122,0,.08); }
.btn-block { width: 100%; }
.btn-lg { padding: 1.05rem 1.8rem; font-size: 1.05rem; }

/* =========================================================
   Header / Nav
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header[data-scrolled] {
  background: rgba(14,15,18,.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--steel);
  box-shadow: 0 10px 30px -18px rgba(0,0,0,.8);
}
.nav-wrap { display: flex; align-items: center; gap: 1.2rem; height: 74px; }

.brand { display: flex; align-items: center; gap: .65rem; flex: none; }
.brand-mark { color: var(--amber); display: grid; place-items: center; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-family: 'Anton', sans-serif; font-weight: 400; font-size: 1.15rem; letter-spacing: .02em; }
.brand-text small { color: var(--muted); font-size: .68rem; letter-spacing: .02em; }

.main-nav { display: flex; gap: clamp(.6rem, 1.6vw, 1.6rem); margin-left: auto; }
.main-nav a { color: var(--muted); font-size: .94rem; font-weight: 500; padding: .4rem .2rem; position: relative; transition: color .2s; }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--amber); transition: width .25s var(--ease); }
.main-nav a:hover { color: var(--text); }
.main-nav a:hover::after { width: 100%; }

.header-call { margin-left: .4rem; padding: .6rem 1rem; }
.header-call-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.05; }
.header-call-label { font-size: .62rem; font-weight: 600; opacity: .7; text-transform: uppercase; letter-spacing: .05em; }
.header-call-num { font-size: .98rem; font-weight: 800; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: .5rem; cursor: pointer; }
.nav-toggle span { width: 26px; height: 2.5px; background: var(--text); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-nav {
  display: none; flex-direction: column; gap: .25rem;
  padding: 1rem clamp(1.1rem, 4vw, 2rem) 1.6rem;
  background: rgba(14,15,18,.97); border-bottom: 1px solid var(--steel);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: .8rem .4rem; border-bottom: 1px solid var(--steel); color: var(--text); font-weight: 500; }
.mobile-nav a:last-child { border: 0; margin-top: .6rem; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2.5rem, 6vw, 4rem);
  min-height: min(88vh, 840px);
  display: flex; align-items: center;
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(255,122,0,.16), transparent 60%),
    radial-gradient(900px 500px at 0% 110%, rgba(63,191,127,.06), transparent 55%),
    linear-gradient(180deg, #0c0d10, var(--base));
}
.hero-glow {
  position: absolute; inset: 0; z-index: -2;
  background: radial-gradient(560px 420px at 80% 40%, rgba(255,122,0,.16), transparent 70%);
  filter: blur(6px);
}
.hero-grain { position: absolute; inset: 0; z-index: -1; background-image: var(--grain); opacity: .05; mix-blend-mode: overlay; }

.hero-grid {
  position: relative; z-index: 1; width: 100%;
  display: grid; grid-template-columns: 1.04fr .96fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.hero-content { max-width: 620px; }

/* Framed image card */
.hero-figure { position: relative; }
.hero-figure::before {
  content: ""; position: absolute; inset: -6% -5% -10% 2%; z-index: -1;
  background: radial-gradient(58% 58% at 68% 32%, rgba(255,122,0,.4), transparent 72%);
  filter: blur(34px);
}
.hero-card {
  position: relative; margin: 0; border-radius: 22px; overflow: hidden;
  border: 1px solid var(--steel-2); aspect-ratio: 5 / 6;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.85), inset 0 0 0 1px rgba(255,255,255,.03);
}
.hero-card img {
  width: 100%; height: 100%; object-fit: cover; object-position: 56% 50%;
  filter: saturate(1.03) contrast(1.04);
}
.hero-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,13,16,.18) 0%, transparent 32%, transparent 58%, rgba(12,13,16,.85) 100%);
}
.hero-badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 2; margin: 0;
  display: flex; flex-direction: column; align-items: center; line-height: 1;
  background: linear-gradient(180deg, var(--amber-soft), var(--amber)); color: #1a1205;
  padding: .55rem .95rem; border-radius: 14px; box-shadow: var(--shadow-amber);
}
.hero-badge strong { font-family: 'Anton', sans-serif; font-weight: 400; font-size: 1.55rem; }
.hero-badge span { font-size: .58rem; font-weight: 800; letter-spacing: .14em; }
.hero-chip {
  position: absolute; left: 1rem; right: 1rem; bottom: 1rem; z-index: 2;
  background: rgba(14,15,18,.62); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--steel-2); color: var(--text); font-weight: 600; font-size: .85rem;
  padding: .6rem .9rem; border-radius: 12px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.9rem 0 1.7rem; }

.hero-inner { position: relative; z-index: 1; max-width: 960px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .8rem; font-weight: 700; letter-spacing: .08em; color: var(--amber);
  background: rgba(255,122,0,.08); border: 1px solid rgba(255,122,0,.25);
  padding: .45rem .9rem; border-radius: 999px; margin-bottom: 1.4rem;
}
.pulse-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 0 rgba(255,122,0,.6); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(255,122,0,.55)} 70%{box-shadow:0 0 0 12px rgba(255,122,0,0)} 100%{box-shadow:0 0 0 0 rgba(255,122,0,0)} }

.hero-title {
  font-size: clamp(2.9rem, 9.5vw, 6.6rem);
  line-height: .92; margin-bottom: 1.2rem; letter-spacing: -.015em;
}
.hero-sub { font-size: clamp(1.05rem, 1rem + .6vw, 1.35rem); color: var(--muted); max-width: 640px; margin-bottom: 2.2rem; }
.hero-sub strong { color: var(--text); }

.hero-paths { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.8rem; }
.path-card {
  background: linear-gradient(180deg, var(--surface), #131519);
  border: 1px solid var(--steel); border-radius: var(--radius);
  padding: 1.4rem; display: flex; flex-direction: column; gap: .9rem;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.path-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.path-urgent { border-color: rgba(255,122,0,.4); }
.path-urgent:hover { border-color: var(--amber); }
.path-calm:hover { border-color: var(--steel-2); }
.path-tag { font-size: .78rem; font-weight: 800; letter-spacing: .04em; color: var(--text); }
.path-urgent .path-tag { color: var(--amber); }
.path-card p { color: var(--muted); font-size: .96rem; flex: 1; }
.path-note { color: var(--muted-2); font-size: .78rem; }

.hero-trust { display: flex; flex-wrap: wrap; gap: .6rem 1.6rem; color: var(--muted); font-size: .88rem; }
.hero-trust li { display: flex; align-items: center; gap: .45rem; }

/* Chooser band (dual-path) */
.chooser { padding-top: clamp(2.6rem, 6vw, 4rem); padding-bottom: clamp(2.6rem, 6vw, 4rem); }
.section-head-center { margin-inline: auto; text-align: center; }
.section-head-center .kicker { padding-left: 0; }
.section-head-center .kicker::before { display: none; }
.chooser .hero-paths { max-width: 860px; margin: 0 auto; }

/* =========================================================
   Sections (generic)
   ========================================================= */
.section { position: relative; padding: var(--section-pad) 0; }
.section-alt { background: linear-gradient(180deg, #0c0d10, #101216 40%, #0c0d10); }

.section-head { max-width: 760px; margin-bottom: clamp(2.2rem, 5vw, 3.4rem); }
.kicker {
  display: inline-block; font-size: .76rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--amber); margin-bottom: .9rem;
  padding-left: 2.4rem; position: relative;
}
.kicker::before { content: ""; position: absolute; left: 0; top: 50%; width: 1.8rem; height: 2px; background: var(--amber); }
.section-head h2 { font-size: clamp(1.9rem, 1.4rem + 2.6vw, 3.4rem); margin-bottom: 1rem; }
.section-lead { color: var(--muted); font-size: clamp(1rem, .98rem + .3vw, 1.15rem); }

.section-cta { margin-top: 2.6rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center; }
.section-cta p { color: var(--muted); font-weight: 500; }

.hazard-strip {
  position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: repeating-linear-gradient(135deg, var(--amber) 0 18px, #1a1205 18px 36px);
  opacity: .85;
}

/* =========================================================
   Benefit grid
   ========================================================= */
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.benefit {
  background: linear-gradient(180deg, var(--surface), #131519);
  border: 1px solid var(--steel); border-radius: var(--radius);
  padding: 1.7rem 1.5rem; transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.benefit:hover { transform: translateY(-4px); border-color: var(--amber); box-shadow: 0 20px 50px -24px rgba(255,122,0,.35); }
.benefit-icon { font-size: 1.7rem; width: 3.2rem; height: 3.2rem; display: grid; place-items: center; border-radius: 12px; background: rgba(255,122,0,.1); border: 1px solid rgba(255,122,0,.22); margin-bottom: 1.1rem; }
.benefit h3 { font-size: 1.18rem; font-weight: 700; font-family: 'Sora', sans-serif; margin-bottom: .5rem; }
.benefit p { color: var(--muted); font-size: .95rem; }

/* =========================================================
   Service grid (bento-ish)
   ========================================================= */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.service-card {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--elevated), var(--surface));
  border: 1px solid var(--steel); border-radius: var(--radius);
  padding: 1.7rem 1.5rem; transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.service-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(220px 120px at 100% 0%, rgba(255,122,0,.12), transparent 70%); opacity: 0; transition: opacity .3s; }
.service-card:hover { transform: translateY(-4px); border-color: var(--amber); }
.service-card:hover::before { opacity: 1; }
.service-icon { font-size: 1.9rem; margin-bottom: 1rem; }
.service-card h3 { font-size: 1.14rem; font-weight: 700; font-family: 'Sora', sans-serif; margin-bottom: .5rem; }
.service-card p { color: var(--muted); font-size: .94rem; }

/* =========================================================
   Steps (timeline)
   ========================================================= */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; counter-reset: step; }
.step { position: relative; background: var(--surface); border: 1px solid var(--steel); border-radius: var(--radius); padding: 2.4rem 1.4rem 1.5rem; }
.step-num {
  position: absolute; top: -22px; left: 1.4rem;
  width: 46px; height: 46px; display: grid; place-items: center;
  font-family: 'Anton', sans-serif; font-size: 1.4rem; color: #1a1205;
  background: linear-gradient(180deg, var(--amber-soft), var(--amber));
  border-radius: 12px; box-shadow: var(--shadow-amber);
}
.step h3 { font-size: 1.1rem; font-weight: 700; font-family: 'Sora', sans-serif; margin-bottom: .5rem; }
.step p { color: var(--muted); font-size: .92rem; }

/* =========================================================
   Stats band
   ========================================================= */
.stats-band {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, #1a1205 0%, #2a1a02 50%, #0E0F12 100%);
  border-block: 1px solid var(--steel);
  padding: clamp(2.8rem, 6vw, 4.2rem) 0;
}
.stats-grain { position: absolute; inset: 0; background-image: var(--grain); opacity: .06; mix-blend-mode: overlay; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; position: relative; }
.stat { display: flex; flex-direction: column; gap: .4rem; }
.stat-num { font-size: clamp(2.4rem, 1.6rem + 3.4vw, 4rem); color: var(--amber); line-height: 1; }
.stat-text { letter-spacing: 0; }
.stat-label { color: var(--muted); font-size: .9rem; max-width: 18ch; margin-inline: auto; }

/* =========================================================
   Used cars
   ========================================================= */
.usedcar-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem, 4vw, 3.2rem); align-items: start; }
.usedcar-copy h2 { font-size: clamp(1.8rem, 1.4rem + 2.2vw, 3rem); margin-bottom: 1rem; }
.mini-steps { display: flex; flex-direction: column; gap: .7rem; margin: 1.6rem 0; }
.mini-steps li { color: var(--muted); padding-left: 1.4rem; position: relative; font-size: .96rem; }
.mini-steps li::before { content: ""; position: absolute; left: 0; top: .55em; width: 8px; height: 8px; background: var(--amber); border-radius: 50%; }
.mini-steps strong { color: var(--text); }
.trade-in { display: flex; align-items: center; gap: 1.1rem; background: rgba(255,122,0,.08); border: 1px solid rgba(255,122,0,.28); border-radius: var(--radius-sm); padding: 1rem 1.2rem; color: var(--muted); }
.trade-in p { margin: 0; }
.trade-in strong { color: var(--amber); }
.trade-in-img { width: 88px; height: 88px; flex: none; object-fit: cover; border-radius: 12px; border: 1px solid var(--steel-2); }

/* Used-car showroom banner */
.usedcar-banner { position: relative; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--steel); margin-bottom: clamp(1.6rem, 4vw, 2.6rem); box-shadow: var(--shadow); aspect-ratio: 16 / 6; max-height: 360px; }
.usedcar-banner img { width: 100%; height: 100%; object-fit: cover; object-position: center 58%; }
.usedcar-banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,13,16,.05) 40%, rgba(12,13,16,.6)); }
.usedcar-banner-tag { position: absolute; left: 1.1rem; bottom: 1rem; z-index: 1; background: rgba(14,15,18,.66); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border: 1px solid var(--steel-2); color: var(--text); font-weight: 700; font-size: .88rem; padding: .5rem 1rem; border-radius: 999px; }

/* Parallax statement band */
.parallax-band { position: relative; isolation: isolate; overflow: hidden; min-height: clamp(360px, 58vh, 540px); display: flex; align-items: center; padding: clamp(3rem, 8vw, 6rem) 0; }
.parallax-bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center 30%; background-repeat: no-repeat; }
.parallax-overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(12,13,16,.84), rgba(12,13,16,.72)), radial-gradient(820px 420px at 18% 50%, rgba(255,122,0,.16), transparent 62%); }
.parallax-inner { max-width: 660px; }
.parallax-title { font-family: 'Anton', sans-serif; text-transform: uppercase; letter-spacing: -.01em; font-size: clamp(2.1rem, 1.4rem + 3.2vw, 3.8rem); line-height: .98; margin: .4rem 0 1.1rem; }
.parallax-inner p { color: var(--muted); font-size: clamp(1rem, .98rem + .35vw, 1.18rem); margin-bottom: 1.7rem; max-width: 52ch; }
@media (min-width: 880px) and (prefers-reduced-motion: no-preference) {
  .parallax-bg { background-attachment: fixed; }
}

/* Contact background photo */
.contact-bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; opacity: .2; filter: saturate(.8) brightness(.55); }
.contact-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, var(--base), transparent 30%, transparent 70%, var(--base)); }

.usedcar-form {
  background: linear-gradient(180deg, var(--elevated), var(--surface));
  border: 1px solid var(--steel); border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 2.2rem); box-shadow: var(--shadow);
}
.usedcar-form h3 { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.35rem; margin-bottom: .4rem; }
.form-sub { color: var(--muted); font-size: .92rem; margin-bottom: 1.4rem; }
.form-sub a { color: var(--amber); font-weight: 700; }
.field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { font-size: .82rem; font-weight: 600; color: var(--muted); }
.field .opt { color: var(--muted-2); font-weight: 400; }
.field input, .field textarea {
  font-family: inherit; font-size: .98rem; color: var(--text);
  background: var(--base); border: 1px solid var(--steel-2); border-radius: var(--radius-sm);
  padding: .8rem .9rem; transition: border-color .2s, box-shadow .2s; resize: vertical;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--amber); box-shadow: 0 0 0 3px rgba(255,122,0,.18); }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.form-hint { font-size: .78rem; color: var(--muted-2); margin-top: .8rem; text-align: center; }
.form-hint.ok { color: var(--green); }

/* =========================================================
   Coverage area
   ========================================================= */
.area-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.town-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: .55rem .9rem; margin: 1.6rem 0 1rem; }
.town-list li { display: flex; align-items: center; gap: .55rem; color: var(--text); font-weight: 500; font-size: .96rem; }
.town-list li::before { content: "📍"; font-size: .85rem; }
.area-roads { color: var(--muted); font-size: .9rem; }
.area-map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--steel); box-shadow: var(--shadow); aspect-ratio: 4/3; background: var(--surface); }
.area-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.3) contrast(1.05); }

/* =========================================================
   Reviews
   ========================================================= */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.review { background: var(--surface); border: 1px solid var(--steel); border-radius: var(--radius); padding: 1.7rem; transition: transform .3s var(--ease), border-color .3s var(--ease); }
.review:hover { transform: translateY(-4px); border-color: var(--steel-2); }
.stars { color: var(--yellow); letter-spacing: .15em; margin-bottom: .8rem; }
.review blockquote { color: var(--text); font-size: 1.02rem; line-height: 1.55; margin-bottom: 1rem; }
.review figcaption { color: var(--muted); font-size: .88rem; font-weight: 600; }

/* =========================================================
   FAQ
   ========================================================= */
.faq { display: flex; flex-direction: column; gap: .7rem; }
.faq-item { background: var(--surface); border: 1px solid var(--steel); border-radius: var(--radius-sm); overflow: hidden; transition: border-color .2s; }
.faq-item[open] { border-color: rgba(255,122,0,.35); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1.15rem 1.3rem; font-weight: 700; font-size: 1.02rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-family: 'Anton', sans-serif; font-size: 1.5rem; color: var(--amber); transition: transform .3s var(--ease); line-height: 1; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 1.3rem 1.2rem; color: var(--muted); }

/* =========================================================
   Contact / CTA
   ========================================================= */
.contact { overflow: hidden; isolation: isolate; }
.contact-glow { position: absolute; inset: 0; z-index: -1; background: radial-gradient(700px 360px at 50% 0%, rgba(255,122,0,.16), transparent 65%); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; margin-bottom: 2.4rem; }
.contact-cta {
  display: flex; flex-direction: column; gap: .35rem; text-align: center;
  padding: 2rem 1.5rem; border-radius: var(--radius); border: 1px solid var(--steel);
  background: linear-gradient(180deg, var(--surface), #131519);
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.contact-cta:hover { transform: translateY(-4px); }
.cta-urgent { border-color: rgba(255,122,0,.4); }
.cta-urgent:hover { border-color: var(--amber); box-shadow: var(--shadow-amber); }
.cta-calm:hover { border-color: var(--steel-2); }
.cta-tag { font-size: .82rem; font-weight: 700; color: var(--muted); }
.cta-urgent .cta-tag { color: var(--amber); }
.cta-main { font-family: 'Anton', sans-serif; font-size: clamp(1.6rem, 1.2rem + 1.8vw, 2.4rem); }
.cta-sub { color: var(--muted); font-size: .88rem; }

.contact-details { display: flex; flex-wrap: wrap; gap: 1rem 2.4rem; justify-content: center; padding-top: 2rem; border-top: 1px solid var(--steel); }
.contact-details li { display: flex; flex-direction: column; gap: .15rem; text-align: center; }
.cd-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted-2); }
.contact-details a, .contact-details span:not(.cd-label) { font-weight: 600; }
.contact-details a:hover { color: var(--amber); }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: #0a0b0d; border-top: 1px solid var(--steel); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; padding: clamp(2.6rem, 5vw, 3.6rem) 0; }
.footer-brand .brand-text strong { font-family: 'Anton', sans-serif; font-weight: 400; font-size: 1.4rem; }
.footer-brand .brand-text { margin-bottom: 1rem; }
.footer-brand .brand-text small { color: var(--amber); }
.footer-brand p { color: var(--muted); font-size: .92rem; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: .55rem; }
.footer-links h4, .footer-contact h4 { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted-2); margin-bottom: .4rem; font-weight: 700; }
.footer-links a, .footer-contact a, .footer-contact span { color: var(--muted); font-size: .94rem; transition: color .2s; }
.footer-links a:hover, .footer-contact a:hover { color: var(--amber); }
.footer-bottom { border-top: 1px solid var(--steel); padding: 1.2rem 0; }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-bottom span { color: var(--muted-2); font-size: .82rem; }

/* =========================================================
   Mobile call bar
   ========================================================= */
.mobile-callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1200;
  display: none; align-items: center; gap: .6rem;
  padding: .85rem 1.1rem calc(.85rem + env(safe-area-inset-bottom, 0));
  background: linear-gradient(180deg, var(--amber-soft), var(--amber)); color: #1a1205;
  font-weight: 800; box-shadow: 0 -10px 30px -10px rgba(0,0,0,.6);
}
.mobile-callbar span { flex: 1; font-size: .78rem; font-weight: 700; opacity: .85; }
.mobile-callbar strong { font-size: 1.05rem; }

/* =========================================================
   Scroll reveal
   ========================================================= */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-call .header-call-text { display: none; }
  .header-call { padding: .6rem; }
  .hero { min-height: 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-content { max-width: none; }
  .hero-figure { order: 2; max-width: 520px; margin-inline: auto; width: 100%; }
  .hero-card { aspect-ratio: 4 / 3; }
  .benefit-grid, .service-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 2.2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .usedcar-layout, .area-layout { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .hero-paths { grid-template-columns: 1fr; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { width: 100%; white-space: normal; }
  .hero-card { aspect-ratio: 5 / 4; }
  .benefit-grid, .service-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .town-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { justify-content: center; text-align: center; }
  .mobile-callbar { display: flex; }
  body { padding-bottom: 64px; }
  .header-call { display: none; }
}
