/* =============================================================================
   Der Bewerber-Code: Landingpage Style (01.05.2026)
   Design-System aus fachkraft-jetzt-relaunch (style.css) abgeleitet.
   Brand: Gold #F2CD5C, Teal #6FBFB1, Petrol #2C5B70, BG #081520.
   ============================================================================= */

/* =============================================================================
   1. DESIGN TOKENS
   ============================================================================= */
:root {
  /* Brand */
  --color-gold:         #F2CD5C;
  --color-gold-light:   #F6D979;
  --color-gold-soft:    rgba(242, 205, 92, 0.20);
  --color-gold-border:  rgba(242, 205, 92, 0.45);
  --color-gold-glow:    rgba(242, 205, 92, 0.28);

  --color-teal:         #6FBFB1;
  --color-teal-light:   #8BCFC3;
  --color-teal-soft:    rgba(111, 191, 177, 0.18);
  --color-teal-border:  rgba(111, 191, 177, 0.45);
  --color-teal-glow:    rgba(111, 191, 177, 0.22);

  --color-petrol:       #2C5B70;

  /* Surfaces */
  --bg:                 #081520;
  --bg-deeper:          #050E16;
  --bg-card:            rgba(255, 255, 255, 0.035);
  --bg-card-hover:      rgba(255, 255, 255, 0.06);
  --bg-card-featured:   rgba(242, 205, 92, 0.04);
  --bg-nav:             rgba(8, 21, 32, 0.35);
  --bg-nav-scrolled:    rgba(8, 21, 32, 0.65);

  /* Text */
  --text:               #FFFFFF;
  --text-bright:        rgba(255, 255, 255, 0.96);
  --text-muted:         rgba(255, 255, 255, 0.72);
  --text-dim:           rgba(255, 255, 255, 0.50);
  --text-faint:         rgba(255, 255, 255, 0.30);

  /* Borders */
  --border:             rgba(255, 255, 255, 0.08);
  --border-bright:      rgba(255, 255, 255, 0.14);
  --border-hover:       rgba(111, 191, 177, 0.45);

  /* Typography */
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-display: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* Fluid Scale */
  --fs-h1:   clamp(38px, 5.2vw, 76px);
  --fs-h2:   clamp(28px, 3.8vw, 50px);
  --fs-h3:   clamp(20px, 2.0vw, 26px);
  --fs-lead: clamp(17px, 1.3vw, 20px);
  --fs-body: 16.5px;
  --fs-small: 14px;
  --fs-micro: 12px;

  /* Spacing */
  --s-1: 4px;  --s-2: 8px;   --s-3: 12px;  --s-4: 16px;
  --s-5: 20px; --s-6: 24px;  --s-7: 32px;  --s-8: 40px;
  --s-9: 48px; --s-10: 64px; --s-11: 80px; --s-12: 96px;

  /* Radii */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-card:     0 4px 30px rgba(0, 0, 0, 0.38), 0 1px 0 rgba(255, 255, 255, 0.04) inset;
  --shadow-card-lg:  0 12px 60px rgba(0, 0, 0, 0.45), 0 1px 0 rgba(255, 255, 255, 0.06) inset;
  --shadow-gold:     0 8px 40px rgba(242, 205, 92, 0.25), 0 0 100px rgba(242, 205, 92, 0.10);
  --shadow-btn:      0 6px 24px rgba(242, 205, 92, 0.32);

  /* Transitions */
  --ease:    cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast:  180ms var(--ease);
  --t-base:  320ms var(--ease);
  --t-slow:  560ms var(--ease-out);

  /* Layout */
  --container-max: 1200px;
  --container-pad: 24px;
  --nav-h: 72px;
}

/* =============================================================================
   2. RESET
   ============================================================================= */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--text-bright);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  min-height: 100vh;
  position: relative;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--text);
}

p { margin: 0; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img, svg { display: block; max-width: 100%; height: auto; }
ul, ol { margin: 0; padding: 0; list-style: none; }
input, textarea { font-family: inherit; font-size: inherit; }

:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--color-gold); color: var(--bg); }

