/* =============================================================
   myPage360 – style.css  (Feinschliff-Version)
   Einfache statische Websites & ehrliche Sichtprüfungen
   Ein Angebot von Jens Buchwald
   ============================================================= */

/* ----------------------------------------------------------
   1. Design-Token
   ---------------------------------------------------------- */
:root {
  /* Farben */
  --c-bg:          #f6f5f2;
  --c-surface:     #ffffff;
  --c-surface-alt: #eeede9;
  --c-dark:        #1b2333;
  --c-dark-mid:    #2c3a50;
  --c-accent:      #2e7d5e;
  --c-accent-lt:   #d4ece3;
  --c-accent-mid:  #1f6048;
  --c-muted:       #64748b;
  --c-border:      #dddbd5;
  --c-danger:      #b85c38;
  --c-warn-bg:     #fef7f3;
  --c-scope-bg:    #f0f4f8;
  --c-scope-bd:    #b0bfcf;

  /* Typografie – Systemschriften */
  --font-base: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;

  /* Schriftgrößen */
  --fs-2xs: 0.6875rem;
  --fs-xs:  0.75rem;
  --fs-sm:  0.875rem;
  --fs-md:  1rem;
  --fs-lg:  1.125rem;
  --fs-xl:  1.375rem;
  --fs-2xl: 1.75rem;
  --fs-3xl: 2.25rem;
  --fs-4xl: 3rem;

  /* Abstände */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Radien */
  --r-sm: 6px;
  --r-md: 12px;

  /* Schatten */
  --sh-sm: 0 1px 4px rgba(27,35,51,.07);
  --sh-md: 0 4px 20px rgba(27,35,51,.10);

  /* Transitions */
  --t-fast: 160ms ease;
  --t-mid:  220ms ease;

  /* Layout */
  --max-w: 1100px;
  --nav-h: 80px;
}

/* ----------------------------------------------------------
   2. Reset & Basis
   ---------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-base);
  font-size: var(--fs-md);
  line-height: 1.7;
  color: var(--c-dark);
  background-color: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
  word-break: break-word;
}

h1, h2, h3, h4, h5, h6 {
  hyphens: auto;
}

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

a {
  color: var(--c-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

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

:focus-visible {
  outline: 3px solid var(--c-accent);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* ----------------------------------------------------------
   3. Hilfsklassen & Layout
   ---------------------------------------------------------- */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

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

.text-muted  { color: var(--c-muted); }
.text-accent { color: var(--c-accent); }
.text-center { text-align: center; }
.text-xs     { font-size: var(--fs-xs); }
.text-sm     { font-size: var(--fs-sm); }

.section       { padding-block: var(--sp-24); }
.section--alt  { background-color: var(--c-surface); }
.section--greige { background-color: var(--c-surface-alt); }
.section--dark { background-color: var(--c-dark); color: #fff; }

.section-label {
  display: inline-block;
  font-size: var(--fs-2xs);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: var(--sp-4);
}

.section-heading { margin-bottom: var(--sp-4); line-height: 1.2; }

.section-intro {
  font-size: var(--fs-lg);
  color: var(--c-muted);
  max-width: 60ch;
  line-height: 1.65;
}
.text-center .section-intro {
  margin-inline: auto;
  text-align: center;
}

/* Abstand-Utilities */
.mt-2  { margin-top: var(--sp-2); }
.mt-4  { margin-top: var(--sp-4); }
.mt-6  { margin-top: var(--sp-6); }
.ml-4  { margin-left: var(--sp-4); }
.ml-6  { margin-left: var(--sp-6); }
.mt-8  { margin-top: var(--sp-8); }
.mt-10 { margin-top: var(--sp-10); }
.mt-12 { margin-top: var(--sp-12); }
.mt-16 { margin-top: var(--sp-16); }
.mb-4  { margin-bottom: var(--sp-4); }

/* ----------------------------------------------------------
   4. Typografie
   ---------------------------------------------------------- */
h1, h2, h3, h4, h5 {
  line-height: 1.22;
  font-weight: 700;
  color: var(--c-dark);
}

h1 { font-size: clamp(1.9rem, 4.5vw, var(--fs-4xl)); }
h2 { font-size: clamp(1.5rem, 3vw,   var(--fs-3xl)); }
h3 { font-size: var(--fs-2xl); }
h4 { font-size: var(--fs-xl); }
h5 { font-size: var(--fs-lg); font-weight: 600; }

/* ----------------------------------------------------------
   5. Buttons
   ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.75em 1.7em;
  font-size: var(--fs-md);
  font-weight: 600;
  font-family: var(--font-base);
  line-height: 1;
  border-radius: var(--r-sm);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background var(--t-fast),
    color var(--t-fast),
    border-color var(--t-fast);
}

.btn--primary {
  background-color: var(--c-accent);
  color: #fff;
  border-color: var(--c-accent);
}
.btn--primary:hover {
  background-color: var(--c-accent-mid);
  border-color: var(--c-accent-mid);
  color: #fff;
}

.btn--secondary {
  background-color: transparent;
  color: var(--c-dark);
  border-color: var(--c-dark);
}
.btn--secondary:hover {
  background-color: var(--c-dark);
  color: #fff;
}

.btn--ghost {
  background-color: transparent;
  color: var(--c-accent);
  border-color: var(--c-accent);
}
.btn--ghost:hover {
  background-color: var(--c-accent);
  color: #fff;
}

.btn--ghost-light {
  background-color: transparent;
  color: rgba(255,255,255,.85);
  border-color: rgba(255,255,255,.4);
}
.btn--ghost-light:hover {
  background-color: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.7);
  color: #fff;
}

.btn--lg { font-size: var(--fs-lg); padding: 0.8em 2em; }
.btn--sm { font-size: var(--fs-xs); padding: 0.55em 1.1em; }

/* Check-Item: gleichmäßige Sub-Elemente in der Checks-Gruppe */
.check-item {
  padding-block: var(--sp-4);
  border-bottom: 1px solid var(--c-border);
}

.check-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.check-item:first-child {
  padding-top: 0;
}

.check-item__title {
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--c-dark);
  margin-bottom: var(--sp-2);
}

.check-item__desc {
  font-size: var(--fs-sm);
  color: var(--c-muted);
  line-height: 1.55;
  margin-bottom: var(--sp-3);
}

/* ----------------------------------------------------------
   6. Navigation / Header
   ---------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background-color: var(--c-surface);
  border-bottom: 1px solid var(--c-border);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  box-shadow: var(--sh-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  gap: var(--sp-8);
}

#main-nav {
  margin-left: auto;
}

/* Logo */
.site-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
  min-width: 0;
}

.site-logo__img {
  height: 40px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.site-logo__tagline {
  font-size: var(--fs-2xs);
  color: var(--c-muted);
  font-weight: 400;
  white-space: nowrap;
  letter-spacing: .02em;
}

@media (max-width: 480px) {
  .site-logo__tagline {
    display: none;
  }
}

/* Desktop-Menü */
.nav-menu {
  display: flex;
  list-style: none;
  padding: 0;
  gap: var(--sp-1);
  align-items: center;
  flex-wrap: nowrap;
}

.nav-menu a {
  display: block;
  padding: 0.45em 0.85em;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--c-dark-mid);
  text-decoration: none;
  border-radius: var(--r-sm);
  white-space: nowrap;
  transition: background var(--t-fast), color var(--t-fast);
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
  background-color: var(--c-accent-lt);
  color: var(--brand-green-dk);
}

/* CTA-Bereich rechts */
.nav-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Mobile CTA-Listenpunkt – auf Desktop versteckt */
.nav-menu__cta-item {
  display: none;
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-2);
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--c-dark);
  border-radius: 2px;
  transition: transform var(--t-mid), opacity var(--t-mid);
}

/* Mobile */
@media (max-width: 899px) {
  .nav-toggle  { display: flex; margin-left: auto; }
  #main-nav    { position: absolute; top: 0; left: 0; right: 0; margin: 0; }
  .nav-actions { display: none; }

  .nav-menu {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background-color: var(--c-surface);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--c-border);
    box-shadow: var(--sh-md);
    padding: var(--sp-4) var(--sp-6) var(--sp-5);
  }

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

  .nav-menu a {
    font-size: var(--fs-md);
    padding: 0.75em 0.5em;
    border-bottom: 1px solid var(--c-border);
    border-radius: 0;
  }

  /* Letzten normalen Punkt ohne Trennlinie */
  .nav-menu li:not(.nav-menu__cta-item):last-of-type a {
    border-bottom: 1px solid var(--c-border);
  }

  /* CTA-Item im mobilen Menü sichtbar */
  .nav-menu__cta-item {
    display: list-item;
    margin-top: var(--sp-4);
  }

  .nav-menu__cta-item a {
    display: flex;
    justify-content: center;
    background-color: var(--c-accent) !important;
    color: #fff !important;
    border-radius: var(--r-sm) !important;
    border-bottom: none !important;
    padding: 0.75em 1.5em !important;
    font-weight: 600;
  }
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----------------------------------------------------------
   7. Hero-Bereich
   ---------------------------------------------------------- */
.hero {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: var(--sp-24);
  background-color: var(--c-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 70% 80% at 10% 60%, rgba(46,125,94,.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 85% 15%, rgba(255,255,255,.03) 0%, transparent 50%);
  pointer-events: none;
}

/* Zwei-Spalten-Layout: Text links, 360-Grafik rechts */
.hero__layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-12);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content {}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-accent);
  background-color: rgba(46,125,94,.15);
  border: 1px solid rgba(46,125,94,.35);
  padding: 0.35em 1em;
  border-radius: 99px;
  margin-bottom: var(--sp-6);
}

.hero h1 {
  color: #fff;
  margin-bottom: var(--sp-5);
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  line-height: 1.12;
}

.hero h1 em { font-style: normal; color: var(--c-accent); }

.hero__sub {
  font-size: var(--fs-xl);
  color: rgba(255,255,255,.72);
  max-width: 54ch;
  margin-bottom: var(--sp-10);
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-bottom: var(--sp-10);
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-6);
  padding-top: var(--sp-8);
  border-top: 1px solid rgba(255,255,255,.1);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.65);
}

.trust-item::before {
  content: '✓';
  color: var(--c-accent);
  font-weight: 700;
}

/* ----------------------------------------------------------
   7b. 360°-Grafik (CSS-only, Hero rechts)
   ---------------------------------------------------------- */
.hero__dial {
  width: 280px;
  height: 280px;
  flex-shrink: 0;
  position: relative;
}

/* Äußerer Kreis */
.dial__ring {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.1);
  position: relative;
}

/* Mittlerer Ring */
.dial__ring-inner {
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 1px solid rgba(46,125,94,.3);
}

/* Rotierender Lichtpunkt: läuft einmal beim Laden um den Ring */
.dial__sweep-wrap {
  position: absolute;
  inset: 0;
  transform-origin: 140px 140px;
  animation: dial-sweep-rotate 2.4s cubic-bezier(.45,0,.2,1) .5s 1 both;
}

.dial__sweep {
  position: absolute;
  top: -5px;
  left: 135px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff 0%, var(--c-accent) 65%, transparent 100%);
  box-shadow: 0 0 14px 4px rgba(46,125,94,.85), 0 0 5px 2px rgba(255,255,255,.9);
  opacity: 0;
  animation: dial-sweep-fade 2.4s ease .5s 1 both;
}

@keyframes dial-sweep-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes dial-sweep-fade {
  0%   { opacity: 0; }
  6%   { opacity: 1; }
  90%  { opacity: 1; }
  100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .dial__sweep-wrap,
  .dial__sweep {
    animation: none;
  }
  .dial__sweep {
    opacity: 0;
  }
}

/* Segment-Punkte: 6 gleichmäßig auf dem Ring verteilt */
.dial__items {
  position: absolute;
  inset: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}

.dial__item {
  position: absolute;
  /* Punkte werden über individuelle Klassen positioniert */
}

/* Jeder Segment-Marker besteht aus Punkt + Label */
.dial__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--c-accent);
  border: 2px solid rgba(255,255,255,.2);
}

.dial__item-label {
  position: absolute;
  font-size: 0.6rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  white-space: nowrap;
  letter-spacing: .03em;
  text-transform: uppercase;
  line-height: 1.2;
}

/* Radialer Versatz: r ≈ 120px (Mitte des Rings) */
/* Punkte bei 0°, 60°, 120°, 180°, 240°, 300° */
/* Mitte des Containers: 140px / 140px */
/* Punkt-Offset vom Mittelpunkt: 120px */

/* 1 – oben (0° = 12 Uhr) */
.dial__item--1 { top: calc(140px - 120px - 4px); left: calc(140px - 4px); }
.dial__item--1 .dial__item-label { top: -22px; left: 50%; transform: translateX(-50%); text-align: center; }

/* 2 – oben rechts (60°) */
.dial__item--2 { top: calc(140px - 60px - 4px); left: calc(140px + 104px - 4px); }
.dial__item--2 .dial__item-label { top: 50%; left: 14px; transform: translateY(-50%); }

