/* =========================================================
   Elektro-Meier · Bochum
   Design tokens, layout & components
   Palette: Marken-Blau (#1e56d6 / Navy #122a5c) + Akzent-Rot (#dc2626)
   Type: Playfair Display (Display) + Inter (Body/UI)
   ========================================================= */

:root {
  /* Brand */
  --brand-900: #0b1f45;
  --brand-800: #122a5c;
  --brand-700: #17356f;
  --brand-600: #1e56d6;
  --brand-500: #2563eb;
  --brand-400: #3b82f6;
  --brand-100: #dbeafe;
  --brand-50:  #eff6ff;

  --accent-600: #dc2626;
  --accent-700: #b91c1c;

  /* Neutrals */
  --bg:        #f6f8fc;
  --surface:   #ffffff;
  --ink:       #0f172a;
  --ink-soft:  #475569;
  --ink-mute:  #64748b;
  --line:      #e2e8f0;
  --line-soft: #eef2f7;

  /* Effects */
  --radius:    16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(15,23,42,.06), 0 1px 3px rgba(15,23,42,.05);
  --shadow-md: 0 10px 25px -12px rgba(15,23,42,.18);
  --shadow-lg: 0 30px 60px -30px rgba(11,31,69,.45);
  --ease:      cubic-bezier(.4, 0, .2, 1);

  --container:  1160px;
  --header-h:   72px;

  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; line-height: 1.15; color: var(--ink); }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 40px);
}

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--brand-800); color: #fff;
  padding: 10px 16px; border-radius: 8px; z-index: 200;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid var(--brand-400);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ---------- Icons ---------- */
.ic { width: 20px; height: 20px; fill: currentColor; flex: none; }
.ic--lg { width: 30px; height: 30px; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--brand-600);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 9px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: .01em;
  transition: transform .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease), color .18s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn .ic { width: 18px; height: 18px; }

.btn--lg { padding: 15px 30px; font-size: 1.02rem; }
.btn--block { width: 100%; }

.btn--primary { --btn-bg: var(--brand-600); }
.btn--primary:hover { background: var(--brand-500); }

.btn--accent { --btn-bg: var(--accent-600); }
.btn--accent:hover { background: var(--accent-700); }

.btn--ghost-light {
  --btn-bg: transparent; --btn-fg: #fff;
  border-color: rgba(255,255,255,.35);
  backdrop-filter: blur(4px);
}
.btn--ghost-light:hover { background: rgba(255,255,255,.12); }

