/* Die Motivationstrainerin. Landingpage Stylesheet.
   Design-Tokens siehe Obsidian: Alexandra-Website/Context/website-leitplanken.md.
   Ruhige, editoriale Tonalität. VISUAL_DENSITY ~3, MOTION_INTENSITY ~3. */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/inter-400.ttf') format('truetype');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/inter-500.ttf') format('truetype');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/inter-600.ttf') format('truetype');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/inter-700.ttf') format('truetype');
}

@font-face {
  font-family: 'Instrument Serif';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/instrument-serif-italic-400.ttf') format('truetype');
}

:root {
  --primary: #717F74;
  --primary-dark: #4E5851;
  --primary-tint: #E4E8E5;
  --primary-tint-strong: #C8D1CB;
  --color-heading: #4E5851;
  --background: #EFEFEF;
  --surface: #FFFFFF;
  --surface-soft: #E4E8E5;
  --text: #1F211F;
  --text-muted: #6B6F6B;
  --border: #E2E0DA;

  --s-1: 8px;
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 32px;
  --s-5: 48px;
  --s-6: 64px;
  --s-7: 96px;
  --s-8: 128px;

  --r-1: 8px;
  --r-2: 16px;
  --r-3: 24px;
  --r-4: 32px;
  --r-pill: 999px;

  --max-wide: 1200px;
  --max-read: 760px;
  --page-pad: clamp(20px, 3vw, 56px);
  --content-wide: calc(var(--max-wide) - (var(--page-pad) * 2));
  --bleed: calc(var(--page-pad) * -1);
  --section-radius: var(--r-4);
  /* Einheitliches Innen-Padding fuer alle Text-Panels (about, Lebensschule,
     benefits-intro, Kontakt). Bewusst im selben Band wie Cards, Accordion und
     Stats gehalten, damit die ganze Seite harmonisch wirkt. Hero ist die Ausnahme. */
  --panel-pad: clamp(28px, 2.4vw, 40px);
  --panel-pad-compact: clamp(22px, 4vw, 28px);
  --block-gap: var(--s-2);
  --eyebrow-gap: var(--s-3);
  --type-hero-title: clamp(44px, 5.1vw, 78px);
  --type-section-title: clamp(30px, 3.4vw, 44px);
  --type-card-title: clamp(21px, 2vw, 26px);
  --type-headline-4: clamp(18px, 1.6vw, 22px);
  --type-lede: clamp(24px, 2.4vw, 32px);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-nav: cubic-bezier(0.25, 0.82, 0.25, 1);
  --nav-duration: 0.38s;
  --nav-duration-return: 0.44s;
  --nav-cta-slot: clamp(212px, 16vw, 228px);
  --nav-cta-slot-scrolled: clamp(204px, 15.5vw, 216px);
  --nav-links-cta-gap: 36px;

  /* Unifiziertes Premium-Shadow-System */
  --shadow-card: 0 12px 32px -12px rgba(31, 33, 31, 0.12), 0 2px 8px -4px rgba(31, 33, 31, 0.04);
  --shadow-card-hover: 0 20px 40px -10px rgba(31, 33, 31, 0.18), 0 4px 12px -4px rgba(31, 33, 31, 0.06);
  --shadow-card-open: 0 16px 36px -12px rgba(31, 33, 31, 0.15), 0 4px 10px -4px rgba(31, 33, 31, 0.05);

  --shadow-panel: 0 28px 64px -20px rgba(31, 33, 31, 0.22), 0 8px 24px -10px rgba(31, 33, 31, 0.12);
}

@media (max-width: 1240px) {
  :root {
    --bleed: 0px;
    --nav-cta-slot: clamp(222px, 24vw, 228px);
    --nav-cta-slot-scrolled: clamp(214px, 23vw, 216px);
  }
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--background);
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

button,
input,
textarea {
  font: inherit;
}

summary,
button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1, h2, h3, h4 {
  font-weight: 600;
  color: var(--color-heading);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

h4 {
  font-size: var(--type-headline-4);
  line-height: 1.35;
}

.footer-heading {
  font-weight: 600;
  color: var(--primary);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

p {
  margin: 0 0 var(--s-3) 0;
}

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

a {
  color: var(--primary-dark);
  text-decoration: none;
  text-underline-offset: 4px;
  transition: color 0.25s var(--ease);
}

a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 var(--page-pad);
}

.container-read {
  max-width: calc(var(--max-read) + (var(--page-pad) * 2));
  margin: 0 auto;
  padding: 0 var(--page-pad);
}

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-1);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  padding: 14px 26px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
              transform 0.2s var(--ease), border-color 0.25s var(--ease),
              box-shadow 0.25s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--surface);
  border-color: var(--primary);
  box-shadow: 0 10px 24px -18px rgba(78, 88, 81, 0.9);
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.22) 48%, transparent 58%);
  transform: translateX(-120%);
  transition: transform 0.55s var(--ease);
  pointer-events: none;
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--surface);
  border-color: var(--primary-dark);
  box-shadow: 0 14px 30px -20px rgba(31, 33, 31, 0.5);
  transform: translateY(-2px);
}

.btn-primary:hover::after {
  transform: translateX(120%);
}

.btn-primary:active {
  transform: translateY(1px);
}

.btn-dark {
  background: var(--primary-dark);
  color: var(--surface);
  border-color: var(--primary-dark);
  box-shadow: 0 12px 28px -18px rgba(31, 33, 31, 0.45);
}

@media (hover: hover) {
  .btn-dark:hover {
    background: #3d4540;
    border-color: #3d4540;
    color: var(--surface);
    transform: translateY(-2px);
    box-shadow: 0 16px 34px -18px rgba(31, 33, 31, 0.5);
  }
}

.btn-dark:active {
  transform: translateY(1px);
}

.btn:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(113, 127, 116, 0.32);
  outline-offset: 3px;
}

.btn-ghost {
  background: #FFFFFF;
  color: var(--primary-dark);
  border-color: var(--border);
}

.btn-ghost:hover {
  background: #FFFFFF;
  color: var(--primary-dark);
  border-color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -12px rgba(31, 33, 31, 0.32), 0 4px 12px -6px rgba(31, 33, 31, 0.12);
}

.btn-nav {
  background: var(--surface-soft);
  color: var(--primary-dark);
  border-color: transparent;
  box-shadow: 0 10px 22px -18px rgba(78, 88, 81, 0.42);
}

.btn-nav::after,
.btn-ghost::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(78, 88, 81, 0.12) 48%, transparent 58%);
  transform: translateX(-120%);
  transition: transform 0.55s var(--ease);
  pointer-events: none;
}

.btn-nav:hover::after,
.btn-ghost:hover::after {
  transform: translateX(120%);
}

.btn-nav:hover {
  background: var(--primary-tint-strong);
  color: var(--primary-dark);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -18px rgba(78, 88, 81, 0.46), 0 4px 12px -8px rgba(31, 33, 31, 0.14);
}

.btn-sm {
  padding: 12px 18px;
  font-size: 14px;
}

/* Section scaffolding */
.section {
  padding: clamp(64px, 7vw, 128px) 0;
}

section[id] {
  scroll-margin-top: 24px;
}

.section-tight {
  padding: clamp(40px, 5vw, 88px) 0;
}

.section-tint {
  background: var(--primary-tint);
}

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

.eyebrow,
.offers-eyebrow,
.testimonials-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--primary-dark);
  background: var(--surface);
  border: 0;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  margin-bottom: var(--eyebrow-gap);
  box-shadow: var(--shadow-card-hover);
}

.benefits > .container > .eyebrow,
.offers > .container > .eyebrow,
.final-cta > .container > .eyebrow,
.section-tight > .container > .eyebrow,
.about > .container > .eyebrow,
.solution > .container > .eyebrow,
.testimonials > .container > .eyebrow,
.faq-eyebrow {
  display: block;
  width: fit-content;
  margin-left: calc(var(--bleed) + var(--s-3));
  margin-right: auto;
}

.eyebrow::after,
.offers-eyebrow::after,
.testimonials-eyebrow::after {
  content: none;
}

.section-head {
  margin-inline: var(--bleed);
  margin-bottom: var(--s-5);
}

.problem,
.solution .eyebrow,
.solution .lede,
.solution-card,
.section-head,
.offers-head,
.life-school,
.offers-note,
.testimonials-hero,
.testimonials-showcase,
.faq-layout,
.contact-shell {
  width: auto;
  margin-left: var(--bleed);
  margin-right: var(--bleed);
}

.section-head h2 {
  font-size: var(--type-section-title);
}

.section-head p.lead {
  margin-top: var(--s-2);
  color: var(--text-muted);
  max-width: var(--max-read);
  font-size: 18px;
}

/* Reveal animation */
.reveal {
  will-change: opacity, transform;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.reveal.is-visible {
  will-change: auto;
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: static;
  z-index: 50;
  display: flex;
  align-items: flex-start;
  width: 100%;
  margin: 0 auto;
  padding: 14px var(--page-pad) var(--block-gap);
  background: transparent;
  border-bottom: 0;
  border-radius: 0;
  box-shadow: none;
}

.nav.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 14px var(--page-pad) var(--block-gap);
  transition: transform var(--nav-duration) var(--ease-nav);
}

.nav.is-hidden-up {
  transform: translateY(0);
}

.nav.is-visible {
  transform: translateY(0);
}

.nav.no-transition,
.nav.no-transition .nav-inner,
.nav.no-transition .nav-menu,
.nav.no-transition .nav-logo,
.nav.no-transition .nav-links,
.nav.no-transition .nav-links a,
.nav.no-transition .nav-cta .btn {
  transition: none !important;
}

