/* =============================================================
   HA-CONSULT · Stylesheet
   CI-Version 1.0 · März 2026
   =============================================================
   Farben und Schriften stammen aus dem CI-Manual.
   Alle Werte sind als CSS-Variablen definiert – nur hier ändern,
   wirkt sich automatisch auf die gesamte Seite aus.
   ============================================================= */

/* -------------------------------------------------------------
   1. CI-FARBEN (aus CI-Manual Kapitel 2)
   ------------------------------------------------------------- */
:root {

  /* Primärfarben */
  --charcoal-blue:  #2C3E50;   /* Logo, Headlines, Nav, Footer */
  --steel-blue:     #3D5A73;   /* Hover, Subheadings, Cards */
  --ice-blue:       #EBF0F4;   /* Hintergründe, Sections */

  /* CTA-Farbe */
  --signal-amber:   #E67E22;   /* CTA-Buttons, Highlights */
  --amber-light:    #F5A45D;   /* Hover auf CTA, Badges */

  /* Messing-Akzente */
  --brass-dark:     #7A5C2E;   /* Trennlinien, Borders */
  --brass:          #B5924C;   /* Akzent-Icons, Ornamente */
  --brass-light:    #D4B483;   /* Hintergrundflächen */

  /* Sekundäre Akzentfarbe */
  --forest-green:   #2E5E4E;   /* Ergebnis-Badges, Icons */
  --forest-light:   #E8F2EE;   /* Hintergrundflächen */

  /* Neutrale Töne */
  --deep-navy:      #1A252F;   /* Fließtext, Dark BG */
  --slate:          #8BA3B5;   /* Muted Text, Borders */
  --warm-white:     #F8F7F4;   /* Page Background */

  /* -------------------------------------------------------------
     2. SCHRIFTEN (aus CI-Manual Kapitel 3)
     ------------------------------------------------------------- */
  --font-display: 'Cormorant Garamond', Georgia, serif;  /* Headlines, CTAs, Labels */
  --font-body:    'EB Garamond', Georgia, serif;          /* Fließtext, Body */

  /* -------------------------------------------------------------
     3. SCHRIFTGRÖSSENSCALA (CI: 1pt ≈ 1.33px bei 96dpi)
     ------------------------------------------------------------- */
  --size-display:    48px;  /* 36pt – Hero-Bereiche */
  --size-h1:         37px;  /* 28pt – Seitenüberschriften */
  --size-h2:         29px;  /* 22pt – Abschnittsüberschriften */
  --size-h3:         24px;  /* 18pt – Karten, Sidebar */
  --size-label:      17px;  /* 13pt – Uppercase Labels */
  --size-body-lg:    19px;  /* 14pt – Intro/Lead-Text */
  --size-body:       16px;  /* 12pt – Standard-Fließtext */
  --size-body-sm:    15px;  /* 11pt – Sekundärer Text */
  --size-caption:    13px;  /* 10pt – Bildunterschriften, Meta */

  /* -------------------------------------------------------------
     4. ZEILENABSTÄNDE (aus CI-Manual Kapitel 3.3)
     ------------------------------------------------------------- */
  --lh-display:   1.15;
  --lh-h1:        1.20;
  --lh-h2:        1.25;
  --lh-h3:        1.30;
  --lh-label:     1.30;
  --lh-body:      1.70;
  --lh-caption:   1.50;

  /* -------------------------------------------------------------
     5. ABSTÄNDE & LAYOUT
     ------------------------------------------------------------- */
  --max-width:    1140px;
  --section-py:   80px;
  --card-radius:  4px;
}


/* =============================================================
   SKIP-TO-MAIN (Barrierefreiheit)
   ============================================================= */
.skip-to-main {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  background-color: var(--signal-amber);
  color: var(--warm-white);
  padding: 10px 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--size-label);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 0 0 var(--card-radius) var(--card-radius);
  transition: top 0.15s;
}