/* 3 – unten rechts (120°) */
.dial__item--3 { top: calc(140px + 60px - 4px); left: calc(140px + 104px - 4px); }
.dial__item--3 .dial__item-label { top: 50%; left: 14px; transform: translateY(-50%); }

/* 4 – unten (180° = 6 Uhr) */
.dial__item--4 { top: calc(140px + 120px - 4px); left: calc(140px - 4px); }
.dial__item--4 .dial__item-label { top: 14px; left: 50%; transform: translateX(-50%); text-align: center; }

/* 5 – unten links (240°) */
.dial__item--5 { top: calc(140px + 60px - 4px); left: calc(140px - 104px - 4px); }
.dial__item--5 .dial__item-label { top: 50%; right: 14px; left: auto; transform: translateY(-50%); text-align: right; }

/* 6 – oben links (300°) */
.dial__item--6 { top: calc(140px - 60px - 4px); left: calc(140px - 104px - 4px); }
.dial__item--6 .dial__item-label { top: 50%; right: 14px; left: auto; transform: translateY(-50%); text-align: right; }

/* Verbindungslinien vom Zentrum zu den Punkten (als CSS-Pseudoelement) */
.dial__spoke {
  position: absolute;
  top: 140px;
  left: 140px;
  width: 120px;
  height: 1px;
  background: linear-gradient(to right, rgba(46,125,94,.5), rgba(46,125,94,.1));
  transform-origin: left center;
}

.dial__spoke--1 { transform: rotate(-90deg); }
.dial__spoke--2 { transform: rotate(-30deg); }
.dial__spoke--3 { transform: rotate(30deg); }
.dial__spoke--4 { transform: rotate(90deg); }
.dial__spoke--5 { transform: rotate(150deg); }
.dial__spoke--6 { transform: rotate(210deg); }

/* Hero-Grafik auf kleinen Screens verstecken */
@media (max-width: 960px) {
  .hero__layout {
    grid-template-columns: 1fr;
  }
  .hero__dial {
    display: none;
  }
}

/* ----------------------------------------------------------
   7c. 360°-Erklärungs-Bridge (Übergang Hero → Inhalt)
   ---------------------------------------------------------- */
/* ----------------------------------------------------------
   7c. 360°-Erklärungs-Bridge (jetzt Teil des Hero, füllt die
   restliche Höhe bei 100dvh sinnvoll statt isoliert zu wirken)
   ---------------------------------------------------------- */
.hero__bridge {
  margin-top: var(--sp-16);
  padding-top: var(--sp-10);
  border-top: 1px solid rgba(255,255,255,.12);
  position: relative;
  z-index: 1;
}

.section--bridge {
  background-color: var(--c-dark-mid);
  color: #fff;
  padding-block: var(--sp-10);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.bridge__inner {
  display: block;
  max-width: 760px;
}

/* bridge__icon wird nicht mehr verwendet, bleibt als leere Fallback-Klasse */
.bridge__icon {
  display: none;
}

.bridge__text {
  font-size: var(--fs-md);
  color: rgba(255,255,255,.7);
  line-height: 1.65;
}

.bridge__text strong {
  color: #fff;
  font-weight: 600;
}

/* ----------------------------------------------------------
   8. Seiten-Hero (Unterseiten)
   ---------------------------------------------------------- */
.page-hero {
  background-color: var(--c-dark);
  color: #fff;
  padding-block: var(--sp-16) var(--sp-12);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 100% at 5% 50%, rgba(46,125,94,.12) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.page-hero h1 { color: #fff; margin-bottom: var(--sp-4); }
.page-hero p  { color: rgba(255,255,255,.72); font-size: var(--fs-lg); max-width: 58ch; line-height: 1.6; }
.page-hero .section-label { margin-bottom: var(--sp-3); }

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

@media (max-width: 640px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ----------------------------------------------------------
   9. Karten
   ---------------------------------------------------------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-6);
}

/* Variante: 2-Spalten mit minmax 300px */
.card-grid--wide {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Fixe 2 Spalten Desktop, 1 Spalte Mobil */
.card-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 640px) {
  .card-grid--2col {
    grid-template-columns: 1fr;
  }
}

.card {
  background-color: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--sp-8);
  transition: box-shadow var(--t-mid), transform var(--t-mid);
}

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

.card__icon  { font-size: 1.8rem; margin-bottom: var(--sp-4); line-height: 1; }
.card__title { font-size: var(--fs-xl); margin-bottom: var(--sp-3); }
.card__text  { color: var(--c-muted); font-size: var(--fs-sm); line-height: 1.65; }

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--c-accent);
  text-decoration: none;
  margin-top: var(--sp-5);
}
.card__link:hover { text-decoration: underline; }
.card__link::after { content: '→'; }

/* ----------------------------------------------------------
   10. Feature-Listen (Ja/Nein in Karten)
   Ersetzt alle Inline-style-Listen
   ---------------------------------------------------------- */
.feature-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}

.feature-list__item {
  display: flex;
  align-items: flex-start;
  gap: 0.6em;
  font-size: var(--fs-sm);
}

.feature-list__item-icon {
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1em;
}

.feature-list__item-icon--yes { color: var(--c-accent); }
.feature-list__item-icon--no  { color: var(--c-danger); }

.feature-list__item--muted { color: var(--c-muted); }

/* ----------------------------------------------------------
   11. Angebots-Layout: Basis + Module
   ---------------------------------------------------------- */

/* Split-Layout: Basis-Karte links, Modul-Spalte rechts */
.basis-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: start;
}

/* Einzelne Basis-Karte ohne Split-Grid */
.basis-card-wrap {
  max-width: 680px;
}

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

/* Linke Spalte: die große Basis-Karte */
.basis-card {
  background-color: var(--c-surface);
  border: 2px solid var(--c-accent);
  border-radius: var(--r-md);
  padding: var(--sp-8);
  box-shadow: 0 0 0 4px var(--c-accent-lt);
  display: flex;
  flex-direction: column;
}

.basis-card__badge {
  display: inline-block;
  font-size: var(--fs-2xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background-color: var(--c-accent);
  color: #fff;
  padding: 0.3em 0.9em;
  border-radius: 99px;
  margin-bottom: var(--sp-4);
  align-self: flex-start;
}

.basis-card__name {
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: var(--c-dark);
  margin-bottom: var(--sp-2);
  line-height: 1.15;
}

.basis-card__price {
  font-size: var(--fs-4xl);
  font-weight: 800;
  color: var(--c-accent);
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.basis-card__price-note {
  font-size: var(--fs-xs);
  color: var(--c-muted);
  margin-bottom: var(--sp-5);
}

.basis-card__desc {
  font-size: var(--fs-sm);
  color: var(--c-muted);
  line-height: 1.65;
  margin-bottom: var(--sp-6);
}

.basis-card__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  flex: 1;
}

.basis-card__list li {
  font-size: var(--fs-sm);
  display: flex;
  align-items: flex-start;
  gap: 0.6em;
  line-height: 1.45;
}

.basis-card__list li::before {
  content: '✓';
  color: var(--c-accent);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 0.05em;
}

.basis-card .btn {
  margin-top: var(--sp-6);
  width: 100%;
  justify-content: center;
}

/* Rechte Spalte: Module */
.module-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.module-col__heading {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--c-dark);
  margin-bottom: var(--sp-2);
}

.module-col__sub {
  font-size: var(--fs-xs);
  color: var(--c-muted);
  line-height: 1.55;
  margin-bottom: var(--sp-4);
}

/* Modul-Grid für eigenständigen Modulbereich (volle Breite) */
.module-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}

/* Kompakte Liste im rechten Split-Bereich */
.module-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.module-item {
  background-color: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: var(--sp-4);
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  transition: border-color var(--t-fast);
}

.module-item:hover {
  border-color: var(--c-accent);
}

.module-item__icon {
  font-size: var(--fs-lg);
  flex-shrink: 0;
  line-height: 1;
  margin-top: 0.1em;
}

.module-item__body {}
.module-item__title { font-size: var(--fs-sm); font-weight: 700; margin-bottom: var(--sp-1); color: var(--c-dark); }
.module-item__desc  { font-size: var(--fs-xs); color: var(--c-muted); line-height: 1.5; }
.module-item__price {
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--c-accent);
  margin-top: var(--sp-2);
  padding: 0.2em 0.6em;
  background-color: var(--c-accent-lt);
  border-radius: 99px;
  display: inline-block;
}

/* Legacy-Klassen: .pkg bleibt für eventuelle andere Verwendung erhalten */
.pkg {
  background-color: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
}

.pkg--featured {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 2px var(--c-accent);
}

.pkg__badge {
  display: inline-block;
  font-size: var(--fs-2xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background-color: var(--c-accent);
  color: #fff;
  padding: 0.3em 0.9em;
  border-radius: 99px;
  margin-bottom: var(--sp-4);
  align-self: flex-start;
}

.pkg__name       { font-size: var(--fs-xl); margin-bottom: 0.3em; }
.pkg__price      { font-size: var(--fs-3xl); font-weight: 800; color: var(--c-accent); margin-bottom: var(--sp-2); line-height: 1; }
.pkg__price-note { font-size: var(--fs-xs);  color: var(--c-muted); margin-bottom: var(--sp-5); }
.pkg__desc       { font-size: var(--fs-sm);  color: var(--c-muted); margin-bottom: var(--sp-6); line-height: 1.6; }

.pkg__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  flex: 1;
}

.pkg__list li {
  font-size: var(--fs-sm);
  display: flex;
  align-items: flex-start;
  gap: 0.6em;
}

.pkg__list li::before { content: '✓'; color: var(--c-accent); font-weight: 700; flex-shrink: 0; }
.pkg__list li.pkg__item--no::before { content: '–'; color: var(--c-muted); }
.pkg__list li.pkg__item--no { color: var(--c-muted); }

.pkg .btn { margin-top: var(--sp-6); width: 100%; justify-content: center; }

/* Relaunch-Hinweis-Box */
.relaunch-hint {
  background-color: var(--c-surface);
  border: 1px solid var(--c-border);
  border-left: 4px solid var(--c-muted);
  border-radius: var(--r-sm);
  padding: var(--sp-5) var(--sp-6);
  margin-top: var(--sp-6);
}

.relaunch-hint__heading {
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--c-dark);
  margin-bottom: var(--sp-2);
}

.relaunch-hint__price {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--c-accent);
  background-color: var(--c-accent-lt);
  padding: 0.2em 0.7em;
  border-radius: 99px;
  margin-bottom: var(--sp-3);
}

.relaunch-hint__text {
  font-size: var(--fs-sm);
  color: var(--c-muted);
  line-height: 1.65;
}

/* ----------------------------------------------------------
   12. Vergleichstabelle
   ---------------------------------------------------------- */
.table-wrap { overflow-x: auto; }

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-sm);
  margin-top: var(--sp-6);
}

.compare-table th {
  background-color: var(--c-dark);
  color: #fff;
  padding: 0.9em 1.2em;
  text-align: left;
  font-size: var(--fs-sm);
}

.compare-table td {
  padding: 0.75em 1.2em;
  border-bottom: 1px solid var(--c-border);
  vertical-align: top;
}

.compare-table tr:nth-child(even) td { background-color: var(--c-surface-alt); }
.t-yes { color: var(--c-accent); font-weight: 700; }
.t-no  { color: var(--c-danger); font-weight: 700; }

/* ----------------------------------------------------------
   13. Check-Listen
   ---------------------------------------------------------- */
.check-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-4);
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7em;
  background-color: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: 0.8em 1em;
  font-size: var(--fs-sm);
}

.check-list li::before { content: '✓'; color: var(--c-accent); font-weight: 800; flex-shrink: 0; }

/* ----------------------------------------------------------
   14. Prüfbereich-Karten
   ---------------------------------------------------------- */
.pruef-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-5);
}

.pruef-card {
  background-color: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--sp-6);
}

.pruef-card__num   { font-size: var(--fs-2xs); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--c-accent); margin-bottom: var(--sp-2); }
.pruef-card__title { font-size: var(--fs-lg); font-weight: 700; margin-bottom: var(--sp-3); color: var(--c-dark); }
.pruef-card__text  { font-size: var(--fs-sm); color: var(--c-muted); line-height: 1.6; }

/* ----------------------------------------------------------
   15. Demo-Karten (Schnupper-Check)
   ---------------------------------------------------------- */
.demo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-4);
}

.demo-card {
  background-color: var(--c-surface);
  border: 1px solid var(--c-border);
  border-left: 4px solid var(--c-accent);
  border-radius: var(--r-sm);
  padding: var(--sp-5);
}

.demo-card--warn  { border-left-color: var(--c-danger); }
.demo-card--ok    { border-left-color: var(--c-accent); }