/* =============================================================================
   3. CONTAINER + SECTION BASICS
   ============================================================================= */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
  position: relative;
  z-index: 2;
}

section {
  padding: clamp(64px, 9vw, 128px) 0;
  position: relative;
  z-index: 1;
}

#hero {
  padding-top: 120px;
  padding-bottom: 32px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-teal);
  padding: 7px 14px;
  border-radius: var(--r-pill);
  background: var(--color-teal-soft);
  border: 1px solid var(--color-teal-border);
  margin-bottom: var(--s-5);
}

.section-h2 {
  font-size: var(--fs-h2);
  max-width: 880px;
  margin: 0 0 var(--s-5);
  color: var(--text);
}

.section-sub {
  font-size: var(--fs-lead);
  color: var(--text-muted);
  max-width: 720px;
  margin-bottom: var(--s-11);
  line-height: 1.55;
}

.gradient-text {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* =============================================================================
   4. AMBIENT BLOBS + GLOBAL GLOW
   ============================================================================= */
.blobs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  will-change: transform;
  animation: blob-float 22s ease-in-out infinite alternate;
}

.blob--gold {
  width: 58vmin; height: 58vmin;
  top: -10vmin; right: -14vmin;
  background: radial-gradient(circle, var(--color-gold) 0%, transparent 65%);
  opacity: 0.22;
  animation-duration: 24s;
}

.blob--petrol {
  width: 78vmin; height: 78vmin;
  top: 30vh; left: -22vmin;
  background: radial-gradient(circle, var(--color-petrol) 0%, transparent 68%);
  opacity: 0.50;
  animation-duration: 30s;
  animation-delay: -8s;
}

.blob--teal {
  width: 60vmin; height: 60vmin;
  bottom: -14vmin; right: 12vmin;
  background: radial-gradient(circle, var(--color-teal) 0%, transparent 65%);
  opacity: 0.22;
  animation-duration: 28s;
  animation-delay: -14s;
}

@keyframes blob-float {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(3%, -4%, 0) scale(1.04); }
  100% { transform: translate3d(-3%, 3%, 0) scale(0.98); }
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 90% 50% at 50% 0%, rgba(242, 205, 92, 0.14), transparent 55%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(111, 191, 177, 0.10), transparent 50%);
}

/* =============================================================================
   5. NAVIGATION
   ============================================================================= */
.nav {
  position: fixed;
  top: 20px;
  left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 0 var(--container-pad);
  pointer-events: none;
}

.nav__pill {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: var(--s-6);
  padding: 10px 10px 10px 22px;
  background: var(--bg-nav);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--border-bright);
  border-radius: var(--r-pill);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
  transition: background var(--t-base), border-color var(--t-base);
  max-width: calc(var(--container-max) - 16px);
  width: 100%;
}

.nav.is-scrolled .nav__pill { background: var(--bg-nav-scrolled); }

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}

.nav__logo-icon { height: 32px; width: 32px; flex-shrink: 0; }
.nav__logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--color-gold);
}
.logo-sub {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-top: 1px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  transition: color var(--t-fast), background var(--t-fast);
}

.nav__links a:hover { color: var(--text); background: rgba(255, 255, 255, 0.05); }

.nav__cta-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-teal) 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #0B1D2A;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  border-radius: var(--r-pill);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}

.nav__cta-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(242, 205, 92, 0.4);
}