.skip-to-main:focus {
  top: 0;
  outline: 3px solid var(--charcoal-blue);
  outline-offset: 2px;
}


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

html {
  scroll-behavior: smooth;
  background-color: var(--warm-white); /* Verhindert weißen Blitz beim Zoomen/Overscroll */
}

body {
  font-family: var(--font-body);
  font-size: var(--size-body);
  line-height: var(--lh-body);
  color: var(--deep-navy);
  background-color: var(--warm-white);
  -webkit-font-smoothing: antialiased;
}

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

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


/* =============================================================
   TYPOGRAFIE-KLASSEN (nach CI-Manual)
   ============================================================= */

/* Display – Hero-Bereiche, Titelseiten */
.text-display {
  font-family: var(--font-display);
  font-size: var(--size-display);
  font-weight: 700;
  line-height: var(--lh-display);
  color: var(--charcoal-blue);
}

/* H1 – Seitenüberschriften */
h1, .text-h1 {
  font-family: var(--font-display);
  font-size: var(--size-h1);
  font-weight: 700;
  line-height: var(--lh-h1);
  color: var(--charcoal-blue);
}

/* H2 – Abschnittsüberschriften */
h2, .text-h2 {
  font-family: var(--font-display);
  font-size: var(--size-h2);
  font-weight: 700;
  line-height: var(--lh-h2);
  color: var(--charcoal-blue);
}

/* H3 – Karten, Sidebar-Titel */
h3, .text-h3 {
  font-family: var(--font-display);
  font-size: var(--size-h3);
  font-weight: 700;
  line-height: var(--lh-h3);
  color: var(--charcoal-blue);
}

/* Label / Kapitel – Uppercase, Letter-Spacing */
.label {
  font-family: var(--font-display);
  font-size: var(--size-label);
  font-weight: 700;
  line-height: var(--lh-label);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brass);
}

/* Body Large – Intro-Absätze, Lead-Text */
.body-lg {
  font-family: var(--font-body);
  font-size: var(--size-body-lg);
  line-height: var(--lh-body);
  color: var(--deep-navy);
}

/* Body Small – Sekundärer Text */
.body-sm {
  font-family: var(--font-body);
  font-size: var(--size-body-sm);
  line-height: var(--lh-body);
  color: var(--slate);
}

/* Caption – Bildunterschriften, Meta */
.caption {
  font-family: var(--font-body);
  font-size: var(--size-caption);
  line-height: var(--lh-caption);
  color: var(--slate);
}

/* Messing-Trennlinie (CI: Brass für Dekoratives) */
.divider {
  width: 48px;
  height: 2px;
  background-color: var(--brass);
  border: none;
  margin: 20px 0;
}

.divider--center {
  margin: 20px auto;
}


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

.section {
  padding: var(--section-py) 0;
}

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

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

.section--dark {
  background-color: var(--charcoal-blue);
  color: var(--ice-blue);
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-header .label {
  margin-bottom: 12px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--slate);
}


/* =============================================================
   NAVIGATION
   ============================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--charcoal-blue);
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 72px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav__logo {
  display: flex;
  align-items: center;
  height: 44px;
}

.nav__logo img {
  height: 44px;
  width: auto;
}

.nav__links {
  display: flex;
  list-style: none;
  gap: 36px;
}

.nav__links a {
  font-family: var(--font-display);
  font-size: var(--size-label);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ice-blue);
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

/* Messing-Hover-Unterstrich (CI: Messing für Hover-Underlines) */
.nav__links a:hover {
  color: var(--brass-light);
  border-bottom-color: var(--brass);
}

.nav__cta {
  font-family: var(--font-display);
  font-size: var(--size-label);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background-color: var(--signal-amber);
  color: var(--warm-white);
  padding: 10px 24px;
  border-radius: var(--card-radius);
  transition: background-color 0.2s;
}

.nav__cta:hover {
  background-color: var(--amber-light);
  border-bottom-color: transparent;
}