.demo-card__label   { font-size: var(--fs-2xs); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--c-muted); margin-bottom: var(--sp-2); }
.demo-card__finding { font-size: var(--fs-sm); font-weight: 700; color: var(--c-dark); margin-bottom: var(--sp-3); }
.demo-card--warn .demo-card__finding  { color: var(--c-danger); }
.demo-card--ok   .demo-card__finding  { color: var(--c-accent); }
.demo-card__note { font-size: var(--fs-xs); color: var(--c-muted); line-height: 1.6; }

/* ----------------------------------------------------------
   16. Prozess-Schritte
   ---------------------------------------------------------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--sp-5);
}

.step { text-align: center; padding: var(--sp-6); }

/* ----------------------------------------------------------
   Vertikale Timeline mit scroll-gebundenem Lichtpunkt
   (ablauf.html) – eigenständig von steps-grid/step-card
   ---------------------------------------------------------- */
.timeline {
  position: relative;
}

.timeline__line {
  position: absolute;
  left: 24px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: var(--c-border);
}

.timeline__light {
  position: absolute;
  left: 50%;
  top: 0;
  width: 14px;
  height: 14px;
  margin-left: -7px;
  margin-top: -7px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff 0%, var(--c-accent) 65%, transparent 100%);
  box-shadow: 0 0 14px 4px rgba(46,125,94,.6), 0 0 5px 2px rgba(255,255,255,.85);
  transition: top .2s ease-out;
  pointer-events: none;
}

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

.timeline__step {
  position: relative;
  padding-left: 64px;
  padding-bottom: var(--sp-12);
}

.timeline__step:last-child {
  padding-bottom: 0;
}

.timeline__marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-surface);
  border: 2px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--c-muted);
  transition: border-color .3s ease, color .3s ease, background-color .3s ease;
}

.timeline__marker.is-active {
  border-color: var(--c-accent);
  background-color: var(--c-accent);
  color: #fff;
}

.timeline__content h3 {
  margin-bottom: var(--sp-2);
}

.timeline__content p {
  color: var(--c-muted);
  margin: 0;
}

@media (max-width: 640px) {
  .timeline__line { left: 19px; }
  .timeline__marker { width: 38px; height: 38px; font-size: var(--fs-sm); }
  .timeline__step { padding-left: 52px; }
}

.step__num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--c-accent);
  color: #fff;
  font-size: var(--fs-xl);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-4);
}

.step__title { font-size: var(--fs-lg); font-weight: 700; margin-bottom: var(--sp-2); }
.step__text  { font-size: var(--fs-sm); color: var(--c-muted); }

/* ----------------------------------------------------------
   17. 360°-Gedanke (degrees-grid auf Startseite)
   ---------------------------------------------------------- */
.degrees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--sp-5);
}

.degree-item { display: flex; gap: var(--sp-4); align-items: flex-start; }

.degree-item__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--c-accent-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.degree-item__title { font-size: var(--fs-md); font-weight: 700; margin-bottom: var(--sp-1); }
.degree-item__text  { font-size: var(--fs-xs); color: var(--c-muted); line-height: 1.55; }

/* ----------------------------------------------------------
   18. Info-Boxen
   ---------------------------------------------------------- */
.notice-box {
  background-color: var(--c-accent-lt);
  border-left: 4px solid var(--c-accent);
  border-radius: var(--r-sm);
  padding: var(--sp-5) var(--sp-6);
  font-size: var(--fs-sm);
  color: var(--c-dark);
  line-height: 1.65;
}
.notice-box strong { color: var(--c-accent-mid); }

.warning-box {
  background-color: var(--c-warn-bg);
  border-left: 4px solid var(--c-danger);
  border-radius: var(--r-sm);
  padding: var(--sp-5) var(--sp-6);
  font-size: var(--fs-sm);
  color: var(--c-dark);
  line-height: 1.65;
}
.warning-box strong { color: var(--c-danger); }

.scope-box {
  background-color: var(--c-scope-bg);
  border: 1.5px solid var(--c-scope-bd);
  border-radius: var(--r-sm);
  padding: var(--sp-6) var(--sp-8);
  font-size: var(--fs-sm);
  color: var(--c-dark);
  line-height: 1.7;
}
.scope-box strong { display: block; font-size: var(--fs-md); margin-bottom: var(--sp-3); color: var(--c-dark); }

/* ----------------------------------------------------------
   19. Tags
   ---------------------------------------------------------- */
.tag-group { display: flex; flex-wrap: wrap; gap: var(--sp-3); }

.tag {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 600;
  background-color: var(--c-accent-lt);
  color: var(--c-accent);
  padding: 0.3em 0.85em;
  border-radius: 99px;
  letter-spacing: .04em;
}

/* ----------------------------------------------------------
   20. CTA-Sektion
   ---------------------------------------------------------- */
.cta-section {
  background-color: var(--c-dark);
  color: #fff;
  padding-block: var(--sp-20);
  text-align: center;
}

.cta-section h2 { color: #fff; margin-bottom: var(--sp-4); font-size: clamp(1.5rem, 3vw, var(--fs-3xl)); }

.cta-section p {
  color: rgba(255,255,255,.68);
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-8);
  max-width: 58ch;
  margin-inline: auto;
}

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

/* ----------------------------------------------------------
   21. Kontaktformular
   ---------------------------------------------------------- */
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-5);
}

.form-group { display: flex; flex-direction: column; gap: var(--sp-2); }
.form-group--full { grid-column: 1 / -1; }

.form-group label { font-size: var(--fs-sm); font-weight: 600; color: var(--c-dark); }

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-base);
  font-size: var(--fs-md);
  padding: 0.65em 0.9em;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-sm);
  background-color: var(--c-surface);
  color: var(--c-dark);
  transition: border-color var(--t-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--c-accent);
  outline: none;
}

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

/* Formular-Wrapper mit Top-Abstand */
.form-body { margin-top: var(--sp-8); }

/* Submit-Bereich */
.form-submit { margin-top: var(--sp-6); }

/* Datenschutz-Hinweis unter dem Formular */
.form-privacy { font-size: var(--fs-xs); color: var(--c-muted); margin-top: var(--sp-4); }

/* Feedback-Box (ersetzt JS-Inline-Style) */
.form-notice {
  font-size: var(--fs-sm);
  color: var(--c-dark);
  background-color: var(--c-accent-lt);
  border: 1px solid rgba(46,125,94,.25);
  border-radius: var(--r-sm);
  padding: var(--sp-4) var(--sp-5);
}

.form-feedback {
  font-size: var(--fs-sm);
  color: var(--c-dark);
  background-color: var(--c-accent-lt);
  border: 1px solid rgba(46,125,94,.25);
  border-radius: var(--r-sm);
  padding: var(--sp-4) var(--sp-5);
  margin-top: var(--sp-6);
}

/* Formular deaktiviert-Zustand */
.form--disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* Ungültige Felder */
.form-group input.is-invalid,
.form-group select.is-invalid,
.form-group textarea.is-invalid {
  border-color: var(--c-danger);
}

/* Kontakt-Box */
.contact-box {
  background-color: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--sp-8);
  max-width: 420px;
}

.contact-box h3 { margin-bottom: var(--sp-5); }

.contact-detail { display: flex; align-items: center; gap: var(--sp-3); font-size: var(--fs-sm); margin-bottom: var(--sp-3); }
.contact-detail__icon { width: 22px; text-align: center; flex-shrink: 0; }

.contact-note { font-size: var(--fs-xs); color: var(--c-muted); margin-top: var(--sp-4); }

/* ----------------------------------------------------------
   22. Über-mich: Profil-Block
   ---------------------------------------------------------- */
.profile-block {
  display: flex;
  gap: var(--sp-10);
  align-items: flex-start;
}

.profile-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background-color: var(--c-accent-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 3px solid var(--c-accent);
  overflow: hidden;
}

.profile-avatar__img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 50%;
}

/* Texte im Profil-Block */
.profile-text__intro {
  font-size: var(--fs-lg);
  line-height: 1.65;
  margin-bottom: var(--sp-5);
}

.profile-text__body {
  font-size: var(--fs-md);
  color: var(--c-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-5);
}

.profile-text__body:last-child { margin-bottom: 0; }

/* ----------------------------------------------------------
   23. Footer
   ---------------------------------------------------------- */
.site-footer {
  background-color: var(--c-dark);
  color: rgba(255,255,255,.65);
  padding-block: var(--sp-20);
  font-size: var(--fs-sm);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--sp-12);
}

.footer-logo-area {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}

.footer-logo-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 0;
  flex-shrink: 0;
}

.footer-logo-name { font-size: var(--fs-lg); font-weight: 800; color: #fff; letter-spacing: -.02em; }
.footer-logo-tag  { font-size: var(--fs-2xs); color: rgba(255,255,255,.5); }

.footer-desc { font-size: var(--fs-xs); line-height: 1.65; color: rgba(255,255,255,.45); max-width: 36ch; }

.footer-col h4 { color: #fff; font-size: var(--fs-sm); margin-bottom: var(--sp-4); }

.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: var(--sp-3); }

.footer-col ul a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  font-size: var(--fs-xs);
  transition: color var(--t-fast);
}
.footer-col ul a:hover { color: #fff; }

.footer-bottom {
  margin-top: var(--sp-12);
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: var(--fs-xs);
  color: rgba(255,255,255,.58);
  text-align: center;
}

/* ----------------------------------------------------------
   24. Impressum / Datenschutz
   ---------------------------------------------------------- */
.legal-content { max-width: none; margin-inline: 0; }
.legal-content h2 { margin-top: var(--sp-10); margin-bottom: var(--sp-3); font-size: var(--fs-xl); }
.legal-content p,
.legal-content li { font-size: var(--fs-sm); color: var(--c-muted); margin-bottom: var(--sp-3); }

.legal-placeholder {
  background-color: #fff8e1;
  border: 2px dashed #f0c040;
  border-radius: var(--r-sm);
  padding: var(--sp-5);
  margin-bottom: var(--sp-6);
  font-size: var(--fs-sm);
  color: #7a5800;
  line-height: 1.65;
}

.legal-note { font-size: var(--fs-xs); font-style: italic; color: var(--c-muted); }

/* ----------------------------------------------------------
   25. Responsive
   ---------------------------------------------------------- */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
  }
  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
  .profile-block {
    flex-direction: column;
    gap: var(--sp-6);
  }
}

@media (max-width: 768px) {
  .section { padding-block: var(--sp-20); }
  .hero    { padding-block: var(--sp-20); }
}

@media (max-width: 600px) {
  :root { --nav-h: 68px; }

  .section { padding-block: var(--sp-16); }
  .hero    { padding-block: var(--sp-16); }

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

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

  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-8); text-align: center; }
  .footer-logo-area { justify-content: center; }
  .footer-desc { max-width: none; }
  .footer-col ul { align-items: center; }
  .footer-bottom { text-align: center; }
  .compare-table { font-size: var(--fs-xs); }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .page-hero { padding-block: var(--sp-12) var(--sp-10); }
}

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

/* ----------------------------------------------------------
   28. Home-Seite spezifische Komponenten
   ---------------------------------------------------------- */

/* Preisorientierungs-Hinweis (kein vollständiges Paket-Layout) */
.price-hint {
  background-color: var(--c-surface);
  border: 1px solid var(--c-border);
  border-left: 4px solid var(--c-accent);
  border-radius: var(--r-sm);
  padding: var(--sp-6) var(--sp-8);
  max-width: 640px;
}

.price-hint__main {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--sp-3);
  margin-bottom: var(--sp-3);
}

.price-hint__label {
  font-size: var(--fs-2xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-accent);
}

.price-hint__price {
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--c-dark);
}

.price-hint__sub {
  font-size: var(--fs-sm);
  color: var(--c-muted);
  line-height: 1.6;
}

/* Warum statisch – 6er Icon-Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-5);
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
}

.why-item__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 0.1em;
}

.why-item__title {
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--c-dark);
  margin-bottom: var(--sp-1);
}

.why-item__text {
  font-size: var(--fs-sm);
  color: var(--c-muted);
  line-height: 1.6;
}

/* Über-mich-Teaser auf der Home-Seite */
.about-teaser {
  display: flex;
  gap: var(--sp-8);
  align-items: flex-start;
  max-width: 760px;
}

.about-teaser__logo {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--c-accent-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 2px solid var(--c-accent);
}

.about-teaser__logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.about-teaser__text {
  font-size: var(--fs-md);
  line-height: 1.7;
  color: var(--c-dark);
}

.about-teaser__text p {
  color: var(--c-dark);
}

@media (max-width: 600px) {
  .about-teaser {
    flex-direction: column;
    gap: var(--sp-5);
  }

  .price-hint {
    padding: var(--sp-5);
  }

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

/* ----------------------------------------------------------
   29. Leistungsübersicht – zwei Gruppen (Home)
   ---------------------------------------------------------- */
.offer-groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  align-items: start;
}

@media (max-width: 760px) {
  .offer-groups {
    grid-template-columns: 1fr;
  }
}

