/*
Theme Name:   DISPONLINE
Theme URI:    https://disponline.de/
Author:       RUK Software GmbH
Author URI:   https://disponline.de/
Description:  Modernes, sicheres und SEO-optimiertes Landingpage-Theme für DISPONLINE – die cloudbasierte Dispositionssoftware für Fahrdienste und Transportunternehmen. Design, Farben und Typografie nach Vorlage von disponline.ch.
Version:      2.9.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License:      GNU General Public License v2 or later
License URI:  https://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  disponline
*/

/* ==========================================================================
   1. Schriften (lokal gehostet – DSGVO-konform, kein Google-Fonts-CDN)
   Wix-Vorlage: Überschriften Roboto (font_0/font_2), Fließtext Quicksand (font_7)
   ========================================================================== */

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('assets/fonts/roboto-variable-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('assets/fonts/quicksand-variable-latin.woff2') format('woff2');
}

/* ==========================================================================
   2. Design-Tokens (exakt aus der Wix-Vorlage disponline.ch extrahiert)
   ========================================================================== */

:root {
  /* Farben */
  --color-primary: #2665AB;      /* Blau  – H2-Überschriften, Links (Wix color_41) */
  --color-accent: #96BF0D;       /* Grün  – Buttons, Akzente (Wix color_42 / Button-BG) */
  --color-accent-dark: #7DA00A;  /* Grün abgedunkelt – Hover/Fokus-Variante */
  --color-dark: #4E4D4D;         /* Dunkelgrau – Kartentitel, Button-Hover (Wix color_40) */
  --color-text: #324158;         /* Fließtext (Wix Rich-Text-Absätze) */
  --color-muted: #8F8F8F;        /* Sekundärtext */
  --color-light: #F4F7FB;        /* Helle Sektionshintergründe (Blau-Weiß) */
  --color-border: #EAEAEA;       /* Rahmen, Trennlinien – hell für feine 1px-Optik */
  --color-white: #FFFFFF;
  --color-error: #C0392B;
  --color-success: #4F7A0B;

  /* Typografie (Wix font_0–font_9) */
  --font-heading: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Quicksand', 'Helvetica Neue', Arial, sans-serif;
  --fs-h1: 46px;                 /* font_0 */
  --fs-h2: 36px;                 /* font_2 */
  --fs-h3: 26px;                 /* font_4 */
  --fs-card: 20px;               /* font_3 */
  --fs-body: 18px;               /* font_7 */
  --fs-small: 16px;              /* font_8 */
  --fs-tiny: 14px;               /* font_9 */
  --lh: 1.4;                     /* Wix: 1.4em durchgängig */

  /* Layout */
  --container: 1140px;
  --radius-card: 0;              /* Eckige Karten wie die Wix-Vorlage */
  --radius-pill: 100px;
  --shadow-card: 0 6px 24px rgba(38, 101, 171, 0.08);
  --shadow-card-hover: 0 10px 32px rgba(38, 101, 171, 0.16);
  --header-height: 84px;
}

/* ==========================================================================
   3. Basis / Reset
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh);
  color: var(--color-text);
  background: var(--color-white);
  overflow-wrap: break-word;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--lh);
  margin: 0 0 0.6em;
  hyphens: auto; /* Deutsche Komposita auf schmalen Screens sauber trennen */
}

h1 { font-size: var(--fs-h1); color: var(--color-dark); }
h2 { font-size: var(--fs-h2); color: var(--color-primary); }
h3 { font-size: var(--fs-h3); color: var(--color-dark); }
h4 { font-size: var(--fs-card); color: var(--color-dark); }

p {
  margin: 0 0 1.2em;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover,
a:focus {
  color: var(--color-accent);
}

ul, ol {
  margin: 0 0 1.2em;
  padding-left: 1.4em;
}

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

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

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 12px 24px;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
  color: var(--color-white);
}

.container {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ==========================================================================
   4. Buttons (Wix StylableButton: Grün → Hover Weiß mit grauem Rahmen)
   ========================================================================== */

/* Wix StylableButton: eckig (kein Radius), Grün, weißes Label */
.btn,
button.btn,
input[type="submit"].btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 700;
  text-align: center;
  color: var(--color-white);
  background: var(--color-accent);
  border: 1px solid var(--color-accent);
  border-radius: 0;
  padding: 14px 38px;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* Pfeil-Icon rechts wie im Wix-Button (Chevron in Textfarbe) */
.btn--arrow::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 12px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.btn:hover,
.btn:focus {
  background: var(--color-white);
  border-color: var(--color-dark);
  color: var(--color-dark);
}

.btn:disabled {
  background: #E2E2E2;
  border-color: #E2E2E2;
  color: var(--color-muted);
  cursor: not-allowed;
}

.btn--outline,
button.btn--outline {
  background: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn--outline:hover,
.btn--outline:focus,
button.btn--outline:hover,
button.btn--outline:focus {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

/* ==========================================================================
   5. Header / Navigation
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10); /* leichter Schatten wie disponline.ch */
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 24px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo img {
  width: 208px;
  height: auto;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  display: block;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--color-dark);
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  transition: color 0.2s ease, background 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus,
.main-nav .current-menu-item > a {
  color: var(--color-accent); /* Aktiv-/Hover-Farbe Grün wie in der Vorlage */
  background: var(--color-light);
}

/* "Kontakt" ist wie in der Vorlage ein normaler Menüpunkt (kein Button) */

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px 0;
  background: var(--color-dark);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ==========================================================================
   6. Hero (Wix: H1 46px Roboto, Sub 18px Quicksand, zentriert)
   ========================================================================== */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 78vh;
  /* Stadtkarten-Illustration wie disponline.ch, mit weißem Schleier verblasst */
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.45)),
    url('assets/img/hero-map.jpg');
  background-size: cover;
  background-position: center;
  padding: 96px 0;
  text-align: center;
  overflow: hidden;
}

