/* =============================================
   SMYVIA – Design System
   Referenz: paytient.com Design-Tokens
   ============================================= */

/* ── Fluid Font Size ── */
html { font-size: 18px; }
@media screen and (max-width:1440px) { html { font-size: calc(10px + 0.556vw); } }
@media screen and (max-width:991px)  { html { font-size: calc(10px + 0.808vw); } }
@media screen and (max-width:767px)  { html { font-size: calc(10px + 1.042vw); } }
@media screen and (max-width:479px)  { html { font-size: calc(10px + 1.667vw); } }

/* ── Design Tokens — Lime / Coral / Lavender Brand ── */
:root {
  --c-primary: #F4FF92;
  --c-secondary: #FF8F5A;
  --c-tertiary: #D6C9FF;
  --c-dark: #291245;
  --c-sand: #F9F8F2;
  --c-white: #FFFFFF;
  --c-ink: #291245;
  --c-ink-70: rgba(41,18,69,.70);
  --c-ink-55: rgba(41,18,69,.55);
  --c-ink-40: rgba(41,18,69,.40);
  --c-border: rgba(41,18,69,.12);
  --c-border-strong: rgba(41,18,69,.22);
  --ff-display: 'Instrument Serif', Georgia, serif;
  --ff-body: 'Switzer', 'Inter', system-ui, sans-serif;
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-pill: 100vw;
  --sh-sm: 0 2px 6px -2px rgba(41,18,69,.06);
  --sh-md: 0 8px 24px -8px rgba(41,18,69,.10);
  --sh-lg: 0 24px 48px -16px rgba(41,18,69,.14);

  /* 2026 Morphism Tokens */
  --sh-elevated: 0 1px 2px rgba(41,18,69,.06), 0 4px 12px rgba(41,18,69,.06), 0 16px 40px -8px rgba(41,18,69,.1);
  --sh-float: 0 2px 4px rgba(41,18,69,.04), 0 8px 24px rgba(41,18,69,.06), 0 32px 64px -16px rgba(41,18,69,.12);
  --sh-glow-lime: 0 0 0 1px rgba(244,255,146,.15), 0 8px 32px -4px rgba(244,255,146,.12);
  --sh-glow-coral: 0 0 0 1px rgba(255,143,90,.15), 0 8px 32px -4px rgba(255,143,90,.10);
  --sh-inner: inset 0 1px 2px rgba(41,18,69,.06);
  --glass-bg: rgba(255,255,255,.65);
  --glass-bg-dark: rgba(41,18,69,.4);
  --glass-blur: 20px;
  --glass-border: rgba(255,255,255,.25);
  --ease-spring: cubic-bezier(.22,1,.36,1);
  --ease-smooth: cubic-bezier(.4,0,.2,1);
  --dur-fast: .2s;
  --dur-md: .35s;
  --dur-slow: .5s;

  /* Typo-Skala */
  --text-display-xl: 4.5rem;
  --text-display-l:  4rem;
  --text-display-m:  3.5rem;
  --text-display-s:  3rem;
  --text-hl-xl:  2.5rem;
  --text-hl-l:   2.25rem;
  --text-hl-m:   2rem;
  --text-hl-s:   1.75rem;
  --text-hl-xs:  1.5rem;
  --text-title-l: 1.375rem;
  --text-title-m: 1.25rem;
  --text-title-s: 1.125rem;
  --text-body-l:  1rem;
  --text-body-m:  0.875rem;
  --text-body-s:  0.75rem;

  /* Spacing */
  --section-py:    clamp(4.5rem, 9vw, 7.5rem);
  --container-max: 1280px;
  --gutter:        clamp(1.25rem, 4vw, 2.5rem);

  /* ── Aliases (v2-Kompatibilität) ── */
  --primary: var(--c-dark);
  --lime: var(--c-primary);
  --cream: var(--c-sand);
  --bg: var(--c-sand);
  --light-purple: var(--c-tertiary);
  --white: var(--c-white);
  --navy: #0a044b;
  --auburn: #4e2829;
  --yellow: #ffe49b;
  --grey: #a59f96;
  --fuchsia: #b367f5;
  --success: #4e6e3a;
  --error: #8b3a3a;
  --line: var(--c-border);
  --line-strong: var(--c-border-strong);
  --font-header: var(--ff-display);
  --font-body: var(--ff-body);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── DESIGN RULE: Bilder immer 1:1 – keine CSS-Bildmanipulation ── */
/* Kein filter, mix-blend-mode oder opacity auf <img> Tags außer bei
   bewussten UI-Elementen (Icons, Avatare). Bilder werden nie eingefärbt. */
img:not([class*="icon"]):not([class*="avatar"]):not([class*="logo"]) {
  filter: none !important;
  mix-blend-mode: normal !important;
}
html {
  font-size: 18px;
  background: var(--c-sand);
  scroll-behavior: smooth;
}
@media screen and (max-width:1440px) { html { font-size: calc(10px + 0.556vw); } }
@media screen and (max-width:991px)  { html { font-size: calc(10px + 0.808vw); } }
@media screen and (max-width:767px)  { html { font-size: calc(10px + 1.042vw); } }
@media screen and (max-width:479px)  { html { font-size: calc(10px + 1.667vw); } }

body {
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: var(--text-body-l);
  line-height: 1.5;
  background: var(--c-sand);
  color: var(--c-ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,h2,h3,h4,h5,h6 { text-wrap: balance; }
a { text-decoration: none; color: inherit; }
img, video { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ── Typografie-Klassen ── */
.header-h1  { font-family: var(--ff-display); font-size: var(--text-display-xl); line-height: 1.055; font-weight: 400; }
.header-h2  { font-family: var(--ff-display); font-size: var(--text-display-l);  line-height: 1.09;  font-weight: 400; }
.header-h3  { font-family: var(--ff-display); font-size: var(--text-display-m);  line-height: 1.1;   font-weight: 400; }
.header-h4  { font-family: var(--ff-display); font-size: var(--text-display-s);  line-height: 1.125; font-weight: 400; }
.header-h5  { font-family: var(--ff-display); font-size: var(--text-hl-xl);      line-height: 1.15;  font-weight: 400; }
.header-h6  { font-family: var(--ff-display); font-size: var(--text-hl-l);       line-height: 1.16;  font-weight: 400; }
.header-mid { font-family: var(--ff-display); font-size: var(--text-hl-m);       line-height: 1.18;  font-weight: 400; }
.header-sm  { font-family: var(--ff-display); font-size: var(--text-hl-s);       line-height: 1.14;  font-weight: 400; }
.header-xs  { font-family: var(--ff-display); font-size: var(--text-hl-xs);      line-height: 1.16;  font-weight: 400; }

.title-large   { font-size: var(--text-title-l); line-height: 1.27; font-weight: 300; }
.title-medium  { font-size: var(--text-title-m); line-height: 1.30; font-weight: 300; }
.title-small   { font-size: var(--text-title-s); line-height: 1.44; font-weight: 300; }
.body-large    { font-size: var(--text-body-l);  line-height: 1.50; font-weight: 300; }
.body-medium   { font-size: var(--text-body-m);  line-height: 1.57; font-weight: 300; }
.body-small    { font-size: var(--text-body-s);  line-height: 1.57; font-weight: 300; }
.label-large   { font-size: var(--text-title-s); line-height: 1.33; font-weight: 600; letter-spacing: 0.02em; }
.label-medium  { font-size: var(--text-body-l);  line-height: 1.37; font-weight: 600; letter-spacing: 0.02em; }
.label-small   { font-size: var(--text-body-m);  line-height: 1.42; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.label-xsmall  { font-size: var(--text-body-s);  line-height: 1.50; font-weight: 600; letter-spacing: 0.1em;  text-transform: uppercase; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-body-s);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-ink-55);
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 1px;
  background: currentColor;
}

/* ── Display Typography (new) ── */
.display-xl { font-family: var(--ff-display); font-weight: 400; font-size: clamp(3rem, 7.5vw, 7rem); line-height: 1.0; letter-spacing: -0.022em; margin: 0; }
.display-xl em { font-style: italic; }
.display-l { font-family: var(--ff-display); font-weight: 400; font-size: clamp(2.5rem, 5.5vw, 4.5rem); line-height: 1.02; letter-spacing: -0.02em; margin: 0; }
.display-l em { font-style: italic; }
.display-m { font-family: var(--ff-display); font-weight: 400; font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.05; letter-spacing: -0.015em; margin: 0; }
.display-m em { font-style: italic; }
.display-s { font-family: var(--ff-display); font-weight: 400; font-size: clamp(1.5rem, 2.8vw, 2.25rem); line-height: 1.1; letter-spacing: -0.012em; margin: 0; }
.display-s em { font-style: italic; }

/* ── Badge System ── */
.badge { display:inline-flex; align-items:center; gap:.4rem; padding:.35rem .8rem; font-size:0.75rem; font-weight:600; letter-spacing:.08em; text-transform:uppercase; border-radius:var(--r-pill); background:var(--c-primary); color:var(--c-ink); border:1px solid var(--c-primary); }
.badge--lavender { background:var(--c-tertiary); border-color:var(--c-tertiary); }
.badge--coral { background:var(--c-secondary); border-color:var(--c-secondary); }
.badge--dark { background:var(--c-dark); color:var(--c-primary); border-color:var(--c-dark); }
.badge--outline { background:transparent; border-color:var(--c-border-strong); }

/* ── Layout ── */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container-wide {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-py); }

/* Section Color Themes */
.theme-sand     { background: var(--c-sand); color: var(--c-ink); }
.theme-cream    { background: var(--c-sand); color: var(--c-ink); }
.theme-grey     { background: var(--c-sand); color: var(--c-ink); }
.theme-dark     { background: var(--c-dark); color: var(--c-white); }
.theme-lime     { background: var(--c-primary); color: var(--c-ink); }
.theme-lavender { background: var(--c-tertiary); color: var(--c-ink); }
.theme-coral    { background: var(--c-secondary); color: var(--c-ink); }

/* ── Buttons — New Brand System ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .65rem 1.35rem;
  border-radius: var(--r-pill);
  font-family: var(--ff-body);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2;
  border: 1px solid var(--c-dark);
  background: var(--c-dark);
  color: var(--c-white);
  transition: opacity .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { opacity: .82; }

.btn--lime {
  background: var(--c-primary);
  color: var(--c-ink);
  border-color: var(--c-primary);
}
.btn--lime:hover {
  opacity: .88;
}

.btn--ghost {
  background: transparent;
  color: var(--c-ink);
  border-color: var(--c-border-strong);
}
.btn--ghost:hover {
  background: var(--c-ink);
  color: var(--c-white);
  border-color: var(--c-ink);
  opacity: 1;
}

.btn--on-dark {
  background: var(--c-primary);
  color: var(--c-ink);
  border-color: var(--c-primary);
}
.btn--on-dark:hover { opacity: .88; }

.btn--on-dark-ghost {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255,255,255,.35);
}
.btn--on-dark-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.6);
  opacity: 1;
}

.btn--sm { padding: .5rem 1rem; font-size: 0.8125rem; }
.btn--lg { padding: .8rem 1.75rem; font-size: .9375rem; }

.btn-outline { background:transparent; color:var(--c-dark); border-color:var(--c-border-strong); }
.btn-outline:hover { background:var(--c-dark); color:var(--c-white); }
.btn-white { background:var(--c-white); color:var(--c-dark); border-color:var(--c-white); }
.btn-white:hover { background:var(--c-sand); border-color:var(--c-sand); }
.btn-outline-white { background:transparent; color:var(--c-white); border-color:rgba(255,255,255,.35); }
.btn-outline-white:hover { border-color:var(--c-white); background:rgba(255,255,255,0.08); }

/* Button Arrow */
.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: var(--text-body-l);
  color: var(--c-ink);
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
}
.btn-arrow::after { content: '→'; transition: transform 0.2s; }
.btn-arrow:hover::after { transform: translateX(4px); }
.btn-arrow::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.btn-group { display:flex; flex-wrap:wrap; gap:1rem; align-items:center; }


/* ═══════════════════════════════════════════════════════════════
   NAV — Smyvia (clean, edles Paytient-Feeling)
   ═══════════════════════════════════════════════════════════════ */

.nav_component {
  background: var(--c-sand);
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.nav_component.nav--scrolled {
  background: rgba(249, 248, 242, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--c-border);
  box-shadow: 0 2px 20px rgba(26, 16, 48, 0.06);
}

.nav_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--gutter);
  height: 4.5rem;
  gap: 1rem;
}

/* ── Logo ── */
.nav_logo_link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.nav_logo_img {
  height: 1.5rem;
  width: auto;
}

/* ── Menu ── */
.nav_menu {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 0;
}

.nav_links_list {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: center;
}

/* Einfacher Link */
.nav_link {
  font-size: var(--text-body-l);
  font-weight: 300;
  color: var(--c-ink);
  padding: 1.5rem 1rem;
  text-decoration: none;
  display: block;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.nav_link:hover { opacity: 0.55; }

/* ── Dropdown Container ── */
.nav_dropdown { position: relative; }

/* Toggle-Button (Paytient-Stil: kein Button-Look, reiner Text + Chevron) */
.nav_dropdown_toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: var(--text-body-l);
  font-weight: 300;
  color: var(--c-ink);
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.5rem 1rem;
  white-space: nowrap;
  transition: opacity 0.2s;
  font-family: var(--ff-body);
}
.nav_dropdown_toggle:hover { opacity: 0.55; }

.nav_chevron {
  transition: transform 0.22s ease;
  opacity: 0.5;
  flex-shrink: 0;
}
.nav_chevron.is-rotated { transform: rotate(180deg); }

/* ── Dropdown Panel ── */
.nav_dropdown_panel {
  position: absolute;
  top: calc(100% + 0);
  left: 0;
  background: var(--c-sand);
  border: 1px solid var(--c-dark);
  border-top: none;
  z-index: 300;
  padding: 1.5rem;
}
.nav_dropdown_panel--wide   { width: 680px; left: 0; }
.nav_dropdown_panel--medium { width: 320px; }
.nav_dropdown_panel--small  { width: 260px; }
.nav_dropdown_panel--login  { width: 280px; right: 0; left: auto; }

/* Grid für Behandlungen (3-spaltig) */
.nav_dd_grid {
  display: grid;
  grid-template-columns: 1fr 1fr 200px;
  gap: 1.5rem;
}
.nav_dd_col { display: flex; flex-direction: column; }
.nav_dd_col--action { gap: 0.75rem; }

/* Spalten-Heading */
.nav_dd_heading {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-ink-55);
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--c-border);
  margin-bottom: 0.25rem;
}

/* Dropdown-Links — Paytient-Stil: Titel + Unterzeile, kein Icon */
.nav_dd_link {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.55rem 0.5rem;
  border-radius: 0;
  text-decoration: none;
  transition: background 0.14s;
  position: relative;
}
.nav_dd_link:hover { background: rgba(41,18,69,0.04); }

.nav_dd_link strong {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-dark);
  line-height: 1.35;
  display: block;
  position: relative;
}

/* Underline-Effekt beim Hover (Paytient-Markenzeichen) */
.nav_dd_link strong::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: var(--c-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}
.nav_dd_link:hover strong::after { transform: scaleX(1); }

.nav_dd_link em {
  font-style: normal;
  font-size: 0.75rem;
  color: var(--c-ink-55);
  line-height: 1.4;
  display: block;
}

/* Login-Link Variante (mit kleiner Icon-Box) */
.nav_dd_link--login {
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}
.nav_dd_login_icon {
  width: 34px;
  height: 34px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.nav_dd_login_icon--patient { background: var(--c-tertiary); }
.nav_dd_login_icon--clinic  { background: var(--c-sand); }

/* CTA-Karte in Behandlungen-Dropdown */
.nav_dd_cta_card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem;
  background: rgba(41,18,69,0.04);
  border-radius: 0;
  text-decoration: none;
  transition: background 0.14s;
}
.nav_dd_cta_card:hover { background: rgba(41,18,69,0.08); }
.nav_dd_cta_card strong {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-dark);
  display: block;
  line-height: 1.3;
}
.nav_dd_cta_card em {
  font-style: normal;
  font-size: 0.72rem;
  color: var(--c-ink-55);
  display: block;
  margin-top: 2px;
}

/* „Alle Behandlungen →" */
.nav_dd_all_link {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-dark);
  padding: 0.6rem 0.5rem;
  border-top: 1px solid var(--c-border);
  margin-top: 0.5rem;
  padding-top: 0.85rem;
  text-decoration: none;
  transition: opacity 0.18s;
}
.nav_dd_all_link:hover { opacity: 0.55; }

/* ── Login Button ── */
.nav_login_btn {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--c-ink);
  background: none;
  border: 1px solid var(--c-border-strong);
  cursor: pointer;
  padding: 0.55rem 0.9rem;
  border-radius: var(--r-pill);
  transition: opacity 0.18s, border-color 0.18s;
  white-space: nowrap;
  font-family: var(--ff-body);
}
.nav_login_btn:hover { opacity: 0.65; }

/* ── Nav Actions (rechts) ── */
.nav_actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* CTA-Button */
.nav_cta_btn {
  flex: none;
}

/* ── Burger ── */
.nav_burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav_burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--c-dark);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.nav_burger.is-active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav_burger.is-active span:nth-child(2) { opacity: 0; }
.nav_burger.is-active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Mobile Drawer ── */
.nav_mobile_drawer {
  display: flex;
  flex-direction: column;
  padding: 1rem 2rem 2rem;
  border-top: 1px solid var(--c-border);
  background: var(--c-sand);
}
.nav_mobile_link {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--c-border);
  font-size: var(--text-title-s);
  font-weight: 300;
  color: var(--c-ink);
  text-decoration: none;
  display: block;
}
.nav_mobile_sub {
  font-size: 0.85rem !important;
  color: var(--c-ink-55) !important;
  padding-left: 1.25rem !important;
}
.nav_mobile_divider {
  height: 1px;
  background: var(--c-border);
  margin: 0.5rem 0;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .nav_menu  { display: none; }
  .nav_burger { display: flex; }
  .nav_component { padding: 0 1.25rem; }
}

[x-cloak] { display: none !important; }

/* ── Topbar ── */
.smyvia-topbar {
  background: var(--c-dark);
  color: rgba(255,255,255,0.7);
  font-size: var(--text-body-s);
  font-weight: 400;
  letter-spacing: 0.02em;
  padding: 0.5rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.smyvia-topbar a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.smyvia-topbar a:hover { color: var(--c-white); }
.topbar-links { display: flex; gap: 1.5rem; align-items: center; }
.topbar-phone { font-weight: 600; color: var(--c-white) !important; }

/* ── Navbar ── */
/* old nav removed — see nav_component above */

/* ============================================
   SMY-HERO – Paytient-Style Split Hero
   ============================================ */

.smy-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100dvh - 4.5rem);
  max-height: 56rem;
  background: linear-gradient(135deg, var(--c-dark) 0%, #3a1d5e 50%, #4a2670 100%);
  overflow: hidden;
  position: relative;
}

/* ── Left: Content ── */
.smy-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 3rem 5rem 5rem;
  gap: 0;
  z-index: 2;
  position: relative;
}

.smy-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-body-s);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}
.smy-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-primary);
  flex-shrink: 0;
  animation: smy-pulse 2s ease-in-out infinite;
}
@keyframes smy-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}

.smy-hero__title {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  line-height: 1.08;
  font-weight: 400;
  color: #fff;
  margin: 0 0 1.5rem;
  text-wrap: balance;
}

.smy-hero__lead {
  font-size: var(--text-title-s);
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  margin: 0 0 2.5rem;
  max-width: 420px;
}

.smy-hero__actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* Buttons */
.smy-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 999px;
  font-size: var(--text-title-s);
  font-weight: 500;
  font-family: var(--ff-body);
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
  cursor: pointer;
}
.smy-btn--primary {
  background: #fff;
  color: var(--c-dark);
  border: 1px solid rgba(255,255,255,0.15);
}
.smy-btn--primary:hover {
  background: var(--c-tertiary);
  color: var(--c-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(41,18,69,0.3);
}
.smy-btn--ghost {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
}
.smy-btn--ghost:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

/* Trust items */
.smy-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.smy-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--text-body-s);
  color: rgba(255,255,255,0.45);
}
.smy-trust-item svg { color: var(--c-primary); flex-shrink: 0; }

/* ── Right: Visual ── */
.smy-hero__visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
  padding-bottom: 0;
}

/* Glow Blob */
.smy-hero__glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,0.35) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

/* Phone Mockup */
.smy-hero__phone-wrap {
  position: relative;
  z-index: 2;
  width: 280px;
  flex-shrink: 0;
  margin-bottom: 0;
  /* Leicht nach oben herausragen */
  margin-top: 4rem;
  filter: drop-shadow(0 32px 64px rgba(0,0,0,0.5));
}
.smy-hero__phone {
  width: 100%;
  height: auto;
  display: block;
}

/* Floating Cards */
.smy-hero__float {
  position: absolute;
  z-index: 4;
}
.smy-hero__float--card {
  top: 25%;
  right: -24px;
}
.smy-hero__float--stat {
  bottom: 22%;
  left: -32px;
}

.smy-float-card {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border-radius: 12px;
  padding: 0.875rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  white-space: nowrap;
  animation: smy-float 3s ease-in-out infinite;
}
@keyframes smy-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-6px); }
}
.smy-float-card__icon { font-size: 1.5rem; }
.smy-float-card__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.smy-float-card__text strong {
  font-size: var(--text-body-m);
  font-weight: 600;
  color: var(--c-dark);
  font-family: var(--ff-body);
}
.smy-float-card__text span {
  font-size: var(--text-body-s);
  color: var(--c-ink-55);
}
.smy-float-card__badge {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #22c55e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.smy-float-stat {
  background: rgba(41,18,69,0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 0.75rem 1.25rem;
  animation: smy-float 3.5s ease-in-out infinite reverse;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.smy-float-stat__num {
  font-size: var(--text-title-l);
  font-weight: 700;
  color: #fff;
  font-family: var(--ff-display);
}
.smy-float-stat__label {
  font-size: var(--text-body-s);
  color: rgba(255,255,255,0.5);
}

/* Credit card floating */
.smy-hero__credit-card-wrap {
  position: absolute;
  right: -40px;
  bottom: 15%;
  z-index: 3;
  transform: rotate(12deg);
  filter: drop-shadow(0 16px 48px rgba(0,0,0,0.4));
  animation: smy-float 4s ease-in-out infinite;
}
.smy-hero__credit-card {
  width: 180px;
  height: auto;
  display: block;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .smy-hero__content { padding: 4rem 2rem 4rem 3rem; }
  .smy-hero__phone-wrap { width: 240px; }
  .smy-hero__credit-card { width: 150px; }
}

@media (max-width: 800px) {
  .smy-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    max-height: none;
  }
  .smy-hero__content {
    padding: 4rem 1.5rem 2rem;
    align-items: center;
    text-align: center;
  }
  .smy-hero__eyebrow { justify-content: center; }
  .smy-hero__lead { max-width: 100%; }
  .smy-hero__actions { justify-content: center; }
  .smy-hero__trust { justify-content: center; }
  .smy-hero__visual {
    padding: 2rem 1.5rem 3rem;
    min-height: 320px;
  }
  .smy-hero__phone-wrap { width: 200px; margin-top: 0; }
  .smy-hero__credit-card-wrap { right: 0; bottom: 10%; }
  .smy-hero__credit-card { width: 120px; }
}

@media (max-width: 480px) {
  .smy-hero__title { font-size: 2.25rem; }
  .smy-hero__visual { display: none; }
}


/* ═══════════════════════════════════════
   VIDEO HERO (Fullscreen)
   ═══════════════════════════════════════ */
.smy-hero--video {
  position: relative;
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
}
.smy-hero--video .smy-hero__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.smy-hero--video .smy-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0.05) 100%);
  z-index: 1;
}
.smy-hero--video .smy-hero__content {
  position: relative;
  z-index: 2;
  color: white;
  padding: clamp(2rem, 6vw, 5rem) var(--gutter);
  padding-left: clamp(1.5rem, 6vw, 5rem);
}
.smy-hero--video .smy-hero__eyebrow { color: rgba(255,255,255,0.72); }
.smy-hero--video .smy-hero__title   { color: #ffffff; }
.smy-hero--video .smy-hero__lead    { color: rgba(255,255,255,0.85); }
.smy-hero--video .smy-trust-item    { color: rgba(255,255,255,0.72); }
.smy-hero--video .smy-trust-item svg { stroke: rgba(255,255,255,0.55); }
.smy-hero--video .smy-hero__visual-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 1.25rem;
  padding: 2rem clamp(1.5rem, 4vw, 3rem) 2rem 2rem;
}
.smy-hero--video .smy-float-card,
.smy-hero--video .smy-float-stat {
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.22);
  color: white;
}
.smy-hero--video .smy-float-card strong,
.smy-hero--video .smy-float-stat .smy-float-stat__num { color: white; }
.smy-hero--video .smy-float-card span,
.smy-hero--video .smy-float-stat .smy-float-stat__label { color: rgba(255,255,255,0.75); }

/* ═══════════════════════════════════════
   VIDEO STRIP
   ═══════════════════════════════════════ */
.smy-video-strip {
  background: var(--c-dark);
  color: white;
  padding: var(--section-py) 0;
}
.smy-video-strip .smy-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.smy-video-strip__headline {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  text-align: center;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.smy-video-strip__lead {
  text-align: center;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
  font-weight: 300;
}
.smy-video-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.smy-video-strip__item {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}
.smy-video-strip__item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.smy-video-strip__item:hover video {
  transform: scale(1.03);
}

@media (max-width: 767px) {
  .smy-hero--video {
    grid-template-columns: 1fr;
    min-height: 88vh;
  }
  .smy-hero--video .smy-hero__visual-overlay { display: none; }
  .smy-video-strip__grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

/* =============================================
   HERO — Paytient 1:1  (.smy-hpt)
   ============================================= */

/* Wrapper */
.smy-hpt {
  background: #F9F8F2;
  overflow: hidden;
}

/* Split: Text links, Foto rechts */
.smy-hpt__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: calc(100dvh - 5rem);
  max-height: 56rem;
}

/* ── Links: Text ── */
.smy-hpt__left {
  padding: 6rem 3rem 6rem clamp(2rem, 6vw, 6rem);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.smy-hpt__title {
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  line-height: 1.06;
  font-weight: 400;
  color: #291245;
  margin: 0 0 1.25rem;
  text-wrap: balance;
}

.smy-hpt__lead {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(41,18,69,.70);
  margin: 0 0 2.25rem;
  max-width: 32rem;
}

.smy-hpt__cta {
  display: inline-flex;
  align-items: center;
  background: #291245;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  border-radius: 100px;
  text-decoration: none;
  align-self: flex-start;
  transition: background 0.2s, transform 0.15s;
}
.smy-hpt__cta:hover { background: var(--c-primary); color: var(--c-ink); transform: translateY(-1px); }

/* ── Rechts: Foto mit Rahmen ── */
.smy-hpt__right {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.smy-hpt__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Weißer Rahmen über dem Bild (Picture-in-Picture) */
.smy-hpt__frame {
  position: absolute;
  top: 7%;
  left: 6%;
  right: 5%;
  bottom: 10%;
  border: 14px solid rgba(255,255,255,0.82);
  border-radius: 1.5rem;
  pointer-events: none;
  box-shadow: 0 8px 40px rgba(41,18,69,0.1);
}

/* ── Bottom: 4 farbige Blocks ── */
.smy-hpt__blocks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.smy-hpt__block {
  padding: 2rem 1.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-decoration: none;
  color: #291245;
  transition: filter 0.18s;
}
.smy-hpt__block:hover { filter: brightness(0.95); }

.smy-hpt__block--lavender { background: var(--c-tertiary); }
.smy-hpt__block--dark     { background: var(--c-dark); color: #fff; }
.smy-hpt__block--taupe    { background: var(--c-sand); }
.smy-hpt__block--yellow   { background: var(--c-primary); }

.smy-hpt__block-label {
  font-size: 0.68rem;
  font-weight: 600;
  opacity: 0.6;
  display: block;
}

.smy-hpt__block-title {
  font-family: var(--ff-display);
  font-size: clamp(1.05rem, 1.5vw, 1.4rem);
  font-weight: 400;
  line-height: 1.2;
  flex: 1;
  display: block;
  margin-top: 0.25rem;
}

.smy-hpt__block-link {
  font-size: 0.78rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-top: 1rem;
  display: block;
  opacity: 0.75;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .smy-hpt__inner {
    grid-template-columns: 1fr;
    min-height: unset;
    max-height: unset;
  }
  .smy-hpt__left {
    padding: 3rem 1.5rem 2rem;
    text-align: center;
    align-items: center;
  }
  .smy-hpt__right {
    height: 60vw;
    min-height: 280px;
    max-height: 440px;
  }
  .smy-hpt__blocks { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  .smy-hpt__blocks { grid-template-columns: 1fr; }
}


/* =============================================
   STARTSEITE – Sektions-CSS
   ============================================= */

/* ── Metrics / Trust Numbers ── */
.section-metrics {
  background: var(--c-dark);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.section-metrics .metrics-bg {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  pointer-events: none;
}
.section-metrics .metrics-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.metrics-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.metric-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
}
.metric-number {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--c-white);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.metric-label {
  font-size: var(--text-body-m);
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}
.metric-divider {
  width: 1px;
  height: 3rem;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .metric-divider { display: none; }
  .metrics-wrap { justify-content: center; gap: 2.5rem; }
  .metric-item { min-width: 130px; }
}

/* ── Audience Section (Tabs) ── */
.section-audience {
  padding: var(--section-py) 0;
  background: var(--c-sand);
}
.audience-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}
.tab-nav {
  display: flex;
  gap: 0;
  border: 1.5px solid var(--c-dark);
  width: fit-content;
  margin: 0 auto 3rem;
  border-radius: var(--r-pill);
  overflow: hidden;
}
.tab-btn {
  padding: 0.65rem 1.75rem;
  font-size: var(--text-body-l);
  font-weight: 500;
  font-family: var(--ff-body);
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--c-ink-70);
  transition: background 0.2s, color 0.2s;
}
.tab-btn.is-active {
  background: var(--c-dark);
  color: var(--c-white);
}
.tab-panel {
  display: none;
}
.tab-panel.is-active {
  display: grid;
}
.audience-grid {
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.audience-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.audience-benefit {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.benefit-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--c-tertiary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-dark);
}
.benefit-icon svg {
  width: 1.1rem;
  height: 1.1rem;
}
.benefit-text h4 {
  font-size: var(--text-title-s);
  font-weight: 600;
  color: var(--c-dark);
  margin-bottom: 0.25rem;
}
.benefit-text p {
  font-size: var(--text-body-m);
  color: var(--c-ink-70);
  line-height: 1.65;
}
.audience-img {
  height: 520px;
  overflow: hidden;
}
@media (max-width: 960px) {
  .audience-grid { grid-template-columns: 1fr; gap: 2rem; }
  .audience-img { height: 300px; }
}

/* ── Process Section ── */
.section-process {
  padding: var(--section-py) 0;
  background: var(--c-sand);
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.process-step {
  position: relative;
  padding: 2rem 1.5rem 1.5rem;
  background: var(--c-white);
  border: 1px solid var(--c-border);
}
.process-step::after {
  content: '→';
  position: absolute;
  top: 2rem;
  right: -1rem;
  font-size: 1.5rem;
  color: var(--c-ink-55);
  z-index: 1;
}
.process-step:last-child::after { display: none; }
.step-number {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  color: var(--c-tertiary);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 1rem;
}
.step-title {
  font-size: var(--text-title-s);
  font-weight: 600;
  color: var(--c-dark);
  margin-bottom: 0.5rem;
}
.step-desc {
  font-size: var(--text-body-m);
  color: var(--c-ink-70);
  line-height: 1.65;
}
@media (max-width: 960px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step::after { display: none; }
}
@media (max-width: 540px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ── Testimonial Section ── */
.section-testimonial {
  padding: var(--section-py) 0;
  background: var(--c-sand);
}
.testimonial-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.testimonial-quote {
  font-family: var(--ff-display);
  font-size: var(--text-hl-s);
  font-weight: 400;
  color: var(--c-dark);
  line-height: 1.4;
  font-style: normal;
  margin: 1.5rem 0 2rem;
  position: relative;
  padding-left: 1.5rem;
  border-left: 3px solid var(--c-dark);
}
.testimonial-person {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.testimonial-avatar img {
  width: 100%; height: 100%; object-fit: cover;
}
.testimonial-name {
  font-weight: 600;
  font-size: var(--text-body-l);
  color: var(--c-dark);
}
.testimonial-role {
  font-size: var(--text-body-m);
  color: var(--c-ink-55);
}
.testimonial-img {
  height: 540px;
  overflow: hidden;
}
.testimonial-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.trust-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-body-m);
  font-weight: 500;
  color: var(--c-ink-70);
}
.trust-badge-icon {
  width: 1rem;
  height: 1rem;
  color: var(--c-dark);
  flex-shrink: 0;
}
@media (max-width: 960px) {
  .testimonial-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .testimonial-img { height: 300px; }
}

/* ── CTA Section ── */
.section-cta {
  background: var(--c-dark);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}
.section-cta .cta-bg {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  pointer-events: none;
}
.section-cta .cta-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.cta-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-content .eyebrow { color: var(--c-ink-55); }
.cta-heading {
  font-family: var(--ff-display);
  font-size: var(--text-display-s);
  color: var(--c-white);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.cta-sub {
  font-size: var(--text-title-s);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.cta-img-wrap {
  height: 420px;
  overflow: hidden;
}
.cta-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
}
@media (max-width: 960px) {
  .cta-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .cta-img-wrap { display: none; }
}

/* ── Video Strip ── */
.smy-video-strip {
  padding: var(--section-py) 0;
  background: var(--c-sand);
}
.smy-container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.smy-video-strip__headline {
  font-family: var(--ff-display);
  font-size: var(--text-hl-l);
  color: var(--c-dark);
  text-align: center;
  margin-bottom: 0.75rem;
}
.smy-video-strip__lead {
  text-align: center;
  font-size: var(--text-title-s);
  color: var(--c-ink-55);
  margin-bottom: 3rem;
}
.smy-video-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.smy-video-strip__item {
  aspect-ratio: 9/16;
  overflow: hidden;
  background: var(--c-dark);
}
.smy-video-strip__item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .smy-video-strip__grid { grid-template-columns: 1fr; }
  .smy-video-strip__item { aspect-ratio: 16/9; }
}

/* ── text-balance utility ── */
.text-balance { text-wrap: balance; }


/* =============================================
   FOOTER
   ============================================= */

.section-footer-cta {
  background: var(--c-sand);
  padding: 3rem 0;
  border-top: 1px solid var(--c-border);
}
.footer-cta-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-cta-text {
  font-family: var(--ff-display);
  font-size: var(--text-hl-s);
  color: var(--c-dark);
  margin: 0;
}
@media (max-width: 640px) {
  .footer-cta-wrap { flex-direction: column; align-items: flex-start; }
}

.smyvia-footer {
  background: var(--c-sand);
  color: var(--c-ink-55);
  padding: 5rem 0 2.5rem;
  border-top: 1px solid var(--c-border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--c-border);
}
.footer-brand-desc {
  font-size: var(--text-body-m);
  line-height: 1.7;
  margin: 0 0 1rem;
  color: var(--c-ink-55);
}
.footer-col-title {
  font-size: var(--text-body-s);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-ink-40);
  margin: 0 0 1rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a {
  font-size: var(--text-body-m);
  color: var(--c-ink-55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--c-ink); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: var(--text-body-s);
  color: var(--c-ink-40);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--c-ink-70); }
.footer-copyright {
  font-size: var(--text-body-s);
  color: var(--c-ink-40);
  margin: 0;
}
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-legal { flex-wrap: wrap; gap: 1rem; }
}


/* =============================================
   DESIGN POLISH — Global Refinements
   ============================================= */

/* Eyebrow label */
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-ink-55);
  margin-bottom: 0.75rem;
}