.offer-group {
  background-color: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
}

.offer-group__head {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-6);
  border-bottom: 1px solid var(--c-border);
  background-color: var(--c-surface-alt);
}

.offer-group__head > div {
  min-width: 0;
}

.offer-group__icon {
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.1em;
}

.offer-group__title {
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--c-dark);
  margin-bottom: var(--sp-2);
  overflow-wrap: break-word;
}

.offer-group__sub {
  font-size: var(--fs-sm);
  color: var(--c-muted);
  line-height: 1.55;
}

.offer-group__body {
  padding: var(--sp-6);
  font-size: var(--fs-sm);
  color: var(--c-dark);
  line-height: 1.65;
}

.offer-group__body strong {
  color: var(--c-dark);
}

.offer-group__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.offer-group__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6em;
  font-size: var(--fs-sm);
}

.offer-group__list li::before {
  content: '→';
  color: var(--c-accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05em;
}

.offer-group__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

@media (max-width: 440px) {
  .offer-group__ctas {
    flex-direction: column;
  }
  .offer-group__ctas .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ----------------------------------------------------------
   30. Referenz-Seite
   ---------------------------------------------------------- */

/* Referenz-Karte (Übersicht) */
.ref-card {
  background-color: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
}

.ref-card__label {
  font-size: var(--fs-2xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: var(--sp-3);
}

.ref-card__name {
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: var(--c-dark);
  margin-bottom: var(--sp-2);
}

.ref-card__type {
  font-size: var(--fs-sm);
  color: var(--c-muted);
  margin-bottom: var(--sp-6);
}

.ref-card__desc {
  font-size: var(--fs-md);
  color: var(--c-dark);
  line-height: 1.7;
  flex: 1;
  margin-bottom: var(--sp-6);
}

/* Referenz-Detail-Blöcke */
.ref-section {
  margin-top: var(--sp-12);
}

.ref-section:first-child {
  margin-top: var(--sp-8);
}

.ref-section__heading {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--c-dark);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 2px solid var(--c-accent-lt);
}

.ref-section__text {
  font-size: var(--fs-md);
  color: var(--c-dark);
  line-height: 1.7;
}

/* Umsetzungs-Grid */
.ref-impl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}

.ref-impl-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6em;
  font-size: var(--fs-sm);
  background-color: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: 0.65em 0.9em;
  line-height: 1.4;
}

.ref-impl-item::before {
  content: '✓';
  color: var(--c-accent);
  font-weight: 800;
  flex-shrink: 0;
}

/* Technik-Box */
.tech-box {
  background-color: var(--c-scope-bg);
  border: 1.5px solid var(--c-scope-bd);
  border-radius: var(--r-md);
  padding: var(--sp-6) var(--sp-8);
  margin-top: var(--sp-6);
}

.tech-box__heading {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--c-dark);
  margin-bottom: var(--sp-4);
}

.tech-box__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.tech-box__list li {
  font-size: var(--fs-sm);
  color: var(--c-dark);
  display: flex;
  align-items: flex-start;
  gap: 0.6em;
  line-height: 1.5;
}

.tech-box__list li::before {
  content: '–';
  color: var(--c-accent);
  font-weight: 700;
  flex-shrink: 0;
}

.tech-box__note {
  font-size: var(--fs-xs);
  color: var(--c-muted);
  margin-top: var(--sp-4);
  line-height: 1.6;
  border-top: 1px solid var(--c-scope-bd);
  padding-top: var(--sp-4);
}

/* Ergebnis-Box */
.result-box {
  background-color: var(--c-accent-lt);
  border-left: 4px solid var(--c-accent);
  border-radius: var(--r-sm);
  padding: var(--sp-5) var(--sp-6);
  margin-top: var(--sp-6);
}

.result-box__text {
  font-size: var(--fs-md);
  color: var(--c-dark);
  line-height: 1.7;
}

/* Referenz-Teaser auf der Home-Seite */
.ref-teaser {
  background-color: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--sp-6) var(--sp-8);
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  max-width: 660px;
}

.ref-teaser__icon {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
}

.ref-teaser__body {
  flex: 1;
  min-width: 0;
}

.ref-teaser__name {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--c-dark);
  margin-bottom: var(--sp-2);
}

.ref-teaser__desc {
  font-size: var(--fs-sm);
  color: var(--c-muted);
  line-height: 1.55;
  margin-bottom: var(--sp-4);
}

@media (max-width: 600px) {
  .ref-teaser {
    flex-direction: column;
    gap: var(--sp-4);
    align-items: flex-start;
  }
  .tech-box {
    padding: var(--sp-5);
  }
}

/* ----------------------------------------------------------
   31. Browser-Mockup für Referenzvorschau
   ---------------------------------------------------------- */
.browser-mockup {
  border-radius: var(--r-md);
  border: 1.5px solid var(--c-border);
  overflow: hidden;
  box-shadow: var(--sh-md);
  max-width: 640px;
  margin-top: var(--sp-8);
}

.browser-mockup__bar {
  background-color: var(--c-surface-alt);
  border-bottom: 1px solid var(--c-border);
  padding: var(--sp-3) var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.browser-mockup__dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.browser-mockup__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--c-border);
}

.browser-mockup__url {
  flex: 1;
  background-color: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: 0.3em 0.7em;
  font-size: var(--fs-xs);
  color: var(--c-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.browser-mockup__content {
  background-color: #111210;
  padding: var(--sp-6);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

/* Echter Screenshot im Browser-Mockup */
.browser-mockup__screenshot {
  display: block;
  line-height: 0; /* Kein Whitespace unter dem Bild */
}

.browser-mockup__screenshot img {
  width: 100%;
  height: auto;
  display: block;
}

/* Skeleton-Zeilen für die Mockup-Vorschau */
.skeleton-nav {
  display: flex;
  gap: var(--sp-3);
  align-items: center;
  margin-bottom: var(--sp-2);
}

.skeleton-logo {
  height: 16px;
  width: 100px;
  border-radius: 3px;
  background-color: rgba(255,255,255,.25);
}

.skeleton-nav-items {
  display: flex;
  gap: var(--sp-2);
  margin-left: auto;
}

.skeleton-bar {
  height: 8px;
  border-radius: 3px;
  background-color: rgba(255,255,255,.12);
}

.skeleton-bar--w-full  { width: 100%; }
.skeleton-bar--w-70    { width: 70%; }
.skeleton-bar--w-50    { width: 50%; }
.skeleton-bar--w-30    { width: 30%; }
.skeleton-bar--w-20    { width: 80px; }
.skeleton-bar--sm      { height: 5px; }
.skeleton-bar--accent  { background-color: rgba(120,180,80,.35); }
.skeleton-bar--title   { height: 18px; width: 55%; border-radius: 3px; background-color: rgba(255,255,255,.35); }

.skeleton-hero {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  padding-block: var(--sp-3);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding-bottom: var(--sp-4);
  margin-bottom: var(--sp-2);
}

.skeleton-tags {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
}

.skeleton-tag {
  height: 8px;
  width: 70px;
  border-radius: 99px;
  background-color: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
}

.skeleton-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2);
}

.skeleton-card {
  background-color: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 4px;
  padding: var(--sp-2);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.browser-mockup__caption {
  font-size: var(--fs-xs);
  color: var(--c-muted);
  text-align: center;
  padding: var(--sp-2) var(--sp-4);
  background-color: var(--c-surface-alt);
  border-top: 1px solid var(--c-border);
}

/* CTA-Bereich Abstände in Referenzseite */
.ref-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-top: var(--sp-10);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--c-border);
}

/* Lighthouse-Score Box */
.lighthouse-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-5);
}

.lighthouse-item {
  text-align: center;
  background-color: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--sp-4) var(--sp-3);
}

.lighthouse-item__score {
  font-size: var(--fs-3xl);
  font-weight: 800;
  color: var(--c-accent);
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.lighthouse-item__label {
  font-size: var(--fs-2xs);
  font-weight: 600;
  color: var(--c-muted);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.lighthouse-item--secondary {
  border-style: dashed;
  background: transparent;
  max-width: 160px;
}
.lighthouse-item__score--fraction {
  color: var(--brand-green);
  font-size: var(--fs-2xl);
}

@media (max-width: 600px) {
  .lighthouse-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ref-cta-group {
    flex-direction: column;
  }
  .ref-cta-group .btn {
    width: 100%;
    justify-content: center;
  }
  .skeleton-cards {
    grid-template-columns: 1fr;
  }
}

/* ----------------------------------------------------------
   32. Über-mich – Profil mit Foto
   ---------------------------------------------------------- */
.profile-block {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--sp-10);
  align-items: start;
}

@media (max-width: 720px) {
  .profile-block {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }
}

/* Foto-Spalte */
.profile-photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
}

.profile-photo__img {
  width: 100%;
  max-width: 220px;
  height: auto;
  border-radius: var(--r-md);
  border: 2px solid var(--c-border);
  box-shadow: var(--sh-md);
  display: block;
}

@media (max-width: 720px) {
  .profile-photo {
    align-items: flex-start;
  }
  .profile-photo__img {
    max-width: 160px;
    border-radius: var(--r-md);
  }
}

/* Text-Spalte */
.profile-text {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.profile-text p {
  font-size: var(--fs-md);
  line-height: 1.75;
  color: var(--c-dark);
}

/* Hinweis-Box mit linkem Streifen (dezent) */
.aside-hint {
  background-color: var(--c-surface);
  border-left: 3px solid var(--c-accent);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: var(--sp-4) var(--sp-5);
  font-size: var(--fs-sm);
  color: var(--c-muted);
  line-height: 1.6;
}

/* ----------------------------------------------------------
   33. Datenschutz-Checkbox im Formular
   ---------------------------------------------------------- */
.form-checkbox-group {
  margin-top: var(--sp-6);
  padding: var(--sp-4) var(--sp-5);
  background-color: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.form-checkbox-group.is-invalid {
  border-color: #c0392b;
  background-color: #fdf5f4;
}

/* Checkbox + Label in einer Zeile */
.form-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
}

.form-checkbox-row .form-checkbox {
  width: 18px;
  height: 18px;
  margin-top: 0.15em;  /* optische Ausrichtung zur ersten Textzeile */
  flex-shrink: 0;
  accent-color: var(--c-accent);
  cursor: pointer;
}

.form-checkbox-label {
  font-size: var(--fs-sm);
  line-height: 1.6;
  color: var(--c-dark);
  cursor: pointer;
  flex: 1;
  min-width: 0;
}

/* Hinweis-Zeile mit dem Modal-Link */
.form-checkbox-hint {
  padding-left: calc(18px + var(--sp-3));
  font-size: var(--fs-xs);
  color: var(--c-muted);
}

.form-checkbox-error {
  font-size: var(--fs-xs);
  color: #c0392b;
  padding-left: calc(18px + var(--sp-3));
}

/* Link-Button (Datenschutzerklärung) */
.btn-link {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--c-accent);
  text-decoration: underline;
  cursor: pointer;
  display: inline;
  line-height: inherit;
}

.btn-link:hover {
  color: var(--c-accent-dark, var(--c-accent));
  text-decoration: none;
}

.btn-link:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Hinweis unter dem Button (nicht mehr verwendet, Klasse bleibt für Fallback) */
.form-privacy-note {
  font-size: var(--fs-xs);
  color: var(--c-muted);
  margin-top: var(--sp-4);
  line-height: 1.6;
}

.form-privacy-note a {
  color: var(--c-muted);
  text-decoration: underline;
}

.form-privacy-note a:hover {
  color: var(--c-accent);
}

/* ----------------------------------------------------------
   34. Datenschutz-Modal
   ---------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, .55);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-4);
}

/* [hidden] muss display:flex überschreiben */
.modal-overlay[hidden] {
  display: none !important;
}

/* Fokus auf Overlay ermöglichen */
.modal-overlay:focus {
  outline: none;
}

.modal-box {
  background-color: var(--c-bg);
  border-radius: var(--r-md);
  box-shadow: 0 8px 40px rgba(0, 0, 0, .35);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: max-width .25s ease;
}

#datenschutz-modal.modal--full .modal-box {
  max-width: 820px;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-5) var(--sp-6);
  border-bottom: 1px solid var(--c-border);
  flex-shrink: 0;
}

.modal-heading {
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--c-dark);
  margin: 0;
}

.modal-close {
  background: none;
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  width: 36px;
  height: 36px;
  font-size: var(--fs-xl);
  line-height: 1;
  cursor: pointer;
  color: var(--c-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color var(--t-fast), color var(--t-fast);
}

.modal-close:hover {
  background-color: var(--c-surface-alt);
  color: var(--c-dark);
}

.modal-close:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 2px;
}

.modal-content {
  padding: var(--sp-6);
  overflow-y: auto;
  flex: 1;
  font-size: var(--fs-md);
  line-height: 1.7;
  color: var(--c-dark);
}