.nav.is-scrolled {
  background: transparent;
  box-shadow: none;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  width: 100%;
  padding: var(--s-2) clamp(20px, 3vw, 40px);
  max-width: var(--max-wide);
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(78, 88, 81, 0.09);
  border-radius: var(--r-3);
  box-shadow: 0 18px 42px -32px rgba(31, 33, 31, 0.32);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transform: translate3d(0, 0, 0);
  transition: max-width var(--nav-duration) var(--ease-nav),
              background-color var(--nav-duration) var(--ease-nav),
              border-color var(--nav-duration) var(--ease-nav),
              box-shadow var(--nav-duration) var(--ease-nav);
}

@media (min-width: 900px) {
  .nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto;
    align-items: center;
    justify-items: center;
  }

  .nav-inner {
    grid-column: 1;
    grid-row: 1;
    z-index: 2;
  }

  .nav-menu {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    max-width: var(--max-wide);
    padding-right: calc(clamp(20px, 3vw, 40px) + var(--nav-cta-slot));
    box-sizing: border-box;
    height: auto;
    margin: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    transform: none;
    transition: max-width var(--nav-duration) var(--ease-nav);
  }

  .nav-menu .nav-links {
    pointer-events: auto;
    margin-right: var(--nav-links-cta-gap);
  }

  .nav.is-scrolled .nav-menu {
    max-width: min(1020px, 86vw);
    padding-right: calc(clamp(20px, 3vw, 40px) + var(--nav-cta-slot));
  }

  .nav-cta .btn {
    transition: background 0.25s var(--ease), color 0.25s var(--ease),
                transform 0.2s var(--ease), border-color 0.25s var(--ease),
                box-shadow 0.25s var(--ease);
  }
}

@media (min-width: 900px) {
  .nav.is-fixed.is-scrolled {
    padding: 14px var(--page-pad) var(--block-gap);
  }

  .nav.is-scrolled .nav-inner {
    max-width: min(1020px, 86vw);
    padding: var(--s-2) clamp(20px, 3vw, 40px);
    gap: var(--s-4);
    background: color-mix(in srgb, var(--surface-soft) 88%, transparent);
    border-color: rgba(78, 88, 81, 0.14);
    border-radius: var(--r-3);
    box-shadow: 0 14px 36px -26px rgba(31, 33, 31, 0.2);
  }

  .nav.is-scrolled .nav-logo {
    width: clamp(180px, 17vw, 232px);
    min-width: 168px;
  }

  .nav.is-scrolled .nav-links {
    gap: var(--s-4);
  }

  .nav.is-scrolled .nav-links a {
    font-size: 15px;
  }

  .nav.is-scrolled .nav-cta .btn {
    padding: 12px 18px;
    font-size: 14px;
  }

  .nav.is-scrolled .nav-cta .btn-nav {
    background: var(--surface);
    color: var(--primary-dark);
    border-color: rgba(78, 88, 81, 0.08);
    box-shadow: 0 10px 22px -18px rgba(78, 88, 81, 0.22);
  }

  .nav.is-scrolled .nav-cta .btn-nav:hover {
    background: var(--surface);
    color: var(--primary-dark);
    border-color: rgba(78, 88, 81, 0.14);
    box-shadow: 0 14px 28px -16px rgba(78, 88, 81, 0.28), 0 4px 10px -8px rgba(31, 33, 31, 0.1);
  }

  .nav.is-animating .nav-inner {
    will-change: auto;
  }

  .nav.is-animating .nav-menu {
    will-change: auto;
  }

  .nav.is-returning .nav-inner {
    transition-duration: var(--nav-duration-return);
    transition-timing-function: var(--ease);
  }

  .nav.is-returning .nav-menu {
    transition-duration: var(--nav-duration-return);
    transition-timing-function: var(--ease);
  }

  .nav.is-returning .nav-logo,
  .nav.is-returning .nav-links,
  .nav.is-returning .nav-menu .nav-links,
  .nav.is-returning .nav-links a,
  .nav.is-returning .nav-cta .btn {
    transition-duration: var(--nav-duration-return);
    transition-timing-function: var(--ease);
  }
}

.nav-spacer {
  flex: 1 1 0;
  align-self: stretch;
}

.nav-spacer--trail {
  display: none;
}

.nav-logo {
  display: flex;
  align-items: center;
  height: 24px;
  flex: 0 0 auto;
  width: clamp(180px, 17vw, 232px);
  min-width: 168px;
  color: var(--primary-dark);
  transition: width var(--nav-duration) var(--ease-nav);
}

.nav-logo img,
.nav-logo-mark {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity calc(var(--nav-duration) * 0.55) var(--ease-nav);
}

.nav-logo-mark {
  color: inherit;
}

.nav.is-scrolled .nav-logo img,
.nav.is-scrolled .nav-logo-mark {
  opacity: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  position: relative;
  font-size: 15px;
  color: var(--text);
  font-weight: 400;
  transition: color 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a > span {
  display: inline-block;
  font-variation-settings: 'wght' 400;
  transition: font-variation-settings 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a[data-label]::before {
  content: attr(data-label);
  display: block;
  height: 0;
  font-weight: 600;
  visibility: hidden;
  overflow: hidden;
  pointer-events: none;
}

@media (hover: hover) {
  .nav-links:hover a {
    color: var(--text-muted);
    opacity: 0.45;
  }

  .nav-links:hover a:hover {
    color: var(--primary-dark);
    opacity: 1;
  }

  .nav-links:hover a:hover > span {
    font-variation-settings: 'wght' 600;
  }
}

.nav-links a:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

.nav-links a:hover > span {
  font-variation-settings: 'wght' 600;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--s-2);
}

.nav-toggle {
  display: none;
}

.nav-menu-cta {
  display: none;
}

.nav--legal .nav-inner {
  justify-content: space-between;
}

@media (max-width: 899.98px) {
  :root {
    --nav-menu-overlay-bg: rgba(239, 239, 239, 0.98);
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    min-height: 76px;
    padding: 12px var(--page-pad) 14px;
    z-index: 120;
    transition: background-color 0.32s var(--ease-nav);
  }

  .nav.is-fixed {
    position: fixed;
    transition: background-color 0.32s var(--ease-nav);
  }

  .nav.is-fixed.is-scrolled {
    padding: 12px var(--page-pad) 14px;
  }

  .nav-inner {
    gap: var(--s-2);
    padding: 12px 18px 14px;
    width: 100%;
    max-width: 100%;
    position: relative;
    z-index: 111;
    contain: none;
    overflow: visible;
    transition:
      background-color 0.32s var(--ease-nav),
      border-color 0.32s var(--ease-nav),
      box-shadow 0.32s var(--ease-nav);
  }

  .nav-spacer {
    display: none;
  }

  .nav-toggle {
    display: block;
    order: 3;
    position: relative;
    z-index: 112;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    margin-left: var(--s-1);
    padding: 10px;
    background: transparent;
    border: none;
    border-radius: 0;
    outline: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .nav-toggle:focus-visible {
    outline: 3px solid rgba(113, 127, 116, 0.32);
    outline-offset: 3px;
    border-radius: var(--r-1);
  }

  .nav-toggle-box {
    display: block;
    width: 24px;
    height: 24px;
    position: relative;
  }

  .nav-toggle-inner {
    position: absolute;
    left: 0;
    width: 24px;
    height: 0;
    background: transparent;
    top: 50%;
  }

  .nav-toggle-inner::before,
  .nav-toggle-inner::after {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: var(--primary-dark);
    border-radius: 2px;
    transform-origin: 50% 50%;
    transition: transform 0.32s var(--ease-nav), top 0.32s var(--ease-nav);
  }

  .nav-toggle-inner::before {
    top: -5px;
  }

  .nav-toggle-inner::after {
    top: 5px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    height: 100dvh;
    min-height: 100dvh;
    margin: 0;
    border-radius: 0;
    background: var(--nav-menu-overlay-bg);
    padding: calc(96px + env(safe-area-inset-top)) var(--s-3) calc(var(--s-4) + env(safe-area-inset-bottom));
    z-index: 110;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--s-4);
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.32s var(--ease-nav),
      visibility 0s linear 0.32s;
  }

  .nav-menu.is-open {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    transition:
      opacity 0.32s var(--ease-nav),
      visibility 0s linear 0s;
  }

  .nav.is-menu-open,
  .nav:has(.nav-menu.is-open) {
    background: var(--nav-menu-overlay-bg);
  }

  .nav.is-menu-open .nav-inner,
  .nav:has(.nav-menu.is-open) .nav-inner {
    background: var(--nav-menu-overlay-bg);
    border-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-menu .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--s-3);
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .nav-menu .nav-links li {
    width: auto;
    text-align: center;
  }

  .nav-menu .nav-links a {
    font-size: clamp(22px, 5.5vw, 30px);
    font-weight: 500;
    padding: 10px 20px;
    color: var(--text);
    display: inline-block;
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease, left 0.3s ease;
  }

  .nav-links a:hover::after,
  .nav-links a:active::after {
    width: 60%;
    left: 20%;
  }

  .nav-links a:hover,
  .nav-links a:active {
    color: var(--primary);
    transform: translateY(-2px);
  }

  .nav-menu-cta {
    display: flex;
    justify-content: center;
    margin-top: var(--s-2);
    width: 100%;
    max-width: 280px;
  }

  .nav-menu-cta .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .nav-menu-cta .btn-primary {
    background: var(--surface);
    color: var(--primary-dark);
    border: 0;
    border-color: transparent;
    box-shadow: var(--shadow-card);
  }

  .nav-menu-cta .btn-primary:hover {
    background: var(--surface);
    color: var(--primary-dark);
    border-color: transparent;
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-2px);
  }

  .nav-menu-cta .btn-primary:active {
    transform: translateY(1px);
    box-shadow: var(--shadow-card);
  }

  /* Hamburger to X State */
  .nav-toggle.is-active .nav-toggle-inner::before {
    top: 0;
    transform: rotate(45deg);
  }

  .nav-toggle.is-active .nav-toggle-inner::after {
    top: 0;
    transform: rotate(-45deg);
  }

  body.is-locked-scroll,
  html.is-locked-scroll {
    overflow: hidden !important;
  }

  .nav-logo {
    order: 1;
    width: clamp(180px, 24vw, 216px);
    max-width: calc(100% - 72px);
    min-width: 168px;
    height: auto;
    position: relative;
    z-index: 112;
  }

  .nav-cta {
    display: none;
  }

  .nav--legal .nav-cta {
    display: flex;
    order: 2;
    position: relative;
    z-index: 112;
    margin-left: auto;
  }

  .nav--legal .nav-logo {
    order: 1;
    max-width: min(50vw, 220px);
  }

  .nav--legal .btn-nav {
    white-space: nowrap;
  }

  .btn-nav {
    padding: 10px 14px;
    font-size: 13px;
  }
}