/* Weiße, leicht transparente Textkarte wie in der Wix-Vorlage */
.hero__card {
  max-width: 920px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.80);
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12), 0 6px 24px rgba(0, 0, 0, 0.10);
  padding: 48px 56px;
}

/* Kleinere Hero-Variante für Unterseiten */
.hero--sub {
  min-height: 46vh;
}

.hero--sub h1 {
  font-size: var(--fs-h2);
}

.hero--sub .hero__sub {
  font-size: 24px;
}

/* Wix font_0: 46px "roboto-thin" + faux-bold ⇒ wirkt wie Roboto Regular */
.hero h1 {
  font-size: var(--fs-h1);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-accent);
  margin: 0 auto 0.35em;
}

/* Wix font_2: 36px "roboto-thin", Blau #2665AB */
.hero__sub {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-primary);
  max-width: 860px;
  margin: 0 auto;
}

/* ==========================================================================
   7. Sektionen
   ========================================================================== */

.section {
  padding: 88px 0;
}

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

.section--primary {
  background: var(--color-primary);
}

.section__head {
  max-width: 820px;
  margin: 0 auto 56px;
  text-align: center;
}

.section__head p {
  margin-bottom: 0;
  line-height: 1.8; /* Wix-Vorlage: 1.8em im Einleitungstext */
}

.section--primary h2,
.section--primary p {
  color: var(--color-white);
}

/* --- Leistungspfeiler-Grid (6 Karten) --- */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  text-align: center;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
  transform: translateY(-4px);
}

.feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: rgba(150, 191, 13, 0.12);
}

.feature-card__icon svg {
  width: 34px;
  height: 34px;
}

.feature-card h3 {
  font-size: var(--fs-card);
  margin-bottom: 0.5em;
}

.feature-card p {
  font-size: var(--fs-body);
  margin: 0;
}

/* --- Zielgruppen-Karten (Fahrdienst / Transport) --- */

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.audience-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
}

.audience-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--fs-card);
  color: var(--color-primary);
  margin-bottom: 0.4em;
}

.audience-card h3 svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.audience-card p {
  font-size: var(--fs-small);
  margin: 0;
}

/* --- Checklisten --- */

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 14px;
  font-size: var(--fs-body);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  background: var(--color-accent);
  border-radius: 50%;
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  width: 9px;
  height: 5px;
  border-left: 1px solid var(--color-white);
  border-bottom: 1px solid var(--color-white);
  transform: rotate(-45deg);
}

/* --- Teaser-Karten (Startseite: Fahrdienste / Transportunternehmen) --- */

.teaser-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: stretch;
}

.teaser-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 40px 32px;
}

.teaser-card h3 {
  font-size: var(--fs-h3);
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 0.8em;
}

.teaser-card__img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 24px;
}

.teaser-card .check-list {
  flex-grow: 1;
  margin-bottom: 28px;
}

.teaser-card .check-list li {
  font-size: var(--fs-small);
}

.teaser-card .btn {
  align-self: center;
}

/* Zentrierter CTA unter Sektionen */
.section-cta {
  text-align: center;
  margin: 48px 0 0;
}

/* --- Fix & Flex --- */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 40px 32px;
}

.pricing-card--flex {
  border-color: var(--color-accent);
}

.pricing-card__tag {
  display: inline-block;
  align-self: flex-start;
  font-size: var(--fs-tiny);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white);
  background: var(--color-primary);
  border-radius: var(--radius-pill);
  padding: 6px 18px;
  margin-bottom: 18px;
}

.pricing-card--flex .pricing-card__tag {
  background: var(--color-accent);
}

.pricing-card h3 {
  margin-bottom: 0.3em;
}

.pricing-card .check-list {
  margin: 18px 0 28px;
  flex-grow: 1;
}

.pricing-card .check-list li {
  font-size: var(--fs-small);
}

/* --- Erklärvideo --- */

.video-frame {
  max-width: 880px;
  margin: 0 auto;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
  background: #000;
}

.video-frame video {
  display: block;
  width: 100%;
  height: auto;
}

/* --- Zweispalter (Region / SEO-Text) --- */

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.split h2 {
  text-align: left;
}

.region-box {
  background: var(--color-white);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  padding: 36px 32px;
}