/* Metrics section — mehr vertikale Luft */
.section-metrics { padding: 5rem 0; }

/* Process steps — subtile Hover-States */
.process-step {
  transition: box-shadow 0.2s, transform 0.2s;
}
.process-step:hover {
  box-shadow: 0 8px 32px rgba(41,18,69,0.08);
  transform: translateY(-2px);
}

/* Testimonial quote — größer, mehr Drama */
.testimonial-quote {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}

/* Section backgrounds */
.section-process  { background: var(--c-sand); }
.section-audience { background: var(--c-sand); }
.section-testimonial { background: var(--c-sand); }

/* hpt blocks — schmalere Divider-Linie */
.smy-hpt__blocks {
  border-top: 1px solid rgba(0,0,0,0.08);
}


/* =============================================
   HERO — Komplexe Erweiterung
   ============================================= */

.smy-hpt__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-ink-55);
  margin-bottom: 1.25rem;
}
.smy-hpt__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-primary);
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.smy-hpt__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.smy-hpt__tel {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--c-ink);
  text-decoration: none;
  border-bottom: 1.5px solid var(--c-border);
  padding-bottom: 0.1rem;
  transition: color 0.2s, border-color 0.2s;
}
.smy-hpt__tel:hover { color: var(--c-dark); border-color: var(--c-dark); }

.smy-hpt__trust {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.smy-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--c-ink-70);
}
.smy-trust-item svg { color: var(--c-dark); flex-shrink: 0; }

/* Floating stat card */
.smy-hpt__stat-card {
  position: absolute;
  bottom: 2.5rem;
  left: -2rem;
  background: var(--c-white);
  border-radius: 1rem;
  padding: 0.9rem 1.25rem;
  box-shadow: 0 8px 32px rgba(41,18,69,0.14);
  min-width: 13rem;
  z-index: 10;
}
.smy-hpt__stat-stars {
  font-size: 0.75rem;
  color: #f4c430;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}
.smy-hpt__stat-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-dark);
}
.smy-hpt__stat-sub {
  font-size: 0.7rem;
  color: var(--c-ink-55);
  margin-top: 0.1rem;
}

/* Floating savings badge */
.smy-hpt__save-badge {
  position: absolute;
  top: 2rem;
  right: 1.5rem;
  background: var(--c-dark);
  color: var(--c-white);
  border-radius: 0.75rem;
  padding: 0.6rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  box-shadow: 0 4px 20px rgba(41,18,69,0.25);
}
.smy-hpt__save-num {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--c-white);
}
.smy-hpt__save-label {
  font-size: 0.62rem;
  opacity: 0.6;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.15rem;
}

@media (max-width: 768px) {
  .smy-hpt__stat-card { display: none; }
  .smy-hpt__save-badge { top: 1rem; right: 1rem; }
  .smy-hpt__actions { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}


/* =============================================
   LOGIN PAGES
   ============================================= */

.login-page {
  min-height: 100dvh;
  background: var(--c-sand);
}

.login-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100dvh;
}

.login-form-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  background: var(--c-white);
}

.login-form-wrap {
  width: 100%;
  max-width: 26rem;
}

.login-back {
  font-size: 0.8rem;
  color: var(--c-ink-55);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 2.5rem;
  transition: color 0.2s;
}
.login-back:hover { color: var(--c-dark); }

.login-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
}
.login-badge {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--c-sand);
  color: var(--c-ink-55);
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
}

.login-title {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--c-dark);
  margin: 0 0 0.5rem;
}
.login-sub {
  font-size: var(--text-body-m);
  color: var(--c-ink-55);
  margin: 0 0 2rem;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-field label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--c-ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.form-link-small {
  font-size: 0.78rem;
  color: var(--c-dark);
  text-decoration: none;
  font-weight: 400;
}
.form-link-small:hover { text-decoration: underline; }
.form-field input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--c-border);
  background: var(--c-sand);
  border-radius: 0.5rem;
  font-family: var(--ff-body);
  font-size: var(--text-body-m);
  color: var(--c-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.form-field input:focus {
  outline: none;
  border-color: var(--c-dark);
  box-shadow: 0 0 0 3px rgba(41,18,69,0.1);
}

.login-register {
  font-size: 0.82rem;
  color: var(--c-ink-55);
  margin: 1.25rem 0;
}
.login-register a { color: var(--c-dark); font-weight: 500; text-decoration: none; }
.login-register a:hover { color: var(--c-dark); }

.login-divider {
  text-align: center;
  position: relative;
  margin: 1.5rem 0;
}
.login-divider::before {
  content: '';
  position: absolute;
  inset: 50% 0 auto;
  height: 1px;
  background: var(--c-border);
}
.login-divider span {
  position: relative;
  background: var(--c-white);
  padding: 0 0.75rem;
  font-size: 0.75rem;
  color: var(--c-ink-55);
}

.login-social {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.btn-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--c-border);
  border-radius: 0.5rem;
  background: transparent;
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--c-dark);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.btn-social:hover { border-color: var(--c-dark); background: var(--c-sand); }

/* Klinik: Feature-List */
.login-features { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--c-border); }
.login-features-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--c-ink-55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 1rem;
}
.login-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.login-feature-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--c-ink);
}
.login-feature-list svg { color: var(--c-dark); flex-shrink: 0; }

/* Visual side */
.login-visual {
  position: relative;
  overflow: hidden;
}
.login-visual-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.login-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.login-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.50) 100%);
}
.login-visual-overlay--deep {
  background: linear-gradient(135deg, rgba(0,0,0,0.50) 0%, rgba(0,0,0,0.70) 100%);
}
.login-visual-card {
  position: absolute;
  bottom: 3rem;
  left: 2rem;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--c-white);
  max-width: 18rem;
}
.login-visual-card--alt { bottom: auto; top: 3rem; }
.lvc-icon { font-size: 1.25rem; }
.lvc-text { display: flex; flex-direction: column; gap: 0.15rem; }
.lvc-text strong { font-size: 0.9rem; font-weight: 600; }
.lvc-text span { font-size: 0.75rem; opacity: 0.7; }

.login-visual-stats {
  position: absolute;
  bottom: 3rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.lvs-item {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 0.75rem;
  padding: 0.6rem 1rem;
  text-align: center;
  color: var(--c-white);
}
.lvs-num { display: block; font-family: var(--ff-display); font-size: 1.3rem; line-height: 1; }
.lvs-label { display: block; font-size: 0.65rem; opacity: 0.6; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 0.15rem; }

@media (max-width: 860px) {
  .login-split { grid-template-columns: 1fr; }
  .login-visual { display: none; }
  .login-page { min-height: auto; }
}


/* =============================================
   PORTAL GATE (/mein-smyvia)
   ============================================= */

.portal-gate {
  background: var(--c-sand);
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.portal-gate-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 5rem;
}
.portal-gate-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--c-dark);
  line-height: 1.1;
  margin: 0 0 1.25rem;
}
.portal-gate-lead {
  font-size: var(--text-body-l);
  color: var(--c-ink-70);
  line-height: 1.7;
  max-width: 34rem;
  margin: 0;
}

/* Dashboard Mock-UI */
.portal-dashboard-mock {
  background: var(--c-white);
  border-radius: 1.5rem;
  box-shadow: 0 20px 60px rgba(41,18,69,0.12);
  overflow: hidden;
  border: 1px solid var(--c-border);
}
.pdm-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--c-border);
  background: var(--c-sand);
}
.pdm-avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--c-dark);
  color: var(--c-white);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pdm-header strong { font-size: 0.9rem; color: var(--c-dark); display: block; }
.pdm-header span { font-size: 0.72rem; color: var(--c-ink-55); }
.pdm-status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  margin-left: auto;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
}
.pdm-cards {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pdm-card {
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--c-border);
}
.pdm-card--green { background: rgba(34,197,94,0.05); }
.pdm-card-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-ink-55);
  margin-bottom: 0.35rem;
}
.pdm-card-value {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-dark);
  margin-bottom: 0.2rem;
}
.pdm-card-sub { font-size: 0.75rem; color: var(--c-ink-55); }
.pdm-progress {
  height: 5px;
  background: var(--c-border);
  border-radius: 100px;
  overflow: hidden;
  margin: 0.5rem 0 0.35rem;
}
.pdm-progress-bar {
  height: 100%;
  background: var(--c-dark);
  border-radius: 100px;
}
.pdm-doc-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 0.4rem;
}
.pdm-doc { font-size: 0.78rem; color: var(--c-ink); }
.pdm-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  font-size: 0.78rem;
  color: var(--c-ink-55);
}
.pdm-footer a { color: var(--c-dark); text-decoration: none; font-weight: 500; }
.pdm-footer a:hover { text-decoration: underline; }

.portal-feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.portal-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .9rem;
  color: var(--c-ink);
  opacity: .75;
}
.portal-feature-list li::before {
  content: '';
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  margin-top: .15rem;
  background: var(--c-primary);
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}


/* Portal Feature Grid */
.portal-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-top: 4rem;
  border-top: 1px solid var(--c-border);
}
.portal-feature {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.portal-feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.6rem;
  background: var(--c-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-dark);
}
.portal-feature h3 {
  font-size: var(--text-body-l);
  font-weight: 600;
  color: var(--c-dark);
  margin: 0;
}
.portal-feature p {
  font-size: var(--text-body-m);
  color: var(--c-ink-55);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .portal-gate-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .portal-features { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .portal-features { grid-template-columns: 1fr; }
}


/* =============================================
   FOOTER — Social & Hotline
   ============================================= */

.footer-hotline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--c-ink-55);
  text-decoration: none;
  font-size: var(--text-body-s);
  margin-top: 0.75rem;
  transition: color 0.2s;
}
.footer-hotline:hover { color: var(--c-ink); }
.footer-hotline-hours {
  font-size: 0.7rem;
  color: var(--c-ink-40);
  margin: 0.2rem 0 1.25rem;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social-link {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-ink-55);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.footer-social-link:hover {
  border-color: var(--c-ink);
  color: var(--c-ink);
}

/* Footer grid: 6 Spalten (Brand + 5 Nav-Cols) */
.footer-grid {
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr 1fr;
}


/* =============================================
   NAV MEGA — Breiter, edler
   ============================================= */

.nav_dropdown_panel--wide {
  width: 860px;
  left: 0;
  transform: none;
  padding: 2rem;
  border-radius: 0;
  box-shadow: 0 16px 48px rgba(41,18,69,0.1);
}
.nav_dd_grid {
  grid-template-columns: 1fr 1fr 220px;
  gap: 2rem;
}
.nav_dd_col--action { gap: 1rem; }
.nav_dd_cta_card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  background: var(--c-dark);
  border-radius: 0.6rem;
  padding: 1rem 1.25rem;
  text-decoration: none;
  transition: background 0.2s;
}
.nav_dd_cta_card:hover { background: var(--c-dark); }
.nav_dd_cta_card strong {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-white);
  display: block;
}
.nav_dd_cta_card em {
  font-style: normal;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
}
.nav_dd_all_link {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--c-dark);
  text-decoration: none;
  padding: 0 0.5rem;
  transition: opacity 0.2s;
}
.nav_dd_all_link:hover { opacity: 0.7; }


/* =============================================
   CONTAINER UTILITIES
   ============================================= */

.container-xlarge {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}


/* =============================================
   BEHANDLUNGEN-INDEX-PAGE
   ============================================= */

.section_behandlung_hero {
  background: var(--c-sand);
  padding: clamp(4rem, 7vw, 6rem) 0 clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--c-border);
}
.section_behandlung_hero .eyebrow { margin-bottom: 0.75rem; }
.section_behandlung_hero .header-h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 400;
  color: var(--c-dark);
  margin: 0 0 1rem;
  line-height: 1.08;
}
.section_behandlung_hero .hero_para {
  font-size: var(--text-body-l);
  color: var(--c-ink-70);
  max-width: 44rem;
  line-height: 1.7;
  margin: 0;
}

.section_behandlungen_grid {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--c-white);
}

.behandlungen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--c-border);
  border: 1.5px solid var(--c-border);
}

.behandlung-card {
  background: var(--c-white);
  padding: 2rem 2rem 1.75rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: relative;
  transition: background 0.18s;
}
.behandlung-card:hover { background: var(--c-sand); }

.behandlung-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--c-dark);
  color: var(--c-white);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  align-self: flex-start;
}

.behandlung-card .header-h4 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--c-dark);
  margin: 0;
  line-height: 1.25;
}
.behandlung-card .body-m {
  font-size: var(--text-body-m);
  color: var(--c-ink-70);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.behandlung-card-link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--c-dark);
  margin-top: 0.5rem;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.18s, transform 0.18s;
}
.behandlung-card:hover .behandlung-card-link {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) { .behandlungen-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .behandlungen-grid { grid-template-columns: 1fr; } }

/* CTA Bottom Bar */
.section_cta_bottom {
  background: var(--c-sand);
  padding: 3rem 0;
  border-top: 1px solid var(--c-border);
}
.cta_bottom_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta_bottom_inner .header-h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 400;
  color: var(--c-dark);
  margin: 0;
}
.body-l { font-size: var(--text-body-l); line-height: 1.65; }
.body-m { font-size: var(--text-body-m); line-height: 1.6; }
.button-v2 {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.5rem;
  background: var(--c-dark);
  color: var(--c-white);
  font-size: var(--text-body-m);
  font-weight: 600;
  font-family: var(--ff-body);
  text-decoration: none;
  border-radius: var(--r-pill);
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.button-v2:hover { background: var(--c-primary); color: var(--c-ink); transform: translateY(-1px); }


/* =============================================
   RATGEBER PAGE
   ============================================= */

.section_wissen_hero {
  background: var(--c-sand);
  padding: clamp(4rem, 7vw, 6rem) 0 clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--c-border);
}
.section_wissen_hero .header-h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 400;
  color: var(--c-dark);
  margin: 0 0 1rem;
  line-height: 1.08;
}
.section_wissen_hero .hero_para {
  font-size: var(--text-body-l);
  color: var(--c-ink-70);
  max-width: 44rem;
  line-height: 1.7;
  margin: 0;
}

.section_ratgeber {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--c-white);
}

.ratgeber_grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1.5px solid var(--c-border);
}
.ratgeber_card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.75rem 2rem;
  border-bottom: 1px solid var(--c-border);
  text-decoration: none;
  background: var(--c-white);
  transition: background 0.18s;
}
.ratgeber_card:last-child { border-bottom: none; }
.ratgeber_card:hover { background: var(--c-sand); }

.ratgeber_card_title {
  font-family: var(--ff-display);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 400;
  color: var(--c-dark);
  line-height: 1.35;
  margin: 0.25rem 0 0;
}
.ratgeber_card_arrow {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border: 1.5px solid var(--c-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-dark);
  transition: border-color 0.2s, background 0.2s;
  margin-top: 0.25rem;
}
.ratgeber_card:hover .ratgeber_card_arrow {
  border-color: var(--c-dark);
  background: var(--c-dark);
  color: var(--c-white);
}

/* Wissen Index Kacheln */
.wissen_kacheln {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 3rem 0;
}
.wissen_kachel {
  background: var(--c-sand);
  padding: 2rem;
  text-decoration: none;
  border: 1px solid var(--c-border);
  transition: border-color 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.wissen_kachel:hover { border-color: var(--c-dark); box-shadow: 0 4px 16px rgba(41,18,69,0.06); }
.wissen_kachel_icon { font-size: 1.5rem; }
.wissen_kachel .header-h4 {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--c-dark);
  margin: 0;
}
.wissen_kachel .body-m { color: var(--c-ink-55); margin: 0; }

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


/* =============================================
   LEXIKON — Eigenansicht (Paytient-Stil)
   ============================================= */

.lexikon-page {
  background: var(--c-white);
}

.lexikon-hero {
  background: var(--c-dark);
  padding: clamp(2rem, 3vw, 2.5rem) 0 clamp(1.5rem, 2vw, 2rem);
  position: relative;
  overflow: hidden;
}
.lexikon-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 60rem;
  height: 60rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(41,18,69,0.25) 0%, transparent 65%);
  pointer-events: none;
}
.lexikon-hero .eyebrow { color: rgba(255,255,255,0.45); margin-bottom: 1rem; }
.lexikon-hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--c-white);
  margin: 0 0 1.25rem;
  line-height: 1.06;
}
.lexikon-hero-lead {
  font-size: var(--text-body-l);
  color: rgba(255,255,255,0.55);
  max-width: 42rem;
  line-height: 1.7;
  margin: 0 0 2.5rem;
}

/* Suchbox */
.lexikon-search-wrap {
  position: relative;
  max-width: 34rem;
}
.lexikon-search {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 0.6rem;
  background: rgba(255,255,255,0.07);
  color: var(--c-white);
  font-family: var(--ff-body);
  font-size: var(--text-body-l);
  transition: border-color 0.2s, background 0.2s;
  box-sizing: border-box;
}
.lexikon-search::placeholder { color: rgba(255,255,255,0.35); }
.lexikon-search:focus {
  outline: none;
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.1);
}
.lexikon-search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.4);
  pointer-events: none;
}

/* Alphabet-Filter */
.lexikon-alpha-bar {
  background: var(--c-sand);
  border-bottom: 1px solid var(--c-border);
  padding: 0.75rem 0;
  position: sticky;
  top: 4.5rem;
  z-index: 100;
}
.lexikon-alpha-inner {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.lexikon-alpha-btn {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--c-ink);
  background: none;
  border: none;
  border-radius: 0.3rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  font-family: var(--ff-body);
}
.lexikon-alpha-btn:hover,
.lexikon-alpha-btn.is-active {
  background: var(--c-dark);
  color: var(--c-white);
}

/* Einträge */
.lexikon-body {
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.lexikon-section {
  margin-bottom: 3.5rem;
}
.lexikon-letter {
  font-family: var(--ff-display);
  font-size: 3rem;
  font-weight: 400;
  color: var(--c-border);
  line-height: 1;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1.5px solid var(--c-border);
}
.lexikon-entries {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--c-border);
  border: 1.5px solid var(--c-border);
}
.lexikon-entry {
  background: var(--c-white);
  padding: 1.5rem 1.75rem;
  cursor: default;
  transition: background 0.15s;
}
.lexikon-entry:hover { background: var(--c-sand); }
.lexikon-entry-term {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-dark);
  margin-bottom: 0.35rem;
  display: block;
}
.lexikon-entry-def {
  font-size: var(--text-body-m);
  color: var(--c-ink-70);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 860px) { .lexikon-entries { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .lexikon-entries { grid-template-columns: 1fr; } }

/* header-h1 Utility */
.header-h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 400;
  color: var(--c-dark);
  margin: 0 0 1rem;
  line-height: 1.08;
}
.header-h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--c-dark);
  margin: 0;
}
.header-h4 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--c-dark);
  margin: 0;
}


/* ═══════════════════════════════════════════════════════════════
   V2 DESIGN COMPONENTS (portiert aus smyvia-v2.css)
   ═══════════════════════════════════════════════════════════════ */

/* ── Zusätzliche Typo-Utilities ── */
  .eyebrow--lg { font-size: 0.875rem; }

  /* Inline-Link im Fließtext */
  .link-inline { text-decoration: underline; text-underline-offset: .2em; text-decoration-thickness: 1px; transition: opacity .2s ease; }
  .link-inline:hover { opacity: .6; }

  .badge--dot::before { content: ""; width: .375rem; height: .375rem; border-radius: 50%; background: currentColor; }

/* ── Announcement Bar ── */
  /* ============= ANNOUNCEMENT BAR ============= */
  .announce {
    background: var(--c-dark); color: var(--c-sand);
    font-size: 0.8125rem; font-weight: 300;
    padding: .625rem 2.5rem;
    display: flex; justify-content: center; align-items: center; gap: 1rem;
    text-align: center;
  }
  .announce__dot { width: .375rem; height: .375rem; border-radius: 50%; background: var(--c-primary); animation: pulse 2s ease-in-out infinite; }
  @keyframes pulse { 0%,100% { opacity: .5; } 50% { opacity: 1; } }
  .announce a { text-decoration: underline; text-underline-offset: .2em; }

  /* ============= NAV ============= */
  .nav { position: sticky; top: 0; z-index: 100; background: var(--c-sand); }
  .nav__inner { display: flex; justify-content: space-between; align-items: center; max-width: var(--container-max); margin: 0 auto; padding: 1rem var(--gutter); position: relative; }
  .nav__logo { font-family: var(--ff-display); font-size: 1.875rem; font-weight: 400; font-style: italic; color: var(--c-dark); letter-spacing: -0.018em; }
  .nav__links { display: flex; align-items: center; gap: 0; }
  .nav__link, .nav__trigger { padding: 1rem 1.125rem; font-size: 0.9375rem; font-weight: 300; color: var(--c-dark); opacity: .85; display: inline-flex; align-items: center; gap: .35rem; cursor: pointer; transition: opacity .3s ease; }
  .nav__link:hover, .nav__trigger:hover { opacity: 1; }
  .nav__trigger[aria-expanded="true"] { opacity: 1; }
  .nav__chevron { transition: transform .3s cubic-bezier(.215,.61,.355,1); }
  .nav__trigger[aria-expanded="true"] .nav__chevron { transform: rotate(180deg); }
  .nav__actions { display: flex; align-items: center; gap: .25rem; }

  /* ============= MEGA PANEL ============= */
  .megapanel { position: absolute; top: 100%; left: 0; right: 0; background: var(--c-sand); border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); z-index: 99; box-shadow: 0 20px 48px -16px rgba(41, 18, 69, 0.08); }
  .megapanel__inner { max-width: var(--container-max); margin: 0 auto; padding: 3rem var(--gutter) 3.5rem; }
  .megapanel__heading { font-family: var(--ff-body); font-size: 0.75rem; font-weight: 400; letter-spacing: .12em; text-transform: uppercase; opacity: .55; margin: 0 0 1.75rem; }
  .megapanel__heading--serif { font-family: var(--ff-display); font-style: italic; font-size: 1.5rem; line-height: 1.15; letter-spacing: -0.01em; text-transform: none; opacity: .85; margin-bottom: .5rem; font-weight: 400; }
  .megapanel__heading--serif-sub { font-size: 0.9375rem; opacity: .65; margin-bottom: 1.75rem; font-weight: 300; }
  .megapanel__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .megapanel__grid--2col { grid-template-columns: repeat(2, 1fr); }
  .megacard { display: flex; flex-direction: column; gap: .75rem; padding: 1.25rem; border-radius: 0; transition: background .3s ease; }
  .megacard:hover { background: var(--c-tertiary); }
  .megacard__icon { width: 2.25rem; height: 2.25rem; display: grid; place-items: center; color: var(--c-dark); flex: none; }
  .megacard__title { font-family: var(--ff-body); font-size: 1rem; font-weight: 500; color: var(--c-dark); line-height: 1.3; margin: 0; }
  .megacard__desc { font-size: 0.875rem; font-weight: 300; opacity: .7; line-height: 1.45; margin: 0; }
  .megapanel__footer { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--c-border); display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; }
  .megapanel__footer-link { font-size: 0.9375rem; font-weight: 400; display: inline-flex; align-items: center; gap: .4rem; }
  .megapanel__split { display: grid; grid-template-columns: .7fr 2fr; gap: 3rem; }
  @media (max-width: 1199px) { .megapanel__grid { grid-template-columns: repeat(2, 1fr); } .megapanel__split { grid-template-columns: 1fr; gap: 1.5rem; } }
  @media (max-width: 991px) { .nav__links, .nav__actions { display: none; } }

  /* ============= PORTAL HERO (phero) ============= */
  .phero {
    background: var(--c-dark);
    color: var(--c-white);
    padding: clamp(4rem, 8vw, 7rem) var(--gutter) 0;
  }
  .phero__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    text-align: center;
    padding-bottom: clamp(3rem, 6vw, 5rem);
  }
  .phero__eyebrow {
    font-size: var(--text-body-s);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-primary);
    margin-bottom: 1.5rem;
  }
  .phero__heading {
    font-family: var(--ff-display);
    font-weight: 400;
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0 0 2.5rem;
    max-width: 48rem;
    margin-inline: auto;
  }
  .phero__heading em { font-style: italic; color: var(--c-primary); }

  /* Search Bar */
  .phero__search {
    display: flex;
    max-width: 42rem;
    margin: 0 auto 2rem;
    background: var(--c-white);
    border-radius: var(--r-pill);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  }
  .phero__search-field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0 1.5rem;
  }
  .phero__search-field svg { color: var(--c-ink-40); flex-shrink: 0; }
  .phero__search-input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-family: var(--ff-body);
    font-size: 1rem;
    font-weight: 300;
    color: var(--c-ink);
    padding: 1rem 0;
  }
  .phero__search-input::placeholder { color: var(--c-ink-40); }
  .phero__search-btn {
    flex-shrink: 0;
    border-radius: 0 var(--r-pill) var(--r-pill) 0 !important;
    padding: 1rem 2rem;
  }

  /* Category Pills */
  .phero__pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    max-width: 48rem;
    margin: 0 auto;
  }
  .phero__pill {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.1rem;
    border-radius: var(--r-pill);
    font-size: var(--text-body-m);
    font-weight: 400;
    color: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.2s ease;
    white-space: nowrap;
  }
  .phero__pill:hover {
    background: rgba(255,255,255,0.1);
    color: var(--c-white);
    border-color: rgba(255,255,255,0.35);
  }
  .phero__pill--cta {
    background: var(--c-primary);
    color: var(--c-ink);
    border-color: var(--c-primary);
    font-weight: 600;
  }
  .phero__pill--cta:hover {
    background: #e8f280;
    color: var(--c-ink);
    border-color: #e8f280;
  }

  /* Trust Strip */
  .phero__trust {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: var(--container-max);
    margin: 0 auto;
    background: rgba(255,255,255,0.06);
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .phero__trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 1.5rem 2.5rem;
    flex: 1;
    text-align: center;
  }
  .phero__trust-item + .phero__trust-item {
    border-left: 1px solid rgba(255,255,255,0.1);
  }
  .phero__trust-num {
    font-family: var(--ff-display);
    font-weight: 400;
    font-style: italic;
    font-size: 1.75rem;
    letter-spacing: -0.02em;
    color: var(--c-primary);
  }
  .phero__trust-label {
    font-size: var(--text-body-s);
    font-weight: 300;
    opacity: 0.6;
  }

  @media (max-width: 767px) {
    .phero__search { flex-direction: column; border-radius: var(--r-lg); }
    .phero__search-btn { border-radius: 0 0 var(--r-lg) var(--r-lg) !important; width: 100%; }
    .phero__trust { flex-wrap: wrap; }
    .phero__trust-item { flex: 0 0 33.333%; padding: 1rem 1rem; }
    .phero__pills { gap: 0.4rem; }
    .phero__pill { font-size: var(--text-body-s); padding: 0.4rem 0.8rem; }
  }
  @media (max-width: 479px) {
    .phero__trust-item { flex: 0 0 50%; }
  }

  /* ============= CATEGORIES GRID ============= */
  .categories {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--section-py) var(--gutter);
  }
  .categories__head {
    text-align: center;
    margin-bottom: 3rem;
  }
  .categories__heading {
    font-family: var(--ff-display);
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.05;
    letter-spacing: -0.015em;
    margin: 0;
  }
  .categories__heading em { font-style: italic; }
  .categories__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--c-border);
    border: 1px solid var(--c-border);
  }
  .category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 2rem 1.5rem;
    text-align: center;
    background: var(--c-sand);
    transition: all 0.25s ease;
  }
  .category-card:hover {
    background: var(--c-white);
    transform: translateY(-2px);
    box-shadow: var(--sh-md);
    z-index: 1;
    position: relative;
  }
  .category-card__icon {
    width: 3rem;
    height: 3rem;
    display: grid;
    place-items: center;
    background: var(--c-tertiary);
    border-radius: var(--r-md);
    color: var(--c-dark);
    margin-bottom: 0.25rem;
  }
  .category-card__title {
    font-family: var(--ff-body);
    font-weight: 500;
    font-size: 1rem;
    margin: 0;
  }
  .category-card__price {
    font-family: var(--ff-display);
    font-style: italic;
    font-size: 1.125rem;
    color: var(--c-dark);
    margin: 0;
  }
  .category-card__meta {
    font-size: var(--text-body-s);
    font-weight: 300;
    opacity: 0.55;
  }
  @media (max-width: 767px) {
    .categories__grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 479px) {
    .categories__grid { grid-template-columns: 1fr 1fr; }
    .category-card { padding: 1.25rem 1rem; }
  }

  /* ============= STEPPER (horizontal) ============= */
  .stepper {
    padding: var(--section-py) 0;
    background: var(--c-white);
  }
  .stepper__head {
    text-align: center;
    margin-bottom: 3.5rem;
  }
  .stepper__heading {
    font-family: var(--ff-display);
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.05;
    letter-spacing: -0.015em;
    margin: 0;
  }
  .stepper__heading em { font-style: italic; }
  .stepper__track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    max-width: 56rem;
    margin: 0 auto;
  }
  .stepper__line {
    position: absolute;
    top: 1.5rem;
    left: calc(12.5% + 1.5rem);
    right: calc(12.5% + 1.5rem);
    height: 2px;
    background: var(--c-border);
  }
  .stepper__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
  }
  .stepper__dot {
    width: 3rem;
    height: 3rem;
    display: grid;
    place-items: center;
    background: var(--c-primary);
    color: var(--c-dark);
    border-radius: 50%;
    border: 3px solid var(--c-white);
    box-shadow: 0 0 0 2px var(--c-border);
  }
  .stepper__title {
    font-family: var(--ff-body);
    font-weight: 600;
    font-size: 0.9375rem;
    margin: 0;
  }
  .stepper__desc {
    font-size: var(--text-body-s);
    font-weight: 300;
    opacity: 0.65;
    margin: 0;
    max-width: 14rem;
  }
  @media (max-width: 767px) {
    .stepper__track { grid-template-columns: 1fr; gap: 2rem; }
    .stepper__line { display: none; }
    .stepper__step { flex-direction: row; text-align: left; gap: 1rem; }
    .stepper__dot { flex-shrink: 0; }
  }

  /* ============= CLINIC CARDS ============= */
  .clinics-preview {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--section-py) var(--gutter);
  }
  .clinics-preview__head {
    text-align: center;
    margin-bottom: 3rem;
  }
  .clinics-preview__heading {
    font-family: var(--ff-display);
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.05;
    letter-spacing: -0.015em;
    margin: 0;
  }
  .clinics-preview__heading em { font-style: italic; }
  .clinics-preview__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .clinics-preview__footer {
    text-align: center;
    margin-top: 2.5rem;
  }
  .clinic-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--c-border);
    background: var(--c-white);
    transition: all 0.3s ease;
    overflow: hidden;
  }
  .clinic-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--sh-lg);
    border-color: var(--c-border-strong);
  }
  .clinic-card__img {
    aspect-ratio: 16/10;
    overflow: hidden;
  }
  .clinic-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }
  .clinic-card:hover .clinic-card__img img { transform: scale(1.04); }
  .clinic-card__body {
    padding: 1.25rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
  }
  .clinic-card__name {
    font-family: var(--ff-body);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0;
  }
  .clinic-card__location {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: var(--text-body-m);
    font-weight: 300;
    opacity: 0.6;
    margin: 0;
  }
  .clinic-card__rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .clinic-card__stars {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #f5a623;
    font-weight: 600;
    font-size: 0.9375rem;
  }
  .clinic-card__reviews {
    font-size: var(--text-body-s);
    font-weight: 300;
    opacity: 0.55;
  }
  .clinic-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.25rem;
  }
  .clinic-card__tag {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-radius: var(--r-pill);
    background: var(--c-tertiary);
    color: var(--c-dark);
  }
  .clinic-card__price {
    font-size: var(--text-body-m);
    font-weight: 300;
    margin: 0;
    margin-top: auto;
    padding-top: 0.5rem;
    border-top: 1px solid var(--c-border);
  }
  .clinic-card__price strong { font-weight: 600; font-size: 1rem; }
  @media (max-width: 991px) { .clinics-preview__grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 479px) { .clinics-preview__grid { grid-template-columns: 1fr; } }

  /* ============= CALCULATOR TEASER ============= */
  .calculator-teaser {
    background: var(--c-tertiary);
    padding: var(--section-py) 0;
  }
  .calculator-teaser__wrap {
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  .calculator-teaser__heading {
    font-family: var(--ff-display);
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.05;
    letter-spacing: -0.015em;
    margin: 0 0 1rem;
  }
  .calculator-teaser__heading em { font-style: italic; }
  .calculator-teaser__lead {
    font-size: 1.0625rem;
    font-weight: 300;
    line-height: 1.55;
    opacity: 0.8;
    margin: 0;
  }
  .calculator-teaser__calc {
    background: var(--c-white);
    padding: 2rem;
    border: 1px solid var(--c-border);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .calc__group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .calc__label {
    font-size: var(--text-body-m);
    font-weight: 600;
    letter-spacing: 0.02em;
  }
  .calc__options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .calc__opt {
    padding: 0.55rem 1rem;
    border-radius: var(--r-pill);
    font-size: var(--text-body-m);
    font-weight: 400;
    border: 1px solid var(--c-border-strong);
    background: transparent;
    color: var(--c-ink);
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .calc__opt:hover { border-color: var(--c-dark); }
  .calc__opt--active {
    background: var(--c-dark);
    color: var(--c-white);
    border-color: var(--c-dark);
  }
  .calc__stepper {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .calc__step-btn {
    width: 2.5rem;
    height: 2.5rem;
    display: grid;
    place-items: center;
    border: 1px solid var(--c-border-strong);
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.2s ease;
    background: transparent;
    color: var(--c-ink);
  }
  .calc__step-btn:hover { background: var(--c-dark); color: var(--c-white); border-color: var(--c-dark); }
  .calc__step-val {
    font-family: var(--ff-display);
    font-style: italic;
    font-size: 1.75rem;
    min-width: 2.5rem;
    text-align: center;
  }
  .calc__result {
    padding: 1.25rem;
    background: var(--c-sand);
    border: 1px solid var(--c-border);
    text-align: center;
  }
  .calc__result-label {
    font-size: var(--text-body-s);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0.55;
    margin-bottom: 0.25rem;
  }
  .calc__result-price {
    font-family: var(--ff-display);
    font-style: italic;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--c-dark);
    letter-spacing: -0.02em;
  }
  .calc__result-saving {
    font-size: var(--text-body-s);
    font-weight: 300;
    opacity: 0.55;
    margin-top: 0.25rem;
    text-decoration: line-through;
  }
  .calc__cta { width: 100%; text-align: center; justify-content: center; }
  @media (max-width: 991px) {
    .calculator-teaser__wrap { grid-template-columns: 1fr; gap: 2rem; }
  }

  /* ============= REVIEWS ============= */
  .reviews {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--section-py) var(--gutter);
  }
  .reviews__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    gap: 2rem;
  }
  .reviews__heading {
    font-family: var(--ff-display);
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.05;
    letter-spacing: -0.015em;
    margin: 0;
  }
  .reviews__heading em { font-style: italic; }
  .reviews__score {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
  }
  .reviews__score-num {
    font-family: var(--ff-display);
    font-weight: 400;
    font-style: italic;
    font-size: 3rem;
    letter-spacing: -0.02em;
    color: var(--c-dark);
  }
  .reviews__score-detail {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
  }
  .reviews__score-stars {
    display: flex;
    gap: 0.15rem;
    color: #f5a623;
  }
  .reviews__score-count {
    font-size: var(--text-body-s);
    font-weight: 300;
    opacity: 0.55;
  }
  .reviews__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
  .review-card {
    background: var(--c-white);
    border: 1px solid var(--c-border);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: all 0.25s ease;
  }
  .review-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--sh-md);
  }
  .review-card__stars {
    display: flex;
    gap: 0.15rem;
    color: #f5a623;
  }
  .review-card__text {
    font-family: var(--ff-display);
    font-weight: 400;
    font-style: italic;
    font-size: 1rem;
    line-height: 1.45;
    margin: 0;
    flex: 1;
  }
  .review-card__author {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
  }
  .review-card__name {
    font-weight: 600;
    font-size: var(--text-body-m);
  }
  .review-card__treatment {
    font-size: var(--text-body-s);
    font-weight: 300;
    opacity: 0.55;
  }
  .review-card__date {
    font-size: var(--text-body-s);
    font-weight: 300;
    opacity: 0.4;
  }
  @media (max-width: 991px) {
    .reviews__grid { grid-template-columns: repeat(2, 1fr); }
    .reviews__head { flex-direction: column; align-items: flex-start; }
  }
  @media (max-width: 479px) {
    .reviews__grid { grid-template-columns: 1fr; }
  }

  /* ============= HERO (legacy) ============= */
  .hero { padding: 4rem var(--gutter) 2rem; max-width: var(--container-max); margin: 0 auto; }
  .hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; min-height: 32rem; }
  .hero__content { max-width: 38rem; }
  .hero__heading { font-family: var(--ff-display); font-weight: 400; font-size: clamp(3rem, 6vw, 5rem); line-height: 1.02; letter-spacing: -0.028em; margin: 0 0 2rem; }
  .hero__heading em { font-style: italic; }
  .hero__lead { font-size: 1.125rem; font-weight: 300; line-height: 1.5; margin: 0 0 2.5rem; max-width: 34rem; opacity: .8; }