/* ── Green panel glow ───────────────────────────────────────── */
:is(
  .hero-copy,
  .benefits-intro,
  .about-text-card,
  .life-school-copy,
  .testimonials-hero-panel,
  .faq-intro,
  .contact-form,
  .footer .container
) {
  isolation: isolate;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    var(--shadow-panel),
    0 0 36px rgba(255, 255, 255, 0.09),
    0 0 76px rgba(255, 255, 255, 0.06),
    0 0 120px rgba(255, 255, 255, 0.03);
}

:is(
  .hero-copy,
  .benefits-intro,
  .about-text-card,
  .testimonials-hero-panel,
  .faq-intro,
  .contact-form,
  .footer .container
) {
  position: relative;
}

:is(
  .hero-copy,
  .benefits-intro,
  .about-text-card,
  .life-school-copy,
  .testimonials-hero-panel,
  .faq-intro,
  .contact-form,
  .footer .container
) > * {
  position: relative;
  z-index: 1;
}

:is(
  .hero-copy,
  .benefits-intro,
  .about-text-card,
  .life-school-copy,
  .testimonials-hero-panel,
  .faq-intro,
  .contact-form,
  .footer .container
)::before {
  content: '';
  position: absolute;
  inset: -52px -64px -44px -36px;
  border-radius: inherit;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse 52% 46% at 14% 34%, rgba(255, 255, 255, 0.16) 0%, transparent 68%),
    radial-gradient(ellipse 36% 32% at 94% 18%, rgba(255, 255, 255, 0.1) 0%, transparent 62%),
    radial-gradient(ellipse 42% 36% at 78% 92%, rgba(255, 255, 255, 0.075) 0%, transparent 66%),
    radial-gradient(ellipse 28% 24% at 48% 108%, rgba(255, 255, 255, 0.09) 0%, transparent 72%);
  filter: blur(9px);
}

:is(
  .hero-copy,
  .benefits-intro,
  .about-text-card,
  .life-school-copy,
  .testimonials-hero-panel,
  .faq-intro,
  .contact-form,
  .footer .container
)::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 58% 48% at 92% 14%, rgba(255, 255, 255, 0.12) 0%, transparent 58%),
    radial-gradient(ellipse 42% 52% at 8% 86%, rgba(255, 255, 255, 0.082) 0%, transparent 54%),
    radial-gradient(circle at 58% 46%, rgba(255, 255, 255, 0.052) 0%, transparent 36%),
    radial-gradient(circle at 24% 22%, rgba(255, 255, 255, 0.038) 0%, transparent 28%);
  mask-image: radial-gradient(ellipse 96% 94% at 50% 50%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 96% 94% at 50% 50%, #000 40%, transparent 100%);
}

@media (prefers-reduced-motion: no-preference) {
  :is(
    .hero-copy,
    .benefits-intro,
    .about-text-card,
    .life-school-copy,
    .testimonials-hero-panel,
    .faq-intro,
    .contact-form,
    .footer .container
  )::before {
    animation: panel-glow-drift 16s ease-in-out infinite;
  }

  :is(
    .hero-copy,
    .benefits-intro,
    .about-text-card,
    .life-school-copy,
    .testimonials-hero-panel,
    .faq-intro,
    .contact-form,
    .footer .container
  )::after {
    animation: panel-glow-shift 22s ease-in-out infinite alternate;
  }
}

@keyframes panel-glow-drift {
  0%, 100% {
    opacity: 0.68;
    transform: scale(1) translate3d(0, 0, 0);
  }

  50% {
    opacity: 0.86;
    transform: scale(1.022) translate3d(1%, -0.7%, 0);
  }
}

@keyframes panel-glow-shift {
  0% {
    opacity: 0.58;
    transform: translate3d(0, 0, 0);
  }

  100% {
    opacity: 0.78;
    transform: translate3d(-0.9%, 0.9%, 0);
  }
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  padding: 0 0 var(--s-2);
  margin: 0;
}

.hero-copy {
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
  padding: clamp(40px, 5vw, 64px);
  background: var(--primary-dark);
  border-radius: var(--r-3);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
  grid-template-rows: auto auto;
  column-gap: var(--block-gap);
  row-gap: var(--block-gap);
  align-items: stretch;
  min-width: 0;
  margin-inline: var(--bleed);
}

.hero-grid::before {
  content: none;
}

.hero-kicker {
  margin-bottom: var(--s-2);
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.25vw, 18px);
  font-weight: 700;
  line-height: 1.2;
}

.hero h1 {
  font-size: var(--type-hero-title);
  line-height: 1.02;
  margin-bottom: var(--s-3);
  color: var(--surface);
  font-weight: 500;
}

.hero h1 span {
  display: block;
}

@media (min-width: 881px) {
  .hero h1 span {
    white-space: nowrap;
  }
}

.hero-headline-accent {
  color: inherit;
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
  letter-spacing: inherit;
}

.hero-sub {
  font-size: clamp(19px, 1.65vw, 24px);
  color: rgba(255, 255, 255, 0.82);
  max-width: 34ch;
  line-height: 1.55;
  margin-bottom: var(--s-4);
}

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

.hero .btn-primary {
  background: var(--surface);
  color: var(--primary-dark);
  border-color: var(--surface);
  box-shadow: 0 12px 28px -18px rgba(0, 0, 0, 0.45);
}

.hero .btn-primary::after {
  background: linear-gradient(110deg, transparent 0%, rgba(78, 88, 81, 0.12) 48%, transparent 58%);
}

.hero .btn-primary:hover {
  background: var(--primary-tint);
  color: var(--primary-dark);
  border-color: var(--primary-tint);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -12px rgba(31, 33, 31, 0.32), 0 4px 12px -6px rgba(31, 33, 31, 0.12);
}

.hero-portrait {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  z-index: 2;
  display: block;
  overflow: visible;
  height: 100%;
  margin: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  align-self: stretch;
  justify-self: stretch;
}

.hero-portrait picture {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(520px, 60vh, 680px);
  overflow: hidden;
  border: 0;
  border-radius: var(--r-3);
  background: var(--primary-tint);
  box-shadow: var(--shadow-panel);
}

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

@media (min-width: 881px) {
  .hero {
    --hero-frame-height: clamp(680px, calc(95svh - 112px), 920px);
  }

  .hero > .container {
    display: flex;
    flex-direction: column;
    height: var(--hero-frame-height);
  }

  .hero-copy {
    padding: clamp(48px, 5vw, 80px);
    min-height: 0;
  }

  .hero-grid {
    flex: 1 1 auto;
    grid-template-rows: 1fr;
    column-gap: var(--block-gap);
    min-height: 0;
  }

  .hero-portrait {
    padding: 0;
    z-index: 2;
  }

  .hero-portrait picture {
    min-height: 0;
  }
}

@media (min-width: 1440px) {
  .hero {
    --hero-frame-height: clamp(680px, calc(93svh - 112px), 880px);
  }
}

@media (min-width: 1760px) {
  .hero {
    --hero-frame-height: clamp(680px, calc(90svh - 112px), 820px);
  }
}

.hero-stats {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: var(--block-gap);
  margin: var(--block-gap) var(--bleed) 0;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: clamp(14px, 1.6vw, 20px);
  background: var(--surface);
  border: 1px solid rgba(78, 88, 81, 0.08);
  border-radius: var(--r-2);
  box-shadow: 0 18px 42px -32px rgba(31, 33, 31, 0.32);
}

.hero-stat + .hero-stat::before {
  content: none;
}

