/* =========================================================================
   Automobile Voßberg — Referenz-Demo (Medientrupp)
   Premium-Autohaus, dunkel + Gold. Alle Inhalte fiktiv/anonymisiert.
   ========================================================================= */

:root {
  --bg:        #0b0d10;
  --bg-2:      #0d1014;
  --bg-3:      #08090b;
  --surface:   #12161b;
  --surface-2: #161b22;
  --line:      rgba(255, 255, 255, 0.10);
  --line-2:    rgba(255, 255, 255, 0.06);
  --text:      #f4f6f8;
  --muted:     #aab3be;
  --muted-2:   #7c8590;
  --gold:      #d9a441;
  --gold-hi:   #ecc06a;
  --emerald:   #34d399;
  --maxw:      1200px;
  --radius:    16px;
}

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

/* Icons: Lucide-Stil (stroke). Gefüllte Sterne separat. */
svg { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.stars svg, svg.filled { fill: currentColor; stroke: none; }

html { scroll-behavior: smooth; }

body {
  font-family: "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

section { position: relative; }
.scroll-anchor { scroll-margin-top: 120px; }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 14.5px; font-weight: 700; border-radius: 999px;
  padding: 13px 24px; cursor: pointer; border: 1px solid transparent;
  transition: background-color .2s, border-color .2s, color .2s, transform .2s;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-gold { background: var(--gold); color: #10130f; }
.btn-gold:hover { background: var(--gold-hi); }
.btn-ghost { border-color: rgba(255,255,255,.18); color: var(--text); }
.btn-ghost:hover { background: rgba(255,255,255,.05); }
.btn-sm { padding: 9px 16px; font-size: 13px; }

/* ── Eyebrow / headings ──────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: rgba(217,164,65,.55); }

h1, h2, h3 { line-height: 1.1; letter-spacing: -.01em; font-weight: 800; }
.h1 { font-size: clamp(34px, 5vw, 54px); }
.h2 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 800; }
.lead { color: var(--muted); font-size: 16px; max-width: 60ch; }
.gold { color: var(--gold); }

/* ── Announcement / Preview bar ──────────────────────────────────────────── */
.preview-bar {
  background: #1a1206;
  border-bottom: 1px solid #3a2c12;
}
.preview-bar .container {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 9px 20px; text-align: center;
}
.preview-bar .dot {
  width: 20px; height: 20px; border-radius: 999px; flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(217,164,65,.2); color: var(--gold-hi);
}
.preview-bar p { font-size: 12.5px; color: #f0dcae; }
.preview-bar strong { color: #f6e4bb; }

/* ── Header / nav ────────────────────────────────────────────────────────── */
.site-header { position: sticky; top: 0; z-index: 50; }
.nav-wrap { background: rgba(11,13,16,.9); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 20px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand-badge {
  width: 38px; height: 38px; border-radius: 10px; background: var(--gold); color: #10130f;
  display: inline-flex; align-items: center; justify-content: center;
}
.brand-badge svg { width: 20px; height: 20px; }
.brand-name { font-size: 15.5px; font-weight: 800; letter-spacing: -.01em; }
.brand-tag { font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase; color: rgba(217,164,65,.85); margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 13.5px; font-weight: 500; color: var(--muted); transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 700; }
.nav-phone svg { width: 15px; height: 15px; color: var(--gold); }
.nav-toggle { display: none; width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line); background: transparent; color: var(--text); cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle svg { width: 20px; height: 20px; }
.mobile-menu { display: none; border-top: 1px solid var(--line); padding: 14px 20px; background: rgba(11,13,16,.98); }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 11px 12px; border-radius: 10px; font-size: 15px; color: var(--muted); }
.mobile-menu a:hover { background: rgba(255,255,255,.05); color: var(--text); }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero { background: var(--bg); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(70% 60% at 78% 12%, rgba(217,164,65,.14), transparent 60%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center; padding: 64px 0 72px; }
.hero h1 { margin-top: 20px; }
.hero .lead { margin-top: 22px; }
.hero-actions { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }
.hero-trust { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 24px; margin-top: 34px; }
.stars { display: inline-flex; gap: 2px; }
.stars svg { width: 15px; height: 15px; color: var(--gold); fill: var(--gold); }
.trust-item { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; color: var(--muted); }
.trust-item svg { width: 15px; height: 15px; color: var(--gold); }
.trust-item strong { color: var(--text); }

.hero-media { position: relative; }
.hero-photo {
  position: relative; border-radius: 22px; overflow: hidden;
  border: 1px solid var(--line); box-shadow: 0 30px 80px rgba(0,0,0,.55);
}
.hero-photo img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.hero-photo .tagline {
  position: absolute; left: 16px; top: 16px;
  background: rgba(0,0,0,.5); backdrop-filter: blur(6px);
  border: 1px solid rgba(217,164,65,.35); color: var(--gold-hi);
  font-size: 11px; font-weight: 700; padding: 6px 12px; border-radius: 999px;
}
.float-card {
  position: absolute; left: -22px; top: 50%; transform: translateY(-50%);
  display: flex; align-items: center; gap: 12px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px;
  padding: 12px 16px; box-shadow: 0 20px 50px rgba(0,0,0,.5);
}
.float-card .ic { width: 38px; height: 38px; border-radius: 999px; background: rgba(52,211,153,.15); color: var(--emerald); display: inline-flex; align-items: center; justify-content: center; }
.float-card .ic svg { width: 18px; height: 18px; }
.float-card .t { font-size: 12.5px; font-weight: 700; }
.float-card .s { font-size: 11px; color: var(--muted); }

/* ── Page banner (subpages) ──────────────────────────────────────────────── */
.page-banner { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.page-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .32; }
.page-banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,13,16,.5), rgba(11,13,16,.92)); }
.page-banner .container { position: relative; z-index: 1; padding: 72px 20px 54px; }
.page-banner .lead { margin-top: 14px; }
.breadcrumb { font-size: 12.5px; color: var(--muted-2); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--gold); }

/* ── Stats strip ─────────────────────────────────────────────────────────── */
.stats { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { text-align: center; padding: 28px 12px; border-left: 1px solid var(--line); }
.stat:first-child { border-left: none; }
.stat .v { font-size: clamp(28px, 3vw, 34px); font-weight: 800; }
.stat .l { font-size: 12.5px; color: var(--muted); margin-top: 4px; }

/* ── Brands ──────────────────────────────────────────────────────────────── */
.brands { padding: 32px 0; text-align: center; }
.brands .cap { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-2); }
.brand-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 32px; margin-top: 18px; }
.brand-row span { font-size: 14px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); transition: color .2s; }
.brand-row span:hover { color: var(--text); }

