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

/* ============================================================
   BLOOMELOOM DESIGN SYSTEM v3.0 — "Wald & Licht"
   Creative Direction: Warm, Editorial, Premium-Coaching 2026
   ============================================================

   Inspiration: Matter of Form · The Class · Headspace 2026
   Farb-Konzept: Tiefer Wald + warmes Leinen + Gold-Akzent
   Typografie: Editorial Serif + Humanistisches Sans

   1. COLOR TOKENS (Primitive → Semantic → Component)
   2. TYPOGRAPHY SCALE
   3. SPACING SYSTEM
   4. BORDER RADIUS
   5. SHADOWS
   6. TRANSITIONS & EASING
   7. Z-INDEX
   8. COMPONENT TOKENS
   ============================================================ */

:root {

  /* ----------------------------------------------------------
     1. COLOR TOKENS
  ---------------------------------------------------------- */

  /* PRIMITIVE: Tiefer Wald (Forest)
     Satter, reifer als vorher — kein helles Minzgrün,
     sondern alter Mischwald. Schafft Tiefe + Vertrauen.
  */
  --color-forest-950: #0C1A13;
  --color-forest-900: #172B20;
  --color-forest-800: #1E3829;
  --color-forest-700: #274D39;
  --color-forest-600: #30624A;   /* HAUPTMARKE */
  --color-forest-500: #487A61;
  --color-forest-400: #6A9B83;
  --color-forest-300: #96BBA8;
  --color-forest-200: #C4D9CE;
  --color-forest-100: #DFECe5;
  --color-forest-50:  #EEF5F1;
  --color-forest-25:  #F4F9F6;

  /* PRIMITIVE: Warmes Leinen (Stone/Linen)
     Ersetzt die kühlen Mintgrün-Hintergründe.
     Fühlt sich an wie hochwertiges Notizbuchpapier.
  */
  --color-linen-900: #1C1A16;
  --color-linen-700: #4A4540;
  --color-linen-500: #8A8480;
  --color-linen-300: #C8C2BA;
  --color-linen-200: #DDD8D0;
  --color-linen-100: #EDE8E1;
  --color-linen-50:  #F6F2EB;
  --color-linen-25:  #FDFAF6;   /* Körper-Hintergrund */

  /* PRIMITIVE: Warmgold (Messing)
     Ersetzt Terracotta. Nobler, weniger orange.
     Referenz: Notizbuch-Goldprägung.
  */
  --color-gold-800:  #7A6130;
  --color-gold-600:  #A88A48;
  --color-gold-500:  #C4A460;   /* AKZENT */
  --color-gold-300:  #DCC898;
  --color-gold-100:  #F0E8D0;
  --color-gold-50:   #FAF5E8;

  /* SEMANTIC: Hintergründe (warm statt kühl-mintgrün) */
  --bg:        var(--color-linen-25);   /* Haupt-Seitenhintergrund */
  --bg-warm:   var(--color-linen-50);   /* Hero, abgesetzte Sections */
  --bg-card:   var(--color-linen-100);  /* Card-Hintergrund */
  --bg-forest: var(--color-forest-25);  /* Dezenter Grün-Schimmer */

  /* SEMANTIC: Markenfarben */
  --green:       var(--color-forest-600);  /* Primary Brand */
  --green-dark:  var(--color-forest-800);  /* Dark / Headlines */
  --green-mid:   var(--color-forest-500);  /* Medium / Hover */
  --green-pale:  var(--color-forest-200);  /* Borders / Divider */
  --green-ultra: var(--color-forest-50);   /* Sehr helles Grün */

  /* SEMANTIC: Akzent */
  --accent:      var(--color-gold-500);
  --accent-pale: var(--color-gold-50);

  /* SEMANTIC: Text
     Warm-dunkel (leichter Grün-Undertone) statt reines Schwarz.
  */
  --text:        #1A2E22;   /* Haupt-Fließtext — fast schwarz, grün-warm */
  --text-light:  #3E5B4A;   /* Sekundärer Text */
  --text-muted:  #566E5E;   /* abgedunkelt → WCAG-AA (≈4,6:1 auf Leinen). War #6A8A76 (≈3,4:1, durchgefallen) */
  --white:       #FFFFFF;

  /* SEMANTIC: Aliases für Legacy-Code */
  --accent-pale: var(--color-gold-50);

  /* SEMANTIC: Status */
  --color-success: var(--color-forest-600);
  --color-warning: var(--color-gold-500);
  --color-error:   #C0392B;

  /* ----------------------------------------------------------
     2. TYPOGRAPHY SYSTEM
     Zwei Familien statt drei — klarer, konsistenter.
     
     DISPLAY: Playfair Display  — editorial, warm, serif
              Headlines, Zitate, Accent-Italic
     BODY:    DM Sans           — humanistisch, lesbar, modern
              Fließtext, Navigation, Buttons, Labels
              Ersetzt Inter (zu technisch/neutral für Coaching)
  ---------------------------------------------------------- */

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'DM Sans', 'Inter', system-ui, -apple-system, sans-serif;

  /* FLUID TYPE — mobile → desktop via clamp()
     Basiert auf 1.25 Major Third Scale
  */
  --text-2xs:  0.68rem;    /*  11px — Badges, Overlines */
  --text-xs:   0.75rem;    /*  12px — Tags, Timestamps */
  --text-sm:   0.82rem;    /*  13px — Captions, Labels */
  --text-base: 0.9375rem;  /*  15px — Default Fließtext */
  --text-md:   1rem;       /*  16px — Etwas größer */
  --text-lg:   1.125rem;   /*  18px — Lead Text */
  --text-xl:   1.25rem;    /*  20px — Small Headlines */
  --text-2xl:  clamp(1.4rem,  2.2vw, 1.75rem);   /* 22–28px */
  --text-3xl:  clamp(1.75rem, 3vw,   2.4rem);    /* 28–38px */
  --text-4xl:  clamp(2.2rem,  4vw,   3.2rem);    /* 35–51px */
  --text-5xl:  clamp(2.8rem,  5vw,   4.4rem);    /* 45–70px */

  /* FONT WEIGHTS */
  --font-light:    300;
  --font-regular:  400;
  --font-medium:   500;
  --font-semibold: 600;
  --font-bold:     700;

  /* LINE HEIGHTS */
  --leading-none:    1.0;
  --leading-tight:   1.15;
  --leading-snug:    1.35;
  --leading-normal:  1.65;
  --leading-relaxed: 1.82;
  --leading-loose:   2.0;

  /* LETTER SPACING */
  --tracking-tight:   -0.015em;
  --tracking-normal:   0em;
  --tracking-wide:     0.025em;
  --tracking-wider:    0.06em;
  --tracking-widest:   0.14em;
  --tracking-overline: 0.12em;  /* Für Section Labels */

  /* ----------------------------------------------------------
     3. SPACING SYSTEM — 4px-Grid
  ---------------------------------------------------------- */

  --space-px:  1px;
  --space-1:   4px;
  --space-2:   8px;
  --space-3:   12px;
  --space-4:   16px;
  --space-5:   20px;
  --space-6:   24px;
  --space-7:   28px;
  --space-8:   32px;
  --space-9:   36px;
  --space-10:  40px;
  --space-12:  48px;
  --space-14:  56px;
  --space-16:  64px;
  --space-18:  72px;
  --space-20:  80px;
  --space-24:  96px;
  --space-28:  112px;
  --space-32:  128px;

  /* Semantic Section Spacing */
  --section-pad-x:    clamp(24px, 5vw, 64px);
  --section-pad-y:    clamp(48px, 6vw, 80px);
  --section-pad-y-sm: clamp(36px, 4vw, 60px);

  --card-pad:    var(--space-8);
  --card-pad-lg: var(--space-14);

  /* ----------------------------------------------------------
     4. BORDER RADIUS — Organisch aber kontrolliert
     Weniger aggressiv gerundet als v2 — editorialer Eindruck
  ---------------------------------------------------------- */

  --radius-xs:   6px;
  --radius-sm:   12px;
  --radius-md:   18px;
  --radius-lg:   24px;    /* war 28px — leicht reduziert */
  --radius-xl:   36px;
  --radius-2xl:  48px;
  --radius-full: 9999px;

  /* Legacy alias */
  --radius: var(--radius-lg);

  /* ----------------------------------------------------------
     5. SHADOWS — Wärmer, weniger grün-tintiert
     Referenz: Hochwertige Print-Objekte werfen weiche Schatten
  ---------------------------------------------------------- */

  --shadow-xs: 0 1px 3px  rgba(26,44,34,0.06), 0 1px 2px rgba(26,44,34,0.04);
  --shadow-sm: 0 2px 8px  rgba(26,44,34,0.07), 0 1px 3px rgba(26,44,34,0.04);
  --shadow-md: 0 8px 28px rgba(26,44,34,0.10), 0 2px 8px rgba(26,44,34,0.05);
  --shadow-lg: 0 20px 56px rgba(26,44,34,0.13), 0 4px 16px rgba(26,44,34,0.06);
  --shadow-xl: 0 36px 80px rgba(26,44,34,0.16), 0 8px 24px rgba(26,44,34,0.08);

  /* Farbige Schatten für Buttons */
  --shadow-green:  0 8px 28px rgba(48,98,74,0.32), 0 2px 8px rgba(48,98,74,0.18);
  --shadow-gold:   0 8px 28px rgba(196,164,96,0.30);

  /* ----------------------------------------------------------
     6. TRANSITIONS & EASING
  ---------------------------------------------------------- */

  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);    /* Smooth deceleration */
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);    /* Balanced */
  --ease-spring: var(--ease-out); /* Playful spring */
  --ease-linear: linear;

  --dur-instant: 80ms;
  --dur-fast:    160ms;
  --dur-base:    240ms;
  --dur-slow:    380ms;
  --dur-slower:  600ms;
  --dur-anim:    900ms;

  --transition-colors: color var(--dur-base) var(--ease-in-out),
                       background-color var(--dur-base) var(--ease-in-out),
                       border-color var(--dur-base) var(--ease-in-out);
  --transition-base:   all var(--dur-base) var(--ease-in-out);
  --transition-slow:   all var(--dur-slow) var(--ease-out);

  /* ----------------------------------------------------------
     7. Z-INDEX — Klar benannte Ebenen
  ---------------------------------------------------------- */

  --z-below:    -1;
  --z-base:      0;
  --z-raised:   10;
  --z-dropdown: 100;
  --z-sticky:   200;
  --z-overlay:  300;
  --z-modal:    400;
  --z-toast:    500;

  /* ----------------------------------------------------------
     8. COMPONENT TOKENS
     Gebündelte Werte pro Komponente für schnelle Anpassung
  ---------------------------------------------------------- */

  /* NAV */
  --nav-height:        68px;
  --nav-height-scroll: 54px;
  --nav-bg:            rgba(253,250,246,0.92);   /* warmes Linen-Glas */
  --nav-border:        rgba(200,194,186,0.45);    /* warme Trennlinie */

  /* BUTTONS — Pillenform, klare Hierarchie */
  --btn-radius:      var(--radius-full);
  --btn-pad-y:       13px;
  --btn-pad-x:       28px;
  --btn-pad-y-sm:    9px;
  --btn-pad-x-sm:    18px;
  --btn-font-size:   var(--text-base);
  --btn-weight:      var(--font-semibold);
  --btn-tracking:    var(--tracking-wide);

  /* Legacy aliases */
  --btn-padding-y:    var(--btn-pad-y);
  --btn-padding-x:    var(--btn-pad-x);
  --btn-padding-y-sm: var(--btn-pad-y-sm);
  --btn-padding-x-sm: var(--btn-pad-x-sm);

  /* CARDS */
  --card-radius:  var(--radius-lg);
  --card-bg:      var(--white);
  --card-border:  1px solid var(--color-linen-200);  /* warm, kein grün */
  --card-shadow:  var(--shadow-sm);

  /* BLOG */
  --blog-img-ratio: 3/2;

  /* FORMS */
  --input-radius: var(--radius-sm);
  --input-border: 1.5px solid var(--color-linen-300);
  --input-bg:     var(--white);
  --input-focus:  var(--green);

  /* SECTION WRAPS */
  --wrap-radius:   var(--radius-lg);
  --wrap-margin-x: clamp(16px, 4vw, 48px);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}

