/*
 * ============================================================
 *  eyecontour.eu — styles.css
 *  Version: 1.0 — Produktionsreif
 *  Landsberg First Class Aesthetic / EXO Regentron Eyecontour
 * ============================================================
 *
 *  ANNAHMEN (dokumentiert):
 *  - Alle HTML-Dateien liegen im Root /
 *  - Bilder unter /bilder/final/ oder Hotlink
 *  - Keine CSS-Präprozessoren, kein Framework
 *  - Schrift: Inter via Google Fonts (300/400/600/700)
 *  - Breakpoints: Mobile < 768px, Tablet 768–1023px, Desktop ≥ 1024px
 *  - Header-Höhe: 72px (sticky)
 *  - Primärer Akzent: #4a6670 (kühles Petrol-Graugrün, kein Warmton)
 *  - Farbwelt: Weiß / #ebebeb / #313131 — keine warmen Töne
 *
 *  INHALTSVERZEICHNIS
 *  ----------------------------------------------------------
 *  01. CSS Custom Properties (Variablen)
 *  02. Reset & Basisregeln
 *  03. Typografie
 *  04. Container-System
 *  05. Header & Navigation
 *  06. Sprachumschalter
 *  07. Breadcrumb
 *  08. Hero-Bereiche
 *  09. Content-Sektionen
 *  10. Grid- und Spaltenlogik
 *  11. Buttons
 *  12. Karten & Feature-Boxen
 *  13. Statistiken / Kennzahlen
 *  14. Vergleichsmodule & Info-Boxen
 *  15. Prozess-Schritte
 *  16. Zitate / Blockquotes
 *  17. CTA-Bereiche
 *  18. FAQ-Bereich
 *  19. HubSpot-Formular Platzhalter
 *  20. Footer
 *  21. Bilddarstellung
 *  22. Utility-Klassen
 *  23. Responsive Breakpoints (Tablet)
 *  24. Responsive Breakpoints (Mobile)
 * ============================================================
 */


/* ============================================================
   01. CSS CUSTOM PROPERTIES
   ============================================================ */

:root {

  /* --- Primärfarben --- */
  --color-white:        #ffffff;
  --color-bg-light:     #ebebeb;   /* Sektionshintergrund hell */
  --color-text:         #313131;   /* Primärtext Anthrazit */
  --color-black:        #1a1a1a;   /* Headlines, maximale Tiefe */

  /* --- Sekundärfarben --- */
  --color-grey-mid:     #6b6b6b;   /* Subtext, Labels, Beschreibungen */
  --color-grey-line:    #d0d0d0;   /* Trennlinien, Borders, Divider */
  --color-grey-subtle:  #f4f4f4;   /* Sehr heller Hintergrund, Infoboxen */

  /* --- Akzentfarbe — klar, kühl, reduziert, kein Warmton --- */
  --color-accent:       #4a6670;
  --color-accent-hover: #3a5560;
  --color-accent-light: rgba(74, 102, 112, 0.08);  /* für Hover-Flächen */

  /* VERBOTEN: #8b7355, #c8a96e, #d4af7a, #b8956a und alle
     ähnlichen Beige-, Taupe-, Gold- und Warmtöne */

  /* --- Typografie --- */
  --font-family:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --text-xs:    0.75rem;    /* 12px */
  --text-sm:    0.875rem;   /* 14px */
  --text-base:  1rem;       /* 16px — Standard-Fließtext */
  --text-lg:    1.125rem;   /* 18px */
  --text-xl:    1.25rem;    /* 20px */
  --text-2xl:   1.5rem;     /* 24px */
  --text-3xl:   1.875rem;   /* 30px */
  --text-4xl:   2.25rem;    /* 36px */
  --text-5xl:   3rem;       /* 48px — Hero H1 Desktop */

  --font-light:    300;
  --font-regular:  400;
  --font-semibold: 600;
  --font-bold:     700;

  --leading-tight:   1.2;
  --leading-normal:  1.6;
  --leading-relaxed: 1.75;

  --tracking-tight:  -0.01em;
  --tracking-normal:  0;
  --tracking-wide:    0.05em;
  --tracking-wider:   0.1em;
  --tracking-widest:  0.15em;

  /* --- Abstände (8px-Raster) --- */
  --space-1:   0.5rem;    /*  8px */
  --space-2:   1rem;      /* 16px */
  --space-3:   1.5rem;    /* 24px */
  --space-4:   2rem;      /* 32px */
  --space-5:   2.5rem;    /* 40px */
  --space-6:   3rem;      /* 48px */
  --space-8:   4rem;      /* 64px */
  --space-10:  5rem;      /* 80px */
  --space-12:  6rem;      /* 96px */
  --space-16:  8rem;      /* 128px */

  /* --- Container --- */
  --container-max:     1200px;
  --container-pad:     2rem;       /* 32px seitlich Desktop */
  --container-pad-sm:  1rem;       /* 16px seitlich Mobile */

  /* --- Header --- */
  --header-height:     72px;

  /* --- Übergänge --- */
  --transition-fast:   0.15s ease;
  --transition-base:   0.25s ease;
  --transition-slow:   0.4s ease;
}


