/* ============================================================
   VOLTVISION — Website (carwow-bright direction)
   Shared stylesheet for all pages.
   Tokens mirror the design-system; this surface uses the
   LIGHT brand theme (cream paper + hot-pink accent).
   ============================================================ */

:root {
  --bg:         #FAF6F0;   /* cream page */
  --paper:      #FFFFFF;   /* card surface */
  --paper-2:    #F3EFE7;   /* sunken / image plate */
  --ink:        #14141A;   /* near-black text */
  --mute:       #6B6B72;   /* secondary text */
  --line:       #E8E2D8;   /* hairline border */
  --pink:       #FF1E5A;   /* primary accent */
  --pink-soft:  #FFE5EC;   /* tint bg */
  --pink-press: #E11050;   /* pressed */
  --green:      #00C46A;   /* savings / success */
  --green-soft: #DBF5E7;
  --amber:      #F59E0B;
  --amber-soft: #FDF0D5;
  --violet:     #7C5CFF;
  --violet-soft:#ECE6FF;

  --shadow:    0 6px 28px rgba(20,20,26,0.06);
  --shadow-lg: 0 20px 60px rgba(20,20,26,0.08);
  --shadow-pink: 0 8px 24px rgba(255,30,90,0.25);

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 100px;

  --maxw: 1200px;
  --pad:  56px;

  --font: 'Geist', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

h1, h2, h3, h4 { letter-spacing: -0.025em; line-height: 1.05; }
a { color: inherit; text-decoration: none; }
img { display: block; }
button { font-family: inherit; cursor: pointer; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

/* ── buttons ──────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 10px; border: none; border-radius: var(--r-pill); font-weight: 700; cursor: pointer; transition: transform .15s, background .15s, box-shadow .15s; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--pink); color: #fff; padding: 17px 30px; font-size: 16px; box-shadow: var(--shadow-pink); }
.btn-primary:hover { background: var(--pink-press); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); padding: 15px 28px; font-size: 15px; font-weight: 600; }
.btn-ghost:hover { background: var(--ink); color: var(--bg); }
.btn-dark { background: var(--ink); color: var(--bg); padding: 15px 26px; font-size: 15px; font-weight: 600; }
.btn-dark:hover { background: #000; }
.btn-block { width: 100%; justify-content: center; }

/* ── nav ──────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad);
  background: rgba(250,246,240,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { width: 30px; height: 30px; object-fit: contain; filter: brightness(0); }
.nav-logo b { font-size: 19px; font-weight: 800; letter-spacing: -0.03em; }
.nav-menu { display: flex; gap: 30px; }
.nav-menu a { color: var(--ink); font-weight: 500; font-size: 15px; position: relative; white-space: nowrap; }
.nav-menu a:hover { color: var(--pink); }
.nav-menu a.active { color: var(--pink); }
.nav-menu a.active::after { content: ''; position: absolute; left: 0; right: 0; bottom: -22px; height: 2px; background: var(--pink); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-phone { font-weight: 600; font-size: 14px; color: var(--ink); display: flex; align-items: center; gap: 7px; white-space: nowrap; }
.nav-burger { display: none; background: none; border: none; }

/* ── hero ─────────────────────────────────────────────────── */
.hero { display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; padding: 60px var(--pad) 52px; align-items: center; max-width: var(--maxw); margin: 0 auto; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; background: var(--pink-soft); color: var(--pink); padding: 7px 14px; border-radius: var(--r-pill); font-weight: 600; font-size: 13px; margin-bottom: 22px; }
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--pink); }
.hero h1 { font-size: 70px; font-weight: 800; margin-bottom: 22px; max-width: 11ch; }
.hero h1 em { font-style: normal; color: var(--pink); position: relative; white-space: nowrap; }
.hero h1 em::after { content: ''; position: absolute; left: -2%; right: -2%; bottom: 4px; height: 14px; background: var(--pink-soft); z-index: -1; border-radius: 4px; }
.hero-lead { font-size: 19px; line-height: 1.5; color: var(--mute); max-width: 44ch; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.trust { display: flex; gap: 14px; align-items: center; margin-top: 34px; }
.trust-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--line) center 18%/180% no-repeat; background-image: url('assets/dennis_freigestellt.png'); border: 2px solid var(--paper); box-shadow: var(--shadow); }
.trust-text { font-size: 14px; color: var(--mute); }
.trust-text b { color: var(--ink); font-weight: 600; }

