/* ============================================================
   Abschleppdienst Wolf – styles.css
   Design: Schwarz & Gelb, minimalistisch, premium, mobile-first
   ============================================================ */

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  --yellow:       #FFD600;
  --yellow-dark:  #E6C000;
  --yellow-light: #FFF176;
  --black:        #0A0A0A;
  --surface:      #111111;
  --surface-alt:  #161616;
  --card:         #1A1A1A;
  --card-border:  #2A2A2A;
  --text:         #F0F0F0;
  --text-muted:   #999999;
  --text-faint:   #555555;
  --white:        #FFFFFF;
  --error:        #FF4444;
  --success:      #22BB66;

  --radius-sm:    6px;
  --radius:       12px;
  --radius-lg:    20px;

  --shadow-sm:    0 2px 8px rgba(0,0,0,.35);
  --shadow:       0 4px 24px rgba(0,0,0,.45);
  --shadow-yellow:0 0 0 3px rgba(255,214,0,.25);

  --font:         'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-mono:    'Courier New', monospace;

  --transition:   .2s ease;
  --container:    1160px;
  --sticky-h:     60px;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.65;
  padding-bottom: var(--sticky-h);
}

img, video { max-width: 100%; display: block; }
a { color: inherit; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}
h1,h2,h3,h4 { line-height: 1.2; }

/* ── Utilities ──────────────────────────────────────────────── */
.text-yellow  { color: var(--yellow); }
.container    { max-width: var(--container); margin-inline: auto; padding-inline: 1.25rem; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  white-space: nowrap;
  user-select: none;
}
.btn:active { transform: scale(.97); }

.btn--yellow {
  background: var(--yellow);
  color: #000;
  border-color: var(--yellow);
}
.btn--yellow:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  box-shadow: 0 4px 20px rgba(255,214,0,.3);
}

.btn--outline {
  background: transparent;
  color: var(--yellow);
  border-color: var(--yellow);
}
.btn--outline:hover {
  background: rgba(255,214,0,.08);
  box-shadow: 0 4px 20px rgba(255,214,0,.15);
}

.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--card-border);
}
.btn--ghost:hover { color: var(--text); border-color: #444; }

.btn--lg  { padding: 1rem 2rem; font-size: 1.1rem; border-radius: var(--radius); }
.btn--sm  { padding: .5rem 1rem; font-size: .875rem; }
.btn--full{ width: 100%; }

/* ── Cookie Banner ──────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: var(--sticky-h);
  left: 0; right: 0;
  background: var(--surface-alt);
  border-top: 1px solid var(--card-border);
  z-index: 1000;
  padding: 1rem;
  box-shadow: 0 -4px 24px rgba(0,0,0,.5);
}
.cookie-banner.hidden { display: none; }
.cookie-banner__inner {
  max-width: var(--container);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.cookie-banner__text { flex: 1 1 300px; }
.cookie-banner__text strong { color: var(--yellow); display: block; margin-bottom: .25rem; }
.cookie-banner__text p { font-size: .875rem; color: var(--text-muted); margin: 0; }
.cookie-banner__actions {
  display: flex; flex-wrap: wrap; gap: .5rem; align-items: center;
}
.cookie-banner__link { font-size: .8rem; color: var(--text-muted); text-decoration: underline; }

/* ── Navigation ─────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(10,10,10,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: .875rem;
  gap: 1rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--text);
  white-space: nowrap;
}
.nav__logo strong { color: var(--yellow); }
.nav__logo-icon { color: var(--yellow); font-size: 1.2rem; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
}
.nav__link {
  padding: .4rem .75rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  text-decoration: none;
  color: var(--text-muted);
  transition: color var(--transition), background var(--transition);
}
.nav__link:hover { color: var(--text); background: rgba(255,255,255,.06); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.nav__toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0A0A0A 0%, #111111 50%, #0D0D00 100%);
  overflow: hidden;
  padding-block: 6rem 4rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 20%, rgba(255,214,0,.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(255,214,0,.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 70%, var(--black) 100%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: rgba(255,214,0,.1);
  border: 1px solid rgba(255,214,0,.3);
  border-radius: 100px;
  padding: .35rem 1rem;
  font-size: .85rem;
  color: var(--yellow);
  margin-bottom: 1.5rem;
}

.badge--pulse {
  width: 8px; height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,214,0,.6); }
  50%      { box-shadow: 0 0 0 8px rgba(255,214,0,0); }
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  max-width: 600px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2rem;
}

.trust-chip {
  background: rgba(255,255,255,.06);
  border: 1px solid var(--card-border);
  border-radius: 100px;
  padding: .35rem .9rem;
  font-size: .85rem;
  color: var(--text-muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero__reassure {
  font-size: .875rem;
  color: var(--text-faint);
  font-style: italic;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-faint);
  font-size: 1.5rem;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ── Sections ───────────────────────────────────────────────── */
.section          { padding-block: 5rem; background: var(--black); }
.section--dark-alt{ background: var(--surface); }

.section-header   { text-align: center; margin-bottom: 3.5rem; }
.section-title    { font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 800; margin-bottom: .75rem; }
.section-sub      { color: var(--text-muted); font-size: 1.05rem; max-width: 560px; margin-inline: auto; }

/* ── Form ───────────────────────────────────────────────────── */
.form-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 860px;
  margin-inline: auto;
  box-shadow: var(--shadow);
}

