/*
 * ============================================================
 * styles.css — canfield-visia.eu
 * Landsberg First Class Aesthetic | Canfield VISIA® Gen7 Partner
 * ============================================================
 *
 * DESIGN-ENTSCHEIDUNGEN (verbindlich für das Projekt):
 *
 * Typografie:
 *   Headings  → Cormorant Garamond 400/500/600 (Serifenschrift, Eleganz)
 *   Body      → DM Sans 300/400/500 (klare Lesbarkeit, modern)
 *
 * Farben:
 *   Weiß       #ffffff  → Haupthintergrund, Card-Hintergründe
 *   Hellgrau   #ebebeb  → Abgesetzte Sektionen, Tabellen, FAQ-Bg
 *   Anthrazit  #313131  → Text, dunkle Sektionen, Buttons
 *   Stummgrau  #6b6b6b  → Sekundärtext, Metainfos
 *   Rahmen     #d8d8d8  → Trennlinien, Tabellenrahmen
 *   KEINE warmen Grau-, Beige- oder Greige-Töne.
 *
 * Container:      max 1280px, schmale Variante 800px
 * Header:         72px sticky
 * Hero Desktop:   680px | Tablet: 480px | Mobile: 360px
 * Breakpoints:    480px · 768px · 1024px · 1280px
 *
 * Bilder:         border-radius immer 0 — keine Ausnahmen
 * VISIA®:         sup.reg { font-size: 0.55em; vertical-align: super; }
 *
 * ============================================================
 */


/* ============================================================
   1. CSS CUSTOM PROPERTIES
============================================================ */
:root {
  /* Farben */
  --white:          #ffffff;
  --grey:           #ebebeb;
  --dark:           #313131;
  --muted:          #6b6b6b;
  --border:         #d8d8d8;
  --border-strong:  #b0b0b0;

  /* Semantische Aliase */
  --color-bg:       var(--white);
  --color-bg-alt:   var(--grey);
  --color-text:     var(--dark);
  --color-muted:    var(--muted);
  --color-border:   var(--border);

  /* Schriften */
  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  /* Schriftgewichte */
  --fw-light:    300;
  --fw-regular:  400;
  --fw-medium:   500;
  --fw-semibold: 600;

  /* Typoskala */
  --fs-2xs:  0.6875rem;   /* 11px */
  --fs-xs:   0.75rem;     /* 12px */
  --fs-sm:   0.875rem;    /* 14px */
  --fs-base: 1rem;        /* 16px */
  --fs-md:   1.125rem;    /* 18px */
  --fs-lg:   1.25rem;     /* 20px */
  --fs-xl:   1.5rem;      /* 24px */
  --fs-2xl:  1.875rem;    /* 30px */
  --fs-3xl:  2.25rem;     /* 36px */
  --fs-4xl:  3rem;        /* 48px */
  --fs-5xl:  3.75rem;     /* 60px */
  --fs-6xl:  4.5rem;      /* 72px */

  /* Zeilenhöhen */
  --lh-none:    1;
  --lh-tight:   1.15;
  --lh-snug:    1.3;
  --lh-normal:  1.6;
  --lh-relaxed: 1.75;

  /* Buchstabenabstände */
  --ls-tight:  -0.02em;
  --ls-normal:  0;
  --ls-heading: 0.015em;
  --ls-wide:    0.06em;
  --ls-wider:   0.12em;
  --ls-widest:  0.18em;

  /* Abstände */
  --s-1:  0.25rem;   /* 4px  */
  --s-2:  0.5rem;    /* 8px  */
  --s-3:  0.75rem;   /* 12px */
  --s-4:  1rem;      /* 16px */
  --s-5:  1.25rem;   /* 20px */
  --s-6:  1.5rem;    /* 24px */
  --s-8:  2rem;      /* 32px */
  --s-10: 2.5rem;    /* 40px */
  --s-12: 3rem;      /* 48px */
  --s-14: 3.5rem;    /* 56px */
  --s-16: 4rem;      /* 64px */
  --s-20: 5rem;      /* 80px */
  --s-24: 6rem;      /* 96px */
  --s-28: 7rem;      /* 112px */
  --s-32: 8rem;      /* 128px */

  /* Sektion-Padding */
  --section-py:    var(--s-24);
  --section-py-sm: var(--s-16);
  --section-py-lg: var(--s-32);

  /* Layout */
  --max-w:        1280px;
  --max-w-narrow: 800px;
  --max-w-wide:   1440px;
  --gutter:       2rem;           /* horizontales Container-Padding */
  --col-gap:      1.5rem;

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

  /* Hero */
  --hero-h:        680px;
  --hero-h-tablet: 480px;
  --hero-h-mobile: 360px;

  /* Border-Radius (Bilder = immer 0) */
  --r-0:  0;
  --r-xs: 2px;
  --r-sm: 3px;
  --r-md: 6px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 140ms;
  --t-base: 240ms;
  --t-slow: 380ms;

  /* Schatten */
  --shadow-sm: 0 1px 4px rgba(49,49,49,0.07);
  --shadow-md: 0 4px 16px rgba(49,49,49,0.1);
  --shadow-lg: 0 12px 40px rgba(49,49,49,0.14);
}