.hero__img-area::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(41,18,69,0.08) 100%);
  pointer-events: none;
}
  .hero__img-area img { width: 100%; height: 100%; object-fit: cover; }
  @media (max-width: 991px) { .hero__grid { grid-template-columns: 1fr; gap: 2rem; } }

  /* ============= AUDIENCE CARDS ============= */
  .audience { max-width: var(--container-max); margin: 0 auto; padding: 3rem var(--gutter) 5rem; }
  .audience__grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--c-border); }
  .audience__card { display: flex; flex-direction: column; justify-content: space-between; padding: 2.5rem 2rem 2rem 0; border-right: 1px solid var(--c-border); min-height: 14rem; transition: opacity .3s ease; }
  .audience__card:last-child { border-right: 0; }
  .audience__card:not(:first-child) { padding-left: 2rem; }
  .audience__card:hover { opacity: .7; }
  .audience__eyebrow { font-size: 0.75rem; font-weight: 400; letter-spacing: .1em; text-transform: uppercase; opacity: .55; margin: 0 0 1rem; }
  .audience__title { font-family: var(--ff-display); font-weight: 400; font-size: 1.875rem; line-height: 1.08; letter-spacing: -0.018em; margin: 0 0 1.5rem; }
  .audience__title em { font-style: italic; }
  .audience__cta { font-size: 0.9375rem; font-weight: 400; display: inline-flex; align-items: center; gap: .4rem; margin-top: auto; opacity: .8; }
  .audience__cta::after { content: "→"; transition: transform .3s ease; }
  .audience__card:hover .audience__cta::after { transform: translateX(4px); }
  @media (max-width: 991px) { .audience__grid { grid-template-columns: repeat(2, 1fr); } .audience__card:nth-child(2) { border-right: 0; } .audience__card { padding: 2rem 2rem 2rem 0 !important; border-bottom: 1px solid var(--c-border); } }
  @media (max-width: 479px) { .audience__grid { grid-template-columns: 1fr; } .audience__card { border-right: 0 !important; padding: 2rem 0 !important; } }

  /* ============= FEATURE SPLIT ============= */
  .split { padding: 7rem var(--gutter); max-width: var(--container-max); margin: 0 auto; }
  .split__wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
  .split__wrap--reverse .split__content { order: 2; }
  .split__img { aspect-ratio: 5/6; overflow: hidden; }
  .split__img img { width: 100%; height: 100%; object-fit: cover; }
  .split__heading { font-family: var(--ff-display); font-weight: 400; font-size: clamp(2.25rem, 3.8vw, 3.25rem); line-height: 1.04; letter-spacing: -0.022em; margin: 0 0 1.5rem; }
  .split__heading em { font-style: italic; }
  .split__lead { font-size: 1.0625rem; font-weight: 300; line-height: 1.55; margin: 0 0 2.5rem; max-width: 34rem; opacity: .8; }
  @media (max-width: 991px) { .split__wrap { grid-template-columns: 1fr; gap: 2rem; } .split__wrap--reverse .split__content { order: 0; } }

  /* ============= LIST ============= */
  .list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem 3rem; margin: 0 0 2.5rem; }
  .list__item { display: flex; gap: 1rem; }
  .list__icon { flex: none; width: 1.5rem; height: 1.5rem; display: grid; place-items: center; color: var(--c-dark); padding-top: .2rem; }
  /* ACHTUNG: list__label jetzt NICHT mehr italic */
  .list__label { font-family: var(--ff-body); font-weight: 500; font-size: 0.9375rem; line-height: 1.4; margin: 0 0 .25rem; }
  .list__desc { font-size: 0.875rem; font-weight: 300; line-height: 1.55; opacity: .7; margin: 0; }
  @media (max-width: 479px) { .list { grid-template-columns: 1fr; } }

  /* ============= NUMERIC CALLOUT ============= */
  .callout { padding: 8rem var(--gutter); background: var(--c-primary); color: var(--c-dark); text-align: center; }
  .callout__num { font-family: var(--ff-display); font-weight: 400; font-style: italic; font-size: clamp(5rem, 12vw, 10rem); line-height: .95; letter-spacing: -0.04em; margin: 0 0 1.5rem; }
  .callout__label { font-family: var(--ff-display); font-weight: 400; font-style: italic; font-size: clamp(1.5rem, 2.5vw, 2.25rem); line-height: 1.15; letter-spacing: -0.01em; margin: 0 auto 2rem; max-width: 36rem; }
  .callout__source { font-size: 0.8125rem; font-weight: 300; opacity: .6; }
  .callout__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
  .callout__grid .callout__num { font-size: clamp(2.75rem, 6vw, 5rem); display: block; margin-bottom: .5rem; }
  .callout__grid .callout__label { font-size: 1.0625rem; font-style: normal; max-width: none; }
  @media (max-width: 640px) { .callout__grid { grid-template-columns: repeat(2, 1fr); } }

  /* ============= EDITORIAL QUOTE ============= */
  .equote { padding: 9rem var(--gutter); max-width: 72rem; margin: 0 auto; text-align: center; }
  .equote__mark { font-family: var(--ff-display); font-style: italic; font-size: 5rem; line-height: 1; color: var(--c-dark); opacity: .25; margin: 0 0 1rem; }
  .equote__text { font-family: var(--ff-display); font-weight: 400; font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.1; letter-spacing: -0.02em; margin: 0 auto 3rem; }
  .equote__text em { font-style: italic; }
  .equote__author { display: inline-flex; flex-direction: column; gap: .25rem; }
  .equote__author-name { font-size: 0.9375rem; font-weight: 500; }
  .equote__author-role { font-size: 0.8125rem; font-weight: 300; opacity: .6; }

  /* ============= NEW: PRICE COMPARISON (DE vs Ungarn) ============= */
  .pricecompare { padding: 7rem var(--gutter); max-width: var(--container-max); margin: 0 auto; }
  .pricecompare__head { max-width: 48rem; margin: 0 0 4rem; }
  .pricecompare__heading { font-family: var(--ff-display); font-weight: 400; font-size: clamp(2.25rem, 3.8vw, 3.25rem); line-height: 1.04; letter-spacing: -0.022em; margin: 0 0 1rem; }
  .pricecompare__heading em { font-style: italic; }
  .pricecompare__lead { font-size: 1.0625rem; font-weight: 300; line-height: 1.55; opacity: .75; margin: 0; max-width: 40rem; }
  .pricecompare__table {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
    border-top: 1px solid var(--c-border);
  }
  .pricecompare__row {
    display: contents;
  }
  .pricecompare__cell {
    padding: 1.75rem 1.5rem;
    border-bottom: 1px solid var(--c-border);
    font-size: 0.9375rem;
    display: flex; align-items: center;
  }
  .pricecompare__cell--head {
    font-size: 0.75rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
    opacity: .55; padding-top: 1.25rem; padding-bottom: 1.25rem;
  }
  .pricecompare__cell--treatment {
    font-family: var(--ff-display); font-style: italic; font-weight: 400;
    font-size: 1.25rem; line-height: 1.15; letter-spacing: -0.01em;
  }
  .pricecompare__cell--de { opacity: .5; text-decoration: line-through; font-weight: 400; }
  .pricecompare__cell--sm { font-weight: 500; font-size: 1.0625rem; }
  .pricecompare__cell--sm--highlight {
    background: var(--c-primary);
    font-weight: 500;
    font-size: 1.0625rem;
    position: relative;
    border-left: 2px solid var(--c-primary);
  }
  .pricecompare__cell--saving {
    font-family: var(--ff-display); font-style: italic; font-weight: 400;
    font-size: 1.5rem; letter-spacing: -0.01em;
    color: var(--c-dark);
  }
  .pricecompare__footer {
    margin-top: 1.5rem;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1rem;
  }
  .pricecompare__note { font-size: 0.8125rem; opacity: .55; max-width: 44rem; margin: 0; }
  @media (max-width: 767px) {
    .pricecompare__table { grid-template-columns: 1fr 1fr 1fr; font-size: 0.8125rem; }
    .pricecompare__cell--saving-head, .pricecompare__cell--saving { display: none; }
    .pricecompare__cell { padding: 1rem .75rem; }
    .pricecompare__cell--treatment { font-size: 1rem; }
  }

  /* ============= NEW: BENEFIT STACK (aus Paytient geklaut) ============= */
  .stack { padding: 7rem var(--gutter); max-width: var(--container-max); margin: 0 auto; }
  .stack__wrap { display: grid; grid-template-columns: 1fr 1.3fr; gap: 6rem; align-items: flex-start; }
  .stack__heading {
    font-family: var(--ff-display); font-weight: 400;
    font-size: clamp(2.5rem, 4.5vw, 3.75rem);
    line-height: 1.02; letter-spacing: -0.025em; margin: 0 0 1.5rem;
    position: sticky; top: 6rem;
  }
  .stack__heading em { font-style: italic; }
  .stack__heading-wrap { position: sticky; top: 6rem; }
  .stack__intro { font-size: 1.0625rem; font-weight: 300; line-height: 1.55; opacity: .75; margin: 0 0 2rem; }
  .stack__list { display: flex; flex-direction: column; }
  .stack__item {
    display: grid; grid-template-columns: auto 1fr;
    gap: 2rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--c-border);
    align-items: flex-start;
  }
  .stack__item:first-child { border-top: 1px solid var(--c-border); }
  .stack__num { font-family: var(--ff-display); font-style: italic; font-size: 1.125rem; opacity: .5; padding-top: .4rem; }
  /* ACHTUNG: stack__title NICHT italic-Wechsel */
  .stack__title { font-family: var(--ff-body); font-weight: 500; font-size: 1.375rem; line-height: 1.2; margin: 0 0 .75rem; }
  .stack__desc { font-size: 1rem; font-weight: 300; line-height: 1.6; opacity: .75; margin: 0; max-width: 38rem; }
  @media (max-width: 991px) { .stack__wrap { grid-template-columns: 1fr; gap: 2rem; } .stack__heading-wrap { position: static; } }

  /* ============= NEW: VIDEO FEATURE ============= */
  .videofeat { padding: 4rem var(--gutter) 7rem; max-width: var(--container-max); margin: 0 auto; }
  .videofeat__wrap {
    position: relative; aspect-ratio: 21/9;
    background: var(--c-dark);
    overflow: hidden; cursor: pointer;
  }
  .videofeat__img { width: 100%; height: 100%; object-fit: cover; opacity: .85; transition: opacity .3s ease, transform .5s cubic-bezier(.215,.61,.355,1); }
  .videofeat__wrap:hover .videofeat__img { opacity: 1; transform: scale(1.02); }
  .videofeat__overlay {
    position: absolute; inset: 0;
    display: grid; place-items: center;
    color: var(--c-sand);
  }
  .videofeat__play {
    width: 5rem; height: 5rem; border-radius: 50%;
    background: rgba(255,253,240,.9); color: var(--c-dark);
    display: grid; place-items: center;
    transition: transform .3s ease, background .3s ease;
  }
  .videofeat__wrap:hover .videofeat__play { transform: scale(1.08); background: var(--c-primary); }
  .videofeat__caption {
    position: absolute; bottom: 2rem; left: 2rem; right: 2rem;
    color: var(--c-sand); font-size: 0.875rem; font-weight: 300;
    display: flex; justify-content: space-between; align-items: flex-end;
    gap: 2rem; flex-wrap: wrap;
  }
  /* ACHTUNG: Video-Titel ohne Italic-Wechsel */
  .videofeat__title { font-family: var(--ff-display); font-weight: 400; font-size: 1.875rem; line-height: 1.1; letter-spacing: -0.015em; margin: 0; max-width: 36rem; }
  .videofeat__meta { opacity: .75; flex: none; }

  /* ============= NEW: PRICING CARD ============= */
  .pricing { padding: 7rem var(--gutter); max-width: var(--container-max); margin: 0 auto; }
  .pricing__head { text-align: center; max-width: 44rem; margin: 0 auto 4rem; }
  .pricing__heading { font-family: var(--ff-display); font-weight: 400; font-size: clamp(2.25rem, 3.8vw, 3.25rem); line-height: 1.04; letter-spacing: -0.022em; margin: 0; }
  .pricing__heading em { font-style: italic; }
  .pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .pricing__card {
    display: flex; flex-direction: column;
    padding: 2.5rem 2rem;
    border: 1px solid var(--c-border);
    border-radius: 0;
    transition: background .3s ease;
  }
  .pricing__card--featured { background: var(--c-dark); color: var(--c-sand); border-color: var(--c-dark); }
  .pricing__card-badge { margin-bottom: 1.25rem; }
  /* ACHTUNG: pricing__name ohne Italic-Wechsel */
  .pricing__name { font-family: var(--ff-body); font-weight: 500; font-size: 1.125rem; margin: 0 0 .5rem; }
  .pricing__desc { font-size: 0.875rem; font-weight: 300; opacity: .7; margin: 0 0 2rem; line-height: 1.5; }
  .pricing__price { display: flex; align-items: baseline; gap: .5rem; margin-bottom: 2rem; }
  .pricing__price-from { font-size: 0.75rem; font-weight: 400; opacity: .6; letter-spacing: .1em; text-transform: uppercase; }
  .pricing__price-amount { font-family: var(--ff-display); font-weight: 400; font-size: 3rem; line-height: 1; letter-spacing: -0.02em; }
  .pricing__price-unit { font-size: 0.875rem; opacity: .7; }
  .pricing__features { list-style: none; padding: 0; margin: 0 0 2.5rem; display: flex; flex-direction: column; gap: .625rem; }
  .pricing__feature { display: flex; gap: .625rem; align-items: flex-start; font-size: 0.9375rem; font-weight: 300; line-height: 1.5; }
  .pricing__feature svg { flex: none; margin-top: .2rem; }
  .pricing__cta { margin-top: auto; }
  @media (max-width: 991px) { .pricing__grid { grid-template-columns: 1fr; } }

  /* ============= NEW: VERTICAL TIMELINE ============= */
  .timeline { padding: 7rem var(--gutter); max-width: 72rem; margin: 0 auto; }
  .timeline__head { max-width: 44rem; margin: 0 0 4rem; }
  .timeline__heading { font-family: var(--ff-display); font-weight: 400; font-size: clamp(2.25rem, 3.8vw, 3.25rem); line-height: 1.04; letter-spacing: -0.022em; margin: 0; }
  .timeline__heading em { font-style: italic; }
  .timeline__list { position: relative; }
  .timeline__list::before { content: ""; position: absolute; left: 1rem; top: 1rem; bottom: 1rem; width: 1px; background: var(--c-border); }
  .timeline__item { display: grid; grid-template-columns: auto 1fr auto; gap: 2rem; padding: 1.5rem 0; align-items: flex-start; position: relative; }
  .timeline__dot { width: 2rem; height: 2rem; border-radius: 50%; background: var(--c-sand); border: 1px solid var(--c-border-strong); display: grid; place-items: center; position: relative; z-index: 1; }
  .timeline__dot-inner { width: .5rem; height: .5rem; border-radius: 50%; background: var(--c-dark); }
  .timeline__dot--active { background: var(--c-primary); border-color: var(--c-dark); }
  /* ACHTUNG: timeline__title ohne Italic-Wechsel */
  .timeline__title { font-family: var(--ff-body); font-weight: 500; font-size: 1.0625rem; margin: .25rem 0 .5rem; }
  .timeline__desc { font-size: 0.9375rem; font-weight: 300; opacity: .75; line-height: 1.55; margin: 0; max-width: 40rem; }
  .timeline__meta { font-size: 0.8125rem; opacity: .55; font-weight: 300; padding-top: .5rem; white-space: nowrap; }
  @media (max-width: 767px) { .timeline__item { grid-template-columns: auto 1fr; } .timeline__meta { grid-column: 2; padding-top: 0; margin-top: .25rem; } }

  /* ============= MASONRY (erweitert mit Author) ============= */
  .masonry { padding: 7rem var(--gutter); max-width: var(--container-max); margin: 0 auto; }
  .masonry__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; margin-bottom: 4rem; flex-wrap: wrap; }
  .masonry__heading { font-family: var(--ff-display); font-weight: 400; font-size: clamp(2.25rem, 3.8vw, 3.25rem); line-height: 1.04; letter-spacing: -0.022em; margin: 0; max-width: 38rem; }
  .masonry__heading em { font-style: italic; }
  .masonry__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: auto auto; gap: 1.5rem; }
  .masonry__item { display: flex; flex-direction: column; }
  .masonry__item--feature { grid-row: span 2; }
  .masonry__item--tall { grid-row: span 2; }
  .masonry__img { overflow: hidden; margin-bottom: 1.25rem; transition: transform .5s cubic-bezier(.215,.61,.355,1); }
  .masonry__item--feature .masonry__img { aspect-ratio: 4/5; }
  .masonry__item--tall .masonry__img { aspect-ratio: 3/4; }
  .masonry__item:not(.masonry__item--feature):not(.masonry__item--tall) .masonry__img { aspect-ratio: 4/3; }
  .masonry__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.215,.61,.355,1); }
  .masonry__item:hover .masonry__img img { transform: scale(1.04); }
  .masonry__tag-row { display: flex; gap: .5rem; margin: 0 0 .75rem; flex-wrap: wrap; }
  .masonry__tag { font-size: 0.75rem; font-weight: 400; letter-spacing: .1em; text-transform: uppercase; opacity: .55; }
  /* ACHTUNG: masonry__title OHNE Italic-Wechsel außer im feature-Titel */
  .masonry__title { font-family: var(--ff-display); font-weight: 400; font-size: 1.5rem; line-height: 1.12; letter-spacing: -0.012em; margin: 0 0 .5rem; }
  .masonry__item--feature .masonry__title { font-size: 2.25rem; }
  .masonry__item--feature .masonry__title em { font-style: italic; }
  .masonry__excerpt { font-size: 0.9375rem; font-weight: 300; opacity: .7; line-height: 1.5; margin: 0 0 1rem; }

  /* Author-Karte */
  .author { display: flex; gap: .75rem; align-items: center; margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--c-border); }
  .author__avatar { width: 2rem; height: 2rem; border-radius: 50%; overflow: hidden; flex: none; }
  .author__avatar img { width: 100%; height: 100%; object-fit: cover; }
  .author__info { display: flex; flex-direction: column; gap: .1rem; }
  .author__name { font-size: 0.8125rem; font-weight: 500; }
  .author__role { font-size: 0.6875rem; opacity: .6; }

  @media (max-width: 991px) { .masonry__grid { grid-template-columns: 1fr 1fr; } .masonry__item--feature, .masonry__item--tall { grid-row: auto; } }
  @media (max-width: 479px) { .masonry__grid { grid-template-columns: 1fr; } }

  /* ============= TEASER CARDS ============= */
  .teasers { padding: 5rem var(--gutter); max-width: var(--container-max); margin: 0 auto; }
  .teasers__head { max-width: 44rem; margin: 0 0 3rem; }
  .teasers__heading { font-family: var(--ff-display); font-weight: 400; font-size: clamp(2.5rem, 4.5vw, 3.75rem); line-height: 1.04; letter-spacing: -0.022em; margin: 0; }
  .teasers__heading em { font-style: italic; }
  .teasers__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
  .teaser { display: flex; flex-direction: column; transition: transform .3s ease; }
  .teaser:hover { transform: translateY(-4px); }
  .teaser__img { aspect-ratio: 4/3; overflow: hidden; margin-bottom: 1rem; position: relative; }
  .teaser__img img { width: 100%; height: 100%; object-fit: cover; }
  .teaser__badge { position: absolute; top: .75rem; left: .75rem; }
  .teaser__tag { font-size: 0.6875rem; letter-spacing: .12em; text-transform: uppercase; opacity: .55; margin: 0 0 .375rem; }
  /* ACHTUNG: teaser__title OHNE Italic-Wechsel */
  .teaser__title { font-family: var(--ff-display); font-weight: 400; font-size: 1.125rem; line-height: 1.2; letter-spacing: -0.01em; margin: 0; }
  @media (max-width: 991px) { .teasers__grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 479px) { .teasers__grid { grid-template-columns: 1fr; } }

  /* ============= INFO GRID ============= */
  .infogrid { padding: 6rem var(--gutter); max-width: var(--container-max); margin: 0 auto; }
  .infogrid__head { text-align: center; max-width: 40rem; margin: 0 auto 4rem; }
  .infogrid__heading { font-family: var(--ff-display); font-weight: 400; font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.05; letter-spacing: -0.02em; margin: 0; }
  .infogrid__heading em { font-style: italic; }
  .infogrid__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); }
  .infogrid__item { padding: 2.5rem 1.5rem; border-right: 1px solid var(--c-border); display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
  .infogrid__item:last-child { border-right: 0; }
  .infogrid__icon { width: 2.5rem; height: 2.5rem; border-radius: 50%; background: var(--c-tertiary); display: grid; place-items: center; color: var(--c-dark); flex: none; }
  /* ACHTUNG: infogrid__title OHNE Italic-Wechsel */
  .infogrid__title { font-family: var(--ff-body); font-weight: 500; font-size: 1.0625rem; line-height: 1.3; margin: 0; }
  .infogrid__desc { font-size: 0.875rem; font-weight: 300; line-height: 1.5; opacity: .7; margin: 0; }
  @media (max-width: 991px) { .infogrid__grid { grid-template-columns: repeat(2, 1fr); } .infogrid__item:nth-child(2) { border-right: 0; } .infogrid__item { border-bottom: 1px solid var(--c-border); } .infogrid__item:nth-last-child(-n+2) { border-bottom: 0; } }
  @media (max-width: 479px) { .infogrid__grid { grid-template-columns: 1fr; } .infogrid__item { border-right: 0 !important; } }

  /* ============= STD ============= */
  .std { background: var(--c-dark); color: var(--c-sand); }
  .std__wrap { display: grid; grid-template-columns: .9fr 1fr; gap: 5rem; align-items: center; padding: 6rem var(--gutter); max-width: var(--container-max); margin: 0 auto; }
  .std__content { max-width: 32rem; }
  .std__heading { font-family: var(--ff-display); font-weight: 400; font-size: clamp(2.5rem, 4.5vw, 3.75rem); line-height: 1.04; letter-spacing: -0.02em; margin: 0 0 1.75rem; }
  .std__heading em { font-style: italic; }
  .std__lead { font-size: 1.0625rem; font-weight: 300; line-height: 1.55; margin-bottom: 3rem; opacity: .8; }
  .std__img-area { aspect-ratio: 4/3; background: var(--c-primary); position: relative; overflow: hidden; }
  .std__img-area img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: luminosity; opacity: .85; }
  @media (max-width: 991px) { .std__wrap { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 1.25rem; } }

  /* ============= STAT MARQUEE ============= */
  .marquee { padding: 4rem 0 5rem; border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); overflow: hidden; }
  .marquee__heading { text-align: center; margin: 0 0 4rem; padding: 0 2rem; font-family: var(--ff-display); font-weight: 400; font-size: clamp(2rem, 3vw, 2.625rem); line-height: 1.08; letter-spacing: -0.018em; }
  .marquee__heading em { font-style: italic; }
  .marquee__track { display: flex; align-items: center; mask: linear-gradient(90deg, transparent 0%, #000 12% 88%, transparent 100%); -webkit-mask: linear-gradient(90deg, transparent 0%, #000 12% 88%, transparent 100%); }
  .marquee__list { display: flex; gap: 0; align-items: center; flex: none; animation: scroll 30s linear infinite; }
  .marquee__track:hover .marquee__list { animation-play-state: paused; }
  @keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  .marquee__block { min-width: max-content; display: flex; align-items: center; gap: 1.5rem; padding: 0 3rem; border-right: 1px solid var(--c-border); flex: none; }
  .marquee__number { font-family: var(--ff-display); font-weight: 400; font-size: 4.5rem; line-height: 1; letter-spacing: -0.03em; }
  .marquee__info { display: flex; flex-direction: column; max-width: 14rem; }
  .marquee__label { font-family: var(--ff-display); font-weight: 400; font-size: 1.5rem; line-height: 1.1; letter-spacing: -0.01em; }
  .marquee__label em { font-style: italic; }
  .marquee__para { font-size: 0.875rem; font-weight: 300; opacity: .6; margin-top: .25rem; }

  /* ============= LOGOS ============= */
  .logos { background: #0a044b; color: var(--c-white); padding: 2.5rem 0; overflow: hidden; }
  .logos__heading { text-align: center; font-size: 0.75rem; font-weight: 400; letter-spacing: .12em; text-transform: uppercase; opacity: .5; margin: 0 0 2rem; padding: 0 2rem; }
  .logos__track { display: flex; align-items: center; mask: linear-gradient(90deg, transparent 0%, #000 14% 86%, transparent 100%); -webkit-mask: linear-gradient(90deg, transparent 0%, #000 14% 86%, transparent 100%); }
  .logos__list { display: flex; gap: 4rem; align-items: center; flex: none; padding-left: 4rem; animation: scroll 40s linear infinite; }
  .logos__item { font-family: var(--ff-display); font-size: 1.375rem; font-style: italic; opacity: .55; flex: none; white-space: nowrap; letter-spacing: -0.01em; }

  /* ============= FAQ ACCORDION ============= */
  .faq { padding: 7rem var(--gutter); max-width: var(--container-max); margin: 0 auto; }
  .faq__wrap { display: grid; grid-template-columns: .7fr 1.5fr; gap: 5rem; align-items: flex-start; }
  .faq__heading { font-family: var(--ff-display); font-weight: 400; font-size: clamp(2.25rem, 3.8vw, 3.25rem); line-height: 1.04; letter-spacing: -0.022em; margin: 0 0 1.5rem; position: sticky; top: 6rem; }
  .faq__heading em { font-style: italic; }
  .faq__intro { font-size: 1rem; font-weight: 300; line-height: 1.55; opacity: .7; margin: 0 0 2rem; }
  .faq__list { border-top: 1px solid var(--c-border); }
  .faq__item { border-bottom: 1px solid var(--c-border); }
  .faq__trigger { width: 100%; padding: 1.75rem 0; display: flex; justify-content: space-between; align-items: center; gap: 2rem; text-align: left; cursor: pointer; transition: opacity .3s ease; }
  .faq__trigger:hover { opacity: .7; }
  /* ACHTUNG: faq__q jetzt OHNE Italic-Wechsel! Komplett regular. */
  .faq__q { font-family: var(--ff-display); font-weight: 400; font-size: 1.375rem; line-height: 1.2; letter-spacing: -0.01em; margin: 0; flex: 1; }
  .faq__plus { flex: none; width: 2rem; height: 2rem; border: 1px solid var(--c-border-strong); border-radius: 50%; display: grid; place-items: center; position: relative; transition: background .3s ease, transform .3s ease; }
  .faq__plus::before, .faq__plus::after { content: ""; position: absolute; background: var(--c-dark); transition: transform .3s cubic-bezier(.215,.61,.355,1); }
  .faq__plus::before { width: .75rem; height: 1px; }
  .faq__plus::after { width: 1px; height: .75rem; }
  .faq__item[aria-expanded="true"] .faq__plus { background: var(--c-dark); }
  .faq__item[aria-expanded="true"] .faq__plus::before, .faq__item[aria-expanded="true"] .faq__plus::after { background: var(--c-sand); }
  .faq__item[aria-expanded="true"] .faq__plus::after { transform: rotate(90deg); }
  .faq__answer { padding: 0 0 1.75rem; max-width: 44rem; font-size: 1rem; font-weight: 300; line-height: 1.6; opacity: .75; }
  @media (max-width: 991px) { .faq__wrap { grid-template-columns: 1fr; gap: 2rem; } .faq__heading { position: static; } }

  /* ============= FEATURES (4-Schritte) ============= */
  .features { padding: 7rem var(--gutter); max-width: var(--container-max); margin: 0 auto; }
  .features__head { max-width: 44rem; margin: 0 0 5rem; }
  .features__heading { font-family: var(--ff-display); font-weight: 400; font-size: clamp(2.5rem, 4.5vw, 3.75rem); line-height: 1.04; letter-spacing: -0.022em; margin: 0; }
  .features__heading em { font-style: italic; }
  .features__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--c-border); }
  .features__item { padding: 2.5rem 2rem; display: flex; flex-direction: column; gap: 2.5rem; border-right: 1px solid var(--c-border); min-height: 22rem; }
  .features__item:last-child { border-right: 0; }
  .features__num { font-family: var(--ff-display); font-weight: 400; font-style: italic; font-size: 1.5rem; opacity: .4; letter-spacing: -0.02em; }
  /* ACHTUNG: features__title OHNE Italic-Wechsel */
  .features__title { font-family: var(--ff-display); font-weight: 400; font-size: 1.625rem; line-height: 1.08; letter-spacing: -0.015em; margin: 0 0 .75rem; }
  .features__desc { font-size: 0.9375rem; font-weight: 300; line-height: 1.55; opacity: .7; }
  @media (max-width: 991px) { .features__grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 479px) { .features__grid { grid-template-columns: 1fr; } }

  /* ============= TESTIMONIAL ============= */
  .testimonial { background: var(--c-tertiary); padding: 6rem 0 2.5rem; }
  .testimonial__inner { max-width: 82rem; margin: 0 auto; padding: 0 2.5rem; }
  .testimonial__header { text-align: center; margin-bottom: 4rem; }
  .testimonial__title { font-family: var(--ff-display); font-weight: 400; font-size: clamp(2.25rem, 3.5vw, 3rem); line-height: 1.05; letter-spacing: -0.02em; margin: 0; }
  .testimonial__title em { font-style: italic; }
  .testimonial__block { display: grid; grid-template-columns: .45fr 1fr; gap: 3rem; background: var(--c-sand); padding: 2rem; }
  .testimonial__img-parent { aspect-ratio: 1/1; background: var(--c-tertiary); overflow: hidden; }
  .testimonial__img-parent img { width: 100%; height: 100%; object-fit: cover; }
  .testimonial__content { display: flex; flex-direction: column; justify-content: space-between; gap: 3rem; padding: 1rem 0; }
  .testimonial__quote { font-family: var(--ff-display); font-weight: 400; font-size: clamp(1.5rem, 2.3vw, 2rem); line-height: 1.18; letter-spacing: -0.015em; margin: 0; }
  .testimonial__quote em { font-style: italic; }
  .testimonial__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; align-items: flex-end; padding-top: 2rem; border-top: 1px solid var(--c-border); }
  .testimonial__about { display: flex; flex-direction: column; gap: .25rem; }
  .testimonial__name { font-size: 0.9375rem; font-weight: 400; }
  .testimonial__role { font-size: 0.8125rem; opacity: .6; }
  @media (max-width: 991px) { .testimonial__block { grid-template-columns: 1fr; } }

  /* ============= CTA ============= */
  .cta { background: var(--c-dark); color: var(--c-sand); border-top-left-radius: 24px; border-top-right-radius: 24px; margin-top: 4rem; }
  .cta__wrap { display: grid; grid-template-columns: 1fr .75fr; align-items: center; max-width: var(--container-max); margin: 0 auto; }
  .cta__content { padding: 6rem 4rem; max-width: 38rem; }
  .cta__heading { font-family: var(--ff-display); font-weight: 400; font-size: clamp(2.25rem, 3.8vw, 3.25rem); line-height: 1.04; letter-spacing: -0.022em; margin: 0 0 1.5rem; }
  .cta__heading em { font-style: italic; }
  .cta__sub { font-size: 1.0625rem; font-weight: 300; line-height: 1.55; margin: 0 0 3rem; max-width: 32rem; opacity: .75; }
  .cta__img { height: 100%; min-height: 24rem; background: transparent; overflow: hidden; }
  .cta__img img { width: 100%; height: 100%; object-fit: cover; }
  @media (max-width: 991px) { .cta__wrap { grid-template-columns: 1fr; } .cta__content { padding: 4rem 1.5rem; } }

  /* ============= FOOTER ============= */
  .footer { background: var(--c-sand); padding: 5rem 0 2rem; }
  .footer__inner { max-width: var(--container-max); margin: 0 auto; padding: 0 2.5rem; }
  .footer__newsletter { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; padding-bottom: 4rem; border-bottom: 1px solid var(--c-border); align-items: center; }
  .footer__newsletter-heading { font-family: var(--ff-display); font-weight: 400; font-size: clamp(2rem, 3vw, 2.75rem); line-height: 1.08; letter-spacing: -0.02em; margin: 0 0 .75rem; }
  .footer__newsletter-heading em { font-style: italic; }
  .footer__newsletter-sub { font-size: 0.9375rem; font-weight: 300; opacity: .7; margin: 0; max-width: 32rem; }
  .footer__newsletter-form { display: flex; gap: .5rem; }
  .footer__newsletter-input { flex: 1; padding: .75rem 1.25rem; background: transparent; border: 1px solid var(--c-border-strong); border-radius: 100vw; font-family: var(--ff-body); font-size: 0.9375rem; font-weight: 300; color: var(--c-dark); }
.footer__newsletter-hidden { display: none !important; }
.footer__newsletter-msg { font-size: 0.8125rem; margin-top: 0.75rem; width: 100%; }
.footer__newsletter-success { color: var(--c-dark); opacity: 0.7; }
.footer__newsletter-error { color: #8b3a3a; }
  .footer__newsletter-input::placeholder { color: var(--c-dark); opacity: .5; }
  @media (max-width: 991px) { .footer__newsletter { grid-template-columns: 1fr; gap: 2rem; } }

  .footer__sitemap { display: grid; grid-template-columns: 1.4fr repeat(5, 1fr); gap: 3rem; padding: 4rem 0; border-bottom: 1px solid var(--c-border); }
  .footer__brand-logo { font-family: var(--ff-display); font-style: italic; font-size: 2rem; letter-spacing: -0.02em; line-height: 1; }
  .footer__brand-text { font-size: 0.875rem; font-weight: 300; line-height: 1.55; opacity: .7; margin: 1.25rem 0 1.5rem; max-width: 26ch; }
  .footer__brand-contact { display: flex; flex-direction: column; gap: .5rem; font-size: 0.875rem; font-weight: 300; }
  .footer__brand-contact a { display: inline-flex; align-items: center; gap: .5rem; opacity: .8; }
  .footer__brand-contact a:hover { opacity: 1; }
  .footer__col-title { font-size: 0.75rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; opacity: .55; margin: 0 0 1.25rem; }
  .footer__col-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .625rem; }
  .footer__col-links a { font-size: 0.9375rem; font-weight: 300; opacity: .85; transition: opacity .2s ease; display: inline-block; }
  .footer__col-links a:hover { opacity: 1; }
  .footer__col-links li.is-link-all a { font-weight: 400; padding-top: .5rem; opacity: 1; }
  @media (max-width: 1199px) { .footer__sitemap { grid-template-columns: 1fr 1fr 1fr; } }
  @media (max-width: 767px) { .footer__sitemap { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 479px) { .footer__sitemap { grid-template-columns: 1fr; } }

  .footer__social-row { display: flex; justify-content: space-between; align-items: center; padding: 2.5rem 0; gap: 2rem; flex-wrap: wrap; border-bottom: 1px solid var(--c-border); }
  .footer__social-links { display: flex; gap: .75rem; }
  .footer__social-link { width: 2.25rem; height: 2.25rem; border-radius: 50%; border: 1px solid var(--c-border-strong); display: grid; place-items: center; opacity: .7; transition: opacity .3s ease, background .3s ease, color .3s ease; }
  .footer__social-link:hover { opacity: 1; background: var(--c-dark); color: var(--c-sand); border-color: var(--c-dark); }
  .footer__cert { display: flex; gap: 1.5rem; align-items: center; font-size: 0.75rem; opacity: .55; flex-wrap: wrap; }
  .footer__cert-badge { padding: .375rem .75rem; border: 1px solid var(--c-border-strong); border-radius: 4px; font-weight: 500; letter-spacing: .05em; text-transform: uppercase; }

  .footer__center { padding: 4rem 0 1rem; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--c-border); gap: 2rem; flex-wrap: wrap; }
  .footer__logo { font-family: var(--ff-display); font-style: italic; font-size: clamp(3rem, 7vw, 6rem); color: var(--c-dark); letter-spacing: -0.025em; line-height: 1; }
  .footer__actions { display: flex; gap: .5rem; flex-wrap: wrap; }
  .footer__legal { display: flex; justify-content: space-between; gap: 4rem; padding-top: 2rem; flex-wrap: wrap; }
  .footer__legal-content { max-width: 54rem; font-size: 0.75rem; font-weight: 300; line-height: 1.6; opacity: .55; }
  .footer__legal-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
  .footer__legal-link { font-size: 0.8125rem; font-weight: 300; opacity: .7; }
  .footer__legal-link:hover { opacity: 1; }

/* ============================================================
   SUBPAGE COMPONENTS (v2 design system)
   ============================================================ */

/* ============= PAGE HERO (Subpages) ============= */
.page-hero {
  max-width: var(--container-max); margin: 0 auto;
  padding: var(--section-py, clamp(4.5rem, 9vw, 7.5rem)) var(--gutter) clamp(2rem, 4vw, 3rem);
}
.page-hero__heading {
  font-family: var(--ff-display); font-weight: 400;
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  line-height: 1.055; letter-spacing: -0.025em;
  margin: 0 0 1.5rem;
}
.page-hero__heading em { font-style: italic; }
.page-hero__lead {
  font-size: 1.125rem; font-weight: 300; line-height: 1.55;
  opacity: .75; margin: 0; max-width: 40rem;
}
.lead {
  font-size: 1.125rem; font-weight: 300; line-height: 1.55;
  opacity: .75; margin: 0; max-width: 40rem;
}
@media (max-width: 767px) { .page-hero { padding: 3rem 1.25rem 2rem; } }

/* ============= PAGE CONTENT (default template) ============= */
.page-content {
  max-width: 54rem; margin: 0 auto;
  padding: 0 2.5rem 5rem;
  font-size: 1.0625rem; font-weight: 300; line-height: 1.65;
}
.page-content h2 {
  font-family: var(--ff-display); font-weight: 400;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.08; letter-spacing: -0.018em;
  margin: 3rem 0 1rem;
}
.page-content h2 em { font-style: italic; }
.page-content h3 {
  font-family: var(--ff-body); font-weight: 500;
  font-size: 1.25rem; margin: 2.5rem 0 .75rem;
}
.page-content p { margin: 0 0 1.25rem; opacity: .8; }
.page-content ul, .page-content ol { padding-left: 1.25rem; margin: 0 0 1.5rem; }
.page-content li { margin-bottom: .5rem; opacity: .8; }
.page-content a { text-decoration: underline; text-underline-offset: .2em; text-decoration-thickness: 1px; }
@media (max-width: 767px) { .page-content { padding: 0 1.25rem 3rem; } }

/* ============= PAGE PROSE (default template content wrapper) ============= */
.page-prose {
  max-width: 44rem;
  font-size: 1.0625rem; font-weight: 300; line-height: 1.65;
}
.page-prose h2 {
  font-family: var(--ff-display); font-weight: 400;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.08; letter-spacing: -0.018em;
  margin: 3rem 0 1rem;
}
.page-prose h2 em { font-style: italic; }
.page-prose h3 {
  font-family: var(--ff-body); font-weight: 500;
  font-size: 1.25rem; margin: 2.5rem 0 .75rem;
}
.page-prose p { margin: 0 0 1.25rem; opacity: .8; }
.page-prose ul, .page-prose ol { padding-left: 1.25rem; margin: 0 0 1.5rem; }
.page-prose li { margin-bottom: .5rem; opacity: .8; }
.page-prose a { text-decoration: underline; text-underline-offset: .2em; text-decoration-thickness: 1px; }
.page-prose img { border-radius: var(--r-md, 10px); margin: 2rem 0; }

/* ============= STANDORTE ============= */
.standorte-grid-section {
  max-width: var(--container-max); margin: 0 auto;
  padding: 2rem var(--gutter) 5rem;
}
.standorte-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.standorte-card {
  display: flex; flex-direction: column;
  background: transparent; border: 1px solid var(--c-border);
  border-radius: .75rem; overflow: hidden;
  text-decoration: none; color: inherit;
  transition: transform .35s cubic-bezier(.215,.61,.355,1), box-shadow .35s cubic-bezier(.215,.61,.355,1);
}
.standorte-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px -8px rgba(41, 18, 69, 0.10);
}
.standorte-card__img {
  aspect-ratio: 3/2; overflow: hidden;
}
.standorte-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.standorte-card:hover .standorte-card__img img { transform: scale(1.03); }
.standorte-card__body {
  padding: 1.5rem; display: flex; flex-direction: column;
  gap: .75rem; flex: 1;
}
.standorte-card__body .header-xs { margin: 0; }
.standorte-card__address {
  font-style: normal; font-size: 0.875rem; font-weight: 300;
  opacity: .7; margin: 0;
}
.standorte-card__tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: auto; padding-top: .5rem; }
.standorte-card__facts {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .25rem;
  font-size: 0.8125rem; font-weight: 300; opacity: .6;
}
.standorte-card__facts li { display: flex; align-items: center; gap: .5rem; }
.standorte-card__facts li::before {
  content: ""; width: .375rem; height: .375rem;
  border-radius: 50%; background: var(--c-primary); flex: none;
}
@media (max-width: 991px) { .standorte-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 479px) { .standorte-grid { grid-template-columns: 1fr; } }

