/* ==========================================================================
   AutoImport DE→MA — Stylesheet
   Alle Farben, Schriften und Abstände sind als CSS-Variablen definiert.
   Zum Anpassen einfach die Werte in :root ändern.
   ========================================================================== */

:root {
  /* -- Farben ------------------------------------------------------------ */
  --color-navy: #0a2540;          /* Header, Footer, dunkle Flächen */
  --color-blue: #1d5fa8;          /* Primärfarbe (Buttons, Links) */
  --color-blue-dark: #154a86;     /* Hover-Zustand Primärfarbe */
  --color-blue-light: #eaf2fb;    /* Helle Flächen / Section-Backgrounds */
  --color-accent: #f4a93b;        /* Akzent für Hervorhebungen */
  --color-whatsapp: #25d366;      /* WhatsApp-Grün, nur für WA-Buttons */
  --color-whatsapp-dark: #1da851;
  --color-bg: #f7f9fc;            /* Seitenhintergrund */
  --color-surface: #ffffff;       /* Karten, Formulare */
  --color-text: #16232e;          /* Haupttext */
  --color-text-muted: #5b6b7c;    /* Sekundärtext */
  --color-border: #dce4ee;        /* Rahmenfarbe */
  --color-success-bg: #e7f6ec;
  --color-success-text: #1c7a3d;
  --color-error-bg: #fdecec;
  --color-error-text: #b3261e;

  /* -- Typografie ---------------------------------------------------------- */
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;

  /* -- Layout --------------------------------------------------------------- */
  --max-width: 1120px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(10, 37, 64, 0.06);
  --shadow-md: 0 8px 24px rgba(10, 37, 64, 0.08);
  --shadow-lg: 0 20px 48px rgba(10, 37, 64, 0.14);
  --transition: 180ms ease;
}

/* ==========================================================================
   Reset & Basis
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--color-blue);
  text-decoration: none;
}

a:hover {
  color: var(--color-blue-dark);
}

h1, h2, h3, h4 {
  margin: 0 0 0.5em;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--color-navy);
}

h1 { font-size: clamp(2.1rem, 4vw, 3.2rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); }
h3 { font-size: 1.25rem; }

p {
  margin: 0 0 1em;
  color: var(--color-text);
}

.text-muted { color: var(--color-text-muted); }

code, .mono {
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}

:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: 4px;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* Eyebrow-Label: technisches Kennzeichnungssystem, wie ein Frachtcode */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-blue);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--color-accent);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition), border-color var(--transition);
  line-height: 1;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--color-blue);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--color-blue-dark);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--color-navy);
  border-color: var(--color-border);
}

.btn-outline:hover {
  border-color: var(--color-blue);
  color: var(--color-blue);
}