/* ── Section shell ───────────────────────────────────────────────────────── */
.sec { padding: 80px 0; }
.sec-2 { background: var(--bg-2); border-top: 1px solid var(--line); }
.sec-head { max-width: 620px; }
.sec-head.center { margin: 0 auto; text-align: center; }
.sec-head .h2 { margin-top: 16px; }
.sec-head .lead { margin-top: 12px; }
.sec-head.center .eyebrow { justify-content: center; }

/* ── Vehicle cards ───────────────────────────────────────────────────────── */
.veh-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
.veh-card {
  display: flex; flex-direction: column; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.veh-card:hover { transform: translateY(-4px); border-color: rgba(217,164,65,.32); box-shadow: 0 24px 60px rgba(0,0,0,.5); }
.veh-photo { position: relative; aspect-ratio: 3/2; overflow: hidden; background: #0d1013; }
.veh-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.veh-card:hover .veh-photo img { transform: scale(1.05); }
.badge {
  position: absolute; top: 12px; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
}
.badge-cond { left: 12px; background: rgba(0,0,0,.55); border: 1px solid rgba(255,255,255,.15); color: #fff; backdrop-filter: blur(6px); }
.badge-cond.neu { background: var(--gold); border-color: var(--gold); color: #10130f; }
.badge-fuel { right: 12px; display: inline-flex; align-items: center; gap: 6px; background: rgba(0,0,0,.5); border: 1px solid rgba(255,255,255,.12); color: #eee; backdrop-filter: blur(6px); }
.badge-fuel svg { width: 12px; height: 12px; }
.badge-fuel.elektro svg { color: var(--emerald); }
.badge-fuel.verbrenner svg { color: var(--gold); }
.veh-body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.veh-meta { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--muted); }
.veh-meta .d { width: 4px; height: 4px; border-radius: 999px; background: var(--muted-2); }
.veh-title { font-size: 17px; font-weight: 700; margin-top: 6px; }
.veh-specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 16px; }
.spec { display: flex; flex-direction: column; align-items: center; gap: 5px; text-align: center; padding: 9px 4px; border: 1px solid var(--line-2); background: rgba(255,255,255,.02); border-radius: 10px; }
.spec svg { width: 15px; height: 15px; color: rgba(217,164,65,.85); }
.spec span { font-size: 11px; color: var(--muted); }
.veh-foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 18px; }
.veh-price { font-size: 22px; font-weight: 800; line-height: 1; }
.veh-rate { font-size: 11.5px; color: var(--muted); margin-top: 6px; }
.veh-rate b { color: var(--gold); }
.veh-more { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; background: rgba(255,255,255,.06); padding: 9px 13px; border-radius: 999px; transition: background-color .2s, color .2s; }
.veh-more svg { width: 14px; height: 14px; }
.veh-card:hover .veh-more { background: var(--gold); color: #10130f; }

/* ── Filter chips ────────────────────────────────────────────────────────── */
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.chip {
  font-size: 12.5px; font-weight: 600; padding: 9px 16px; border-radius: 999px; cursor: pointer;
  border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.03); color: var(--muted);
  transition: all .2s;
}
.chip:hover { border-color: rgba(217,164,65,.4); color: var(--text); }
.chip.active { background: var(--gold); border-color: var(--gold); color: #10130f; }

/* ── Feature/steps/services grids ────────────────────────────────────────── */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 44px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }

.tile { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; position: relative; height: 100%; }
.tile .num { position: absolute; right: 18px; top: 12px; font-size: 42px; font-weight: 800; color: rgba(255,255,255,.06); }
.tile .ic { width: 48px; height: 48px; border-radius: 12px; background: rgba(217,164,65,.12); color: var(--gold); display: inline-flex; align-items: center; justify-content: center; transition: background-color .2s, color .2s; }
.tile .ic svg { width: 22px; height: 22px; }
.tile:hover .ic { background: var(--gold); color: #10130f; }
.tile h3 { font-size: 16.5px; font-weight: 700; margin-top: 18px; }
.tile p { font-size: 13.5px; color: var(--muted); margin-top: 8px; }

/* ── Split media block ───────────────────────────────────────────────────── */
.media-img { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.media-img img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.checklist { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text); }
.checklist svg { width: 18px; height: 18px; color: var(--gold); flex: 0 0 auto; margin-top: 2px; }

/* ── Ankauf band ─────────────────────────────────────────────────────────── */
.band {
  position: relative; overflow: hidden; border: 1px solid rgba(217,164,65,.2);
  border-radius: 24px; padding: 48px; background: linear-gradient(120deg, #1a1408, #0f1013 55%);
}
.band::after { content: ""; position: absolute; right: -60px; top: -60px; width: 260px; height: 260px; border-radius: 999px; background: rgba(217,164,65,.10); filter: blur(60px); }
.band-grid { position: relative; display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; align-items: center; }
.band .checklist { flex-direction: row; flex-wrap: wrap; gap: 8px 24px; }

/* ── Team ────────────────────────────────────────────────────────────────── */
.team { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.team-card { display: flex; align-items: center; gap: 16px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; }
.avatar { width: 56px; height: 56px; border-radius: 999px; flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; color: var(--gold-hi); background: linear-gradient(135deg, rgba(217,164,65,.28), rgba(217,164,65,.05)); }
.team-card .n { font-size: 15px; font-weight: 700; }
.team-card .r { font-size: 12.5px; color: var(--muted); }

/* ── Testimonials ────────────────────────────────────────────────────────── */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.quote { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.quote blockquote { font-size: 14.5px; color: var(--text); margin: 16px 0 0; flex: 1; }
.quote .who { font-size: 13px; font-weight: 700; color: var(--muted); margin-top: 20px; }

/* ── Contact ─────────────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; }
.info-card { display: flex; align-items: flex-start; gap: 14px; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 16px; }
.info-card svg { width: 18px; height: 18px; color: var(--gold); flex: 0 0 auto; margin-top: 2px; }
.info-card .t { font-size: 14px; font-weight: 700; }
.info-card .s { font-size: 13px; color: var(--muted); }
.info-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hours { list-style: none; margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.hours li { display: flex; justify-content: space-between; font-size: 13px; }
.hours .day { color: var(--muted); }
.hours .time { color: var(--text); font-weight: 500; }
.map { position: relative; height: 200px; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); background: #0e1216; display: flex; align-items: center; justify-content: center; }
.map .grid-bg { position: absolute; inset: 0; opacity: .5; background-image: linear-gradient(to right, #2a323b 1px, transparent 1px), linear-gradient(to bottom, #2a323b 1px, transparent 1px); background-size: 28px 28px; }
.map .pin { position: relative; display: inline-flex; align-items: center; gap: 8px; background: rgba(0,0,0,.5); backdrop-filter: blur(6px); border: 1px solid rgba(217,164,65,.35); color: var(--gold-hi); font-size: 12px; font-weight: 700; padding: 8px 14px; border-radius: 999px; }
.map .pin svg { width: 14px; height: 14px; }

.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: 24px; padding: 28px; }
.form-card h3 { font-size: 19px; font-weight: 800; }
.form-card .sub { font-size: 13px; color: var(--muted); margin-top: 4px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-top: 16px; }
.field label { font-size: 12.5px; font-weight: 500; color: var(--muted); }
.field input, .field textarea {
  font-family: inherit; font-size: 14px; color: var(--text);
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 10px; padding: 11px 14px;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field textarea:focus { outline: none; border-color: rgba(217,164,65,.5); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.consent { display: flex; align-items: flex-start; gap: 10px; margin-top: 16px; font-size: 12px; color: var(--muted); }
.consent input { margin-top: 3px; accent-color: var(--gold); width: 16px; height: 16px; flex: 0 0 auto; }
.form-ok { display: flex; align-items: flex-start; gap: 12px; margin-top: 20px; border: 1px solid rgba(52,211,153,.3); background: rgba(52,211,153,.1); border-radius: 12px; padding: 16px; color: #d6f5e7; font-size: 13.5px; }
.form-ok svg { width: 18px; height: 18px; color: var(--emerald); flex: 0 0 auto; margin-top: 1px; }
.hidden { display: none; }

/* ── CTA strip ───────────────────────────────────────────────────────────── */
.cta-strip { text-align: center; }
.cta-strip .h2 { margin: 16px auto 0; max-width: 18ch; }
.cta-strip .actions { display: flex; gap: 12px; justify-content: center; margin-top: 26px; flex-wrap: wrap; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.footer { background: var(--bg-3); border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding: 56px 0; }
.footer p.about { font-size: 13.5px; color: var(--muted); margin-top: 16px; max-width: 34ch; }
.socials { display: flex; gap: 10px; margin-top: 20px; }
.socials a { width: 40px; height: 40px; border-radius: 999px; border: 1px solid var(--line); display: inline-flex; align-items: center; justify-content: center; color: var(--muted); transition: all .2s; }
.socials a:hover { border-color: rgba(217,164,65,.4); color: var(--gold); }
.socials svg { width: 16px; height: 16px; }
.footer .col-h { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-2); }
.footer ul { list-style: none; margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.footer ul a, .footer ul li { font-size: 13.5px; color: var(--muted); }
.footer ul a:hover { color: var(--text); }
.footer-legal { border-top: 1px solid var(--line); padding: 24px 0 40px; }
.footer-legal .fine { font-size: 11.5px; color: var(--muted-2); line-height: 1.7; }
.footer-legal .row { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 16px; flex-wrap: wrap; }
.footer-legal .links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal .links a { font-size: 12px; color: var(--muted-2); }
.footer-legal .links a:hover { color: var(--text); }
.footer-legal .credit { font-size: 11.5px; color: var(--muted-2); }
.footer-legal .credit b { color: var(--muted); }

/* ── Utility ─────────────────────────────────────────────────────────────── */
.mt-6 { margin-top: 24px; } .mt-8 { margin-top: 32px; }
.center { text-align: center; }
.only-desktop { }
.only-mobile { display: none; }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 980px) {
  .nav-links, .nav-cta .nav-phone, .nav-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; padding: 44px 0 52px; }
  .hero-media { order: -1; }
  .float-card { left: 12px; }
  .veh-grid, .quotes, .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-2, .band-grid, .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .band { padding: 32px; }
}
@media (max-width: 620px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3) { border-left: none; }
  .veh-grid, .quotes, .grid-3, .grid-4, .form-row, .info-cols { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .sec { padding: 56px 0; }
  .band .checklist { flex-direction: column; }
}

/* ═══════════════════════════════════════════════════════════════
   KANTIG-UPDATE — alle Ecken eckig (bewusst weniger "AI"),
   echtes Logo-Mark + Marken-Logo-Wall
   ═══════════════════════════════════════════════════════════════ */
:root { --radius: 0px; }
*, *::before, *::after { border-radius: 0 !important; }

/* Logo-Mark (Emblem) statt Icon-Badge */
.brand-mark { width: 40px; height: 40px; display: block; flex: 0 0 auto; }
.footer .brand-mark { width: 38px; height: 38px; }

/* Marken-Logo-Wall: helle, eckige Kacheln, damit die Farb-Logos auf
   dunklem Grund lesbar sind */
.brand-row { gap: 14px; }
.brand-logo {
  display: inline-flex; align-items: center; justify-content: center;
  width: 132px; height: 66px; padding: 13px 18px;
  background: #ffffff; border: 1px solid rgba(255, 255, 255, 0.10);
  transition: transform .2s;
}
.brand-logo:hover { transform: translateY(-2px); }
.brand-logo img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; }

@media (max-width: 620px) {
  .brand-logo { width: calc(50% - 8px); height: 58px; }
}

/* ═══════════════════════════════════════════════════════════════
   UPDATE — Marken auf hellem Band (Logos direkt & größer),
   Bild-Hero + Bild-CTA-Band gegen den „nur schwarz"-Eindruck
   ═══════════════════════════════════════════════════════════════ */

/* Marken-Wall: helles Band, Logos ohne Kachel, gleiche Höhe, größer */
.brands.brands-light { background: #f3f4f6; border-top: 1px solid rgba(0,0,0,0.06); border-bottom: 1px solid rgba(0,0,0,0.06); padding: 42px 0; }
.brands-light .cap { color: #64707d; }
.brands-light .brand-row { gap: 24px 44px; align-items: center; }
.brands-light .brand-logo {
  background: transparent; border: none; width: auto; height: 54px; padding: 0;
  display: inline-flex; align-items: center; justify-content: center;
}
.brands-light .brand-logo:hover { transform: translateY(-2px); }
.brands-light .brand-logo img { height: 100%; width: auto; max-width: 170px; object-fit: contain; }

/* Bild-Hero: Showroom als Vollflächen-Hintergrund */
.hero-bg { position: relative; overflow: hidden; min-height: calc(100vh - 420px); display: flex; align-items: center; border-bottom: 1px solid var(--line); }
.hero-bgimg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(9,11,13,0.95) 0%, rgba(9,11,13,0.86) 40%, rgba(9,11,13,0.48) 78%, rgba(9,11,13,0.25) 100%);
}
.hero-inner { position: relative; z-index: 1; width: 100%; padding: 48px 20px; }
.hero-copy { max-width: 640px; }

/* Bild-CTA-Band */
.cta-band { position: relative; overflow: hidden; padding: 104px 0; text-align: center; border-top: 1px solid var(--line); }
.cta-bgimg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(9,11,13,0.72), rgba(9,11,13,0.93)); }
.cta-band .container { position: relative; z-index: 1; }

@media (max-width: 980px) {
  .hero-bg { min-height: 0; }
  .hero-inner { padding: 52px 20px; }
  .hero-bg::after { background: linear-gradient(180deg, rgba(9,11,13,0.66), rgba(9,11,13,0.93)); }
  .brands-light .brand-logo { height: 42px; }
}

/* ═══ Team-Fotokarten ═══ */
.team-card2 { background: var(--surface); border: 1px solid var(--line); overflow: hidden; height: 100%; }
.team-photo { aspect-ratio: 4/5; overflow: hidden; background: #0d1013; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.team-card2 figcaption { padding: 16px 18px; }
.team-card2 .n { font-size: 16px; font-weight: 700; }
.team-card2 .r { font-size: 12.5px; color: var(--muted); margin-top: 3px; }

/* ═══ mobile.de-Sektion ═══ */
.mde-brand { display: inline-flex; align-items: center; gap: 12px; background: #ffffff; border: 1px solid var(--line); padding: 11px 18px; }
.mde-brand img { height: 32px; width: auto; display: block; }
.mde-brand .wm { font-size: 20px; font-weight: 800; letter-spacing: -0.02em; color: #35084f; }
.mde-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.mde-head .t { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.mde-head .src { font-size: 12px; color: var(--muted-2); }
.mde-reviews { display: flex; flex-direction: column; gap: 12px; }
.mde-review { background: var(--surface); border: 1px solid var(--line); padding: 16px 18px; }
.mde-review .stars { display: inline-flex; gap: 2px; }
.mde-review .stars svg { width: 14px; height: 14px; }
.mde-review p { font-size: 13.5px; color: var(--text); margin-top: 8px; line-height: 1.55; }
.mde-review .who { font-size: 12px; color: var(--muted); margin-top: 8px; }

/* ═══════════════════════════════════════════════════════════════
   UPDATE 2 — Hero-Angebotskarte, Logos in 1 Reihe, Demo-Modal,
   Finanzierungsrechner
   ═══════════════════════════════════════════════════════════════ */

/* Hero: 2-spaltig mit Angebotskarte rechts */
.hero-inner.hero-2col { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 44px; align-items: center; }
.hero-offer {
  background: rgba(14,18,23,0.82); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.14); padding: 20px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.55); max-width: 440px; margin-left: auto; width: 100%;
}
.hero-offer .lbl { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.hero-offer .lbl svg { width: 14px; height: 14px; }
.hero-offer .offer-photo { margin-top: 13px; aspect-ratio: 16/9; overflow: hidden; background: #0d1013; border: 1px solid var(--line); }
.hero-offer .offer-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-offer h3 { font-size: 18px; margin-top: 15px; }
.hero-offer .offer-meta { font-size: 12.5px; color: var(--muted); margin-top: 5px; }
.hero-offer .offer-foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin-top: 15px; padding-top: 15px; border-top: 1px solid var(--line); }
.hero-offer .offer-price { font-size: 23px; font-weight: 800; line-height: 1; }
.hero-offer .offer-rate { font-size: 11.5px; color: var(--muted); margin-top: 5px; }
.hero-offer .offer-rate b { color: var(--gold); }
@media (max-width: 980px) {
  .hero-inner.hero-2col { grid-template-columns: 1fr; gap: 30px; }
  .hero-offer { margin-left: 0; max-width: none; }
}

/* Marken: EINE Reihe, gleich breite Zellen */
.brands-light .brand-row { flex-wrap: nowrap; gap: 16px; justify-content: space-between; }
.brands-light .brand-logo { flex: 1 1 0; min-width: 0; height: 50px; padding: 0; }
.brands-light .brand-logo img { width: auto; height: auto; max-width: 100%; max-height: 100%; }
@media (max-width: 720px) {
  .brands-light .brand-row { flex-wrap: wrap; justify-content: center; gap: 20px 26px; }
  .brands-light .brand-logo { flex: 0 0 calc(33.33% - 26px); height: 40px; }
}

/* Demo-Modal (tote Buttons) */
[data-demo] { cursor: pointer; }
.modal-overlay { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 20px; background: rgba(6,8,10,0.72); backdrop-filter: blur(4px); }
.modal-overlay[hidden] { display: none; }
.modal { position: relative; width: 100%; max-width: 460px; background: var(--surface); border: 1px solid var(--line); padding: 32px; box-shadow: 0 40px 90px rgba(0,0,0,0.6); }
.modal-badge { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; background: rgba(217,164,65,0.14); color: var(--gold); }
.modal-badge svg { width: 22px; height: 22px; }
.modal h3 { font-size: 20px; margin-top: 16px; }
.modal p { font-size: 14px; color: var(--muted); margin-top: 10px; line-height: 1.65; }
.modal .btn { margin-top: 22px; width: 100%; }
.modal-x { position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border: 1px solid var(--line); background: transparent; color: var(--muted); font-size: 22px; line-height: 1; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; }
.modal-x:hover { color: #fff; }

/* Finanzierungsrechner */
.calc { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 42px; align-items: stretch; }
.calc-controls { background: var(--surface); border: 1px solid var(--line); padding: 28px; }
.calc-field { margin-bottom: 26px; }
.calc-field:last-of-type { margin-bottom: 0; }
.calc-topline { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 12px; }
.calc-topline label { font-size: 13.5px; font-weight: 600; color: var(--text); }
.calc-topline output { font-size: 15px; font-weight: 800; color: var(--gold); }
.calc input[type="range"] { width: 100%; accent-color: var(--gold); height: 6px; cursor: pointer; }
.calc-note { font-size: 11.5px; color: var(--muted-2); margin-top: 24px; line-height: 1.65; }
.calc-result { background: linear-gradient(160deg, #17130a, #0f1216 62%); border: 1px solid rgba(217,164,65,0.22); padding: 28px; display: flex; flex-direction: column; }
.calc-reslabel { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.calc-rate { font-size: 46px; font-weight: 800; color: #fff; line-height: 1; margin-top: 8px; }
.calc-rate span { font-size: 15px; color: var(--muted); font-weight: 600; }
.calc-breakdown { list-style: none; margin: 24px 0 0; display: flex; flex-direction: column; }
.calc-breakdown li { display: flex; justify-content: space-between; font-size: 13.5px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.calc-breakdown li:last-child { border-bottom: none; }
.calc-breakdown span { color: var(--muted); }
.calc-breakdown b { color: #fff; font-weight: 700; }
.calc-result .btn { margin-top: 24px; }
@media (max-width: 860px) { .calc { grid-template-columns: 1fr; } }