/* =============================================================
   HERO-SECTION
   ============================================================= */
.hero {
  background-color: var(--ice-blue);
  padding: 100px 0 80px;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch; /* Kinder füllen volle Breite – verhindert Überlauf auf Mobile */
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Zentrierter oberer Block (Logo, Label, Headline) */
.hero__top {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 32px;
}

.hero__header-logo {
  width: 480px; /* Logo-Größe – hier anpassen */
  max-width: 100%; /* verhindert Überlauf auf Mobile */
  height: auto;
  margin-bottom: 28px;
}

.hero__label {
  margin-bottom: 16px;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: var(--size-display);
  font-weight: 700;
  line-height: var(--lh-display);
  color: var(--charcoal-blue);
  margin-bottom: 24px;
  width: 100%;
}

.hero__subline {
  font-size: var(--size-body-lg);
  line-height: var(--lh-body);
  color: var(--deep-navy);
  max-width: 664px; /* Desktop: begrenzt auf Buttonbreite; Mobile: nimmt volle Container-Breite */
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: nowrap;
}

.hero__actions .btn {
  text-align: center;
}

.hero__visual {
  background-color: var(--steel-blue);
  border-radius: var(--card-radius);
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate);
  font-family: var(--font-body);
  font-size: var(--size-body-sm);
  /* Platzhalter für Bild / Grafik */
}


/* =============================================================
   BUTTONS
   ============================================================= */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--size-label);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 32px;
  border-radius: var(--card-radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

/* Primärer CTA – Signal Amber (CI: nur für primäre CTAs) */
.btn--primary {
  background-color: var(--signal-amber);
  color: var(--warm-white);
  border-color: var(--signal-amber);
}

.btn--primary:hover {
  background-color: var(--amber-light);
  border-color: var(--amber-light);
}

/* Sekundärer Button – Outline */
.btn--outline {
  background-color: transparent;
  color: var(--charcoal-blue);
  border-color: var(--brass);
}

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

/* Heller Button (auf dunklem Hintergrund) */
.btn--light {
  background-color: var(--ice-blue);
  color: var(--charcoal-blue);
  border-color: var(--ice-blue);
}

.btn--light:hover {
  background-color: var(--warm-white);
  border-color: var(--warm-white);
}


/* Leistungs-Karten: siehe .pricing-cards und .module-grid */

.card:hover {
  box-shadow: 0 6px 24px rgba(44, 62, 80, 0.12);
  transform: translateY(-2px);
}

.card__label {
  margin-bottom: 12px;
}

.card__title {
  margin-bottom: 12px;
}

.card__text {
  color: var(--deep-navy);
  margin-bottom: 20px;
}

.card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: var(--size-caption);
  color: var(--forest-green);
  background-color: var(--forest-light);
  padding: 4px 10px;
  border-radius: 2px;
}


/* =============================================================
   ÜBER UNS
   ============================================================= */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about__visual {
  border-radius: var(--card-radius);
  overflow: hidden;
  min-height: 400px;
  background-color: var(--steel-blue); /* Fallback während Bild lädt */
}

.about__img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about__content .label {
  margin-bottom: 12px;
  color: var(--brass);
}

.about__content h2 {
  margin-bottom: 16px;
}

.about__content .body-lg {
  margin-bottom: 20px;
}

.about__content p {
  margin-bottom: 16px;
  color: var(--deep-navy);
}

.about__content .divider {
  margin: 24px 0;
}

.about__content .btn {
  margin-top: 8px;
}


/* =============================================================
   TYPOGRAFIE-SEKTION (CI-Infoblock zur Schriftgeschichte)
   ============================================================= */
.typo-block {
  border-left: 3px solid var(--brass);
  padding: 24px 32px;
  background-color: var(--warm-white);
  border-radius: 0 var(--card-radius) var(--card-radius) 0;
  max-width: 720px;
  margin: 40px auto 0;
}