/* =============================================================================
   6. BUTTONS
   ============================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), border-color var(--t-fast);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-teal) 100%);
  color: #0B1D2A;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  box-shadow:
    0 4px 20px rgba(242, 205, 92, 0.4),
    0 0 50px rgba(242, 205, 92, 0.2),
    0 0 80px rgba(111, 191, 177, 0.15),
    0 0 120px rgba(242, 205, 92, 0.08);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 30px rgba(242, 205, 92, 0.5),
    0 0 70px rgba(242, 205, 92, 0.3),
    0 0 100px rgba(111, 191, 177, 0.2),
    0 0 140px rgba(242, 205, 92, 0.1);
}

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

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.35) 50%, transparent 100%);
  animation: shine 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shine {
  0%, 100% { left: -100%; }
  50%      { left: 150%; }
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-bright);
  border: 1px solid var(--border-bright);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.btn-full { display: flex; width: 100%; }

/* =============================================================================
   7. HERO
   ============================================================================= */
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--s-11);
  align-items: center;
}

.hero__copy { max-width: 620px; }

.hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-teal);
  padding: 7px 14px;
  border-radius: var(--r-pill);
  background: var(--color-teal-soft);
  border: 1px solid var(--color-teal-border);
  margin-bottom: var(--s-5);
}

.hero__h1 {
  font-size: var(--fs-h1);
  margin-bottom: var(--s-5);
}

.hero__sub {
  font-size: var(--fs-lead);
  color: var(--text-muted);
  margin-bottom: var(--s-7);
  line-height: 1.55;
}

.hero__cta-stack {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-bottom: var(--s-3);
}

.hero__cta-sub {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: var(--s-7);
}

.hero__trust {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  padding: var(--s-5) 0;
  border-top: 1px solid var(--border);
}

.hero__trust-stars {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 14px;
  color: var(--text-muted);
}

.hero__trust-stars svg { width: 18px; height: 18px; }
.hero__trust-stars strong { color: var(--text); margin-left: 6px; font-size: 15px; }
.hero__trust-stars span { margin-left: 6px; font-size: 13px; color: var(--text-dim); }

.hero__trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-pill {
  display: inline-block;
  padding: 6px 12px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
}

.hero__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-4);
}

.hero__cover-frame {
  position: relative;
  width: min(360px, 88%);
  aspect-ratio: 5 / 8;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 80px rgba(242, 205, 92, 0.18);
  transform: perspective(1200px) rotateY(-8deg) rotateX(2deg);
  transition: transform var(--t-slow);
}

.hero__cover-frame:hover { transform: perspective(1200px) rotateY(-4deg) rotateX(1deg); }

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

.hero__cover-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg,
    transparent 25%,
    rgba(255, 255, 255, 0.32) 48%,
    rgba(255, 255, 255, 0.42) 50%,
    rgba(255, 255, 255, 0.32) 52%,
    transparent 75%);
  background-size: 240% 240%;
  background-position: 100% 0%;
  animation: hero-shine 5s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: overlay;
}

@keyframes hero-shine {
  0%   { background-position: 120% -20%; }
  55%  { background-position: -40% 120%; }
  100% { background-position: -40% 120%; }
}

.hero__cover-meta {
  font-size: 13px;
  color: var(--text-dim);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  justify-content: center;
}

.hero__cover-dot { color: var(--text-faint); }
.hero__cover-pages { color: var(--text-muted); font-weight: 600; }

/* =============================================================================
   8. TRUST-BAR
   ============================================================================= */
.trust-bar { padding: var(--s-9) 0; }

.trust-bar__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--s-7);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-7) var(--s-8);
  backdrop-filter: blur(8px);
}

.trust-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}

.trust-bar__num {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.trust-bar__small {
  font-size: 16px;
  -webkit-text-fill-color: var(--text-dim);
  background: none;
}

.trust-bar__label {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}

.trust-bar__sep {
  width: 1px;
  height: 38px;
  background: linear-gradient(180deg, transparent, var(--border-bright), transparent);
}

/* =============================================================================
   9. METHODE / 5-SCHLUESSEL
   ============================================================================= */
.method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--s-6);
}

.method-card {
  position: relative;
  padding: var(--s-7);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: background var(--t-base), border-color var(--t-base), transform var(--t-base);
  display: flex;
  flex-direction: column;
}

.method-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-bright);
  transform: translateY(-4px);
}