/* hero visual card */
.hero-visual { position: relative; background: var(--paper); border-radius: var(--r-xl); box-shadow: var(--shadow-lg); height: 460px; padding: 28px; display: flex; flex-direction: column; overflow: hidden; }
.hero-visual::before { content: ''; position: absolute; left: 50%; top: -120px; width: 520px; height: 520px; border-radius: 50%; background: var(--pink-soft); transform: translateX(-50%); z-index: 0; }
.hv-top { display: flex; justify-content: space-between; align-items: flex-start; position: relative; z-index: 1; }
.savings-tag { background: var(--ink); color: #fff; padding: 12px 16px; border-radius: 14px; display: flex; flex-direction: column; }
.savings-tag .lbl { font-size: 11px; opacity: .7; font-weight: 500; letter-spacing: .04em; text-transform: uppercase; }
.savings-tag .val { font-size: 26px; font-weight: 800; letter-spacing: -.02em; }
.savings-tag .val em { font-style: normal; color: var(--pink); }
.stock-pill { background: var(--green-soft); color: var(--green); padding: 6px 12px; border-radius: var(--r-pill); font-size: 12px; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.stock-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.hv-car { flex: 1; position: relative; z-index: 1; margin-top: 8px; display: flex; align-items: center; justify-content: center; }
.hv-car img { width: 100%; height: 240px; object-fit: contain; }
.hv-bottom { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: end; }
.hv-model { font-size: 22px; font-weight: 700; letter-spacing: -.02em; }
.hv-model small { display: block; color: var(--mute); font-weight: 500; font-size: 13px; margin-top: 2px; }
.hv-price { text-align: right; }
.hv-price .strike { color: var(--mute); text-decoration: line-through; font-size: 14px; }
.hv-price .now { font-size: 26px; font-weight: 800; letter-spacing: -.02em; }

/* ── stat strip ───────────────────────────────────────────── */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 40px var(--pad) 60px; max-width: var(--maxw); margin: 0 auto; }
.stat { background: var(--paper); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow); }
.stat .num { font-size: 52px; font-weight: 800; letter-spacing: -.04em; line-height: .95; }
.stat .num.pink { color: var(--pink); }
.stat .lbl { color: var(--mute); font-size: 14px; margin-top: 10px; font-weight: 500; }

/* ── sections ─────────────────────────────────────────────── */
.section { padding: 56px var(--pad); max-width: var(--maxw); margin: 0 auto; }
.section-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 40px; gap: 32px; }
.section-head h2 { font-size: 44px; font-weight: 800; max-width: 18ch; line-height: 1.05; }
.section-head p { color: var(--mute); max-width: 36ch; font-size: 16px; }
.eb-mini { font-size: 13px; font-weight: 600; color: var(--pink); margin-bottom: 12px; letter-spacing: .06em; text-transform: uppercase; }

/* ── benefits ─────────────────────────────────────────────── */
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bcard { background: var(--paper); border-radius: var(--r-lg); padding: 32px 28px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 16px; min-height: 210px; }
.bcard.feature { background: var(--ink); color: var(--bg); }
.bcard.feature h3 { color: var(--bg); }
.bcard.feature p { color: rgba(255,255,255,.65); }
.bicon { width: 56px; height: 56px; border-radius: var(--r-md); background: var(--pink-soft); color: var(--pink); display: flex; align-items: center; justify-content: center; font-size: 26px; }
.bcard.feature .bicon { background: rgba(255,30,90,.18); }
.bcard h3 { font-size: 19px; font-weight: 700; letter-spacing: -.015em; }
.bcard p { color: var(--mute); font-size: 14.5px; line-height: 1.55; }