/* ============================================================
   02. RESET & BASISREGELN
   ============================================================ */

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

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

body {
  font-family: var(--font-family);
  font-weight: var(--font-regular);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--color-text);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Bilder: globale Grundregel — kein border-radius, kein shadow */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

img {
  border-radius: 0 !important; /* Verbindliche Regel: keine runden Ecken */
  border: none;
  box-shadow: none;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul, ol {
  list-style: none;
}

button {
  font-family: var(--font-family);
  cursor: pointer;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family);
  color: var(--color-black);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
}

p {
  line-height: var(--leading-normal);
  color: var(--color-text);
}

p + p {
  margin-top: var(--space-2);
}

strong {
  font-weight: var(--font-semibold);
}

/* Skip-Link (Accessibility) */
.skip-link {
  position: absolute;
  top: -40px;
  left: var(--space-2);
  background: var(--color-accent);
  color: var(--color-white);
  padding: var(--space-1) var(--space-2);
  font-size: var(--text-sm);
  z-index: 9999;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: var(--space-2);
}


/* ============================================================
   03. TYPOGRAFIE
   ============================================================ */

/* Overline / Label — Pflichtklasse für Sektionsbeginn */
.section-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-2);
}

h1 {
  font-size: var(--text-5xl);
  font-weight: var(--font-light);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--text-3xl);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
}

h3 {
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-2);
}

h4 {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-1);
}

h5 {
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
}

/* Subline unter H2 */
.section-subline {
  font-size: var(--text-lg);
  color: var(--color-grey-mid);
  line-height: var(--leading-relaxed);
  max-width: 620px;
  margin-top: var(--space-2);
}

/* Intro-Text (großes Fließtext-Element) */
.text-intro {
  font-size: var(--text-xl);
  font-weight: var(--font-light);
  line-height: var(--leading-relaxed);
  color: var(--color-text);
}

/* Beschriftung / Metainfo */
.text-meta {
  font-size: var(--text-xs);
  color: var(--color-grey-mid);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

/* Inline-Link im Fließtext */
.text-link {
  color: var(--color-accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}

.text-link:hover {
  color: var(--color-accent-hover);
}

/* Inline-Links im regulären Content */
.content-text a {
  color: var(--color-accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}

.content-text a:hover {
  color: var(--color-accent-hover);
}


/* ============================================================
   04. CONTAINER-SYSTEM
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.container--narrow {
  max-width: 840px;
}

.container--wide {
  max-width: 1400px;
}

.container--flush {
  padding-left: 0;
  padding-right: 0;
}


/* ============================================================
   05. HEADER & NAVIGATION
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-grey-line);
  height: var(--header-height);
  transition: box-shadow var(--transition-base);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
}

/* Wrapper: Logo + Nav + Lang + Burger */
.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: var(--space-4);
}

/* Logo */
.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  line-height: 0;
}

.nav-logo img {
  height: 36px;
  width: auto;
  display: block;
}

/* Desktop-Navigation */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex: 1;
  justify-content: center;
  flex-wrap: nowrap;
}

.nav-desktop li {
  display: flex;
  align-items: center;
}

.nav-desktop li a {
  font-size: var(--text-sm);
  font-weight: var(--font-regular);
  color: var(--color-text);
  letter-spacing: var(--tracking-wide);
  padding: var(--space-1) 0;
  border-bottom: 2px solid transparent;
  transition: color var(--transition-fast), border-color var(--transition-fast);
  white-space: nowrap;
  text-transform: none;
}

.nav-desktop li a:hover {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

.nav-desktop li a.active {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
  font-weight: var(--font-semibold);
}

/* Mobile Burger-Button */
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--color-text);
  transition: transform var(--transition-base), opacity var(--transition-base);
  transform-origin: center;
}

/* Mobile Nav Drawer */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-white);
  z-index: 199;
  padding: var(--space-4) var(--container-pad);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--transition-base);
}

.nav-mobile.open {
  transform: translateX(0);
}

.nav-mobile ul {
  display: flex;
  flex-direction: column;
}

.nav-mobile ul li {
  border-bottom: 1px solid var(--color-bg-light);
}

.nav-mobile ul li a {
  display: block;
  padding: var(--space-2) 0;
  font-size: var(--text-lg);
  font-weight: var(--font-regular);
  color: var(--color-text);
  transition: color var(--transition-fast);
  letter-spacing: var(--tracking-wide);
}