.hero-stat dt {
  margin: 0;
  color: var(--primary-dark);
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.hero-stat.reveal {
  opacity: 0;
  transform: translateY(clamp(24px, 4vw, 40px));
  transition:
    opacity 0.55s var(--ease),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-stat.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-stat.reveal:nth-child(1) {
  transition-delay: 0s;
}

.hero-stat.reveal:nth-child(2) {
  transition-delay: 0.15s;
}

.hero-stat.reveal:nth-child(3) {
  transition-delay: 0.3s;
}

@media (prefers-reduced-motion: reduce) {
  .hero-stat.reveal,
  .hero-stat.reveal:nth-child(1),
  .hero-stat.reveal:nth-child(2),
  .hero-stat.reveal:nth-child(3) {
    opacity: 1;
    transform: none;
    transition: none;
    transition-delay: 0s;
  }
}

.hero-stat dd {
  margin: 0;
  color: var(--text-muted);
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: none;
}

@media (max-width: 720px) {
  .hero-stats {
    display: none;
  }
}

@media (max-width: 880px) {
  .hero {
    padding: 0 0 var(--s-5);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    row-gap: var(--block-gap);
    column-gap: 0;
    width: 100%;
  }

  .hero-copy {
    justify-content: center;
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    padding: clamp(28px, 5vw, 40px);
    align-items: flex-start;
  }

  .hero-portrait {
    grid-column: auto;
    grid-row: auto;
    max-width: none;
    width: 100%;
    height: auto;
    min-height: 0;
    margin: 0;
    max-height: none;
  }

  .hero-portrait picture {
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .hero-portrait img {
    object-position: 50% 50%;
  }

  .hero h1 {
    max-width: 100%;
    font-size: var(--type-hero-title);
    line-height: 1.06;
    text-wrap: balance;
  }

  .hero h1 span {
    white-space: normal;
    overflow-wrap: break-word;
  }

  .hero-sub {
    font-size: clamp(16px, 4.2vw, 18px);
    max-width: 100%;
  }
}

/* ── Social Proof (im Hero) ─────────────────────────────── */
.hero-social {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  margin-top: var(--s-4);
}

.hero-social__avatars {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.hero-social__avatar {
  display: block;
  width: clamp(30px, 2.4vw, 38px);
  height: clamp(30px, 2.4vw, 38px);
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 6px 14px -4px rgba(31, 33, 31, 0.32);
  overflow: hidden;
  background: var(--primary-tint);
  position: relative;
}

.hero-social__avatar:nth-child(1) { z-index: 1; }
.hero-social__avatar:nth-child(2) { z-index: 2; }
.hero-social__avatar:nth-child(3) { z-index: 3; }

.hero-social__avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-social__avatar:not(:first-child) {
  margin-left: -11px;
}

.hero-social__avatar:nth-child(1) { background: var(--primary-dark); }
.hero-social__avatar:nth-child(2) { background: var(--primary); }
.hero-social__avatar:nth-child(3) { background: var(--primary-tint-strong); }

.hero-social__copy {
  display: flex;
  align-items: baseline;
  gap: 12px;
  line-height: 1.2;
}

.hero-social__num {
  font-size: clamp(19px, 1.8vw, 28px);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--surface);
}

.hero-social__label {
  font-size: clamp(14px, 1.3vw, 19px);
  font-weight: 500;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.78);
  text-transform: none;
  letter-spacing: 0;
}

/* ── Section Headlines (zweizeilig) ──────────────────────── */
.section-headline {
  display: inline-block;
  max-width: 100%;
  margin: 0 0 var(--s-3);
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

@media (min-width: 600px) {
  .section-headline-primary,
  .section-headline-muted {
    white-space: nowrap;
  }
}

.section-headline-primary,
.section-headline-muted {
  display: block;
  width: 100%;
}

.section-headline-primary {
  color: var(--color-heading);
  font-weight: 600;
}

.section-headline-muted {
  color: var(--text-muted);
  font-weight: 500;
}

:is(.benefits-intro, .about-text-card, .life-school-copy, .faq-intro, .testimonials-hero-panel) .section-headline-primary {
  color: var(--surface);
}

:is(.benefits-intro, .about-text-card, .life-school-copy, .faq-intro, .testimonials-hero-panel) .section-headline-muted {
  color: rgba(255, 255, 255, 0.62);
}

.faq-intro .section-headline {
  max-width: none;
  margin: 0;
}

.contact-intro .section-headline {
  max-width: 33ch;
}

/* ── Problem ─────────────────────────────────────────────── */
.problem {
  text-align: left;
}

.lede {
  font-size: var(--type-lede);
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin: 0;
  max-width: var(--max-read);
}

.lede strong {
  font-weight: 600;
}

.lede-rest {
  font-weight: 400;
}

.lede-rest[data-split-words] .word {
  color: currentColor;
  opacity: var(--word-opacity, 0.25);
  transition: opacity 0.18s linear;
  will-change: opacity;
}

.problem-card,
.solution-card {
  max-width: none;
  padding: var(--panel-pad);
  background: var(--surface);
  border: 1px solid rgba(78, 88, 81, 0.08);
  border-radius: var(--r-3);
  box-shadow: 0 18px 48px -34px rgba(31, 33, 31, 0.32);
  color: var(--text);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.72;
}

.problem-card-copy,
.solution-card-copy {
  max-width: none;
  text-wrap: pretty;
}

.problem-card-copy p,
.solution-card-copy p {
  margin: 0;
}

.problem-card-copy p + p,
.solution-card-copy p + p {
  margin-top: 14px;
}

.problem .lede-rest {
  color: rgb(31, 33, 31);
}

.problem .pull-quote {
  color: var(--primary-dark);
}

.pull-quote {
  margin-top: var(--s-4);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.35;
  color: var(--primary-dark);
}

/* ── Solution ─────────────────────────────────────────────── */
.solution {
  text-align: left;
  background: var(--background);
  color: var(--text);
}

/* ── Benefits (Platform-Feature-Layout) ───────────────────── */
.benefits {
  padding: clamp(64px, 7vw, 112px) 0;
  overflow: visible;
}

.benefits-shell {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: auto auto;
  gap: var(--block-gap);
  margin-inline: var(--bleed);
  overflow: visible;
}

.benefits-intro {
  grid-column: 1 / span 2;
  grid-row: 1;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  width: 100%;
  min-width: 0;
  max-width: none;
  padding: clamp(28px, 2.8vw, 40px) clamp(32px, 3vw, 48px);
  border-radius: var(--section-radius);
  background: var(--primary-dark);
}

.benefits-intro .benefits-headline {
  color: var(--surface);
  margin-bottom: 0;
}

.benefits-intro .benefits-headline-accent {
  background: linear-gradient(135deg, #ffffff 0%, var(--primary-tint-strong) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.benefits-intro .benefits-lead {
  max-width: none;
  margin-bottom: 0;
  color: rgba(247, 245, 240, 0.78);
}

.benefits-intro .benefits-actions {
  margin-top: var(--s-1);
  gap: var(--s-1);
}

.benefits-headline {
  margin: 0 0 var(--s-3);
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--color-heading);
}

.benefits-headline-line {
  display: block;
}

.benefits-headline-accent {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.benefits-lead {
  max-width: 52ch;
  margin: 0 0 var(--s-4);
  color: var(--text-muted);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.6;
}

.benefits-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
}

.benefits-features {
  grid-column: 1 / -1;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--block-gap);
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: start;
}

.benefit-module {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(28px, 3vw, 40px) var(--s-3) var(--s-5);
  border: 1px solid var(--border);
  border-radius: var(--r-3);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.34s var(--ease), box-shadow 0.34s var(--ease);
}

.benefit-module:nth-child(1) {
  margin-top: clamp(52px, 6vw, 88px);
}

.benefit-module:nth-child(2) {
  margin-top: clamp(28px, 3.5vw, 52px);
}

.benefit-module:nth-child(3) {
  margin-top: 0;
}

.benefit-module.reveal {
  opacity: 0;
  transform: translateY(clamp(56px, 9vw, 88px));
  pointer-events: none;
}

.benefit-module.reveal.is-visible {
  animation: benefitModuleEnter 0.82s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.benefit-module.reveal.is-visible:nth-child(1) {
  animation-delay: 0s;
}

.benefit-module.reveal.is-visible:nth-child(2) {
  animation-delay: 0.2s;
}

.benefit-module.reveal.is-visible:nth-child(3) {
  animation-delay: 0.4s;
}

.benefit-module.is-entered {
  pointer-events: auto;
}

@keyframes benefitModuleEnter {
  from {
    opacity: 0;
    transform: translateY(clamp(56px, 9vw, 88px));
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (hover: hover) {
  .benefit-module.is-entered:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: var(--shadow-card-hover);
  }

  .benefit-module.is-entered:hover .benefit-module-icon {
    transform: scale(1.04);
  }
}

.benefit-module-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(72px, 7vw, 96px);
  height: clamp(72px, 7vw, 96px);
  margin: 0 0 var(--s-3);
  padding: 0;
  background: transparent;
  border: 0;
  transition: transform 0.34s var(--ease);
}

.benefit-module-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(31, 33, 31, 0.1));
}

.benefit-module-copy {
  padding: 0;
  text-align: center;
}

.benefit-module-title {
  margin: 0 0 var(--s-1);
  font-size: var(--type-card-title);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--color-heading);
}

.benefit-module-body {
  margin: 0 auto;
  max-width: 30ch;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.55;
}

@media (max-width: 1024px) {
  .benefits-shell {
    grid-template-columns: 1fr;
    gap: var(--block-gap);
  }

  .benefits-intro {
    grid-column: 1 / -1;
    max-width: none;
    padding: var(--panel-pad);
  }

  .benefits-lead {
    max-width: none;
  }

  .benefits-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefit-module:nth-child(1) {
    margin-top: clamp(24px, 3vw, 40px);
  }

  .benefit-module:nth-child(2) {
    margin-top: 0;
  }

  .benefit-module:nth-child(3) {
    grid-column: 1 / -1;
    width: min(100%, 420px);
    margin-inline: auto;
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .benefits {
    padding-top: var(--s-6);
  }

  .benefits-shell {
    margin-inline: 0;
  }

  .benefits-intro {
    padding: var(--panel-pad-compact);
  }

  .benefits-headline {
    font-size: clamp(28px, 7.5vw, 36px);
  }

  .benefits-lead {
    max-width: none;
    font-size: 16px;
  }

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

  .benefits-actions .btn {
    width: 100%;
  }

  .benefits-features {
    grid-template-columns: 1fr;
  }

  .benefit-module:nth-child(1),
  .benefit-module:nth-child(2),
  .benefit-module:nth-child(3) {
    margin-top: 0;
    width: 100%;
    grid-column: auto;
  }

  .benefit-module-copy {
    padding: 0;
  }

  .benefit-module-body {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .benefit-module.reveal {
    opacity: 1;
    transform: none;
    animation: none;
    pointer-events: auto;
  }

  .benefit-module.reveal.is-visible {
    animation: none;
  }

  .benefit-module.is-entered:hover,
  .benefit-module:hover {
    transform: none;
  }

  .benefit-module.is-entered:hover .benefit-module-icon,
  .benefit-module:hover .benefit-module-icon {
    transform: none;
  }
}

/* ── Über mich ────────────────────────────────────────────── */
.about {
  background: var(--background);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  grid-template-rows: auto;
  gap: var(--block-gap);
  align-items: stretch;
  background: transparent;
  color: var(--text);
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  margin-left: var(--bleed);
  margin-right: var(--bleed);
}

.about-visual {
  position: relative;
  display: flex;
  grid-column: 1;
  grid-row: 1;
  height: 100%;
  min-height: 100%;
  flex-direction: column;
  align-items: stretch;
  justify-content: stretch;
  gap: 0;
  overflow: visible;
}

.about-title {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0;
  margin: 0 0 var(--s-3);
  max-width: none;
  text-wrap: pretty;
  overflow-wrap: normal;
  hyphens: manual;
  color: var(--text-muted);
}

.about-title span {
  color: var(--primary);
  font-weight: 500;
}

.about-title em {
  display: inline;
  margin-top: 0;
  font-family: inherit;
  font-size: inherit;
  font-style: normal;
  font-weight: 400;
  line-height: inherit;
  color: var(--primary-dark);
}

.about-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: var(--block-gap);
}

.about-text-card {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  background: var(--primary-dark);
  border-radius: var(--r-3);
  padding: clamp(28px, 3.2vw, 44px);
  color: rgba(255, 255, 255, 0.88);
}

.about-text-card .about-title {
  color: rgba(255, 255, 255, 0.92);
}

.about-text-card .about-title span {
  color: #FFFFFF;
}

.about-text-card .about-title em {
  color: var(--primary-tint-strong);
}

.about-text-card .about-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.about-text-card p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 var(--s-3);
}