.modal-content:focus {
  outline: none;
}

.modal-content:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: -2px;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  padding: var(--sp-5) var(--sp-6);
  border-top: 1px solid var(--c-border);
  flex-shrink: 0;
  justify-content: space-between;
  align-items: center;
}

.modal-actions__link {
  font-size: var(--fs-xs);
  color: var(--brand-green);
  text-decoration: none;
}
.modal-actions__link:hover { text-decoration: underline; }

@media (max-width: 480px) {
  .modal-actions {
    flex-direction: column-reverse;
  }

  .modal-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .modal-box {
    max-height: 95vh;
  }
}

/* body-Scroll sperren wenn Modal offen */
body.modal-open {
  overflow: hidden;
}

/* ----------------------------------------------------------
   34b. Native Dialog-Element (Cal.com)
   ---------------------------------------------------------- */

#calcom-dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  max-width: 560px;
  width: calc(100% - var(--sp-8));
  max-height: 90vh;
  overflow: visible;
}

#calcom-dialog::backdrop {
  background-color: rgba(0, 0, 0, .55);
}

#calcom-dialog[open] {
  display: block;
}

#calcom-dialog .modal-box {
  background-color: var(--c-bg);
  border-radius: var(--r-md);
  box-shadow: 0 8px 40px rgba(0, 0, 0, .35);
  max-height: 90vh;
  overflow-y: auto;
}

@media (max-width: 480px) {
  #calcom-dialog {
    width: calc(100% - var(--sp-4));
    max-height: 95vh;
  }

  #calcom-dialog .modal-box {
    max-height: 95vh;
  }
}

/* ----------------------------------------------------------
   35. Formular-Status (SMTP-Vorbereitung)
   ---------------------------------------------------------- */

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

/* Status-Meldung über dem Formular */
.cf-status {
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--r-sm);
  font-size: var(--fs-sm);
  font-weight: 600;
  margin-bottom: var(--sp-4);
  line-height: 1.5;
}

.cf-status.is-success {
  background-color: var(--c-accent-lt);
  border: 1px solid var(--c-accent);
  color: var(--c-dark);
}

.cf-status.is-error {
  background-color: #fdf5f4;
  border: 1px solid #c0392b;
  color: #7b1b11;
}

/* Dauerhafte Erfolgsbox nach dem Formular */
.cf-success-box {
  padding: var(--sp-6) var(--sp-8);
  background-color: var(--c-accent-lt);
  border: 2px solid var(--c-accent);
  border-radius: var(--r-md);
  font-size: var(--fs-md);
  color: var(--c-dark);
  line-height: 1.65;
  margin-top: var(--sp-6);
}

/* Formular visuell ausblenden nach Erfolg */
.form--hidden {
  display: none;
}

/* Toast-Notification */
.cf-toast {
  position: fixed;
  bottom: var(--sp-6);
  right: var(--sp-6);
  max-width: 400px;
  padding: var(--sp-4) var(--sp-6);
  border-radius: var(--r-sm);
  font-size: var(--fs-sm);
  font-weight: 600;
  box-shadow: var(--sh-md);
  z-index: 8000;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease;
  line-height: 1.5;
}

.cf-toast--visible {
  opacity: 1;
  transform: translateY(0);
}

.cf-toast--success {
  background-color: var(--c-accent);
  color: #fff;
}

.cf-toast--error {
  background-color: #c0392b;
  color: #fff;
}

/* Inline-Fehlermeldungen unter Feldern */
.cf-field-error {
  font-size: var(--fs-xs);
  color: #c0392b;
  margin-top: var(--sp-1);
  line-height: 1.5;
}

/* Formular während Versand */
.form--sending .btn[type="submit"] {
  opacity: .7;
  cursor: wait;
}

@media (max-width: 480px) {
  .cf-toast {
    left: var(--sp-4);
    right: var(--sp-4);
    max-width: none;
    bottom: var(--sp-4);
  }
}

/* Optional-Kennzeichnung bei Formularfeldern */
.form-optional {
  font-size: var(--fs-xs);
  color: var(--c-muted);
  font-weight: 400;
}

.req {
  color: var(--brand-green);
  font-weight: 700;
}

.form-required-note {
  text-align: right;
  font-size: var(--fs-xs);
  color: var(--ink-muted);
  margin-top: var(--sp-2);
}

/* ----------------------------------------------------------
   36. myVisit360 – Footer Statistik-Einstellungen
   ---------------------------------------------------------- */
.footer-settings-row {
  text-align: center;
  margin-bottom: var(--sp-2);
}

.mv360-footer-settings-btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-size: var(--fs-xs);
  color: var(--c-muted);
  text-decoration: underline;
  cursor: pointer;
  opacity: .75;
}

.mv360-footer-settings-btn:hover {
  opacity: 1;
  color: var(--c-accent);
}

.mv360-footer-settings-btn:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ----------------------------------------------------------
   37. Erweiterungen – Karten-Grid (erweiterungen.html)
   ---------------------------------------------------------- */
.erw-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-6);
}

.erw-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--sp-6);
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  transition: box-shadow var(--t-fast);
}

.erw-card:hover {
  box-shadow: var(--sh-md);
}

.erw-card__icon {
  font-size: 1.8rem;
  line-height: 1;
  flex-shrink: 0;
  min-width: 2.4rem;
}

.erw-card__title {
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--c-dark);
  margin: 0 0 var(--sp-2);
}

.erw-card__desc {
  font-size: var(--fs-sm);
  color: var(--c-muted);
  line-height: 1.6;
  margin: 0;
}

/* Inhaltliche Erweiterungen – Listengrid */
.erw-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-5);
}

.erw-list-item {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
}

.erw-list-item__icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  min-width: 1.6rem;
  margin-top: 2px;
}

.erw-list-item strong {
  display: block;
  font-size: var(--fs-md);
  color: var(--c-dark);
  margin-bottom: var(--sp-1);
}

.erw-list-item p {
  font-size: var(--fs-sm);
  color: var(--c-muted);
  margin: 0;
  line-height: 1.55;
}

/* Back-Link in page-hero */
.btn--link-back {
  display: inline-block;
  margin-top: var(--sp-4);
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.7);
  text-decoration: underline;
}

.btn--link-back:hover {
  color: #fff;
}

/* ----------------------------------------------------------
   38. Website-Check / E-Commerce-Check – Varianten-Grid
   ---------------------------------------------------------- */
.check-variant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-5);
  margin-bottom: var(--sp-4);
}

.check-variant-card {
  background: var(--c-surface-alt);
  border: 2px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--sp-5) var(--sp-6);
}

.check-variant-card--active {
  background: var(--c-surface);
  border-color: var(--c-accent);
}

/* Explizite Farbdefinitionen – nicht vom Elternelement erben */
.check-variant-label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--c-dark);
  margin-bottom: var(--sp-2);
}

.check-variant-desc {
  font-size: var(--fs-sm);
  color: var(--c-dark-mid);
  line-height: 1.55;
  margin: 0 0 var(--sp-3);
}

.check-variant-badge {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: #1f6048;
  background: var(--c-accent-lt);
  border: 1px solid var(--c-accent);
  padding: 2px 10px;
  border-radius: 4px;
}

.check-variant-note {
  font-size: var(--fs-xs);
  color: var(--c-muted);
  margin: var(--sp-4) 0 0;
}

.section--accent-light {
  background: var(--c-bg);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

/* ----------------------------------------------------------
   39. Mockup-Platzhalter (Erweiterungs-Detailseiten)
   ---------------------------------------------------------- */
.mockup-placeholder {
  background: var(--c-surface);
  border: 2px dashed var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  min-height: 180px;
  display: flex;
  flex-direction: column;
}

.mockup-placeholder__bar {
  background: var(--c-dark);
  height: 36px;
  display: flex;
  align-items: center;
  padding: 0 var(--sp-4);
  gap: 8px;
}

.mockup-placeholder__bar::before,
.mockup-placeholder__bar::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
}

.mockup-placeholder__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--sp-8);
  text-align: center;
  gap: var(--sp-2);
}

.mockup-placeholder__label {
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--c-muted);
}

.mockup-placeholder__sub {
  font-size: var(--fs-sm);
  color: var(--c-border);
}

/* Dashboard-Mockup (Kontaktformular-Seite) */
.smtp-mockup {
  background: var(--c-surface);
  border-radius: 0 0 var(--r-md) var(--r-md);
  padding: var(--sp-8) var(--sp-8) var(--sp-6);
}
.smtp-mockup__title {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--c-dark);
  margin-bottom: var(--sp-2);
}
.smtp-mockup__note {
  font-size: var(--fs-sm);
  color: var(--c-accent);
  margin-bottom: var(--sp-6);
}
.smtp-mockup__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4) var(--sp-5);
  margin-bottom: var(--sp-6);
}
.smtp-mockup__field {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}
.smtp-mockup__label {
  font-size: var(--fs-sm);
  color: var(--c-dark);
}
.smtp-mockup__input {
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: 0.45rem 0.75rem;
  font-size: var(--fs-sm);
  color: var(--c-dark);
  background: var(--c-surface);
  pointer-events: none;
  user-select: none;
}
.smtp-mockup__input--placeholder { color: var(--c-muted); }
.smtp-mockup__btn {
  display: inline-block;
  background: var(--c-dark);
  color: #fff;
  border: none;
  border-radius: var(--r-sm);
  padding: 0.6rem 1.2rem;
  font-size: var(--fs-sm);
  font-weight: 600;
  pointer-events: none;
}
.smtp-mockup__divider {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: var(--sp-6) 0;
}
.smtp-mockup__sub-title {
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--c-dark);
  margin-bottom: var(--sp-4);
}
.smtp-mockup__sub-note {
  font-size: var(--fs-sm);
  color: var(--c-accent);
  margin: var(--sp-3) 0;
}
.smtp-mockup__back {
  display: block;
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--c-muted);
  margin-top: var(--sp-6);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--c-border);
}
@media (max-width: 700px) {
  .smtp-mockup__grid { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------
   40. Kachel-Switcher (.swt-*)
   ---------------------------------------------------------- */

/* Kachel-Grid: 4er-Raster (Erweiterungen), 3er-Raster (Checks) */
.swt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}

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

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

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

/* Kachel-Button */
.swt-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-5) var(--sp-4);
  background: var(--c-surface-alt);
  border: 2px solid var(--c-border);
  border-radius: var(--r-md);
  cursor: pointer;
  text-align: center;
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
  font-family: inherit;
  min-height: 90px;
}

.swt-tile:hover {
  border-color: var(--c-accent);
  background: var(--c-surface);
  box-shadow: 0 2px 8px rgba(46,125,94,.12);
}

.swt-tile:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 3px;
}

/* Aktiver Zustand */
.swt-tile.is-active {
  background: var(--c-surface);
  border-color: var(--c-accent);
  box-shadow: 0 2px 12px rgba(46,125,94,.18);
}

.swt-tile__icon {
  font-size: 1.6rem;
  line-height: 1;
}

.swt-tile__label {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--c-dark);
  line-height: 1.3;
}

/* Aktive Kachel: Label grün akzentuiert */
.swt-tile.is-active .swt-tile__label {
  color: var(--c-accent-mid);
}

/* Grüner Balken unten für aktive Kachel */
.swt-tile.is-active::after {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  background: var(--c-accent);
  border-radius: 2px;
  margin-top: var(--sp-1);
}

/* Panel-Wrapper */
.swt-panels {
  /* Keine extra Styles nötig – Panels sind einzeln gestaltet */
}

/* Einzelnes Panel */
.swt-panel {
  animation: swt-fadein .2s ease;
}

@keyframes swt-fadein {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}

.swt-panel__inner {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-top: 3px solid var(--c-accent);
  border-radius: 0 0 var(--r-md) var(--r-md);
  padding: var(--sp-8) var(--sp-8);
}

.swt-panel__inner h3 {
  font-size: var(--fs-xl);
  color: var(--c-dark);
  margin: 0 0 var(--sp-3);
}

.swt-panel__inner h4 {
  font-size: var(--fs-md);
  color: var(--c-dark);
  margin: 0 0 var(--sp-3);
  font-weight: 700;
}

/* Zweispaltige Darstellung im Panel (Desktop) */
.swt-panel__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
}

@media (max-width: 660px) {
  .swt-panel__cols      { grid-template-columns: 1fr; gap: var(--sp-5); }
  .swt-panel__inner     { padding: var(--sp-5) var(--sp-5); }
}

/* ----------------------------------------------------------
   Websites-Seite: kompakte Fakten & Kernbereiche (beta 1.6.5)
   ---------------------------------------------------------- */
.compact-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-5);
}

.compact-fact {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--sp-6);
  box-shadow: var(--shadow-soft);
}

.compact-fact__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--c-accent-lt);
  color: var(--c-accent-mid);
  font-weight: 800;
  font-size: var(--fs-xs);
  margin-bottom: var(--sp-4);
}