.nav-mobile ul li a:hover,
.nav-mobile ul li a.active {
  color: var(--color-accent);
}

.nav-mobile ul li a.active {
  font-weight: var(--font-semibold);
}

/* Body-Lock beim offenen Mobile-Nav */
body.nav-open {
  overflow: hidden;
}


/* ============================================================
   06. SPRACHUMSCHALTER
   ============================================================ */

/* Desktop-Variante */
.nav-lang {
  display: flex;
  align-items: stretch;
  flex-shrink: 0;
  border: 1px solid var(--color-grey-line);
  overflow: hidden;
}

.nav-lang a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 11px;
  font-size: 11px;
  font-weight: var(--font-semibold);
  letter-spacing: var(--tracking-wider);
  color: var(--color-grey-mid);
  text-transform: uppercase;
  transition: background-color var(--transition-fast), color var(--transition-fast);
  line-height: 1;
  text-decoration: none;
}

.nav-lang a.active {
  background-color: var(--color-text);
  color: var(--color-white);
}

.nav-lang a:not(.active):hover {
  background-color: var(--color-bg-light);
  color: var(--color-text);
}

/* Trennstrich zwischen DE und EN */
.nav-lang-sep {
  display: block;
  width: 1px;
  background-color: var(--color-grey-line);
  flex-shrink: 0;
}

/* Mobile-Variante */
.nav-mobile-lang {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-4);
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-grey-line);
}

.nav-mobile-lang a {
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-grey-mid);
  transition: color var(--transition-fast);
}

.nav-mobile-lang a.active {
  color: var(--color-accent);
}

.nav-mobile-lang a:hover {
  color: var(--color-text);
}


/* ============================================================
   07. BREADCRUMB
   ============================================================ */

.breadcrumb {
  padding: var(--space-2) 0;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-bg-light);
}

.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.breadcrumb ol li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-xs);
  color: var(--color-grey-mid);
}

/* Trennzeichen via ::after */
.breadcrumb ol li:not(:last-child)::after {
  content: '/';
  color: var(--color-grey-line);
  font-size: var(--text-xs);
  display: inline-block;
}

.breadcrumb ol li a {
  color: var(--color-grey-mid);
  transition: color var(--transition-fast);
}

.breadcrumb ol li a:hover {
  color: var(--color-accent);
}

.breadcrumb ol li[aria-current="page"] {
  color: var(--color-text);
  font-weight: var(--font-semibold);
}


/* ============================================================
   08. HERO-BEREICHE
   ============================================================ */

.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--color-black);
}

/* Hintergrundbild-Container */
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 0; /* explizit */
}

/* Overlay-Verlauf für Lesbarkeit */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(26, 26, 26, 0.68) 0%,
    rgba(26, 26, 26, 0.38) 55%,
    rgba(26, 26, 26, 0.18) 100%
  );
  z-index: 1;
}

/* Inhalt */
.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--space-16) 0;
  max-width: 640px;
}

.hero-content .section-label {
  color: rgba(255, 255, 255, 0.68);
  letter-spacing: var(--tracking-widest);
}

.hero-content h1 {
  color: var(--color-white);
  margin-bottom: var(--space-3);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.hero-content p {
  color: rgba(255, 255, 255, 0.88);
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-4);
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  align-items: center;
}

/* Hero — schmale Variante (z. B. Unterseiten ohne Bild) */
.hero--slim {
  min-height: 320px;
  background-color: var(--color-black);
}

.hero--slim .hero-content {
  padding: var(--space-12) 0;
}

/* Hero — ohne Hintergrundbild (nur Farbe) */
.hero--flat {
  min-height: auto;
  background-color: var(--color-black);
  padding: var(--space-12) 0;
}

.hero--flat .hero-content {
  padding: 0;
  max-width: 100%;
}


/* ============================================================
   09. CONTENT-SEKTIONEN
   ============================================================ */

/* Standard-Sektion (weißer Hintergrund) */
.section {
  padding: var(--space-12) 0;
  background-color: var(--color-white);
}

/* Helle Sektion */
.section-light {
  padding: var(--space-12) 0;
  background-color: var(--color-bg-light);
}

/* Dunkle Sektion */
.section-dark {
  padding: var(--space-12) 0;
  background-color: var(--color-black);
  color: var(--color-white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--color-white);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.80);
}

.section-dark .section-label {
  color: rgba(255, 255, 255, 0.55);
}

/* Sektionskopf */
.section-header {
  margin-bottom: var(--space-8);
}

.section-header h2 {
  margin-bottom: var(--space-2);
}

.section-header p,
.section-header .section-subline {
  max-width: 620px;
}