.about-copy {
  margin-bottom: 0;
}

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

.about-media {
  position: relative;
  flex: 1 1 auto;
  margin: 0;
  width: 100%;
  max-width: none;
  aspect-ratio: auto;
  max-height: none;
  height: 100%;
  border-radius: var(--r-3);
  overflow: hidden;
  background: var(--primary-tint);
  border: 0;
  box-shadow: var(--shadow-panel);
  justify-self: start;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.about-stats {
  position: absolute;
  inset: -12px -20px -28px -20px;
  z-index: 2;
  margin: 0;
  pointer-events: none;
}

.about-stat,
.about-stats div {
  --stat-shift: 0px;
  --stat-shift-x: 0px;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  text-align: left;
  width: max-content;
  min-width: 0;
  max-width: none;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(226, 224, 218, 0.65);
  border-radius: var(--r-2);
  padding: 10px clamp(14px, 1.4vw, 18px);
  box-shadow: 0 14px 32px -22px rgba(31, 33, 31, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: auto;
  transition: box-shadow 0.32s var(--ease);
  will-change: transform;
}

.about-stat:nth-child(1),
.about-stats div:nth-child(1) {
  left: calc(clamp(-30px, -3vw, -14px) + 40px);
  bottom: clamp(58px, 4.5%, 84px);
  transform: translate(var(--stat-shift-x), var(--stat-shift));
}

.about-stat:nth-child(2),
.about-stats div:nth-child(2) {
  right: clamp(1px, 1.6vw, 13px);
  bottom: calc(34% + 60px);
  transform: translate(var(--stat-shift-x), var(--stat-shift));
}

.about-stat:nth-child(3),
.about-stats div:nth-child(3) {
  left: calc(50% + 66px);
  bottom: 40px;
  transform: translate(calc(-50% + var(--stat-shift-x)), calc(50% + var(--stat-shift)));
}

@media (hover: hover) {
  .about-stat:hover,
  .about-stats div:hover {
    box-shadow: 0 18px 36px -20px rgba(31, 33, 31, 0.22);
  }
}

.about-stats dt {
  margin: 0;
  color: var(--primary-dark);
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.about-stats dd {
  margin: 0;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.about-stat.reveal {
  opacity: 0;
  transform: translate(var(--stat-shift-x), var(--stat-shift));
  transition: opacity 0.55s var(--ease);
}

.about-stat.reveal.is-visible {
  opacity: 1;
}

.about-stat.reveal:nth-child(1) {
  transition-delay: 0s;
}

.about-stat.reveal:nth-child(2) {
  transition-delay: 0.15s;
}

.about-stat.reveal:nth-child(3) {
  transition-delay: 0.3s;
}

.about-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  color: var(--primary-dark);
}

.about-placeholder svg {
  width: 56px;
  height: 56px;
  opacity: 0.55;
}

.about-placeholder span {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  opacity: 0.7;
}

.about-side {
  padding-top: var(--s-4);
  border-top: 1px solid var(--border);
}

.about-side .credential {
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--primary-dark);
  margin-bottom: var(--s-3);
}

.about-side .credential span {
  display: block;
  color: var(--primary);
}

.about-side .meta {
  font-size: 14px;
  color: var(--text-muted);
}

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--s-3);
  font-size: 15px;
  color: var(--primary-dark);
  border-bottom: 1px solid var(--primary);
  padding-bottom: 2px;
}

.about-link:hover {
  color: var(--primary);
  text-decoration: none;
}

@media (max-width: 820px) {
  .about-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    align-items: start;
    gap: var(--block-gap);
  }

  .about-text-card {
    grid-column: 1;
    grid-row: auto;
    padding: var(--panel-pad-compact);
  }

  .about-visual {
    grid-column: 1;
    grid-row: auto;
    height: auto;
  }

  .about-media {
    flex: none;
    width: min(100%, 360px);
    aspect-ratio: 4 / 5;
    height: auto;
    justify-self: start;
  }

  .about-title {
    font-size: 16px;
  }

  .about-title span {
    font-size: inherit;
  }

  .about-stats {
    position: static;
    inset: auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: var(--block-gap);
    pointer-events: auto;
  }

  .about-stat,
  .about-stats div {
    position: static;
    width: 100%;
    min-width: 0;
    max-width: none;
    transform: none !important;
    --stat-shift: 0px;
    --stat-shift-x: 0px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    padding: 10px 6px;
  }

  .about-stats dt {
    flex: none;
    font-size: clamp(17px, 5vw, 22px);
    white-space: nowrap;
  }

  .about-stats dd {
    font-size: clamp(8px, 2.2vw, 10px);
    letter-spacing: 0.04em;
    white-space: normal;
    line-height: 1.2;
    text-align: center;
  }

  .about-stat.reveal {
    transform: none !important;
  }
}

/* ── Angebote ─────────────────────────────────────────────── */
.offers {
  text-align: center;
}

.offers-head {
  text-align: left;
  margin-bottom: var(--s-5);
}

.life-school {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: var(--block-gap);
  align-items: stretch;
  text-align: left;
}

.life-school-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: var(--s-3);
  min-width: 0;
  height: 100%;
  background: var(--primary-dark);
  color: var(--surface);
  border-radius: var(--section-radius);
  padding: var(--panel-pad);
  position: sticky;
  top: 132px;
}

.life-school-copy .section-headline {
  margin: 0;
}

.life-school p {
  color: rgba(247, 245, 240, 0.78);
  font-size: 16px;
  line-height: 1.7;
  max-width: 72ch;
  margin: 0;
}

.life-school .life-school-lede {
  color: rgba(247, 245, 240, 0.94);
  font-size: 17px;
}

.life-school .btn-life-school {
  margin-top: 0;
  background: #FFFFFF;
  color: var(--primary-dark);
  border-color: #FFFFFF;
  box-shadow: 0 12px 28px -20px rgba(0, 0, 0, 0.45);
}

.life-school .btn-life-school::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(78, 88, 81, 0.12) 48%, transparent 58%);
  transform: translateX(-120%);
  transition: transform 0.55s var(--ease);
  pointer-events: none;
}

.life-school .btn-life-school:hover {
  background: #FFFFFF;
  color: var(--primary-dark);
  border-color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -12px rgba(31, 33, 31, 0.32), 0 4px 12px -6px rgba(31, 33, 31, 0.12);
}

.life-school .btn-life-school:hover::after {
  transform: translateX(120%);
}

.life-school-specs {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--block-gap);
  min-height: 376px;
  justify-content: flex-start;
}

/* ── Spec Accordion ── */
.spec-accordion {
  background: #FFFFFF;
  border: 0;
  border-radius: var(--r-3);
  padding: 0 var(--s-4);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
  color: var(--text);
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
}

.spec-accordion:hover {
  box-shadow: var(--shadow-card-hover);
}

.spec-accordion[open]:not([data-closing="true"]) {
  box-shadow: var(--shadow-card-open);
}

.spec-accordion:last-child {
}

.spec-accordion summary {
  list-style: none;
}

.spec-accordion summary::-webkit-details-marker,
.spec-accordion summary::marker {
  display: none;
  content: '';
}

.spec-accordion-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-3) 0;
  margin: 0;
  cursor: pointer;
  position: relative;
  background: transparent;
  user-select: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.24s var(--ease);
}

.spec-accordion-trigger:hover {
  background: transparent;
}

.spec-accordion-trigger:active {
  background: transparent;
}

.spec-accordion-trigger:focus-visible {
  outline: 3px solid rgba(247, 245, 240, 0.28);
  outline-offset: 3px;
}

.spec-accordion-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0;
  line-height: 1.2;
}

.spec-accordion-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--primary);
  flex-shrink: 0;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.5s var(--ease);
}

.spec-accordion-icon svg {
  width: 14px;
  height: 14px;
  transform-origin: center;
  transition: transform 0.32s var(--ease);
}

.spec-accordion .bar-v {
  transition: transform 0.32s var(--ease), opacity 0.32s var(--ease);
  transform-origin: center;
}

.spec-accordion[open]:not([data-closing="true"]) .spec-accordion-icon svg {
  transform: rotate(180deg);
}

.spec-accordion[open]:not([data-closing="true"]) .bar-v {
  transform: rotate(90deg) scaleY(0);
  opacity: 0;
}

.spec-accordion[open]:not([data-closing="true"]) .spec-accordion-icon {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--surface);
}

.spec-accordion[open]:not([data-closing="true"]) {
}