/* ============================================================
   2. RESET & BASE
============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

/* Bilder — Pflicht: border-radius 0, display block */
img,
picture > img,
figure img,
video {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 0 !important;
}

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

ul,
ol {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

p,
h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

svg {
  display: block;
  flex-shrink: 0;
}


/* ============================================================
   3. TYPOGRAFIE
============================================================ */

/* Überschriften */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--fw-medium);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-heading);
  color: var(--dark);
}

h1 {
  font-size: var(--fs-5xl);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-tight);
}

h2 {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-medium);
}

h3 {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-medium);
}

h4 {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-medium);
}

h5 {
  font-size: var(--fs-xl);
  font-weight: var(--fw-medium);
}

h6 {
  font-size: var(--fs-lg);
  font-weight: var(--fw-medium);
}

p {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: var(--lh-relaxed);
  color: var(--dark);
}

/* Lead-Text (größerer Einleitungstext) */
.lead {
  font-size: var(--fs-md);
  font-weight: var(--fw-light);
  line-height: var(--lh-relaxed);
  color: var(--muted);
}

/* Beschriftungs-Label */
.label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--s-3);
}

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

/* VISIA® — verbindliche projektweite Schreibweise */
sup.reg {
  font-size: 0.55em;
  line-height: 0;
  vertical-align: super;
  font-weight: inherit;
  font-style: inherit;
}

/* Sekundärtext / Metainfo */
.text-muted   { color: var(--muted); }
.text-small   { font-size: var(--fs-sm); }
.text-xs      { font-size: var(--fs-xs); }
.text-center  { text-align: center; }
.text-right   { text-align: right; }
.italic       { font-style: italic; }


/* ============================================================
   4. LAYOUT & CONTAINER
============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--narrow {
  width: 100%;
  max-width: var(--max-w-narrow);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--wide {
  width: 100%;
  max-width: var(--max-w-wide);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Grids */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--col-gap);
}

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

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

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

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

/* Flex-Utilities */
.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-start   { display: flex; align-items: flex-start; }
.flex-wrap    { flex-wrap: wrap; }
.gap-4        { gap: var(--s-4); }
.gap-6        { gap: var(--s-6); }
.gap-8        { gap: var(--s-8); }


/* ============================================================
   5. SEKTIONEN
============================================================ */
.section {
  padding-block: var(--section-py);
}

.section--sm  { padding-block: var(--section-py-sm); }
.section--lg  { padding-block: var(--section-py-lg); }
.section--xs  { padding-block: var(--s-10); }

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

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

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

/* Sektions-Kopfzeile */
.section__head {
  margin-bottom: var(--s-12);
}

.section__head--center {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--s-12);
}

.section__title {
  margin-top: var(--s-2);
  margin-bottom: var(--s-4);
}

.section__subtitle {
  font-family: var(--font-body);
  font-size: var(--fs-md);
  font-weight: var(--fw-light);
  color: var(--muted);
  line-height: var(--lh-relaxed);
  max-width: 640px;
}

.section--center .section__subtitle {
  margin-inline: auto;
}

.section--dark .section__subtitle {
  color: rgba(255, 255, 255, 0.7);
}

/* Trennlinie zwischen Sektionen */
.section--border-top  { border-top: 1px solid var(--border); }
.section--border-bot  { border-bottom: 1px solid var(--border); }


/* ============================================================
   6. HEADER & NAVIGATION
============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-h);
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  transition: box-shadow var(--t-base) var(--ease);
}

.site-header.is-scrolled {
  box-shadow: 0 1px 16px rgba(49, 49, 49, 0.08);
}

.header__inner {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-6);
}

/* Logo */
.header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: var(--s-3);
  text-decoration: none;
  line-height: 1;
}

.header__logo img {
  height: 34px;
  width: auto;
}

.header__logo-wordmark {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  color: var(--dark);
  letter-spacing: var(--ls-heading);
  white-space: nowrap;
}

/* Desktop-Navigation */
.header__nav {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: center;
}