/* ========== NAV ========== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-sticky);
  padding: 14px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--nav-bg);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid var(--nav-border);
  transition: padding 0.3s, box-shadow 0.3s;
}

nav.scrolled {
  padding: 10px 48px;
  box-shadow: var(--shadow-sm);
}

.nav-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-mark {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--green-dark);
  font-weight: var(--font-light);
  letter-spacing: 0.01em;
  line-height: 1;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-light);
  font-size: 0.87rem;
  font-weight: var(--font-medium);
  letter-spacing: 0.02em;
  transition: color 0.25s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1.5px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a:hover, .nav-links a.active { color: var(--green); }

.nav-cta {
  background: var(--green) !important;
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  transition: background 0.3s !important, transform 0.2s !important, box-shadow 0.3s !important;
  letter-spacing: 0.01em !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--green-dark) !important; transform: translateY(-1px); box-shadow: var(--shadow-green) !important; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--green); border-radius: 2px; transition: var(--transition-base); }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: var(--btn-padding-y) var(--btn-padding-x);
  border-radius: var(--btn-radius);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-weight);
  text-decoration: none; cursor: pointer; border: none;
  transition: var(--transition-base);
  letter-spacing: var(--tracking-wide);
  font-family: var(--font-body);
}
.btn-sm {
  padding: var(--btn-padding-y-sm) var(--btn-padding-x-sm);
  font-size: var(--text-sm);
}

/* PRIMARY — Tiefer Wald, warmer Hover */
.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 2px 0 var(--green-dark), var(--shadow-xs);
}
.btn-primary:hover {
  background: var(--color-forest-700);
  transform: translateY(-2px);
  box-shadow: 0 2px 0 var(--color-forest-900), var(--shadow-green);
}
.btn-primary:active { transform: translateY(0); box-shadow: 0 1px 0 var(--green-dark); }

/* OUTLINE — eleganter Rahmen */
.btn-outline {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

/* ACCENT — Warmgold für CTA-Variation */
.btn-accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 2px 0 var(--color-gold-800), var(--shadow-xs);
}
.btn-accent:hover {
  background: var(--color-gold-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* WHITE — für dunkle Hintergründe */
.btn-white {
  background: var(--white);
  color: var(--green-dark);
  font-weight: var(--font-semibold);
}
.btn-white:hover {
  background: var(--color-linen-25);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* GHOST — transparent auf Bild/dunkel */
.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(12px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.45);
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  padding: 130px 48px 80px;
  position: relative;
  overflow: hidden;
  background: var(--bg-warm);
}

.hero-blob-1 {
  position: absolute; top: -150px; right: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--color-forest-100) 0%, transparent 68%);
  border-radius: 50%; pointer-events: none; animation: float 8s ease-in-out infinite;
}

.hero-blob-2 {
  position: absolute; bottom: -100px; left: 200px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--color-gold-100) 0%, transparent 68%);
  border-radius: 50%; pointer-events: none; animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-24px) scale(1.04); }
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--color-linen-100);
  border: 1px solid var(--color-linen-300);
  border-radius: var(--radius-full); padding: 7px 16px;
  font-size: var(--text-2xs); font-weight: var(--font-semibold);
  letter-spacing: var(--tracking-overline); text-transform: uppercase;
  color: var(--green-mid); margin-bottom: 24px;
}

.hero-eyebrow-dot { width: 7px; height: 7px; background: var(--green); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }

@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(0.85); } }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: var(--font-regular); line-height: 1.12;
  margin-bottom: 24px; color: var(--text);
}

.hero h1 em {
  font-family: var(--font-display);
  font-style: italic; font-weight: var(--font-light); color: var(--green);
}

.hero-sub {
  font-size: 1.05rem; color: var(--text-light);
  margin-bottom: 40px; max-width: 440px; line-height: 1.85;
}

.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-bottom: 48px; }

.hero-proof {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-linen-200);
  box-shadow: var(--shadow-sm);
  max-width: 380px;
}

.proof-avatars { display: flex; }
.proof-avatars img { width: 34px; height: 34px; border-radius: 50%; border: 2.5px solid var(--white); object-fit: cover; margin-left: -10px; }
.proof-avatars img:first-child { margin-left: 0; }
/* Initialen-Avatare statt Stock-Fotos (Authentizität) */
.avatar-initials { width: 34px; height: 34px; border-radius: 50%; border: 2.5px solid var(--white); margin-left: -10px; display: inline-flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 700; color: var(--white); background: var(--green-mid); }
.proof-avatars .avatar-initials:first-child { margin-left: 0; }
.testimonial-avatar .avatar-initials { width: 72px; height: 72px; border: 3px solid var(--green-pale); font-size: 1.4rem; margin-left: 0; }

.proof-text { }
.proof-stars { color: var(--color-gold-500); font-size: 0.82rem; margin-bottom: 2px; }
.proof-text p { font-size: 0.8rem; color: var(--text-light); line-height: 1.4; }
.proof-text strong { color: var(--text); }

.hero-image { position: relative; z-index: var(--z-raised); }

.hero-image-main {
  width: 100%; border-radius: var(--radius);
  object-fit: cover; aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}