.spec-accordion-body {
  padding: 0;
  margin: 0;
  overflow: hidden;
  height: 0;
  opacity: 0;
  transition: height 320ms cubic-bezier(0.4, 0, 0.2, 1), opacity 320ms cubic-bezier(0.4, 0, 0.2, 1);
}

.spec-accordion[open] .spec-accordion-body {
  height: auto;
  opacity: 1;
}

.spec-accordion-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 0 var(--s-3);
  margin: 0;
}

.spec-accordion-inner .spec-value {
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.45;
  letter-spacing: 0;
}

.spec-accordion-inner .spec-meta {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 38ch;
}

@media (prefers-reduced-motion: reduce) {
  .spec-accordion,
  .spec-accordion-trigger,
  .spec-accordion-title,
  .spec-accordion-icon,
  .spec-accordion-icon svg,
  .spec-accordion .bar-v,
  .spec-accordion-body {
    transition: none;
  }
}

.offers-note {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--s-3);
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.55;
  margin-top: var(--s-5);
  margin-bottom: 0;
  text-align: center;
}

.offers-note-label {
  color: var(--text-muted);
  margin-right: var(--s-1);
}

.offers-note-item {
  color: var(--text);
}

.offers-note-divider {
  width: 1px;
  height: 16px;
  background: var(--border);
  display: inline-block;
}

@media (max-width: 960px) {
  .life-school {
    grid-template-columns: 1fr;
    gap: var(--block-gap);
  }

  .life-school-copy {
    position: static;
  }

  .spec-accordion-title {
    font-size: 16px;
  }

  .spec-accordion-trigger {
    padding: var(--s-2) 0;
    margin: 0;
  }

  .life-school-specs {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .spec-accordion {
    transition: none;
  }

  .spec-accordion:hover,
  .spec-accordion[open]:not([data-closing="true"]) {
    box-shadow: var(--shadow-card);
  }

  .spec-accordion-icon {
    transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
  }
}

@media (max-width: 520px) {

  .offers-note {
    gap: var(--s-2);
  }
}

/* ── Testimonials Showcase ────────────────────────────────── */
.testimonials {
  text-align: left;
  overflow: visible;
}

.testimonials-hero {
  display: block;
  margin-bottom: var(--s-3);
}

.testimonials-hero-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s-4);
  width: 100%;
  padding: var(--panel-pad);
  background: var(--primary-dark);
  border-radius: var(--r-4);
}

.testimonials-hero-panel .section-headline {
  margin: 0;
}

.testimonials-hero-copy {
  flex: 1 1 auto;
  min-width: min(100%, 18rem);
  max-width: none;
}

.testimonials-hero-cta {
  flex: 0 0 auto;
  align-self: flex-end;
  max-width: 100%;
  margin-bottom: 0;
  white-space: normal;
  text-wrap: balance;
  line-height: 1.25;
  text-align: center;
  background: var(--surface);
  color: var(--primary-dark);
  border-color: var(--surface);
  box-shadow: 0 12px 28px -18px rgba(0, 0, 0, 0.55);
}

@media (hover: hover) {
  .testimonials-hero-cta:hover {
    background: var(--primary-tint);
    border-color: var(--primary-tint);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 16px 34px -18px rgba(0, 0, 0, 0.6);
  }
}

.testimonials-hero-cta:active {
  transform: translateY(1px);
}

.testimonials-showcase {
  position: relative;
  overflow: visible;
}

.testimonials-showcase.reveal {
  opacity: 0;
  transform: none;
  will-change: opacity;
  transition: opacity 0.62s var(--ease);
}

.testimonials-showcase.reveal.is-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

.testimonials-showcase:not(.is-visible) .testimonial-card {
  transition: none;
}

.testimonials-showcase-viewport {
  overflow: hidden;
  padding-block: 20px 44px;
  margin-block: -20px -44px;
  touch-action: pan-y;
  outline: none;
  contain: layout style;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}

@media (prefers-reduced-motion: reduce) {
  .testimonials-showcase.reveal {
    opacity: 1;
    transition: none;
  }

  .testimonials-showcase:not(.is-visible) .testimonial-card {
    transition: none;
  }
}

.testimonials-showcase-viewport.is-dragging {
  cursor: grabbing;
}

.testimonials-showcase-track {
  display: flex;
  gap: var(--s-2);
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.testimonial-card {
  position: relative;
  display: flex;
  flex: 0 0 var(--showcase-card-width, 320px);
  flex-direction: column;
  min-height: 460px;
  padding: var(--s-3);
  background: var(--surface);
  border: 1px solid rgba(78, 88, 81, 0.06);
  border-radius: var(--r-3);
  box-shadow: var(--shadow-card);
  color: var(--text);
  text-align: left;
  opacity: 0.76;
  transform: none;
  transition: box-shadow 0.35s var(--ease), opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.testimonial-card.is-adjacent {
  opacity: 0.9;
}

.testimonial-card.is-active {
  opacity: 1;
  box-shadow: var(--shadow-card-hover);
  z-index: 1;
}

@media (hover: hover) {
  .testimonial-card:hover {
    transform: scale(1.01);
    box-shadow: var(--shadow-card-hover);
    opacity: 1;
  }

  .testimonial-card.is-active:hover {
    transform: scale(1.02);
  }
}

.testimonial-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--s-2);
  margin-bottom: var(--s-3);
}

.testimonial-card-person {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.testimonial-card-mark {
  flex-shrink: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1;
  color: var(--primary-tint-strong);
}

.testimonial-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-2);
  margin-top: auto;
  padding-top: var(--s-3);
}

.testimonial-stars {
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--primary);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-tint);
  border: 0;
  box-shadow: 0 8px 24px -6px rgba(31, 33, 31, 0.24);
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-photo {
  transform: scale(1);
  transform-origin: center;
}

.testimonial-photo-tina {
  transform: scale(1.25);
  transform-origin: 52% 12%;
}

.testimonial-photo-claudia {
  object-position: 50% 16%;
  transform: scale(1.12);
  transform-origin: 50% 16%;
}

.testimonial-photo-christine {
  object-position: 50% 12%;
}

.testimonial-photo-eva {
  object-position: 50% 18%;
  transform: scale(1);
  transform-origin: 50% 18%;
}

.testimonial-photo-nina {
  object-position: 50% 22%;
  transform: scale(1.08);
  transform-origin: 54% 30%;
}

.testimonial-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.testimonial-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin: 2px 0 0;
  line-height: 1.35;
}

.testimonial-quote {
  margin: 0;
  font-size: 15px;
  line-height: 1.62;
  color: var(--text);
  text-wrap: pretty;
}

.testimonials-showcase-nav {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: space-between;
  padding-inline: 4px;
  pointer-events: none;
}

.testimonials-showcase-nav .testimonial-control {
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
}

.testimonials-showcase.is-mobile-snap {
  overflow-x: clip;
  overflow-y: visible;
}

.testimonials-showcase.is-mobile-snap .testimonials-showcase-viewport {
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  contain: layout style;
  max-width: 100%;
  padding-block: 24px 56px;
  margin-block: -24px -36px;
}

.testimonials-showcase.is-mobile-snap .testimonials-showcase-viewport.is-repositioning {
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.testimonials-showcase.is-mobile-snap .testimonials-showcase-viewport::-webkit-scrollbar {
  display: none;
}

.testimonials-showcase.is-mobile-snap .testimonials-showcase-track {
  transform: none !important;
  will-change: auto;
  width: max-content;
}

.testimonials-showcase.is-mobile-snap .testimonial-card {
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

.testimonials-showcase.is-mobile-snap .testimonial-card.is-active {
  position: relative;
  z-index: 2;
}

.testimonials-showcase.is-mobile-snap .testimonials-showcase-nav {
  display: flex;
  position: static;
  justify-content: center;
  gap: var(--s-5);
  margin-top: var(--s-1);
  padding-inline: 0;
  padding-bottom: var(--s-2);
  pointer-events: auto;
  z-index: 1;
}

.testimonials-showcase.is-mobile-snap .testimonials-showcase-nav .testimonial-control {
  background: transparent;
  border: 0;
  box-shadow: none;
  width: 48px;
  height: 48px;
  padding: 0;
  color: var(--primary-dark);
  border-radius: 0;
}

.testimonials-showcase.is-mobile-snap .testimonials-showcase-nav .testimonial-control:hover {
  background: transparent;
  border-color: transparent;
  color: var(--primary);
}

.testimonials-showcase.is-mobile-snap .testimonials-showcase-nav .testimonial-control:active {
  transform: scale(0.94);
}

.testimonials-showcase.is-mobile-snap .testimonials-showcase-nav .testimonial-control svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
}

@media (prefers-reduced-motion: reduce) {
  .testimonials-showcase.is-mobile-snap .testimonials-showcase-viewport {
    scroll-behavior: auto;
  }
}

.testimonial-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.68);
  color: var(--primary-dark);
  cursor: pointer;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.2s var(--ease);
}

.testimonial-control:hover {
  background: var(--primary-tint);
  border-color: var(--primary);
}

.testimonial-control:active {
  transform: translateY(1px) scale(0.98);
}

.testimonial-control:focus-visible {
  outline: 3px solid rgba(113, 127, 116, 0.32);
  outline-offset: 3px;
}

.testimonial-control svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.testimonials-controls {
  display: none;
}

.testimonial-dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(78, 88, 81, 0.24);
  cursor: pointer;
  transition: width 0.24s var(--ease), background 0.24s var(--ease);
}

.testimonial-dot[aria-current="true"] {
  width: 24px;
  border-radius: var(--r-pill);
  background: var(--primary);
}

.testimonial-dot:focus-visible {
  outline: 3px solid rgba(113, 127, 116, 0.32);
  outline-offset: 3px;
}

.testimonial-control:disabled {
  opacity: 0.42;
  cursor: default;
}

.testimonial-control:disabled:hover {
  background: rgba(255, 255, 255, 0.68);
  border-color: var(--border);
}