/* Sektionskopf zentriert */
.section-header--center {
  text-align: center;
}

.section-header--center .section-subline {
  margin-left: auto;
  margin-right: auto;
}

/* Content-Split: Text links / Bild rechts */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}

/* Umgekehrte Reihenfolge: Bild links / Text rechts */
.content-split-reverse .content-split-text {
  order: 2;
}

.content-split-reverse .content-split-image {
  order: 1;
}

.content-split-text h2 {
  margin-bottom: var(--space-3);
}

.content-split-text p {
  color: var(--color-grey-mid);
  line-height: var(--leading-relaxed);
}

.content-split-text p + p {
  margin-top: var(--space-2);
}

.content-split-text .split-actions {
  margin-top: var(--space-4);
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.content-split-image {
  overflow: hidden;
  background-color: var(--color-bg-light);
}

.content-split-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 0;
  display: block;
  transition: transform var(--transition-slow);
}

.content-split-image:hover img {
  transform: scale(1.03);
}


/* ============================================================
   10. GRID- UND SPALTENLOGIK
   ============================================================ */

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}

.grid-2--start {
  align-items: start;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}

/* Asymmetrische Spalten */
.grid-1-2 {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-8);
  align-items: start;
}

.grid-2-1 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-8);
  align-items: start;
}


/* ============================================================
   11. BUTTONS
   ============================================================ */

/* Primär-Button — Akzentfarbe */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  background-color: var(--color-accent);
  color: var(--color-white);
  padding: 14px var(--space-4);
  font-family: var(--font-family);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  border: 2px solid var(--color-accent);
  border-radius: 0;
  cursor: pointer;
  transition:
    background-color var(--transition-fast),
    border-color var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  color: var(--color-white);
}

/* Sekundär-Button — Ghost/Outline */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  background-color: transparent;
  color: var(--color-text);
  padding: 14px var(--space-4);
  font-family: var(--font-family);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  border: 2px solid var(--color-text);
  border-radius: 0;
  cursor: pointer;
  transition:
    background-color var(--transition-fast),
    color var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn-secondary:hover {
  background-color: var(--color-text);
  color: var(--color-white);
}

/* Weißer Button — auf dunklem Hintergrund */
.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  background-color: var(--color-white);
  color: var(--color-black);
  padding: 14px var(--space-4);
  font-family: var(--font-family);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  border: 2px solid var(--color-white);
  border-radius: 0;
  cursor: pointer;
  transition:
    background-color var(--transition-fast),
    color var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn-white:hover {
  background-color: var(--color-bg-light);
  color: var(--color-black);
}

/* Ghost-Button auf dunklem Hintergrund */
.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: rgba(255, 255, 255, 0.85);
  padding: 14px var(--space-4);
  font-family: var(--font-family);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 0;
  cursor: pointer;
  transition:
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn-ghost-light:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.85);
  color: var(--color-white);
}

/* Kleiner Button (kompakt) */
.btn-sm {
  padding: 10px var(--space-3);
  font-size: var(--text-xs);
}

/* Großer Button (Landingpage-Hero) */
.btn-lg {
  padding: 18px var(--space-6);
  font-size: var(--text-base);
}


/* ============================================================
   12. KARTEN & FEATURE-BOXEN
   ============================================================ */

/* Standard Feature-Card */
.feature-card {
  padding: var(--space-4);
  background-color: var(--color-white);
  border-top: 3px solid var(--color-accent);
  transition: border-top-color var(--transition-fast);
}

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

.feature-card:hover {
  border-top-color: var(--color-accent-hover);
}

.feature-card-number {
  font-size: var(--text-4xl);
  font-weight: var(--font-light);
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: var(--space-2);
  letter-spacing: -0.02em;
}

.feature-card h3 {
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-1);
}

.feature-card p {
  font-size: var(--text-sm);
  color: var(--color-grey-mid);
  line-height: var(--leading-relaxed);
}

.feature-card .card-action {
  margin-top: var(--space-3);
}

/* Produkt-Karte (mit Bild) */
.product-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-grey-line);
  overflow: hidden;
}

.product-card-image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: var(--color-bg-light);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-card-image img {
  transform: scale(1.04);
}

.product-card-body {
  padding: var(--space-3);
}

.product-card-body h3 {
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-1);
}

.product-card-body p {
  font-size: var(--text-sm);
  color: var(--color-grey-mid);
  margin-top: var(--space-1);
}

/* Highlight-Item (Icon + Text) */
.highlight-item {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
}

.highlight-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--color-white);
  stroke-width: 2;
}

.highlight-item h4 {
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--color-text);
  margin-bottom: 2px;
}

.highlight-item p {
  font-size: var(--text-sm);
  color: var(--color-grey-mid);
  line-height: var(--leading-normal);
}

.highlights-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}