/* ============= WARUM GRID ============= */
.warum-section {
  max-width: var(--container-max); margin: 0 auto;
  padding: 5rem var(--gutter) 7rem;
}
.warum-section__head { max-width: 38rem; margin: 0 0 4rem; }
.warum-section__heading {
  font-family: var(--ff-display); font-weight: 400;
  font-size: clamp(2.25rem, 3.8vw, 3.25rem);
  line-height: 1.04; letter-spacing: -0.022em; margin: 0;
}
.warum-section__heading em { font-style: italic; }
.warum-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border);
}
.warum-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--c-border);
  display: flex; flex-direction: column; gap: .75rem;
}
.warum-item:last-child { border-right: 0; }
.warum-item__num {
  font-family: var(--ff-display); font-style: italic;
  font-size: 1.125rem; opacity: .35; letter-spacing: -0.01em;
}
.warum-item__title {
  font-family: var(--ff-body); font-weight: 500;
  font-size: 1.0625rem; line-height: 1.3; margin: 0;
}
.warum-item__desc {
  font-size: 0.875rem; font-weight: 300; line-height: 1.55;
  opacity: .7; margin: 0;
}
@media (max-width: 991px) {
  .warum-grid { grid-template-columns: repeat(2, 1fr); }
  .warum-item:nth-child(2) { border-right: 0; }
  .warum-item { border-bottom: 1px solid var(--c-border); }
  .warum-item:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 479px) {
  .warum-grid { grid-template-columns: 1fr; }
  .warum-item { border-right: 0 !important; }
}

/* ============= KONTAKT ============= */
.kontakt-section {
  max-width: 72rem; margin: 0 auto;
  padding: 0 2.5rem 7rem;
}
.kontakt-grid {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 5rem; align-items: flex-start;
}
.kontakt-form-wrap {}
.kontakt-form__heading {
  font-family: var(--ff-display); font-weight: 400;
  font-size: 1.875rem; line-height: 1.1; letter-spacing: -0.015em;
  margin: 0 0 2.5rem;
}
.kontakt-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-field { display: flex; flex-direction: column; gap: .375rem; }
.form-field__label {
  font-size: 0.8125rem; font-weight: 400;
  letter-spacing: .04em; opacity: .65;
}
.form-field__input {
  padding: .875rem 1.125rem;
  background: transparent;
  border: 1px solid var(--c-border-strong);
  font-family: var(--ff-body); font-size: 0.9375rem; font-weight: 300;
  color: var(--c-dark);
  transition: border-color .3s ease;
}
.form-field__input:focus { outline: none; border-color: var(--c-primary); box-shadow: 0 0 0 3px rgba(244,255,146,.35); }
.form-field__input::placeholder { color: var(--c-dark); opacity: .4; }
.form-field__input--textarea { resize: vertical; min-height: 8rem; }
.form-field--checkbox {
  flex-direction: row; align-items: flex-start; gap: .625rem;
  font-size: 0.875rem; font-weight: 300; opacity: .75;
}
.form-field--checkbox input[type="checkbox"] {
  margin-top: .2rem; flex: none;
  width: 1rem; height: 1rem;
  accent-color: var(--c-dark);
}
@media (max-width: 991px) {
  .kontakt-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* ============= KONTAKT INFO ============= */
.kontakt-info {
  display: flex; flex-direction: column; gap: 2.25rem;
  background: transparent; border: 1px solid var(--c-border);
  border-radius: 1rem; padding: 2.5rem;
  align-self: flex-start;
}
.kontakt-info__block {
  display: flex; gap: 1rem; align-items: flex-start;
}
.kontakt-info__icon {
  flex: none; width: 2.5rem; height: 2.5rem;
  border-radius: 50%; background: rgba(41,18,69,.06);
  display: flex; align-items: center; justify-content: center;
}
.kontakt-info__title {
  font-family: var(--ff-body); font-weight: 500;
  font-size: 0.8125rem; letter-spacing: .08em;
  text-transform: uppercase; opacity: .55; margin: 0;
}
.kontakt-info__value {
  font-family: var(--ff-display); font-weight: 400;
  font-size: 1.5rem; line-height: 1.15; letter-spacing: -0.01em;
}
.kontakt-info__detail {
  font-size: 0.9375rem; font-weight: 300; opacity: .65;
  margin: 0; line-height: 1.5;
}

/* ============= TRUST STRIP (Kontakt page) ============= */
.trust-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  border-top: 1px solid var(--c-border); padding-top: 3rem;
}
.trust-strip__item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: .75rem;
}
.trust-strip__icon {
  width: 2.75rem; height: 2.75rem; border-radius: 50%;
  background: rgba(41,18,69,.06);
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.trust-strip__title { font-weight: 500; font-size: 0.9375rem; margin: 0 0 .25rem; }
.trust-strip__desc { font-size: 0.8125rem; font-weight: 300; opacity: .55; margin: 0; }
@media (max-width: 991px) { .trust-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 479px) { .trust-strip { grid-template-columns: 1fr; } }

/* ============= ÜBER UNS: ZAHLEN ============= */
.ueber-zahlen {
  background: var(--c-primary); color: var(--c-dark);
  padding: 5rem var(--gutter);
}
.ueber-zahlen__grid {
  max-width: 72rem; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; text-align: center;
}
.ueber-zahl-item {
  display: flex; flex-direction: column; gap: .5rem;
  padding: 1.5rem 1rem;
}
.ueber-zahl-item__num {
  font-family: var(--ff-display); font-weight: 400; font-style: italic;
  font-size: clamp(2.75rem, 5vw, 4rem);
  line-height: 1; letter-spacing: -0.03em;
}
.ueber-zahl-item__label {
  font-size: 0.9375rem; font-weight: 400; opacity: .65;
}
@media (max-width: 767px) {
  .ueber-zahlen__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 479px) {
  .ueber-zahlen__grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
}

/* ============= ÜBER UNS: MISSION ============= */
.mission-section {
  max-width: 72rem; margin: 0 auto;
  padding: 5rem var(--gutter) 6rem;
}
.mission-section__grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 5rem; align-items: flex-start;
}
.mission-section__heading {
  font-family: var(--ff-display); font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 1.06; letter-spacing: -0.02em; margin: 0;
  position: sticky; top: 6rem;
}
.mission-section__heading em { font-style: italic; }
.mission-text {
  font-size: 1.0625rem; font-weight: 300; line-height: 1.65; opacity: .8;
}
.mission-text p { margin: 0 0 1.25rem; }
.mission-text p:last-child { margin-bottom: 0; }
@media (max-width: 991px) {
  .mission-section__grid { grid-template-columns: 1fr; gap: 2rem; }
  .mission-section__heading { position: static; }
}

/* ============= SO FUNKTIONIERT'S: STEPS TIMELINE ============= */
.sf-steps-section {
  max-width: 72rem; margin: 0 auto;
  padding: 2rem var(--gutter) 5rem;
}
.sf-steps {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--c-border);
}
.sf-step {
  display: grid; grid-template-columns: auto 1fr .6fr;
  gap: 2.5rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--c-border);
  align-items: flex-start;
}
.sf-step__marker {
  display: flex; flex-direction: column; align-items: center;
  gap: 0; position: relative; min-height: 100%;
}
.sf-step__num {
  width: 3rem; height: 3rem;
  border-radius: 50%; border: 1px solid var(--c-border-strong);
  display: grid; place-items: center;
  font-family: var(--ff-display); font-style: italic;
  font-size: 1rem; opacity: .55;
  background: var(--c-sand); position: relative; z-index: 1;
  flex: none;
}
.sf-step:first-child .sf-step__num {
  background: var(--c-primary); border-color: var(--c-dark); opacity: 1;
}
.sf-step__line {
  width: 1px; flex: 1; background: var(--c-border);
  margin-top: 0;
}
.sf-step__title {
  font-family: var(--ff-body); font-weight: 500;
  font-size: 1.375rem; line-height: 1.2;
  margin: .5rem 0 .75rem;
}
.sf-step__body {
  font-size: 1rem; font-weight: 300; line-height: 1.6;
  opacity: .75; margin: 0 0 1.5rem; max-width: 38rem;
}
.sf-step__aside {
  padding: 1.5rem; background: var(--c-tertiary);
  border-radius: 0; align-self: flex-start;
}
.sf-step__aside-text {
  font-size: 0.875rem; font-weight: 300; line-height: 1.55;
  opacity: .7; margin: 0;
}
@media (max-width: 991px) {
  .sf-step { grid-template-columns: auto 1fr; }
  .sf-step__aside { grid-column: 2; margin-top: -.5rem; }
}
@media (max-width: 479px) {
  .sf-step { grid-template-columns: 1fr; gap: 1rem; padding: 2rem 0; }
  .sf-step__marker { flex-direction: row; min-height: auto; gap: 1rem; }
  .sf-step__line { width: auto; height: 1px; flex: 1; }
  .sf-step__aside { grid-column: auto; }
}

/* ============= CTA BAND ============= */
.cta-band {
  background: var(--c-dark); color: var(--c-sand);
  text-align: center;
  padding: 6rem clamp(1.25rem, 4vw, 2.5rem);
}
.cta-band__inner {
  max-width: 40rem; margin-inline: auto;
}
.cta-band__heading {
  font-family: var(--ff-display); font-weight: 400;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  line-height: 1.04; letter-spacing: -0.022em;
  margin: 0 0 1rem; max-width: 36rem; margin-inline: auto;
}
.cta-band__heading em { font-style: italic; }
.cta-band__sub {
  font-size: 1.0625rem; font-weight: 300; line-height: 1.55;
  opacity: .65; margin: 0 0 2.5rem; max-width: 32rem; margin-inline: auto;
}
.eyebrow--on-dark { opacity: .45; color: var(--c-sand); }
@media (max-width: 767px) { .cta-band { padding: 4rem 1.25rem; } }

/* ============= BEHANDLUNG SUBPAGE (v2) ============= */

/* Hero */
.beh-hero {
  background: var(--c-dark); color: var(--c-sand);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.beh-hero__inner {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 3rem) clamp(3rem, 6vw, 5rem) max(var(--gutter), calc((100vw - var(--container-max)) / 2 + var(--gutter)));
  gap: .75rem;
  max-width: 56rem;
  margin-left: 0;
}
.beh-breadcrumb {
  font-size: .8125rem; font-weight: 400; opacity: .5;
  font-family: var(--ff-body); letter-spacing: .04em;
  transition: opacity .2s;
}
.beh-breadcrumb:hover { opacity: .8; }
.beh-hero__title {
  font-family: var(--ff-display); font-weight: 400;
  font-size: clamp(2.75rem, 5vw, 4.5rem); line-height: 1.04;
  letter-spacing: -.022em; margin: 0;
}
.beh-hero__subtitle {
  font-size: 1.0625rem; font-weight: 300; opacity: .6; margin: 0;
  max-width: 28rem; font-family: var(--ff-body);
}
.beh-hero__ctas { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: .75rem; }
.beh-hero__trust { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .5rem; }
.beh-hero__trust .badge { font-size: .75rem; color: var(--c-sand); border-color: rgba(255,253,240,.25); }
.beh-hero__visual { position: relative; overflow: hidden; }
.beh-hero__image-wrap { position: absolute; inset: 0; }
.beh-hero__image { width: 100%; height: 100%; object-fit: cover; }
.beh-hero__visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(270deg, transparent 60%, var(--c-dark) 100%);
  pointer-events: none;
}
@media (max-width: 860px) {
  .beh-hero { grid-template-columns: 1fr; }
  .beh-hero__visual { display: none; }
  .beh-hero__inner { padding: 4rem 1.5rem 3rem; }
}

/* Layout: Sidenav + Main */
.beh-layout {
  display: grid; grid-template-columns: 220px 1fr; gap: 3rem;
  padding-block: 4rem; align-items: start;
}
.beh-sidenav { position: sticky; top: 6rem; }
.beh-sidenav__inner {
  border: 1px solid var(--c-border); border-radius: 0;
  padding: 1.25rem;
}
.beh-sidenav__label {
  font-family: var(--ff-body); font-size: .6875rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: .08em; opacity: .45;
  margin-bottom: 1rem;
}
.beh-sidenav__nav { display: flex; flex-direction: column; gap: .125rem; }
.beh-sidenav__link {
  display: block; padding: .5rem .75rem; border-radius: .375rem;
  font-size: .875rem; font-weight: 400; color: var(--c-dark); opacity: .55;
  transition: background .15s, opacity .15s;
}
.beh-sidenav__link:hover,
.beh-sidenav__link.active {
  opacity: 1; background: var(--c-tertiary);
}
.beh-sidenav__cta { margin-top: 1.25rem; }
.beh-main { min-width: 0; }
.beh-section { padding-bottom: 3rem; margin-bottom: 3rem; border-bottom: 1px solid var(--c-border); }
.beh-section:last-child { border-bottom: none; }
.beh-overview { font-size: 1.0625rem; line-height: 1.8; color: var(--c-dark); opacity: .75; }
.beh-overview p { margin: 0 0 1.25rem; }
.beh-overview h2, .beh-overview h3 {
  font-family: var(--ff-display); font-weight: 400; color: var(--c-dark);
  opacity: 1; margin: 2rem 0 .75rem;
}
.beh-section__content h1 { display: none; }
@media (max-width: 860px) {
  .beh-layout { grid-template-columns: 1fr; }
  .beh-sidenav { display: none; }
}