.form-card__hints {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: .75rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--card-border);
}
.hint-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: var(--text-muted);
}
.hint-icon { font-size: 1.1rem; }

.form { display: flex; flex-direction: column; gap: 1.5rem; }

.form__honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form__group         { display: flex; flex-direction: column; gap: .35rem; }
.form__group--full   { grid-column: 1 / -1; }

.form__label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-muted);
}
.form__label--required::after {
  content: ' *';
  color: var(--yellow);
}
.form__optional { font-weight: 400; color: var(--text-faint); }

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  background: var(--surface-alt);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  padding: .75rem 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.form__input::placeholder,
.form__textarea::placeholder { color: var(--text-faint); }
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--yellow);
  box-shadow: var(--shadow-yellow);
  outline: none;
}
.form__input.is-invalid,
.form__select.is-invalid,
.form__textarea.is-invalid {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(255,68,68,.15);
}

.form__select-wrap { position: relative; }
.form__select-wrap::after {
  content: '▾';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}
.form__select { cursor: pointer; padding-right: 2.5rem; }
.form__select option { background: var(--surface-alt); }

.form__textarea { resize: vertical; min-height: 100px; }

.form__hint  { font-size: .8rem; color: var(--text-faint); }
.form__error { font-size: .8rem; color: var(--error); min-height: 1rem; }

/* Upload area */
.form__upload-area {
  position: relative;
  border: 2px dashed var(--card-border);
  border-radius: var(--radius);
  padding: 2rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.form__upload-area:hover,
.form__upload-area.drag-over {
  border-color: var(--yellow);
  background: rgba(255,214,0,.04);
}
.form__file-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.form__upload-icon { font-size: 2rem; margin-bottom: .5rem; }
.form__upload-text { color: var(--text-muted); font-size: .95rem; margin-bottom: .25rem; }
.form__upload-hint { font-size: .8rem; color: var(--text-faint); }

.form__file-list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .75rem;
}
.file-chip {
  display: flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,214,0,.1);
  border: 1px solid rgba(255,214,0,.3);
  border-radius: 100px;
  padding: .25rem .75rem;
  font-size: .8rem;
  color: var(--yellow);
}
.file-chip__remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--yellow);
  font-size: .9rem;
  line-height: 1;
  padding: 0;
}

/* Checkboxes */
.form__checkboxes { display: flex; flex-direction: column; gap: .75rem; }
.form__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  cursor: pointer;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.form__checkbox { display: none; }
.form__checkmark {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border: 2px solid var(--card-border);
  border-radius: 4px;
  margin-top: 2px;
  position: relative;
  transition: border-color var(--transition), background var(--transition);
}
.form__checkbox:checked + .form__checkmark {
  background: var(--yellow);
  border-color: var(--yellow);
}
.form__checkbox:checked + .form__checkmark::after {
  content: '';
  position: absolute;
  left: 5px; top: 2px;
  width: 6px; height: 10px;
  border: 2px solid #000;
  border-top: none; border-left: none;
  transform: rotate(45deg);
}
.form__link { color: var(--yellow); text-decoration: underline; }

/* Submit area */
.form__submit-area { display: flex; flex-direction: column; gap: .75rem; }
.form__reassure { font-size: .8rem; color: var(--text-faint); text-align: center; }