/* ── vehicles ─────────────────────────────────────────────── */
.chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.chip { background: var(--paper); border: 1px solid var(--line); padding: 10px 18px; border-radius: var(--r-pill); font-weight: 500; font-size: 14px; cursor: pointer; color: var(--ink); transition: background .15s, color .15s, border-color .15s; }
.chip:hover { border-color: var(--ink); }
.chip.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.vehicles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.vcard { background: var(--paper); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s; }
.vcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.vimg { position: relative; aspect-ratio: 16/10; background: linear-gradient(180deg, #F3EFE7 0%, #E8E2D6 100%); overflow: hidden; }
.vimg img.photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 18px; transition: transform .4s cubic-bezier(.2,.7,.3,1); }
.vcard:hover .vimg img.photo { transform: scale(1.04); }
.vimg .placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--mute); font-size: 13px; font-weight: 500; text-align: center; padding: 20px; }
.vbadge { position: absolute; left: 16px; top: 16px; background: var(--pink); color: #fff; padding: 6px 12px; border-radius: var(--r-pill); font-weight: 700; font-size: 13px; z-index: 2; white-space: nowrap; }
.vbrand { position: absolute; right: 16px; top: 16px; background: rgba(255,255,255,.92); backdrop-filter: blur(8px); padding: 6px 12px; border-radius: var(--r-pill); font-weight: 700; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; z-index: 2; }
.vbody { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.vbody h4 { font-size: 18px; font-weight: 700; letter-spacing: -.015em; line-height: 1.25; }
.vmeta { display: flex; gap: 14px; font-size: 13px; color: var(--mute); }
.vmeta span { display: flex; align-items: center; gap: 5px; }
.vrow { display: flex; justify-content: space-between; align-items: end; margin-top: auto; }
.vprice .strike { font-size: 13px; color: var(--mute); text-decoration: line-through; }
.vprice .now { font-size: 22px; font-weight: 800; letter-spacing: -.02em; }
.vsavings { background: var(--green-soft); color: var(--green); padding: 6px 12px; border-radius: 10px; font-weight: 700; font-size: 13px; }
.vrate { border-top: 1px solid var(--line); padding-top: 14px; font-size: 14px; color: var(--mute); display: flex; flex-direction: column; gap: 2px; }
.vrate b { color: var(--ink); font-size: 17px; font-weight: 800; letter-spacing: -.01em; }
.vrate span { font-size: 11px; color: var(--mute); }

/* customer-type badges (catalog/modal) */
.typ { display: inline-block; padding: 3px 11px; border-radius: var(--r-pill); font-size: 12px; font-weight: 600; }
.typ-privat { background: var(--pink-soft); color: var(--pink); }
.typ-gewerb { background: var(--amber-soft); color: var(--amber); }
.typ-schwb  { background: var(--violet-soft); color: var(--violet); }
.typ-fremd  { background: var(--green-soft); color: var(--green); }

/* ── quote (dark) ─────────────────────────────────────────── */
.quote-band { padding: 0 var(--pad); max-width: var(--maxw); margin: 0 auto; }
.quote { background: var(--ink); color: var(--bg); border-radius: 36px; padding: 56px; display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: center; }
.quote img { width: 240px; height: 280px; object-fit: cover; object-position: top; border-radius: 28px; background: #222; }
.quote blockquote { font-size: 30px; font-weight: 500; line-height: 1.25; letter-spacing: -.018em; color: var(--bg); }
.quote-attr { margin-top: 24px; font-size: 14px; color: rgba(255,255,255,.6); }
.quote-attr b { color: var(--bg); display: block; font-size: 16px; font-weight: 600; }

/* ── footer CTA band ──────────────────────────────────────── */
.foot-cta { padding: 90px var(--pad); text-align: center; }
.foot-cta h2 { font-size: 58px; font-weight: 800; margin-bottom: 16px; letter-spacing: -.03em; line-height: 1.02; }
.foot-cta h2 em { font-style: normal; color: var(--pink); }
.foot-cta p { color: var(--mute); font-size: 18px; margin: 0 auto 32px; max-width: 50ch; }

/* ── real footer ──────────────────────────────────────────── */
.footer { background: var(--ink); color: var(--bg); padding: 64px var(--pad) 40px; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .nav-logo img { filter: brightness(0) invert(1); }
.footer-brand .nav-logo b { color: var(--bg); }
.footer-brand p { color: rgba(255,255,255,.55); font-size: 14px; margin-top: 16px; max-width: 30ch; line-height: 1.6; }
.footer-col h5 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.5); margin-bottom: 18px; }
.footer-col a { display: block; color: rgba(255,255,255,.8); font-size: 14.5px; margin-bottom: 12px; }
.footer-col a:hover { color: var(--pink); }
.footer-bottom { max-width: var(--maxw); margin: 48px auto 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: rgba(255,255,255,.5); font-size: 13px; }
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--bg); }

/* ── page header (sub-pages) ──────────────────────────────── */
.page-head { padding: 64px var(--pad) 32px; max-width: var(--maxw); margin: 0 auto; }
.page-head h1 { font-size: 56px; font-weight: 800; letter-spacing: -.03em; margin-bottom: 16px; }
.page-head h1 em { font-style: normal; color: var(--pink); }
.page-head p { font-size: 19px; color: var(--mute); max-width: 52ch; }