/* Benefits */
.beh-benefits-section { padding: 5rem 0; }
.beh-benefits-section h2 {
  font-family: var(--ff-display); font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.06; letter-spacing: -.015em;
  margin: 0 0 3rem;
}
.beh-benefits-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.beh-benefit-card {
  position: relative; background: transparent; border: 1px solid var(--c-border);
  border-radius: 0; padding: 2rem 1.5rem 1.75rem;
  transition: border-color .2s, box-shadow .2s;
}
.beh-benefit-card:hover { border-color: var(--c-border-strong); background: rgba(41,18,69,.02); }
.beh-benefit-icon {
  width: 2.75rem; height: 2.75rem; border-radius: 0;
  background: var(--c-tertiary); color: var(--c-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; flex: none;
}
.beh-benefit-num {
  font-family: var(--ff-display); font-size: 1.5rem; font-weight: 400;
  color: var(--c-dark); opacity: .12; line-height: 1; margin-bottom: .75rem; display: block;
}
.beh-benefit-card h3 {
  font-family: var(--ff-body); font-size: .9375rem; font-weight: 600;
  margin: 0 0 .5rem; color: var(--c-dark);
}
.beh-benefit-card p {
  font-size: .875rem; font-weight: 300; line-height: 1.55;
  color: var(--c-dark); opacity: .6; margin: 0;
}
@media (max-width: 860px) { .beh-benefits-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .beh-benefits-grid { grid-template-columns: 1fr; } }

/* Process Steps */
.beh-process-section { padding: 5rem 0; }
.beh-process-section h2 {
  font-family: var(--ff-display); font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.06; letter-spacing: -.015em;
  margin: 0 0 .75rem;
}
.beh-process-lead {
  font-size: 1.0625rem; font-weight: 300; opacity: .6; margin: 0 0 3rem;
  max-width: 36rem;
}
.beh-process-steps { border-top: 1px solid var(--c-border); }
.beh-process-step {
  display: grid; grid-template-columns: 5rem 1fr; gap: 0;
  border-bottom: 1px solid var(--c-border); transition: background .15s;
}
.beh-process-step:last-child { border-bottom: none; }
.beh-process-step:hover { background: var(--c-tertiary); }
.beh-step-number {
  font-family: var(--ff-display); font-style: italic; font-size: 1.125rem; font-weight: 400;
  color: var(--c-dark); opacity: .5; display: flex; align-items: center;
  justify-content: flex-start; padding: 2rem 1rem;
}
.beh-step-content { padding: 2rem 1.5rem 2rem 0; }
.beh-step-content h3 {
  font-family: var(--ff-body); font-size: .9375rem; font-weight: 600;
  margin: 0 0 .375rem; color: var(--c-dark);
}
.beh-step-content p {
  font-size: .875rem; font-weight: 300; line-height: 1.55;
  color: var(--c-dark); opacity: .6; margin: 0;
}
@media (max-width: 540px) { .beh-process-step { grid-template-columns: 3.5rem 1fr; } .beh-step-number { font-size: 1.25rem; padding: 1.5rem .75rem; } }

/* Compare Table */
.beh-compare-section { padding: 5rem 0; background: var(--c-dark); color: var(--c-sand); }
.beh-compare-section .eyebrow { color: var(--c-sand); }
.beh-compare-section h2 {
  font-family: var(--ff-display); font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.06; letter-spacing: -.015em;
  margin: 0 0 3rem; color: var(--c-sand);
}
.beh-compare-table {
  border: 1px solid rgba(255,253,240,.12); border-radius: 0;
  overflow: hidden;
}
.beh-compare-header,
.beh-compare-row {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
}
.beh-compare-header {
  background: rgba(255,253,240,.06);
  font-size: .75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .05em;
}
.beh-compare-header > * { padding: 1rem 1.25rem; }
.beh-compare-col--smy { background: rgba(244,255,146,.1); }
.beh-compare-row {
  border-top: 1px solid rgba(255,253,240,.08);
  transition: background .15s;
}
.beh-compare-row:hover { background: rgba(255,253,240,.03); }
.beh-compare-feature,
.beh-compare-val {
  padding: .875rem 1.25rem; font-size: .875rem; font-weight: 300;
  border-right: 1px solid rgba(255,253,240,.06);
}
.beh-compare-feature { font-weight: 500; opacity: .9; }
.beh-compare-val:last-child { border-right: none; }
.beh-compare-val--highlight { color: var(--c-primary); font-weight: 400; }
@media (max-width: 640px) {
  .beh-compare-header, .beh-compare-row { grid-template-columns: 1fr 1fr; }
  .beh-compare-feature-col, .beh-compare-feature { display: none; }
}

/* FAQ */
.beh-faq-section { padding: 5rem 0; }
.beh-faq-section h2 {
  font-family: var(--ff-display); font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.06; letter-spacing: -.015em;
  margin: 0 0 .75rem;
}
.beh-faq-lead {
  font-size: 1.0625rem; font-weight: 300; opacity: .6; margin: 0 0 3rem;
  max-width: 36rem;
}
.beh-faq-list { border-top: 1px solid var(--c-border); max-width: 44rem; }
.beh-faq-item { border-bottom: 1px solid var(--c-border); }
.beh-faq-item:last-child { border-bottom: none; }
.beh-faq-question {
  width: 100%; text-align: left; display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
  padding: 1.25rem .5rem; font-size: .9375rem; font-weight: 500;
  color: var(--c-dark); border-radius: .375rem;
  transition: background .15s;
}
.beh-faq-question:hover { background: var(--c-tertiary); }
.beh-faq-item.open .beh-faq-question { background: var(--c-tertiary); }
.beh-faq-icon {
  font-size: 1.25rem; font-weight: 300; opacity: .4;
  transition: transform .25s;
}
.beh-faq-item.open .beh-faq-icon { transform: rotate(45deg); }
.beh-faq-answer { padding: 0 .5rem 1.25rem; }
.beh-faq-answer p { margin: 0; font-size: .9375rem; font-weight: 300; line-height: 1.65; opacity: .7; }

/* Testimonials */
.beh-testimonials-section { padding: 5rem 0; background: var(--c-tertiary); }
.beh-testimonials-section h2 {
  font-family: var(--ff-display); font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.06; letter-spacing: -.015em;
  margin: 0 0 3rem;
}
.beh-testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.beh-testimonial-card {
  background: rgba(255,253,240,.6); border: 1px solid rgba(41,18,69,.07);
  border-radius: .75rem; padding: 1.75rem;
  transition: box-shadow .2s;
}
.beh-testimonial-card:hover { box-shadow: 0 2px 12px rgba(41,18,69,.05); }
.beh-testimonial-stars { color: #d4a843; font-size: .85rem; letter-spacing: .04em; }
.beh-testimonial-text {
  font-size: .9375rem; font-weight: 300; line-height: 1.6;
  margin: .75rem 0 1.25rem; color: var(--c-dark); opacity: .75;
}
.beh-testimonial-author { display: flex; align-items: center; gap: .75rem; }
.beh-testimonial-avatar {
  width: 2rem; height: 2rem; border-radius: 50%;
  background: var(--c-tertiary); color: var(--c-dark);
  font-size: .75rem; font-weight: 500; display: flex; align-items: center;
  justify-content: center; opacity: .6;
}
.beh-testimonial-author strong { font-size: .8125rem; color: var(--c-dark); display: block; }
.beh-testimonial-author span { font-size: .6875rem; color: var(--c-dark); opacity: .45; }
@media (max-width: 860px) { .beh-testimonials-grid { grid-template-columns: 1fr; } }

/* Related Treatments */
.beh-related-section { padding: 5rem 0; }
.beh-related-section h2 {
  font-family: var(--ff-display); font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.06; letter-spacing: -.015em;
  margin: 0 0 3rem;
}
.beh-related-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem;
}
.beh-related-card {
  display: flex; align-items: center; gap: .75rem;
  padding: 1rem 1.25rem; border: 1px solid var(--c-border); border-radius: .5rem;
  font-size: .9375rem; font-weight: 400; transition: border-color .2s, background .15s;
}
.beh-related-card:hover { border-color: var(--c-border-strong); background: rgba(41,18,69,.02); }
.beh-related-title { flex: 1; }
.beh-related-arrow {
  opacity: .3; transition: transform .2s, opacity .2s;
}
.beh-related-card:hover .beh-related-arrow { transform: translateX(3px); opacity: .7; }

/* ============= WISSEN HUB ============= */
.wissen-hero {
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(3rem, 6vw, 5rem);
  max-width: var(--container-max); margin: 0 auto;
  padding-inline: 2.5rem;
  text-align: center;
}
.wissen-hero__inner { max-width: 44rem; margin: 0 auto; }
.wissen-hero__heading {
  font-family: var(--ff-display); font-weight: 400;
  font-size: var(--text-display-m); line-height: 1.08; letter-spacing: -.02em;
  margin: .75rem 0 0;
}
.wissen-hero__heading em { font-style: italic; }
.wissen-hero__lead {
  max-width: 38rem; margin: 1rem auto 0; font-size: 1.125rem;
  font-weight: 300; opacity: .7; line-height: 1.55;
}

/* Kategorie-Karten (horizontal rows) */
.wissen-cats {
  max-width: var(--container-max); margin: 0 auto;
  padding: 0 2.5rem var(--section-py, 5rem);
}
.wissen-cats__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
}
.wissen-cat {
  display: flex; align-items: center; gap: 1.25rem;
  padding: 1.75rem 2rem; border: 1px solid var(--c-border);
  border-radius: var(--r-lg); background: transparent;
  transition: transform .4s cubic-bezier(.25,.46,.45,.94),
              box-shadow .4s cubic-bezier(.25,.46,.45,.94),
              border-color .4s ease;
}
.wissen-cat:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md); border-color: var(--c-border-strong);
}
.wissen-cat__icon {
  width: 3.25rem; height: 3.25rem; border-radius: 50%;
  background: var(--c-tertiary); color: var(--c-dark);
  display: grid; place-items: center; flex: none;
}
.wissen-cat__content { flex: 1; min-width: 0; }
.wissen-cat__title {
  font-family: var(--ff-display); font-weight: 400;
  font-size: 1.5rem; line-height: 1.12; letter-spacing: -.012em; margin: 0;
}
.wissen-cat__desc {
  font-size: .875rem; font-weight: 300; line-height: 1.5; opacity: .65; margin: .35rem 0 0;
}
.wissen-cat__count {
  display: inline-block; margin-top: .5rem;
  font-size: .8125rem; font-weight: 500; opacity: .5;
}
.wissen-cat__arrow {
  font-size: 1.35rem; opacity: .25; flex: none;
  transition: transform .3s ease, opacity .3s ease;
}
.wissen-cat:hover .wissen-cat__arrow { transform: translateX(4px); opacity: .7; }
@media (max-width: 767px) { .wissen-cats__grid { grid-template-columns: 1fr; } }

/* Neueste Beiträge */
.wissen-latest {
  max-width: var(--container-max); margin: 0 auto;
  padding: 0 2.5rem var(--section-py, 5rem);
}
.wissen-latest__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 2.5rem;
}
.wissen-latest__head h2 {
  font-family: var(--ff-display); font-weight: 400;
  font-size: var(--text-hl-m); margin: 0;
}
.wissen-latest__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.wissen-latest__card {
  display: flex; flex-direction: column; gap: .5rem;
  border: 1px solid var(--c-border); border-radius: var(--r-lg);
  overflow: hidden; background: var(--c-white);
  transition: transform .4s cubic-bezier(.25,.46,.45,.94),
              box-shadow .4s cubic-bezier(.25,.46,.45,.94);
}
.wissen-latest__card:hover {
  transform: translateY(-4px); box-shadow: var(--sh-lg);
}
.wissen-latest__img { aspect-ratio: 16/9; overflow: hidden; }
.wissen-latest__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
.wissen-latest__card:hover .wissen-latest__img img { transform: scale(1.04); }
.wissen-latest__card .badge { margin: 1rem 1.25rem 0; align-self: flex-start; }
.wissen-latest__title {
  font-family: var(--ff-display); font-weight: 400;
  font-size: 1.25rem; line-height: 1.2; margin: 0; padding: 0 1.25rem;
}
.wissen-latest__excerpt {
  font-size: .875rem; font-weight: 300; line-height: 1.55;
  opacity: .65; margin: 0; padding: 0 1.25rem;
}
.wissen-latest__date {
  font-size: .75rem; font-weight: 500; opacity: .4;
  padding: 0 1.25rem 1.25rem;
}
@media (max-width: 991px) { .wissen-latest__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 479px) { .wissen-latest__grid { grid-template-columns: 1fr; } }

/* CTA Band */
.cta-band {
  padding: var(--section-py, 5rem) 2.5rem;
  background: var(--c-dark); color: var(--c-white); text-align: center;
}
.cta-band__inner { max-width: 36rem; margin: 0 auto; }
.cta-band__inner h2 {
  font-family: var(--ff-display); font-weight: 400;
  font-size: var(--text-hl-m); margin: 0 0 .75rem;
}
.cta-band__inner p { font-weight: 300; opacity: .7; margin: 0 0 2rem; }
.cta-band__inner .btn {
  background: var(--c-primary); color: var(--c-dark);
  border: none; font-weight: 600;
}

/* ============= ARTIKEL GRID / CARDS ============= */
.artikel-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.artikel-grid--compact { gap: 1.25rem; }
.artikel-card {
  display: flex; flex-direction: column; gap: .5rem;
  padding: 2rem; border: 1px solid var(--c-border);
  background: transparent; overflow: hidden;
  transition: transform .4s cubic-bezier(.25,.46,.45,.94), box-shadow .4s cubic-bezier(.25,.46,.45,.94), border-color .4s ease;
}
.artikel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: var(--c-border-strong);
}
.artikel-card__meta { display: flex; gap: .5rem; flex-wrap: wrap; }
.artikel-card__title {
  font-family: var(--ff-display); font-weight: 400;
  font-size: 1.25rem; line-height: 1.18; letter-spacing: -.01em;
  margin: .25rem 0 0;
}
.artikel-card__excerpt {
  font-size: .875rem; font-weight: 300; line-height: 1.5;
  opacity: .65; margin: 0; flex: 1;
}
.artikel-card__link {
  font-size: .8125rem; font-weight: 500; opacity: .55;
  margin-top: auto; padding-top: .75rem;
  transition: opacity .2s ease;
}
.artikel-card:hover .artikel-card__link { opacity: 1; }
@media (max-width: 991px) { .artikel-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 479px) { .artikel-grid { grid-template-columns: 1fr; } }

/* ============= ARTIKEL DETAIL ============= */
.artikel-hero {
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(2rem, 4vw, 3rem);
  max-width: var(--container-max); margin: 0 auto;
  padding-inline: 2.5rem;
}
.artikel-hero__title {
  font-family: var(--ff-display); font-weight: 400;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  line-height: 1.06; letter-spacing: -.02em;
  margin: 0; max-width: 44rem;
}
.artikel-hero .lead { max-width: 40rem; margin-top: 1rem; }
.artikel-body { padding: 0 0 var(--section-py, 5rem); }
.artikel-body .page-prose { margin: 0 auto; }

/* ============= RELATED ARTICLES ============= */
.related-articles {
  padding: var(--section-py, 5rem) 0;
  border-top: 1px solid var(--c-border);
}
.related-articles__heading {
  font-family: var(--ff-display); font-weight: 400;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1.08; letter-spacing: -.015em;
  margin: 0 0 2.5rem;
}


/* ═══════════════════════════════════════════════════════════════
   UNICORN LEVEL 2026 — Animations, Glass, Premium Cards
   ═══════════════════════════════════════════════════════════════ */

/* ── 1. Section Animations (Scroll-triggered) ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(2rem); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.97) translateY(1rem); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.8s cubic-bezier(.25,.46,.45,.94),
              transform 0.8s cubic-bezier(.25,.46,.45,.94);
  will-change: opacity, transform;
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.animate-on-scroll.is-visible > *:nth-child(1) { transition-delay: 0s; }
.animate-on-scroll.is-visible > *:nth-child(2) { transition-delay: 0.08s; }
.animate-on-scroll.is-visible > *:nth-child(3) { transition-delay: 0.16s; }
.animate-on-scroll.is-visible > *:nth-child(4) { transition-delay: 0.24s; }


/* ── 2. Hero Upgrade — Full-bleed with overlay ── */
.hero--2026 {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero--2026__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero--2026__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero--2026__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.25) 100%);
  z-index: 1;
}
/* Subtle grain texture */
.hero--2026__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  pointer-events: none;
}
.hero--2026__content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: clamp(4rem, 10vw, 8rem) var(--gutter);
  width: 100%;
}
.hero--2026__heading {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(3rem, 7.5vw, 7rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 1.5rem;
  max-width: 52rem;
}
.hero--2026__heading em { font-style: italic; }
.hero--2026__lead {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  max-width: 36rem;
  margin: 0 0 2.5rem;
}
.hero--2026__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 767px) {
  .hero--2026 { min-height: 80vh; }
  .hero--2026__heading { font-size: clamp(2.25rem, 8vw, 3.5rem); }
}


/* ── 3. Cards 2026 — Sharp edges, subtle borders, premium hover ── */
.card-2026 {
  border: 1px solid rgba(41,18,69,0.06);
  border-radius: 0;
  background: var(--c-white);
  transition: transform 0.4s cubic-bezier(.25,.46,.45,.94),
              box-shadow 0.4s cubic-bezier(.25,.46,.45,.94),
              border-color 0.4s ease;
}
.card-2026:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: rgba(41,18,69,0.12);
}

/* Apply to existing cards */
.audience__card {
  transition: opacity 0.4s cubic-bezier(.25,.46,.45,.94),
              transform 0.4s cubic-bezier(.25,.46,.45,.94);
}
.audience__card:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.pricing__card {
  transition: transform 0.4s cubic-bezier(.25,.46,.45,.94),
              box-shadow 0.4s cubic-bezier(.25,.46,.45,.94),
              background 0.3s ease;
}
.pricing__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}

.behandlung-card {
  transition: background 0.4s cubic-bezier(.25,.46,.45,.94),
              transform 0.4s cubic-bezier(.25,.46,.45,.94),
              box-shadow 0.4s cubic-bezier(.25,.46,.45,.94);
}
.behandlung-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-sm);
}

.process-step {
  transition: box-shadow 0.4s cubic-bezier(.25,.46,.45,.94),
              transform 0.4s cubic-bezier(.25,.46,.45,.94);
}


/* ── 4. Button Upgrade — Larger, arrow reveal on hover ── */
.btn {
  padding: .95rem 2rem;
  transition: transform 0.3s cubic-bezier(.25,.46,.45,.94),
              background 0.4s cubic-bezier(.25,.46,.45,.94),
              color 0.4s cubic-bezier(.25,.46,.45,.94),
              border-color 0.4s cubic-bezier(.25,.46,.45,.94);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '→';
  display: inline-block;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  margin-left: -0.25rem;
}
.btn:hover::after {
  opacity: 1;
  transform: translateX(0);
  margin-left: 0.35rem;
}
.btn:hover {
  transform: translateY(-2px);
}

/* Ghost button — fill sweep from left */
.btn--ghost {
  background-image: linear-gradient(var(--c-ink), var(--c-ink));
  background-size: 0% 100%;
  background-repeat: no-repeat;
  background-position: left;
  transition: background-size 0.4s cubic-bezier(.25,.46,.45,.94),
              color 0.4s ease,
              border-color 0.4s ease,
              transform 0.3s ease;
}
.btn--ghost:hover {
  background-size: 100% 100%;
  color: var(--c-white);
  border-color: var(--c-ink);
}

/* On-dark ghost — fill sweep */
.btn--on-dark-ghost {
  background-image: linear-gradient(var(--c-white), var(--c-white));
  background-size: 0% 100%;
  background-repeat: no-repeat;
  background-position: left;
  transition: background-size 0.4s cubic-bezier(.25,.46,.45,.94),
              color 0.4s ease,
              border-color 0.4s ease,
              transform 0.3s ease;
}
.btn--on-dark-ghost:hover {
  background-size: 100% 100%;
  color: var(--c-ink);
  border-color: var(--c-white);
}


/* ── 5. Typography Upgrade ── */
h1, h2, h3, h4, h5, h6,
.header-h1, .header-h2, .header-h3, .header-h4,
.display-xl, .display-l, .display-m, .display-s {
  letter-spacing: -0.03em;
}

body {
  line-height: 1.6;
}

/* Subheadlines / Leads */
.hero__lead,
.split__lead,
.stack__intro,
.pricecompare__lead,
.cta-sub,
.smy-hero__lead,
.smy-hpt__lead {
  font-weight: 300;
  opacity: 0.55;
}

/* Blockquotes — large decorative quote mark */
blockquote,
.equote {
  position: relative;
}
blockquote::before,
.equote__mark {
  font-family: var(--ff-display);
  font-size: 5rem;
  line-height: 1;
  opacity: 0.08;
  position: absolute;
  top: -0.5rem;
  left: -0.25rem;
}


/* ── 6. Navigation Upgrade — Glass on scroll ── */
.nav_component {
  transition: background 0.4s cubic-bezier(.25,.46,.45,.94),
              backdrop-filter 0.4s ease,
              border-color 0.3s ease,
              box-shadow 0.4s ease;
}
.nav_component.nav--scrolled {
  background: rgba(249, 248, 242, 0.78);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid rgba(41,18,69,0.08);
  box-shadow: 0 4px 30px rgba(26, 16, 48, 0.06);
}

/* Logo slightly larger */
.nav_logo_img {
  height: 1.65rem;
}

/* Dropdown panels — no rounding */
.nav_dropdown_panel {
  background: var(--c-sand);
  border: 1px solid rgba(41,18,69,0.08);
  border-top: none;
  border-radius: 0;
  box-shadow: 0 16px 48px -8px rgba(41,18,69,0.12);
  transition: opacity 0.3s ease;
}


/* ── 7. Footer Upgrade — Dark premium bg ── */
.smyvia-footer {
  background: var(--c-dark);
  color: rgba(255,255,255,0.55);
  border-top: none;
}
.smyvia-footer .footer-brand-desc {
  color: rgba(255,255,255,0.45);
}
.smyvia-footer .footer-col-title {
  color: rgba(255,255,255,0.35);
}
.smyvia-footer .footer-links a {
  color: rgba(255,255,255,0.55);
}
.smyvia-footer .footer-links a:hover {
  color: rgba(255,255,255,0.9);
}
.smyvia-footer .footer-hotline {
  color: rgba(255,255,255,0.55);
}
.smyvia-footer .footer-hotline:hover {
  color: #fff;
}
.smyvia-footer .footer-hotline-hours {
  color: rgba(255,255,255,0.3);
}
.smyvia-footer .footer-social-link {
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
}
.smyvia-footer .footer-social-link:hover {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}
.smyvia-footer .footer-grid {
  border-bottom-color: rgba(255,255,255,0.1);
}
.smyvia-footer .footer-legal a {
  color: rgba(255,255,255,0.3);
}
.smyvia-footer .footer-legal a:hover {
  color: rgba(255,255,255,0.6);
}
.smyvia-footer .footer-copyright {
  color: rgba(255,255,255,0.25);
}
.smyvia-footer .footer-brand img {
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

/* Newsletter input in footer */
.footer-newsletter {
  margin-top: 1.5rem;
}
.footer-newsletter-form {
  display: flex;
  gap: 0;
  max-width: 22rem;
}
.footer-newsletter-input {
  flex: 1;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  border-radius: var(--r-pill) 0 0 var(--r-pill);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-family: var(--ff-body);
  font-size: 0.85rem;
  transition: border-color 0.2s;
}
.footer-newsletter-input::placeholder { color: rgba(255,255,255,0.3); }
.footer-newsletter-input:focus {
  outline: none;
  border-color: rgba(255,255,255,0.35);
}
.footer-newsletter-btn {
  padding: 0.7rem 1.25rem;
  background: var(--c-primary);
  color: var(--c-dark);
  border: 1px solid var(--c-primary);
  border-radius: 0 var(--r-pill) var(--r-pill) 0;
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.footer-newsletter-btn:hover {
  background: #e8f288;
  transform: translateY(-1px);
}

/* Footer CTA strip — premium dark */
.section-footer-cta {
  background: var(--c-dark);
  border-top: none;
  padding: 3.5rem 0;
}
.footer-cta-text {
  color: var(--c-white);
}
.section-footer-cta .btn {
  background: var(--c-primary);
  color: var(--c-dark);
  border-color: var(--c-primary);
}
.section-footer-cta .btn:hover {
  background: #e8f288;
}


/* ── 8. Behandlungs-Seite — Glass sidenav, elegant FAQ ── */
.beh-hero-section {
  min-height: 70vh;
}
.beh-faq-item {
  transition: background 0.3s cubic-bezier(.25,.46,.45,.94);
}
.beh-faq-icon {
  transition: transform 0.35s cubic-bezier(.25,.46,.45,.94);
}
.beh-faq-answer {
  transition: max-height 0.5s cubic-bezier(.25,.46,.45,.94),
              opacity 0.4s ease;
}


/* ── 9. Wissen/Magazin — Image zoom, badges, category colors ── */
.artikel-card__img {
  overflow: hidden;
  margin: -2rem -2rem 1rem;
}
.artikel-card__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.25,.46,.45,.94);
}
.artikel-card:hover .artikel-card__img img {
  transform: scale(1.03);
}

/* Read-time badge */
.artikel-card__readtime {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--c-ink-55);
  background: var(--c-sand);
  padding: 0.2rem 0.6rem;
  border-radius: var(--r-pill);
}

/* Category color coding */
.badge--magazin  { background: var(--c-primary); color: var(--c-ink); border-color: var(--c-primary); }
.badge--ratgeber { background: var(--c-secondary); color: var(--c-ink); border-color: var(--c-secondary); }
.badge--insights { background: var(--c-tertiary); color: var(--c-ink); border-color: var(--c-tertiary); }

/* Masonry image hover zoom */
.masonry__img {
  overflow: hidden;
}
.masonry__img img {
  transition: transform 0.7s cubic-bezier(.25,.46,.45,.94);
}
.masonry__item:hover .masonry__img img {
  transform: scale(1.03);
}



/* ── 10. Micro-interactions & polish ── */

/* Smooth focus states */
:focus-visible {
  outline: 2px solid var(--c-dark);
  outline-offset: 2px;
}

/* Link underline animation */
.nav_dd_link strong::after {
  transition: transform 0.3s cubic-bezier(.25,.46,.45,.94);
}

/* Image reveal on page load */
.hero--2026__bg img,
.hero__img-area img {
  transition: transform 1.2s cubic-bezier(.25,.46,.45,.94);
}
.hero--2026__bg img:hover,
.hero__img-area:hover img {
  transform: scale(1.02);
}

/* Smooth scroll snap for sections */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* ═══════════════════════════════════════════════════════════════
   MAGAZIN PORTAL — Featured Hero, Search, Grid, Cards, Newsletter
   ═══════════════════════════════════════════════════════════════ */

/* ── 1. Featured Hero ── */
.mag-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  overflow: hidden;
  margin-bottom: 0;
}
.mag-hero__link {
  display: flex;
  width: 100%;
  position: relative;
  text-decoration: none;
  color: var(--c-white);
}
.mag-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s cubic-bezier(.25,.46,.45,.94);
}
.mag-hero__link:hover .mag-hero__img {
  transform: scale(1.03);
}
.mag-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.25) 50%, rgba(0,0,0,.05) 100%);
  z-index: 1;
}
.mag-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 6rem;
  padding-bottom: 3.5rem;
  gap: .75rem;
  width: 100%;
}
.mag-hero__title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  margin: 0;
  max-width: 44rem;
}
.mag-hero__excerpt {
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.55;
  opacity: .85;
  max-width: 38rem;
  margin: 0;
}
.mag-hero__meta {
  display: flex;
  gap: .5rem;
  font-size: .8125rem;
  font-weight: 400;
  opacity: .65;
}

/* ── 2. Search & Filter Bar ── */
.mag-search {
  padding: 3rem 0 0;
}
.mag-search__bar {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1.25rem;
  border: 1px solid var(--c-border);
  border-radius: .5rem;
  background: var(--c-sand);
  transition: border-color .2s ease;
}
.mag-search__bar:focus-within {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(244,255,146,.2);
}
.mag-search__bar svg {
  opacity: .4;
  flex-shrink: 0;
}
.mag-search__input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  color: inherit;
}
.mag-search__input::placeholder {
  opacity: .45;
}
.mag-search__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.25rem;
  margin-bottom: 2.5rem;
}
.mag-tag-pill {
  padding: .25rem .7rem;
  border: 1px solid var(--c-border);
  border-radius: 100px;
  background: transparent;
  font-size: .75rem;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s ease;
  color: inherit;
}
.mag-tag-pill:hover {
  border-color: var(--c-border-strong);
}
.mag-tag-pill.is-active {
  background: var(--c-dark);
  color: var(--c-white);
  border-color: var(--c-dark);
}
/* Color-coded pill accents on hover */
.mag-tag-pill--lime:hover, .mag-tag-pill--lime.is-active {
  background: var(--c-primary);
  color: var(--c-dark);
  border-color: var(--c-primary);
}
.mag-tag-pill--coral:hover, .mag-tag-pill--coral.is-active {
  background: var(--c-secondary);
  color: var(--c-white);
  border-color: var(--c-secondary);
}
.mag-tag-pill--lavender:hover, .mag-tag-pill--lavender.is-active {
  background: var(--c-tertiary);
  color: var(--c-dark);
  border-color: var(--c-tertiary);
}

/* ── 3. Article Grid ── */
.mag-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.mag-grid--compact { gap: 1.5rem; }
@media (max-width: 991px)  { .mag-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 579px)  { .mag-grid { grid-template-columns: 1fr; } }

.mag-empty {
  text-align: center;
  padding: 4rem 0;
  font-size: 1rem;
  opacity: .5;
}

/* ── 4. Magazine Cards ── */
.mag-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--c-border);
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  text-decoration: none;
  color: inherit;
  transition: transform .4s cubic-bezier(.25,.46,.45,.94),
              box-shadow .4s cubic-bezier(.25,.46,.45,.94),
              border-color .4s ease;
}
.mag-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: var(--c-border-strong);
}
.mag-card__img-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.mag-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
.mag-card:hover .mag-card__img {
  transform: scale(1.05);
}
.mag-card__body {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding: 1.5rem;
  flex: 1;
}
.mag-card__tag {
  display: inline-block;
  width: fit-content;
  padding: .2rem .65rem;
  border-radius: 100px;
  font-size: .6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  background: var(--c-border);
  color: var(--c-dark);
}
.mag-card__tag--lime     { background: var(--c-primary); }
.mag-card__tag--coral    { background: var(--c-secondary); color: var(--c-white); }
.mag-card__tag--lavender { background: var(--c-tertiary); }
.mag-card__tag--default  { background: var(--c-border); }

.mag-card__title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.18;
  letter-spacing: -.01em;
  margin: .125rem 0 0;
}
.mag-card__excerpt {
  font-size: .875rem;
  font-weight: 300;
  line-height: 1.5;
  opacity: .65;
  margin: 0;
  flex: 1;
}
.mag-card__meta {
  display: flex;
  gap: .35rem;
  font-size: .75rem;
  font-weight: 400;
  opacity: .45;
  margin-top: auto;
  padding-top: .5rem;
}

/* ── 5. Newsletter CTA ── */
.mag-newsletter {
  padding: var(--section-py, 5rem) 0;
  background: var(--c-dark);
  color: var(--c-white);
  margin-top: var(--section-py, 5rem);
}
.mag-newsletter__inner {
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
}
.mag-newsletter__title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1.08;
  letter-spacing: -.015em;
  margin: 0 0 .75rem;
}
.mag-newsletter__text {
  font-size: 1rem;
  font-weight: 300;
  opacity: .7;
  line-height: 1.55;
  margin: 0 0 2rem;
}
.mag-newsletter__form {
  display: flex;
  gap: .75rem;
  max-width: 28rem;
  margin: 0 auto;
}
.mag-newsletter__email {
  flex: 1;
  padding: .75rem 1rem;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: .5rem;
  background: rgba(255,255,255,.08);
  color: var(--c-white);
  font-family: inherit;
  font-size: .9375rem;
  outline: none;
  transition: border-color .2s;
}
.mag-newsletter__email:focus {
  border-color: var(--c-primary);
}
.mag-newsletter__email::placeholder {
  color: rgba(255,255,255,.4);
}
.mag-newsletter__btn {
  padding: .75rem 1.5rem;
  border: none;
  border-radius: .5rem;
  background: var(--c-primary);
  color: var(--c-dark);
  font-family: inherit;
  font-size: .9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}
.mag-newsletter__btn:hover {
  background: color-mix(in srgb, var(--c-primary) 85%, var(--c-dark));
  transform: translateY(-1px);
}
@media (max-width: 479px) {
  .mag-newsletter__form { flex-direction: column; }
}

/* ── 6. Article Detail Hero ── */
.art-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  overflow: hidden;
}
.art-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.art-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.80) 0%, rgba(0,0,0,.30) 50%, rgba(0,0,0,.10) 100%);
  z-index: 1;
}
.art-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 6rem;
  padding-bottom: 3rem;
  gap: .75rem;
  width: 100%;
  color: var(--c-white);
}
.art-hero__meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .8125rem;
}
.art-hero__read-time,
.art-hero__date {
  opacity: .7;
  font-weight: 400;
}
.art-hero__title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  line-height: 1.06;
  letter-spacing: -.02em;
  margin: 0;
  max-width: 44rem;
}

/* ── 7. Author Row ── */
.art-author {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--c-border);
}
.art-author__row {
  display: flex;
  align-items: center;
  gap: .75rem;
  max-width: 44rem;
  margin: 0 auto;
}
.art-author__avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--c-tertiary);
  color: var(--c-dark);
  display: grid;
  place-items: center;
  font-family: var(--ff-display);
  font-size: 1.125rem;
  font-weight: 400;
  flex-shrink: 0;
}
.art-author__info {
  display: flex;
  flex-direction: column;
}
.art-author__name {
  font-size: .9375rem;
  font-weight: 500;
}
.art-author__role {
  font-size: .8125rem;
  opacity: .5;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn::after {
    display: none;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* =============================================
   INSIGHTS – Stripe-Style Blog Layout
   ============================================= */

/* ── Insights Hero ── */
.insights-hero {
  padding: var(--section-py) 0 clamp(2rem, 4vw, 3.5rem);
  background: var(--c-sand);
}
.insights-hero__title {
  font-family: var(--ff-display);
  font-size: var(--text-display-m);
  font-weight: 400;
  color: var(--c-dark);
  margin-top: 0.5rem;
  line-height: 1.1;
}
.insights-hero .lead {
  max-width: 600px;
  margin-top: 1rem;
  color: var(--c-ink-70);
}

/* ── Featured Card (50/50 split) ── */
.insights-featured {
  padding-bottom: clamp(3rem, 6vw, 5rem);
}
.insights-featured__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--c-white);
  border-radius: 0;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--sh-md);
  transition: box-shadow 0.4s cubic-bezier(.25,.46,.45,.94), transform 0.4s cubic-bezier(.25,.46,.45,.94);
}
.insights-featured__card:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-4px);
}
.insights-featured__image {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}
.insights-featured__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.25,.46,.45,.94);
}
.insights-featured__card:hover .insights-featured__image img {
  transform: scale(1.03);
}
.insights-featured__content {
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.insights-featured__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.insights-featured__date {
  font-size: var(--text-body-m);
  color: var(--c-ink-55);
}
.insights-featured__title {
  font-family: var(--ff-display);
  font-size: var(--text-hl-s);
  font-weight: 400;
  line-height: 1.2;
  color: var(--c-dark);
  margin-bottom: 1rem;
}
.insights-featured__excerpt {
  font-size: var(--text-body-l);
  color: var(--c-ink-70);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.insights-featured__link {
  font-weight: 500;
  font-size: var(--text-body-m);
  color: var(--c-dark);
  letter-spacing: 0.02em;
}

@media (max-width: 767px) {
  .insights-featured__card {
    grid-template-columns: 1fr;
  }
  .insights-featured__image {
    min-height: 200px;
  }
}

/* ── Type Badges ── */
.insights-type-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: var(--r-pill);
  font-size: var(--text-body-s);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}
.insights-type-badge--news {
  background: var(--c-tertiary);
  color: var(--c-dark);
}
.insights-type-badge--product {
  background: var(--c-primary);
  color: var(--c-dark);
}
.insights-type-badge--analysis {
  background: var(--c-dark);
  color: var(--c-white);
}
.insights-type-badge--sm {
  padding: 0.15rem 0.5rem;
  font-size: var(--text-body-s);
}

/* ── Filter Pills ── */
.insights-filter {
  padding-bottom: clamp(3rem, 6vw, 5rem);
}
.insights-filter__pills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--c-border);
}
.insights-pill {
  padding: 0.5rem 1.25rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--c-border-strong);
  background: transparent;
  font-family: var(--ff-body);
  font-size: var(--text-body-m);
  font-weight: 400;
  color: var(--c-ink-70);
  cursor: pointer;
  transition: all 0.2s ease;
}
.insights-pill:hover {
  border-color: var(--c-dark);
  color: var(--c-dark);
}
.insights-pill--active {
  background: var(--c-dark);
  color: var(--c-white);
  border-color: var(--c-dark);
}

/* ── Insights List (vertical, date | content) ── */
.insights-list {
  padding-bottom: clamp(2rem, 4vw, 3rem);
}
.insights-entry {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--c-border);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease;
}
.insights-entry:first-child {
  border-top: none;
}
.insights-entry:hover {
  background: rgba(41,18,69,.02);
}
.insights-entry:hover .insights-entry__title {
  color: var(--c-dark);
}
.insights-entry:hover .insights-entry__arrow {
  transform: translateX(4px);
  opacity: 1;
}