.typo-block p {
  font-family: var(--font-body);
  font-size: var(--size-body-sm);
  font-style: italic;
  line-height: var(--lh-body);
  color: var(--slate);
}


/* =============================================================
   KONTAKT
   ============================================================= */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Kontaktinfos auf dunklem Hintergrund */
.section--dark h2,
.section--dark h3 {
  color: var(--ice-blue);
}

.section--dark .label {
  color: var(--brass-light);
}

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

.contact__info p {
  color: var(--slate);
  margin-bottom: 8px;
}

.contact__info a {
  color: var(--brass-light);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.contact__info a:hover {
  border-bottom-color: var(--brass-light);
}

/* Formular */
.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form__group label {
  font-family: var(--font-display);
  font-size: var(--size-label);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ice-blue);
}

.form__group input,
.form__group textarea {
  font-family: var(--font-body);
  font-size: var(--size-body);
  background-color: rgba(235, 240, 244, 0.08);
  border: 1px solid var(--steel-blue);
  color: var(--ice-blue);
  padding: 12px 16px;
  border-radius: var(--card-radius);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form__group input::placeholder,
.form__group textarea::placeholder {
  color: var(--slate);
}

.form__group input:focus,
.form__group textarea:focus {
  border-color: var(--brass);
}

.form__group textarea {
  resize: vertical;
  min-height: 140px;
}


/* =============================================================
   FOOTER
   ============================================================= */
.footer {
  background-color: var(--deep-navy);
  padding: 40px 0;
}

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

.footer__logo img {
  height: 32px;
  width: auto;
  opacity: 0.85;
}

.footer__links {
  display: flex;
  list-style: none;
  gap: 24px;
}

.footer__links a {
  font-family: var(--font-body);
  font-size: var(--size-caption);
  color: var(--slate);
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--brass-light);
}

/* =============================================================
   SOCIAL MEDIA LINKS
   ============================================================= */

/* Container: immer eine horizontale Reihe */
.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-links__label {
  font-family: var(--font-display);
  font-size: var(--size-caption);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate);
  white-space: nowrap;
}

/* Einzelnes Icon-Element */
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--card-radius);
  border: 1px solid var(--brass);
  color: var(--brass);
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-link:hover {
  background-color: var(--brass);
  color: var(--warm-white);
  border-color: var(--brass);
}

/* Variante im Über-uns-Block (heller Hintergrund) – Wrapper */
.about__social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* Label nimmt volle Breite → Icons rutschen auf eigene Zeile darunter */
.about__social .social-links__label {
  flex-basis: 100%;
  margin-bottom: 4px;
}

/* Variante im Footer (dunkler Hintergrund) */
.footer__social .social-link {
  border-color: var(--slate);
  color: var(--slate);
}

.footer__social .social-link:hover {
  background-color: var(--brass);
  color: var(--deep-navy);
  border-color: var(--brass);
}

/* Responsive: Social-Links im Footer */
@media (max-width: 600px) {
  .footer__social {
    justify-content: center;
  }
}


.footer__copy {
  font-size: var(--size-caption);
  color: var(--slate);
}


/* =============================================================
   RESPONSIVE (einfach, mobile-first)
   ============================================================= */