/* ============================================================
   13. STATISTIKEN / KENNZAHLEN
   ============================================================ */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--color-grey-line);
  border-left: 1px solid var(--color-grey-line);
}

.stat-item {
  padding: var(--space-6) var(--space-4);
  border-right: 1px solid var(--color-grey-line);
  border-bottom: 1px solid var(--color-grey-line);
  text-align: center;
  background-color: var(--color-white);
}

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

.stat-value {
  display: block;
  font-size: var(--text-4xl);
  font-weight: var(--font-light);
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: var(--space-1);
  letter-spacing: -0.02em;
}

.stat-label {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-grey-mid);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  line-height: var(--leading-relaxed);
}


/* ============================================================
   14. VERGLEICHSMODULE & INFO-BOXEN
   ============================================================ */

/* Info-Box (Hinweis, Disclaimer) */
.info-box {
  padding: var(--space-4);
  border-left: 3px solid var(--color-accent);
  background-color: var(--color-bg-light);
  margin: var(--space-4) 0;
}

.info-box p {
  font-size: var(--text-sm);
  color: var(--color-grey-mid);
  line-height: var(--leading-relaxed);
}

.info-box p strong {
  color: var(--color-text);
}

/* Warn-Box */
.info-box--warning {
  border-left-color: var(--color-text);
  background-color: var(--color-grey-subtle);
}

/* Vergleichstabelle */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--color-grey-line);
  font-size: var(--text-sm);
}

.compare-table th,
.compare-table td {
  padding: var(--space-2) var(--space-3);
  text-align: left;
  border-bottom: 1px solid var(--color-grey-line);
  border-right: 1px solid var(--color-grey-line);
  vertical-align: top;
}

.compare-table th {
  background-color: var(--color-bg-light);
  font-weight: var(--font-semibold);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--color-grey-mid);
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table td:last-child,
.compare-table th:last-child {
  border-right: none;
}

.compare-table td.highlight {
  background-color: var(--color-accent-light);
  font-weight: var(--font-semibold);
  color: var(--color-text);
}

/* Inline-Merkmalliste (in Cards) */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  margin-top: var(--space-2);
}

.feature-list-item {
  display: flex;
  gap: var(--space-1);
  align-items: flex-start;
  padding: 8px var(--space-2);
  font-size: var(--text-sm);
  border-left: 2px solid var(--color-grey-line);
  color: var(--color-text);
  line-height: var(--leading-normal);
}

.feature-list-item--accent {
  border-left-color: var(--color-accent);
  font-weight: var(--font-semibold);
}

.feature-list-item--muted {
  color: var(--color-grey-mid);
}


/* ============================================================
   15. PROZESS-SCHRITTE
   ============================================================ */

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--color-grey-line);
  border-left: 1px solid var(--color-grey-line);
  margin-top: var(--space-6);
}

.process-step {
  padding: var(--space-4);
  border-right: 1px solid var(--color-grey-line);
  border-bottom: 1px solid var(--color-grey-line);
  background-color: var(--color-white);
}

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

.process-step-num {
  font-size: var(--text-3xl);
  font-weight: var(--font-light);
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: var(--space-2);
  letter-spacing: -0.02em;
}

.process-step h3 {
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-1);
  color: var(--color-text);
}

.process-step p {
  font-size: var(--text-sm);
  color: var(--color-grey-mid);
  line-height: var(--leading-relaxed);
}


/* ============================================================
   16. ZITATE / BLOCKQUOTES
   ============================================================ */

blockquote.brand-quote {
  padding: var(--space-8) var(--space-6);
  border-left: 3px solid var(--color-accent);
  background-color: var(--color-bg-light);
}

blockquote.brand-quote p {
  font-size: var(--text-xl);
  font-weight: var(--font-light);
  line-height: var(--leading-relaxed);
  color: var(--color-black);
  font-style: italic;
  margin: 0;
}

blockquote.brand-quote cite {
  display: block;
  margin-top: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-grey-mid);
  font-style: normal;
  font-weight: var(--font-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}


/* ============================================================
   17. CTA-BEREICHE
   ============================================================ */

/* Akzentfarbe CTA-Banner */
.cta-banner {
  padding: var(--space-12) 0;
  background-color: var(--color-accent);
  color: var(--color-white);
  text-align: center;
}

.cta-banner .section-label {
  color: rgba(255, 255, 255, 0.65);
}

.cta-banner h2 {
  color: var(--color-white);
  font-size: var(--text-3xl);
  font-weight: var(--font-light);
  margin-bottom: var(--space-2);
  letter-spacing: -0.01em;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--text-lg);
  margin-bottom: var(--space-4);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner-actions {
  display: flex;
  gap: var(--space-2);
  justify-content: center;
  flex-wrap: wrap;
}