/* ---------- Eyebrow / section heads ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand-600);
  margin-bottom: 14px;
}
.eyebrow .ic { width: 16px; height: 16px; color: var(--accent-600); }
.eyebrow--light { color: #bcd2ff; }
.eyebrow--light .ic { color: #fca5a5; }

.section { padding: clamp(64px, 9vw, 110px) 0; scroll-margin-top: var(--header-h); }
.section--muted { background: var(--surface); border-block: 1px solid var(--line-soft); }
.section--dark { background: linear-gradient(160deg, var(--brand-800), var(--brand-900)); color: #e6edfb; }

.section__head { max-width: 680px; margin: 0 auto clamp(40px, 6vw, 64px); text-align: center; }
.section__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 4vw, 2.85rem);
  letter-spacing: -.01em;
}
.section__sub { margin-top: 16px; color: var(--ink-soft); font-size: 1.08rem; }
.section__head--light .section__title { color: #fff; }
.section__head--light .section__sub { color: #b6c6e6; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--brand-900);
  color: #cdd9f2;
  font-size: .86rem;
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 40px;
}
.topbar__item { display: inline-flex; align-items: center; gap: 8px; color: inherit; }
.topbar__item .ic { width: 15px; height: 15px; fill: #fca5a5; }
.topbar__contact { display: flex; align-items: center; gap: 22px; }
.topbar a.topbar__item:hover { color: #fff; }
@media (max-width: 720px) {
  .topbar__item--hide { display: none; }
  .topbar__inner { justify-content: center; }
  .topbar > .container > .topbar__item:first-child { display: none; }
}

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.header.is-scrolled {
  box-shadow: 0 6px 24px -14px rgba(15,23,42,.3);
  border-bottom-color: var(--line);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
}

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__mark {
  display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 11px;
  background: linear-gradient(150deg, var(--brand-600), var(--brand-800));
  color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  box-shadow: var(--shadow-sm);
}
.brand__text { font-family: var(--font-display); font-weight: 700; font-size: 1.32rem; letter-spacing: -.01em; }
.brand__blue { color: var(--brand-700); }
.brand__dash { color: var(--ink-mute); }
.brand__red  { color: var(--accent-600); }

.nav { display: flex; align-items: center; gap: 6px; }
.nav > a:not(.nav__cta) {
  padding: 9px 14px; border-radius: 8px;
  font-weight: 500; color: var(--ink-soft);
  transition: color .18s var(--ease), background .18s var(--ease);
}
.nav > a:not(.nav__cta):hover { color: var(--brand-700); background: var(--brand-50); }
.nav__cta { margin-left: 8px; }

.nav-toggle {
  display: none; width: 44px; height: 44px;
  border: 1px solid var(--line); border-radius: 10px;
  background: var(--surface); color: var(--ink);
  place-items: center;
}
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle__close { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #eaf1ff;
  background: linear-gradient(155deg, #16336e 0%, var(--brand-900) 60%, #081633 100%);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(60% 55% at 82% 8%, rgba(37,99,235,.45), transparent 60%),
    radial-gradient(45% 45% at 5% 95%, rgba(220,38,38,.22), transparent 60%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M0 20h40M20 0v40' stroke='%23ffffff' stroke-opacity='0.03' stroke-width='1'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
  padding: clamp(56px, 8vw, 96px) 0 clamp(64px, 9vw, 104px);
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.3rem, 5.4vw, 3.9rem);
  line-height: 1.08;
  letter-spacing: -.015em;
  color: #fff;
  margin-bottom: 20px;
}
.hero__lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: #c3d3f2; max-width: 42ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero__trust {
  display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 34px;
  font-size: .94rem; color: #cbd8f4;
}
.hero__trust li { display: inline-flex; align-items: center; gap: 8px; }
.hero__trust .ic { width: 18px; height: 18px; color: #7dd3a3; }

/* Hero visual */
.hero__visual { position: relative; justify-self: center; width: 100%; max-width: 440px; }
.hero__panel {
  position: relative;
  background: linear-gradient(160deg, rgba(255,255,255,.14), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg);
  padding: 34px 28px 26px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(6px);
}
.washer { width: 100%; max-width: 260px; margin: 0 auto; filter: drop-shadow(0 20px 30px rgba(0,0,0,.35)); }
.washer__drum { transform-box: fill-box; transform-origin: center; animation: spin 9s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.hero__chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 18px; }
.chip {
  font-size: .8rem; font-weight: 600; letter-spacing: .02em;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(255,255,255,.12); color: #eaf1ff;
  border: 1px solid rgba(255,255,255,.18);
}
.hero__badge {
  position: absolute; bottom: -20px; left: -18px;
  display: flex; align-items: center; gap: 10px;
  background: var(--surface); color: var(--ink);
  padding: 14px 18px; border-radius: 16px;
  box-shadow: var(--shadow-lg);
}
.hero__badge-num { font-family: var(--font-display); font-weight: 700; font-size: 1.9rem; color: var(--accent-600); line-height: 1; }
.hero__badge-label { font-size: .78rem; font-weight: 600; color: var(--ink-soft); line-height: 1.15; }

/* ---------- Trust strip ---------- */
.trust { background: var(--surface); border-bottom: 1px solid var(--line-soft); }
.trust__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
  padding: clamp(36px, 5vw, 56px) 0;
}
.trust__item { text-align: center; padding: 18px 20px; }
.trust__item + .trust__item { border-left: 1px solid var(--line-soft); }
.trust__item .ic--lg { margin: 0 auto 12px; color: var(--brand-600); }
.trust__item h3 { font-size: 1.08rem; margin-bottom: 6px; }
.trust__item p { font-size: .94rem; color: var(--ink-mute); }

/* ---------- Cards ---------- */
.cards { display: grid; gap: 22px; }
.cards--4 { grid-template-columns: repeat(4, 1fr); }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--offset { margin-top: 22px; }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--brand-100); }
.card h3 { font-size: 1.22rem; margin-bottom: 8px; }
.card p { color: var(--ink-soft); font-size: .98rem; }