.btn-whatsapp {
  background: var(--color-whatsapp);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-whatsapp:hover {
  background: var(--color-whatsapp-dark);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn-block {
  width: 100%;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 37, 64, 0.97);
  -webkit-backdrop-filter: saturate(140%) blur(6px);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 12px;
  flex-wrap: wrap;
}

.route-caption {
  font-size: 0.85rem;
  margin: 14px 0 0;
}

.process-shell {
  max-width: 820px;
}

.process-grid {
  align-items: center;
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-description {
  max-width: 36ch;
}

.footer-contact-label {
  color: var(--color-navy);
}

.contact-sidebar-block {
  margin-bottom: 10px;
}

.contact-sidebar-text {
  margin-bottom: 0;
}

.section-center {
  text-align: center;
  margin-top: 36px;
}

.vin-example-copy {
  margin-top: 14px;
}

.vin-example-number {
  font-size: 1.1rem;
  color: var(--color-navy);
  font-weight: 700;
}

.vin-example-hint {
  font-size: 0.85rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-wrap: nowrap;
}

.lang-switcher {
  position: relative;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}

.lang-toggle:hover,
.lang-switcher.is-open .lang-toggle {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.38);
}

.lang-toggle-caret {
  font-size: 0.65rem;
  transition: transform var(--transition);
}

.lang-switcher.is-open .lang-toggle-caret {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 50;
  min-width: 170px;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  box-shadow: 0 16px 32px rgba(10, 37, 64, 0.22);
}

.lang-menu[hidden] {
  display: none;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 9px 10px;
  border: none;
  background: transparent;
  border-radius: 8px;
  color: var(--color-text);
  font-size: 0.9rem;
  font-family: var(--font-body);
  text-align: left;
  cursor: pointer;
  transition: background var(--transition);
}

.lang-option:hover,
.lang-option.is-active {
  background: var(--color-blue-light);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #f2f5f8;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  min-width: 0;
}

.brand:hover {
  color: #fff;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
}

.brand-name {
  color: #f3f5f8;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-slogan {
  margin-top: 2px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #c7d0da;
  white-space: nowrap;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 12px;
  flex-shrink: 0;
  background: #0b1a33;
  padding: 3px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

@media (max-width: 640px) {
  .brand {
    gap: 8px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand-name {
    font-size: 0.92rem;
    letter-spacing: 0.08em;
  }

  .brand-slogan {
    font-size: 0.62rem;
    letter-spacing: 0.04em;
    white-space: normal;
  }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
  font-size: 0.94rem;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.nav-links .btn {
  margin-left: 8px;
  padding: 10px 20px;
}

@media (max-width: 780px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-navy);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: none;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 10px;
  }

  .nav-links .btn {
    margin: 10px 0 0;
    justify-content: center;
  }

  .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);
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  background: var(--color-navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(29, 95, 168, 0.35), transparent 55%),
    radial-gradient(circle at 10% 90%, rgba(244, 169, 59, 0.12), transparent 45%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding: 76px 24px 64px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero .eyebrow {
  color: var(--color-accent);
}

.hero h1 {
  color: #fff;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 44px;
  flex-wrap: wrap;
}

.hero-stat strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.5rem;
  color: #fff;
  font-weight: 700;
}

.hero-stat span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

/* Routen-Diagramm — Signatur-Element */
.route-panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}

.route-panel-label {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.route-svg {
  width: 100%;
  height: auto;
}

.route-city {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  fill: #fff;
  font-weight: 600;
}

.route-sub {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  fill: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
}

.route-line {
  stroke: var(--color-accent);
  stroke-width: 2;
  stroke-dasharray: 6 6;
  fill: none;
  stroke-linecap: round;
  animation: dash 22s linear infinite;
}

@keyframes dash {
  to { stroke-dashoffset: -240; }
}

@media (prefers-reduced-motion: reduce) {
  .route-line { animation: none; }
}

.route-dot {
  fill: var(--color-accent);
}

.route-node {
  fill: var(--color-navy);
  stroke: #fff;
  stroke-width: 2;
}

/* ==========================================================================
   Sections generisch
   ========================================================================== */

.section {
  padding: 76px 0;
}

.section-tight {
  padding: 56px 0;
}

.section-alt {
  background: var(--color-blue-light);
}

.section-head {
  max-width: 640px;
  margin-bottom: 44px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ==========================================================================
   Cards / Grids
   ========================================================================== */

.grid {
  display: grid;
  gap: 24px;
}

.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 860px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 56px 20px 48px;
  }

  .route-panel {
    max-width: 480px;
    margin: 0 auto;
  }
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--color-blue-light);
  color: var(--color-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.card-icon svg {
  width: 22px;
  height: 22px;
}

.card h3 {
  margin-bottom: 8px;
}

.card p:last-child {
  margin-bottom: 0;
}

/* Part-code Chip: Beispiel für Teile-Kennzeichnung */
.chip {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  background: var(--color-blue-light);
  color: var(--color-blue);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   Prozess / Ablauf-Seite — echte Sequenz, daher Nummerierung gerechtfertigt
   ========================================================================== */

.process-list {
  position: relative;
  margin-top: 8px;
}

.process-step {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 28px;
  position: relative;
  padding-bottom: 52px;
}

.process-step:last-child {
  padding-bottom: 0;
}

.process-step::before {
  content: "";
  position: absolute;
  left: 43px;
  top: 64px;
  bottom: -4px;
  width: 1px;
  background: var(--color-border);
}

.process-step:last-child::before {
  display: none;
}

.process-index {
  width: 88px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--color-blue);
  background: var(--color-blue-light);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.process-body {
  padding-top: 6px;
}

.process-meta {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  display: block;
}

.process-body h3 {
  margin-bottom: 8px;
}

.process-body p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   Formular
   ========================================================================== */

.form-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 940px) {
  .form-layout {
    grid-template-columns: 1fr;
  }
}

.form-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.form-fieldset {
  border: none;
  padding: 0;
  margin: 0 0 32px;
}

.form-fieldset:last-of-type {
  margin-bottom: 0;
}

.form-fieldset legend {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-blue);
  padding: 0 0 14px;
  width: 100%;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
}

@media (max-width: 620px) {
  .form-row, .form-row-3 {
    grid-template-columns: 1fr;
  }
}

.field {
  margin-bottom: 18px;
}

.field:last-child {
  margin-bottom: 0;
}

.field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 6px;
}