/* Date column */
.insights-entry__date-col {
  padding-top: 0.15rem;
}
.insights-entry__date {
  display: flex;
  flex-direction: column;
}
.insights-entry__day {
  font-family: var(--ff-display);
  font-size: var(--text-hl-l);
  font-weight: 400;
  line-height: 1;
  color: var(--c-dark);
}
.insights-entry__month {
  font-size: var(--text-body-s);
  color: var(--c-ink-55);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

/* Content column */
.insights-entry__content {
  min-width: 0;
}
.insights-entry__header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}
.insights-entry__title {
  font-family: var(--ff-display);
  font-size: var(--text-title-l);
  font-weight: 400;
  line-height: 1.3;
  color: var(--c-dark);
  transition: color 0.2s ease;
}
.insights-entry__tag {
  display: inline-block;
  padding: 0.1rem 0.5rem;
  border-radius: var(--r-pill);
  background: var(--c-sand);
  border: 1px solid var(--c-border);
  font-size: var(--text-body-s);
  color: var(--c-ink-55);
  text-transform: capitalize;
  white-space: nowrap;
}
.insights-entry__excerpt {
  font-size: var(--text-body-m);
  color: var(--c-ink-70);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.insights-entry__footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.insights-entry__readtime {
  font-size: var(--text-body-s);
  color: var(--c-ink-40);
}

/* Arrow */
.insights-entry__arrow {
  font-size: 1.25rem;
  color: var(--c-dark);
  opacity: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
  padding-top: 0.5rem;
}

@media (max-width: 767px) {
  .insights-entry {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .insights-entry__date {
    flex-direction: row;
    align-items: baseline;
    gap: 0.5rem;
  }
  .insights-entry__day {
    font-size: var(--text-title-l);
  }
  .insights-entry__arrow {
    display: none;
  }
}

/* ── Newsletter CTA ── */
.insights-newsletter {
  padding: var(--section-py) 0;
}
.insights-newsletter__inner {
  background: var(--c-dark);
  color: var(--c-white);
  border-radius: var(--r-xl);
  padding: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}
.insights-newsletter__title {
  font-family: var(--ff-display);
  font-size: var(--text-hl-s);
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.insights-newsletter__lead {
  color: rgba(255,255,255,.7);
  font-size: var(--text-body-l);
}
.insights-newsletter__form {
  display: flex;
  gap: 0.75rem;
}
.insights-newsletter__input {
  flex: 1;
  padding: 0.75rem 1.25rem;
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color: var(--c-white);
  font-family: var(--ff-body);
  font-size: var(--text-body-l);
  outline: none;
  transition: border-color 0.2s ease;
}
.insights-newsletter__input::placeholder {
  color: rgba(255,255,255,.4);
}
.insights-newsletter__input:focus {
  border-color: var(--c-primary);
}

@media (max-width: 767px) {
  .insights-newsletter__inner {
    grid-template-columns: 1fr;
  }
  .insights-newsletter__form {
    flex-direction: column;
  }
}


/* =============================================
   INSIGHT – Single Article Page
   ============================================= */

/* ── Insight Hero (full-width image) ── */
.insight-hero {
  position: relative;
  min-height: clamp(300px, 45vw, 500px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.insight-hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.insight-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.insight-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.25) 50%, rgba(0,0,0,.05) 100%);
}
.insight-hero__content {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  padding-top: clamp(6rem, 12vw, 10rem);
}
.insight-hero__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255,255,255,.8);
  font-size: var(--text-body-m);
}
.insight-hero__title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, var(--text-display-s));
  font-weight: 400;
  line-height: 1.1;
  color: var(--c-white);
  max-width: 800px;
}

/* ── Author Row ── */
.insight-author {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--c-border);
}
.insight-author__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.insight-author__info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.insight-author__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c-dark);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: var(--text-title-s);
}
.insight-author__name {
  font-weight: 500;
  font-size: var(--text-body-l);
  color: var(--c-dark);
}
.insight-author__role {
  font-size: var(--text-body-s);
  color: var(--c-ink-55);
}
.insight-author__readtime {
  font-size: var(--text-body-m);
  color: var(--c-ink-55);
}

/* ── Insight Body ── */
.insight-body {
  padding: clamp(2.5rem, 5vw, 4rem) 0 var(--section-py);
}
.insight-body .page-prose {
  max-width: 720px;
}

/* ── Related Insights ── */
.insight-related {
  padding: var(--section-py) 0;
  background: var(--c-white);
}
.insight-related__heading {
  font-family: var(--ff-display);
  font-size: var(--text-hl-s);
  font-weight: 400;
  margin-bottom: 2rem;
  color: var(--c-dark);
}
.insight-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.insight-related__card {
  text-decoration: none;
  color: inherit;
  background: var(--c-sand);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow 0.4s cubic-bezier(.25,.46,.45,.94), transform 0.4s cubic-bezier(.25,.46,.45,.94);
}
.insight-related__card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
}
.insight-related__image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.insight-related__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.25,.46,.45,.94);
}
.insight-related__card:hover .insight-related__image img {
  transform: scale(1.03);
}
.insight-related__content {
  padding: 1.25rem;
}
.insight-related__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: var(--text-body-s);
  color: var(--c-ink-55);
}
.insight-related__title {
  font-family: var(--ff-display);
  font-size: var(--text-title-m);
  font-weight: 400;
  line-height: 1.3;
  color: var(--c-dark);
  margin-bottom: 0.5rem;
}
.insight-related__excerpt {
  font-size: var(--text-body-m);
  color: var(--c-ink-70);
  line-height: 1.5;
}

@media (max-width: 991px) {
  .insight-related__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .insight-related__card {
    display: grid;
    grid-template-columns: 160px 1fr;
  }
  .insight-related__image {
    aspect-ratio: 1;
  }
}

/* ── Insight CTA ── */
.insight-cta {
  padding: var(--section-py) 0;
}
.insight-cta__inner {
  text-align: center;
  background: var(--c-sand);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: clamp(2.5rem, 5vw, 4rem);
}
.insight-cta__title {
  font-family: var(--ff-display);
  font-size: var(--text-hl-s);
  font-weight: 400;
  color: var(--c-dark);
  margin-bottom: 0.75rem;
}
.insight-cta__text {
  color: var(--c-ink-70);
  font-size: var(--text-body-l);
  margin-bottom: 1.5rem;
}
.insight-cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============= RATGEBER INDEX (Premium) ============= */

/* Hero */
.rat-hero {
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(2.5rem, 5vw, 4rem);
  background: var(--c-sand);
}
.rat-hero__title {
  font-family: var(--ff-display);
  font-size: var(--text-display-m);
  font-weight: 400;
  color: var(--c-dark);
  line-height: 1.08;
  margin: 0 0 1rem;
  max-width: 18ch;
}
.rat-hero__lead {
  font-size: var(--text-title-s);
  color: var(--c-ink-70);
  max-width: 44rem;
  line-height: 1.7;
  margin: 0;
}

/* Featured Card */
.rat-featured {
  padding: clamp(2rem, 4vw, 3rem) 0;
  background: var(--c-white);
}
.rat-featured__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--c-border);
  border-radius: 0;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.rat-featured__card:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-3px);
}
.rat-featured__img-wrap {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}
.rat-featured__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rat-featured__body {
  padding: clamp(2rem, 3vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.rat-featured__title {
  font-family: var(--ff-display);
  font-size: var(--text-hl-s);
  font-weight: 400;
  color: var(--c-dark);
  line-height: 1.2;
  margin: 0 0 1rem;
}
.rat-featured__excerpt {
  font-size: var(--text-body-l);
  color: var(--c-ink-70);
  line-height: 1.7;
  margin: 0 0 1.25rem;
}
.rat-featured__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.rat-featured__read-time {
  font-size: var(--text-body-s);
  color: var(--c-ink-55);
}
.rat-featured__link {
  font-weight: 600;
  font-size: var(--text-body-m);
  color: var(--c-dark);
}

/* Filter Pills */
.rat-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

/* Section wrapper */
.rat-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--c-sand);
}

/* Grid — 2 columns */
.rat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

/* Card */
.rat-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 0;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.25s, transform 0.25s;
}
.rat-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
}

/* Number badge */
.rat-card__num {
  flex-shrink: 0;
  font-family: var(--ff-display);
  font-size: var(--text-hl-xl);
  font-weight: 400;
  line-height: 1;
  color: var(--c-border-strong);
  min-width: 2.5rem;
}
.rat-card:hover .rat-card__num {
  color: var(--c-secondary);
}

/* Card body */
.rat-card__body {
  flex: 1;
  min-width: 0;
}
.rat-card__title {
  font-family: var(--ff-display);
  font-size: var(--text-title-m);
  font-weight: 400;
  color: var(--c-dark);
  line-height: 1.3;
  margin: 0 0 0.5rem;
}
.rat-card__excerpt {
  font-size: var(--text-body-m);
  color: var(--c-ink-70);
  line-height: 1.65;
  margin: 0 0 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.rat-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.rat-card__read-time {
  font-size: var(--text-body-s);
  color: var(--c-ink-55);
}

/* Arrow */
.rat-card__arrow {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border: 1.5px solid var(--c-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-dark);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  margin-top: 0.25rem;
}
.rat-card:hover .rat-card__arrow {
  border-color: var(--c-dark);
  background: var(--c-dark);
  color: var(--c-white);
}

/* Empty state */
.rat-empty {
  text-align: center;
  padding: 3rem 0;
  color: var(--c-ink-55);
  font-size: var(--text-body-l);
}

/* CTA */
.rat-cta {
  padding: var(--section-py) 0;
  background: var(--c-white);
}
.rat-cta__inner {
  text-align: center;
  background: var(--c-dark);
  color: var(--c-white);
  border-radius: 0;
  padding: clamp(3rem, 6vw, 5rem);
}
.rat-cta__title {
  font-family: var(--ff-display);
  font-size: var(--text-hl-m);
  font-weight: 400;
  margin-bottom: 0.75rem;
}
.rat-cta__text {
  font-size: var(--text-body-l);
  opacity: 0.8;
  margin-bottom: 2rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

/* ── Responsive: Ratgeber ── */
@media (max-width: 767px) {
  .rat-hero__title { font-size: var(--text-hl-xl); }
  .rat-featured__card { grid-template-columns: 1fr; }
  .rat-featured__img-wrap { min-height: 200px; }
  .rat-grid { grid-template-columns: 1fr; }
  .rat-card__num { font-size: var(--text-hl-m); }
}

/* ============= FAQ HUB ============= */
.faq-hub { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--gutter); }

/* Hero */
.faq-hub__hero { padding: clamp(5rem, 10vw, 8rem) 0 clamp(2.5rem, 5vw, 4rem); text-align: center; }
.faq-hub__hero-inner { max-width: 640px; margin: 0 auto; }
.faq-hub__h1 {
  font-family: var(--ff-display); font-weight: 400;
  font-size: clamp(2.75rem, 5vw, 4rem); line-height: 1.05;
  letter-spacing: -0.025em; margin: 0.5rem 0 1.25rem;
}
.faq-hub__lead {
  font-size: var(--text-body-l); font-weight: 300;
  line-height: 1.6; color: var(--c-ink-70); margin-bottom: 2rem;
}

/* Search */
.faq-hub__search { position: relative; max-width: 480px; margin: 0 auto; }
.faq-hub__search-icon {
  position: absolute; left: 1.125rem; top: 50%;
  transform: translateY(-50%); color: var(--c-ink-40); pointer-events: none;
}
.faq-hub__search-input {
  width: 100%; padding: 0.875rem 2.75rem 0.875rem 3rem;
  font-family: var(--ff-body); font-size: 1rem; font-weight: 400;
  color: var(--c-ink); background: var(--c-white);
  border: 1px solid var(--c-border-strong); border-radius: var(--r-pill);
  outline: none; transition: border-color .2s, box-shadow .2s;
}
.faq-hub__search-input:focus {
  border-color: var(--c-dark); box-shadow: 0 0 0 3px rgba(41,18,69,.08);
}
.faq-hub__search-input::placeholder { color: var(--c-ink-40); font-weight: 300; }
.faq-hub__search-clear {
  position: absolute; right: 0.75rem; top: 50%;
  transform: translateY(-50%); width: 1.75rem; height: 1.75rem;
  display: grid; place-items: center; border: none; background: var(--c-border);
  border-radius: 50%; font-size: 1.125rem; color: var(--c-ink-70);
  cursor: pointer; transition: background .2s;
}
.faq-hub__search-clear:hover { background: var(--c-border-strong); }

/* Layout: 2 columns */
.faq-hub__layout {
  display: grid; grid-template-columns: 220px 1fr; gap: 3.5rem;
  align-items: flex-start; padding-bottom: 4rem;
}

/* Sticky nav */
.faq-hub__nav {
  position: sticky; top: 6rem; display: flex; flex-direction: column; gap: 0.25rem;
}
.faq-hub__nav-item {
  display: block; padding: 0.625rem 1rem; border-radius: 0;
  font-size: var(--text-body-m); font-weight: 400; color: var(--c-ink-70);
  text-decoration: none; transition: background .2s, color .2s, border-color .2s;
  border-left: 2px solid transparent;
}
.faq-hub__nav-item:hover { background: rgba(41,18,69,.04); color: var(--c-ink); border-left-color: var(--c-border-strong); }
.faq-hub__nav-item.is-active {
  background: rgba(41,18,69,.04); color: var(--c-dark); font-weight: 600;
  border-left-color: var(--c-dark);
}

/* Content */
.faq-hub__content { min-width: 0; }
.faq-hub__no-results {
  text-align: center; padding: 3rem 0; font-size: var(--text-body-l);
  color: var(--c-ink-55);
}
.faq-hub__no-results a { color: var(--c-dark); text-decoration: underline; }

/* Category */
.faq-hub__category { margin-bottom: 3rem; }
.faq-hub__category-header {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.25rem; padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--c-border);
}
.faq-hub__category-icon {
  flex: none; width: 2.5rem; height: 2.5rem;
  display: grid; place-items: center;
  background: var(--c-dark); color: var(--c-primary);
  border-radius: 0;
}
.faq-hub__category-icon svg { width: 18px; height: 18px; }
.faq-hub__category-title {
  font-family: var(--ff-display); font-weight: 400;
  font-size: var(--text-hl-xs); letter-spacing: -0.01em; margin: 0;
}

/* Questions */
.faq-hub__questions { border-top: 1px solid var(--c-border); }
.faq-hub__item { border-bottom: 1px solid var(--c-border); }
.faq-hub__question {
  width: 100%; padding: 1.25rem 0; display: flex;
  justify-content: space-between; align-items: center; gap: 1.5rem;
  text-align: left; cursor: pointer; background: none; border: none;
  font-family: var(--ff-body); transition: opacity .2s;
}
.faq-hub__question:hover { opacity: .7; }
.faq-hub__q-text {
  font-size: var(--text-title-s); font-weight: 500;
  line-height: 1.3; color: var(--c-ink); flex: 1;
}

/* Plus/minus icon */
.faq-hub__plus {
  flex: none; width: 1.75rem; height: 1.75rem;
  border: 1px solid var(--c-border-strong); border-radius: 50%;
  display: grid; place-items: center; position: relative;
  transition: background .3s, transform .3s;
}
.faq-hub__plus::before, .faq-hub__plus::after {
  content: ""; position: absolute; background: var(--c-dark);
  transition: transform .3s cubic-bezier(.215,.61,.355,1);
}
.faq-hub__plus::before { width: 0.625rem; height: 1px; }
.faq-hub__plus::after { width: 1px; height: 0.625rem; }
.faq-hub__plus.is-open { background: var(--c-dark); }
.faq-hub__plus.is-open::before, .faq-hub__plus.is-open::after { background: var(--c-sand); }
.faq-hub__plus.is-open::after { transform: rotate(90deg); }

/* Answer */
.faq-hub__answer { padding: 0 0 1.5rem 0; max-width: 44rem; }
.faq-hub__answer p {
  font-size: var(--text-body-l); font-weight: 300;
  line-height: 1.7; color: var(--c-ink-70); margin: 0;
  padding-left: 0;
}

/* Open state animation */
.faq-hub__item--open .faq-hub__q-text { color: var(--c-dark); }

/* Category count badge */
.faq-hub__category-count {
  font-size: var(--text-body-s); font-weight: 500;
  color: var(--c-ink-40); margin-left: auto;
}

/* CTA */
.faq-hub__cta {
  text-align: center; padding: clamp(3rem, 6vw, 5rem) 2rem;
  background: var(--c-dark); color: var(--c-white);
  margin-top: 3rem;
}
.faq-hub__cta-title {
  font-family: var(--ff-display); font-weight: 400;
  font-size: var(--text-hl-m); margin-bottom: 0.75rem; color: var(--c-white);
}
.faq-hub__cta-text {
  font-size: var(--text-body-l); color: rgba(255,255,255,0.65);
  margin-bottom: 2rem; max-width: 480px; margin-inline: auto;
}
.faq-hub__cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.faq-hub__cta .btn-primary { background: var(--c-primary); color: var(--c-dark); border-color: var(--c-primary); }
.faq-hub__cta .btn-secondary { background: transparent; color: var(--c-white); border: 1px solid rgba(255,255,255,.3); }
.faq-hub__cta .btn-secondary:hover { background: rgba(255,255,255,.1); }

/* Responsive */
@media (max-width: 768px) {
  .faq-hub__hero { padding: 6rem 0 2.5rem; }
  .faq-hub__layout { grid-template-columns: 1fr; gap: 1.5rem; }
  .faq-hub__nav {
    position: static; flex-direction: row; overflow-x: auto;
    gap: 0.5rem; padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .faq-hub__nav::-webkit-scrollbar { display: none; }
  .faq-hub__nav-item {
    white-space: nowrap; padding: 0.5rem 0.875rem;
    border: 1px solid var(--c-border-strong); border-radius: var(--r-pill);
    font-size: var(--text-body-s);
  }
  .faq-hub__nav-item.is-active { border-color: var(--c-dark); }
  .faq-hub__q-text { font-size: 1rem; }
  .faq-hub__cta { padding: 2.5rem 1.5rem 3rem; margin-inline: calc(var(--gutter) * -1); }
}
/* ═══════════════════════════════════════
   FACHBEITRÄGE INDEX
   ═══════════════════════════════════════ */

.fach-hero {
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(3rem, 6vw, 5rem);
  background: var(--c-sand);
}
.fach-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-body-s);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-ink-55);
  margin-bottom: 1.25rem;
}
.fach-hero__eyebrow::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 1px;
  background: currentColor;
}
.fach-hero__title {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--c-ink);
  margin: 0 0 1.25rem;
  text-wrap: balance;
}
.fach-hero__subline {
  font-size: var(--text-title-s);
  color: var(--c-ink-70);
  line-height: 1.65;
  max-width: 580px;
}
.mt-64 { margin-top: 3.5rem; }

/* Featured Card */
.fach-featured-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.fach-featured-card:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-2px);
}
.fach-featured-card__img-wrap {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}
.fach-featured-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.fach-featured-card:hover .fach-featured-card__img-wrap img {
  transform: scale(1.03);
}
.fach-featured-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(41,18,69,0.08) 100%);
}
.fach-featured-card__content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}
.fach-featured-card__title {
  font-family: var(--ff-display);
  font-size: var(--text-hl-m);
  font-weight: 400;
  line-height: 1.15;
  margin: 0;
}
.fach-featured-card__excerpt {
  font-size: var(--text-body-m);
  color: var(--c-ink-70);
  line-height: 1.65;
  margin: 0;
}
.fach-featured-card__meta {
  display: flex;
  gap: 0.5rem;
  font-size: var(--text-body-s);
  color: var(--c-ink-40);
  margin-top: 0.5rem;
}

/* Badges */
.fach-badge {
  display: inline-flex;
  padding: 0.3rem 0.7rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  background: var(--c-primary);
  color: var(--c-ink);
}
.fach-badge--lime { background: var(--c-primary); }
.fach-badge--coral { background: var(--c-secondary); }
.fach-badge--lavender { background: var(--c-tertiary); }

/* Filter Section */
.fach-filter {
  padding: 3rem 0 var(--section-py);
  background: var(--c-sand);
}
.fach-search-wrapper { margin-bottom: 1.5rem; }
.fach-search-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-pill);
  max-width: 480px;
}
.fach-search-bar svg { color: var(--c-ink-40); flex-shrink: 0; }
.fach-search-input {
  border: none;
  background: none;
  font-family: var(--ff-body);
  font-size: var(--text-body-l);
  font-weight: 300;
  color: var(--c-ink);
  outline: none;
  width: 100%;
}
.fach-search-input::placeholder { color: var(--c-ink-40); }

.fach-tags-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.fach-tag-pill {
  padding: 0.45rem 1rem;
  font-size: var(--text-body-s);
  font-weight: 500;
  border: 1px solid var(--c-border-strong);
  border-radius: var(--r-pill);
  background: transparent;
  color: var(--c-ink-70);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--ff-body);
}
.fach-tag-pill:hover { border-color: var(--c-ink); color: var(--c-ink); }
.fach-tag-pill.is-active { background: var(--c-dark); color: var(--c-white); border-color: var(--c-dark); }

/* Grid */
.fach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.fach-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.fach-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-2px);
}
.fach-card__link { text-decoration: none; color: inherit; display: flex; flex-direction: column; height: 100%; }
.fach-card__img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.fach-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.fach-card:hover .fach-card__img-wrap img { transform: scale(1.04); }
.fach-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: inline-flex;
  padding: 0.25rem 0.6rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  background: var(--c-primary);
  color: var(--c-ink);
}
.fach-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.fach-card__title {
  font-family: var(--ff-display);
  font-size: var(--text-title-l);
  font-weight: 400;
  line-height: 1.25;
  margin: 0;
}
.fach-card__excerpt {
  font-size: var(--text-body-m);
  color: var(--c-ink-70);
  line-height: 1.6;
  margin: 0;
}
.fach-card__meta {
  display: flex;
  gap: 0.5rem;
  font-size: var(--text-body-s);
  color: var(--c-ink-40);
  margin-top: auto;
  padding-top: 0.5rem;
}

/* Newsletter */
.fach-newsletter {
  padding: var(--section-py) 0;
  background: var(--c-sand);
}
.fach-newsletter__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem;
  background: var(--c-dark);
  color: var(--c-white);
}
.fach-newsletter__title {
  font-family: var(--ff-display);
  font-size: var(--text-hl-s);
  font-weight: 400;
  margin: 0 0 0.5rem;
}
.fach-newsletter__text {
  font-size: var(--text-body-m);
  color: rgba(255,255,255,0.65);
  margin: 0;
  max-width: 400px;
}
.fach-newsletter__form {
  display: flex;
  gap: 0.5rem;
}
.fach-newsletter__input {
  padding: 0.85rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.08);
  color: var(--c-white);
  font-family: var(--ff-body);
  font-size: var(--text-body-l);
  font-weight: 300;
  outline: none;
  min-width: 240px;
}
.fach-newsletter__input::placeholder { color: rgba(255,255,255,0.4); }
.fach-newsletter__input:focus { border-color: var(--c-primary); }
.fach-newsletter__btn {
  padding: 0.85rem 1.5rem;
  border: none;
  border-radius: var(--r-pill);
  background: var(--c-primary);
  color: var(--c-ink);
  font-family: var(--ff-body);
  font-size: var(--text-body-l);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.fach-newsletter__btn:hover { transform: translateY(-1px); }

/* Empty */
.fach-empty {
  text-align: center;
  padding: 4rem 0;
  color: var(--c-ink-55);
  font-size: var(--text-body-l);
}

/* Responsive */
@media (max-width: 960px) {
  .fach-featured-card { grid-template-columns: 1fr; }
  .fach-featured-card__img-wrap { min-height: 240px; }
  .fach-grid { grid-template-columns: repeat(2, 1fr); }
  .fach-newsletter__box { flex-direction: column; text-align: center; }
  .fach-newsletter__text { max-width: 100%; }
  .fach-newsletter__form { width: 100%; }
  .fach-newsletter__input { flex: 1; min-width: 0; }
}
@media (max-width: 540px) {
  .fach-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   HOME HERO v2 — Upload-Fokus + Journey
   ═══════════════════════════════════════ */

.phero2__cards {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  max-width: 820px;
  animation: phero2-fadein 0.8s ease-out both;
}
@keyframes phero2-fadein {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.phero2__card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.phero2__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
}

.phero2__card--primary {
  border-top: 3px solid var(--c-primary);
  box-shadow: var(--sh-sm);
  animation: phero2-fadein 0.8s ease-out 0.1s both;
}

.phero2__card-icon {
  width: 48px;
  height: 48px;
  background: var(--c-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-ink);
  flex-shrink: 0;
}
.phero2__card-icon--ghost {
  background: var(--c-tertiary);
}

.phero2__card h2 {
  font-family: var(--ff-display);
  font-size: var(--text-hl-s);
  font-weight: 400;
  margin: 0;
  line-height: 1.2;
}

.phero2__card p {
  font-size: var(--text-body-m);
  color: var(--c-ink-70);
  line-height: 1.65;
  margin: 0;
}

.phero2__card .btn {
  align-self: flex-start;
  margin-top: 0.25rem;
}

.phero2__card-trust {
  font-size: var(--text-body-s);
  color: var(--c-ink-40);
  margin-top: auto;
  padding-top: 0.5rem;
}

@media (max-width: 767px) {
  .phero2__cards {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .phero2__card {
    padding: 1.75rem;
  }
}

/* ═══════════════════════════════════════
   HERO v3 — Compact Split, Upload-Focus
   ═══════════════════════════════════════ */

.hero3 {
  background: var(--c-dark);
  color: var(--c-white);
  padding: clamp(3rem, 5vw, 4.5rem) var(--gutter) 0;
  position: relative;
  overflow: hidden;
}

.hero3__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* ── Left Content ── */
.hero3__content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero3__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-body-s);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
}
.hero3__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-primary);
  animation: smy-pulse 2s ease-in-out infinite;
}

.hero3__heading {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.2vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
  text-wrap: balance;
}
.hero3__heading em {
  font-style: italic;
  color: var(--c-primary);
}

.hero3__lead {
  font-size: var(--text-body-l);
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  margin: 0 0 2rem;
  max-width: 480px;
}

.hero3__actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}
.hero3__actions .btn {
  font-size: 0.95rem;
}
.hero3__actions .btn svg {
  flex-shrink: 0;
}

.hero3__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}
.hero3__trust-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: var(--text-body-s);
  color: rgba(255,255,255,0.4);
}
.hero3__trust-item svg {
  color: var(--c-primary);
  flex-shrink: 0;
}

/* ── Right: Stats ── */
.hero3__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero3__stat-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  width: 100%;
  max-width: 320px;
}

.hero3__stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: background 0.25s ease, transform 0.25s ease;
}
.hero3__stat:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.hero3__stat-num {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--c-primary);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.hero3__stat-label {
  display: block;
  font-size: var(--text-body-s);
  color: rgba(255,255,255,0.5);
  font-weight: 300;
}

/* ── Pills Bar ── */
.hero3__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 1.25rem var(--gutter);
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .hero3__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero3__content { align-items: center; }
  .hero3__lead { max-width: 100%; }
  .hero3__actions { justify-content: center; }
  .hero3__trust { justify-content: center; }
  .hero3__stat-stack { max-width: 280px; margin: 0 auto; }
}
@media (max-width: 480px) {
  .hero3__stat-stack { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .hero3__stat { padding: 1rem; }
  .hero3__actions { flex-direction: column; width: 100%; }
  .hero3__actions .btn { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════
   FULLSCREEN VIDEO HERO (vhero)
   ═══════════════════════════════════════ */

.vhero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  color: var(--c-white);
}

.vhero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.vhero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(41,18,69,0.55) 0%,
    rgba(41,18,69,0.40) 40%,
    rgba(41,18,69,0.65) 100%
  );
  z-index: 1;
}

.vhero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  padding: 0 var(--gutter);
}

.vhero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-body-s);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
}
.vhero__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--c-primary);
  animation: smy-pulse 2s ease-in-out infinite;
}

.vhero__heading {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 1.25rem;
  text-wrap: balance;
}
.vhero__heading em {
  font-style: italic;
  color: var(--c-primary);
}

.vhero__lead {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  margin: 0 0 2.25rem;
  font-weight: 300;
}

.vhero__actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.vhero__actions .btn svg {
  flex-shrink: 0;
}

/* Glass ghost button */
.btn--glass {
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.25) !important;
  color: var(--c-white) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn--glass:hover {
  background: rgba(255,255,255,0.15) !important;
  border-color: rgba(255,255,255,0.4) !important;
}

.vhero__trust {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: var(--text-body-s);
  color: rgba(255,255,255,0.4);
}

/* Floating Stats Bar */
.vhero__stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.vhero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 1.25rem 2.5rem;
  flex: 1;
  max-width: 220px;
  text-align: center;
}
.vhero__stat + .vhero__stat {
  border-left: 1px solid rgba(255,255,255,0.08);
}
.vhero__stat-num {
  font-family: var(--ff-display);
  font-weight: 400;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--c-primary);
  letter-spacing: -0.02em;
  line-height: 1;
}
.vhero__stat-label {
  font-size: 0.7rem;
  font-weight: 300;
  opacity: 0.5;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 767px) {
  .vhero { min-height: 90dvh; }
  .vhero__stats { flex-wrap: wrap; }
  .vhero__stat { flex: 0 0 50%; padding: 1rem; }
  .vhero__stat:nth-child(2) { border-left: 1px solid rgba(255,255,255,0.08); }
  .vhero__stat:nth-child(3) { border-left: none; border-top: 1px solid rgba(255,255,255,0.08); }
  .vhero__stat:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.08); }
  .vhero__actions { flex-direction: column; padding: 0 1rem; }
  .vhero__actions .btn { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════
   HERO SLIDER (.hslider)
   ═══════════════════════════════════════ */

.hslider {
  position: relative;
  width: 100%;
  min-height: 75dvh;
  max-height: 85dvh;
  overflow: hidden;
  color: var(--c-white);
}

/* Track = alle Slides übereinander */
.hslider__track {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100dvh;
}

/* Einzelner Slide */
.hslider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s cubic-bezier(.4,0,.2,1);
  z-index: 0;
}
.hslider__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

/* Hintergrundbild */
.hslider__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 6s ease;
  z-index: 0;
}
.hslider__slide.is-active .hslider__bg {
  transform: scale(1);
}
.hslider__bg--s1 { background-image: url('../images/content/campaign/couple-50s-mountain.png'); }
.hslider__bg--s2 { background-image: url('../images/content/campaign/women-cafe-cappuccino.png'); }
.hslider__bg--s3 { background-image: url('../images/content/campaign/hotel-budapest.png'); }
.hslider__bg--s4 { background-image: url('../images/content/campaign/dentist-editorial-1.png'); }
.hslider__bg--s5 { background-image: url('../images/content/campaign/woman-60-laughing.png'); }

/* Overlay */
.hslider__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.40) 50%,
    rgba(0,0,0,0.55) 100%
  );
  z-index: 1;
}

/* Content */
.hslider__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 0;
  max-width: 100%;
  /* Content-Animation: rein beim Aktivieren */
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s 0.3s ease, transform 0.7s 0.3s ease;
}
.hslider__slide.is-active .hslider__content {
  opacity: 1;
  transform: translateY(0);
}
.hslider__content > .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  padding-top: 0;
  padding-bottom: 7rem; /* Stats-Bar Ausgleich */
  width: 100%;
}

.hslider__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-body-s);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
}
.hslider__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--c-primary);
  animation: smy-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

.hslider__heading {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 1.25rem;
  text-wrap: balance;
  color: #fff;
}
.hslider__heading em {
  font-style: italic;
  color: var(--c-primary);
}

.hslider__lead {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  margin: 0 0 2.25rem;
  font-weight: 300;
  max-width: 540px;
}

.hslider__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Dots */
.hslider__dots {
  position: absolute;
  bottom: 6.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.hslider__dot-btn {
  width: 28px;
  height: 3px;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, width 0.3s;
  border-radius: 0;
}
.hslider__dot-btn.is-active {
  background: var(--c-primary);
  width: 48px;
}

/* Arrows */
.hslider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 3rem;
  height: 3rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  border-radius: 0;
}
.hslider__arrow:hover { background: rgba(255,255,255,0.22); }
.hslider__arrow--prev { left: 1.5rem; }
.hslider__arrow--next { right: 1.5rem; }

/* Stats Bar */
.hslider__stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hslider__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 1.25rem 2.5rem;
  flex: 1;
  max-width: 220px;
  text-align: center;
}
.hslider__stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  margin: 0.75rem 0;
  align-self: stretch;
}
.hslider__stat-num {
  font-family: var(--ff-display);
  font-weight: 400;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--c-primary);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hslider__stat-label {
  font-size: 0.7rem;
  font-weight: 300;
  opacity: 0.5;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 767px) {
  .hslider__content { padding: 0; padding-bottom: 9rem; max-width: 100%; }
  .hslider__actions { flex-direction: column; width: 100%; }
  .hslider__actions .btn { width: 100%; justify-content: center; }
  .hslider__dots { left: 1.5rem; bottom: 7.5rem; }
  .hslider__arrow { display: none; }
  .hslider__stats { flex-wrap: wrap; }
  .hslider__stat { flex: 0 0 50%; padding: 1rem; }
  .hslider__stat-divider { display: none; }
}

/* ═══════════════════════════════════════
   PREMIUM TEASER CARDS (teasers)
   ═══════════════════════════════════════ */

.teasers {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
}

.teasers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.tcard {
  display: flex;
  flex-direction: column;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  overflow: hidden;
  text-decoration: none;
  color: var(--c-ink);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(41,18,69,0.1);
}

.tcard__img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.tcard__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.tcard:hover .tcard__img img {
  transform: scale(1.04);
}