.card__icon {
  display: grid; place-items: center;
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--brand-50); color: var(--brand-600);
  margin-bottom: 18px;
}
.card__icon svg { width: 30px; height: 30px; }
.card__icon--accent { background: #fef2f2; color: var(--accent-600); }

.card--wide { display: flex; gap: 18px; align-items: flex-start; }
.card--wide .card__icon { margin-bottom: 0; }

/* ---------- Brands ---------- */
.brands {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  max-width: 880px; margin: 0 auto;
}
.brands li {
  display: grid; place-items: center;
  padding: 22px 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.35rem; letter-spacing: .02em;
  color: var(--brand-800);
  transition: transform .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
}
.brands li:hover { transform: translateY(-3px); color: var(--brand-600); border-color: var(--brand-100); }

/* ---------- About ---------- */
.about {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.about__media { display: grid; gap: 18px; }
.about__photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.about__photo svg { width: 100%; height: auto; }
.about__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.stat {
  text-align: center; padding: 18px 10px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 14px; box-shadow: var(--shadow-sm);
}
.stat__num { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; color: var(--brand-700); }
.stat__label { font-size: .82rem; color: var(--ink-mute); }

.about__body p { color: var(--ink-soft); margin-top: 16px; }
.checklist { margin: 24px 0 30px; display: grid; gap: 12px; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; font-weight: 500; }
.checklist .ic { width: 22px; height: 22px; color: #16a34a; margin-top: 2px; }

/* ---------- Steps ---------- */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  counter-reset: step;
}
.step {
  position: relative;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 34px 28px 28px;
}
.step__num {
  display: grid; place-items: center;
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(150deg, var(--brand-500), var(--accent-600));
  color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1.4rem;
  margin-bottom: 18px; box-shadow: var(--shadow-md);
}
.step h3 { color: #fff; font-size: 1.28rem; margin-bottom: 8px; }
.step p { color: #b6c6e6; font-size: .98rem; }

/* ---------- Reviews / Bewertungen ---------- */
.stars { display: inline-flex; align-items: center; gap: 3px; color: #f59e0b; }
.star { width: 26px; height: 26px; fill: currentColor; }
.star--half path { fill: url(#halfStar); }
.stars--sm .star { width: 19px; height: 19px; }

.rating-summary {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 22px;
  max-width: 820px; margin: 0 auto 40px;
  padding: 26px 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.rating-summary__score { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.rating-summary__num { font-family: var(--font-display); font-weight: 700; font-size: 2.6rem; color: var(--ink); line-height: 1; }
.rating-summary__count { color: var(--ink-mute); font-size: .95rem; width: 100%; }
.rating-summary__cta { display: flex; align-items: center; gap: 14px; }
.gbadge { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }

.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tcard {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.tcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tcard blockquote { margin: 0; color: var(--ink-soft); font-size: 1rem; line-height: 1.6; flex: 1; }
.tcard figcaption { display: flex; align-items: center; gap: 12px; }
.tcard figcaption strong { display: block; color: var(--ink); font-size: .98rem; }
.tcard__meta { font-size: .82rem; color: var(--ink-mute); }
.tcard__avatar {
  display: grid; place-items: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(150deg, var(--brand-500), var(--brand-800));
  color: #fff; font-weight: 700; font-size: 1.05rem;
}

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(26px, 4vw, 44px); align-items: start; }

.contact__form-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-md);
}
.form { display: grid; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field label { font-weight: 600; font-size: .92rem; color: var(--ink); }
.req { color: var(--accent-600); }

.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit; font-size: .98rem;
  color: var(--ink);
  padding: 12px 14px;
  background: #fbfcfe;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color .16s var(--ease), box-shadow .16s var(--ease), background .16s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input::placeholder, .field textarea::placeholder { color: #9aa7bd; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand-500);
  box-shadow: 0 0 0 4px rgba(37,99,235,.14);
  background: #fff;
}
.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea { border-color: var(--accent-600); background: #fff6f6; }
.field.is-invalid .field__error { display: block; }

.field__error { display: none; color: var(--accent-700); font-size: .84rem; font-weight: 500; }

.field--check { grid-template-columns: auto 1fr; align-items: start; gap: 6px 12px; }
.field--check input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--brand-600); }
.field--check label { font-weight: 400; font-size: .9rem; color: var(--ink-soft); line-height: 1.5; }
.field--check a { color: var(--brand-600); text-decoration: underline; }
.field--check .field__error { grid-column: 1 / -1; }

/* Honeypot */
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }

.btn__spinner { display: none; animation: spin 0.8s linear infinite; }
.is-loading .btn__arrow { display: none; }
.is-loading .btn__spinner { display: block; }
.is-loading { pointer-events: none; opacity: .85; }

.form__status { font-weight: 600; font-size: .96rem; padding: 2px 2px; margin: 0; }
.form__status.is-success { color: #15803d; }
.form__status.is-error { color: var(--accent-700); }
.form__note { font-size: .84rem; color: var(--ink-mute); }

/* Info card */
.contact__info { display: grid; gap: 20px; }
.info-card {
  background: linear-gradient(160deg, var(--brand-800), var(--brand-900));
  color: #dce7fb;
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3.5vw, 34px);
  box-shadow: var(--shadow-md);
}
.info-card h3 { font-family: var(--font-display); color: #fff; font-size: 1.5rem; margin-bottom: 18px; }
.info-list { display: grid; gap: 15px; margin-bottom: 26px; }
.info-list li { display: flex; align-items: flex-start; gap: 12px; }
.info-list .ic { color: #93b4ff; margin-top: 2px; }
.info-list a:hover { color: #fff; text-decoration: underline; }
.info-card__sub { color: #fff; font-size: 1.02rem; margin-bottom: 12px; }

.hours { width: 100%; border-collapse: collapse; font-size: .96rem; }
.hours th, .hours td { text-align: left; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.hours th { font-weight: 600; color: #bcd0f5; }
.hours td { text-align: right; color: #fff; font-variant-numeric: tabular-nums; }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: none; }

.map { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.map iframe { width: 100%; height: 260px; border: 0; }

/* ---------- Footer ---------- */
.footer { background: var(--brand-900); color: #aebdda; }
.footer__grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px;
  padding: clamp(48px, 6vw, 72px) 0 40px;
}
.footer__brand p { margin-top: 16px; color: #93a4c7; font-size: .96rem; max-width: 34ch; }
.brand--footer .brand__blue { color: #93b4ff; }
.brand--footer .brand__dash { color: #64769c; }
.footer__col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer__col ul { display: grid; gap: 10px; font-size: .95rem; }
.footer__col a:hover { color: #fff; text-decoration: underline; }
.footer__bar { border-top: 1px solid rgba(255,255,255,.1); }
.footer__bar-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; padding: 18px 0; font-size: .88rem; color: #8497ba;
}
.footer__legal { display: flex; gap: 20px; }
.footer__legal a:hover { color: #fff; text-decoration: underline; }

/* ---------- Reveal animation (scoped to .js so content is visible without JS) ---------- */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__content { order: 1; }
  .hero__visual { order: 2; margin-top: 8px; }
  .hero__lead { margin-inline: auto; }
  .hero__actions, .hero__trust { justify-content: center; }
  .cards--4 { grid-template-columns: repeat(2, 1fr); }
  .cards--3 { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .rating-summary { justify-content: center; text-align: center; }
  .about { grid-template-columns: 1fr; }
  .about__media { order: 2; }
  .contact { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .brands { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  .nav {
    position: fixed; inset: 0 0 auto 0; top: calc(var(--header-h) + 0px);
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--surface);
    padding: 16px clamp(20px, 5vw, 40px) 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px);
    opacity: 0; visibility: hidden;
    transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav > a:not(.nav__cta) { padding: 14px 12px; border-radius: 10px; font-size: 1.05rem; }
  .nav__cta { margin: 10px 0 0; padding: 14px; }
  .nav-toggle { display: grid; }
  .header.nav-open .nav-toggle__open { display: none; }
  .header.nav-open .nav-toggle__close { display: block; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .trust__item:nth-child(3) { border-left: none; }
  .trust__item:nth-child(odd) { border-left: none; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .cards--4 { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .brands { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bar-inner { flex-direction: column; text-align: center; }
  .hero__badge { left: 50%; transform: translateX(-50%); bottom: -24px; }
  .step { padding: 28px 22px 24px; }
}

/* =========================================================
   Legal pages (Impressum / Datenschutz)
   ========================================================= */
.legal-hero {
  background: linear-gradient(150deg, var(--brand-800), var(--brand-900));
  color: #fff;
  padding: clamp(90px, 12vw, 130px) 0 clamp(40px, 6vw, 60px);
}
.legal-hero__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 4.5vw, 3rem); }
.legal-hero__crumb { margin-top: 12px; color: #bcd0f5; font-size: .95rem; }
.legal-hero__crumb a:hover { color: #fff; text-decoration: underline; }

.legal { padding: clamp(48px, 7vw, 80px) 0; }
.legal .container { max-width: 820px; }
.legal h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.5rem; margin: 40px 0 14px;
  padding-bottom: 8px; border-bottom: 1px solid var(--line);
}
.legal h2:first-child { margin-top: 0; }
.legal h3 { font-size: 1.12rem; margin: 26px 0 8px; }
.legal p, .legal li { color: var(--ink-soft); margin-bottom: 12px; }
.legal ul { list-style: disc; padding-left: 22px; margin-bottom: 12px; }
.legal a { color: var(--brand-600); text-decoration: underline; }
.legal .placeholder {
  background: #fff8e6; border: 1px dashed #eab308; color: #854d0e;
  padding: 3px 8px; border-radius: 6px; font-weight: 600; font-size: .92em;
}
.legal address { font-style: normal; line-height: 1.8; }
.legal .back-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 36px; font-weight: 600; color: var(--brand-600); }
.legal .back-link:hover { text-decoration: underline; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .washer__drum { animation: none; }
}