.hero-float-1 {
  position: absolute; bottom: 40px; left: -32px;
  background: var(--white); border-radius: var(--radius-md); padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
  animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-float-1-icon { width: 44px; height: 44px; background: var(--green-ultra); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.hero-float-1 strong { display: block; font-size: 0.88rem; color: var(--text); }
.hero-float-1 span { font-size: 0.75rem; color: var(--text-light); }

.hero-float-2 {
  position: absolute; top: 32px; right: -24px;
  background: var(--green); border-radius: 18px; padding: 14px 18px;
  box-shadow: 0 8px 28px rgba(74,124,89,0.35); text-align: center;
  animation: floatCard 7s ease-in-out infinite reverse;
}

.hero-float-2 strong { display: block; font-size: 1.5rem; color: var(--white); font-family: var(--font-display); }
.hero-float-2 span { font-size: 0.75rem; color: rgba(255,255,255,0.8); }

/* ========== TRUST BAR ========== */
.trust-bar {
  background: var(--color-forest-900);
  padding: 18px 48px;
  display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap;
}

.trust-item { display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,0.88); font-size: 0.86rem; font-weight: var(--font-medium); }
.trust-icon { font-size: 1rem; }
.trust-divider { width: 1px; height: 20px; background: rgba(255,255,255,0.2); }

/* ========== SECTIONS ========== */
section { padding: var(--section-pad-y) var(--section-pad-x); }

.section-label {
  font-size: var(--text-2xs);
  letter-spacing: var(--tracking-overline);
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 14px;
  font-weight: var(--font-semibold);
  font-family: var(--font-body);
  display: flex; align-items: center; gap: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px; height: 1.5px;
  background: var(--green-mid);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: var(--font-regular);
  line-height: 1.2; margin-bottom: 18px;
}

.section-title em { font-family: var(--font-display); font-style: italic; font-weight: var(--font-light); color: var(--green); }
.section-subtitle { color: var(--text-light); max-width: 560px; font-size: 1.02rem; line-height: 1.8; }

/* ========== INTRO ========== */
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.intro-img { position: relative; }
.intro-img img { width: 100%; border-radius: var(--radius); object-fit: cover; aspect-ratio: 3/4; box-shadow: var(--shadow-lg); }

.intro-float-card {
  position: absolute; bottom: -28px; right: -28px;
  background: var(--white); border-radius: var(--radius-md); padding: 20px 24px;
  box-shadow: var(--shadow-md); max-width: 200px;
}

.intro-float-card .stars { color: var(--color-gold-500); font-size: 0.9rem; margin-bottom: 8px; }
.intro-float-card p { font-size: 0.82rem; color: var(--text-light); line-height: 1.5; }
.intro-float-card strong { color: var(--text); }

.intro-text p { color: var(--text-light); margin-bottom: 18px; font-size: 1.02rem; }

.intro-highlight {
  background: var(--color-linen-50);
  border-left: 2px solid var(--accent);
  border-radius: 0 14px 14px 0;
  padding: 20px 24px; margin: 32px 0;
  font-family: var(--font-display);
  font-style: italic; font-size: 1.15rem;
  color: var(--text); line-height: 1.65;
}

/* ========== SERVICE CARDS ========== */
.services-wrap {
  background: var(--color-linen-25); border-radius: var(--radius);
  margin: 0 var(--wrap-margin-x); padding: var(--card-pad-lg) var(--space-16);
  border: 1px solid var(--color-linen-200);
}

.services-header { text-align: center; max-width: 560px; margin: 0 auto 56px; }
.services-header .section-label { justify-content: center; }
.services-header .section-label::before { display: none; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.service-card {
  background: var(--white); border-radius: var(--radius-md); padding: 36px 28px;
  border: 1px solid var(--color-linen-200);
  transition: all 0.4s var(--ease-out);
  position: relative; overflow: hidden; cursor: pointer;
}

.service-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--green-ultra), transparent);
  opacity: 0; transition: opacity 0.4s;
  border-radius: inherit;
}

.service-card:hover { border-color: var(--color-forest-300); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::after { opacity: 1; }

.service-icon {
  width: 52px; height: 52px;
  background: var(--color-linen-100); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; font-size: 1.5rem;
  transition: all 0.4s; position: relative; z-index: var(--z-raised);
}

.service-card:hover .service-icon { background: var(--color-forest-50); transform: rotate(-6deg) scale(1.08); }


.service-card h3 {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: var(--font-regular);
  margin-bottom: 10px; position: relative; z-index: var(--z-raised);
}

.service-card p { color: var(--text-light); font-size: 0.91rem; line-height: 1.75; margin-bottom: 20px; position: relative; z-index: var(--z-raised); }

.service-link {
  color: var(--green); font-size: 0.86rem; font-weight: var(--font-semibold);
  text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.3s; position: relative; z-index: var(--z-raised);
}
.service-card:hover .service-link { gap: 10px; }

/* ========== VIDEO SECTION ========== */
.video-section {
  background: var(--bg-warm); padding: var(--section-pad-y) var(--section-pad-x);
}

.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-top: 0; }

.video-text { }
.video-text p { color: var(--text-light); margin-bottom: 20px; font-size: 1.02rem; }

.video-feature-list { list-style: none; margin: 28px 0 36px; }
.video-feature-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0; color: var(--text-light); font-size: 0.93rem;
  border-bottom: 1px solid var(--green-pale);
}
.video-feature-list li:last-child { border-bottom: none; }
.video-check { width: 22px; height: 22px; background: var(--green-ultra); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--green); font-size: 0.7rem; flex-shrink: 0; margin-top: 2px; }

.video-player {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 16/9; box-shadow: var(--shadow-lg);
  cursor: pointer;
}

.video-player img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.video-player:hover img { transform: scale(1.04); }

.video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(47,89,64,0.1), rgba(47,89,64,0.6));
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 16px;
}

.play-btn {
  width: 72px; height: 72px;
  background: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--green);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}

.play-btn:hover { transform: scale(1.12); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }

.video-caption { color: var(--white); font-size: 0.88rem; font-weight: var(--font-semibold); text-shadow: 0 2px 8px rgba(0,0,0,0.3); }

.video-mini-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 16px; }

.video-mini {
  position: relative; border-radius: 14px; overflow: hidden;
  aspect-ratio: 16/9; cursor: pointer;
}

.video-mini img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.video-mini:hover img { transform: scale(1.06); }

.video-mini-overlay {
  position: absolute; inset: 0;
  background: rgba(47,89,64,0.5);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}

.video-mini:hover .video-mini-overlay { background: rgba(47,89,64,0.3); }

.play-mini { width: 40px; height: 40px; background: rgba(255,255,255,0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--green); }

.video-mini-title {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 10px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: var(--white); font-size: 0.75rem; font-weight: var(--font-semibold); line-height: 1.3;
}

/* ========== PROCESS ========== */
.process-wrap {
  background: linear-gradient(150deg, var(--color-forest-900) 0%, var(--color-forest-700) 100%);
  border-radius: var(--radius); margin: 0 48px; padding: 64px 64px;
  position: relative; overflow: hidden;
}

.process-wrap::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.05); border-radius: 50%;
}

.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; margin-top: 56px; position: relative;
}

.process-connector {
  position: absolute; top: 28px; left: 80px; right: 80px;
  height: 1px; background: rgba(255,255,255,0.15);
  display: flex; align-items: center;
}

.process-step { text-align: center; position: relative; }

.process-num {
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-family: var(--font-display); font-size: 1.2rem;
  color: var(--white); position: relative; z-index: var(--z-raised);
  transition: var(--transition-base);
}

.process-step:hover .process-num { background: rgba(255,255,255,0.25); transform: scale(1.1); }

.process-step h3 { font-size: 0.95rem; font-weight: var(--font-semibold); color: var(--white); margin-bottom: 8px; }
.process-step p { font-size: 0.83rem; color: rgba(255,255,255,0.65); line-height: 1.65; }

/* ========== STATS ========== */
.stats-wrap { background: var(--color-linen-50); border-radius: var(--radius); margin: 0 var(--wrap-margin-x); padding: var(--space-20) var(--space-16); border: 1px solid var(--color-linen-200); }

.stats-header { text-align: center; max-width: 560px; margin: 0 auto; }
.stats-header .section-label { justify-content: center; }
.stats-header .section-label::before { display: none; }

.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; margin-top: 56px; }

.stat-item { text-align: center; }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4rem); font-weight: var(--font-regular);
  color: var(--color-forest-700); line-height: 1; margin-bottom: 12px;
  display: block;
}

.stat-label { font-size: 1rem; font-weight: var(--font-semibold); color: var(--text); margin-bottom: 8px; }
.stat-item p { color: var(--text-light); font-size: 0.86rem; line-height: 1.65; max-width: 220px; margin: 0 auto; }

/* ========== TESTIMONIALS ========== */
.testimonials-wrap { background: var(--color-linen-25); border-top: 1px solid var(--color-linen-200); }

.testimonial-slider { margin-top: 56px; }
.testimonial-track { overflow: hidden; }

.testimonial-slide { display: none; }
.testimonial-slide.active { display: grid; grid-template-columns: auto 1fr; gap: 40px; align-items: start; }

.testimonial-avatar img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; border: 3px solid var(--green-pale); }

.testimonial-stars { color: var(--color-gold-500); font-size: 0.85rem; margin-bottom: 14px; letter-spacing: 3px; }

.testimonial-text {
  font-family: var(--font-display); font-size: 1.25rem; font-style: italic;
  line-height: 1.72; margin-bottom: 22px; color: var(--text);
  font-weight: var(--font-regular);
}

.testimonial-author strong { font-size: 0.92rem; font-weight: var(--font-semibold); display: block; margin-bottom: 2px; font-family: var(--font-body); }
.testimonial-author span { color: var(--text-light); font-size: 0.83rem; }

.slider-controls { display: flex; gap: 12px; margin-top: 28px; align-items: center; }

.slider-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--color-linen-300); background: transparent;
  color: var(--green); font-size: 1rem; cursor: pointer;
  transition: var(--transition-base); display: flex; align-items: center; justify-content: center;
}

.slider-btn:hover { background: var(--green); color: var(--white); border-color: var(--green); transform: scale(1.05); }

.slider-dots { display: flex; gap: 8px; margin-left: 8px; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-pale); cursor: pointer; transition: var(--transition-base); border: none; }
.slider-dot.active { background: var(--green); width: 24px; border-radius: 4px; }

/* ========== BLOG ========== */
.blog-section { padding: var(--section-pad-y) var(--section-pad-x); }

.blog-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; flex-wrap: wrap; gap: 20px; }

.blog-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px; }

.blog-card {
  background: var(--white); border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--color-linen-200);
  transition: all var(--dur-slow) var(--ease-out);
  text-decoration: none; color: inherit; display: block;
}

.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--color-forest-300); }

.blog-img { position: relative; overflow: hidden; aspect-ratio: 3/2; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-img img { transform: scale(1.06); }

.blog-tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,0.92); border-radius: var(--radius-full); padding: 4px 12px;
  font-size: var(--text-xs); font-weight: var(--font-semibold); letter-spacing: var(--tracking-wider); text-transform: uppercase;
  color: var(--text-light);
  backdrop-filter: blur(8px);
}

.blog-body { padding: 24px 24px 28px; }

.blog-meta { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 10px; display: flex; gap: 14px; }

.blog-card h3 { font-family: var(--font-display); font-size: 1.12rem; font-weight: var(--font-regular); line-height: 1.4; margin-bottom: 10px; transition: color 0.3s; }
.blog-card:hover h3 { color: var(--green); }