.tcard__body {
  padding: 1.25rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.tcard__tag {
  display: inline-block;
  width: fit-content;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
  background: var(--c-sand);
  color: var(--c-ink-55);
}
.tcard__tag--lime {
  background: var(--c-primary);
  color: var(--c-dark);
}
.tcard__tag--coral {
  background: var(--c-secondary);
  color: var(--c-white);
}
.tcard__tag--lavender {
  background: var(--c-tertiary);
  color: var(--c-dark);
}

.tcard__title {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 400;
  margin: 0;
  color: var(--c-dark);
}

.tcard__desc {
  font-size: var(--text-body-s);
  line-height: 1.55;
  color: var(--c-ink-55);
  margin: 0;
  flex: 1;
}

.tcard__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--c-border);
}

.tcard__price {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--c-dark);
}

.tcard__arrow {
  font-size: 1.1rem;
  color: var(--c-ink-40);
  transition: transform 0.2s ease, color 0.2s ease;
}
.tcard:hover .tcard__arrow {
  transform: translateX(3px);
  color: var(--c-dark);
}

.teasers__more {
  text-align: center;
  margin-top: 2rem;
}

@media (max-width: 991px) {
  .teasers__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .teasers__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

/* ═══════════════════════════════════════
   PARTNER PAGE (ptr-)
   ═══════════════════════════════════════ */

/* ── Hero ── */
.ptr-hero {
  background: var(--c-dark);
  color: var(--c-white);
  padding: clamp(6rem, 10vw, 10rem) var(--gutter) clamp(4rem, 8vw, 7rem);
  text-align: center;
}
.ptr-hero__inner {
  max-width: 720px;
  margin: 0 auto;
}
.ptr-hero__eyebrow {
  font-size: var(--text-body-s);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 1.5rem;
}
.ptr-hero__heading {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem;
}
.ptr-hero__heading em { font-style: italic; color: var(--c-primary); }
.ptr-hero__lead {
  font-size: var(--text-body-l);
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin: 0 0 2.5rem;
  max-width: 600px;
  margin-inline: auto;
}
.ptr-hero__actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Section Heads ── */
.ptr-section-head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}
.ptr-section-heading {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--c-dark);
  margin: 0.5rem 0 0;
}
.ptr-section-heading em { font-style: italic; color: var(--c-dark); }
.ptr-section-sub {
  font-size: var(--text-body-l);
  color: var(--c-ink-55);
  line-height: 1.65;
  max-width: 580px;
  margin: 1rem auto 0;
}

/* ── Vorteile Cards ── */
.ptr-vorteile {
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
  background: var(--c-sand);
}

.ptr-cards {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ptr-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.ptr-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}
.ptr-card__icon--lime { background: var(--c-primary); color: var(--c-dark); }
.ptr-card__icon--coral { background: var(--c-secondary); color: var(--c-white); }
.ptr-card__icon--lavender { background: var(--c-tertiary); color: var(--c-dark); }

.ptr-card__title {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--c-dark);
  margin: 0.25rem 0 0;
}
.ptr-card__desc {
  font-size: var(--text-body-m);
  color: var(--c-ink-55);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 860px) { .ptr-cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

/* ── Process Steps ── */
.ptr-process {
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
}

.ptr-steps {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.ptr-step {
  padding: 1.5rem;
  border-left: 3px solid var(--c-primary);
}
.ptr-step__num {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-style: italic;
  color: var(--c-primary);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.ptr-step__title {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--c-dark);
  margin: 0 0 0.5rem;
}
.ptr-step__desc {
  font-size: var(--text-body-s);
  color: var(--c-ink-55);
  line-height: 1.6;
  margin: 0;
}

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

/* ── Regions Split ── */
.ptr-regions {
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
  background: var(--c-dark);
  color: var(--c-white);
}
.ptr-regions__grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.ptr-region {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ptr-region__badge {
  display: inline-block;
  width: fit-content;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}
.ptr-region__badge--lime { background: var(--c-primary); color: var(--c-dark); }
.ptr-region__badge--coral { background: var(--c-secondary); color: var(--c-white); }

.ptr-region__title {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0;
}
.ptr-region__title em { font-style: italic; color: var(--c-primary); }
.ptr-region__desc {
  font-size: var(--text-body-m);
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin: 0;
}
.ptr-region__list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ptr-region__list li {
  font-size: var(--text-body-s);
  color: rgba(255,255,255,0.7);
  padding-left: 1.25rem;
  position: relative;
}
.ptr-region__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--c-primary);
  font-weight: 600;
}

@media (max-width: 767px) { .ptr-regions__grid { grid-template-columns: 1fr; } }

/* ── Certification Accordion ── */
.ptr-cert {
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
  background: var(--c-sand);
}
.ptr-cert__grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
.ptr-cert__content .ptr-section-heading { text-align: left; }
.ptr-cert__content .ptr-section-sub { margin: 1rem 0 0; text-align: left; }

.ptr-acc {
  border-bottom: 1px solid var(--c-border);
}
.ptr-acc__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--c-dark);
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}
.ptr-acc__btn:hover { color: var(--c-ink); }
.ptr-acc__btn svg {
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--c-ink-40);
}
.ptr-acc__btn.is-open svg { transform: rotate(45deg); }

.ptr-acc__body {
  overflow: hidden;
}
.ptr-acc__body p {
  font-size: var(--text-body-m);
  color: var(--c-ink-55);
  line-height: 1.7;
  padding-bottom: 1.25rem;
  margin: 0;
}

@media (max-width: 860px) {
  .ptr-cert__grid { grid-template-columns: 1fr; }
  .ptr-cert__content { text-align: center; }
  .ptr-cert__content .ptr-section-heading { text-align: center; }
  .ptr-cert__content .ptr-section-sub { text-align: center; }
}

/* ── Timeline ── */
.ptr-timeline {
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
}
.ptr-tl {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.ptr-tl__line {
  position: absolute;
  top: 14px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 2px;
  background: var(--c-border);
}
.ptr-tl__step {
  text-align: center;
  position: relative;
  padding: 0 1rem;
}
.ptr-tl__dot {
  width: 28px;
  height: 28px;
  background: var(--c-primary);
  border: 4px solid var(--c-white);
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 2px var(--c-border);
}
.ptr-tl__title {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--c-dark);
  margin: 0 0 0.4rem;
}
.ptr-tl__desc {
  font-size: var(--text-body-s);
  color: var(--c-ink-55);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 767px) {
  .ptr-tl { grid-template-columns: 1fr; gap: 2rem; }
  .ptr-tl__line { display: none; }
}

/* ── CTA ── */
.ptr-cta {
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
  background: var(--c-dark);
  color: var(--c-white);
}
.ptr-cta__wrap {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.ptr-cta__heading {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.12;
  margin: 0.5rem 0 1rem;
}
.ptr-cta__heading em { font-style: italic; color: var(--c-primary); }
.ptr-cta__lead {
  font-size: var(--text-body-l);
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin: 0 0 2rem;
}
.ptr-cta__actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════
   DUAL ACTION CARDS (dualact)
   ═══════════════════════════════════════ */

.dualact {
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
  background: var(--c-sand);
}

.dualact__grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.dualact__card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dualact__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(41,18,69,0.08);
}

.dualact__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 0.5rem;
}
.dualact__icon--lime { background: var(--c-primary); color: var(--c-dark); }
.dualact__icon--lavender { background: var(--c-tertiary); color: var(--c-dark); }

.dualact__title {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--c-dark);
  margin: 0;
}

.dualact__desc {
  font-size: var(--text-body-m);
  color: var(--c-ink-55);
  line-height: 1.65;
  margin: 0 0 0.5rem;
  flex: 1;
}

.dualact__card .btn {
  width: fit-content;
  margin-top: auto;
}

@media (max-width: 640px) {
  .dualact__grid { grid-template-columns: 1fr; max-width: 420px; }
}

/* ═══════════════════════════════════════
   2026 MORPHISM PREMIUM LAYER
   Shadows, Glass, Depth, Motion
   ═══════════════════════════════════════ */

/* ── Elevated Button Upgrade ── */
.btn {
  box-shadow: var(--sh-sm);
  transition: all var(--dur-md) var(--ease-spring);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.2) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--dur-fast);
  pointer-events: none;
}
.btn:hover::after { opacity: 1; }
.btn:hover {
  box-shadow: var(--sh-elevated);
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
  box-shadow: var(--sh-sm);
}

/* Primary button glow */
.btn:not(.btn--ghost):not(.btn--glass):not(.btn--on-dark-ghost):hover {
  box-shadow: var(--sh-glow-lime);
}

/* ── Glass Card Utility ── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  box-shadow: var(--sh-elevated);
}

/* ── Card Depth System ── */
.category-card,
.tcard,
.clinic-card,
.review-card,
.pricing__card,
.dualact__card,
.ptr-card {
  box-shadow: var(--sh-sm);
  transition: transform var(--dur-md) var(--ease-spring),
              box-shadow var(--dur-md) var(--ease-spring);
}
.category-card:hover,
.tcard:hover,
.clinic-card:hover,
.review-card:hover,
.dualact__card:hover,
.ptr-card:hover {
  box-shadow: var(--sh-float);
  transform: translateY(-4px);
}

/* Pricing featured card glow */
.pricing__card--featured {
  box-shadow: var(--sh-glow-lime);
}
.pricing__card--featured:hover {
  box-shadow: var(--sh-glow-lime), var(--sh-float);
}

/* ── Section Gradient Transitions ── */
.ptr-vorteile,
.dualact,
.ptr-cert {
  background: linear-gradient(180deg, var(--c-sand) 0%, rgba(249,248,242,.4) 100%);
}

/* ── Morphism Input Fields ── */
.form-field input,
.phero__search-input,
.mag-search__input,
.faq-search__input {
  box-shadow: var(--sh-inner);
  transition: border-color var(--dur-fast), box-shadow var(--dur-md) var(--ease-smooth);
}
.form-field input:focus,
.mag-search__input:focus,
.faq-search__input:focus {
  box-shadow: var(--sh-inner), 0 0 0 4px rgba(41,18,69,.07);
}

/* ── Premium Specular Highlight on Hero ── */
.vhero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(244,255,146,.06) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

/* ── Scroll-driven fade reveal ── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-slow) var(--ease-smooth),
              transform var(--dur-slow) var(--ease-spring);
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Stagger children ── */
.animate-on-scroll.is-visible .tcard,
.animate-on-scroll.is-visible .ptr-card,
.animate-on-scroll.is-visible .ptr-step,
.animate-on-scroll.is-visible .stepper__step,
.animate-on-scroll.is-visible .category-card,
.animate-on-scroll.is-visible .clinic-card,
.animate-on-scroll.is-visible .review-card {
  animation: smy-stagger-in var(--dur-slow) var(--ease-spring) both;
}
.animate-on-scroll.is-visible > :nth-child(1) { animation-delay: 0s; }
.animate-on-scroll.is-visible > :nth-child(2) { animation-delay: .06s; }
.animate-on-scroll.is-visible > :nth-child(3) { animation-delay: .12s; }
.animate-on-scroll.is-visible > :nth-child(4) { animation-delay: .18s; }
.animate-on-scroll.is-visible > :nth-child(5) { animation-delay: .24s; }
.animate-on-scroll.is-visible > :nth-child(6) { animation-delay: .30s; }
.animate-on-scroll.is-visible > :nth-child(7) { animation-delay: .36s; }
.animate-on-scroll.is-visible > :nth-child(8) { animation-delay: .42s; }

@keyframes smy-stagger-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Shimmer line on trust strips ── */
.vhero__stats::after,
.phero__trust::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244,255,146,.3), transparent);
  animation: smy-shimmer 4s ease-in-out infinite;
}
@keyframes smy-shimmer {
  0%   { left: -50%; }
  100% { left: 150%; }
}

/* ── Premium Badge Pill ── */
.badge, .tcard__tag, .ptr-region__badge {
  box-shadow: var(--sh-sm);
}

/* ── Divider with subtle gradient ── */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-border-strong), transparent);
  border: none;
  margin: 0;
}

/* ── Hover image zoom with smooth ease ── */
.tcard__img img,
.clinic-card__img img,
.masonry__img img {
  transition: transform var(--dur-slow) var(--ease-spring);
}
.tcard:hover .tcard__img img,
.clinic-card:hover .clinic-card__img img {
  transform: scale(1.04);
}

/* ── Icon circle glow on hover ── */
.ptr-card:hover .ptr-card__icon--lime { box-shadow: var(--sh-glow-lime); }
.ptr-card:hover .ptr-card__icon--coral { box-shadow: var(--sh-glow-coral); }
.ptr-card:hover .ptr-card__icon--lavender { box-shadow: 0 0 0 1px rgba(214,201,255,.2), 0 8px 32px -4px rgba(214,201,255,.15); }

/* ── Timeline dot pulse ── */
.ptr-tl__dot {
  transition: box-shadow var(--dur-md) var(--ease-smooth);
}
.ptr-tl__step:hover .ptr-tl__dot {
  box-shadow: 0 0 0 2px var(--c-border), 0 0 0 6px rgba(244,255,146,.2);
}

/* ── Stepper dot elevation ── */
.stepper__dot {
  box-shadow: var(--sh-sm);
  transition: box-shadow var(--dur-md) var(--ease-smooth);
}
.stepper__step:hover .stepper__dot {
  box-shadow: var(--sh-elevated);
}

/* ── Preisvergleich cell highlight shimmer ── */
.pricecompare__cell--sm--highlight {
  position: relative;
  overflow: hidden;
}
.pricecompare__cell--sm--highlight::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(244,255,146,.08), transparent);
  animation: smy-shimmer 6s ease-in-out infinite;
}

/* ── Navigation glass effect ── */
.nav {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ── Premium focus ring ── */
:focus-visible {
  outline: 2px solid var(--c-primary);
  outline-offset: 3px;
}

/* ── Selection color ── */
::selection {
  background: rgba(244,255,146,.3);
  color: var(--c-dark);
}

/* ── Smooth scroll ── */
html { scroll-behavior: smooth; }

/* ═══════════════════════════════════════
   KOSTENPLAN UPLOAD (kpu-)
   Premium 2026 Morphism
   ═══════════════════════════════════════ */

/* ── Hero ── */
.kpu-hero {
  background: var(--c-dark);
  color: var(--c-white);
  padding: clamp(5rem, 8vw, 8rem) var(--gutter) clamp(3rem, 5vw, 4rem);
  text-align: center;
}
.kpu-hero__inner {
  max-width: 640px;
  margin: 0 auto;
}
.kpu-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-body-s);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 1.25rem;
}
.kpu-hero__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-primary);
  animation: smy-pulse 2s ease-in-out infinite;
}
.kpu-hero__heading {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
}
.kpu-hero__heading em { font-style: italic; color: var(--c-primary); }
.kpu-hero__lead {
  font-size: var(--text-body-l);
  color: rgba(255,255,255,.5);
  line-height: 1.65;
  margin: 0;
}

/* ── Flow Grid ── */
.kpu-flow {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) var(--gutter) clamp(3rem, 6vw, 5rem);
}
.kpu-flow__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(2rem, 3vw, 3rem);
  align-items: start;
}

/* ── Main Form ── */
.kpu-main {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  box-shadow: var(--sh-elevated);
  padding: clamp(2rem, 3vw, 3rem);
}

/* Progress */
.kpu-progress {
  margin-bottom: 2rem;
}
.kpu-progress__bar {
  height: 3px;
  background: var(--c-border);
  overflow: hidden;
}
.kpu-progress__fill {
  height: 100%;
  background: var(--c-primary);
  transition: width var(--dur-md) var(--ease-spring);
}
.kpu-progress__label {
  font-size: var(--text-body-s);
  color: var(--c-ink-40);
  margin: 0.5rem 0 0;
}

/* Steps */
.kpu-step__head {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}
.kpu-step__num {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--c-primary);
  background: var(--c-dark);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.kpu-step__title {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--c-dark);
  margin: 0 0 0.25rem;
}
.kpu-step__desc {
  font-size: var(--text-body-m);
  color: var(--c-ink-55);
  margin: 0;
  line-height: 1.6;
}

/* Dropzone */
.kpu-dropzone {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  border: 2px dashed var(--c-border-strong);
  background: var(--c-sand);
  cursor: pointer;
  text-align: center;
  padding: 2rem;
  transition: all var(--dur-md) var(--ease-smooth);
  margin-bottom: 1.5rem;
}
.kpu-dropzone:hover,
.kpu-dropzone.is-dragover {
  border-color: var(--c-primary);
  background: rgba(244,255,146,.06);
  box-shadow: var(--sh-glow-lime);
}
.kpu-dropzone.has-file {
  border-style: solid;
  border-color: var(--c-primary);
  background: rgba(244,255,146,.08);
}
.kpu-dropzone__icon {
  width: 56px;
  height: 56px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: var(--sh-sm);
  color: var(--c-dark);
}
.kpu-dropzone__text {
  font-size: var(--text-body-m);
  font-weight: 500;
  color: var(--c-dark);
  margin: 0;
}
.kpu-dropzone__hint {
  font-size: var(--text-body-s);
  color: var(--c-ink-40);
  margin: 0.35rem 0 0;
}
.kpu-dropzone__check {
  width: 44px;
  height: 44px;
  background: var(--c-primary);
  color: var(--c-dark);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}
.kpu-dropzone__filename {
  font-weight: 600;
  color: var(--c-dark);
  margin: 0;
  word-break: break-all;
}
.kpu-dropzone__change {
  font-size: var(--text-body-s);
  color: var(--c-ink-40);
  margin: 0.25rem 0 0;
}
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Treatment Buttons */
.kpu-treatments {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}
.kpu-treat-btn {
  padding: 0.6rem 1.15rem;
  border: 1.5px solid var(--c-border);
  background: var(--c-white);
  font-family: var(--ff-body);
  font-size: var(--text-body-m);
  color: var(--c-ink);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-smooth);
  box-shadow: var(--sh-sm);
}
.kpu-treat-btn:hover {
  border-color: var(--c-dark);
  box-shadow: var(--sh-elevated);
}
.kpu-treat-btn.is-selected {
  background: var(--c-dark);
  border-color: var(--c-dark);
  color: var(--c-primary);
  box-shadow: var(--sh-glow-lime);
}

/* Fields */
.kpu-fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.kpu-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.kpu-field label {
  font-size: var(--text-body-s);
  font-weight: 500;
  color: var(--c-ink);
}
.kpu-field input,
.kpu-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--c-border);
  background: var(--c-sand);
  font-family: var(--ff-body);
  font-size: var(--text-body-m);
  color: var(--c-dark);
  box-shadow: var(--sh-inner);
  transition: border-color var(--dur-fast), box-shadow var(--dur-md);
  box-sizing: border-box;
}
.kpu-field input:focus,
.kpu-field textarea:focus {
  outline: none;
  border-color: var(--c-dark);
  box-shadow: var(--sh-inner), 0 0 0 4px rgba(41,18,69,.07);
}
.kpu-field textarea {
  resize: vertical;
  min-height: 100px;
}

/* Checkbox */
.kpu-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: var(--text-body-s);
  color: var(--c-ink-55);
  cursor: pointer;
}
.kpu-checkbox input { margin-top: 2px; flex-shrink: 0; }
.kpu-checkbox a { color: var(--c-dark); font-weight: 500; }

/* Actions */
.kpu-step__actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.kpu-step__actions .btn.is-disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* ── Confirmation ── */
.kpu-confirm {
  text-align: center;
  padding: 2rem 0;
}
.kpu-confirm__icon {
  width: 64px;
  height: 64px;
  background: var(--c-primary);
  color: var(--c-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--sh-glow-lime);
}
.kpu-confirm__title {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--c-dark);
  margin: 0 0 0.75rem;
}
.kpu-confirm__text {
  font-size: var(--text-body-l);
  color: var(--c-ink-55);
  line-height: 1.65;
  max-width: 480px;
  margin: 0 auto 2rem;
}
.kpu-confirm__facts {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.kpu-confirm__fact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-body-m);
  color: var(--c-ink);
}
.kpu-confirm__fact-icon {
  font-size: 1.25rem;
}
.kpu-confirm__fact small {
  font-size: var(--text-body-s);
  color: var(--c-ink-40);
}

/* ── Sidebar ── */
.kpu-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: 6rem;
}

.kpu-sidebar__card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--sh-sm);
}
.kpu-sidebar__heading {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--c-dark);
  margin: 0 0 1rem;
}
.kpu-sidebar__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.kpu-sidebar__list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-body-m);
  color: var(--c-ink);
}
.kpu-sidebar__list svg {
  color: var(--c-primary);
  flex-shrink: 0;
}

/* Stat Card */
.kpu-sidebar__stat {
  background: var(--c-dark);
  color: var(--c-white);
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: var(--sh-elevated);
}
.kpu-sidebar__stat-num {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-style: italic;
  color: var(--c-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.kpu-sidebar__stat-label {
  font-size: var(--text-body-s);
  color: rgba(255,255,255,.5);
  line-height: 1.5;
}

/* Trust Badges */
.kpu-sidebar__trust {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.kpu-sidebar__badge {
  font-size: var(--text-body-s);
  padding: 0.35rem 0.75rem;
  background: var(--c-sand);
  border: 1px solid var(--c-border);
  color: var(--c-ink-55);
  white-space: nowrap;
}

/* Quote */
.kpu-sidebar__quote {
  background: var(--c-sand);
  border: 1px solid var(--c-border);
  padding: 1.5rem;
}
.kpu-sidebar__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.75rem;
}
.kpu-sidebar__quote blockquote {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--c-dark);
  line-height: 1.5;
  margin: 0 0 0.5rem;
}
.kpu-sidebar__quote cite {
  font-style: normal;
  font-size: var(--text-body-s);
  color: var(--c-ink-40);
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .kpu-flow__grid {
    grid-template-columns: 1fr;
  }
  .kpu-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .kpu-sidebar__quote { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .kpu-sidebar { grid-template-columns: 1fr; }
  .kpu-step__head { flex-direction: column; gap: 0.75rem; }
}

/* ═══════════════════════════════════════
   CHATBOX — Premium 2026
   ═══════════════════════════════════════ */

.chatbox { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 9999; }
[x-cloak] { display: none !important; }

/* FAB */
.chatbox__fab {
  width: 56px; height: 56px;
  background: var(--c-dark);
  color: var(--c-primary);
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: var(--sh-float);
  transition: all var(--dur-md) var(--ease-spring);
  position: relative;
  z-index: 2;
}
.chatbox__fab:hover {
  transform: scale(1.08);
  box-shadow: var(--sh-glow-lime);
}
.chatbox__fab.is-open { background: var(--c-ink); transform: scale(1); }

/* Panel */
.chatbox__panel {
  position: absolute;
  bottom: 72px; right: 0;
  width: 370px;
  max-height: 520px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  box-shadow: var(--sh-float);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Transitions */
.chatbox--enter { transition: all var(--dur-md) var(--ease-spring); }
.chatbox--leave { transition: all var(--dur-fast) var(--ease-smooth); }
.chatbox--enter-start { opacity: 0; transform: translateY(12px) scale(.96); }
.chatbox--enter-end { opacity: 1; transform: translateY(0) scale(1); }

/* Header */
.chatbox__header {
  display: flex; align-items: center; gap: .75rem;
  padding: 1rem 1.25rem;
  background: var(--c-dark);
  color: var(--c-white);
}
.chatbox__header-avatar {
  width: 36px; height: 36px;
  border-radius: 50%; overflow: hidden;
  position: relative; flex-shrink: 0;
}
.chatbox__header-avatar img { width: 100%; height: 100%; object-fit: cover; }
.chatbox__status {
  position: absolute; bottom: 0; right: 0;
  width: 10px; height: 10px;
  background: #4ade80; border: 2px solid var(--c-dark);
  border-radius: 50%;
}
.chatbox__header-name {
  font-size: .85rem; font-weight: 600; margin: 0;
}
.chatbox__header-status {
  font-size: .7rem; opacity: .5; margin: 0;
}

/* Body */
.chatbox__body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  background: var(--c-sand);
  max-height: 340px;
}

/* Messages */
.chatbox__msg p {
  margin: 0;
  padding: .65rem .9rem;
  font-size: .82rem;
  line-height: 1.5;
  max-width: 85%;
}
.chatbox__msg--bot p {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  color: var(--c-ink);
  align-self: flex-start;
}
.chatbox__msg--user p {
  background: var(--c-dark);
  color: var(--c-white);
  margin-left: auto;
}
.chatbox__msg--bot { display: flex; }
.chatbox__msg--user { display: flex; justify-content: flex-end; }

/* Quick Replies */
.chatbox__quickreplies {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  padding: .25rem 0;
}
.chatbox__qr {
  font-family: var(--ff-body);
  font-size: .72rem;
  font-weight: 500;
  padding: .4rem .75rem;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  color: var(--c-dark);
  cursor: pointer;
  transition: all var(--dur-fast);
}
.chatbox__qr:hover {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: var(--c-dark);
}

/* Typing */
.chatbox__typing {
  display: flex; align-items: center; gap: 4px;
  padding: .5rem .9rem;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  width: fit-content;
}
.chatbox__typing span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-ink-40);
  animation: chatTyping 1.2s ease-in-out infinite;
}
.chatbox__typing span:nth-child(2) { animation-delay: .2s; }
.chatbox__typing span:nth-child(3) { animation-delay: .4s; }
@keyframes chatTyping {
  0%, 60%, 100% { transform: translateY(0); opacity: .4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

/* Input */
.chatbox__input {
  display: flex;
  border-top: 1px solid var(--c-border);
  background: var(--c-white);
}
.chatbox__input input {
  flex: 1;
  border: none;
  outline: none;
  padding: .85rem 1rem;
  font-family: var(--ff-body);
  font-size: .85rem;
  color: var(--c-dark);
  background: transparent;
}
.chatbox__input input::placeholder { color: var(--c-ink-40); }
.chatbox__input button {
  background: none; border: none;
  padding: 0 1rem;
  color: var(--c-dark);
  cursor: pointer;
  transition: color var(--dur-fast);
}
.chatbox__input button:hover { color: var(--c-primary); }
.chatbox__input button:disabled { opacity: .3; cursor: default; }

/* Mobile */
@media (max-width: 480px) {
  .chatbox__panel {
    width: calc(100vw - 2rem);
    right: -0.5rem;
    max-height: 70dvh;
  }
}

/* ═══════════════════════════════════════
   POLISH LAYER — Kleine UI Details 2026
   ═══════════════════════════════════════ */

/* ── Global Search Bar (reusable) ── */
.smy-search {
  display: flex;
  align-items: center;
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  padding: 0;
  max-width: 480px;
  transition: border-color var(--dur-fast), box-shadow var(--dur-md) var(--ease-smooth);
  box-shadow: var(--sh-sm);
}
.smy-search:focus-within {
  border-color: var(--c-dark);
  box-shadow: var(--sh-inner), 0 0 0 4px rgba(41,18,69,.07);
}
.smy-search__icon {
  padding: 0 0 0 1rem;
  color: var(--c-ink-40);
  display: flex;
  flex-shrink: 0;
}
.smy-search__input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0.75rem 1rem;
  font-family: var(--ff-body);
  font-size: var(--text-body-m);
  color: var(--c-dark);
  background: transparent;
}
.smy-search__input::placeholder { color: var(--c-ink-40); }

/* ── Back-to-Top Button ── */
.btt {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  width: 40px; height: 40px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  color: var(--c-dark);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: var(--sh-sm);
  opacity: 0;
  pointer-events: none;
  transition: all var(--dur-md) var(--ease-spring);
  z-index: 9998;
}
.btt.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.btt:hover {
  background: var(--c-dark);
  color: var(--c-primary);
  box-shadow: var(--sh-elevated);
  transform: translateY(-2px);
}

/* ── Breadcrumb Trail ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: var(--text-body-s);
  color: var(--c-ink-40);
  margin-bottom: 1.5rem;
}
.breadcrumb a {
  color: var(--c-ink-40);
  text-decoration: none;
  transition: color var(--dur-fast);
}
.breadcrumb a:hover { color: var(--c-dark); }
.breadcrumb__sep { opacity: 0.4; }

/* ── Notification Badge (pill) ── */
.notif-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--text-body-s);
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  background: var(--c-primary);
  color: var(--c-dark);
  letter-spacing: 0.02em;
  box-shadow: var(--sh-sm);
}
.notif-badge--subtle {
  background: var(--c-sand);
  color: var(--c-ink-55);
}

/* ── Icon Button (circle) ── */
.icon-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  color: var(--c-dark);
  cursor: pointer;
  transition: all var(--dur-fast);
  box-shadow: var(--sh-sm);
  border-radius: 0;
  flex-shrink: 0;
}
.icon-btn:hover {
  background: var(--c-dark);
  color: var(--c-primary);
  border-color: var(--c-dark);
  box-shadow: var(--sh-elevated);
}
.icon-btn--round { border-radius: 50%; }
.icon-btn--lg { width: 48px; height: 48px; }

/* ── Tooltip ── */
[data-tooltip] {
  position: relative;
}
[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--c-dark);
  color: var(--c-white);
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.3rem 0.6rem;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: all var(--dur-fast) var(--ease-smooth);
  z-index: 100;
}
[data-tooltip]:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── Skeleton Loading Placeholder ── */
.skeleton {
  background: transparent;
  animation: none;
}
@keyframes smy-skeleton {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── Divider with Label ── */
.divider-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
}
.divider-label::before,
.divider-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--c-border);
}
.divider-label span {
  font-size: var(--text-body-s);
  color: var(--c-ink-40);
  white-space: nowrap;
}

/* ── Stat Micro Card ── */
.stat-micro {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 0.75rem 1rem;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  box-shadow: var(--sh-sm);
  text-align: center;
  min-width: 80px;
}
.stat-micro__num {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--c-dark);
  line-height: 1;
}
.stat-micro__label {
  font-size: 0.65rem;
  color: var(--c-ink-40);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.2rem;
}

/* ── Tag Pill Group ── */
.tag-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
  background: var(--c-sand);
  color: var(--c-ink-55);
  border: 1px solid var(--c-border);
  transition: all var(--dur-fast);
}
.tag-pill:hover {
  background: var(--c-dark);
  color: var(--c-primary);
  border-color: var(--c-dark);
}
.tag-pill--active {
  background: var(--c-dark);
  color: var(--c-primary);
  border-color: var(--c-dark);
}

/* ── Avatar Stack ── */
.avatar-stack {
  display: flex;
}
.avatar-stack__item {
  width: 32px; height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-white);
  margin-left: -8px;
  box-shadow: var(--sh-sm);
}
.avatar-stack__item:first-child { margin-left: 0; }
.avatar-stack__more {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--c-dark);
  color: var(--c-primary);
  font-size: 0.7rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-left: -8px;
  border: 2px solid var(--c-white);
}

/* ── Announcement Dot Animation ── */
@keyframes smy-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}

/* ── Link with Arrow (inline) ── */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: var(--text-body-m);
  font-weight: 500;
  color: var(--c-dark);
  text-decoration: none;
  transition: gap var(--dur-fast);
}
.link-arrow:hover { gap: 0.6rem; }
.link-arrow svg { transition: transform var(--dur-fast); }
.link-arrow:hover svg { transform: translateX(2px); }

/* ── Old class compat (used in legacy templates) ── */
.container-xlarge {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.header-h1 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--c-dark);
  margin: 0 0 0.75rem;
}
.header-h1 em { font-style: italic; }
.header-h2 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--c-dark);
  margin: 0 0 0.5rem;
}
.header-h3 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  line-height: 1.15;
  color: var(--c-dark);
  margin: 0 0 0.5rem;
}
.body-l { font-size: var(--text-body-l); line-height: 1.65; color: var(--c-ink); }
.body-m { font-size: var(--text-body-m); line-height: 1.6; color: var(--c-ink); }
.body-s { font-size: var(--text-body-s); line-height: 1.55; color: var(--c-ink-55); }
.c-muted, [style*="c-muted"] { color: var(--c-ink-55) !important; }

/* button-v2 compat → btn */
.button-v2 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--c-dark);
  color: var(--c-primary);
  font-family: var(--ff-body);
  font-size: var(--text-body-m);
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--sh-sm);
  transition: all var(--dur-md) var(--ease-spring);
}
.button-v2:hover {
  box-shadow: var(--sh-elevated);
  transform: translateY(-1px);
}

/* ── Cookie Banner Placeholder ── */
.cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--c-dark);
  color: var(--c-white);
  padding: 1rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: var(--text-body-s);
  z-index: 9999;
  box-shadow: 0 -4px 24px rgba(41,18,69,.2);
  transform: translateY(100%);
  transition: transform var(--dur-md) var(--ease-spring);
}
.cookie-bar.is-visible { transform: translateY(0); }
.cookie-bar p { margin: 0; opacity: .7; }
.cookie-bar .btn { flex-shrink: 0; }

/* ═══════════════════════════════════════
   STANDORTE PAGE (std-)
   ═══════════════════════════════════════ */

.std-hero {
  background: var(--c-dark);
  color: var(--c-white);
  padding: clamp(6rem, 10vw, 10rem) var(--gutter) clamp(3rem, 6vw, 5rem);
  text-align: center;
}
.std-hero__inner { max-width: 680px; margin: 0 auto; }
.std-hero__eyebrow {
  font-size: var(--text-body-s); font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--c-primary); margin-bottom: 1.25rem;
}
.std-hero__heading {
  font-family: var(--ff-display); font-weight: 400;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.08; letter-spacing: -0.02em; margin: 0 0 1.25rem;
}
.std-hero__heading em { font-style: italic; color: var(--c-primary); }
.std-hero__lead {
  font-size: var(--text-body-l); color: rgba(255,255,255,.5);
  line-height: 1.65; margin: 0;
}