.method-card__num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-gold);
  margin-bottom: var(--s-3);
}

.method-card__visual {
  margin: 0 calc(var(--s-7) * -1) var(--s-5);
  border-radius: var(--r-md) var(--r-md) 0 0;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(44, 91, 112, 0.20), rgba(8, 21, 32, 0.4));
  padding: var(--s-5);
}

.method-card__visual svg {
  width: 100%;
  height: auto;
  max-width: 200px;
  margin: 0 auto;
}

.method-card__title {
  font-size: 22px;
  margin-bottom: var(--s-3);
  color: var(--text);
}

.method-card__text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: var(--s-5);
  flex-grow: 1;
}

.method-card__chapter {
  font-size: 12px;
  color: var(--color-teal);
  font-weight: 600;
  letter-spacing: 0.04em;
  padding-top: var(--s-3);
  border-top: 1px solid var(--border);
}

.method-card--bonus {
  background: linear-gradient(135deg, rgba(242, 205, 92, 0.06), rgba(111, 191, 177, 0.06));
  border-color: var(--color-gold-border);
}

.method-card--bonus .method-card__num {
  font-size: 32px;
  color: var(--color-gold);
}

/* =============================================================================
   10. PROBEKAPITEL FORM
   ============================================================================= */
#probekapitel { padding-top: var(--s-12); }

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

.probekapitel__copy { padding-top: var(--s-3); }

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

.probekapitel__benefits li {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: 16px;
  color: var(--text-muted);
}

.probekapitel__benefits svg { flex-shrink: 0; }

.lead-form {
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: var(--r-lg);
  padding: var(--s-8);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-card-lg);
  position: sticky;
  top: 100px;
}

.lead-form__title {
  font-size: 24px;
  margin-bottom: var(--s-6);
  color: var(--text);
}

.lead-form__field {
  margin-bottom: var(--s-4);
}

.lead-form__field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.lead-form__optional {
  font-weight: 400;
  color: var(--text-faint);
}

.lead-form__field input {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-bright);
  border-radius: var(--r-sm);
  transition: border-color var(--t-fast), background var(--t-fast);
}

.lead-form__field input:focus {
  outline: none;
  border-color: var(--color-teal);
  background: rgba(255, 255, 255, 0.06);
}

.lead-form__field input.is-error {
  border-color: #EF7850;
}

.lead-form__consent {
  display: flex;
  gap: 10px;
  margin: var(--s-5) 0;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
}

.lead-form__consent input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px; height: 16px;
  accent-color: var(--color-gold);
  cursor: pointer;
}

.lead-form__consent a { color: var(--color-teal); text-decoration: underline; }

.lead-form__note {
  margin-top: var(--s-3);
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
}

.lead-form__success,
.lead-form__error {
  margin-top: var(--s-5);
  padding: var(--s-5);
  border-radius: var(--r-md);
  text-align: center;
}

.lead-form__success {
  background: rgba(111, 191, 177, 0.10);
  border: 1px solid var(--color-teal-border);
}

.lead-form__success svg { margin: 0 auto var(--s-3); }
.lead-form__success h4 { color: var(--text); margin-bottom: var(--s-2); font-size: 18px; }
.lead-form__success p { color: var(--text-muted); font-size: 14px; line-height: 1.5; }

.lead-form__error {
  background: rgba(239, 120, 80, 0.08);
  border: 1px solid rgba(239, 120, 80, 0.30);
  color: var(--text-bright);
  font-size: 14px;
}

.lead-form__error a { color: var(--color-gold); text-decoration: underline; }

.lead-form.is-loading button[type="submit"] {
  opacity: 0.7;
  pointer-events: none;
}

/* =============================================================================
   11. TESTIMONIALS
   ============================================================================= */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--s-6);
}

.testimonial {
  padding: var(--s-7);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: background var(--t-base), border-color var(--t-base), transform var(--t-base);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  min-height: 240px;
}

.testimonial:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-bright);
  transform: translateY(-2px);
}