.compact-fact h3 {
  font-size: var(--fs-lg);
  color: var(--c-dark);
  margin-bottom: var(--sp-2);
}

.compact-fact p {
  font-size: var(--fs-sm);
  color: var(--c-muted);
  line-height: 1.65;
}

.core-overview {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

.core-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: .72rem 1rem;
  border: 1px solid var(--c-border);
  border-radius: 999px;
  background: var(--c-surface);
  color: var(--c-dark);
  font-size: var(--fs-sm);
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, border-color .18s ease, background-color .18s ease;
}

.core-pill::before {
  content: "✓";
  color: var(--c-accent-mid);
}

.core-pill:hover,
.core-pill:focus-visible {
  transform: translateY(-1px);
  border-color: var(--c-accent);
  background: var(--c-accent-lt);
}

.core-detail {
  scroll-margin-top: 110px;
  padding: var(--sp-8) 0;
  border-top: 1px solid var(--c-border);
}

.core-detail:first-of-type {
  border-top: 0;
}

.core-detail__heading {
  font-size: clamp(1.65rem, 2vw, 2.35rem);
  line-height: 1.15;
  color: var(--c-dark);
  margin-bottom: var(--sp-3);
}

.core-detail__intro {
  max-width: 760px;
  color: var(--c-muted);
  font-size: var(--fs-md);
  line-height: 1.7;
}

.step-card {
  position: relative;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-top: 4px solid var(--c-accent);
  border-radius: var(--r-md);
  padding: var(--sp-6);
  box-shadow: var(--shadow-soft);
}

.step-card__number {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--c-accent);
  color: #fff;
  font-weight: 800;
  font-size: var(--fs-md);
  margin-bottom: var(--sp-4);
}

.step-card h3 {
  font-size: var(--fs-lg);
  color: var(--c-dark);
  margin-bottom: var(--sp-2);
}

.step-card p {
  font-size: var(--fs-sm);
  color: var(--c-muted);
  line-height: 1.65;
}

@media (max-width: 640px) {
  .core-overview {
    flex-direction: column;
  }

  .core-pill {
    width: 100%;
    justify-content: flex-start;
  }
}

/* ----------------------------------------------------------
   37. Websites-Seite: Relaunch-CTA & Feinschliff
   ---------------------------------------------------------- */
.inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-left: 4px solid var(--c-accent);
  border-radius: var(--r-md);
  padding: var(--sp-6);
  box-shadow: var(--shadow-soft);
}

.inline-cta strong {
  display: block;
  color: var(--c-dark);
  font-size: var(--fs-md);
  margin-bottom: var(--sp-2);
}

.inline-cta p {
  margin: 0;
  color: var(--c-muted);
  font-size: var(--fs-sm);
  line-height: 1.65;
}

.inline-cta .btn {
  flex: 0 0 auto;
}


@media (max-width: 700px) {
  .inline-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .inline-cta .btn {
    width: 100%;
  }
}


/* 38. B2B-Hinweis */
.b2b-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(45, 126, 95, 0.24);
  border-radius: 999px;
  background: rgba(45, 126, 95, 0.10);
  color: var(--c-accent, #2d7e5f);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-actions .b2b-badge {
  margin-right: 0.75rem;
}

.legal-b2b-note {
  padding: 1rem 1.15rem;
  border-left: 4px solid var(--c-accent, #2d7e5f);
  border-radius: var(--radius-md, 12px);
  background: rgba(45, 126, 95, 0.10);
}

@media (max-width: 980px) {
  .nav-actions .b2b-badge {
    display: none;
  }
}


.footer-desc strong {
  color: rgba(255,255,255,.9);
  font-weight: 800;
}

/* ----------------------------------------------------------
   39. beta 1.7.1 – Nutzen-, Preis- und Erklärblöcke
   ---------------------------------------------------------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-6);
}

.value-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--sp-8);
  box-shadow: var(--sh-sm);
}

.value-card--featured {
  border-left: 4px solid var(--c-accent);
}

.value-card__icon {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--c-accent-lt);
  margin-bottom: var(--sp-4);
  font-size: 1.25rem;
}

.value-card h3 {
  font-size: var(--fs-xl);
  margin-bottom: var(--sp-3);
}

.value-card p {
  color: var(--c-muted);
  font-size: var(--fs-sm);
  line-height: 1.65;
}

.price-hint--wide {
  max-width: none;
}

/* Selbst-Check-Tool bleibt bedienbar, auch solange der Cookie-Consent-Banner
   noch nicht beantwortet ist – das Tool erfordert kein Tracking und soll
   nicht durch das volle Consent-Overlay blockiert werden. */
#selfcheck-tool {
  position: relative;
  z-index: 99999;
}

.split-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: var(--sp-8);
  align-items: start;
}

.split-copy > * {
  min-width: 0;
}

.split-copy p + p {
  margin-top: var(--sp-4);
}

.split-copy h3 {
  margin-bottom: var(--sp-3);
}

.note-box {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--sp-8);
  box-shadow: var(--sh-sm);
}

.note-box--accent {
  border-left: 4px solid var(--c-accent);
}

.note-box h3 {
  font-size: var(--fs-xl);
  margin-bottom: var(--sp-3);
}

.note-box p {
  color: var(--c-muted);
  font-size: var(--fs-sm);
  line-height: 1.65;
}

.feature-group-label {
  font-size: var(--fs-2xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin: 0;
  padding-bottom: var(--sp-3);
}

.feature-matrix {
  display: grid;
  grid-template-columns: repeat(var(--ft-cols, 4), 1fr);
  gap: var(--sp-5);
}

.feature-matrix--2 { --ft-cols: 2; }
.feature-matrix--3 { --ft-cols: 3; }
@media (max-width: 960px) {
  .feature-matrix { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .feature-matrix { grid-template-columns: 1fr; }
}

.feature-tile {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.feature-tile__kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  background: var(--c-accent-lt);
  color: var(--c-accent);
  font-size: var(--fs-xs);
  font-weight: 800;
}

.feature-tile h3 {
  font-size: var(--fs-lg);
  margin: 0;
}

.feature-tile p {
  color: var(--c-muted);
  font-size: var(--fs-sm);
  line-height: 1.6;
}

.feature-tile strong {
  color: var(--c-dark);
  font-size: var(--fs-sm);
  margin-top: auto;
}

.feature-tile__more {
  margin-top: -.25rem;
}

.feature-tile__more summary {
  list-style: none;
  cursor: pointer;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--brand-green, #0d7a57);
  display: flex;
  align-items: center;
  gap: .35rem;
}

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

.feature-tile__more summary::after {
  content: '+';
  font-weight: 400;
}

.feature-tile__more[open] summary::after {
  content: '−';
}

.feature-tile__more summary:focus-visible {
  outline: 3px solid var(--brand-green);
  outline-offset: 2px;
}

.feature-tile__more p {
  margin-top: var(--sp-3);
}

.feature-tile__list {
  padding-left: 1.1em;
  margin-top: var(--sp-2);
  font-size: var(--fs-sm);
  color: var(--c-muted);
  line-height: 1.6;
}
.feature-tile__list li + li { margin-top: .2rem; }

.feature-tile__more strong {
  color: var(--c-dark);
  font-size: var(--fs-sm);
}

.explain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-5);
}

.explain-grid article {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--sp-6);
}

.explain-grid h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-3);
}

.explain-grid p {
  color: var(--c-muted);
  font-size: var(--fs-sm);
  line-height: 1.6;
}

@media (max-width: 760px) {
  .split-copy {
    grid-template-columns: 1fr;
  }
}


/* Wert-Monitor: visuelle Paketdarstellung */

/* ---- Grundraster: mobil gestapelt, ab Desktop drei Spalten ---- */
.wm {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}

/* Callout-Spalten: innen gleicher Abstand wie das Außenraster */
.wm__col {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}

/* ---- Einzelner Callout (Button = klick- und tastaturbedienbar) ---- */
.wm__co {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  width: 100%;
  text-align: left;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--sp-4) var(--sp-5);
  font-family: var(--font-base);
  cursor: pointer;
  transition: border-color var(--t-mid), box-shadow var(--t-mid), transform var(--t-mid);
}
.wm__co:hover,
.wm__co[aria-expanded="true"] {
  border-color: var(--c-accent);
  box-shadow: var(--sh-md);
  transform: translateY(-2px);
}

.wm__co-num {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c-accent-lt);
  color: var(--c-accent-mid);
  font-size: var(--fs-sm);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wm__co[aria-expanded="true"] .wm__co-num {
  background: var(--c-accent);
  color: #fff;
}

.wm__co-body { flex: 1; min-width: 0; }

.wm__co-title {
  display: block;
  font-size: var(--fs-md);
  font-weight: 600;
  line-height: 1.3;
  color: var(--c-dark);
}
.wm__co-desc {
  display: block;
  font-size: var(--fs-sm);
  color: var(--c-muted);
  line-height: 1.5;
  margin-top: 2px;
}
/* Zusatzsatz – nur sichtbar, wenn der Callout aktiv ist */
.wm__co-detail {
  display: block;
  font-size: var(--fs-sm);
  color: var(--c-accent-mid);
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height var(--t-mid), opacity var(--t-mid), margin-top var(--t-mid);
}
.wm__co[aria-expanded="true"] .wm__co-detail {
  max-height: 80px;
  opacity: 1;
  margin-top: var(--sp-2);
}

/* ---- Monitor-Mockup (reines CSS) ---- */
.wm__monitor {
  background: var(--c-dark);
  border-radius: var(--r-md);
  padding: var(--sp-3) var(--sp-3) var(--sp-5);
  position: relative;
  box-shadow: var(--sh-md);
}
.wm__bar {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-3);
  padding-inline: var(--sp-1);
}
.wm__bar-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--c-dark-mid);
}
.wm__bar-url {
  margin-left: var(--sp-2);
  font-size: var(--fs-2xs);
  color: #8a96ad;
  background: var(--c-dark-mid);
  padding: 3px 12px;
  border-radius: 20px;
}
.wm__screen {
  background: var(--c-bg);
  border-radius: var(--r-sm);
  overflow: hidden;
}

/* Hero-Bereich im Mockup */
.wm__hero {
  background: var(--c-surface);
  padding: var(--sp-4) var(--sp-4) var(--sp-3);
  border-bottom: 1px solid var(--c-border);
}
.wm__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-3);
}
.wm__logo-mark {
  width: 14px; height: 14px;
  border-radius: var(--r-sm);
  background: var(--c-accent);
}
.wm__logo-text { font-size: var(--fs-2xs); font-weight: 700; color: var(--c-dark); }

.wm__line { display: block; border-radius: var(--r-sm); }
.wm__line--head { height: 9px; width: 62%; background: var(--c-dark); margin-bottom: var(--sp-2); }
.wm__line--sub  { height: 6px; width: 84%; background: #c9c7c0; margin-bottom: 6px; }
.wm__line--sub2 { height: 6px; width: 68%; background: #c9c7c0; margin-bottom: var(--sp-4); }
.wm__cta {
  display: block;
  height: 22px; width: 104px;
  border-radius: var(--r-sm);
  background: var(--c-accent);
}

/* Drei Karten unter dem Hero */
.wm__cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-4) var(--sp-4);
}
.wm__card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: var(--sp-2);
}
.wm__card-icon {
  display: block;
  width: 16px; height: 16px;
  border-radius: var(--r-sm);
  background: var(--c-accent-lt);
  margin-bottom: 6px;
}
.wm__card-line {
  display: block;
  height: 5px;
  border-radius: 3px;
  background: #d8d6cf;
  width: 90%;
  margin-bottom: 4px;
}
.wm__card-line--short { width: 58%; margin-bottom: 0; }

/* Monitor-Fuß (nur ab Desktop sichtbar, sonst zu verspielt auf klein) */
.wm__stand, .wm__foot { display: none; }

/* ---- Ab Tablet: zwei Spalten, Monitor oben über volle Breite ---- */
@media (min-width: 640px) {
  .wm {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-6);
  }
  .wm__monitor {
    grid-column: 1 / -1;
    order: -1;          /* Monitor zuerst, dann die Callout-Spalten */
    max-width: 540px;
    margin-inline: auto;
    width: 100%;
  }
}

/* ---- Ab Desktop: echtes Drei-Spalten-Layout mit Monitor in der Mitte ---- */
@media (min-width: 960px) {
  .wm {
    grid-template-columns: 1fr minmax(320px, 1.2fr) 1fr;
    align-items: center;
    gap: var(--sp-5);
  }
  .wm__col--left  { order: 0; }
  .wm__monitor    { order: 0; grid-column: auto; max-width: none; margin: 0; }
  .wm__col--right { order: 0; }

  /* dezenter Standfuß für den „echten Monitor"-Eindruck */
  .wm__stand {
    display: block;
    width: 14%;
    height: 18px;
    margin: 0 auto;
    background: var(--c-dark);
    border-radius: 0 0 var(--r-sm) var(--r-sm);
    opacity: .9;
  }
  .wm__foot {
    display: block;
    width: 34%;
    height: 7px;
    margin: var(--sp-1) auto 0;
    background: var(--c-dark-mid);
    border-radius: 20px;
    opacity: .55;
  }
}