.blog-card p { color: var(--text-light); font-size: 0.86rem; line-height: 1.7; margin-bottom: 18px; }

.blog-read-more { color: var(--green); font-size: 0.84rem; font-weight: var(--font-semibold); display: inline-flex; align-items: center; gap: 6px; transition: gap 0.3s; }
.blog-card:hover .blog-read-more { gap: 10px; }

/* ========== FAQ ========== */
.faq-list { margin-top: 56px; max-width: 720px; }
.faq-item { border-bottom: 1px solid var(--green-pale); overflow: hidden; }

.faq-question {
  width: 100%; background: none; border: none; padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between;
  text-align: left; font-size: 1rem; font-weight: var(--font-medium);
  color: var(--text); cursor: pointer; gap: 16px;
  font-family: var(--font-body); transition: color 0.3s;
}

.faq-question:hover { color: var(--green); }

.faq-icon {
  width: 28px; height: 28px; border: 1.5px solid var(--green-pale);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--green); font-size: 1rem; transition: all 0.35s;
}

.faq-item.open .faq-icon { background: var(--green); color: var(--white); border-color: var(--green); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.45s ease; }
.faq-answer-inner { padding: 0 0 22px; color: var(--text-light); line-height: 1.85; font-size: 0.94rem; }

/* ========== CTA BANNER ========== */
.cta-banner {
  background: linear-gradient(150deg, var(--color-forest-900) 0%, var(--color-forest-700) 100%);
  border-radius: var(--radius); margin: 0 48px; padding: 72px 80px;
  text-align: center; color: var(--white); position: relative; overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: rgba(255,255,255,0.04); border-radius: 50%;
}

.cta-banner::after {
  content: '';
  position: absolute; bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.03); border-radius: 50%;
}

.cta-banner h2 {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: var(--font-regular); margin-bottom: 16px; position: relative; z-index: var(--z-raised);
}

.cta-banner h2 em { font-style: italic; font-weight: var(--font-light); }
.cta-banner p { color: rgba(255,255,255,0.82); margin-bottom: 36px; font-size: 1.05rem; position: relative; z-index: var(--z-raised); max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-banner .btn { position: relative; z-index: var(--z-raised); }

.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: var(--z-raised); }

/* ========== INNER PAGE HERO ========== */
.page-hero {
  padding: 120px 48px 60px; text-align: center;
  max-width: 700px; margin: 0 auto;
}

.page-hero h1 { margin-bottom: 16px; }
.page-hero p { color: var(--text-light); font-size: 1.05rem; max-width: 520px; margin: 0 auto; }

/* ========== PROFILE ========== */
.profile-section { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.profile-img-wrap { position: relative; }
.profile-img-wrap img { width: 100%; border-radius: var(--radius); object-fit: cover; aspect-ratio: 3/4; box-shadow: var(--shadow-lg); }

.profile-badge {
  position: absolute; top: 28px; right: -24px;
  background: var(--white); border-radius: 18px; padding: 14px 20px;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 10px; font-size: 0.85rem;
}

.profile-badge .stars { color: var(--accent); }
.profile-badge strong { display: block; font-size: 0.8rem; }
.profile-badge span { color: var(--text-light); font-size: 0.75rem; }
.profile-text p { color: var(--text-light); margin-bottom: 18px; font-size: 1.02rem; }

/* ========== GALLERY ========== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.gallery-grid img { width: 100%; border-radius: var(--radius-md); object-fit: cover; aspect-ratio: 1; transition: transform 0.5s, box-shadow 0.5s; }
.gallery-grid img:hover { transform: scale(1.04); box-shadow: var(--shadow-lg); }
.gallery-grid img:first-child { grid-row: span 2; aspect-ratio: auto; }

/* ========== VALUES ========== */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 48px; }

.value-card {
  background: var(--white); border: 1.5px solid var(--green-pale);
  border-radius: 22px; padding: 32px 26px; text-align: center;
  transition: all 0.35s var(--ease-out);
}

.value-card:hover { border-color: var(--green); transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-card .value-icon { width: 48px; height: 48px; border-radius: 14px; background: var(--color-linen-100); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; transition: background var(--dur-base); }
.value-card:hover .value-icon { background: var(--color-forest-50); }
.value-card .value-icon .line-icon { width: 24px; height: 24px; }
.value-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: var(--font-regular); margin-bottom: 10px; }
.value-card p { color: var(--text-light); font-size: 0.87rem; line-height: 1.7; }

/* ========== CONTACT ========== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

.form-group { margin-bottom: var(--space-5); }
.form-group label { display: block; font-size: var(--text-sm); font-weight: var(--font-semibold); margin-bottom: var(--space-2); color: var(--text); letter-spacing: var(--tracking-wide); }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: var(--space-4) var(--space-5);
  border: var(--input-border); border-radius: var(--input-radius);
  background: var(--input-bg); font-family: var(--font-body);
  font-size: var(--text-md); color: var(--text);
  transition: var(--transition-colors); outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--input-focus);
  box-shadow: 0 0 0 4px rgba(74,124,89,0.1);
}

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

.contact-info h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: var(--font-regular); margin-bottom: 12px; }
.contact-info > p { color: var(--text-light); margin-bottom: 32px; }
.contact-detail { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; color: var(--text-light); font-size: 0.93rem; }
.contact-detail-icon { width: 40px; height: 40px; background: var(--bg-card); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--green); flex-shrink: 0; }

/* ========== ANGEBOTE ========== */
.angebot-section { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 100px; }
.angebot-section.reverse { direction: rtl; }
.angebot-section.reverse > * { direction: ltr; }
.angebot-img img { width: 100%; border-radius: var(--radius); object-fit: cover; aspect-ratio: 4/3; box-shadow: var(--shadow-lg); }
.angebot-content h2 { margin-bottom: 14px; }
.angebot-content > p { color: var(--text-light); margin-bottom: 16px; }
.angebot-list { list-style: none; margin-bottom: 32px; }
.angebot-list li { padding: 10px 0; border-bottom: 1px solid var(--green-pale); display: flex; align-items: center; gap: 12px; color: var(--text-light); font-size: 0.93rem; }
.angebot-list li::before { content: '✦'; color: var(--green); font-size: 0.7rem; flex-shrink: 0; }

/* ========== BLOG PAGE ========== */
.blog-hero { padding: 120px 48px 44px; text-align: center; }
.blog-filters { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }
.filter-btn { padding: 8px 20px; border-radius: var(--radius-full); border: 1.5px solid var(--green-pale); background: transparent; color: var(--text-light); font-size: 0.85rem; font-weight: var(--font-semibold); cursor: pointer; transition: var(--transition-base); font-family: var(--font-body); }
.filter-btn.active, .filter-btn:hover { background: var(--green); color: var(--white); border-color: var(--green); }

.blog-grid-full { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; padding: 0 48px 100px; }

/* ========== FOOTER ========== */
footer { padding: 72px 48px 40px; border-top: 1px solid var(--green-pale); background: var(--bg-warm); }

.footer-inner { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 48px; margin-bottom: 48px; }

.footer-logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; text-decoration: none; }
.footer-logo-mark { width: 28px; height: 28px; }
.footer-logo-text { font-family: var(--font-script); font-style: italic; font-size: 1.4rem; color: var(--green-dark); font-weight: var(--font-light); }

.footer-brand p { color: var(--text-light); font-size: 0.87rem; max-width: 230px; line-height: 1.75; }

.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-link { width: 42px; height: 42px; border: 1px solid var(--green-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--green); text-decoration: none; transition: var(--transition-base); }
.social-link svg { width: 18px; height: 18px; fill: currentColor; }
.social-link:hover { background: var(--green); color: var(--white); border-color: var(--green); transform: translateY(-2px); }

.footer-col h4 { font-size: 0.76rem; font-weight: var(--font-bold); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; color: var(--text); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: var(--text-light); text-decoration: none; font-size: 0.88rem; transition: color 0.3s; }
.footer-col ul a:hover { color: var(--green); }

.footer-bottom { padding-top: 24px; border-top: 1px solid var(--green-pale); display: flex; justify-content: space-between; align-items: center; color: var(--text-muted); font-size: 0.8rem; }

/* ========== NAV LOGO IMG ========== */
.nav-logo-img { height: 56px; width: auto; max-width: 300px; object-fit: contain; }
.footer-logo-img { height: 52px; width: auto; max-width: 280px; object-fit: contain; }

/* ========== PROBLEM LIST ========== */
.problem-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 24px 0 28px;
}
.problem-item {
  display: flex; align-items: center; gap: 10px;
  background: var(--white); border: 1px solid var(--green-pale);
  border-radius: 12px; padding: 10px 14px;
  font-size: 0.88rem; color: var(--text-light); font-weight: var(--font-medium);
  transition: var(--transition-base);
}
.problem-item:hover { border-color: var(--green); color: var(--text); transform: translateY(-2px); }
.problem-item span { font-size: 1.1rem; }

/* ========== USP ROW ========== */
.usp-row {
  display: flex; gap: 24px; margin: 28px 0 32px;
  padding: 20px 24px; background: var(--bg-card);
  border-radius: var(--radius-sm);
}
.usp-item { text-align: center; flex: 1; }
.usp-item strong { display: block; font-size: 1.4rem; font-family: var(--font-display); color: var(--green); margin-bottom: 4px; }
.usp-item span { font-size: 0.78rem; color: var(--text-light); font-weight: var(--font-medium); }

/* ========== BLOG SVG IMAGES ========== */
.blog-img {
  background: var(--bg-card);
}
.blog-img img[src$=".svg"] {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.article-hero-img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  display: block;
}
img[src$=".svg"] {
  background: var(--bg-card);
}