.field label .optional {
  font-weight: 400;
  color: var(--color-text-muted);
  text-transform: none;
  letter-spacing: 0;
}

.field .hint {
  display: block;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-top: 5px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--color-text);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.field input[data-vin],
.field input.mono {
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.field textarea {
  resize: vertical;
  min-height: 110px;
}

.upload-field input[type="file"] {
  padding: 10px 12px;
  background: #fff;
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-sm);
}

.upload-field input[type="file"]::file-selector-button {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  background: var(--color-blue-light);
  color: var(--color-navy);
  cursor: pointer;
  margin-right: 10px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(29, 95, 168, 0.14);
}

.field input:required:invalid:not(:placeholder-shown) {
  border-color: #d9822b;
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: var(--color-blue-light);
  border-radius: var(--radius-sm);
  margin-top: -4px;
}

.checkbox-field input {
  width: auto;
  margin-top: 3px;
  accent-color: var(--color-whatsapp);
}

.checkbox-field label {
  margin: 0;
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-footnote {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 18px;
}

.form-msg {
  display: none;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  margin-bottom: 22px;
}

.form-msg.is-visible {
  display: block;
}

.form-msg.success {
  background: var(--color-success-bg);
  color: var(--color-success-text);
}

.form-msg.error {
  background: var(--color-error-bg);
  color: var(--color-error-text);
}

/* Sidebar neben dem Formular */
.form-aside .card {
  margin-bottom: 18px;
}

.form-aside .card:last-child {
  margin-bottom: 0;
}

.aside-whatsapp {
  background: linear-gradient(155deg, #1f7a44, var(--color-whatsapp));
  color: #fff;
  border: none;
}

.aside-whatsapp h3 {
  color: #fff;
}

.aside-whatsapp p {
  color: rgba(255, 255, 255, 0.88);
}

.aside-whatsapp .btn-outline {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.aside-whatsapp .btn-outline:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: #fff;
}

/* honeypot, versteckt für Menschen, sichtbar für Bots */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
}

/* ==========================================================================
   CTA-Band
   ========================================================================== */

.cta-band {
  background: var(--color-navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 6px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0;
}

.cta-band-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.65);
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding: 56px 24px 32px;
  max-width: var(--max-width);
  margin: 0 auto;
}

@media (max-width: 720px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.footer-grid h4 {
  color: #fff;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-grid p,
.footer-grid a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 24px;
}

.footer-bottom-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.55);
}

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */

.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--color-whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition), background var(--transition);
}

.wa-float:hover {
  background: var(--color-whatsapp-dark);
  transform: scale(1.06);
  color: #fff;
}

.wa-float svg {
  width: 28px;
  height: 28px;
}

/* ==========================================================================
   Page header (Unterseiten)
   ========================================================================== */

.page-header {
  background: var(--color-navy);
  color: #fff;
  padding: 56px 0 48px;
}

.page-header h1 {
  color: #fff;
  margin-bottom: 10px;
}

.page-header p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 56ch;
  margin-bottom: 0;
}

.legal-content {
  max-width: 760px;
}

.legal-content h2 {
  margin-top: 40px;
  font-size: 1.25rem;
  color: var(--color-navy);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content ul {
  margin: 0 0 20px;
  padding-left: 20px;
}

.legal-content li {
  margin-bottom: 6px;
  color: var(--color-text);
}