/* Spinner */
.spinner {
  display: inline-block;
  width: 18px; height: 18px;
  border: 2px solid rgba(0,0,0,.3);
  border-top-color: #000;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Form messages */
.form__message {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  font-size: .95rem;
}
.form__message--success {
  background: rgba(34,187,102,.1);
  border: 1px solid rgba(34,187,102,.3);
  color: var(--success);
}
.form__message--error {
  background: rgba(255,68,68,.1);
  border: 1px solid rgba(255,68,68,.3);
  color: var(--error);
}
.form__message-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: .1rem; }
.form__message p { margin-top: .25rem; font-size: .875rem; opacity: .85; }
.form__message strong { display: block; }

/* ── Services Grid ───────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  border-color: rgba(255,214,0,.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
.service-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.service-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .5rem;
}
.service-card__text {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Price Grid ─────────────────────────────────────────────── */
.price-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  background: rgba(255,214,0,.08);
  border: 1px solid rgba(255,214,0,.25);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  font-size: 1rem;
  text-align: center;
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}
.price-note--top { margin-bottom: 2.5rem; }

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.price-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}
.price-card--highlight {
  border-color: rgba(255,214,0,.3);
  background: rgba(255,214,0,.04);
}
.price-card__service {
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: .5rem;
  font-weight: 600;
}
.price-card__price {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: .35rem;
}
.price-card__note {
  font-size: .8rem;
  color: var(--text-faint);
}

.price-disclaimer {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: .9rem;
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: 2rem;
}

.price-cta { text-align: center; }

/* ── Trust Grid ─────────────────────────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}
.trust-item {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: border-color var(--transition);
}
.trust-item:hover { border-color: rgba(255,214,0,.35); }
.trust-item__icon {
  font-size: 2rem;
  color: var(--yellow);
  margin-bottom: .75rem;
  display: block;
}
.trust-item__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .4rem;
  color: var(--white);
}
.trust-item__text { font-size: .875rem; color: var(--text-muted); }

/* ── Steps ──────────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
}
.step {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
}
.step__number {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255,214,0,.15);
  line-height: 1;
  margin-bottom: .5rem;
}
.step__icon { font-size: 2rem; margin-bottom: .75rem; display: block; }
.step__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: var(--white);
}
.step__text { font-size: .875rem; color: var(--text-muted); margin-bottom: 1rem; }
.step__link { font-size: .875rem; color: var(--yellow); text-decoration: none; font-weight: 600; }
.step__link:hover { text-decoration: underline; }

.step__divider {
  font-size: 2rem;
  color: var(--yellow);
  opacity: .4;
  text-align: center;
}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-list {
  max-width: 780px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item[open] { border-color: rgba(255,214,0,.35); }
.faq-question {
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--text);
  transition: color var(--transition);
  user-select: none;
}
.faq-question:hover { color: var(--yellow); }
.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--yellow);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item[open] .faq-question::after { transform: rotate(45deg); }
.faq-question::-webkit-details-marker { display: none; }
.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.7;
}
.faq-answer strong { color: var(--text); }

/* ── Contact ────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.contact-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
}
.contact-card__icon {
  font-size: 2rem;
  margin-bottom: .75rem;
  display: block;
  color: var(--yellow);
}
.contact-card__title {
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .5rem;
}
.contact-card__value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: .25rem;
}
.contact-card__value--link { color: var(--yellow); text-decoration: none; }
.contact-card__value--link:hover { text-decoration: underline; }
.contact-card__note { font-size: .8rem; color: var(--text-faint); }

.contact-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--surface-alt);
  border-top: 1px solid var(--card-border);
  padding-block: 2.5rem;
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 1rem;
  flex-direction: column;
  align-items: flex-start;
}
.footer__brand > span { display: flex; align-items: center; gap: .4rem; }
.footer__tagline { font-size: .8rem; color: var(--text-faint); margin-top: .1rem; }
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: .25rem .75rem;
}
.footer__link {
  font-size: .875rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.footer__link:hover { color: var(--yellow); }
.footer__copy { font-size: .8rem; color: var(--text-faint); width: 100%; text-align: center; }

/* ── Sticky Mobile Bar ──────────────────────────────────────── */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  height: var(--sticky-h);
  display: none;
  z-index: 800;
  background: var(--surface-alt);
  border-top: 1px solid var(--card-border);
  box-shadow: 0 -4px 20px rgba(0,0,0,.4);
}
.sticky-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
  height: 100%;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}