/* ========== ANIMATIONS ========== */
.fade-in { opacity: 0; transform: translateY(36px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

.slide-left { opacity: 0; transform: translateX(-48px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.slide-left.visible { opacity: 1; transform: translateX(0); }

.slide-right { opacity: 0; transform: translateX(48px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.slide-right.visible { opacity: 1; transform: translateX(0); }

.scale-in { opacity: 0; transform: scale(0.88); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.scale-in.visible { opacity: 1; transform: scale(1); }

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.22s; }
.fade-in-delay-3 { transition-delay: 0.34s; }
.fade-in-delay-4 { transition-delay: 0.46s; }
.fade-in-delay-5 { transition-delay: 0.58s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-connector { display: none; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid-full { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  nav { padding: 14px 24px; }
  .nav-links { display: none; flex-direction: column; gap: 0; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg-warm); padding: 16px 24px 24px; border-bottom: 1px solid var(--green-pale); box-shadow: var(--shadow-md); z-index: var(--z-dropdown); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; display: block; border-bottom: 1px solid rgba(74,124,89,0.08); }
  .nav-toggle { display: flex; padding: 10px; }
  /* Logo auf Tablet verkleinern */
  .nav-logo-img { height: 44px; max-width: 240px; }
  .footer-logo-img { height: 44px; }
  /* Hero-Buttons auf Tablet umbrechen */
  .hero-actions { flex-wrap: wrap; gap: 12px; }

  section { padding: 52px 24px; }
  .hero { padding: 100px 24px 64px; }

  .services-wrap { margin: 0 24px; padding: 44px 32px; }
  .process-wrap { margin: 0 24px; padding: 44px 32px; }
  .stats-wrap { margin: 0 24px; padding: 44px 32px; }
  .cta-banner { margin: 0 24px; padding: 52px 36px; }

  .intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .profile-section { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .angebot-section { grid-template-columns: 1fr; }
  .angebot-section.reverse { direction: ltr; }

  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-grid img:first-child { grid-row: span 1; aspect-ratio: 1; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .blog-section { padding: 52px 24px; }
  .blog-hero { padding: 88px 24px 28px; }
  .blog-grid-full { grid-template-columns: 1fr; padding: 0 24px 64px; }

  .stats-grid { grid-template-columns: 1fr; gap: 36px; }
  .testimonial-slide.active { grid-template-columns: 1fr; gap: 20px; }
  .page-hero { padding: 100px 24px 48px; }
  footer { padding: 48px 24px 32px; }
  .trust-bar { padding: 14px 24px; gap: 20px; }
}

@media (max-width: 640px) {
  /* Typografie */
  .hero h1 { font-size: 2rem; }
  .section-title { font-size: 1.7rem; }
  .page-hero h1 { font-size: 2rem; }
  .page-hero p { font-size: 0.95rem; }

  /* Logo: deutlich kleiner auf Mobile */
  .nav-logo-img { height: 38px; max-width: 200px; }
  .footer-logo-img { height: 38px; max-width: 200px; }

  /* Navigation */
  .nav-toggle { padding: 10px; }

  /* Hero */
  .hero { padding: 90px 20px 56px; gap: 24px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-actions .btn { justify-content: center; width: 100%; }
  .hero-proof { flex-direction: column; gap: 10px; align-items: flex-start; }
  .hero-float-1, .hero-float-2 { display: none; }

  /* Grids */
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 24px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-hero { padding: 100px 20px 32px; }
  .blog-filters { margin-bottom: 32px; }
  .blog-grid-full { grid-template-columns: 1fr; padding: 0 20px 48px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .video-mini-grid { grid-template-columns: 1fr; }

  /* Trust Bar */
  .trust-bar { flex-wrap: wrap; gap: 10px; justify-content: flex-start; padding: 12px 20px; }
  .trust-divider { display: none; }
  .trust-item { font-size: 0.8rem; }

  /* Sections & Cards */
  section { padding: 40px 20px; }
  .services-wrap { margin: 0 16px; padding: 32px 20px; }
  .process-wrap { margin: 0 16px; padding: 32px 20px; }
  .stats-wrap { margin: 0 16px; padding: 32px 20px; }
  .cta-banner { margin: 0 16px; padding: 40px 24px; }
  .cta-banner h2 { font-size: 1.8rem; }
  .cta-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .cta-actions .btn { justify-content: center; width: 100%; }

  /* Preisblock (3 Spalten → 1 Spalte) */
  .preise-grid { grid-template-columns: 1fr !important; }

  /* Über-mich Section mit inline margin/padding */
  section[style*="margin:0 48px"],
  section[style*="margin: 0 48px"] { margin: 0 16px !important; padding: 48px 20px !important; }

  /* Page Hero */
  .page-hero { padding: 88px 20px 40px; }

  /* Angebote */
  .angebot-section { gap: 32px; }
  .angebot-img { max-height: 280px; overflow: hidden; border-radius: var(--radius); }
  .angebot-img img { height: 280px; object-fit: cover; }

  /* Blog Karten */
  .blog-img { aspect-ratio: 16/9; }
  .blog-img img { width: 100%; height: 100%; object-fit: cover; }

  /* Footer */
  footer { padding: 40px 20px 24px; }
  .footer-social { gap: 8px; }
  .social-link { width: 38px; height: 38px; }

  /* Kontakt */
  .contact-grid { gap: 40px; }

  /* Testimonial */
  .testimonial-wrap { padding: 48px 20px; }
  .slider-controls { gap: 8px; }
}

/* ========== FORM CHECK (DSGVO) ========== */
.form-check { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 16px; }
.form-check input[type="checkbox"] { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--green); flex-shrink: 0; cursor: pointer; }
.form-check label { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; cursor: pointer; }
.form-check label a { color: var(--green); text-decoration: underline; }

/* ========== PREFERS REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .fade-in, .slide-left, .slide-right, .scale-in {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ========== ZIELGRUPPEN-SELEKTOR (Hero-Pfade) ========== */
.audience-selector {
  padding: var(--section-pad-y-sm) var(--section-pad-x) 0;
  max-width: 1100px; margin: 0 auto;
}
.audience-head { text-align: center; max-width: 580px; margin: 0 auto 36px; }
.audience-head .section-label { justify-content: center; }
.audience-head .section-label::before { display: none; }
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.audience-card {
  display: block; text-decoration: none; color: inherit;
  background: var(--white); border: 1px solid var(--color-linen-200);
  border-radius: var(--radius-md); padding: 30px 26px;
  transition: all var(--dur-slow) var(--ease-out); position: relative;
}
.audience-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-lg);
  border-color: var(--color-forest-300);
}
.audience-icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: var(--color-linen-100); display: flex; align-items: center;
  justify-content: center; font-size: 1.4rem; margin-bottom: 18px;
  transition: background var(--dur-base);
}
.audience-card:hover .audience-icon { background: var(--color-forest-50); }
.audience-card .who {
  font-size: var(--text-2xs); letter-spacing: var(--tracking-overline);
  text-transform: uppercase; color: var(--green-mid);
  font-weight: var(--font-semibold); margin-bottom: 8px; display: block;
}
.audience-card h3 {
  font-family: var(--font-display); font-size: 1.25rem;
  font-weight: var(--font-regular); margin-bottom: 10px; line-height: 1.3;
}
.audience-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.65; margin-bottom: 16px; }
.audience-link { color: var(--green); font-size: 0.86rem; font-weight: var(--font-semibold); display: inline-flex; align-items: center; gap: 6px; transition: gap var(--dur-base); }
.audience-card:hover .audience-link { gap: 10px; }

/* ========== EINWAND-FAQ (Mini) ========== */
.mini-faq { max-width: 760px; margin: 0 auto; }
.mini-faq-head { text-align: center; margin-bottom: 36px; }
.mini-faq-head .section-label { justify-content: center; }
.mini-faq-head .section-label::before { display: none; }

@media (max-width: 900px) {
  .audience-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ========== LINIEN-ICON-SYSTEM (ersetzt Emojis) ========== */
.line-icon { width: 24px; height: 24px; stroke: var(--green); stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; display: block; }
.audience-icon .line-icon, .value-icon .line-icon { width: 26px; height: 26px; }
.audience-card:hover .audience-icon .line-icon { stroke: var(--green-dark); }

/* SVG-Sterne (ersetzen ★ Textzeichen) */
.stars-svg { display: inline-flex; gap: 2px; }
.stars-svg svg { width: 16px; height: 16px; fill: var(--color-gold-500); }
.testimonial-stars.stars-svg svg { width: 18px; height: 18px; }

/* Problem-Liste: edle Linien-Items statt Emoji-Kacheln */
.problem-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 28px; }
.problem-item {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--color-linen-50); border: 1px solid var(--color-linen-200);
  border-radius: var(--radius-full); padding: 8px 16px;
  font-size: 0.86rem; color: var(--text-light); font-weight: var(--font-medium);
}
.problem-item .line-icon { width: 15px; height: 15px; stroke: var(--green-mid); stroke-width: 1.6; }

/* Editorial Sektions-Nummer */
.section-number {
  font-family: var(--font-display); font-size: 0.85rem;
  color: var(--accent); font-weight: var(--font-regular);
  letter-spacing: var(--tracking-wide); margin-right: 4px;
}

/* ========== HERO: EMOTIONALE VERTRAUENS-ELEMENTE ========== */
.hero-reassurance {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.92rem; color: var(--text-light); line-height: 1.55;
  max-width: 420px; margin-bottom: 22px;
}
.hero-reassurance .line-icon { flex-shrink: 0; margin-top: 2px; }
.hero-reassurance strong { color: var(--green-dark); font-weight: var(--font-semibold); }

.hero-trust-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--white); border: 1px solid var(--color-linen-200);
  border-radius: var(--radius-full); padding: 8px 14px;
  font-size: 0.8rem; font-weight: var(--font-medium); color: var(--text-light);
  box-shadow: var(--shadow-xs);
}
.hero-badge .line-icon { width: 16px; height: 16px; stroke: var(--green-mid); stroke-width: 1.6; }

/* ========== ELTERN-ZITAT (frühe Bestätigung) ========== */
.parent-quote {
  max-width: 680px; margin: 48px auto 0; text-align: center;
  padding: 36px 32px; background: var(--color-linen-50);
  border: 1px solid var(--color-linen-200); border-radius: var(--radius-lg);
  position: relative;
}
.parent-quote .stars-svg { justify-content: center; margin-bottom: 16px; }
.parent-quote blockquote {
  font-family: var(--font-display); font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-style: italic; line-height: 1.5; color: var(--text); margin-bottom: 16px;
}
.parent-quote blockquote em { color: var(--green); font-style: italic; }
.parent-quote figcaption { font-size: 0.85rem; color: var(--text-light); font-weight: var(--font-medium); }
.parent-quote-note {
  background: var(--accent-pale); color: var(--color-gold-800);
  padding: 2px 8px; border-radius: 5px; font-size: 0.72rem; font-weight: var(--font-semibold);
}

@media (max-width: 640px) {
  .hero-trust-badges { gap: 6px; }
  .hero-badge { font-size: 0.74rem; padding: 7px 11px; }
  .parent-quote { padding: 28px 20px; margin-top: 36px; }
}


/* ========== DEZENTE ANIMATIONS-VERFEINERUNGEN (v3) ========== */

/* Buttons: Pfeil gleitet sanft beim Hover (SaaS-Standard) */
.btn { transition: background var(--dur-base) var(--ease-out),
                   color var(--dur-base) var(--ease-out),
                   box-shadow var(--dur-base) var(--ease-out),
                   transform var(--dur-base) var(--ease-out); }

/* Reveal-Animation: einheitlich ruhig (ease-out, kurzer Weg) */
.fade-in, .slide-left, .slide-right, .scale-in {
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
}
.scale-in { transform: scale(0.98); }          /* war 0.88 — dezenter */
.scale-in.visible { transform: scale(1); }
.slide-left  { transform: translateX(-24px); }  /* war größer — ruhiger */
.slide-right { transform: translateX(24px); }
.fade-in     { transform: translateY(20px); }

/* Testimonial: weicher Cross-Fade statt hartem display-Wechsel */
.testimonial-slide {
  display: block; position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transition: opacity var(--dur-slow) var(--ease-out);
  pointer-events: none;
}
.testimonial-slide.active {
  opacity: 1; visibility: visible; position: relative;
  pointer-events: auto;
}
.testimonial-track { position: relative; }

/* Karten: Bild-Zoom ruhiger (ease-out, etwas langsamer) */
.blog-card:hover .blog-img img { transform: scale(1.04); transition: transform var(--dur-slow) var(--ease-out); }

/* Fokus-Sichtbarkeit (Barrierefreiheit) */
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--green); outline-offset: 2px; border-radius: 4px;
}

/* ========== REDUCED MOTION — alles ruhigstellen ========== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .fade-in, .slide-left, .slide-right, .scale-in {
    opacity: 1 !important; transform: none !important;
  }
  .hero-blob-1, .hero-blob-2, .hero-eyebrow-dot,
  .hero-float-1, .hero-float-2 { animation: none !important; }
  .testimonial-slide { transition: none !important; }
}

/* ========== GOOGLE-BEWERTUNGS-BADGE ========== */
.review-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--white); border: 1px solid var(--color-linen-200);
  border-radius: var(--radius-full); padding: 10px 18px;
  box-shadow: var(--shadow-xs); margin-top: 18px; text-decoration: none;
  transition: box-shadow var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.review-badge:hover { box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.review-badge .g-logo { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; line-height: 1; }
.review-badge .g-logo .b{color:#4285F4}.review-badge .g-logo .r{color:#EA4335}.review-badge .g-logo .y{color:#FBBC05}.review-badge .g-logo .g{color:#34A853}
.review-badge .stars-svg svg { width: 15px; height: 15px; }
.review-badge .r-text { font-size: 0.8rem; color: var(--text-light); }
.review-badge .r-text strong { color: var(--text); }

/* ========== ONLINE-BUCHUNG (Calendly-Block) ========== */
.booking-block {
  background: var(--color-linen-50); border: 1px solid var(--color-linen-200);
  border-radius: var(--radius-lg); padding: 32px; margin-top: 32px; text-align: center;
}
.booking-block h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: var(--font-regular); margin-bottom: 8px; }
.booking-block p { color: var(--text-light); font-size: 0.92rem; margin-bottom: 20px; }
.booking-embed { min-height: 0; }
.booking-embed iframe { width: 100%; border: none; border-radius: var(--radius-md); }

/* ========== QUALIFIKATIONS-/VERTRAUENS-SEKTION ========== */
.cred-section { max-width: 920px; margin: 0 auto; }
.cred-head { text-align: center; max-width: 580px; margin: 0 auto 40px; }
.cred-head .section-label { justify-content: center; }
.cred-head .section-label::before { display: none; }
.cred-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.cred-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--white); border: 1px solid var(--color-linen-200);
  border-radius: var(--radius-md); padding: 22px 24px;
}
.cred-item .line-icon { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; stroke: var(--green); }
.cred-item h4 { font-size: 0.98rem; font-weight: var(--font-semibold); margin-bottom: 4px; color: var(--text); }
.cred-item p { font-size: 0.87rem; color: var(--text-light); line-height: 1.6; margin: 0; }
@media (max-width: 700px) { .cred-grid { grid-template-columns: 1fr; } }