/* ── how it works (steps) ─────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { background: var(--paper); border-radius: var(--r-lg); padding: 32px 28px; box-shadow: var(--shadow); position: relative; }
.step-num { width: 44px; height: 44px; border-radius: 50%; background: var(--pink-soft); color: var(--pink); font-weight: 800; font-size: 18px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.step h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.step p { color: var(--mute); font-size: 14.5px; line-height: 1.55; }

/* ── finance calculator ───────────────────────────────────── */
.calc { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px; max-width: var(--maxw); margin: 0 auto; align-items: start; }
.calc-panel { background: var(--paper); border-radius: var(--r-lg); padding: 36px; box-shadow: var(--shadow); }
.calc-toggle { display: flex; gap: 8px; background: var(--paper-2); padding: 6px; border-radius: var(--r-pill); margin-bottom: 28px; }
.calc-toggle button { flex: 1; padding: 11px; border-radius: var(--r-pill); border: none; background: transparent; color: var(--mute); font-weight: 600; font-size: 14px; }
.calc-toggle button.active { background: var(--ink); color: var(--bg); }
.field { margin-bottom: 24px; }
.field label { display: flex; justify-content: space-between; font-size: 14px; font-weight: 600; margin-bottom: 10px; }
.field label .v { color: var(--pink); font-weight: 800; }
.field input[type=range] { width: 100%; accent-color: var(--pink); height: 6px; }
.field-num input, .field-num select { width: 100%; padding: 13px 16px; background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-sm); font-size: 16px; font-family: inherit; color: var(--ink); outline: none; }
.field-num input:focus, .field-num select:focus { border-color: var(--pink); }
.calc-result { background: var(--ink); color: var(--bg); border-radius: var(--r-lg); padding: 36px; position: sticky; top: 90px; }
.calc-result .rate { font-size: 14px; color: rgba(255,255,255,.6); }
.calc-result .rate-big { font-size: 64px; font-weight: 800; letter-spacing: -.04em; line-height: 1; margin: 8px 0 4px; }
.calc-result .rate-big em { font-style: normal; color: var(--pink); }
.calc-result .rate-sub { color: rgba(255,255,255,.6); font-size: 14px; margin-bottom: 28px; }
.calc-breakdown { display: flex; flex-direction: column; gap: 14px; border-top: 1px solid rgba(255,255,255,.12); padding-top: 24px; }
.calc-breakdown .brow { display: flex; justify-content: space-between; font-size: 15px; }
.calc-breakdown .brow span { color: rgba(255,255,255,.6); }
.calc-breakdown .brow b { font-weight: 700; }
.calc-note { font-size: 12px; color: var(--mute); margin-top: 20px; }

/* ── about ────────────────────────────────────────────────── */
.about { display: grid; grid-template-columns: 380px 1fr; gap: 56px; align-items: start; max-width: var(--maxw); margin: 0 auto; padding: 20px var(--pad) 40px; }
.about-photo { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--paper-2); }
.about-photo img { width: 100%; height: 460px; object-fit: cover; object-position: top; }
.about-body h2 { font-size: 38px; font-weight: 800; margin-bottom: 6px; }
.about-body .role { color: var(--pink); font-weight: 600; margin-bottom: 24px; }
.about-body p { color: var(--mute); font-size: 16.5px; line-height: 1.65; margin-bottom: 18px; }
.about-body p strong { color: var(--ink); }
.about-high { display: flex; gap: 18px; margin-top: 32px; flex-wrap: wrap; }
.about-high .h { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); padding: 18px 22px; flex: 1; min-width: 130px; }
.about-high .h .n { font-size: 30px; font-weight: 800; color: var(--pink); }
.about-high .h .l { font-size: 13px; color: var(--mute); margin-top: 4px; }

