/* =====================================================================
   Diskonttankstelle Moser Markus — diskont-tanken.at
   Look an die echte Station angelehnt: LIQUI-MOLY-Blau + Rot,
   grüner Vordach-Akzent. Sora + Inter. Cleanes, modernes Design.
   ===================================================================== */

:root {
  --font-display: 'Sora', system-ui, -apple-system, sans-serif;
  --font-text:    'Inter', system-ui, -apple-system, sans-serif;

  --paper:   #F3F6FB;      /* kühles off-white */
  --surface: #FFFFFF;
  --ink:     #0B1626;      /* near-black blue */
  --ink-2:   #45526A;
  --ink-3:   #7B889C;
  --line:    #E1E7F1;
  --line-2:  #EDF1F7;

  --blue:     #00337A;     /* LIQUI MOLY Blau — Marke */
  --blue-2:   #0A4BB3;
  --blue-lt:  #E7EFFA;
  --red:      #E2001A;     /* CTA / Signalrot */
  --red-d:    #C10016;
  --green:    #43A935;     /* Vordach-Grün / "geöffnet" */
  --green-d:  #35892A;

  --dark:   #06214F;       /* dunkle Sektionen (tiefes Blau) */

  --maxw: 1180px;
  --r:    18px;
  --r-sm: 12px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 1px 2px rgba(6,33,79,.05), 0 14px 34px -14px rgba(6,33,79,.20);
  --shadow-sm: 0 1px 2px rgba(6,33,79,.06), 0 6px 18px -10px rgba(6,33,79,.16);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-text);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.06; letter-spacing: -0.02em; color: var(--ink); }