.nav__link {
  position: relative;
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-regular);
  color: var(--dark);
  letter-spacing: 0.01em;
  padding: var(--s-2) var(--s-3);
  white-space: nowrap;
  text-decoration: none;
  transition: color var(--t-fast) var(--ease);
}

/* Unterstrich-Effekt */
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: var(--s-3);
  right: var(--s-3);
  height: 1px;
  background-color: var(--dark);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--t-base) var(--ease);
}

.nav__link:hover::after,
.nav__link--active::after {
  transform: scaleX(1);
}

.nav__link--active {
  font-weight: var(--fw-medium);
}

/* Header rechts: Sprache + (optional CTA) */
.header__right {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  flex-shrink: 0;
}


/* ============================================================
   7. SPRACHUMSCHALTER
============================================================ */
.lang-switcher {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: var(--r-xs);
  overflow: hidden;
  flex-shrink: 0;
}

.lang-switcher__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: var(--fs-2xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding: 5px 10px;
  background: transparent;
  transition:
    background-color var(--t-fast) var(--ease),
    color var(--t-fast) var(--ease);
  line-height: 1;
  user-select: none;
}

.lang-switcher__btn--active {
  background-color: var(--dark);
  color: var(--white);
}

.lang-switcher__btn:not(.lang-switcher__btn--active):hover {
  background-color: var(--grey);
  color: var(--dark);
}


/* ============================================================
   8. HAMBURGER & MOBILE NAVIGATION
============================================================ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 6px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-xs);
  background: transparent;
  cursor: pointer;
  transition: border-color var(--t-fast) var(--ease);
}

.hamburger:hover {
  border-color: var(--dark);
}

.hamburger__line {
  display: block;
  width: 18px;
  height: 1.5px;
  background-color: var(--dark);
  transform-origin: center;
  transition:
    transform var(--t-base) var(--ease),
    opacity var(--t-base) var(--ease);
}

.hamburger.is-active .hamburger__line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.is-active .hamburger__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.is-active .hamburger__line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Nav — Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--white);
  z-index: 199;
  padding: var(--s-6) var(--gutter);
  overflow-y: auto;
  flex-direction: column;
  border-top: 1px solid var(--border);
  overscroll-behavior: contain;
}

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

.mobile-nav__link {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-regular);
  color: var(--dark);
  letter-spacing: var(--ls-heading);
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: color var(--t-fast) var(--ease);
  line-height: var(--lh-tight);
}

.mobile-nav__link:hover,
.mobile-nav__link--active {
  font-weight: var(--fw-medium);
}

.mobile-nav__footer {
  margin-top: auto;
  padding-top: var(--s-8);
  padding-bottom: var(--s-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav__lang {
  display: flex;
  align-items: center;
  gap: var(--s-5);
}

.mobile-nav__lang-btn {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--t-fast) var(--ease);
}

.mobile-nav__lang-btn--active {
  color: var(--dark);
  border-bottom: 1px solid var(--dark);
  padding-bottom: 1px;
}

.mobile-nav__lang-btn:not(.mobile-nav__lang-btn--active):hover {
  color: var(--dark);
}


/* ============================================================
   9. HERO
============================================================ */
.hero {
  position: relative;
  height: var(--hero-h);
  overflow: hidden;
  display: flex;
  align-items: center;
  background-color: var(--dark);
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0 !important;
}

/* Gradient-Overlay (links dunkel → rechts transparent) */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(49, 49, 49, 0.78) 0%,
    rgba(49, 49, 49, 0.50) 40%,
    rgba(49, 49, 49, 0.15) 75%,
    rgba(49, 49, 49, 0.00) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.hero__inner {
  max-width: 640px;
}

.hero__label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: var(--s-4);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: var(--fs-5xl);
  font-weight: var(--fw-semibold);
  color: var(--white);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  margin-bottom: var(--s-6);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: var(--fs-md);
  font-weight: var(--fw-light);
  color: rgba(255, 255, 255, 0.86);
  line-height: var(--lh-relaxed);
  max-width: 520px;
  margin-bottom: var(--s-10);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  flex-wrap: wrap;
}

/* Hero-Variante: zentriert */
.hero--center .hero__content {
  text-align: center;
}

.hero--center .hero__inner {
  margin-inline: auto;
}

.hero--center .hero__overlay {
  background: rgba(49, 49, 49, 0.62);
}

.hero--center .hero__actions {
  justify-content: center;
}


/* ============================================================
   10. BREADCRUMB
============================================================ */
.breadcrumb {
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
  padding-block: var(--s-3);
}