/* Dunkler CTA-Banner */
.cta-banner--dark {
  background-color: var(--color-black);
}

/* Heller CTA-Banner */
.cta-banner--light {
  background-color: var(--color-bg-light);
}

.cta-banner--light h2 {
  color: var(--color-black);
}

.cta-banner--light p {
  color: var(--color-grey-mid);
}

.cta-banner--light .section-label {
  color: var(--color-accent);
}

/* Inline-CTA innerhalb einer Sektion */
.cta-inline {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-6);
  background-color: var(--color-bg-light);
  border-left: 3px solid var(--color-accent);
  margin-top: var(--space-6);
}

.cta-inline p {
  flex: 1;
  font-size: var(--text-lg);
  font-weight: var(--font-light);
  color: var(--color-text);
}

.cta-inline .btn-primary {
  flex-shrink: 0;
}


/* ============================================================
   18. FAQ-BEREICH
   ============================================================ */

.faq-section {
  padding: var(--space-12) 0;
  background-color: var(--color-bg-light);
}

.faq-section .section-label {
  margin-bottom: var(--space-1);
}

.faq-section h2 {
  margin-bottom: 0;
}

/* FAQ-Liste */
.faq-list {
  margin-top: var(--space-6);
  border-top: 1px solid var(--color-grey-line);
}

/* Einzelnes FAQ-Item */
.faq-item {
  border-bottom: 1px solid var(--color-grey-line);
  background-color: transparent;
  transition: background-color var(--transition-fast);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--color-grey-line);
}

/* FAQ-Frage-Button */
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-3) 0;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-family);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  color: var(--color-text);
  cursor: pointer;
  gap: var(--space-3);
  transition: color var(--transition-fast);
  line-height: var(--leading-tight);
}

.faq-question:hover {
  color: var(--color-accent);
}

.faq-item.open .faq-question {
  color: var(--color-accent);
}

/* Plus/Minus Icon */
.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  display: block;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background-color: currentColor;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.faq-icon::before {
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Geöffneter Zustand: + wird zu - */
.faq-item.open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

/* FAQ-Antwort (animiert) */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 800px; /* Großzügig für lange Antworten */
}

.faq-answer p {
  padding-bottom: var(--space-3);
  color: var(--color-grey-mid);
  line-height: var(--leading-relaxed);
  font-size: var(--text-base);
}