.region-box h3 {
  font-size: var(--fs-card);
  color: var(--color-primary);
}

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

/* ==========================================================================
   8. Kontakt
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.contact-info h3 {
  font-size: var(--fs-card);
  color: var(--color-primary);
}

.contact-info address {
  font-style: normal;
  margin-bottom: 1.4em;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.contact-info li svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.contact-form {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 40px 36px;
}

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

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  font-size: var(--fs-tiny);
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 6px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 12px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(38, 101, 171, 0.15);
}

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

.form-consent {
  font-size: var(--fs-tiny);
  color: var(--color-muted);
  margin-bottom: 22px;
}

/* Honeypot: für Menschen unsichtbar, für Bots ein normales Feld.
   Bewusst NICHT display:none – simple Bots filtern das heraus. */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-notice {
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 22px;
  font-size: var(--fs-small);
  font-weight: 500;
}

.form-notice--success {
  background: rgba(150, 191, 13, 0.14);
  border: 1px solid var(--color-accent);
  color: var(--color-success);
}

.form-notice--error {
  background: rgba(192, 57, 43, 0.08);
  border: 1px solid var(--color-error);
  color: var(--color-error);
}

/* Verschleierte Kontakte: vor JS-Decode ausblenden des Platzhalters */
.obf[data-obf] {
  white-space: nowrap;
}

/* ==========================================================================
   9. Footer
   ========================================================================== */

.site-footer {
  background: var(--color-dark); /* #4E4D4D – Dunkelgrau wie Vorlage */
  color: rgba(255, 255, 255, 0.85);
  padding: 64px 0 0;
  font-size: var(--fs-small);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.85);
}

.site-footer a:hover,
.site-footer a:focus {
  color: var(--color-accent);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.site-footer h2,
.site-footer h3 {
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 1em;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 10px;
}

.site-footer address {
  font-style: normal;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 22px 0;
  font-size: var(--fs-tiny);
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}

/* ==========================================================================
   9b. Cookie-Banner (eigene Lösung, kein Drittanbieter, CSP-konform)
   ========================================================================== */

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.10);
}

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

.cookie-banner__text {
  margin: 0;
  font-size: var(--fs-tiny);
  color: var(--color-text);
  flex: 1 1 380px;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-banner__actions .btn {
  padding: 10px 24px;
  font-size: var(--fs-tiny);
}

/* Button im Link-Look (Footer: "Cookie-Einstellungen") */
.link-button {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.site-footer .link-button {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease;
}

.site-footer .link-button:hover,
.site-footer .link-button:focus {
  color: var(--color-accent);
}

/* ==========================================================================
   10. Unterseiten (Impressum, Datenschutz, Standard-Seiten)
   ========================================================================== */

.page-hero {
  background:
    radial-gradient(ellipse 60% 70% at 90% 10%, rgba(150, 191, 13, 0.12), transparent 70%),
    linear-gradient(180deg, var(--color-light) 0%, var(--color-white) 100%);
  padding: 64px 0 48px;
  text-align: center;
}

.page-hero h1 {
  font-size: var(--fs-h2);
  color: var(--color-primary);
  margin-bottom: 0.2em;
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 56px 24px 88px;
}

.legal-content h2 {
  font-size: var(--fs-h3);
  margin-top: 1.8em;
}

.legal-content h3 {
  font-size: var(--fs-card);
  color: var(--color-primary);
  margin-top: 1.4em;
}

.legal-content p,
.legal-content li {
  font-size: var(--fs-small);
}

/* ==========================================================================
   11. Responsive (Mobile-First-Index: Google bewertet die mobile Ansicht)
   ========================================================================== */

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

  .split,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 820px) {
  :root {
    --fs-h1: 34px;
    --fs-h2: 28px;
    --fs-h3: 22px;
    --header-height: 72px;
  }

  .hero {
    min-height: 70vh;
    padding: 56px 0;
    /* kleinere Bilddatei für Mobilgeräte, gleicher Schleier */
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.45)),
      url('assets/img/hero-map-mobile.jpg');
  }

  .hero__card {
    padding: 32px 22px;
    margin-left: 16px;
    margin-right: 16px;
  }

  .hero__sub {
    font-size: 22px;
  }

  .section {
    padding: 64px 0;
  }

  .section__head {
    margin-bottom: 40px;
  }

  .audience-grid,
  .pricing-grid,
  .teaser-grid {
    grid-template-columns: 1fr;
  }

  .hero--sub {
    min-height: 52vh;
  }

  .hero--sub .hero__sub {
    font-size: 19px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .site-logo img {
    width: 168px;
  }

  /* Mobile Navigation */
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .main-nav.is-open {
    max-height: 480px;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 20px;
  }

  .main-nav a {
    padding: 14px 12px;
    font-size: var(--fs-body);
    border-radius: 8px;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media (max-width: 520px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 28px 22px;
  }
}

/* Nutzerpräferenz: reduzierte Bewegung respektieren (Core Web Vitals / A11y) */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* Druckansicht */
@media print {
  .site-header,
  .site-footer,
  .contact-form {
    display: none !important;
  }
}