.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  flex-wrap: wrap;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--fs-xs);
  color: var(--muted);
}

.breadcrumb li + li::before {
  content: '›';
  color: var(--border-strong);
  font-size: 0.85em;
}

.breadcrumb a {
  color: var(--muted);
  transition: color var(--t-fast) var(--ease);
  text-decoration: none;
}

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

.breadcrumb [aria-current="page"] {
  color: var(--dark);
  font-weight: var(--fw-medium);
}


/* ============================================================
   11. BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  text-decoration: none;
  padding: var(--s-4) var(--s-8);
  border: 1px solid transparent;
  border-radius: var(--r-xs);
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
  transition:
    background-color var(--t-base) var(--ease),
    color var(--t-base) var(--ease),
    border-color var(--t-base) var(--ease);
}

/* Primär — Anthrazit ausgefüllt */
.btn--primary {
  background-color: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.btn--primary:hover {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
}

/* Sekundär — Umrandung auf hellem Hintergrund */
.btn--outline {
  background-color: transparent;
  color: var(--dark);
  border-color: var(--dark);
}

.btn--outline:hover {
  background-color: var(--dark);
  color: var(--white);
}

/* Ghost auf dunklem Hintergrund */
.btn--outline-white {
  background-color: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

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

/* Größen */
.btn--sm {
  font-size: var(--fs-2xs);
  padding: var(--s-3) var(--s-5);
  letter-spacing: var(--ls-wider);
}

.btn--lg {
  font-size: var(--fs-sm);
  padding: var(--s-5) var(--s-10);
}

.btn--xl {
  font-size: var(--fs-base);
  padding: var(--s-6) var(--s-12);
}

/* Button-Gruppe */
.btn-group {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  flex-wrap: wrap;
}

.btn-group--center {
  justify-content: center;
}


/* ============================================================
   12. CONTENT BLOCK (Bild + Text nebeneinander)
============================================================ */
.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-20);
  align-items: center;
}

.content-block--wide {
  grid-template-columns: 1.15fr 1fr;
}

.content-block--img-wide {
  grid-template-columns: 1fr 0.9fr;
}

/* Seitenumkehr: Bild rechts, Text links */
.content-block--reversed .content-block__image {
  order: 2;
}

.content-block--reversed .content-block__text {
  order: 1;
}

.content-block__image img {
  width: 100%;
  height: auto;
  border-radius: 0 !important;
  display: block;
}

.content-block__image figcaption {
  margin-top: var(--s-3);
  font-size: var(--fs-xs);
  color: var(--muted);
  letter-spacing: var(--ls-wide);
  line-height: var(--lh-normal);
}

.content-block__text .label {
  margin-bottom: var(--s-4);
}

.content-block__title {
  font-size: var(--fs-3xl);
  margin-bottom: var(--s-6);
}

.content-block__body > p {
  font-size: var(--fs-base);
  color: var(--muted);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--s-4);
}

.content-block__body > p:last-child {
  margin-bottom: 0;
}

.content-block__actions {
  margin-top: var(--s-8);
  display: flex;
  gap: var(--s-4);
  flex-wrap: wrap;
  align-items: center;
}


/* ============================================================
   13. FEATURE CARDS / USP-KARTEN
============================================================ */
.feature-card {
  padding: var(--s-10) var(--s-8);
  background-color: var(--white);
  border: 1px solid var(--border);
  transition: border-color var(--t-base) var(--ease);
}

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

.section--grey .feature-card,
.section--dark .feature-card {
  background-color: var(--white);
}

.section--dark .feature-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.14);
}

.feature-card__number {
  font-family: var(--font-heading);
  font-size: var(--fs-4xl);
  font-weight: var(--fw-semibold);
  color: var(--border);
  line-height: 1;
  letter-spacing: var(--ls-tight);
  margin-bottom: var(--s-5);
}

.feature-card__icon {
  width: 32px;
  height: 32px;
  margin-bottom: var(--s-5);
  color: var(--dark);
}

.feature-card__title {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: var(--fw-medium);
  color: var(--dark);
  line-height: var(--lh-snug);
  margin-bottom: var(--s-3);
}

.section--dark .feature-card__title {
  color: var(--white);
}

.feature-card__text {
  font-size: var(--fs-sm);
  color: var(--muted);
  line-height: var(--lh-relaxed);
}

.section--dark .feature-card__text {
  color: rgba(255, 255, 255, 0.65);
}

.feature-card__link {
  display: inline-block;
  margin-top: var(--s-5);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  border-bottom: 1px solid var(--dark);
  padding-bottom: 1px;
  transition: opacity var(--t-fast) var(--ease);
}