/* ========== ANGEBOT: Preis & Outcome ========== */
.angebot-price {
  display: inline-flex; align-items: baseline; gap: 8px;
  background: var(--color-forest-50); border: 1px solid var(--color-forest-200);
  border-radius: var(--radius-full); padding: 8px 18px; margin: 4px 0 20px;
}
.angebot-price strong { font-family: var(--font-display); font-size: 1.5rem; color: var(--green-dark); }
.angebot-price span { font-size: 0.85rem; color: var(--text-light); }
.angebot-outcome {
  display: flex; align-items: flex-start; gap: 10px;
  background: var(--color-gold-50); border-left: 3px solid var(--color-gold-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 12px 16px; margin-bottom: 20px; font-size: 0.9rem; color: var(--text-light);
}
.angebot-outcome strong { color: var(--color-gold-800); }

/* ========== NEWSLETTER ========== */
.newsletter {
  background: var(--color-forest-50); border: 1px solid var(--color-forest-200);
  border-radius: var(--radius-lg); padding: 44px 40px; text-align: center;
  max-width: 720px; margin: 0 auto;
}
.newsletter h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: var(--font-regular); margin-bottom: 8px; }
.newsletter p { color: var(--text-light); margin-bottom: 24px; font-size: 0.98rem; }
.newsletter-form { display: flex; gap: 10px; max-width: 440px; margin: 0 auto; flex-wrap: wrap; }
.newsletter-form input[type=email] {
  flex: 1; min-width: 200px; padding: 13px 18px; border: 1.5px solid var(--color-linen-300);
  border-radius: var(--radius-full); font: var(--text-base) var(--font-body); background: var(--white);
}
.newsletter-form input[type=email]:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(48,98,74,0.10); }
.newsletter-consent { display: flex; gap: 8px; align-items: flex-start; max-width: 440px; margin: 14px auto 0; text-align: left; }
.newsletter-consent input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--green); flex-shrink: 0; }
.newsletter-consent label { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }
.newsletter-consent a { color: var(--green); }
.newsletter-success { display: none; margin-top: 16px; color: var(--green-dark); background: var(--white); border: 1px solid var(--green-pale); border-radius: var(--radius-sm); padding: 12px 18px; font-size: 0.92rem; }

/* ============================================================
   UX/A11Y-POLITUR (Senior-Pass)
   ============================================================ */

/* [A11y] Skip-to-content — nur bei Tastatur-Fokus sichtbar */
.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: var(--z-toast);
  background: var(--green-dark); color: #fff; padding: 12px 20px;
  border-radius: var(--radius-sm); font-weight: 600; text-decoration: none;
  transform: translateY(-160%); transition: transform var(--dur-base) var(--ease-out);
}
.skip-link:focus { transform: translateY(0); outline: 2px solid var(--accent); outline-offset: 2px; }

/* [Conversion] Mobile Sticky-CTA — nur auf kleinen Screens */
.mobile-sticky-cta { display: none; }
@media (max-width: 640px) {
  .mobile-sticky-cta {
    display: flex; gap: 10px; position: fixed; left: 0; right: 0; bottom: 0;
    z-index: var(--z-sticky); padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(253,250,246,0.96); backdrop-filter: blur(12px);
    border-top: 1px solid var(--color-linen-200); box-shadow: 0 -4px 20px rgba(26,44,34,0.08);
  }
  .mobile-sticky-cta .btn { flex: 1; justify-content: center; padding: 13px 12px; font-size: 0.92rem; }
  .mobile-sticky-cta .msc-call {
    flex: 0 0 52px; display: flex; align-items: center; justify-content: center;
    border: 1.5px solid var(--green); border-radius: var(--radius-full); color: var(--green);
    text-decoration: none; font-size: 1.2rem;
  }
  /* Platz schaffen, damit die Leiste nichts überdeckt */
  body { padding-bottom: 76px; }
  footer { margin-bottom: 0; }
}