/* ── contact ──────────────────────────────────────────────── */
.contact { display: grid; grid-template-columns: 340px 1fr; gap: 56px; max-width: var(--maxw); margin: 0 auto; padding: 20px var(--pad) 40px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.ci-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; }
.ci-item { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.ci-item:last-child { margin-bottom: 0; }
.ci-ic { width: 44px; height: 44px; border-radius: 12px; background: var(--pink-soft); color: var(--pink); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.ci-item .lbl { font-size: 13px; color: var(--mute); font-weight: 600; }
.ci-item .val { font-size: 15.5px; font-weight: 600; margin-top: 2px; }
.ci-item .val a { color: var(--ink); }
.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 40px; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fg { display: flex; flex-direction: column; gap: 8px; }
.fg.full { grid-column: 1 / -1; }
.fg label { font-size: 14px; font-weight: 600; }
.fg input, .fg select, .fg textarea { padding: 13px 16px; background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-sm); font-size: 15px; font-family: inherit; color: var(--ink); outline: none; transition: border-color .15s; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--pink); }
.fg textarea { resize: vertical; min-height: 120px; }
.dsgvo { display: flex; gap: 12px; align-items: flex-start; margin: 22px 0; font-size: 13.5px; color: var(--mute); line-height: 1.5; }
.dsgvo input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--pink); flex-shrink: 0; }
.dsgvo a { color: var(--pink); }
.form-success { display: none; background: var(--green-soft); color: var(--green); padding: 16px; border-radius: var(--r-sm); font-weight: 600; text-align: center; margin-top: 16px; }
.form-success.show { display: block; }

/* ── legal / prose ────────────────────────────────────────── */
.prose { max-width: 820px; margin: 0 auto; padding: 20px var(--pad) 40px; }
.prose .back { display: inline-flex; align-items: center; gap: 8px; color: var(--mute); font-size: 14px; font-weight: 500; margin-bottom: 32px; }
.prose .back:hover { color: var(--pink); }
.prose-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px 36px; margin-bottom: 18px; }
.prose h2 { font-size: 18px; font-weight: 700; color: var(--pink); margin-bottom: 12px; }
.prose .num { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--pink); margin-bottom: 8px; }
.prose p, .prose li { color: var(--mute); font-size: 15px; line-height: 1.75; margin-bottom: 10px; }
.prose strong { color: var(--ink); }
.prose ul { padding-left: 20px; margin-bottom: 10px; }
.prose a { color: var(--pink); }

/* ── modal ────────────────────────────────────────────────── */
.modal-overlay { position: fixed; inset: 0; z-index: 300; background: rgba(20,20,26,.55); backdrop-filter: blur(6px); display: none; align-items: center; justify-content: center; padding: 24px; }
.modal-overlay.open { display: flex; }
.modal { background: var(--bg); border-radius: var(--r-xl); width: 100%; max-width: 760px; max-height: 88vh; overflow-y: auto; padding: 36px; box-shadow: var(--shadow-lg); }
.modal-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; gap: 16px; }
.modal-brand { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--pink); }
.modal-title { font-size: 24px; font-weight: 800; letter-spacing: -.02em; margin-top: 4px; }
.modal-close { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); background: var(--paper); font-size: 18px; color: var(--mute); flex-shrink: 0; }
.modal-close:hover { border-color: var(--pink); color: var(--pink); }
.opt-table { width: 100%; border-collapse: collapse; }
.opt-table th { text-align: left; padding: 10px 12px; font-size: 12px; color: var(--mute); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; border-bottom: 1px solid var(--line); }
.opt-table td { padding: 14px 12px; font-size: 14px; border-bottom: 1px solid var(--line); }
.opt-row { cursor: pointer; transition: background .12s; }
.opt-row:hover { background: var(--pink-soft); }
.opt-row.sel { background: var(--pink-soft); }
.opt-radio { width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--line); display: inline-block; }
.opt-row.sel .opt-radio { background: var(--pink); border-color: var(--pink); box-shadow: inset 0 0 0 3px var(--paper); }
.opt-disc { color: var(--green); font-weight: 700; }

/* ── responsive ───────────────────────────────────────────── */
@media (max-width: 1080px) {
  :root { --pad: 32px; }
  .hero { grid-template-columns: 1fr; }
  .hero h1 { font-size: 56px; }
  .hero-visual { height: 400px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .benefits { grid-template-columns: 1fr 1fr; }
  .vehicles { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .calc { grid-template-columns: 1fr; }
  .calc-result { position: static; }
  .about { grid-template-columns: 1fr; }
  .about-photo img { height: 380px; }
  .contact { grid-template-columns: 1fr; }
  .quote { grid-template-columns: 1fr; text-align: center; }
  .quote img { margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-menu, .nav-phone { display: none; }
  .nav-burger { display: block; }
  .hero h1 { font-size: 42px; }
  .section-head { flex-direction: column; align-items: start; gap: 12px; }
  .section-head h2 { font-size: 32px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .benefits, .vehicles, .steps { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .foot-cta h2, .page-head h1 { font-size: 38px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .quote { padding: 36px 28px; }
  .quote blockquote { font-size: 23px; }
}