.feature-card__link:hover {
  opacity: 0.65;
}


/* ============================================================
   14. ANALYSE PARAMETER GRID
============================================================ */
.analyse-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-3);
}

.analyse-item {
  position: relative;
  overflow: hidden;
}

.analyse-item img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 0 !important;
  display: block;
  transition: transform var(--t-slow) var(--ease);
}

.analyse-item:hover img {
  transform: scale(1.05);
}

.analyse-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--s-5) var(--s-3) var(--s-2);
  background: linear-gradient(to top, rgba(49,49,49,0.88) 0%, transparent 100%);
  color: var(--white);
  font-family: var(--font-body);
  font-size: var(--fs-2xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
}


/* ============================================================
   15. KENNZAHLEN / STAT BLOCK
============================================================ */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background-color: var(--border);
  border: 1px solid var(--border);
}

.section--grey .stat-grid  { background-color: var(--border); border-color: var(--border); }
.section--dark .stat-grid  { background-color: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.14); }

.stat-block {
  background-color: var(--white);
  text-align: center;
  padding: var(--s-12) var(--s-8);
}

.section--grey  .stat-block { background-color: var(--grey); }
.section--dark  .stat-block { background-color: transparent; }

.stat-block__number {
  font-family: var(--font-heading);
  font-size: var(--fs-6xl);
  font-weight: var(--fw-semibold);
  color: var(--dark);
  line-height: 1;
  letter-spacing: var(--ls-tight);
  margin-bottom: var(--s-3);
}

.section--dark .stat-block__number { color: var(--white); }

.stat-block__label {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--muted);
}

.section--dark .stat-block__label { color: rgba(255,255,255,0.5); }


/* ============================================================
   16. PROZESS / SCHRITTE
============================================================ */
.process-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.process-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: var(--s-6);
  align-items: start;
  padding: var(--s-8) 0;
  border-bottom: 1px solid var(--border);
  transition: background-color var(--t-fast) var(--ease);
}

.process-item__counter {
  font-family: var(--font-heading);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-semibold);
  color: var(--border-strong);
  line-height: 1;
  letter-spacing: var(--ls-tight);
  margin-top: 4px;
}

.process-item__title {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: var(--fw-medium);
  color: var(--dark);
  margin-bottom: var(--s-2);
  line-height: var(--lh-snug);
}

.process-item__text {
  font-size: var(--fs-sm);
  color: var(--muted);
  line-height: var(--lh-relaxed);
}


/* ============================================================
   17. CHECKLISTE
============================================================ */
.check-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  font-size: var(--fs-base);
  color: var(--dark);
  line-height: var(--lh-relaxed);
}

.check-list li::before {
  content: '—';
  color: var(--dark);
  font-weight: var(--fw-medium);
  flex-shrink: 0;
  margin-top: 0.15em;
  line-height: 1;
}

.check-list--muted li { color: var(--muted); }
.check-list--muted li::before { color: var(--muted); }

.section--dark .check-list li { color: rgba(255,255,255,0.8); }
.section--dark .check-list li::before { color: rgba(255,255,255,0.5); }


/* ============================================================
   18. ZITAT / HIGHLIGHT BOX
============================================================ */
.highlight-box {
  padding: var(--s-8) var(--s-10);
  border-left: 2px solid var(--dark);
  background-color: var(--grey);
  margin-block: var(--s-8);
}

.section--dark .highlight-box {
  border-left-color: rgba(255,255,255,0.4);
  background-color: rgba(255,255,255,0.06);
}

.highlight-box p {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: var(--fw-medium);
  font-style: italic;
  color: var(--dark);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-heading);
}

.section--dark .highlight-box p {
  color: var(--white);
}

.highlight-box .highlight-source {
  display: block;
  margin-top: var(--s-3);
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
}


/* ============================================================
   19. SPEZIFIKATIONSTABELLE
============================================================ */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
}

.spec-table caption {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--muted);
  text-align: left;
  padding-bottom: var(--s-4);
}

.spec-table tr {
  border-bottom: 1px solid var(--border);
}

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

.spec-table tr:nth-child(even) {
  background-color: rgba(235, 235, 235, 0.35);
}

.spec-table th,
.spec-table td {
  padding: var(--s-4) var(--s-6);
  text-align: left;
  font-size: var(--fs-sm);
  line-height: var(--lh-normal);
  vertical-align: top;
}

.spec-table th {
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  color: var(--muted);
  background-color: var(--grey);
  width: 38%;
  letter-spacing: 0.01em;
}