@media (max-width: 900px) {
  .hero__inner,
  .about__inner,
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__visual,
  .about__visual {
    min-height: 240px;
    order: -1;
  }

  .text-display,
  .hero__headline {
    font-size: var(--size-h1);
  }

  .nav__links {
    display: none; /* Hamburger-Menü folgt in Ausbaustufe */
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
}


/* =============================================================
   RESPONSIVE – Mobil (≤ 600px)
   ============================================================= */
@media (max-width: 600px) {

  /* Weniger vertikaler Abstand auf kleinen Bildschirmen */
  :root {
    --section-py: 52px;
  }

  /* Nav: CTA-Button ausblenden, nur Logo + Menü-Links */
  .nav__cta {
    display: none;
  }

  /* Hero: weniger Innenabstand */
  .hero {
    padding: 56px 0 48px;
  }

  /* Hero-Logo: kompakter */
  .hero__header-logo {
    width: 280px;
  }

  /* Hero-Buttons: untereinander, volle Breite */
  .hero__actions {
    flex-wrap: wrap;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
    text-align: center;
  }

  /* Schriftgrößen etwas reduzieren */
  .hero__headline {
    font-size: var(--size-h2);
  }

  h2, .text-h2 {
    font-size: var(--size-h3);
  }

  /* Pricing-Karte: kompakteres Padding */
  .pricing-card {
    padding: 24px 20px;
  }

  /* ROI- und CTA-Blöcke */
  .roi-block,
  .unsure-cta,
  .promise-block {
    padding: 28px 20px;
  }

  /* Kontaktformular */
  .contact__inner {
    gap: 32px;
  }

  /* Footer: kleiner Abstand */
  .footer__inner {
    gap: 16px;
    padding: 28px 24px;
  }
}


/* =============================================================
   IMPRESSUM & RECHTLICHE SEITEN
   ============================================================= */
.impressum {
  max-width: 720px;
}

.impressum h1 {
  margin-bottom: 8px;
  overflow-wrap: break-word;
  hyphens: auto;
}

.impressum h2 {
  font-size: var(--size-h3);
  margin-top: 40px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--brass-dark);
}

.impressum p {
  color: var(--deep-navy);
  margin-bottom: 12px;
  line-height: var(--lh-body);
}

.impressum a:not(.btn) {
  color: var(--steel-blue);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.impressum a:not(.btn):hover {
  border-bottom-color: var(--brass);
}


/* =============================================================
   VERSPRECHEN-BLOCK
   ============================================================= */
.promise-block {
  background-color: var(--warm-white);
  border-left: 4px solid var(--signal-amber);
  border-radius: 0 var(--card-radius) var(--card-radius) 0;
  padding: 24px 32px;
  max-width: 760px;
  margin: 0 auto 64px;
}

.promise-block p {
  font-family: var(--font-body);
  font-size: var(--size-body-lg);
  line-height: var(--lh-body);
  color: var(--deep-navy);
}

.promise-block .label {
  color: var(--brass);
}


/* =============================================================
   PRICING-KARTEN
   ============================================================= */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 72px;
}

.pricing-card {
  background-color: var(--warm-white);
  border-radius: var(--card-radius);
  border-top: 3px solid var(--brass);
  box-shadow: 0 2px 12px rgba(44, 62, 80, 0.07);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

/* Empfohlene Karte – AUFBAU */
.pricing-card--featured {
  border-top: 3px solid var(--signal-amber);
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.14);
  transform: translateY(-8px);
}

.pricing-card__badge-featured {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--signal-amber);
  color: var(--warm-white);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-card__label {
  margin-bottom: 8px;
}

.pricing-card__title {
  font-size: var(--size-h3);
  line-height: var(--lh-h3);
  margin-bottom: 8px;
}

.pricing-card__desc {
  font-size: var(--size-body);
  line-height: var(--lh-body);
  color: var(--deep-navy);
}

/* Liste der enthaltenen Leistungen */
.pricing-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-card__list li {
  font-family: var(--font-body);
  font-size: var(--size-body);
  line-height: var(--lh-body);
  color: var(--deep-navy);
  padding-left: 20px;
  position: relative;
}

.pricing-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--forest-green);
  font-weight: 600;
}

/* Bonus-Bereich */
.pricing-card__bonus {
  background-color: var(--forest-light);
  border-radius: var(--card-radius);
  padding: 14px 16px;
}

.pricing-card__bonus p {
  font-family: var(--font-body);
  font-size: var(--size-body-sm);
  line-height: var(--lh-body);
  color: var(--forest-green);
  margin-top: 4px;
}

/* Preis */
.pricing-card__price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 8px;
  border-top: 1px solid var(--ice-blue);
}