@media (max-width: 959.98px) {
  .testimonials-hero-panel {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s-3);
  }

  .testimonials-hero-copy {
    max-width: none;
  }

  .testimonials-hero-cta {
    align-self: flex-start;
  }
}

@media (max-width: 767px) {
  .testimonials-hero-panel {
    padding: var(--panel-pad-compact);
  }

  .testimonial-card {
    min-height: 380px;
    padding: 24px;
  }

  .testimonial-quote {
    font-size: 15px;
    line-height: 1.58;
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonials-showcase-track,
  .testimonial-card {
    transition: none;
  }
}

/* ── FAQ ──────────────────────────────────────────────────── */

.faq-layout {
  display: flex;
  align-items: stretch;
  gap: var(--block-gap);
}

.faq-intro {
  flex: 0 0 46%;
  min-width: 380px;
  max-width: 46%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: var(--s-3);
  padding: var(--panel-pad);
  border-radius: var(--r-3);
  background: var(--primary-dark);
}

.faq-intro > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.6;
  max-width: 38ch;
}

.faq-intro-cta {
  margin-top: 0;
}

.faq-list {
  flex: 1 1 0;
  min-width: 0;
  max-width: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--block-gap);
}

.faq-item {
  background: var(--surface);
  border: 1px solid rgba(78, 88, 81, 0.06);
  border-radius: var(--r-3);
  padding: 0 clamp(22px, 2.4vw, 28px);
  box-shadow: var(--shadow-card);
  transition:
    background 0.3s var(--ease),
    border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.faq-item[open]:not([data-closing="true"]) {
  background: var(--surface);
  border-color: rgba(78, 88, 81, 0.1);
  box-shadow: var(--shadow-panel);
}

@media (hover: hover) {
  .faq-item:hover {
    box-shadow: var(--shadow-card-hover);
  }
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-3);
  font-weight: 500;
  font-size: 18px;
  color: var(--text);
  line-height: 1.28;
  padding: 22px 0;
  background: transparent;
  user-select: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.24s var(--ease);
}

.faq-item summary:active {
  background: transparent;
}

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

.faq-item[open]:not([data-closing="true"]) summary {
  color: var(--text);
  font-weight: 600;
}

.faq-item .sign {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--background);
  color: var(--primary);
  flex-shrink: 0;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.32s var(--ease);
}

.faq-item .sign svg {
  width: 14px;
  height: 14px;
  overflow: visible;
}

.faq-item .sign .bar-h,
.faq-item .sign .bar-v {
  transform-origin: 12px 12px;
  transition: transform 0.32s var(--ease), opacity 0.32s var(--ease);
}

.faq-item[open]:not([data-closing="true"]) .sign {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--surface);
  transform: rotate(180deg);
}

.faq-item[open]:not([data-closing="true"]) .sign .bar-v {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-item[open]:not([data-closing="true"]) .sign .bar-h {
  transform: scaleX(0.7);
}

.faq-answer {
  padding: 0;
  margin: 0;
  overflow: hidden;
  height: 0;
  opacity: 0;
  transition: height 320ms cubic-bezier(0.4, 0, 0.2, 1), opacity 320ms cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item[open] .faq-answer {
  height: auto;
  opacity: 1;
}

.faq-answer-inner {
  padding: 0 0 var(--s-3);
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
  max-width: 68ch;
}

.faq-item[open]:not([data-closing="true"]) .faq-answer-inner {
  color: var(--text-muted);
}

@media (prefers-reduced-motion: reduce) {
  .faq-item,
  .faq-item summary,
  .faq-item .sign,
  .faq-item .sign .bar-h,
  .faq-item .sign .bar-v,
  .faq-answer {
    transition: none;
  }
}

@media (max-width: 960px) {
  .faq-intro {
    flex-basis: 44%;
    min-width: 340px;
    max-width: 44%;
  }
}

@media (max-width: 820px) {
  .faq-layout {
    flex-direction: column;
  }

  .faq-intro {
    flex: none;
    width: 100%;
    min-width: 0;
    max-width: none;
  }
}

/* ── Final CTA ────────────────────────────────────────────── */
.final-cta {
  text-align: left;
  padding: clamp(64px, 7vw, 128px) 0;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: var(--block-gap);
  align-items: stretch;
  margin-inline: var(--bleed);
}

.contact-copy {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  background: var(--surface);
  border-radius: var(--r-3);
  padding: var(--panel-pad);
  box-shadow: var(--shadow-panel);
}

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

.contact-lede {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
  max-width: 42ch;
}

.contact-alts {
  margin-top: auto;
  padding-top: var(--s-4);
}

.contact-alts-label {
  margin: 0 0 var(--s-3);
  font-size: 17px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text);
  font-weight: 600;
}

.contact-alts-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--s-3);
}

.contact-alts-list li {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 16px;
  color: var(--text);
}

.contact-alts-list li > span:last-child {
  line-height: 1.28;
}

.contact-icon {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  background: transparent;
  color: var(--primary-dark);
  box-shadow: none;
  overflow: hidden;
}

.contact-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.contact-alts-key {
  display: block;
  color: var(--text);
  font-size: 19px;
  line-height: 1.14;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 600;
  margin-bottom: 0;
}

.contact-alts-list a {
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid rgba(31, 33, 31, 0.14);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.contact-alts-list li > span:last-child > span:last-child {
  color: var(--text-muted);
}

.contact-alts-list a:hover,
.contact-alts-list a:focus {
  color: var(--primary-dark);
  border-bottom-color: var(--primary);
}

.contact-form {
  display: grid;
  gap: var(--s-3);
  text-align: left;
  margin: 0;
  background: var(--primary-dark);
  border-radius: var(--r-3);
  padding: var(--panel-pad);
  align-self: stretch;
}

.contact-form:has(.is-invalid) {
  gap: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--s-3);
  align-items: start;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--surface);
  font-size: 14px;
  font-weight: 500;
}

.contact-form input:not([type="checkbox"]),
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--r-2);
  background: var(--surface);
  color: var(--text);
  padding: 14px 16px;
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease),
              box-shadow 0.2s var(--ease);
}

.contact-form input:not([type="checkbox"]) {
  height: 52px;
}

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

.contact-form input:not([type="checkbox"]):hover,
.contact-form textarea:hover {
  border-color: var(--primary);
  background: #FFFFFF;
}

.contact-form input:not([type="checkbox"]):focus,
.contact-form textarea:focus,
.contact-form input:not([type="checkbox"]):focus-visible,
.contact-form textarea:focus-visible {
  outline: none !important;
  outline-offset: 0 !important;
  border-color: var(--primary);
  background: #FFFFFF;
  box-shadow: none !important;
}

.contact-form label.is-invalid input:not([type="checkbox"]),
.contact-form label.is-invalid textarea {
  border-color: rgba(255, 255, 255, 0.88);
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.16) !important;
}

.privacy-check {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: var(--s-2);
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
  line-height: 1.45;
}

.privacy-check.is-invalid {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--r-2);
  padding: 12px 14px;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--surface);
}

.privacy-check a {
  color: var(--surface);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.privacy-check a:hover,
.privacy-check a:focus {
  color: var(--primary-tint);
}

/* contact-form button style overrides removed in favor of btn-ghost */

.contact-form .btn {
  justify-self: start;
}

.contact-form .btn:disabled {
  cursor: progress;
  opacity: 0.82;
}

.contact-form .btn-ghost {
  border-color: #FFFFFF;
}

.contact-form .btn-ghost.is-success {
  background: var(--primary-tint);
  border-color: var(--primary-tint);
  color: var(--primary-dark);
  animation: contact-submit-success 0.72s var(--ease);
}

.contact-form .btn-ghost.is-success::before {
  content: '✓';
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary-dark);
  color: var(--surface);
  font-size: 12px;
  line-height: 1;
}

.form-status {
  margin: 0;
  color: var(--surface);
  font-size: 14px;
  line-height: 1.45;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--r-2);
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 32px -24px rgba(0, 0, 0, 0.42);
}

.form-status[data-type="success"] {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
}

.form-status[data-type="fallback"] {
  color: var(--primary-tint);
}

.form-status[data-type="error"] {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
}

.form-error {
  margin: 2px 0 0;
  color: var(--primary-dark);
  background: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--r-2);
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.35;
  box-shadow: 0 14px 30px -22px rgba(0, 0, 0, 0.5);
}

.privacy-check .form-error {
  grid-column: 1 / -1;
  margin-top: 0;
}

@keyframes contact-submit-success {
  0% {
    transform: translateY(0) scale(1);
    box-shadow: none;
  }
  42% {
    transform: translateY(-2px) scale(1.035);
    box-shadow: 0 18px 40px -18px rgba(255, 255, 255, 0.58);
  }
  100% {
    transform: translateY(0) scale(1);
    box-shadow: none;
  }
}

@media (max-width: 900px) {
  .contact-shell {
    grid-template-columns: 1fr;
    gap: var(--block-gap);
  }

  .contact-copy,
  .contact-form {
    padding: var(--panel-pad-compact);
  }

  .contact-alts {
    margin-top: var(--s-4);
  }

  .contact-alts-list {
    max-width: 620px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-form .btn-ghost.is-success {
    animation: none;
  }
}

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

  .contact-intro .section-headline {
    max-width: none;
  }

  .contact-alts-list {
    grid-template-columns: 1fr;
  }

  .contact-alts-list li {
    align-items: flex-start;
  }
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--background);
  padding: 0 var(--page-pad) var(--s-4);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.footer .container {
  max-width: var(--max-wide);
  background: var(--primary-dark);
  border-radius: var(--r-3);
  padding-top: var(--s-5);
  padding-bottom: var(--s-4);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--s-5);
  align-items: start;
}

.footer-logo img {
  height: 20px;
  margin-bottom: var(--s-2);
  opacity: 0.95;
  filter: brightness(0) invert(1);
}