/* ---- Bewegung respektieren ---- */
@media (prefers-reduced-motion: reduce) {
  .wm__co, .wm__co-detail { transition: none; }
}

/* ----------------------------------------------------------
   Skip-Link (Tastaturnavigation, WCAG 2.4.1)
   Unsichtbar bis fokussiert – dann oben links sichtbar.
   ---------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--sp-4);
  z-index: 9999;
  background: var(--dark-bg, #0d1411);
  color: var(--brand-mint, #2fd4a6);
  font-size: var(--fs-sm);
  font-weight: 700;
  text-decoration: none;
  padding: .75rem 1.5rem;
  border-radius: 0 0 var(--r-md) var(--r-md);
  transition: top .15s;
}
.skip-link:focus-visible {
  top: 0;
  outline: 3px solid var(--brand-mint, #2fd4a6);
  outline-offset: 2px;
}

/* ── Tech-Check-Kachel (.tc) ─────────────────────────────────── */
.tc-card {
  background: var(--c-surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: var(--sp-8);
  max-width: 700px;
  box-shadow: var(--sh-sm);
}

.tc-card__eyebrow {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 0;
}

.tc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: var(--sp-6);
  border-top: 1px solid var(--line);
}

.tc-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--sp-6) var(--sp-2);
  border-right: 1px solid var(--line);
}

.tc-metric:last-child { border-right: none; }

.tc-metric__val {
  display: block;
  font-size: var(--fs-3xl);
  font-weight: 800;
  color: var(--brand-green);
  line-height: 1;
  letter-spacing: -.02em;
}

.tc-metric__val--alt { font-size: var(--fs-2xl); }

.tc-metric__name {
  display: block;
  font-size: var(--fs-2xs);
  color: var(--ink-muted);
  margin-top: var(--sp-2);
  line-height: 1.35;
}

.tc-card__disclaimer {
  font-size: var(--fs-xs);
  color: var(--ink-muted);
  line-height: 1.65;
  margin-top: var(--sp-6);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--line);
}

.tc-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--sp-3);
  max-width: 700px;
}

.tc-actions .btn {
  white-space: normal;
  text-align: center;
  justify-content: center;
  font-size: var(--fs-sm);
  padding: 0.7em 1.2em;
}

.tc-note {
  font-size: var(--fs-xs);
  color: var(--ink-muted);
}

@media (max-width: 560px) {
  .tc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tc-metric {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: var(--sp-4);
  }
  .tc-metric:nth-child(even) { border-right: none; }
  .tc-metric:last-child {
    grid-column: 1 / -1;
    border-right: none;
    border-bottom: none;
  }
  .tc-card { padding: var(--sp-6) var(--sp-4); }
  .tc-metric__val { font-size: var(--fs-2xl); }
  .tc-metric__val--alt { font-size: var(--fs-xl); }
}

/* =============================================================
   RELAUNCH-TOKEN-BRIDGE  (tokens.css → style.css)
   Verbindet die neuen Design-Tokens mit bestehenden Komponenten.
   Die --c-* Variablen bleiben für alle Unterseiten erhalten.
   ============================================================= */