.sticky-bar__btn--call {
  background: var(--yellow);
  color: #000;
}
.sticky-bar__btn--call:hover { background: var(--yellow-dark); }
.sticky-bar__btn--form {
  background: var(--card);
  color: var(--text);
  border-left: 1px solid var(--card-border);
}
.sticky-bar__btn--form:hover { background: #222; }

/* ── Legal Pages ────────────────────────────────────────────── */
.legal-page  { padding-block: 5rem 3rem; }
.legal-page .container { max-width: 780px; }
.legal-title { font-size: 2rem; font-weight: 800; margin-bottom: .5rem; }
.legal-date  { font-size: .875rem; color: var(--text-faint); margin-bottom: 3rem; }

.legal-section { margin-bottom: 2.5rem; }
.legal-section h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--card-border);
}
.legal-section h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
  margin: 1rem 0 .5rem;
}
.legal-section p, .legal-section li {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.legal-section ul { padding-left: 1.25rem; margin-top: .5rem; }
.legal-section li { margin-bottom: .35rem; }
.legal-section a { color: var(--yellow); }

.legal-placeholder {
  background: rgba(255,214,0,.08);
  border: 1px dashed rgba(255,214,0,.4);
  border-radius: var(--radius-sm);
  padding: .2rem .5rem;
  font-family: var(--font-mono);
  font-size: .85rem;
  color: var(--yellow);
}

.legal-warning {
  background: rgba(255,68,68,.08);
  border: 1px solid rgba(255,68,68,.3);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: .875rem;
  color: #FF8888;
  margin-bottom: 2rem;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .step__divider { transform: rotate(90deg); justify-self: center; }
}

@media (max-width: 768px) {
  :root { --sticky-h: 56px; }

  .nav__toggle { display: flex; }
  .nav__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--card-border);
    flex-direction: column;
    padding: 1rem;
    gap: .25rem;
    box-shadow: var(--shadow);
  }
  .nav__menu.is-open { display: flex; }
  .nav__link { padding: .75rem 1rem; width: 100%; }
  .nav__cta  { width: 100%; justify-content: center; margin-top: .5rem; }

  .hero { min-height: 85vh; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }

  .form-card { padding: 1.5rem 1rem; }
  .form__grid { grid-template-columns: 1fr; }
  .form__group--full { grid-column: auto; }

  .services-grid,
  .trust-grid,
  .contact-grid { grid-template-columns: 1fr 1fr; }

  .price-grid { grid-template-columns: 1fr 1fr; }

  .sticky-bar { display: flex; }

  .footer__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .services-grid,
  .trust-grid,
  .contact-grid,
  .price-grid { grid-template-columns: 1fr; }

  .hero__trust { gap: .35rem; }
  .trust-chip  { font-size: .8rem; }

  .form-card { padding: 1.25rem .875rem; }
  .cookie-banner__inner { flex-direction: column; }
  .cookie-banner__actions { flex-wrap: wrap; }
}

@media (min-width: 769px) {
  .sticky-bar { display: none !important; }
  body { padding-bottom: 0; }
  .cookie-banner { bottom: 0; }
}

/* ── Print ──────────────────────────────────────────────────── */
@media print {
  .header, .sticky-bar, .cookie-banner, .hero__scroll-hint { display: none; }
  body { background: white; color: black; }
}

/* ── Hero mit Hintergrundbild (optional) ────────────────────── */
.hero[style*="--hero-bg"] {
  background-image:
    linear-gradient(135deg, rgba(10,10,10,.92) 0%, rgba(17,17,17,.85) 50%, rgba(13,13,0,.90) 100%),
    var(--hero-bg);
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}
/* Wenn Bild noch nicht geladen (Fallback auf Gradient) */
.hero[style*="--hero-bg"]::before { display: none; }

/* ── Fix: [hidden]-Attribut darf nicht durch display:flex überschrieben werden ── */
[hidden] { display: none !important; }

/* ── GPS-Button & Input-Wrapper ─────────────────────────────── */
.form__input-with-btn {
  display: flex;
  gap: .5rem;
  align-items: stretch;
}
.form__input-with-btn .form__input { flex: 1; }