.spec-table td {
  color: var(--dark);
  font-weight: var(--fw-regular);
}


/* ============================================================
   20. TIMELINE (Geschichte)
============================================================ */
.timeline {
  position: relative;
  padding-left: var(--s-10);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 0;
  width: 1px;
  background-color: var(--border);
}

.timeline-item {
  position: relative;
  padding-bottom: var(--s-12);
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--s-10) - 4px);
  top: 9px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: var(--dark);
  border: 2px solid var(--white);
  outline: 1px solid var(--dark);
}

.timeline-item__year {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-semibold);
  color: var(--dark);
  line-height: 1;
  margin-bottom: var(--s-2);
  letter-spacing: var(--ls-tight);
}

.timeline-item__title {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: var(--fw-medium);
  color: var(--dark);
  margin-bottom: var(--s-3);
  line-height: var(--lh-snug);
}

.timeline-item__text {
  font-size: var(--fs-sm);
  color: var(--muted);
  line-height: var(--lh-relaxed);
}


/* ============================================================
   21. FAQ (details / summary) — kein JS nötig
============================================================ */
.faq__section .section__head--center {
  margin-bottom: var(--s-10);
}

.faq__list {
  border-top: 1px solid var(--border);
}

.section--dark .faq__list {
  border-top-color: rgba(255, 255, 255, 0.16);
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.section--dark .faq__item {
  border-bottom-color: rgba(255, 255, 255, 0.16);
}

.faq__item details {
  width: 100%;
}

/* Summary = klickbare Frage-Zeile */
.faq__item summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-8);
  padding: var(--s-6) 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: var(--fw-medium);
  color: var(--dark);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-heading);
  list-style: none;
  user-select: none;
  -webkit-user-select: none;
  transition: color var(--t-fast) var(--ease);
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.section--dark .faq__item summary {
  color: var(--white);
}

/* Plus / Minus Icon */
.faq__item summary::after {
  content: '+';
  font-family: var(--font-body);
  font-size: var(--fs-lg);
  font-weight: var(--fw-light);
  line-height: 1;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
  color: var(--muted);
  transition: none;
}

.section--dark .faq__item summary::after {
  color: rgba(255, 255, 255, 0.45);
}

.faq__item details[open] summary::after {
  content: '−';
}

.faq__item details[open] summary {
  color: var(--dark);
}

.section--dark .faq__item details[open] summary {
  color: var(--white);
}

/* Antwort */
.faq__item__answer {
  padding-bottom: var(--s-6);
  padding-right: var(--s-10);
  max-width: 720px;
}

.faq__item__answer p {
  font-size: var(--fs-base);
  color: var(--muted);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--s-3);
}

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

.faq__item__answer a {
  color: var(--dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity var(--t-fast) var(--ease);
}

.faq__item__answer a:hover {
  opacity: 0.65;
}

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

.section--dark .faq__item__answer a {
  color: var(--white);
}


/* ============================================================
   22. CTA-SEKTION
============================================================ */
.cta-section {
  padding-block: var(--s-28);
  text-align: center;
}

.cta-section__label {
  display: block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--s-4);
}

.cta-section__title {
  font-family: var(--font-heading);
  font-size: var(--fs-5xl);
  font-weight: var(--fw-semibold);
  color: var(--white);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  margin-bottom: var(--s-5);
}

.cta-section__text {
  font-family: var(--font-body);
  font-size: var(--fs-md);
  font-weight: var(--fw-light);
  color: rgba(255, 255, 255, 0.75);
  line-height: var(--lh-relaxed);
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: var(--s-10);
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-4);
  flex-wrap: wrap;
}


/* ============================================================
   23. HUBSPOT FORMULAR — PLATZHALTER & STYLING
   Wenn HubSpot eingebettet wird, überschreiben:
   .hs-form input { border: 1px solid var(--border); border-radius: var(--r-xs); }
============================================================ */
.hubspot-form-embed {
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
  /* HubSpot-Formular wird hier via Script eingefügt */
}

/* Fallback-Platzhalter (vor Einbettung sichtbar) */
.hubspot-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-5);
  padding: var(--s-10) var(--s-8);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hubspot-placeholder__label {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

/* Überschreibungen für HubSpot-Formularelemente (nach Einbettung) */
.hubspot-form-embed .hs-form-field label {
  font-family: var(--font-body) !important;
  font-size: var(--fs-xs) !important;
  font-weight: var(--fw-medium) !important;
  letter-spacing: var(--ls-wider) !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.6) !important;
  margin-bottom: var(--s-2) !important;
}