/* [Touch] Mindestgröße interaktiver Elemente auf Mobile (≥44px) */
@media (max-width: 640px) {
  .nav-links a { padding: 14px 0; }
  .btn { min-height: 46px; }
  .filter-chip { min-height: 40px; }
  .faq-question { min-height: 48px; }
}

/* [Lesbarkeit] Fließtext-Zeilenlänge begrenzen (~65–70 Zeichen) */
.intro-text p, .section-subtitle, .hero-sub, .article-body p { max-width: 65ch; }
@media (max-width: 640px) {
  body { line-height: 1.8; }  /* etwas luftiger auf kleinen Screens */
}

/* ========== PREMIUM-VORSCHAU (Bald verfügbar) ========== */
.premium-preview {
  margin-top: 0; background: linear-gradient(160deg, var(--color-forest-25), var(--color-gold-50));
  border: 1px solid var(--color-gold-300); border-radius: var(--radius-lg);
  padding: 40px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 36px; align-items: center;
}
.premium-preview .pp-badge {
  display: inline-flex; align-items: center; gap: 7px; background: var(--color-gold-500); color: #fff;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 14px; border-radius: var(--radius-full); margin-bottom: 14px;
}
.premium-preview h3 { font-family: var(--font-display); font-size: 1.7rem; font-weight: var(--font-regular); margin-bottom: 10px; line-height: 1.2; }
.premium-preview .pp-lead { color: var(--text-light); font-size: 0.98rem; margin-bottom: 18px; line-height: 1.6; }
.premium-preview .pp-list { list-style: none; display: grid; gap: 9px; margin-bottom: 4px; }
.premium-preview .pp-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.92rem; color: var(--text-light); }
.premium-preview .pp-list svg { width: 18px; height: 18px; stroke: var(--green); fill: none; stroke-width: 1.8; flex-shrink: 0; margin-top: 2px; }
.premium-preview .pp-card {
  background: var(--white); border: 1px solid var(--color-linen-200); border-radius: var(--radius-md);
  padding: 28px 24px; text-align: center; box-shadow: var(--shadow-sm);
}
.premium-preview .pp-price { font-family: var(--font-display); font-size: 2.6rem; color: var(--green-dark); line-height: 1; }
.premium-preview .pp-price small { display: block; font-family: var(--font-body); font-size: 0.82rem; color: var(--text-muted); margin-top: 6px; font-weight: 500; }
.premium-preview .pp-soon { margin: 16px 0 4px; font-size: 0.86rem; color: var(--color-gold-800); font-weight: 600; }
.premium-preview .btn { width: 100%; justify-content: center; margin-top: 10px; }
@media (max-width: 760px) { .premium-preview { grid-template-columns: 1fr; padding: 28px 22px; } }