/* Hero: tiefes Tannengrün statt Navy */
.hero {
  background-color: var(--dark-bg, #0d1411);
}
.hero::before {
  background-image:
    radial-gradient(ellipse 70% 80% at 10% 60%, rgba(47,212,166,.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 85% 15%, rgba(255,255,255,.02) 0%, transparent 50%);
}

/* em-Hervorhebung und Eyebrow: Mint auf dunklem Grund */
.hero h1 em {
  color: var(--brand-mint, #2fd4a6);
}
.hero__eyebrow {
  color: var(--brand-mint, #2fd4a6);
  background-color: var(--brand-mint-soft, rgba(47,212,166,.16));
  border-color: rgba(47,212,166,.35);
}

/* Trust-Häkchen: Mint auf dunklem Grund (--c-accent wäre zu dunkel) */
.trust-item::before {
  color: var(--brand-mint, #2fd4a6);
}

/* Primär-Button im Hero: Mint-CTA */
.hero .btn--primary {
  background-color: var(--cta-bg, #2fd4a6);
  color: var(--cta-ink, #04130e);
  border-color: var(--cta-bg, #2fd4a6);
}
.hero .btn--primary:hover {
  filter: brightness(1.08);
  background-color: var(--cta-bg, #2fd4a6);
  border-color: var(--cta-bg, #2fd4a6);
}

/* Unterseiten-Hero, CTA-Sektion und Footer: tiefes Tannengrün */
.page-hero {
  background-color: var(--dark-bg, #0d1411);
}

/* section-label auf dunklem Grund: Mint statt dunkles Grün (Kontrast-Fix) */
.page-hero .section-label {
  color: var(--brand-mint, #2fd4a6);
  background-color: transparent;
  border: none;
}
.cta-section {
  background-color: var(--dark-bg, #0d1411);
}
.site-footer {
  background-color: var(--dark-bg, #0d1411);
}

/* Radar auf kleinen Screens verbergen (wie zuvor .hero__dial) */
@media (max-width: 960px) {
  .hero__radar {
    display: none;
  }
}

/* Feature-Tile-Nummernkreis: neue Tokens statt --c-accent-lt/--c-accent */
.feature-tile__kicker {
  background: var(--brand-mint-soft, rgba(47,212,166,.16));
  color: var(--brand-green, #0d7a57);
}

/* Hilfeklasse für Hinweiszeilen (ersetzt inline style="color:var(--c-muted)") */
.text-hint {
  color: var(--c-muted);
  font-size: var(--fs-sm);
}

/* --c-muted (#64748b) ergibt auf hellem Grund nur 4.4:1 → WCAG fail.
   --ink-muted (#4a5953) erreicht 6.8:1 auf Greige und 7.4:1 auf Weiß. */
.section-intro,
.offer-group__sub {
  color: var(--ink-muted, #4a5953);
}

/* Footer: rgba-Werte durch geprüfte Token ersetzen.
   --dark-muted (#7e948c) = 5.78:1 auf --dark-bg ✓ */
.footer-desc { color: var(--dark-muted, #7e948c); }
.footer-bottom { color: var(--dark-muted, #7e948c); }
.footer-col ul a { color: var(--dark-muted, #7e948c); }
.footer-col h3,
.footer-col h4 { color: #fff; font-size: var(--fs-sm); margin-bottom: var(--sp-4); }

/* mv360-footer-settings-btn: --c-muted + opacity:.75 auf dark = ~3.5:1 → fail.
   Überschreibt die Regel in style.css section 37. */
.mv360-footer-settings-btn {
  color: var(--dark-muted, #7e948c);
  opacity: 1;
}

/* mv360-legal-link: #777 auf weiß = 4.0:1 → fail WCAG 4.5:1.
   Höhere Spezifität (0,2,0 > 0,1,0) schlägt consent.css unabhängig von der Ladereihenfolge. */
.mv360-consent .mv360-legal-link { color: #545454; }

/* Token-Alignment: --c-accent → --brand-green auf hellen Flächen */
.section-label,
.feature-group-label {
  color: var(--brand-green, #0d7a57);
}

.value-card--featured {
  border-left-color: var(--brand-green, #0d7a57);
}

.value-card__icon {
  background: var(--brand-mint-soft, rgba(47,212,166,.16));
}

.note-box--accent {
  border-left-color: var(--brand-green, #0d7a57);
}

.step-card {
  border-top-color: var(--brand-green, #0d7a57);
}

.step-card__number {
  background: var(--brand-green, #0d7a57);
}

/* Schritt-Karten: Scroll-Offset wegen Sticky-Nav */
.step-card {
  scroll-margin-top: calc(var(--nav-h) + 16px);
}

/* Ablauf-Überschrift: Scroll-Anker für Radar-Links – genug Abstand damit
   auch das section-label darüber sichtbar ist */
#h2-ablauf {
  scroll-margin-top: calc(var(--nav-h) + 3rem);
}

#h2-verstehen {
  scroll-margin-top: calc(var(--nav-h) + 7rem);
}

/* Relaunch-Abschnitt: Anker von anderen Seiten – section-label soll sichtbar bleiben */
#h2-relaunch {
  scroll-margin-top: calc(var(--nav-h) + 4rem);
}

#calcom {
  scroll-margin-top: calc(var(--nav-h) + 2rem);
}

/* Schritt 4 (Umsetzung) = Ziel-Knoten im Radar → Bernstein-Akzent */
#schritt4 {
  border-top-color: var(--accent-amber, #e8a13c);
}
#schritt4 .step-card__number {
  background: var(--accent-amber, #e8a13c);
  color: var(--cta-ink, #04130e);
}

/* Tel-Link im Hero (dunkler Hintergrund → Mint) */
.hero__tel-line {
  margin-top: var(--space-3);
  font-size: .9rem;
}
.hero__tel-line a {
  color: var(--brand-mint);
  text-decoration: none;
  letter-spacing: .02em;
}
.hero__tel-line a:hover {
  text-decoration: underline;
}

/* ============================================================
   Quick-Contact-Widget
   Fixed bottom-right – Panel öffnet per Klick.
   Tastatur: Tab, Enter, Escape via main.js.
   ============================================================ */
.qc {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .5rem;
}

.qc__scroll-top {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--brand-green);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0,0,0,.22);
  transition: background .15s, box-shadow .15s, opacity .2s;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 600px) {
  .qc__scroll-top { display: flex; }
}

.qc__scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.qc__scroll-top:hover {
  background: var(--brand-green-dk);
  box-shadow: 0 4px 16px rgba(0,0,0,.28);
}

.qc__trigger {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: var(--brand-green);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: .65rem 1.1rem;
  font: 600 .875rem/1 var(--sans);
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0,0,0,.22);
  transition: background .15s, box-shadow .15s;
  min-height: 44px;
}

.qc__trigger:hover {
  background: var(--brand-green-dk);
  box-shadow: 0 4px 16px rgba(0,0,0,.28);
}

.qc__panel {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(0,0,0,.12);
  overflow: hidden;
  min-width: 210px;
}

.qc__panel[hidden] { display: none; }

.qc__item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1rem;
  color: var(--ink);
  text-decoration: none;
  font-size: .875rem;
  border-bottom: 1px solid var(--line);
  transition: background .1s;
  min-height: 44px;
}

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

.qc__item:last-child { border-bottom: none; }

.qc__item:hover { background: var(--bg-greige); }
.qc__item:focus-visible { background: var(--bg-greige); }

.qc__item--primary {
  color: var(--brand-green);
  font-weight: 600;
}

@media (max-width: 600px) {
  .qc {
    bottom: .875rem;
    right: .875rem;
  }
  .qc__trigger-label { display: none; }
  .qc__trigger {
    width: 48px;
    height: 48px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
  .qc__scroll-top {
    width: 48px;
    height: 48px;
    border-radius: 50%;
  }
}

/* ── Split-Tile (eine Kachel, zwei gleichwertige Hälften) ── */
.split-tile {
  display: flex;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 12px;
  overflow: hidden;
}

.split-tile__half {
  flex: 1;
  padding: 2rem 2.25rem;
}

.split-tile__divider {
  width: 1px;
  background: var(--c-border);
  flex-shrink: 0;
  margin: 1.5rem 0;
}

.split-tile__icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: .875rem;
}

.split-tile h3 {
  font-size: var(--fs-lg);
  color: var(--c-dark);
  margin-bottom: .625rem;
}

.split-tile p {
  color: var(--c-muted);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 640px) {
  .split-tile { flex-direction: column; }
  .split-tile__half { padding: 1.25rem 1.5rem; }
  .split-tile__divider { width: auto; height: 1px; margin: 0 1.5rem; }
}

/* ── FAQ ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: .625rem;
  max-width: 780px;
}

.faq-item {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 8px;
  overflow: hidden;
}

.faq-item summary {
  padding: 1.1rem 1.375rem;
  font-weight: 600;
  font-size: var(--fs-base);
  color: var(--c-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

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

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--brand-green);
  flex-shrink: 0;
  transition: transform .2s;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item summary:hover { background: var(--c-bg-subtle, #f8fafb); }
.faq-item summary:focus-visible { outline: 3px solid var(--brand-green); outline-offset: -3px; }

.faq-item p {
  padding: 0 1.375rem 1.25rem;
  color: var(--c-muted);
  line-height: 1.7;
  margin: 0;
}

/* ── Kundenpflegebereich-Sektion ── */
.kpb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.kpb-col h3 {
  font-size: var(--fs-lg);
  color: var(--c-dark);
  margin-bottom: 1rem;
}

.kpb-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: .625rem;
}

.kpb-list li {
  display: flex;
  align-items: baseline;
  gap: .625rem;
  color: var(--c-body);
  font-size: var(--fs-base);
  line-height: 1.5;
}

.kpb-list li::before {
  content: '';
  display: inline-block;
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-green);
  margin-top: .45em;
}

.kpb-note {
  font-size: .875rem;
  color: var(--c-muted);
  margin-top: .5rem;
}


/* ── Demo-Teaser (Kundenpflegebereich live testen) ── */
.demo-teaser {
  background: linear-gradient(135deg, #eff6ff 0%, #f0fdf4 100%);
  border: 1px solid #bfdbfe;
  border-radius: 12px;
  overflow: hidden;
}

.demo-teaser__body {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 2rem;
  align-items: center;
  padding: 2rem 2.5rem;
}

.demo-teaser__eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--brand-green);
  margin-bottom: .625rem;
}

.demo-teaser__title {
  font-size: var(--fs-xl);
  color: var(--c-dark);
  margin-bottom: .625rem;
}

.demo-teaser__text {
  color: var(--c-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.demo-teaser__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.demo-teaser__hint {
  font-family: monospace;
  font-size: .85rem;
  background: rgba(0,0,0,.06);
  padding: .3rem .7rem;
  border-radius: 5px;
  color: var(--c-dark);
  white-space: nowrap;
}

.demo-teaser__visual svg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
}

@media (max-width: 760px) {
  .kpb-grid { grid-template-columns: 1fr; }
  .demo-teaser__body { grid-template-columns: 1fr; padding: 1.5rem; }
  .demo-teaser__visual { display: none; }
}

/* ----------------------------------------------------------
   Projekt-Meilensteine zwischen Feature-Gruppen
   ---------------------------------------------------------- */
.project-milestone {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  margin-block: var(--sp-10);
  padding: var(--sp-4) var(--sp-6);
  background: var(--c-surface-alt);
  border-radius: var(--radius);
  border-left: 3px solid var(--c-accent-lt);
  color: var(--c-muted);
  font-size: var(--fs-sm);
  line-height: 1.6;
}

.project-milestone svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--c-accent);
}

.project-milestone p {
  margin: 0;
}

.project-milestone p strong {
  color: var(--c-dark);
  font-weight: 600;
}

.project-milestone--feedback {
  border-left-color: var(--c-accent);
  background: var(--c-accent-lt);
}

/* ----------------------------------------------------------
   Intro-Pair: Erstgespräch + Angebot nebeneinander
   ---------------------------------------------------------- */
.intro-pair {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--sp-16);
  align-items: start;
}

.intro-pair__main {
  padding-right: var(--sp-8);
  border-right: 1px solid var(--c-border);
}

.intro-pair__heading {
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--c-dark);
  line-height: 1.2;
  margin-top: var(--sp-2);
  margin-bottom: var(--sp-4);
}

.intro-pair__illustration {
  display: block;
  margin-top: var(--sp-8);
  opacity: .85;
}

@media (max-width: 760px) {
  .intro-pair {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }
  .intro-pair__main {
    padding-right: 0;
    border-right: none;
    padding-bottom: var(--sp-8);
    border-bottom: 1px solid var(--c-border);
  }
}

/* ----------------------------------------------------------
   Websites-Hero (eigenständige Angebots-Hero)
   ---------------------------------------------------------- */
.ws-hero {
  background-color: var(--dark-bg);
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.ws-hero__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(47,212,166,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47,212,166,.055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  animation: ws-grid-breathe 7s ease-in-out infinite;
}

@keyframes ws-grid-breathe {
  0%, 100% { opacity: .55; }
  50%       { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .ws-hero__grid { animation: none; opacity: .55; }
}

.ws-hero__orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.ws-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  background: var(--brand-mint);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.ws-hero__orb--1 {
  width: 520px;
  height: 520px;
  top: -120px;
  left: -160px;
  opacity: .11;
  animation: ws-orb-1 20s ease-in-out infinite;
}

.ws-hero__orb--2 {
  width: 420px;
  height: 420px;
  bottom: -100px;
  right: -120px;
  opacity: .08;
  animation: ws-orb-2 26s ease-in-out infinite;
}

.ws-hero__orb--3 {
  width: 260px;
  height: 260px;
  top: 38%;
  right: 18%;
  opacity: .05;
  background: #fff;
  animation: ws-orb-3 17s ease-in-out infinite;
}

@keyframes ws-orb-1 {
  0%,100% { transform: translate(0, 0); }
  33%      { transform: translate(70px, 50px); }
  66%      { transform: translate(-30px, 90px); }
}

@keyframes ws-orb-2 {
  0%,100% { transform: translate(0, 0); }
  33%      { transform: translate(-60px, -70px); }
  66%      { transform: translate(50px, -35px); }
}

@keyframes ws-orb-3 {
  0%,100% { transform: translate(0, 0); }
  50%      { transform: translate(-45px, 35px); }
}

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

.ws-hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ws-hero__particles span {
  position: absolute;
  bottom: -6px;
  width: var(--sz, 3px);
  height: var(--sz, 3px);
  border-radius: 50%;
  background: var(--col, var(--brand-mint));
  opacity: 0;
  animation: ws-particle-rise var(--dur, 8s) var(--delay, 0s) ease-in infinite;
}

.ws-hero__particles span:nth-child(1)  { left:  4%; --dur:  9s; --delay:  -1s;   --sz: 3px; }
.ws-hero__particles span:nth-child(2)  { left: 11%; --dur:  7s; --delay:  -4s;   --sz: 2px; --col: #fff; }
.ws-hero__particles span:nth-child(3)  { left: 18%; --dur: 11s; --delay:  -2s;   --sz: 2px; }
.ws-hero__particles span:nth-child(4)  { left: 26%; --dur:  8s; --delay:  -6s;   --sz: 4px; }
.ws-hero__particles span:nth-child(5)  { left: 33%; --dur:  6s; --delay: -0.5s;  --sz: 2px; --col: #fff; }
.ws-hero__particles span:nth-child(6)  { left: 41%; --dur: 10s; --delay:  -3s;   --sz: 3px; }
.ws-hero__particles span:nth-child(7)  { left: 49%; --dur:  7s; --delay:  -7s;   --sz: 2px; }
.ws-hero__particles span:nth-child(8)  { left: 55%; --dur: 12s; --delay: -1.5s;  --sz: 3px; --col: #fff; }
.ws-hero__particles span:nth-child(9)  { left: 62%; --dur:  8s; --delay:  -5s;   --sz: 2px; }
.ws-hero__particles span:nth-child(10) { left: 68%; --dur:  9s; --delay: -2.5s;  --sz: 4px; }
.ws-hero__particles span:nth-child(11) { left: 74%; --dur:  6s; --delay:  -8s;   --sz: 2px; --col: #fff; }
.ws-hero__particles span:nth-child(12) { left: 80%; --dur: 11s; --delay:   0s;   --sz: 3px; }
.ws-hero__particles span:nth-child(13) { left: 86%; --dur:  7s; --delay: -4.5s;  --sz: 2px; }
.ws-hero__particles span:nth-child(14) { left: 91%; --dur:  9s; --delay:  -3s;   --sz: 3px; --col: #fff; }
.ws-hero__particles span:nth-child(15) { left: 96%; --dur:  8s; --delay:  -1s;   --sz: 2px; }

@keyframes ws-particle-rise {
  0%   { transform: translateY(0)       scale(1);   opacity: 0; }
  8%   { opacity: .55; }
  70%  { opacity: .25; }
  100% { transform: translateY(-98vh)   scale(.4);  opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .ws-hero__particles span { animation: none; opacity: 0; }
}

.ws-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  padding-block: var(--sp-16);
}

.ws-hero__footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-4);
}

.ws-hero__footer .btn {
  margin-top: var(--sp-3);
}

.ws-hero__footer .btn--ghost-light {
  position: relative;
  overflow: hidden;
}

.ws-hero__footer .btn--ghost-light::after {
  content: '';
  position: absolute;
  top: -60%;
  left: -80%;
  width: 45%;
  height: 220%;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255,255,255,.28) 50%,
    transparent 65%
  );
  transform: skewX(-12deg);
  animation: ws-btn-shimmer 9s 3.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ws-btn-shimmer {
  0%    { left: -80%; }
  25%   { left: 130%; }
  100%  { left: 130%; }
}

@media (prefers-reduced-motion: reduce) {
  .ws-hero__footer .btn--ghost-light::after { animation: none; }
}

.ws-hero__label {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand-mint);
  margin-bottom: var(--sp-4);
}

.ws-hero__headline {
  font-size: clamp(1.75rem, 4vw, 2.9rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark-ink);
  max-width: 800px;
  margin: 0;
}

.ws-hero__headline span {
  display: block;
  color: var(--brand-mint);
  margin-top: .25em;
}

.ws-hero__sub {
  margin-top: var(--sp-6);
  font-size: var(--fs-lg);
  color: var(--dark-muted);
  max-width: 640px;
  line-height: 1.6;
}


.ws-hero__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .25rem .5rem;
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, .5);
}

.ws-hero__steps li + li::before {
  content: '→';
  color: var(--brand-mint);
  margin-right: .5rem;
}

@media (max-width: 640px) {
  .ws-hero__inner {
    padding-top: var(--sp-10);
    padding-bottom: var(--sp-8);
  }
  .ws-hero__steps {
    flex-direction: column;
    align-items: flex-start;
    gap: .4rem;
  }
  .ws-hero__steps li + li::before {
    content: '↓';
    margin-right: .4rem;
  }
}

/* ── Kontakt-Karten (barrierefreiheit.html) ─────────────────── */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: var(--sp-5);
  margin-top: var(--sp-8);
  max-width: 680px;
}
.contact-card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  padding: var(--sp-6) var(--sp-6);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  background: var(--bg-greige);
  color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.contact-card:hover {
  border-color: var(--brand-green);
  box-shadow: 0 2px 14px rgba(0,0,0,.06);
}
.contact-card__label {
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--brand-green);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.contact-card__value {
  font-size: var(--fs-sm);
  color: var(--ink);
  font-weight: 500;
}

/* ── Auch-interessant Querlinks ─────────────────────────────── */
.also-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-6);
  margin-top: var(--sp-8);
}

.also-item {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding: 1.5rem 1.75rem;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  text-decoration: none;
  color: var(--c-dark);
  background: var(--c-surface);
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}

.also-item:hover,
.also-item:focus-visible {
  border-color: var(--c-accent);
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  transform: translateY(-2px);
  outline: none;
}

.also-item strong {
  color: var(--c-accent);
  font-size: 1.05rem;
}

.also-item span {
  font-size: var(--fs-sm);
  color: var(--c-muted);
  line-height: 1.5;
}

/* ── Barrierefreiheits-Audit-Tabelle ───────────────────────── */
.audit-group-label {
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--brand-green);
  text-transform: uppercase;
  letter-spacing: .06em;
  border-bottom: 2px solid var(--c-border);
  padding-bottom: .5rem;
}

.audit-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--space-4);
  font-size: var(--fs-sm);
}

.audit-table th,
.audit-table td {
  padding: .65rem .75rem;
  text-align: left;
  border-bottom: 1px solid var(--c-border);
  vertical-align: top;
}

.audit-table th {
  background: var(--bg-greige);
  font-weight: 600;
  color: var(--c-text);
}

.audit-table td:first-child {
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  color: var(--c-muted);
  font-size: .8rem;
}

.audit-table td:last-child {
  text-align: center;
  white-space: nowrap;
}

.audit-pass {
  color: #0d7a57;
  font-size: 1.15rem;
  font-weight: 700;
}

.audit-fail {
  color: #c0392b;
  font-size: 1.15rem;
  font-weight: 700;
}

@media (max-width: 640px) {
  .audit-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .audit-table thead { display: none; }
  .audit-table tbody,
  .audit-table tr,
  .audit-table td { display: block; }
  .audit-table tr { padding: .75rem 0; border-bottom: 1px solid var(--c-border); }
  .audit-table td { border: none; padding: .2rem .75rem; }
  .audit-table td:first-child { font-weight: 600; padding-bottom: 0; }
  .audit-table td:last-child { text-align: left; }
}

/* Dr. DSGVO Karte */
.karte-container {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--c-border);
}

.karte-datenschutz {
  font-size: var(--fs-sm);
  color: var(--c-muted);
  line-height: 1.5;
}

.karte-datenschutz a {
  color: var(--c-accent);
  text-decoration: underline;
}

.karte-navigation {
  text-align: left;
}

.price-tag {
  font-size: 1.25rem;
}

.price-tag__note {
  font-size: var(--fs-sm);
  color: var(--c-muted);
  font-weight: 400;
}

.karte-demo-hinweis {
  display: block;
  margin-top: var(--sp-2);
  font-size: var(--fs-sm);
  color: var(--c-muted);
  font-style: italic;
}

@media (max-width: 600px) {
  #drdsgvo_map {
    height: 320px !important;
  }
}