.form__gps-btn {
  flex-shrink: 0;
  width: 46px;
  background: var(--surface-alt);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), background var(--transition);
  color: var(--text);
}
.form__gps-btn:hover { border-color: var(--yellow); background: rgba(255,214,0,.08); }
.form__gps-btn.loading { opacity: .5; pointer-events: none; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.form__hint-link {
  background: none;
  border: none;
  color: var(--yellow);
  font-size: .8rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  font-family: var(--font);
}

/* ── Galerie ────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px 240px 320px;
  grid-template-areas:
    "feat    porsche  porsche"
    "feat    wald     wald"
    "police  abschl   tuev"
    "port    port     port";
  gap: 1rem;
}

/* Explizite Zuweisung per nth-child – keine Modifier-Klassen nötig */
.gallery-item:nth-child(1) { grid-area: feat; }
.gallery-item:nth-child(2) { grid-area: porsche; }
.gallery-item:nth-child(3) { grid-area: wald; }
.gallery-item:nth-child(4) { grid-area: police; }
.gallery-item:nth-child(5) { grid-area: abschl; }
.gallery-item:nth-child(6) { grid-area: tuev; }
.gallery-item:nth-child(7) { grid-area: port; }
/* Portrait oben ausrichten */
.gallery-item:nth-child(7) .gallery-img { object-position: 50% 15%; }

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  background: var(--card);
  cursor: pointer;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .5s ease, filter .5s ease;
  filter: brightness(.92);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.04);
  filter: brightness(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1rem 1.1rem;
  opacity: 0;
  transition: opacity .3s ease;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Auf Touch-Geräten immer sichtbar */
@media (hover: none) {
  .gallery-overlay { opacity: 1; }
}

.gallery-label {
  font-size: .8rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .05em;
  background: rgba(255,214,0,.15);
  border: 1px solid rgba(255,214,0,.3);
  border-radius: 100px;
  padding: .3rem .75rem;
  backdrop-filter: blur(4px);
}

/* Fallback: Bild noch nicht vorhanden → Platzhalter */
.gallery-img[src=""], .gallery-img:not([src]) {
  display: none;
}
.gallery-item:has(.gallery-img[src=""]),
.gallery-item:not(:has(img[src])) {
  background: var(--card);
  border: 2px dashed var(--card-border);
}

.gallery-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ── Gallery Responsive ─────────────────────────────────────── */
@media (max-width: 860px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px 220px;
    grid-template-areas:
      "feat    feat"
      "porsche wald"
      "police  abschl"
      "tuev    port";
  }
}

@media (max-width: 520px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(7, 220px);
    grid-template-areas:
      "feat"
      "porsche"
      "wald"
      "police"
      "abschl"
      "tuev"
      "port";
  }
  .gallery-overlay { opacity: 1; }
}

/* ── WhatsApp Button ────────────────────────────────────────── */
.btn--whatsapp {
  background: #25D366;
  color: #fff !important;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
}
.btn--whatsapp:hover { background: #128C7E; }

/* ── WhatsApp Card ──────────────────────────────────────────── */
.wa-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
.wa-card__label {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  margin: 0;
}
.wa-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
}
.wa-chip {
  background: var(--surface-alt);
  border: 1.5px solid var(--card-border);
  border-radius: 100px;
  padding: .55rem 1.1rem;
  font-size: .9rem;
  font-family: var(--font);
  color: var(--text);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}
.wa-chip:hover,
.wa-chip.is-active {
  border-color: var(--yellow);
  background: rgba(255,214,0,.1);
  color: var(--yellow);
}
.wa-card__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  width: 100%;
}
.wa-card__or {
  font-size: .8rem;
  color: var(--text-muted);
}
.wa-card__privacy {
  font-size: .78rem;
  color: var(--text-muted);
  margin: 0;
}

/* ── Service Card Highlight (Falschparker) ─────────────────── */
.service-card--highlight {
  border-color: var(--yellow);
  background: linear-gradient(135deg, var(--card) 0%, rgba(255,214,0,.06) 100%);
  position: relative;
}
.service-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--black);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  padding: .2rem .7rem;
  border-radius: 100px;
  text-transform: uppercase;
}
.service-card__more {
  display: inline-block;
  margin-top: .75rem;
  color: var(--yellow);
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity var(--transition);
}
.service-card__more:hover { opacity: .75; }

/* ── Falschparker Section ───────────────────────────────────── */
.section--black { background: #0a0a0a; }

.fp-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.fp-badge {
  display: inline-block;
  background: rgba(255,214,0,.12);
  border: 1px solid rgba(255,214,0,.3);
  color: var(--yellow);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .35rem .9rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.fp-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--white);
}
.fp-text {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}
.fp-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.fp-list li {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: var(--text);
  font-size: .95rem;
}
.fp-check {
  color: var(--yellow);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.fp-ctas {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}
.fp-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.fp-stat {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.fp-stat__num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.fp-stat__label {
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.3;
}

@media (max-width: 860px) {
  .fp-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .fp-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 520px) {
  .fp-stats {
    grid-template-columns: 1fr 1fr;
  }
  .wa-card {
    padding: 1.75rem 1.25rem;
  }
  .fp-ctas {
    flex-direction: column;
  }
}