.testimonial__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
}

.testimonial__stars {
  display: flex;
  gap: 4px;
}

.testimonial__stars svg { width: 18px; height: 18px; }

.testimonial__source {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
}

.testimonial__footer-link {
  margin-top: var(--s-7);
  text-align: center;
}

.testimonial__footer-link a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-teal);
  background: rgba(111, 191, 177, 0.08);
  border: 1px solid var(--color-teal-border);
  border-radius: var(--r-pill);
  transition: background var(--t-fast), color var(--t-fast);
}

.testimonial__footer-link a:hover {
  background: rgba(111, 191, 177, 0.16);
  color: var(--text);
}

.testimonial blockquote {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--text-bright);
  flex-grow: 1;
  margin: 0;
}

.testimonial footer {
  display: flex;
  flex-direction: column;
  font-size: 13px;
}

.testimonial footer strong { color: var(--text); font-weight: 600; }
.testimonial footer span { color: var(--text-dim); }

/* =============================================================================
   12. AUTOR
   ============================================================================= */
.autor__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--s-11);
  align-items: start;
}

.autor__photo {
  position: sticky;
  top: 100px;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.autor__photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 35%;
}

.autor__photo-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(8, 21, 32, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-bright);
  border-radius: var(--r-pill);
  font-size: 12px;
  color: var(--text);
  font-weight: 600;
}

.autor__copy { padding-top: var(--s-3); }

.autor__copy p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: var(--s-5);
  line-height: 1.65;
}

.autor__creds {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  margin: var(--s-7) 0;
  padding: var(--s-6);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}

.autor__creds li {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  font-size: 15px;
  color: var(--text-muted);
}

.autor__creds li strong { color: var(--text); }
.autor__creds svg { flex-shrink: 0; }

.autor__pull {
  font-size: 19px;
  font-style: italic;
  font-weight: 500;
  color: var(--text-bright);
  padding-left: var(--s-5);
  border-left: 3px solid var(--color-gold);
  line-height: 1.5;
  margin: 0;
}

/* =============================================================================
   13. PROBEKAPITEL-REMINDER
   ============================================================================= */
.reminder {
  padding: var(--s-9) 0;
}

.reminder__box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-7);
  padding: var(--s-7) var(--s-8);
  background: linear-gradient(135deg, rgba(242, 205, 92, 0.08), rgba(111, 191, 177, 0.06));
  border: 1px solid var(--color-gold-border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(8px);
}

.reminder__copy { flex: 1 1 360px; }

.reminder__copy h3 {
  font-size: 22px;
  color: var(--text);
  margin-bottom: 6px;
}

.reminder__copy p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* =============================================================================
   14. STELLENANZEIGEN-GENERATOR-BRIDGE
   ============================================================================= */
.generator__card {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: var(--s-8);
  align-items: center;
  padding: var(--s-8);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}

.generator__visual { background: linear-gradient(135deg, rgba(44, 91, 112, 0.20), rgba(8, 21, 32, 0.4)); padding: var(--s-5); border-radius: var(--r-md); }

.generator__copy h3 {
  font-size: 24px;
  color: var(--text);
  margin-bottom: var(--s-3);
}

.generator__copy p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: var(--s-5);
}

/* =============================================================================
   15. FAQ
   ============================================================================= */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  max-width: 880px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t-base), background var(--t-base);
}

.faq-item:hover { border-color: var(--border-bright); background: var(--bg-card-hover); }
.faq-item[open] { border-color: var(--color-teal-border); background: var(--bg-card-hover); }

.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
  padding: var(--s-5) var(--s-6);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  user-select: none;
}

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

.faq-item summary svg {
  flex-shrink: 0;
  transition: transform var(--t-base);
  color: var(--color-teal);
}

.faq-item[open] summary svg { transform: rotate(180deg); }