.pricing-card__amount {
  font-family: var(--font-display);
  font-size: var(--size-h1);
  font-weight: 700;
  color: var(--charcoal-blue);
  line-height: 1;
}

.pricing-card__period {
  font-family: var(--font-body);
  font-size: var(--size-body-sm);
  color: var(--slate);
}

.pricing-card__annual {
  font-family: var(--font-body);
  font-size: var(--size-caption);
  color: var(--forest-green);
}

.pricing-card__cta {
  width: 100%;
  text-align: center;
  margin-top: auto;
}


/* =============================================================
   WAS ALLE DREI GEMEINSAM HABEN
   ============================================================= */
.shared-benefits {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}

.shared-benefits h3 {
  margin-bottom: 8px;
}

.shared-benefits p {
  font-size: var(--size-body-lg);
  line-height: var(--lh-body);
  color: var(--deep-navy);
  margin-bottom: 12px;
}


/* =============================================================
   ROI-BLOCK
   ============================================================= */
.roi-block {
  background-color: var(--charcoal-blue);
  border-radius: var(--card-radius);
  padding: 48px 56px;
  max-width: 760px;
  margin: 0 auto 64px;
}

.roi-block h3 {
  color: var(--ice-blue);
  margin-bottom: 20px;
}

.roi-block p {
  font-size: var(--size-body-lg);
  line-height: var(--lh-body);
  color: var(--slate);
  margin-bottom: 12px;
}

.roi-block .roi-block__punch {
  font-family: var(--font-display);
  font-size: var(--size-h3);
  font-weight: 700;
  color: var(--brass-light);
  margin-top: 24px;
}


/* =============================================================
   NICHT SICHER – CTA
   ============================================================= */
.unsure-cta {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding-bottom: 16px;
}

.unsure-cta h3 {
  margin-bottom: 12px;
}

.unsure-cta p {
  font-size: var(--size-body-lg);
  line-height: var(--lh-body);
  color: var(--deep-navy);
  margin-bottom: 28px;
}


/* =============================================================
   RESPONSIVE – Pricing Cards
   ============================================================= */
@media (max-width: 900px) {
  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .pricing-card--featured {
    transform: none;
  }

  .roi-block {
    padding: 32px 24px;
  }
}


/* =============================================================
   COOKIE-CONSENT · Banner (Ebene 1) + Modal (Ebene 2)
   ============================================================= */

/* ----- Banner ----- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background-color: var(--deep-navy);
  border-top: 2px solid var(--brass);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
  padding: 20px 0;
}

.cookie-banner__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  min-width: 240px;
}

.cookie-banner__text p {
  font-family: var(--font-body);
  font-size: var(--size-body-sm);
  line-height: var(--lh-body);
  color: var(--slate);
}

.cookie-banner__text .label {
  color: var(--brass-light);
}

.cookie-banner__link {
  color: var(--brass-light);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.cookie-banner__link:hover {
  border-bottom-color: var(--brass-light);
}

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

.cookie-btn {
  white-space: nowrap;
  padding: 10px 20px;
  font-size: var(--size-caption);
}

/* Outline-Button auf dunklem Banner-Hintergrund */
.cookie-banner .btn--outline {
  color: var(--ice-blue);
  border-color: var(--slate);
}

.cookie-banner .btn--outline:hover {
  background-color: rgba(235,240,244,0.1);
  border-color: var(--ice-blue);
}


/* ----- Modal-Overlay ----- */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9100;
  background-color: rgba(26,37,47,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.cookie-modal-overlay[hidden] {
  display: none;
}

/* ----- Modal ----- */
.cookie-modal {
  background-color: var(--warm-white);
  border-radius: var(--card-radius);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px;
  outline: none;
}

.cookie-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.cookie-modal__title {
  font-size: var(--size-h3);
  color: var(--charcoal-blue);
}

.cookie-modal__close {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--slate);
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color 0.2s;
}

.cookie-modal__close:hover {
  color: var(--charcoal-blue);
}