.hubspot-form-embed .hs-input,
.hubspot-form-embed input[type="text"],
.hubspot-form-embed input[type="email"],
.hubspot-form-embed textarea {
  font-family: var(--font-body) !important;
  font-size: var(--fs-sm) !important;
  color: var(--white) !important;
  background-color: rgba(255,255,255,0.07) !important;
  border: 1px solid rgba(255,255,255,0.22) !important;
  border-radius: var(--r-xs) !important;
  padding: var(--s-4) var(--s-4) !important;
  width: 100% !important;
  transition: border-color var(--t-fast) var(--ease) !important;
}

.hubspot-form-embed .hs-input:focus,
.hubspot-form-embed input:focus,
.hubspot-form-embed textarea:focus {
  outline: none !important;
  border-color: rgba(255,255,255,0.55) !important;
}

.hubspot-form-embed .hs-button {
  font-family: var(--font-body) !important;
  font-size: var(--fs-xs) !important;
  font-weight: var(--fw-medium) !important;
  letter-spacing: var(--ls-widest) !important;
  text-transform: uppercase !important;
  background-color: var(--white) !important;
  color: var(--dark) !important;
  border: 1px solid var(--white) !important;
  border-radius: var(--r-xs) !important;
  padding: var(--s-4) var(--s-8) !important;
  cursor: pointer !important;
  transition: background-color var(--t-base) var(--ease) !important;
}

.hubspot-form-embed .hs-button:hover {
  background-color: var(--grey) !important;
  border-color: var(--grey) !important;
}


/* ============================================================
   24. FOOTER
============================================================ */
.site-footer {
  background-color: var(--dark);
  color: var(--white);
  padding-top: var(--s-20);
}

.footer__main {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-bottom: var(--s-16);
  display: grid;
  grid-template-columns: 1.4fr 2fr 1fr;
  gap: var(--s-16);
  align-items: start;
}

/* Brand */
.footer__brand-logo {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  border-radius: 0 !important;
  margin-bottom: var(--s-5);
}

.footer__brand p {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.5);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--s-2);
}

.footer__brand a {
  display: inline-block;
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  margin-top: var(--s-2);
  transition: color var(--t-fast) var(--ease);
}

.footer__brand a:hover {
  color: var(--white);
}

/* Navigation */
.footer__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-10);
}

.footer__nav-group h4 {
  font-family: var(--font-body);
  font-size: var(--fs-2xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: var(--s-5);
}

.footer__nav-links {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.footer__nav-links a {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color var(--t-fast) var(--ease);
  line-height: var(--lh-normal);
}

.footer__nav-links a:hover {
  color: var(--white);
}

/* Partner / Metainfo rechts */
.footer__partner p {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.38);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--s-2);
}

/* Footer-Bottom-Zeile */
.footer__bottom {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-block: var(--s-6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  flex-wrap: wrap;
}

.footer__copyright {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.32);
  line-height: 1;
}

.footer__legal-links {
  display: flex;
  gap: var(--s-6);
}

.footer__legal-links a {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.32);
  text-decoration: none;
  transition: color var(--t-fast) var(--ease);
}

.footer__legal-links a:hover {
  color: var(--white);
}


/* ============================================================
   25. BILDDARSTELLUNG
============================================================ */

/* Globale Bildpflicht — keine Ausnahmen */
img {
  border-radius: 0 !important;
}

/* Vollbreite-Bilder */
.img-full {
  width: 100%;
  height: auto;
  display: block;
}