/* Region Cards */
.std-regions { padding: clamp(3rem, 6vw, 5rem) 0; }
.std-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.std-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform var(--dur-md) var(--ease-spring), box-shadow var(--dur-md);
}
.std-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-float);
}

.std-card__img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.std-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-spring);
}
.std-card:hover .std-card__img img { transform: scale(1.04); }

.std-card__badge {
  position: absolute;
  top: 1rem; left: 1rem;
  font-size: 0.65rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.3rem 0.7rem;
  box-shadow: var(--sh-sm);
}
.std-card__badge--lime { background: var(--c-primary); color: var(--c-dark); }
.std-card__badge--coral { background: var(--c-secondary); color: var(--c-white); }
.std-card__badge--lavender { background: var(--c-tertiary); color: var(--c-dark); }

.std-card__body {
  padding: 1.5rem;
  display: flex; flex-direction: column; gap: 0.6rem;
}
.std-card__title {
  font-family: var(--ff-display);
  font-size: 1.5rem; font-weight: 400;
  color: var(--c-dark); margin: 0;
}
.std-card__country {
  font-size: var(--text-body-s); color: var(--c-ink-40);
  margin: 0;
}
.std-card__desc {
  font-size: var(--text-body-m); color: var(--c-ink-55);
  line-height: 1.6; margin: 0;
}

.std-card__stats {
  display: flex; gap: 1rem;
  padding: 0.75rem 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  margin: 0.25rem 0;
}
.std-card__stat { text-align: center; flex: 1; }
.std-card__stat-num {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.2rem; font-style: italic;
  color: var(--c-dark); line-height: 1;
}
.std-card__stat-label {
  font-size: 0.6rem; color: var(--c-ink-40);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-top: 0.15rem; display: block;
}

.std-card__tags {
  display: flex; flex-wrap: wrap; gap: 0.3rem;
}
.std-card .btn { width: fit-content; margin-top: 0.5rem; }

@media (max-width: 991px) { .std-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .std-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }

/* Quality Grid */
.std-quality {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--c-sand);
}
.std-quality__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: var(--container-max);
  margin: 0 auto;
}
.std-qual {
  padding: 1.5rem;
  border-left: 3px solid var(--c-primary);
}
.std-qual__icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.75rem;
}
.std-qual__icon--lime { background: var(--c-primary); color: var(--c-dark); }
.std-qual__icon--coral { background: var(--c-secondary); color: var(--c-white); }
.std-qual__icon--lavender { background: var(--c-tertiary); color: var(--c-dark); }
.std-qual h3 {
  font-family: var(--ff-display); font-size: 1.1rem;
  font-weight: 400; color: var(--c-dark); margin: 0 0 0.4rem;
}
.std-qual p {
  font-size: var(--text-body-s); color: var(--c-ink-55);
  line-height: 1.6; margin: 0;
}
@media (max-width: 860px) { .std-quality__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .std-quality__grid { grid-template-columns: 1fr; } }

/* Process Split */
.std-process {
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.std-process__split {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.std-process__text {
  font-size: var(--text-body-l); color: var(--c-ink-55);
  line-height: 1.7; margin: 1rem 0 1.5rem;
}
.std-process__numbers {
  display: flex; gap: 0.75rem;
}
.std-process__image {
  overflow: hidden;
}
.std-process__image img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  aspect-ratio: 4/3;
}
@media (max-width: 860px) {
  .std-process__split { grid-template-columns: 1fr; }
  .std-process__image { max-height: 300px; }
}

/* ════════════════���══════════════════════
   LEGAL PAGES (Impressum, Datenschutz, AGB)
   ═══════════════════════════════════════ */

.legal-hero {
  background: var(--c-dark);
  color: var(--c-white);
  padding: clamp(4rem, 7vw, 6rem) var(--gutter) clamp(2.5rem, 4vw, 3.5rem);
}
.legal-hero__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: var(--text-body-s);
  color: rgba(255,255,255,.4);
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: color var(--dur-fast);
}
.legal-back:hover { color: rgba(255,255,255,.7); }
.legal-hero__eyebrow {
  font-size: var(--text-body-s);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin: 0 0 0.75rem;
}
.legal-hero__heading {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}

/* Body Grid */
.legal-body {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) var(--gutter);
}
.legal-body__grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

/* TOC Sidebar */
.legal-toc {
  position: sticky;
  top: 6rem;
}
.legal-toc__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.legal-toc__label {
  font-size: var(--text-body-s);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-ink-40);
  margin: 0;
}
.legal-toc__nav {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.legal-toc__link {
  font-size: var(--text-body-s);
  color: var(--c-ink-55);
  text-decoration: none;
  padding: 0.35rem 0.75rem;
  border-left: 2px solid transparent;
  transition: all var(--dur-fast);
  line-height: 1.4;
}
.legal-toc__link:hover {
  color: var(--c-dark);
}
.legal-toc__link.is-active {
  color: var(--c-dark);
  font-weight: 500;
  border-left-color: var(--c-primary);
  background: rgba(244,255,146,.06);
}
.legal-toc__contact {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--c-border);
}
.legal-toc__contact p {
  font-size: var(--text-body-s);
  color: var(--c-ink-40);
  margin: 0 0 0.5rem;
}

/* Content Prose */
.legal-content {
  font-family: var(--ff-body);
  color: var(--c-ink);
  line-height: 1.75;
  font-size: var(--text-body-m);
  max-width: 720px;
}
.legal-content h1 {
  display: none;
}
.legal-content h2 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--c-dark);
  margin: 3rem 0 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--c-border);
  letter-spacing: -0.01em;
}
.legal-content h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.legal-content h3 {
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-dark);
  margin: 2rem 0 0.5rem;
}
.legal-content p {
  margin: 0 0 1rem;
  color: var(--c-ink-70);
}
.legal-content ul, .legal-content ol {
  margin: 0 0 1rem;
  padding-left: 1.5rem;
  color: var(--c-ink-70);
}
.legal-content li {
  margin-bottom: 0.35rem;
}
.legal-content a {
  color: var(--c-dark);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-content a:hover {
  color: var(--c-ink);
}
.legal-content strong {
  font-weight: 600;
  color: var(--c-dark);
}
.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: var(--text-body-s);
}
.legal-content th,
.legal-content td {
  text-align: left;
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid var(--c-border);
}
.legal-content th {
  font-weight: 600;
  color: var(--c-dark);
  background: var(--c-sand);
}
.legal-content blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  background: var(--c-sand);
  border-left: 3px solid var(--c-primary);
  font-style: italic;
  color: var(--c-ink-55);
}

@media (max-width: 860px) {
  .legal-body__grid {
    grid-template-columns: 1fr;
  }
  .legal-toc {
    position: static;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--c-border);
  }
  .legal-toc__nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.25rem;
  }
  .legal-toc__link {
    border-left: none;
    border-bottom: 2px solid transparent;
    padding: 0.3rem 0.6rem;
    font-size: 0.7rem;
  }
  .legal-toc__link.is-active {
    border-bottom-color: var(--c-primary);
    border-left: none;
  }
}

/* ═══════════════════════════════════════
   CUSTOMER JOURNEY (jour-)
   Interactive Infographic 2026
   ═══════════════════════════════════════ */

/* Hero */
.jour-hero {
  background: var(--c-dark);
  color: var(--c-white);
  padding: clamp(6rem, 10vw, 10rem) var(--gutter) clamp(3rem, 5vw, 4rem);
  text-align: center;
}
.jour-hero__inner { max-width: 640px; margin: 0 auto; }
.jour-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: var(--text-body-s); font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin-bottom: 1.25rem;
}
.jour-hero__heading {
  font-family: var(--ff-display); font-weight: 400;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.08; letter-spacing: -0.02em; margin: 0 0 1.25rem;
}
.jour-hero__heading em { font-style: italic; color: var(--c-primary); }
.jour-hero__lead {
  font-size: var(--text-body-l); color: rgba(255,255,255,.5);
  line-height: 1.65; margin: 0 0 2.5rem;
}
.jour-hero__scroll-hint {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: var(--text-body-s); color: rgba(255,255,255,.3);
  animation: jour-bounce 2s ease-in-out infinite;
}
@keyframes jour-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* Journey Section */
.jour {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem) var(--gutter) clamp(3rem, 6vw, 5rem);
}

/* Navigation Dots */
.jour__nav {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.jour__nav-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}
.jour__nav-line {
  position: absolute;
  top: 50%; left: 24px; right: 24px;
  height: 2px;
  background: var(--c-border);
  transform: translateY(-50%);
}
.jour__nav-fill {
  height: 100%;
  background: var(--c-primary);
  transition: width var(--dur-md) var(--ease-spring);
}
.jour__nav-dot {
  width: 48px; height: 48px;
  background: var(--c-white);
  border: 2px solid var(--c-border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  position: relative; z-index: 1;
  transition: all var(--dur-md) var(--ease-spring);
  box-shadow: var(--sh-sm);
}
.jour__nav-dot:hover {
  border-color: var(--c-dark);
  box-shadow: var(--sh-elevated);
}
.jour__nav-dot.is-active {
  background: var(--c-dark);
  border-color: var(--c-dark);
  box-shadow: var(--sh-glow-lime);
  transform: scale(1.1);
}
.jour__nav-dot.is-done {
  background: var(--c-primary);
  border-color: var(--c-primary);
}
.jour__nav-num {
  font-family: var(--ff-display);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--c-ink-40);
  transition: color var(--dur-fast);
}
.jour__nav-dot.is-active .jour__nav-num { color: var(--c-primary); }
.jour__nav-dot.is-done .jour__nav-num { color: var(--c-dark); }

/* Panels */
.jour__panels {
  position: relative;
}
.jour__panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  min-height: 380px;
}
.jour__panel-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.jour__panel-num {
  font-family: var(--ff-display);
  font-size: 3.5rem;
  font-style: italic;
  color: var(--c-primary);
  opacity: 0.2;
  line-height: 1;
}
.jour__panel-title {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: var(--c-dark);
  margin: 0;
}
.jour__panel-desc {
  font-size: var(--text-body-l);
  color: var(--c-ink-55);
  line-height: 1.7;
  margin: 0;
}

/* Fact Pills */
.jour__panel-facts {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 0.5rem 0;
}
.jour__fact {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: var(--text-body-s);
  font-weight: 500;
  color: var(--c-dark);
  padding: 0.4rem 0.75rem;
  background: var(--c-sand);
  border: 1px solid var(--c-border);
}
.jour__fact-icon { font-size: 0.9rem; }

/* Visual Side */
.jour__panel-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.jour__panel-card {
  width: 100%;
  max-width: 400px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  box-shadow: var(--sh-elevated);
  overflow: hidden;
}
.jour__visual-img {
  width: 100%; display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Mockup: Upload */
.jour__card-mockup {
  padding: 1.5rem;
}
.jour__mockup-bar {
  height: 8px;
  background: var(--c-border);
  margin-bottom: 1.25rem;
}
.jour__mockup-bar::after {
  content: '';
  display: block;
  width: 40%;
  height: 100%;
  background: var(--c-primary);
}
.jour__mockup-drop {
  border: 2px dashed var(--c-border);
  padding: 2.5rem 1.5rem;
  text-align: center;
  color: var(--c-ink-40);
}
.jour__mockup-drop p { margin: 0.5rem 0 0; font-size: var(--text-body-s); }

/* Mockup: Compare */
.jour__compare-mock {
  padding: 1.5rem;
}
.jour__compare-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--c-border);
  font-size: var(--text-body-m);
  color: var(--c-ink-55);
}
.jour__compare-row--smy { color: var(--c-dark); font-weight: 600; }
.jour__price-de { text-decoration: line-through; opacity: 0.5; }
.jour__price-smy {
  color: var(--c-dark);
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-style: italic;
}
.jour__compare-saving {
  padding: 1rem 0 0;
  font-size: var(--text-body-m);
  color: var(--c-dark);
  text-align: right;
}
.jour__compare-saving strong {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--c-primary);
  background: var(--c-dark);
  padding: 0.2rem 0.6rem;
  margin-left: 0.35rem;
}

/* Controls */
.jour__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--c-border);
}
.jour__ctrl {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--ff-body);
  font-size: var(--text-body-m);
  font-weight: 500;
  color: var(--c-ink-55);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem 0;
  transition: color var(--dur-fast);
}
.jour__ctrl:hover { color: var(--c-dark); }
.jour__ctrl:disabled { opacity: 0.3; cursor: default; }
.jour__ctrl--next { color: var(--c-dark); font-weight: 600; }

/* Stats */
.jour-stats {
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
  background: var(--c-sand);
}
.jour-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: var(--container-max);
  margin: 0 auto;
}
.jour-stats__item {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  box-shadow: var(--sh-sm);
}
.jour-stats__num {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-style: italic;
  color: var(--c-dark);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.jour-stats__label {
  font-size: var(--text-body-s);
  color: var(--c-ink-40);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 860px) {
  .jour__panel { grid-template-columns: 1fr; }
  .jour__panel-visual { order: -1; }
  .jour__panel-card { max-width: 100%; }
  .jour-stats__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .jour__nav-dot { width: 40px; height: 40px; }
  .jour-stats__grid { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; }
  .jour__controls { flex-wrap: wrap; gap: 0.75rem; }
}

/* ═══════════════════════════════════════
   SPLIT HERO — Reusable across all pages
   Text left / Image right, Dark BG
   ═══════════════════════════════════════ */

.split-hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 480px;
  background: var(--c-dark);
  color: var(--c-white);
}
.split-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 2.5rem) clamp(3rem, 6vw, 5rem) max(var(--gutter), calc((100vw - var(--container-max)) / 2 + var(--gutter)));
  gap: 0.5rem;
  max-width: 680px;
  margin-left: auto;
}
.split-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-body-s);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 0.25rem;
}
.split-hero__heading {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
}
.split-hero__heading em { font-style: italic; color: var(--c-primary); }
.split-hero__lead {
  font-size: var(--text-body-l);
  color: rgba(255,255,255,.5);
  line-height: 1.65;
  margin: 0.5rem 0 0;
  max-width: 520px;
}
.split-hero__image {
  position: relative;
  overflow: hidden;
}
.split-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 860px) {
  .split-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .split-hero__content {
    padding: clamp(3rem, 6vw, 5rem) var(--gutter);
    margin-left: 0;
    text-align: center;
    align-items: center;
  }
  .split-hero__image {
    max-height: 280px;
    order: -1;
  }
}

/* ═══════════════════════════════════════
   PATIENTENBERICHTE (pat-)
   ═══════════════════════════════════════ */

.pat-stats {
  background: var(--c-dark);
  padding: clamp(2rem, 4vw, 3rem) var(--gutter);
}
.pat-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: var(--container-max);
  margin: 0 auto;
  text-align: center;
}
.pat-stats__item { color: var(--c-white); }
.pat-stats__num {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-style: italic;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.pat-stats__label {
  font-size: var(--text-body-s);
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pat-stars { color: var(--c-primary); font-size: 0.85rem; letter-spacing: 2px; }

@media (max-width: 600px) { .pat-stats__grid { grid-template-columns: 1fr 1fr; } }

/* Grid */
.pat-grid-section { padding: clamp(3rem, 6vw, 5rem) 0; }
.pat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* Card */
.pat-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--sh-sm);
  transition: transform var(--dur-md) var(--ease-spring), box-shadow var(--dur-md);
}
.pat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-float);
}

.pat-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.pat-card__avatar {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-dark);
  flex-shrink: 0;
}
.pat-card__avatar--lime { background: var(--c-primary); }
.pat-card__avatar--coral { background: var(--c-secondary); color: var(--c-white); }
.pat-card__avatar--lavender { background: var(--c-tertiary); }

.pat-card__name {
  font-weight: 600;
  font-size: var(--text-body-l);
  color: var(--c-dark);
  margin: 0;
}
.pat-card__meta {
  font-size: var(--text-body-s);
  color: var(--c-ink-40);
  margin: 0;
}

.pat-card__quote {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 400;
  font-style: italic;
  color: var(--c-dark);
  line-height: 1.55;
  margin: 0;
  padding: 0;
  border: none;
}

.pat-card__footer {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--c-border);
}
.pat-card__details {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pat-card__saving {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--c-dark);
  background: var(--c-primary);
  padding: 0.15rem 0.5rem;
}
.pat-card__rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.pat-card__score {
  font-size: var(--text-body-s);
  font-weight: 600;
  color: var(--c-dark);
}
.pat-card__date {
  font-size: var(--text-body-s);
  color: var(--c-ink-40);
  margin: 0;
}

/* Lime border accent on hover */
.pat-card--lime:hover { border-color: var(--c-primary); }
.pat-card--coral:hover { border-color: var(--c-secondary); }
.pat-card--lavender:hover { border-color: var(--c-tertiary); }

/* Trust */
.pat-trust {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--c-sand);
}

@media (max-width: 700px) { .pat-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; } }

/* ═══════════════════════════════════════
   KOSTENVERGLEICH RECHNER (kv-)
   ═══════════════════════════════════════ */

.kv-calc {
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.kv-step {
  margin-bottom: 2rem;
}
.kv-step__label {
  font-size: var(--text-body-m);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-ink-40);
  margin: 0 0 1rem;
}

/* Treatment Buttons */
.kv-treatments {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.kv-treat-btn {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.75rem 1.25rem;
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  cursor: pointer;
  transition: all var(--dur-fast);
  box-shadow: var(--sh-sm);
}
.kv-treat-btn:hover {
  border-color: var(--c-dark);
}
.kv-treat-btn.is-active {
  background: var(--c-dark);
  border-color: var(--c-dark);
  box-shadow: var(--sh-glow-lime);
}
.kv-treat-btn__name {
  font-size: var(--text-body-m);
  font-weight: 600;
  color: var(--c-dark);
}
.kv-treat-btn.is-active .kv-treat-btn__name { color: var(--c-primary); }
.kv-treat-btn__hint {
  font-size: var(--text-body-s);
  color: var(--c-ink-40);
}
.kv-treat-btn.is-active .kv-treat-btn__hint { color: rgba(255,255,255,.5); }

/* Slider */
.kv-slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: var(--c-border);
  outline: none;
}
.kv-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px; height: 24px;
  background: var(--c-dark);
  cursor: pointer;
  border: 3px solid var(--c-primary);
}
.kv-slider::-moz-range-thumb {
  width: 24px; height: 24px;
  background: var(--c-dark);
  cursor: pointer;
  border: 3px solid var(--c-primary);
  border-radius: 0;
}
.kv-slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-body-s);
  color: var(--c-ink-40);
  margin-top: 0.25rem;
}

/* Result */
.kv-result {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  box-shadow: var(--sh-elevated);
  padding: 2rem;
  margin-bottom: 2rem;
}
.kv-result__compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--c-border);
}
.kv-result__side { text-align: center; }
.kv-result__label {
  font-size: var(--text-body-s);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-ink-40);
  margin: 0 0 0.5rem;
}
.kv-result__price {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  margin: 0;
}
.kv-result__price--de {
  color: var(--c-ink-40);
  text-decoration: line-through;
}
.kv-result__price--smy {
  color: var(--c-dark);
}
.kv-result__vs {
  font-size: var(--text-body-s);
  font-weight: 700;
  color: var(--c-ink-40);
  letter-spacing: 0.1em;
}

.kv-result__saving {
  text-align: center;
}
.kv-result__saving-inner {
  background: var(--c-dark);
  padding: 1.5rem 2rem;
  display: inline-block;
}
.kv-result__saving-label {
  font-size: var(--text-body-s);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,.5);
  margin: 0 0 0.25rem;
}
.kv-result__saving-amount {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-style: italic;
  color: var(--c-primary);
  margin: 0;
  line-height: 1;
}
.kv-result__saving-pct {
  font-size: var(--text-body-m);
  color: rgba(255,255,255,.6);
  margin: 0.5rem 0 0;
}
.kv-result__flight {
  font-size: var(--text-body-m);
  color: var(--c-ink-55);
  margin: 1rem 0 0;
}

/* Bottom */
.kv-bottom {
  text-align: center;
}
.kv-disclaimer {
  font-size: var(--text-body-s);
  color: var(--c-ink-40);
  margin: 0 0 1.5rem;
  max-width: 520px;
  margin-inline: auto;
}

@media (max-width: 600px) {
  .kv-result__compare { grid-template-columns: 1fr; gap: 0.5rem; }
  .kv-result__vs { display: none; }
  .kv-treatments { flex-direction: column; }
  .kv-treat-btn { flex-direction: row; justify-content: space-between; }
}

/* ═══════════════════════════════════════
   VORHER / NACHHER GALERIE (vn-)
   ═══════════════════════════════════════ */

.vn-gallery { padding: clamp(3rem, 6vw, 5rem) 0; }

/* Filters */
.vn-filters {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.vn-filter {
  padding: 0.5rem 1rem;
  font-size: var(--text-body-m);
  font-weight: 500;
  border: 1.5px solid var(--c-border);
  background: var(--c-white);
  color: var(--c-ink-55);
  cursor: pointer;
  transition: all var(--dur-fast);
}
.vn-filter:hover { border-color: var(--c-dark); color: var(--c-dark); }
.vn-filter.is-active {
  background: var(--c-dark);
  border-color: var(--c-dark);
  color: var(--c-primary);
}

/* Grid */
.vn-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* Card */
.vn-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform var(--dur-md) var(--ease-spring), box-shadow var(--dur-md);
}
.vn-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-float);
}

/* Visual Placeholder */
.vn-visual {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 180px;
}
.vn-before {
  background: var(--c-sand);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-right: 1px solid var(--c-border);
}
.vn-after {
  background: var(--c-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}
.vn-icon { font-size: 2rem; }
.vn-before .vn-label {
  font-size: var(--text-body-s);
  color: var(--c-ink-40);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.vn-after .vn-label {
  font-size: var(--text-body-s);
  color: var(--c-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.vn-divider-line {
  width: 3px;
  background: var(--c-primary);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vn-divider-dot {
  width: 16px; height: 16px;
  background: var(--c-primary);
  border: 3px solid var(--c-dark);
  border-radius: 50%;
  position: absolute;
}

/* Info */
.vn-info {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.vn-info__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.vn-info__title {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--c-dark);
  margin: 0;
}
.vn-info__meta {
  font-size: var(--text-body-s);
  color: var(--c-ink-40);
  margin: 0;
}
.vn-info__quote {
  font-family: var(--ff-display);
  font-size: var(--text-body-m);
  font-style: italic;
  color: var(--c-ink-55);
  line-height: 1.5;
  margin: 0.25rem 0;
  padding: 0;
  border: none;
}
.vn-info__stats {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

/* Note */
.vn-note {
  padding: clamp(2rem, 4vw, 3rem) 0;
  background: var(--c-sand);
}

@media (max-width: 700px) {
  .vn-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ═══════════════════════════════════════
   PATIENTENRECHTE (pr-)
   ═══════════════════════════════════════ */

/* Summary Card */
.pr-summary { padding: clamp(2rem, 4vw, 3rem) 0 0; }
.pr-summary__card {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem;
  background: var(--c-primary);
  border: 1px solid var(--c-dark);
}
.pr-summary__icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--c-dark);
  color: var(--c-primary);
  display: flex; align-items: center; justify-content: center;
}
.pr-summary__title {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--c-dark);
  margin: 0 0 0.75rem;
}
.pr-summary__list {
  margin: 0;
  padding-left: 1.25rem;
  font-size: var(--text-body-m);
  color: var(--c-dark);
  line-height: 1.7;
}
.pr-summary__list li { margin-bottom: 0.25rem; }

/* Accordion */
.pr-sections {
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(3rem, 6vw, 5rem);
}
.pr-acc {
  border-bottom: 1px solid var(--c-border);
}
.pr-acc:first-child { border-top: 1px solid var(--c-border); }
.pr-acc__trigger {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.pr-acc__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 40px;
  text-align: center;
}
.pr-acc__title {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--c-dark);
  flex: 1;
}
.pr-acc__chevron {
  flex-shrink: 0;
  color: var(--c-ink-40);
  transition: transform var(--dur-md) var(--ease-spring);
}
.pr-acc__chevron.is-open { transform: rotate(180deg); }
.pr-acc__body {
  overflow: hidden;
}
.pr-acc__content {
  padding: 0 0 1.5rem 3.5rem;
  font-size: var(--text-body-m);
  color: var(--c-ink-70);
  line-height: 1.75;
}
.pr-acc__content p { margin: 0 0 0.75rem; }
.pr-acc__content ul, .pr-acc__content ol { margin: 0 0 0.75rem; padding-left: 1.25rem; }
.pr-acc__content li { margin-bottom: 0.3rem; }
.pr-acc__content strong { color: var(--c-dark); font-weight: 600; }

/* Timeline */
.pr-timeline {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--c-sand);
}
.pr-tl {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 640px;
  margin: 0 auto;
}
.pr-tl__step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-left: 2px solid var(--c-primary);
  padding-left: 1.5rem;
  position: relative;
}
.pr-tl__num {
  width: 32px; height: 32px;
  background: var(--c-dark);
  color: var(--c-primary);
  font-family: var(--ff-display);
  font-size: 0.9rem;
  font-style: italic;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: absolute;
  left: -17px;
}
.pr-tl__step h3 {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--c-dark);
  margin: 0 0 0.25rem;
  margin-left: 1.5rem;
}
.pr-tl__step p {
  font-size: var(--text-body-m);
  color: var(--c-ink-55);
  margin: 0;
  margin-left: 1.5rem;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .pr-summary__card { flex-direction: column; }
  .pr-acc__content { padding-left: 0; }
}

/* ═══════════════════════════════════════════════════════════════
   SMY-NAV — Mega-Navigation (Alpine.js)
   ═══════════════════════════════════════════════════════════════ */

.smy-nav-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--c-sand);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.smy-nav-header.nav--scrolled {
  background: rgba(249,248,242,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--c-border);
  box-shadow: 0 2px 20px rgba(41,18,69,0.06);
}

.smy-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 4.5rem;
  gap: 1rem;
}

/* Logo */
.smy-nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.smy-nav-logo__img { height: 1.5rem; width: auto; }

/* Desktop links container */
.smy-nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: center;
}

/* Nav item (wrapper for dropdown) */
.smy-nav-item { position: relative; }

/* Simple link */
.smy-nav-link,
.smy-nav-btn {
  font-family: var(--ff-body);
  font-size: var(--text-body-l);
  font-weight: 300;
  color: var(--c-ink);
  padding: 1.5rem 1rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
  border: none;
  background: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.smy-nav-link:hover,
.smy-nav-btn:hover,
.smy-nav-btn.is-active { opacity: 0.55; }

/* Chevron rotation */
.smy-nav-chevron { transition: transform 0.22s ease; opacity: 0.45; }
.rotate-180 { transform: rotate(180deg); }

/* ── Dropdown Panels ── */
.smy-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--c-sand);
  border: 1px solid var(--c-border);
  border-top: none;
  border-radius: 0;
  box-shadow: 0 16px 48px -8px rgba(41,18,69,0.12);
  z-index: 300;
  padding: 1.75rem;
}

/* Sizes */
.smy-dropdown--mega { width: 880px; left: -200px; }
.smy-dropdown--medium { width: 380px; }
.smy-dropdown--login { width: 300px; right: 0; left: auto; }

/* Transitions */
.smy-dd-enter { transition: opacity 0.2s ease, transform 0.2s ease; }
.smy-dd-from { opacity: 0; transform: translateY(-4px); }
.smy-dd-to { opacity: 1; transform: translateY(0); }
.smy-dd-leave { transition: opacity 0.15s ease; }

/* Grid layouts */
.smy-dropdown__grid { display: grid; gap: 2rem; }
.smy-dropdown__grid--3col { grid-template-columns: 1fr 1fr 240px; }

/* Column */
.smy-dropdown__col { display: flex; flex-direction: column; gap: 0; }
.smy-dropdown__col--visual { gap: 1rem; }

/* Heading */
.smy-dropdown__heading {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-ink-55);
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--c-border);
  margin-bottom: 0.5rem;
}

/* Simple list (no grid) */
.smy-dropdown__simple { display: flex; flex-direction: column; gap: 0; }

/* ── Dropdown Links with Icons ── */
.smy-dropdown__link {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0.5rem;
  text-decoration: none;
  transition: background 0.14s;
  color: var(--c-ink);
}
.smy-dropdown__link:hover { background: rgba(41,18,69,0.04); }

.smy-dropdown__link strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-dark);
  line-height: 1.35;
}
.smy-dropdown__link span {
  display: block;
  font-size: 0.75rem;
  color: var(--c-ink-55);
  line-height: 1.4;
  margin-top: 1px;
}

/* Icon box */
.smy-dropdown__icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 0;
  margin-top: 2px;
}
.smy-dropdown__icon--lime { background: var(--c-primary); color: var(--c-dark); }
.smy-dropdown__icon--coral { background: var(--c-secondary); color: var(--c-dark); }
.smy-dropdown__icon--lavender { background: var(--c-tertiary); color: var(--c-dark); }

/* Visual card in dropdown */
.smy-dropdown__visual {
  position: relative;
  overflow: hidden;
  height: 140px;
}
.smy-dropdown__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.smy-dropdown__visual-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.70));
  color: #fff;
}
.smy-dropdown__visual-content strong { display: block; font-size: 0.8rem; font-weight: 600; }
.smy-dropdown__visual-content span { display: block; font-size: 0.7rem; opacity: 0.7; }

/* CTA card */
.smy-dropdown__cta-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem;
  background: rgba(41,18,69,0.04);
  text-decoration: none;
  color: var(--c-ink);
  transition: background 0.14s;
  border-radius: 0;
}
.smy-dropdown__cta-card:hover { background: rgba(41,18,69,0.08); }
.smy-dropdown__cta-card svg { flex-shrink: 0; color: var(--c-dark); }
.smy-dropdown__cta-card strong { font-size: 0.85rem; font-weight: 600; color: var(--c-dark); display: block; }
.smy-dropdown__cta-card span { font-size: 0.72rem; color: var(--c-ink-55); display: block; margin-top: 2px; }

/* All link */
.smy-dropdown__all {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-dark);
  text-decoration: none;
  padding: 0.6rem 0;
  border-top: 1px solid var(--c-border);
  margin-top: 0.25rem;
  transition: opacity 0.18s;
}
.smy-dropdown__all:hover { opacity: 0.55; }

/* Login icons */
.smy-dropdown__link--login { gap: 0.75rem; }
.smy-login-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  border-radius: 0;
}
.smy-login-icon--patient { background: var(--c-tertiary); }
.smy-login-icon--clinic { background: var(--c-sand); border: 1px solid var(--c-border); }

/* ── Nav Actions (right) ── */
.smy-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.smy-nav-login-btn {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--ff-body);
  font-size: var(--text-body-l);
  font-weight: 300;
  color: var(--c-ink);
  background: none;
  border: 1px solid var(--c-border-strong);
  cursor: pointer;
  padding: 0.55rem 0.9rem;
  border-radius: 100vw;
  text-decoration: none;
  transition: opacity 0.18s;
  white-space: nowrap;
}
.smy-nav-login-btn:hover { opacity: 0.65; }

.smy-nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.5rem;
  background: var(--c-dark);
  color: var(--c-white);
  font-family: var(--ff-body);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 100vw;
  border: 1px solid var(--c-dark);
  transition: transform 0.2s, background 0.2s;
  white-space: nowrap;
}
.smy-nav-cta:hover { transform: translateY(-1px); background: var(--c-primary); color: var(--c-dark); border-color: var(--c-primary); }

/* ── Burger ── */
.smy-nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--c-dark);
}

/* ── Mobile Menu ── */
.smy-nav-mobile {
  display: flex;
  flex-direction: column;
  padding: 1rem var(--gutter) 2rem;
  background: var(--c-sand);
  border-top: 1px solid var(--c-border);
}
.smy-nav-mobile__link {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--c-border);
  font-size: var(--text-title-s);
  font-weight: 300;
  color: var(--c-ink);
  text-decoration: none;
}
.smy-nav-mobile__sub {
  font-size: 0.85rem !important;
  color: var(--c-ink-55) !important;
  padding-left: 1.25rem !important;
}
.smy-nav-mobile__divider { height: 1px; background: var(--c-border); margin: 0.5rem 0; }
.smy-nav-mobile__cta { margin-top: 1rem; }

/* ── Responsive ── */
@media (max-width: 991px) {
  .smy-nav-links { display: none; }
  .smy-nav-burger { display: block; }
  .smy-nav-actions { display: none; }
}

[x-cloak] { display: none !important; }

/* ── Nav Dropdown Icon Links ── */
.nav_dd_link--icon {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
}
.nav_dd_icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 0;
  margin-top: 2px;
}
.nav_dd_icon--lime,
.nav_dd_icon--coral,
.nav_dd_icon--lavender { background: var(--c-tertiary); color: var(--c-dark); }

/* Visual card in Behandlungen dropdown */
.nav_dd_visual {
  overflow: hidden;
  height: 100px;
  margin-bottom: 0.75rem;
}
.nav_dd_visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