.footer-heading,
.footer h4 {
  font-size: 15px;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: var(--s-2);
  font-weight: 600;
  color: var(--surface);
  line-height: 1.2;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer a {
  color: rgba(255, 255, 255, 0.74);
}

.footer a:hover {
  color: var(--surface);
}

.footer-bottom {
  margin-top: var(--s-5);
  padding-top: var(--s-3);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-3);
  flex-wrap: wrap;
  font-size: 13px;
}

.footer-legal {
  max-width: 52ch;
  line-height: 1.55;
}

.legal-page {
  padding-top: 0;
}

.legal-hero {
  padding: 0;
}

.legal-hero-card {
  padding: var(--panel-pad);
  background: var(--primary-dark);
  border-radius: var(--r-3);
  box-shadow: var(--shadow-panel);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.legal-hero h1 {
  color: var(--surface);
  font-size: clamp(42px, 6vw, 76px);
  margin-bottom: var(--s-2);
  letter-spacing: -0.03em;
  max-width: min(100%, 920px);
  overflow-wrap: anywhere;
  hyphens: auto;
}

.legal-hero p {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
  max-width: 720px;
  margin: 0;
}

.legal-page .section-tight {
  padding-top: var(--block-gap);
}

.legal-panel {
  width: 100%;
  max-width: var(--max-wide);
  margin: 0 auto;
  background: var(--surface);
  border-radius: var(--r-3);
  box-shadow: var(--shadow-card);
  padding: var(--panel-pad);
}

.legal-panel h2 {
  font-size: clamp(20px, 2.1vw, 25px);
  max-width: 860px;
  margin-top: var(--s-5);
  margin-bottom: var(--s-1);
}

.legal-panel h2:first-child {
  margin-top: 0;
}

.legal-panel p {
  margin: 0 0 var(--s-3);
}

.legal-panel a {
  color: var(--primary);
  overflow-wrap: anywhere;
}

.legal-updated {
  color: var(--text-muted);
  font-size: 14px;
  padding-top: var(--s-2);
}

@media (max-width: 820px) {
  .footer {
    padding-bottom: var(--s-3);
  }

  .footer .container {
    border-radius: var(--r-2);
    padding-top: var(--s-4);
    padding-bottom: var(--s-4);
  }

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

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

  .legal-hero-card,
  .legal-panel {
    padding: var(--panel-pad-compact);
  }

  .legal-hero h1 {
    font-size: clamp(34px, 11vw, 46px);
    line-height: 1.08;
  }
}

@media (min-width: 1241px) {
  .legal-hero-card,
  .legal-panel {
    width: auto;
    margin-inline: calc(var(--page-pad) * -1);
  }
}

/* ── Mobile polish ────────────────────────────────────────── */
@media (max-width: 767px) {
  :root {
    --page-pad: 16px;
    --s-4: 28px;
    --s-5: 40px;
    --s-6: 56px;
    --s-7: 72px;
    --eyebrow-gap: var(--s-2);
    --section-radius: var(--r-3);
    --type-hero-title: clamp(34px, 9.6vw, 48px);
    --type-section-title: clamp(26px, 7.5vw, 34px);
    --type-card-title: 22px;
    --type-lede: clamp(22px, 6.3vw, 30px);
  }

  body {
    font-size: 16px;
    line-height: 1.62;
  }

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

  .section-tight {
    padding: var(--s-5) 0;
  }

  .problem-card,
  .solution-card {
    padding: var(--panel-pad-compact);
  }

  .problem-card-copy,
  .solution-card-copy {
    max-width: 32ch;
  }

  .solution-card .section-headline-primary,
  .solution-card .section-headline-muted,
  .problem-card .section-headline-primary,
  .problem-card .section-headline-muted {
    display: inline;
    width: auto;
    color: var(--color-heading);
    font-weight: 600;
  }

  .btn {
    min-height: 48px;
    padding: 14px 20px;
  }

  .nav {
    min-height: 72px;
    padding: 10px var(--page-pad) 12px;
  }

  .nav-inner {
    width: 100%;
    max-width: 100%;
    padding: 12px 16px 14px;
    gap: 10px;
    border-radius: var(--r-2);
    border-color: rgba(78, 88, 81, 0.09);
    box-shadow: 0 14px 34px -28px rgba(31, 33, 31, 0.32);
  }

  .nav-logo {
    width: clamp(200px, 52vw, 264px);
    max-width: calc(100% - 60px);
    min-width: 0;
  }

  .hero {
    padding: 0 0 var(--s-2);
    overflow-x: clip;
  }

  .hero-grid {
    row-gap: var(--block-gap);
    margin-inline: 0;
  }

  .hero-copy {
    min-height: 0;
    justify-content: center;
    padding: clamp(28px, 7vw, 40px) clamp(20px, 5vw, 28px);
  }

  .hero h1 {
    font-size: var(--type-hero-title);
    line-height: 1.06;
    letter-spacing: -0.01em;
    margin-bottom: var(--s-2);
    text-wrap: balance;
  }

  .hero-sub {
    font-size: clamp(16px, 4.4vw, 18px);
    line-height: 1.5;
    max-width: 100%;
    margin-bottom: var(--s-3);
  }

  .hero-ctas {
    justify-content: flex-start;
    max-width: 100%;
  }

  .hero-ctas .btn {
    width: auto;
    max-width: 100%;
    align-self: flex-start;
  }

  .contact-form .btn {
    width: 100%;
    order: 1;
  }

  /* Zustimmung sitzt unter dem CTA; Checkbox und Text nebeneinander. */
  .contact-form .privacy-check {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    order: 2;
  }

  .final-cta h2 {
    margin-inline: 0;
  }

  .final-cta .eyebrow {
    margin-left: var(--s-3);
    margin-right: auto;
  }

  .hero-portrait {
    border-radius: var(--r-3);
  }

  .lede {
    line-height: 1.32;
  }

  .life-school-copy {
    padding: var(--panel-pad-compact);
  }

  .final-cta .section-headline,
  .contact-intro .section-headline {
    max-width: none;
  }

  .about-media {
    width: 100%;
    max-width: none;
    aspect-ratio: 4 / 5;
    border-radius: var(--r-3);
  }

  .life-school {
    gap: var(--s-3);
  }

  .offers-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-top: var(--s-4);
    padding: 0 4px;
    text-align: left;
  }

  .offers-note-label {
    margin-right: 0;
  }

  .offers-note-divider {
    display: none;
  }

  .testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-2);
    margin-top: var(--s-3);
  }

  .faq-layout {
    margin-inline: 0;
  }

  .faq-intro > p {
    font-size: 15px;
    max-width: 34ch;
  }

  .faq-intro {
    padding: var(--panel-pad-compact);
  }

  .faq-list {
    margin: 0;
  }

  .faq-item {
    padding: 0 20px;
    border-radius: var(--r-3);
  }

  .faq-item summary {
    align-items: center;
    font-size: 16px;
    line-height: 1.35;
    padding: 16px 0 14px;
  }

  .spec-accordion-trigger:hover {
    background: transparent;
  }

  .footer .container {
    padding-left: 28px;
    padding-right: 28px;
  }
}

@media (max-width: 440px) {
  .nav-toggle {
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  @media (max-width: 899.98px) {
    .nav,
    .nav-inner,
    .nav-menu,
    .nav-toggle-inner::before,
    .nav-toggle-inner::after {
      transition: none !important;
    }
  }

  @media (min-width: 900px) {
    .nav.is-fixed,
    .nav-inner,
    .nav-menu,
    .nav-logo,
    .nav-links,
    .nav-links a,
    .nav-cta .btn {
      transition: none !important;
    }

    .nav.is-animating .nav-inner {
      will-change: auto;
    }

    .nav.is-animating .nav-menu {
      will-change: auto;
    }
  }
}

@media (max-width: 420px) {
  :root {
    --page-pad: 14px;
  }

  .nav-logo {
    width: clamp(188px, 54vw, 228px);
    max-width: calc(100% - 52px);
  }

  .btn-nav {
    max-width: 128px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .nav--legal .btn-nav {
    max-width: none;
  }

  .hero-copy {
    min-height: 0;
    padding: clamp(24px, 7vw, 36px) clamp(18px, 5vw, 24px);
  }

  .hero h1 {
    font-size: clamp(28px, 8.8vw, 36px);
    line-height: 1.1;
  }

  .hero-sub {
    font-size: 16px;
    line-height: 1.5;
    max-width: 100%;
  }

  .hero-ctas .btn {
    white-space: normal;
    line-height: 1.3;
    text-align: center;
    padding-inline: 18px;
  }

  .hero-social {
    gap: 12px;
    margin-top: var(--s-3);
  }

  .hero-social__avatar {
    width: 27px;
    height: 27px;
  }

  .hero-social__copy {
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
  }

  .hero-social__num {
    font-size: 19px;
    line-height: 1.1;
  }

  .hero-social__label {
    font-size: 13px;
    line-height: 1.2;
    white-space: nowrap;
  }
}

/* ── Large Screen Responsive Enhancements ─────────────────── */
@media (min-width: 1440px) {
  :root {
    --max-wide: 1320px;
    --s-5: 56px;
    --s-6: 72px;
    --s-7: 112px;
    --s-8: 144px;
  }

  .nav.is-scrolled .nav-inner {
    max-width: min(1120px, 82vw);
  }

  .nav.is-scrolled .nav-menu {
    max-width: min(1120px, 82vw);
  }
}

@media (min-width: 1760px) {
  :root {
    --max-wide: 1440px;
    --s-5: 64px;
    --s-6: 80px;
    --s-7: 128px;
    --s-8: 160px;
  }

  .nav.is-scrolled .nav-inner {
    max-width: min(1180px, 78vw);
  }

  .nav.is-scrolled .nav-menu {
    max-width: min(1180px, 78vw);
  }
}