.faq-answer a {
  color: var(--color-accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.faq-answer a:hover {
  color: var(--color-accent-hover);
}


/* ============================================================
   19. HUBSPOT-FORMULAR PLATZHALTER
   ============================================================ */

.hubspot-form-section {
  padding: var(--space-12) 0;
  background-color: var(--color-white);
}

.hubspot-form-section .section-subline {
  margin-top: var(--space-2);
  max-width: 560px;
}

/* Wrapper: das eigentliche Formular-Einbettungs-Element */
.hubspot-form-wrapper {
  max-width: 720px;
  margin: var(--space-6) auto 0;
  padding: var(--space-8);
  background-color: var(--color-bg-light);
  border-top: 3px solid var(--color-accent);
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Platzhaltertext (wird entfernt sobald HubSpot eingebettet ist) */
.form-placeholder-text {
  font-size: var(--text-sm);
  color: var(--color-grey-mid);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

/*
 * HubSpot-Formular Override-Regeln (vorbereitet für spätere Integration):
 * Sobald das HubSpot-Formular eingebettet wird, gelten diese Overrides
 * automatisch. Keine manuelle Anpassung nötig.
 */

/* Inputs */
.hubspot-form-wrapper .hs-input,
.hubspot-form-wrapper input[type="text"],
.hubspot-form-wrapper input[type="email"],
.hubspot-form-wrapper input[type="tel"],
.hubspot-form-wrapper textarea,
.hubspot-form-wrapper select {
  width: 100% !important;
  padding: 12px var(--space-2) !important;
  border: 1px solid var(--color-grey-line) !important;
  border-radius: 0 !important;
  font-family: var(--font-family) !important;
  font-size: var(--text-base) !important;
  color: var(--color-text) !important;
  background-color: var(--color-white) !important;
  transition: border-color var(--transition-fast) !important;
  box-shadow: none !important;
  outline: none !important;
}

.hubspot-form-wrapper .hs-input:focus,
.hubspot-form-wrapper input:focus,
.hubspot-form-wrapper textarea:focus {
  border-color: var(--color-accent) !important;
}

/* Labels */
.hubspot-form-wrapper .hs-form-field label {
  font-size: var(--text-sm) !important;
  font-weight: var(--font-semibold) !important;
  color: var(--color-text) !important;
  margin-bottom: 6px !important;
  display: block !important;
  font-family: var(--font-family) !important;
  letter-spacing: var(--tracking-wide) !important;
  text-transform: uppercase !important;
}

/* Submit-Button */
.hubspot-form-wrapper input[type="submit"],
.hubspot-form-wrapper .hs-button {
  background-color: var(--color-accent) !important;
  color: var(--color-white) !important;
  border: 2px solid var(--color-accent) !important;
  border-radius: 0 !important;
  padding: 14px var(--space-4) !important;
  font-family: var(--font-family) !important;
  font-size: var(--text-sm) !important;
  font-weight: var(--font-semibold) !important;
  letter-spacing: var(--tracking-wide) !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: background-color var(--transition-fast) !important;
  width: auto !important;
}

.hubspot-form-wrapper input[type="submit"]:hover,
.hubspot-form-wrapper .hs-button:hover {
  background-color: var(--color-accent-hover) !important;
  border-color: var(--color-accent-hover) !important;
}

/* Fehlermeldungen */
.hubspot-form-wrapper .hs-error-msg {
  font-size: var(--text-xs) !important;
  color: #c0392b !important;
  margin-top: 4px !important;
  font-family: var(--font-family) !important;
}


/* ============================================================
   20. FOOTER
   ============================================================ */

.site-footer {
  background-color: var(--color-black);
  color: rgba(255, 255, 255, 0.70);
  padding: var(--space-12) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-8);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Markensäule */
.footer-brand img {
  height: 32px;
  width: auto;
  margin-bottom: var(--space-3);
  display: block;
}

.footer-brand p {
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: rgba(255, 255, 255, 0.50);
  max-width: 280px;
}

/* Nav-Spalten */
.footer-nav h3 {
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: var(--space-3);
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.footer-nav ul li a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.60);
  transition: color var(--transition-fast);
  line-height: var(--leading-relaxed);
}

.footer-nav ul li a:hover {
  color: var(--color-white);
}

/* Footer-Unterzeile */
.footer-bottom {
  padding: var(--space-4) 0 var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.30);
  line-height: var(--leading-relaxed);
}

.footer-disclaimer {
  font-style: italic;
  max-width: 520px;
  text-align: right;
}


/* ============================================================
   21. BILDDARSTELLUNG
   ============================================================ */

/*
 * GLOBALE REGEL: Alle Bilder haben border-radius: 0
 * Diese Regel ist verbindlich und nicht durch Seitenklassen
 * zu überschreiben — nur durch explizite Ausnahmen mit !important
 */

img {
  border-radius: 0 !important;
  border: none;
  box-shadow: none;
  display: block;
}

/* Hero-Bild */
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Content-Split-Bild */
.content-split-image img {
  width: 100%;
  object-fit: cover;
}

/* Bild mit fester Höhe und Cover-Fit */
.img-cover {
  width: 100%;
  object-fit: cover;
  display: block;
}

/* Bild als vollflächiges Hintergrundbild-Ersatz */
.img-fill {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Bild-Container mit festem Seitenverhältnis */
.img-ratio {
  position: relative;
  overflow: hidden;
  background-color: var(--color-bg-light);
}

.img-ratio--square    { aspect-ratio: 1/1; }
.img-ratio--landscape { aspect-ratio: 16/9; }
.img-ratio--portrait  { aspect-ratio: 3/4; }
.img-ratio--product   { aspect-ratio: 4/3; }

.img-ratio img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Logo-Bild */
.logo-img {
  height: 36px;
  width: auto;
  display: block;
}

/* Logos-Leiste (Partner/Zertifikate) */
.logos-strip {
  padding: var(--space-8) 0;
  border-top: 1px solid var(--color-bg-light);
  border-bottom: 1px solid var(--color-bg-light);
}

.logos-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.logos-strip img {
  height: 36px;
  width: auto;
  opacity: 0.45;
  filter: grayscale(100%);
  transition: opacity var(--transition-base), filter var(--transition-base);
}

.logos-strip img:hover {
  opacity: 1;
  filter: grayscale(0%);
}


/* ============================================================
   22. UTILITY-KLASSEN
   ============================================================ */

/* Text-Ausrichtung */
.text-center  { text-align: center; }
.text-left    { text-align: left; }
.text-right   { text-align: right; }

/* Textfarben */
.text-accent   { color: var(--color-accent); }
.text-muted    { color: var(--color-grey-mid); }
.text-white    { color: var(--color-white); }
.text-black    { color: var(--color-black); }

/* Abstände */
.mt-0  { margin-top: 0; }
.mt-2  { margin-top: var(--space-2); }
.mt-3  { margin-top: var(--space-3); }
.mt-4  { margin-top: var(--space-4); }
.mt-6  { margin-top: var(--space-6); }
.mt-8  { margin-top: var(--space-8); }

.mb-0  { margin-bottom: 0; }
.mb-2  { margin-bottom: var(--space-2); }
.mb-3  { margin-bottom: var(--space-3); }
.mb-4  { margin-bottom: var(--space-4); }
.mb-6  { margin-bottom: var(--space-6); }
.mb-8  { margin-bottom: var(--space-8); }

/* Sichtbarkeit */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Flex-Hilfsmittel */
.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-2        { gap: var(--space-2); }
.gap-3        { gap: var(--space-3); }
.gap-4        { gap: var(--space-4); }

/* Trennlinie */
.divider {
  border: none;
  border-top: 1px solid var(--color-grey-line);
  margin: var(--space-8) 0;
}

.divider--light {
  border-top-color: var(--color-bg-light);
}


/* ============================================================
   23. RESPONSIVE BREAKPOINTS — TABLET (768px–1023px)
   ============================================================ */

@media (max-width: 1023px) {

  :root {
    --text-5xl: 2.5rem;    /* Hero H1 kleiner */
    --text-4xl: 2rem;
    --text-3xl: 1.625rem;
    --container-pad: 1.5rem;
  }

  /* Navigation enger */
  .nav-desktop {
    gap: var(--space-2);
  }

  .nav-desktop li a {
    font-size: 0.8rem;
  }

  /* Grids */
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  /* Content-Split: etwas enger */
  .content-split-image img {
    height: 380px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  /* CTA Inline */
  .cta-inline {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ============================================================
   24. RESPONSIVE BREAKPOINTS — MOBILE (< 768px)
   ============================================================ */

@media (max-width: 767px) {

  :root {
    --text-5xl:  1.875rem;   /* 30px */
    --text-4xl:  1.625rem;   /* 26px */
    --text-3xl:  1.375rem;   /* 22px */
    --text-2xl:  1.25rem;    /* 20px */
    --text-xl:   1.125rem;   /* 18px */
    --space-12:  3.5rem;
    --space-16:  3.5rem;
    --container-pad: var(--container-pad-sm);
  }

  /* Navigation: Desktop verstecken, Mobile zeigen */
  .nav-desktop {
    display: none;
  }

  .nav-lang {
    display: none;
  }

  .nav-mobile-toggle {
    display: flex;
  }

  .nav-mobile {
    display: block;
  }

  /* Hero */
  .hero {
    min-height: 400px;
  }

  .hero-content {
    padding: var(--space-8) 0;
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 1.875rem;
    margin-bottom: var(--space-2);
  }

  .hero-content p {
    font-size: var(--text-base);
    margin-bottom: var(--space-3);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary,
  .hero-actions .btn-white,
  .hero-actions .btn-ghost-light {
    text-align: center;
    width: 100%;
    justify-content: center;
  }

  /* Sektionen */
  .section,
  .section-light,
  .section-dark {
    padding: var(--space-8) 0;
  }

  .faq-section {
    padding: var(--space-8) 0;
  }

  .hubspot-form-section {
    padding: var(--space-8) 0;
  }

  .cta-banner {
    padding: var(--space-8) 0;
  }

  /* Grids → 1 Spalte */
  .grid-2,
  .grid-3,
  .grid-4,
  .grid-1-2,
  .grid-2-1,
  .content-split {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  /* Content-Split: Bild über Text auf Mobile */
  .content-split .content-split-image {
    order: -1;
  }

  /* Ausnahme: reversed bleibt reversed */
  .content-split-reverse .content-split-image {
    order: -1;
  }

  .content-split-image img {
    height: 260px;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    padding: var(--space-3) var(--space-2);
  }

  .stat-value {
    font-size: var(--text-3xl);
  }

  /* Prozess-Schritte */
  .process-steps {
    grid-template-columns: 1fr;
  }

  /* Zitat */
  blockquote.brand-quote {
    padding: var(--space-4);
  }

  blockquote.brand-quote p {
    font-size: var(--text-base);
  }

  /* CTA-Banner */
  .cta-banner h2 {
    font-size: var(--text-2xl);
  }

  .cta-banner p {
    font-size: var(--text-base);
  }

  .cta-banner-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-banner-actions .btn-primary,
  .cta-banner-actions .btn-white,
  .cta-banner-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  /* CTA Inline */
  .cta-inline {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-2);
  }

  .footer-disclaimer {
    text-align: left;
  }

  /* HubSpot */
  .hubspot-form-wrapper {
    padding: var(--space-4);
    margin-top: var(--space-4);
  }

  /* FAQ */
  .faq-question {
    font-size: var(--text-sm);
  }

  /* Sektion-Header */
  .section-header {
    margin-bottom: var(--space-5);
  }

  /* Breadcrumb */
  .breadcrumb {
    padding: var(--space-1) 0;
  }
}