/* Proportionale Bildcontainer */
.img-aspect-16-9 {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.img-aspect-4-3 {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.img-aspect-3-2 {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.img-aspect-1-1 {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.img-aspect-16-9 img,
.img-aspect-4-3 img,
.img-aspect-3-2 img,
.img-aspect-1-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}

/* Figure / Bildunterschrift */
figure {
  margin: 0;
}

figcaption {
  margin-top: var(--s-3);
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  color: var(--muted);
  letter-spacing: var(--ls-wide);
  line-height: var(--lh-normal);
}

/* Overlay-Bilder (z.B. Partner-Logos) */
.img-greyscale {
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter var(--t-base) var(--ease), opacity var(--t-base) var(--ease);
}

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

/* Footer-Logo invertiert */
.img-invert {
  filter: brightness(0) invert(1);
}


/* ============================================================
   26. UTILITY-KLASSEN
============================================================ */

/* Visuelle Trennlinie */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

.divider--dark {
  border-top-color: rgba(255, 255, 255, 0.12);
}

/* Spacer */
.mt-4  { margin-top: var(--s-4); }
.mt-6  { margin-top: var(--s-6); }
.mt-8  { margin-top: var(--s-8); }
.mt-10 { margin-top: var(--s-10); }
.mt-12 { margin-top: var(--s-12); }
.mb-4  { margin-bottom: var(--s-4); }
.mb-6  { margin-bottom: var(--s-6); }
.mb-8  { margin-bottom: var(--s-8); }
.mb-10 { margin-bottom: var(--s-10); }
.mb-12 { margin-bottom: var(--s-12); }

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

/* Inline-Textlink */
.text-link {
  color: var(--dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--border-strong);
  transition: text-decoration-color var(--t-fast) var(--ease);
}

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

.section--dark .text-link {
  color: var(--white);
  text-decoration-color: rgba(255,255,255,0.4);
}

.section--dark .text-link:hover {
  text-decoration-color: var(--white);
}


/* ============================================================
   27. RESPONSIVE BREAKPOINTS
============================================================ */

/* 1280px — xl: große Desktop-Anpassungen */
@media (max-width: 1280px) {
  :root {
    --gutter: 1.5rem;
  }

  .hero__title { font-size: var(--fs-4xl); }
  .cta-section__title { font-size: var(--fs-4xl); }

  .nav__link { padding: var(--s-2) var(--s-2); }
}

/* 1024px — lg: Navigation wechselt auf Hamburger */
@media (max-width: 1024px) {
  .header__nav { display: none; }
  .hamburger   { display: flex; }

  .hero__title    { font-size: var(--fs-4xl); }
  .hero__subtitle { font-size: var(--fs-base); }

  .content-block {
    grid-template-columns: 1fr;
    gap: var(--s-10);
  }

  .content-block--reversed .content-block__image { order: 0; }
  .content-block--reversed .content-block__text  { order: 0; }

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

  .analyse-grid { grid-template-columns: repeat(4, 1fr); }

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

  .footer__main {
    grid-template-columns: 1fr 1fr;
    gap: var(--s-10);
  }

  .footer__partner {
    grid-column: 1 / -1;
  }
}

/* 768px — md: Tablet */
@media (max-width: 768px) {
  :root {
    --hero-h:        var(--hero-h-tablet);
    --section-py:    var(--s-16);
    --section-py-sm: var(--s-10);
    --section-py-lg: var(--s-20);
  }

  h1 { font-size: var(--fs-3xl); }
  h2 { font-size: var(--fs-2xl); }
  h3 { font-size: var(--fs-xl); }

  .hero__title       { font-size: var(--fs-3xl); }
  .cta-section__title { font-size: var(--fs-3xl); }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }

  .analyse-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-2); }

  .stat-grid { grid-template-columns: 1fr; gap: 1px; }

  .footer__main {
    grid-template-columns: 1fr;
    gap: var(--s-8);
  }

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

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

  .process-item {
    grid-template-columns: 48px 1fr;
    gap: var(--s-4);
  }

  .content-block__title { font-size: var(--fs-2xl); }

  .faq__item summary { font-size: var(--fs-lg); }

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

/* 480px — sm: Smartphone */
@media (max-width: 480px) {
  :root {
    --hero-h:   var(--hero-h-mobile);
    --gutter:   1.25rem;
    --col-gap:  1rem;
  }

  h1 { font-size: var(--fs-2xl); }
  h2 { font-size: var(--fs-xl); }

  .hero__title       { font-size: var(--fs-2xl); }
  .hero__subtitle    { font-size: var(--fs-sm); }
  .cta-section__title { font-size: var(--fs-2xl); }
  .cta-section__text  { font-size: var(--fs-base); }

  .analyse-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-2); }

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

  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; justify-content: center; }

  .content-block__actions { flex-direction: column; }
  .content-block__actions .btn { width: 100%; justify-content: center; }

  .stat-block__number { font-size: var(--fs-5xl); }

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

  .feature-card { padding: var(--s-6); }

  .highlight-box { padding: var(--s-5) var(--s-6); }

  .mobile-nav__link { font-size: var(--fs-2xl); }

  .faq__item summary { font-size: var(--fs-base); padding: var(--s-5) 0; }
  .faq__item__answer { padding-right: 0; }
}


/* ============================================================
   28. PRINT (minimal)
============================================================ */
@media print {
  .site-header,
  .mobile-nav,
  .hero__overlay,
  .hero__actions,
  .cta-section,
  .site-footer { display: none !important; }

  body { font-size: 12pt; color: #000; }
  a { text-decoration: underline; color: #000; }
  h1, h2, h3 { page-break-after: avoid; }
  img { max-width: 100%; border-radius: 0 !important; }
}