.cookie-modal__intro {
  font-family: var(--font-body);
  font-size: var(--size-body-sm);
  line-height: var(--lh-body);
  color: var(--slate);
  margin-bottom: 24px;
}

/* ----- Cookie-Kategorie ----- */
.cookie-category {
  border-top: 1px solid var(--ice-blue);
  padding: 20px 0;
}

.cookie-category__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.cookie-category__label {
  margin-bottom: 6px;
}

.cookie-category__desc {
  font-family: var(--font-body);
  font-size: var(--size-caption);
  line-height: var(--lh-body);
  color: var(--slate);
  max-width: 360px;
}

/* ----- Toggle-Switch ----- */
.cookie-toggle {
  flex-shrink: 0;
  cursor: pointer;
  margin-top: 4px;
}

.cookie-toggle__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle__slider {
  display: block;
  width: 48px;
  height: 26px;
  background-color: var(--slate);
  border-radius: 13px;
  position: relative;
  transition: background-color 0.2s;
}

.cookie-toggle__slider::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background-color: white;
  border-radius: 50%;
  transition: transform 0.2s;
}

.cookie-toggle__input:checked + .cookie-toggle__slider {
  background-color: var(--forest-green);
}

.cookie-toggle__input:checked + .cookie-toggle__slider::after {
  transform: translateX(22px);
}

.cookie-toggle__input:focus-visible + .cookie-toggle__slider {
  outline: 2px solid var(--signal-amber);
  outline-offset: 2px;
}

/* Gesperrter Toggle (Notwendig) */
.cookie-toggle--locked {
  cursor: default;
}

.cookie-toggle__pill {
  font-family: var(--font-body);
  font-size: var(--size-caption);
  color: var(--forest-green);
  background-color: var(--forest-light);
  padding: 4px 10px;
  border-radius: 12px;
  white-space: nowrap;
}

/* Modifier: "Immer aktiv"-Pill (Notwendig-Kategorie) */
.cookie-toggle__pill--on {
  font-weight: 500;
}

/* ----- Modal Footer ----- */
.cookie-modal__footer {
  border-top: 1px solid var(--ice-blue);
  padding-top: 24px;
  margin-top: 8px;
}


/* =============================================================
   MODULKATALOG
   ============================================================= */

.module-section-header {
  text-align: center;
  margin: 72px 0 40px;
}

.module-section-header p:not(.label) {
  max-width: 560px;
  margin: 0 auto;
  color: var(--charcoal-blue);
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 72px;
}

.module-card {
  background-color: var(--warm-white);
  border-top: 3px solid var(--brass);
  border-radius: var(--card-radius);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 2px 12px rgba(44, 62, 80, 0.07);
  transition: box-shadow 0.2s, transform 0.2s;
}

.module-card:hover {
  box-shadow: 0 6px 24px rgba(44, 62, 80, 0.13);
  transform: translateY(-3px);
}

.module-card__number {
  font-family: var(--font-display);
  font-size: var(--size-caption);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass);
}

.module-card__title {
  font-family: var(--font-display);
  font-size: var(--size-body-lg);
  font-weight: 600;
  color: var(--charcoal-blue);
  line-height: 1.3;
  margin: 0;
}

.module-card__desc {
  font-family: var(--font-body);
  font-size: var(--size-body-sm);
  color: var(--deep-navy);
  line-height: var(--lh-body);
  flex: 1;
  margin: 4px 0 0;
}

.module-card__duration {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: var(--size-caption);
  color: var(--forest-green);
  background-color: var(--forest-light);
  padding: 4px 12px;
  border-radius: 20px;
  align-self: flex-start;
  margin-top: 12px;
}

/* Responsive: 2 Spalten ab Tablet */
@media (max-width: 960px) {
  .module-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive: 1 Spalte auf Mobil */
@media (max-width: 560px) {
  .module-grid {
    grid-template-columns: 1fr;
  }
}