.faq-item__content {
  padding: 0 var(--s-6) var(--s-6);
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =============================================================================
   16. FINAL CTA
   ============================================================================= */
.final-cta__box {
  text-align: center;
  padding: var(--s-12) var(--s-8);
  background: linear-gradient(135deg, rgba(242, 205, 92, 0.06), rgba(111, 191, 177, 0.05));
  border: 1px solid var(--color-gold-border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-card-lg);
}

.final-cta__box .section-label { margin-left: auto; margin-right: auto; }

.final-cta__box h2 {
  font-size: var(--fs-h2);
  max-width: 760px;
  margin: 0 auto var(--s-9);
}

.final-cta__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--s-5);
  max-width: 920px;
  margin: 0 auto;
}

.final-cta__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-7);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  text-align: center;
  transition: border-color var(--t-base), transform var(--t-base);
}

.final-cta__card:hover { border-color: var(--border-bright); transform: translateY(-3px); }

.final-cta__card--primary {
  background: linear-gradient(135deg, rgba(242, 205, 92, 0.10), rgba(111, 191, 177, 0.06));
  border-color: var(--color-gold-border);
  box-shadow: var(--shadow-gold);
}

.final-cta__icon {
  width: 64px; height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-teal) 100%);
}

.final-cta__icon--teal {
  background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-teal-light) 100%);
}

.final-cta__icon--gold {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
}

.final-cta__card h3 {
  font-size: 20px;
  color: var(--text);
}

.final-cta__card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  flex-grow: 1;
  margin-bottom: var(--s-3);
}

/* =============================================================================
   17. FOOTER
   ============================================================================= */
.footer {
  padding: var(--s-10) 0 var(--s-7);
  border-top: 1px solid var(--border);
  margin-top: var(--s-12);
  position: relative;
  z-index: 5;
}

.footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-7);
  margin-bottom: var(--s-7);
  padding-bottom: var(--s-7);
  border-bottom: 1px solid var(--border);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}

.footer__brand strong { display: block; font-size: 16px; color: var(--text); }
.footer__brand span { display: block; font-size: 13px; color: var(--text-dim); }

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-5);
  font-size: 14px;
}

.footer__links a {
  color: var(--text-muted);
  transition: color var(--t-fast);
}

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

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--s-3);
  font-size: 12.5px;
  color: var(--text-faint);
}

/* =============================================================================
   18. RESPONSIVE / MOBILE
   ============================================================================= */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: var(--s-9); }
  .hero__visual { order: -1; }
  .hero__cover-frame { transform: none; }
  .hero__cover-frame:hover { transform: none; }

  .probekapitel__wrap { grid-template-columns: 1fr; gap: var(--s-7); }
  .lead-form { position: static; }

  .autor__grid { grid-template-columns: 1fr; gap: var(--s-7); }
  .autor__photo { position: static; max-width: 360px; margin: 0 auto; }

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

  .reminder__box { flex-direction: column; align-items: flex-start; text-align: left; }
  .reminder__box .btn { width: 100%; }
}

@media (max-width: 720px) {
  .nav { top: 12px; }
  .nav__pill { padding: 8px 8px 8px 14px; gap: var(--s-3); }
  .nav__links { display: none; }
  .logo-main { font-size: 13px; }
  .logo-sub { font-size: 9.5px; }
  .nav__cta-pill { padding: 7px 14px; font-size: 12px; }

  #hero { padding-top: 100px; }

  .trust-bar__row { gap: var(--s-4); padding: var(--s-5); }
  .trust-bar__sep { display: none; }
  .trust-bar__num { font-size: 24px; }

  .hero__cta-stack { flex-direction: column; }
  .hero__cta-stack .btn { width: 100%; }

  .lead-form { padding: var(--s-6); }
  .lead-form__title { font-size: 20px; }

  .final-cta__box { padding: var(--s-9) var(--s-5); }
  .final-cta__grid { grid-template-columns: 1fr; }

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

/* =============================================================================
   19. MOTION REDUCED
   ============================================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* =============================================================================
   20. FADE-IN SCROLL OBSERVER
   ============================================================================= */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