a { color: inherit; text-decoration: none; }
img, svg, iframe { display: block; max-width: 100%; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue-2);
  margin-bottom: 16px;
}
.accent-word { color: var(--red); }
.muted { color: var(--ink-3); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  padding: 12px 20px; border-radius: 999px;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--red); color: #fff; box-shadow: 0 8px 20px -8px rgba(226,0,26,.55); }
.btn--primary:hover { background: var(--red-d); transform: translateY(-2px); box-shadow: 0 12px 26px -8px rgba(226,0,26,.65); }
.btn--ghost { background: transparent; color: var(--blue); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--blue); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--blue); }
.btn--light:hover { transform: translateY(-2px); box-shadow: 0 12px 26px -10px rgba(0,0,0,.5); }
.btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn--outline:hover { border-color: #fff; transform: translateY(-2px); }
.btn--lg { padding: 15px 28px; font-size: 16px; }
.btn--block { width: 100%; }

/* ===== Topbar ===== */
.topbar { background: var(--blue); color: #fff; font-size: 13.5px; }
.topbar__inner { display: flex; align-items: center; gap: 12px; height: 40px; }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; color: #EAF1FB; }
.topbar__item .muted { color: #9FB4D6; }
.topbar__sep { color: #3E63A0; }
.topbar__call { margin-left: auto; font-weight: 600; color: #fff; }
.topbar__call:hover { color: #FFD3D3; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px rgba(67,169,53,.28); }
.dot--live { animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(67,169,53,.5);} 50%{ box-shadow: 0 0 0 5px rgba(67,169,53,0);} }

/* ===== Nav ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(243,246,251,.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.nav.scrolled { border-color: var(--line); background: rgba(243,246,251,.94); }
.nav__inner { display: flex; align-items: center; gap: 22px; height: 68px; }

.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600; font-size: 18px; letter-spacing: -.02em; }
.brand__mark {
  display: inline-grid; place-items: center; width: 34px; height: 34px;
  background: var(--blue); color: #fff; border-radius: 10px;
  box-shadow: inset 0 -3px 0 var(--green);
}
.brand__text b { color: var(--red); font-weight: 800; }
.brand--footer .brand__text b { color: #FF6A78; }

.nav__links { display: flex; gap: 26px; margin-left: 10px; }
.nav__links a { font-size: 15px; font-weight: 500; color: var(--ink-2); position: relative; }
.nav__links a::after { content:""; position:absolute; left:0; bottom:-6px; width:0; height:2px; background: var(--red); transition: width .25s var(--ease); }
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }

.nav__actions { display: flex; gap: 10px; margin-left: auto; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; margin-left: auto; }
.nav__toggle span { width: 24px; height: 2px; background: var(--blue); border-radius: 2px; transition: .3s var(--ease); }
.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); }

.mobilemenu { display: none; flex-direction: column; gap: 4px; padding: 12px 24px 22px; border-bottom: 1px solid var(--line); background: var(--paper); }
.mobilemenu a { padding: 12px 4px; font-family: var(--font-display); font-weight: 500; border-bottom: 1px solid var(--line-2); }
.mobilemenu a.btn { margin-top: 12px; border-bottom: none; }

/* ===== Hero ===== */
.hero { padding: 72px 0 84px; position: relative; }
.hero::before {
  content:""; position:absolute; inset:0; z-index:-1; pointer-events:none;
  background: radial-gradient(58% 55% at 88% 0%, rgba(10,75,179,.12), transparent 60%);
}
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }

/* --- Hero mit Hintergrund-Video --- */
.hero--video {
  padding: 60px 0 52px;
  overflow: hidden; color: #fff;
  /* Fallback-Hintergrund, falls das Video (noch) fehlt */
  background: linear-gradient(120deg, #06214F 0%, #00337A 55%, #06214F 100%);
}
.hero--video::before { display: none; }               /* helles Glow aus, dunkler Hero */
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; background: #06214F;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  /* dunkelt das Video ab + Verlauf für Textkontrast; links stärker (Text sitzt links) */
  background:
    linear-gradient(90deg, rgba(4,16,40,.78) 0%, rgba(4,16,40,.45) 45%, rgba(4,16,40,.30) 100%),
    linear-gradient(180deg, rgba(4,16,40,.25), rgba(4,16,40,.65));
}
.hero--video .wrap { position: relative; z-index: 2; width: 100%; }

/* Vordergrund-Farben über dem dunklen Video */
.hero--video .eyebrow { color: #FF4B5C; }
.hero--video h1 { color: #fff; }
.hero--video .accent-word { color: #fff; text-shadow: 0 2px 24px rgba(0,0,0,.25); }
.hero--video .lead { color: rgba(255,255,255,.86); }
.hero--video .lead b { color: #fff; }
.hero--video .hero__meta b { color: #fff; }
.hero--video .hero__meta span { color: rgba(255,255,255,.68); }
.hero--video .btn--ghost { color: #fff; border-color: rgba(255,255,255,.45); }
.hero--video .btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.10); }

/* Die 4 Punkte im Hero (auf dunklem Grund) */
.hero__strip {
  position: relative; z-index: 2; width: 100%;
  margin-top: 54px; padding-top: 34px;
  border-top: 1px solid rgba(255,255,255,.15);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.hero__strip .strip__item { padding: 0; border: 0; gap: 13px; }
.hero__strip .strip__item + .strip__item { border-left: 0; }
.hero__strip .strip__ico {
  display: inline-grid; place-items: center; flex: none;
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,.09); font-size: 20px;
}
.hero__strip .strip__item b { color: #fff; }
.hero__strip .strip__item small { color: rgba(255,255,255,.62); }
.hero__copy h1 { font-size: clamp(40px, 6vw, 66px); font-weight: 800; margin: 6px 0 20px; }
.lead { font-size: 19px; color: var(--ink-2); max-width: 31em; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 34px; }
.hero__meta { display: flex; gap: 34px; }
.hero__meta div { display: flex; flex-direction: column; }
.hero__meta b { font-family: var(--font-display); font-size: 22px; font-weight: 700; }
.hero__meta span { font-size: 13.5px; color: var(--ink-3); }

/* Preis-/Vordach-Karte */
.pricecard {
  background: var(--dark); color: #fff; border-radius: var(--r);
  padding: 26px; box-shadow: var(--shadow);
  position: relative; overflow: hidden;
  border-top: 5px solid var(--red);
}
.pricecard::after {
  content:""; position:absolute; top:-40%; right:-30%; width: 70%; height: 100%;
  background: radial-gradient(circle, rgba(10,75,179,.5), transparent 70%);
}
.pricecard__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; position: relative; }
.pricecard__brand { font-family: var(--font-display); font-weight: 800; letter-spacing: .1em; font-size: 14px; color: #fff; }
.pricecard__badge { font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; background: var(--red); color:#fff; padding: 4px 9px; border-radius: 999px; }
.pricecard__sub { position: relative; font-size: 12.5px; color: #A9BEE2; margin-bottom: 20px; }
.pricecard__rows { display: flex; flex-direction: column; gap: 2px; position: relative; }
.prow { display: flex; align-items: baseline; justify-content: space-between; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.prow:last-child { border-bottom: none; }
.prow__name { font-size: 15px; color: #C7D5EC; }
.prow__val {
  font-family: var(--font-display); font-weight: 700; font-size: 30px; letter-spacing: -.01em;
  font-variant-numeric: tabular-nums; color: #fff;
}
.pricecard__foot { margin-top: 18px; font-size: 12.5px; color: #91A6C9; position: relative; display: flex; align-items: center; gap: 8px; }

/* ===== Trust strip ===== */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.strip__item { display: flex; align-items: center; gap: 14px; padding: 26px 20px; }
.strip__item + .strip__item { border-left: 1px solid var(--line-2); }
.strip__ico { font-size: 24px; }
.strip__item b { display: block; font-family: var(--font-display); font-weight: 600; font-size: 16px; }
.strip__item small { color: var(--ink-3); font-size: 13px; }

/* ===== Sections ===== */
.section { padding: 92px 0; }
.section--tint { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section__head { max-width: 44rem; margin-bottom: 48px; }
.section__head--wide { max-width: none; }
.section__head--wide .section__sub { max-width: 46rem; }
.nowrap { white-space: nowrap; }
.section__head h2 { font-size: clamp(30px, 4.2vw, 44px); }
.section__sub { margin-top: 16px; font-size: 18px; color: var(--ink-2); }

/* Fuel grid */
.fuelgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.fuel {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r); padding: 30px 26px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.fuel:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.fuel__tag {
  position: absolute; top: 20px; right: 20px;
  background: var(--blue-lt); color: var(--blue);
  font-family: var(--font-display); font-size: 11.5px; font-weight: 700; letter-spacing: .04em;
  padding: 5px 10px; border-radius: 999px;
}
.fuel h3 { font-size: 24px; margin-bottom: 10px; }
.fuel p { color: var(--ink-2); font-size: 15.5px; }
.fuel__price {
  display: inline-block; margin-top: 20px;
  font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--blue);
  padding: 7px 14px; border-radius: 999px; border: 1px dashed var(--blue-2);
}
.fuel__price b { font-weight: 800; font-variant-numeric: tabular-nums; }
.fuel--info { background: var(--blue-lt); border-color: transparent; }
.fuel__price--muted { color: var(--ink-3); border-style: solid; border-color: var(--line); }

/* Services / Autopflege */
.svcgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.svc {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  padding: 28px 24px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.svc__ico {
  display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 12px;
  background: var(--blue-lt); font-size: 22px; margin-bottom: 16px;
}
.svc h3 { font-size: 19px; margin-bottom: 8px; }
.svc p { color: var(--ink-2); font-size: 14.5px; }
.pricenote { margin-top: 26px; font-size: 14px; color: var(--ink-3); max-width: 46rem; }
.pricenote--oneline { max-width: none; }
@media (min-width: 820px) { .pricenote--oneline { white-space: nowrap; } }

/* Advantages */
.advgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.adv { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 28px 24px; }
.adv__num { font-family: var(--font-display); font-weight: 800; font-size: 15px; color: var(--red); letter-spacing: .05em; }
.adv h3 { font-size: 20px; margin: 14px 0 8px; }
.adv p { color: var(--ink-2); font-size: 15px; }

/* Standort */
.standort__grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 48px; align-items: center; }
.standort__info h2 { font-size: clamp(30px, 4vw, 42px); margin-bottom: 28px; }
.infolist { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.infolist li { display: flex; gap: 14px; }
.infolist__ico { font-size: 20px; width: 26px; flex: none; }
.infolist b { display: block; font-family: var(--font-display); font-weight: 600; font-size: 15px; margin-bottom: 2px; }
.infolist div { color: var(--ink-2); font-size: 15.5px; line-height: 1.5; }
.infolist a:hover { color: var(--red); }
.standort__cta { display: flex; gap: 12px; margin-top: 30px; }

.standort__map { position: relative; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.standort__map iframe { width: 100%; height: 420px; border: 0; filter: grayscale(.12); }
.standort__maplink {
  position: absolute; left: 16px; bottom: 16px;
  background: #fff; color: var(--blue); font-family: var(--font-display); font-weight: 600; font-size: 13.5px;
  padding: 9px 15px; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.standort__maplink:hover { color: var(--red); }

/* CTA */
.cta { background: var(--dark); color: #fff; padding: 88px 0; position: relative; overflow: hidden; }
.cta::before { content:""; position:absolute; inset:0; background: radial-gradient(50% 80% at 100% 100%, rgba(10,75,179,.4), transparent 60%); }
.cta::after { content:""; position:absolute; left:0; right:0; top:0; height:5px; background: var(--green); }
.cta__inner { position: relative; text-align: center; max-width: 40rem; margin-inline: auto; }
.cta h2 { color: #fff; font-size: clamp(30px, 4.6vw, 48px); }
.cta .accent-word { color: #FF6A78; }
.cta p { color: #B7C6E0; font-size: 18px; margin: 16px 0 30px; }
.cta__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Footer */
.footer { background: var(--paper); border-top: 1px solid var(--line); padding: 64px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
.footer__brand p { margin-top: 14px; color: var(--ink-2); font-size: 15px; }
.footer__col h4 { font-family: var(--font-display); font-size: 14px; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-3); margin-bottom: 12px; }
.footer__col p { color: var(--ink-2); font-size: 15px; }
.footer__col a:hover { color: var(--red); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 13.5px; color: var(--ink-3); }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a:hover { color: var(--ink); }

/* ===== Utilities ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.gap-top { margin-top: 20px; }

/* Feature-Karten (Zapfsäulen-Highlights) */
.feat {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  padding: 24px 24px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.feat:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.feat__ico { display: inline-grid; place-items: center; flex: none; width: 46px; height: 46px; border-radius: 12px; background: var(--blue-lt); font-size: 22px; }
.feat h3 { font-size: 19px; margin-bottom: 6px; }
.feat p { color: var(--ink-2); font-size: 15px; }

/* Media-Karten mit Bild-Platzhalter */
.mediagrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.mediacard {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.mediacard:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.mediacard__body { padding: 20px 22px 24px; }
.mediacard__body h3 { font-size: 20px; margin-bottom: 8px; }
.mediacard__body p { color: var(--ink-2); font-size: 15px; }

/* Bild-Platzhalter "Foto folgt" */
.ph {
  position: relative; overflow: hidden;
  aspect-ratio: 16 / 10; display: grid; place-items: center;
  background:
    repeating-linear-gradient(45deg, rgba(0,51,122,.04) 0 12px, transparent 12px 24px),
    linear-gradient(135deg, var(--blue-lt), #F3F6FB);
  border-bottom: 1px solid var(--line);
}
.ph__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.mtag {
  display: inline-block; margin-top: 16px; font-family: var(--font-display); font-weight: 700;
  font-size: 11.5px; letter-spacing: .05em; text-transform: uppercase; color: #fff;
  background: var(--red); padding: 5px 12px; border-radius: 999px;
}
/* Turbo/LKW-Karten: rote Labels unten bündig ausrichten (gleiche Höhe) */
#tanken .grid-2 .mediacard { display: flex; flex-direction: column; }
#tanken .grid-2 .mediacard__body { flex: 1; display: flex; flex-direction: column; }
#tanken .grid-2 .mtag { margin-top: auto; align-self: flex-start; }

/* Breite Media-Box (Foto links, Text rechts) — z. B. Getränke- & Snackautomat */
.mediacard--row { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.mediacard--row .ph { aspect-ratio: auto; height: 100%; min-height: 280px; border-bottom: none; border-right: 1px solid var(--line); }
.mediacard--row .mediacard__body { display: flex; flex-direction: column; justify-content: center; padding: 34px 36px; }
/* Umgekehrte Variante: Bild rechts, Text links */
.mediacard--rev .ph { order: 2; border-right: none; border-left: 1px solid var(--line); }
@media (max-width: 620px) {
  .mediacard--row { grid-template-columns: 1fr; }
  .mediacard--row .ph { aspect-ratio: auto; height: 66vw; min-height: 220px; max-height: 340px; border-right: none; border-bottom: 1px solid var(--line); }
  .mediacard--rev .ph { order: 0; border-left: none; }
}
.ph__label {
  font-family: var(--font-display); font-weight: 600; font-size: 13.5px; letter-spacing: .02em;
  color: var(--blue-2); background: rgba(255,255,255,.72); padding: 7px 13px; border-radius: 999px;
}
.ph--avatar { aspect-ratio: 1 / 1; width: 108px; border-radius: 50%; border: 1px solid var(--line); }
.ph--avatar .ph__label { font-size: 18px; padding: 0; background: none; }

/* E-Laden Ankündigung — prominent, in Rot */
.laden__panel {
  display: grid; grid-template-columns: 1.4fr .6fr; gap: 36px; align-items: center;
  background: linear-gradient(120deg, #FFF1F2 0%, #FFF7F7 100%);
  border: 1px solid #F6C9CE; border-radius: var(--r); padding: 46px 46px 46px 52px;
  position: relative; overflow: hidden;
  box-shadow: 0 22px 46px -26px rgba(226,0,26,.42);
}
.laden__panel::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 6px; background: var(--red); }
.badge {
  display: inline-block; font-family: var(--font-display); font-weight: 700; font-size: 12px;
  letter-spacing: .08em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; margin-bottom: 14px;
}
.badge--soon { background: var(--red); color: #fff; }
.laden__panel h2 { font-size: clamp(28px, 4.2vw, 44px); }
.laden__panel p { color: var(--ink-2); font-size: 17px; margin-top: 12px; }
.laden__stats { display: flex; gap: 18px; }
.lstat { flex: 1; text-align: center; background: #fff; border: 1px solid #F6C9CE; border-radius: var(--r-sm); padding: 22px 12px; }
.lstat b { display: block; font-family: var(--font-display); font-weight: 800; font-size: 42px; color: var(--red); line-height: 1; }
.lstat span { font-size: 13px; color: var(--ink-2); }

/* E-Laden im Menü hervorheben */
.nav__hl { color: var(--red) !important; font-weight: 600; }

/* Panels (Bezahlen) */
.panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 30px 28px; }
.panel h3 { font-size: 21px; margin-bottom: 16px; }
.panel p { color: var(--ink-2); font-size: 15.5px; margin-bottom: 18px; }
.panel--accent { background: var(--blue-lt); border-color: transparent; }
.panel--center { text-align: center; }
.panel--center h3 { text-align: center; }

.paygrid { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.pay {
  font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--ink);
  background: var(--paper); border: 1px solid var(--line); border-radius: 10px; padding: 10px 16px;
}

/* Preise Portalanlage — hochformatige Preisliste voll sichtbar (nicht beschnitten) */
.preise .ph { background: #fff; min-height: 460px; padding: 20px; }
.preise .ph .ph__img {
  position: static; width: auto; height: auto; max-width: 100%; max-height: 420px;
  object-fit: contain; border-radius: 12px;
}
.waschprog__zoom {
  position: absolute; right: 12px; bottom: 12px; z-index: 2;
  background: rgba(6,33,79,.85); color: #fff; font-family: var(--font-display);
  font-weight: 600; font-size: 12.5px; padding: 6px 12px; border-radius: 999px;
  opacity: 0; transition: opacity .25s var(--ease);
}
.preise .ph:hover .waschprog__zoom { opacity: 1; }
@media (max-width: 620px) { .preise .ph { aspect-ratio: auto; min-height: 420px; } }

/* Öffnungszeiten-Liste */
.hours { display: flex; flex-direction: column; gap: 6px; margin-top: 2px; }
.hours span { color: var(--ink-2); font-size: 15px; }
.hours i { display: block; font-style: normal; font-weight: 600; color: var(--ink); font-size: 13px; }

/* Team */
.teamrow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.member {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  padding: 28px 18px;
}
.member .ph--avatar { margin-bottom: 8px; }
.member b { font-family: var(--font-display); font-weight: 600; font-size: 16px; }
.member small { color: var(--ink-3); font-size: 13px; }
.team__cta { margin-top: 34px; text-align: center; }
.teamgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px 22px; }
@media (max-width: 720px) { .teamgrid { grid-template-columns: repeat(2, 1fr); } }

/* ===== Legal pages ===== */
.legal { padding: 56px 24px 80px; max-width: 760px; }
.legal h1 { font-size: clamp(32px, 5vw, 46px); }
.legal__lead { color: var(--ink-2); font-size: 18px; margin-top: 10px; }
.legal h2 { font-size: 21px; margin: 40px 0 10px; }
.legal p { color: var(--ink-2); font-size: 16px; }
.legal a { color: var(--blue-2); }
.legal a:hover { text-decoration: underline; }
.legal code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .9em; background: var(--line-2); padding: 1px 6px; border-radius: 6px; color: var(--ink); }
.legal__note {
  background: #FFF7E6; border: 1px solid #F3E2B8; color: #6B531A;
  border-radius: var(--r-sm); padding: 16px 18px; margin: 24px 0 8px; font-size: 14.5px; line-height: 1.55;
}
.legal__note code { background: rgba(107,83,26,.12); color: #6B531A; }
.legal__back { margin-top: 40px; }

/* ===== Reveal animation ===== */
.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; transition: none; } }

/* ===== Responsive ===== */
@media (max-width: 940px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .pricecard { max-width: 440px; }
  .hero__strip { grid-template-columns: repeat(2, 1fr); gap: 26px 22px; }
  .strip__grid { grid-template-columns: repeat(2, 1fr); }
  .strip__item:nth-child(3) { border-left: none; }
  .strip__item:nth-child(3), .strip__item:nth-child(4) { border-top: 1px solid var(--line-2); }
  .fuelgrid { grid-template-columns: 1fr; }
  .svcgrid { grid-template-columns: repeat(2, 1fr); }
  .advgrid { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .laden__panel { grid-template-columns: 1fr; gap: 26px; padding: 32px; }
  .teamrow { grid-template-columns: repeat(2, 1fr); }
  .standort__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .topbar { display: none; }
  .nav__links, .nav__actions { display: none; }
  .nav__toggle { display: flex; }
  .mobilemenu { display: none; }
  .mobilemenu.open { display: flex; }
  .section { padding: 68px 0; }
  .hero { padding: 48px 0 60px; }
  .hero__meta { gap: 24px; }
}
@media (max-width: 480px) {
  body { font-size: 16px; }
  .svcgrid, .advgrid, .footer__grid { grid-template-columns: 1fr; }
  .laden__panel { padding: 26px; }
  .laden__stats { gap: 12px; }
  .topbar__inner { gap: 8px; font-size: 12.5px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
}