/* ========== BEWERTUNGS-KARTEN (statisch, mehrseitig nutzbar) ========== */
.reviews-head { text-align:center; max-width:600px; margin:0 auto 36px; }
.reviews-head .section-label { justify-content:center; }
.reviews-head .section-label::before { display:none; }
.reviews-rating { font-size:0.95rem; color:var(--text-light); margin-top:6px; }
.reviews-rating strong { color:var(--green-dark); }
.reviews-rating a { color:var(--green); font-weight:600; }
.review-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; max-width:1040px; margin:0 auto; }
.review-card { background:var(--white); border:1px solid var(--color-linen-200); border-radius:var(--radius-md); padding:28px 26px; box-shadow:var(--shadow-sm); display:flex; flex-direction:column; }
.review-card .rc-stars { color:var(--color-gold-500); letter-spacing:2px; font-size:0.95rem; margin-bottom:14px; }
.review-card .rc-text { color:var(--text-light); font-size:0.95rem; line-height:1.7; flex:1; }
.review-card .rc-author { display:flex; align-items:center; gap:12px; margin-top:20px; }
.review-card .rc-av { width:42px; height:42px; border-radius:50%; display:flex; align-items:center; justify-content:center; color:#fff; font-weight:700; font-size:0.85rem; }
.review-card .rc-name { font-weight:600; font-size:0.9rem; }
.review-card .rc-src { font-size:0.78rem; color:var(--text-muted); }
@media (max-width:860px){ .review-grid{ grid-template-columns:1fr; } }

/* ============================================================
   SPACING-NORMALISIERUNG (final · vereinheitlicht alle Abstände)
   Kommt bewusst als letzter Block → überschreibt frühere Werte.
   ============================================================ */

/* Overflow-Schutz: nichts ragt mehr über den Rand */
html, body { overflow-x: hidden; }
img, svg, picture, video { max-width: 100%; }

/* Einheitlicher vertikaler Rhythmus → gesteuert via --section-pad-y Variable */

/* Karten-artige „Wrap"-Bereiche: gleicher Seitenabstand auf allen Breiten */
.services-wrap, .process-wrap, .stats-wrap, .cta-banner, .premium-preview {
  margin-left: var(--wrap-margin-x); margin-right: var(--wrap-margin-x);
}

/* ---- Tablet ---- */
@media (max-width: 900px) {
  .services-wrap, .process-wrap, .stats-wrap, .cta-banner, .premium-preview {
    margin-left: 24px !important; margin-right: 24px !important;
  }
}

/* ---- Mobile: einheitlich 16px Rand, ruhiger Rhythmus ---- */
@media (max-width: 640px) {
  :root { --section-pad-x: 20px; --section-pad-y: 48px; --section-pad-y-sm: 40px; }

  /* Volle-Breite-Sektionen: gleichmäßiges 20px Seiten-Padding, 48px oben/unten */
  section { padding: 48px 20px !important; }
  /* Hero-Sections auf Spezialseiten: Offer-Bar + Nav berücksichtigen */
  .ab-hero { padding-top: calc(96px + var(--offer-bar-h, 0px)) !important; }
  .quiz-hero { padding-top: calc(96px + var(--offer-bar-h, 0px)) !important; }

  /* Karten-Wraps: 16px Außenabstand, 24px Innen-Padding, 44px oben/unten */
  .services-wrap, .process-wrap, .stats-wrap, .cta-banner, .premium-preview {
    margin: 0 16px !important; padding: 44px 24px !important;
  }

  /* Inline-gestylte Sektion (Über mich „Wie ich arbeite") */
  section[style*="48px"] { margin: 0 16px !important; padding: 44px 24px !important; }

  /* Inline Preis-/CTA-Blöcke (Angebote, Blog) */
  div[style*="margin:0 48px"] { margin: 0 16px 24px !important; padding: 36px 24px !important; }

  /* Alles sicher einspaltig (kein horizontaler Überlauf) */
  .premium-preview, .audience-grid, .review-grid, .services-grid,
  .blog-grid, .blog-grid-full, .stats-grid, .values-grid, .cred-grid,
  .process-grid, .footer-inner { grid-template-columns: 1fr !important; }

  /* Gleichmäßige Abstände zwischen gestapelten Karten */
  .audience-grid, .review-grid, .services-grid, .values-grid, .blog-grid, .blog-grid-full { gap: 16px !important; }

  /* Text bricht sauber um (verhindert Abschneiden) */
  .audience-card p, .review-card .rc-text, .premium-preview .pp-lead,
  .section-subtitle, .hero-sub, p { overflow-wrap: break-word; }

  /* Konsistenter Abstand der Sektions-Köpfe */
  .services-header, .reviews-head, .mini-faq-head, .audience-head, .stats-header { margin-bottom: 28px !important; }
}

/* ── Mobile: Scroll-Animationen deaktivieren (verhindert unsichtbare Inhalte) ── */
@media (max-width: 900px) {
  .fade-in, .slide-left, .slide-right, .scale-in,
  .fade-in-delay-1, .fade-in-delay-2, .fade-in-delay-3,
  .fade-in-delay-4, .fade-in-delay-5 {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .bl-reveal, .bl-reveal-left, .bl-reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ══════════════════════════════════════════════════════════════
   MOBILE OVERHAUL v2 — Smartphone-Optimierung
   Ziel: gleichwertige Qualität zur Desktop-Version
   ══════════════════════════════════════════════════════════════ */

/* ── Nav: Offer-Bar-Kompensation & Touch-Targets ── */
@media (max-width: 900px) {
  /* Offer Bar über der Nav: Nav verschiebt sich nach unten wenn bar sichtbar */
  body.has-offer-bar #main-nav,
  body.has-offer-bar nav { top: var(--offer-bar-h, 0px); }

  /* Nav-Links: grössere Touch-Targets */
  .nav-links a { min-height: 48px; display: flex; align-items: center; }

  /* Hamburger-Button: gut erreichbar */
  .nav-toggle { min-width: 44px; min-height: 44px; }
}

/* ── Hero-Sektionen: Einheitliches Padding-Top ──
   Offer Bar ist position:fixed. JS setzt body.paddingTop = offer-bar-height.
   Daher brauchen wir NUR: nav-Höhe(~76px) + gewünschter Abstand(~20px) = 96px.
   body.paddingTop übernimmt den Offer-Bar-Offset automatisch.
   ── */
@media (max-width: 640px) {
  /* Einheitlicher Wert: funktioniert mit und ohne Offer Bar */
  .hero        { padding-top: 96px !important; }
  .page-hero   { padding-top: 96px !important; }
  .blog-hero   { padding-top: 96px !important; }

  /* Hero-Blobs: auf Mobile nicht über den Text legen */
  .hero-blob-1 { top: auto; bottom: -80px; right: -200px; width: 320px; height: 320px; opacity: 0.5; }
  .hero-blob-2 { display: none; }

  /* Hero-Eyebrow-Badge: passt auf eine Zeile */
  .hero-eyebrow { font-size: 0.7rem !important; letter-spacing: 0.03em !important; padding: 6px 14px !important; }

  /* Hero-Typografie: besser lesbar auf kleinen Screens */
  .hero h1 { font-size: clamp(1.75rem, 8vw, 2.2rem); line-height: 1.2; }
  .hero-sub { font-size: 0.97rem; line-height: 1.65; margin-bottom: 20px; }
  .hero-actions { gap: 10px; margin-bottom: 24px !important; }
  .hero-actions .btn { min-height: 52px; font-size: 0.88rem !important; white-space: nowrap !important; padding-left: 20px !important; padding-right: 20px !important; }
  /* Reassurance-Text: kompakter */
  .hero-reassurance { font-size: 0.88rem; margin-bottom: 16px; }
  .hero-trust-badges { margin-top: 12px; gap: 6px; }
  /* Review badge: kompakter */
  .review-badge { margin-top: 16px; }

  /* Page-Hero: kompaktere Abstände */
  .page-hero h1 { font-size: clamp(1.7rem, 7.5vw, 2.1rem); line-height: 1.2; }
  .page-hero p  { font-size: 0.95rem; max-width: 100%; }

  /* Blog-Hero: kompakterer Atem */
  .blog-hero .section-title { font-size: clamp(1.75rem, 8vw, 2.2rem); }
  .blog-hero p { font-size: 0.95rem; }

  /* Section-Title allgemein */
  .section-title { font-size: clamp(1.55rem, 6.5vw, 2rem); line-height: 1.25; }
}

/* ── Service Cards: Touch-freundliche Abstände ── */
@media (max-width: 640px) {
  .service-card { padding: 24px 20px; }
  .service-card h3 { font-size: 1.15rem; }
}

/* ── Process Wrap: Mobile-Schritte übersichtlicher ── */
@media (max-width: 640px) {
  .process-grid { gap: 20px; }
  .step { padding: 20px 16px; text-align: center; }
  .step-num { margin: 0 auto 12px; }
}

/* ── Blog Cards: Bilder zuverlässig anzeigen ── */
@media (max-width: 640px) {
  .blog-card { border-radius: 16px; overflow: hidden; }
  .blog-img { aspect-ratio: 16/9; overflow: hidden; position: relative; }
  .blog-img img,
  .blog-img picture,
  .blog-img picture img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
  }
  .blog-body { padding: 20px 16px 16px; }
  .blog-body h2, .blog-body h3 { font-size: 1.1rem; line-height: 1.35; }
}

/* ── Artikel-Seiten: optimiertes Mobile-Layout ── */
@media (max-width: 640px) {
  .article-hero  { padding: 84px 20px 32px !important; }
  .article-body  { padding: 32px 20px 56px !important; }
  .article-body h2 { font-size: 1.5rem !important; }
  .article-body h3 { font-size: 1.15rem !important; }
  .article-body p  { font-size: 0.97rem; line-height: 1.8; }
  .article-cta { padding: 32px 20px !important; }
  .article-cta h3 { font-size: 1.4rem !important; }
  .article-tip { padding: 16px 18px; }
  /* Bild zwischen Hero und Body: volle Breite, max 260px Höhe */
  .article-hero + picture img,
  .article-hero + picture source + img {
    max-height: 240px;
    object-fit: cover;
  }
  /* Autor-Box kompakt */
  .article-author { flex-direction: column; text-align: center; padding: 24px 16px; }
  .article-author img { margin: 0 auto; }
}

/* ── CTA Banner: Mobile Full-Width ── */
@media (max-width: 640px) {
  .cta-banner { border-radius: 20px; }
  .cta-banner h2 { font-size: 1.65rem !important; line-height: 1.2; }
  .cta-banner p  { font-size: 0.93rem; }
  .cta-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .cta-actions .btn { min-height: 52px; justify-content: center; width: 100%; font-size: 0.97rem; }
}

/* ── Footer: kompakt & übersichtlich ── */
@media (max-width: 640px) {
  footer { padding: 40px 20px 28px; }
  .footer-inner { gap: 32px; }
  .footer-col h4 { font-size: 0.9rem; margin-bottom: 12px; }
  .footer-col li { margin-bottom: 8px; font-size: 0.88rem; }
  .footer-bottom { font-size: 0.78rem; }
}

/* ── Testimonials: Mobile Card-Layout ── */
@media (max-width: 640px) {
  .testimonial-wrap { padding: 36px 16px; border-radius: 20px; }
  .testimonial-quote { font-size: 1.1rem; line-height: 1.5; }
  .slider-controls { margin-top: 20px; }
}

/* ── FAQ: Touch-freundliche Akkordeons ── */
@media (max-width: 640px) {
  .faq-item { padding: 16px 0; }
  .faq-question { font-size: 0.97rem; min-height: 44px; }
  .faq-answer-inner { font-size: 0.92rem; }
}

/* ── Stats: Zahlen groß & lesbar ── */
@media (max-width: 640px) {
  .stat-number { font-size: 2.2rem; }
  .stat-label  { font-size: 0.85rem; }
}

/* ── Social Proof Toast: kein Overlap mit Float-CTA ── */
@media (max-width: 640px) {
  .sp-toast { bottom: 80px; left: 12px; right: 12px; max-width: none; }
  .bl-float-cta { bottom: 16px; right: 16px; padding: 12px 18px; font-size: 0.85rem; }
}

/* ── Breadcrumb und Artikel-Meta: gut lesbar ── */
@media (max-width: 640px) {
  .breadcrumb { font-size: 0.8rem; margin-bottom: 14px; }
  .article-meta { gap: 12px; flex-wrap: wrap; }
  .article-meta span { font-size: 0.8rem; }
  .article-step { gap: 0; }
  .article-number { width: 30px; height: 30px; font-size: 0.9rem; flex-shrink: 0; }
}

/* ── Problem-Tags: gleichmäßig 1-spaltig ── */
@media (max-width: 640px) {
  .problem-list { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 8px !important; margin: 16px 0 20px !important; }
  .problem-item { font-size: 0.82rem; padding: 8px 12px; }
}

/* ── Audience Cards (3-Spalten → 1-Spalte) ── */
@media (max-width: 640px) {
  .audience-grid { grid-template-columns: 1fr !important; gap: 12px !important; }
  .audience-card { padding: 20px 16px; }
}

/* ── Lerntyp-Quiz Inline-Section ── */
@media (max-width: 640px) {
  section[style*="padding:80px"],
  section[style*="padding: 80px"] {
    padding: 48px 20px !important;
  }
  section[style*="padding:80px"] div[style*="max-width"],
  section[style*="padding: 80px"] div[style*="max-width"] {
    padding: 0 !important;
  }
}

/* ── Premium Preview: Mobile ── */
@media (max-width: 640px) {
  .premium-preview { border-radius: 20px; }
  .pp-lead { font-size: 0.97rem; }
}

/* ── Kontakt-Seite: Form mobile-freundlich ── */
@media (max-width: 640px) {
  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    font-size: 16px; /* verhindert iOS-Zoom beim Fokus */
    padding: 14px 16px;
    min-height: 48px;
  }
  .contact-form .btn { min-height: 52px; width: 100%; justify-content: center; }
}

/* ── Section Labels: Mobile lesbar ── */
@media (max-width: 640px) {
  .section-label { font-size: 0.7rem !important; letter-spacing: 0.04em !important; flex-wrap: wrap; }
  .section-label::before { width: 18px; }
  /* Sehr lange Labels: ::before verstecken damit kein Zeilenbruch mitten im Label */
  .page-hero .section-label { flex-wrap: nowrap; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
}

/* ── Page-Hero: weniger Leerraum nach Text vor nächster Sektion ── */
@media (max-width: 640px) {
  .page-hero { padding-bottom: 32px !important; }
}

/* ── Angebote: Bild-Sektion kompakter ── */
@media (max-width: 640px) {
  .angebot-section { gap: 24px !important; }
  .angebot-section h2 { font-size: 1.5rem; }
  .angebot-section p { font-size: 0.95rem; }
}

/* ── Hero-Reassurance & Trust Badges: kompakter ── */
@media (max-width: 640px) {
  .hero-proof { gap: 8px; }
  .hero-proof-item { font-size: 0.83rem; }
  .hero-badge { white-space: nowrap; }
}

/* ── Lerntyp-Quiz Inline-Sektion: mobile Anpassung ── */
@media (max-width: 640px) {
  section[style*="padding:80px 0"],
  section[style*="padding: 80px 0"] { padding: 48px 0 !important; }
  section[style*="padding:80px"] div[style*="padding:0 24px"],
  section[style*="padding:80px"] div[style*="padding: 0 24px"] { padding: 0 20px !important; }
  /* Quiz CTA button: volle Breite auf Mobile */
  section[style*="padding:80px"] a[style*="padding:15px 40px"],
  section[style*="padding:80px"] a[style*="padding: 15px 40px"] {
    display: block !important; padding: 14px 20px !important; text-align: center;
  }
}

/* ── Intro-Sektion: Abstände auf Mobile ── */
@media (max-width: 640px) {
  .intro-text blockquote, .parent-quote { margin-top: 24px; padding: 20px 16px; }
  .intro-text .btn { width: 100%; justify-content: center; margin-top: 20px; }
}

/* ── Mobile-Sticky-CTA: Font & Spacing ── */
@media (max-width: 640px) {
  .mobile-sticky-cta { padding: 10px 16px; gap: 10px; }
  .mobile-sticky-cta .btn { font-size: 0.88rem; padding: 12px 16px; flex: 1; }
  .mobile-sticky-cta .msc-call { width: 44px; height: 44px; flex-shrink: 0; font-size: 1.1rem; }
}

/* ── Smooth Scroll & Overflow-Schutz (global) ── */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
* { -webkit-tap-highlight-color: transparent; }
img { loading: lazy; }
