/* ============================================================
   SELF-HOSTED FONTS — DSGVO-konform, kein externer Request
   Dateien gehören in den Ordner: fonts/
   ============================================================ */

/* ── Playfair Display ─────────────────────────────────────── */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/playfair-display-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/playfair-display-400italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/playfair-display-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/playfair-display-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/playfair-display-700.woff2') format('woff2');
}

/* ── Inter ────────────────────────────────────────────────── */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/inter-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/inter-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/inter-600.woff2') format('woff2');
}

/* ── DM Sans ──────────────────────────────────────────────── */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/dm-sans-300.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/dm-sans-400.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/dm-sans-500.woff2') format('woff2');
}

/* ============================================================
   DESIGN TOKENS — Beige · Dark Green · Salmon
   ============================================================ */
:root {
  /* Backgrounds */
  --bg-primary:    #F5EFE4;
  --bg-secondary:  #FAF7F0;
  --bg-card:       #FFFFFF;
  --bg-card-hover: #FFFAF5;

  /* Dark Green */
  --green:         #1F3D2E;
  --green-mid:     #2E5741;
  --green-light:   #4A7A60;
  --green-muted:   rgba(31, 61, 46, 0.08);
  --green-glow:    rgba(31, 61, 46, 0.18);

  /* Salmon / Coral */
  --salmon:        #D96B52;
  --salmon-light:  #E8907A;
  --salmon-dark:   #B55440;
  --salmon-muted:  rgba(217, 107, 82, 0.1);
  --salmon-glow:   rgba(217, 107, 82, 0.22);

  /* Text */
  --text-primary:  #1A1410;
  --text-secondary:#4A3828;
  --text-muted:    #7A6050;

  /* Borders & shadows */
  --border:        rgba(31, 61, 46, 0.14);
  --border-light:  rgba(31, 61, 46, 0.07);
  --border-card:   rgba(26, 20, 16, 0.08);
  --shadow-card:   0 2px 16px rgba(26, 20, 16, 0.06), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-hover:  0 12px 40px rgba(26, 20, 16, 0.1), 0 2px 8px rgba(0,0,0,0.05);

  /* Typography */
  --ff-heading: 'Playfair Display', Georgia, serif;
  --ff-body:    'Inter', system-ui, sans-serif;
  --ff-label:   'DM Sans', system-ui, sans-serif;

  /* Easing */
  --ease-expo:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-sine:  cubic-bezier(0.37, 0, 0.63, 1);

  /* Radii */
  --radius-sm: 8px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --container: 1160px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: auto; } /* Lenis handles smooth scroll via JS */

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}


a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { background: none; border: none; cursor: pointer; font: inherit; color: inherit; }
ul { list-style: none; }

::selection { background: var(--green); color: #fff; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: rgba(31,61,46,0.25); border-radius: 3px; }


/* ============================================================
   NAVIGATION
   ============================================================ */
#siteNav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: padding 0.4s var(--ease-expo);
}

#siteNav.is-scrolled {
  padding: 0.9rem 0;
  background: rgba(245, 239, 228, 0.92);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 16px rgba(26, 20, 16, 0.05);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-right: auto;
}

.logo-mark {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.logo-text {
  font-family: var(--ff-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-primary);
}

.nav-links { display: flex; gap: 2rem; }

.nav-link {
  font-family: var(--ff-label);
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color 0.3s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--green);
  transition: width 0.3s var(--ease-expo);
}

.nav-link:hover { color: var(--green); }
.nav-link:hover::after { width: 100%; }

.btn-nav {
  font-family: var(--ff-label);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  border: 1.5px solid var(--salmon);
  color: var(--salmon);
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
  white-space: nowrap;
}

.btn-nav:hover {
  background: var(--salmon);
  color: #fff;
  box-shadow: 0 4px 16px var(--salmon-glow);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--text-primary);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

.nav-toggle.is-open span:first-child { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.is-open span:last-child  { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.mobile-menu.is-open { opacity: 1; pointer-events: all; }

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.mobile-link {
  font-family: var(--ff-heading);
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  color: var(--text-primary);
  transition: color 0.3s;
}

.mobile-link:hover { color: var(--green); }
.mobile-cta { margin-top: 1rem; font-size: 1rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2.1rem;
  border-radius: 100px;
  background: var(--salmon);
  color: #fff;
  font-family: var(--ff-label);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-expo), box-shadow 0.3s, background 0.3s;
  box-shadow: 0 4px 20px var(--salmon-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--salmon-dark);
  box-shadow: 0 10px 32px var(--salmon-glow);
}

.btn-primary .btn-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.8rem;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  color: var(--text-secondary);
  font-family: var(--ff-label);
  font-size: 0.95rem;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.btn-ghost:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-muted);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2.1rem;
  border-radius: 100px;
  background: var(--bg-primary);
  border: 1.5px solid var(--salmon);
  color: var(--salmon);
  font-family: var(--ff-label);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-expo), box-shadow 0.3s, background 0.3s, color 0.3s;
}

.btn-outline:hover {
  transform: translateY(-2px);
  background: var(--salmon);
  color: #fff;
  box-shadow: 0 10px 32px var(--salmon-glow);
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 2.8rem;
  border-radius: 100px;
  background: var(--salmon);
  color: #fff;
  font-family: var(--ff-label);
  font-size: 1.05rem;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-expo), box-shadow 0.4s, background 0.3s;
  box-shadow: 0 6px 28px var(--salmon-glow);
  letter-spacing: 0.01em;
}

.btn-hero:hover {
  transform: translateY(-3px);
  background: var(--salmon-dark);
  box-shadow: 0 20px 52px var(--salmon-glow);
}

.btn-hero .btn-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.btn-hero .btn-arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease-expo);
}

.btn-hero:hover .btn-arrow { transform: translateX(6px); }

/* Card base */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

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

/* Focus styles — keyboard navigation */
:focus-visible {
  outline: 2px solid var(--salmon);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
}

.section-label {
  font-family: var(--ff-label);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--salmon);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: linear-gradient(90deg, var(--salmon), var(--green));
  border-radius: 2px;
  flex-shrink: 0;
}

.section-heading {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  text-wrap: balance;
}

.section-heading em {
  font-style: italic;
  color: var(--green);
  font-weight: 400;
}

.section-heading.text-left { text-align: left; }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto 3.5rem;
  text-align: center;
  line-height: 1.82;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-primary);
}

/* ── Soft ambient colour wash (CSS only) ────────────────────── */
.hero-ambient {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.ha {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  will-change: transform;
}

.ha-1 {
  width: 600px; height: 600px;
  background: var(--green);
  opacity: 0.06;
  top: -120px; right: -60px;
  animation: ha-float 28s ease-in-out infinite;
}

.ha-2 {
  width: 380px; height: 380px;
  background: var(--salmon);
  opacity: 0.07;
  bottom: -80px; right: 15%;
  animation: ha-float 22s ease-in-out infinite reverse;
}

@keyframes ha-float {
  0%,100% { transform: translate(0,0); }
  40%      { transform: translate(-30px, 25px); }
  70%      { transform: translate(20px, -20px); }
}

/* Bottom fade */
#hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 140px;
  background: linear-gradient(to bottom, transparent, var(--bg-primary));
  z-index: 2;
  pointer-events: none;
}

/* ── Two-column layout: text LEFT, visual RIGHT ──────────────── */
.hero-container {
  position: relative;
  z-index: 3;
  max-width: var(--container);
  margin: 0 auto;
  padding: 5.5rem clamp(1rem, 4vw, 3rem) 4rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* ── Left column — all text ──────────────────────────────────── */
.hero-content {
  text-align: left;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--ff-label);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 2rem;
  opacity: 0;
  padding: 0.45rem 1rem;
  border: 1px solid rgba(31, 61, 46, 0.3);
  border-radius: 100px;
  background: rgba(241, 248, 244, 0.9);
}

/* ── Right column — decorative ring + badges ─────────────────── */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 440px;
  opacity: 0;
}

/* Animated concentric rings */
.hv-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(31, 61, 46, 0.55);
  animation: ring-spin linear infinite;
}

.hv-ring--outermost {
  width: 420px; height: 420px;
  border: 1px dashed rgba(31, 61, 46, 0.22);
  animation-duration: 60s;
}

.hv-ring--outer {
  width: 320px; height: 320px;
  animation-duration: 40s;
  border-style: dashed;
  border-color: rgba(31, 61, 46, 0.45);
}

.hv-ring--inner {
  width: 200px; height: 200px;
  border: 2px solid rgba(217, 107, 82, 0.65);
  animation-duration: 25s;
  animation-direction: reverse;
}

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

/* Centre icon */
.hv-center {
  position: absolute;
  width: 82px; height: 82px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(31, 61, 46, 0.18), 0 0 0 6px rgba(31, 61, 46, 0.06);
  z-index: 2;
}

/* Floating label badges */
.hv-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-label);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.55rem 1.15rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1.5px solid rgba(31, 61, 46, 0.3);
  border-radius: 100px;
  box-shadow: 0 8px 28px rgba(31, 61, 46, 0.18), 0 2px 6px rgba(0,0,0,0.06);
  white-space: nowrap;
  color: var(--text-primary);
  animation: badge-float ease-in-out infinite;
}

.hv-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(31, 61, 46, 0.15);
}

.hv-badge--1 {
  top: 12%;  left: -8%;
  animation-duration: 5s;
  animation-delay: 0s;
}

.hv-badge--2 {
  top: 55%; right: -6%;
  animation-duration: 6s;
  animation-delay: 1.5s;
}

.hv-badge--2 .hv-badge-dot { background: var(--salmon); }

.hv-badge--3 {
  bottom: 14%; left: 5%;
  animation-duration: 4.5s;
  animation-delay: 0.8s;
}

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

.eyebrow-dot {
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--salmon);
  animation: pulse-dot 2.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(217,107,82,0.4); }
  50%       { box-shadow: 0 0 0 5px rgba(217,107,82,0); }
}

.hero-headline {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.04;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.hero-headline em {
  font-style: italic;
  font-weight: 500;
  color: var(--green);
}


.hero-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.85;
  max-width: 560px;
  margin: 0 0 2.5rem;          /* left: no auto */
  opacity: 0;
  text-wrap: pretty;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: flex-start;  /* left-aligned */
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  opacity: 0;
}

/* Badge / social proof below CTAs */
.hero-social-proof {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--ff-label);
  font-size: 0.75rem;
  color: var(--text-muted);
  padding: 0.45rem 1rem;
  border-radius: 100px;
  border: 1px solid var(--border-light);
  background: rgba(255,255,255,0.92);
  opacity: 0;
}

.hero-social-proof svg { color: var(--salmon); flex-shrink: 0; }
.hero-social-proof strong { color: var(--text-primary); font-weight: 600; }

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
}

.scroll-mouse {
  width: 22px; height: 36px;
  border: 1.5px solid rgba(31,61,46,0.2);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px; height: 7px;
  background: var(--green);
  border-radius: 2px;
  animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(8px); opacity: 0.25; }
}

.scroll-indicator span {
  font-family: var(--ff-label);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================================
   REVEAL ANIMATIONS (initial state)
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
}

/* ============================================================
   PAIN SECTION
   ============================================================ */
.section-pain {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--bg-secondary);
  text-align: center;
}

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

.pain-card {
  padding: 2.25rem 1.75rem;
  text-align: left;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease-expo), box-shadow 0.4s;
}

.pain-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.pain-icon {
  width: 44px; height: 44px;
  margin-bottom: 1.25rem;
  color: var(--salmon);
}

.pain-icon svg { width: 100%; height: 100%; }

.pain-card h3 {
  font-family: var(--ff-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
  color: var(--text-primary);
}

.pain-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.pain-footer { max-width: 680px; margin: 0 auto; }

.pain-quote {
  position: relative;
  padding: 2.5rem 3rem;
  background: var(--green);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pain-quote::before {
  content: '"';
  position: absolute;
  top: 0.5rem; left: 1.5rem;
  font-family: var(--ff-heading);
  font-size: 6rem;
  line-height: 1;
  color: rgba(255,255,255,0.1);
}

.pain-quote p {
  font-family: var(--ff-heading);
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  font-style: italic;
  color: rgba(255,255,255,0.92);
  line-height: 1.65;
  position: relative;
}

/* ============================================================
   SERVICES
   ============================================================ */
.section-services {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--bg-primary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services-bg-parallax {
  position: absolute;
  inset: -30%;
  background: radial-gradient(ellipse 50% 60% at 85% 40%, rgba(31,61,46,0.05) 0%, transparent 65%),
              radial-gradient(ellipse 40% 50% at 15% 70%, rgba(217,107,82,0.04) 0%, transparent 60%);
  pointer-events: none;
  will-change: transform;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.service-card {
  padding: 2.25rem 1.75rem;
  text-align: left;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-expo), box-shadow 0.4s;
  will-change: transform;
}

.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }

.service-card--featured {
  border-color: var(--green);
  border-width: 1.5px;
  box-shadow: 0 8px 40px rgba(31,61,46,0.1), 0 2px 8px rgba(0,0,0,0.04);
  transform: translateY(-8px);
}

.service-card--featured:hover {
  box-shadow: 0 20px 56px rgba(31,61,46,0.15);
}

.service-card--featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--salmon));
}

.service-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.85rem;
  background: var(--green);
  color: #fff;
  font-family: var(--ff-label);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.service-number {
  font-family: var(--ff-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: rgba(31,61,46,0.06);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.service-card--featured .service-number { color: rgba(31,61,46,0.1); }

.service-icon {
  width: 48px; height: 48px;
  margin-bottom: 1.25rem;
  color: var(--green-light);
}

.service-card--featured .service-icon { color: var(--green); }
.service-icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-family: var(--ff-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
  color: var(--text-primary);
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-features {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-features li {
  font-family: var(--ff-label);
  font-size: 0.83rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.service-features li::before {
  content: '';
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--green-light);
  flex-shrink: 0;
}

.service-card--featured .service-features li::before { background: var(--green); }

/* ============================================================
   ADS ANALYSE
   ============================================================ */
.section-analyse {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--bg-secondary);
}

.analyse-inner {
  display: flex;
  align-items: center;
  gap: clamp(3rem, 6vw, 6rem);
}

.analyse-text {
  flex: 1;
}

.analyse-heading {
  margin-top: 1.1rem;
  margin-bottom: 1.1rem;
}

.analyse-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 480px;
}

.analyse-cta-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.4rem;
  flex-shrink: 0;
  min-width: 280px;
}

.analyse-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.analyse-highlight {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.93rem;
  color: var(--text-secondary);
}

.ah-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(31, 61, 46, 0.1);
  color: var(--green);
  font-weight: 700;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.analyse-note {
  font-family: var(--ff-label);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  align-self: center;
}

@media (max-width: 900px) {
  .analyse-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .analyse-cta-col {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .analyse-cta-col .btn-primary { width: 100%; justify-content: center; }
  .analyse-note { align-self: flex-start; }
}

/* ============================================================
   PROCESS
   ============================================================ */
.section-process {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--bg-primary);
  text-align: center;
}

/* ── Process Timeline (WOW redesign) ── */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-top: 4rem;
  position: relative;
}

/* Gradient connecting line between all nodes */
.process-timeline::before {
  content: '';
  position: absolute;
  top: 1.75rem;           /* vertically centered on the 3.5rem node */
  left: calc(10% - 0.25rem);
  right: calc(10% - 0.25rem);
  height: 2px;
  background: linear-gradient(90deg, var(--salmon) 0%, var(--green) 100%);
  z-index: 0;
  opacity: 0.5;
}

.pt-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  position: relative;
  z-index: 1;
}

/* Circular icon node */
.pt-node {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(31, 61, 46, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pt-step:hover .pt-node {
  transform: scale(1.12);
  box-shadow: 0 0 0 10px rgba(31, 61, 46, 0.12),
              0 8px 24px rgba(31, 61, 46, 0.2);
}

/* Card below node */
.pt-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.1rem;
  border: 1px solid var(--border-light);
  text-align: center;
  flex: 1;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pt-step:hover .pt-card {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(31, 61, 46, 0.1);
}

.pt-num {
  font-family: var(--ff-label);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--salmon);
  margin-bottom: 0.6rem;
}

.pt-title {
  font-family: var(--ff-heading);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 0.55rem;
}

.pt-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.72;
}

/* Tablet: 3 columns */
@media (max-width: 1100px) {
  .process-timeline {
    grid-template-columns: repeat(3, 1fr);
  }
  .process-timeline::before { display: none; }
}

/* Mobile: stacked with icon left */
@media (max-width: 640px) {
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .pt-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }
  .pt-node { flex-shrink: 0; }
  .pt-card { text-align: left; padding: 1.1rem; }
  .pt-num  { text-align: left; }
}


/* ============================================================
   ABOUT
   ============================================================ */
.section-about {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--bg-secondary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about-visual { position: relative; }
.about-image-wrap { position: relative; display: inline-block; }

.about-image-placeholder {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, rgba(31,61,46,0.06) 0%, var(--bg-secondary) 60%, rgba(217,107,82,0.05) 100%);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  display: block;
}

.about-img-glow {
  position: absolute;
  bottom: -10%; left: -10%;
  width: 120%; height: 50%;
  background: radial-gradient(ellipse at 50% 100%, rgba(31,61,46,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.about-badge {
  position: absolute;
  bottom: 2rem; right: -1.5rem;
  padding: 0.75rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--ff-label);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green);
  white-space: nowrap;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.about-badge-img { height: 56px; width: auto; display: block; }

.about-text p {
  color: var(--text-secondary);
  line-height: 1.88;
  margin-bottom: 1.2rem;
}

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

.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 2rem 0;
}

.value-chip {
  font-family: var(--ff-label);
  font-size: 0.76rem;
  padding: 0.38rem 0.9rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  background: var(--bg-card);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.value-chip:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-muted);
}

/* ============================================================
   REVIEWS
   ============================================================ */
.section-reviews {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--bg-primary);
}

/* ── Grid Layout ──────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  align-items: start;
}

.review-card {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-radius: 1.25rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(31, 61, 46, 0.1);
}

.review-stars {
  display: flex;
  gap: 0.25rem;
  color: var(--salmon);
}

.review-quote {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-primary);
  font-style: normal;
  margin: 0;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(31, 61, 46, 0.1);
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  overflow: hidden;
}

.review-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* Logo-Variante: weißer Hintergrund, Logo enthält (nicht zuschneiden) */
.review-avatar--logo {
  background: #fff;
  border: 1.5px solid var(--border-card);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.review-avatar--logo .review-avatar-img {
  object-fit: contain;
  border-radius: 0;
  padding: 5px;
}

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.review-meta strong {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 600;
}

.review-meta span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================================
   PROMISES
   ============================================================ */
.section-promises {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--bg-secondary);
  text-align: center;
  overflow: hidden;
}

.promises-track-wrap {
  margin-top: 3rem;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.promises-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: ticker 38s linear infinite;
}

.promises-track:hover { animation-play-state: paused; }

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.promise-card {
  width: 280px;
  flex-shrink: 0;
  padding: 1.75rem 1.5rem;
  text-align: left;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease-expo), box-shadow 0.3s;
}

.promise-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.promise-icon {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: var(--green-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  color: var(--green);
}

.promise-icon svg { width: 18px; height: 18px; }

.promise-card h3 {
  font-family: var(--ff-heading);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.promise-card p {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ============================================================
   FAQ
   ============================================================ */
.section-faq {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--bg-primary);
}

.faq-heading em {
  white-space: nowrap;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.faq-left p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.faq-contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--ff-label);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--salmon);
  text-decoration: none;
  transition: color 0.2s, gap 0.2s;
}

.faq-contact-link svg {
  flex-shrink: 0;
  color: var(--salmon);
  transition: transform 0.2s;
}

.faq-contact-link:hover {
  color: var(--salmon-dark);
  gap: 0.85rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.is-open { border-color: var(--border); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  text-align: left;
  transition: color 0.3s;
}

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

.faq-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  position: relative;
}

.faq-icon span {
  position: absolute;
  top: 50%; left: 50%;
  display: block;
  width: 12px; height: 1.5px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease-expo), opacity 0.3s;
}

.faq-icon span:last-child { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.is-open .faq-icon span:last-child {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-expo);
}

.faq-answer p {
  padding: 0 1.4rem 1.4rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.82;
}

/* ============================================================
   CONTACT / FINAL CTA
   ============================================================ */
.section-contact {
  padding: clamp(6rem, 12vw, 11rem) 0;
  background: var(--bg-secondary);
  position: relative;
  text-align: center;
  overflow: hidden;
}


.contact-heading {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  text-wrap: balance;
}

.contact-heading em {
  font-style: italic;
  font-weight: 400;
  color: var(--green);
}

.contact-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.82;
  max-width: 520px;
  margin: 0 auto 3rem;
  text-wrap: pretty;
}

.contact-booking {
  width: 100%;
  max-width: 860px;
  margin: 2rem auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0,0,0,0.12);
  background: #fff;
}

.contact-booking iframe {
  display: block;
  width: 100%;
  height: 720px;
  border: none;
}

@media (max-width: 768px) {
  .contact-booking iframe { height: 820px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--border-light);
  padding: 4rem 0 2rem;
  background: var(--green);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: var(--ff-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  max-width: 320px;
  margin-bottom: 1rem;
}

.footer-contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.25s;
}

.footer-contact-link svg { flex-shrink: 0; opacity: 0.75; }
.footer-contact-link:hover { color: #fff; }
.footer-contact-link:hover svg { opacity: 1; }

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.footer-social-link:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav h4 {
  font-family: var(--ff-label);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.5rem;
}

.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.3s;
}

.footer-nav a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.footer-love { color: var(--salmon-light); }

/* ============================================================
   COOKIE CONSENT
   ============================================================ */
.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(31,61,46,0.5);
  backdrop-filter: blur(3px);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.cookie-overlay.is-visible { opacity: 1; pointer-events: auto; }

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--bg-primary);
  border-top: 2px solid var(--border-light);
  box-shadow: 0 -8px 60px rgba(0,0,0,0.13);
  transform: translateY(100%);
  transition: transform 0.45s var(--ease-expo);
  max-height: 92svh;
  overflow-y: auto;
}
.cookie-banner.is-visible { transform: translateY(0); }

/* Views */
.cookie-view { display: block; }
.cookie-view--hidden { display: none; }

.cookie-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 2.25rem clamp(1.25rem, 5vw, 3rem) 1.75rem;
}

.cookie-title {
  font-family: var(--ff-heading);
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.cookie-body {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

/* Back button */
.cookie-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--ff-label);
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 0;
  margin-bottom: 1.25rem;
  transition: color 0.2s;
}
.cookie-back:hover { color: var(--green); }

/* Categories */
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}
.cookie-cat {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
}
.cookie-cat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.cookie-cat-info { display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; }
.cookie-cat-name {
  font-family: var(--ff-label);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}
.cookie-cat-badge {
  font-family: var(--ff-label);
  font-size: 0.68rem;
  background: rgba(31,61,46,0.1);
  color: var(--green);
  padding: 0.15rem 0.55rem;
  border-radius: 100px;
  font-weight: 500;
}
.cookie-cat-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* Toggle */
.cookie-toggle { display: flex; align-items: center; flex-shrink: 0; cursor: pointer; }
.cookie-toggle--fixed { cursor: default; }
.ct-input { position: absolute; opacity: 0; width: 0; height: 0; }
.ct-track {
  display: block;
  width: 44px;
  height: 24px;
  border-radius: 100px;
  background: rgba(0,0,0,0.15);
  position: relative;
  transition: background 0.25s ease;
  flex-shrink: 0;
}
.ct-track--on,
.ct-input:checked + .ct-track { background: var(--salmon); }
.ct-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
  transition: transform 0.25s ease;
}
.ct-track--on .ct-thumb,
.ct-input:checked + .ct-track .ct-thumb { transform: translateX(20px); }

/* Buttons — alle gleich */
.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1.1rem;
}
.btn-cookie {
  flex: 1;
  min-width: 120px;
  padding: 0.8rem 1rem;
  border-radius: 6px;
  border: none;
  background: var(--green);
  color: #fff;
  font-family: var(--ff-label);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  text-align: center;
}
.btn-cookie:hover { opacity: 0.85; transform: translateY(-1px); }

/* Footer links */
.cookie-footer-links {
  display: flex;
  gap: 1.25rem;
}
.cookie-footer-links a {
  font-family: var(--ff-label);
  font-size: 0.72rem;
  color: var(--salmon);
  text-decoration: underline;
}
.cookie-footer-links a:hover { color: var(--green); }

@media (max-width: 540px) {
  .cookie-actions { flex-direction: column; }
  .btn-cookie { flex: unset; width: 100%; }
}

/* Mobile-only line breaks — hidden on desktop, active on mobile */
br.m-br { display: none; }
@media (max-width: 768px) { br.m-br { display: inline; } }

/* ============================================================
   SALES PSYCHOLOGY ELEMENTS
   ============================================================ */

/* ── Hero: Verfügbarkeits-Indikator (Scarcity) ─────────────── */
.hero-availability {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--ff-label);
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  padding: 0.4rem 0.9rem 0.4rem 0.55rem;
  border-radius: 100px;
  background: rgba(31, 61, 46, 0.06);
  border: 1px solid rgba(31, 61, 46, 0.12);
  opacity: 0; /* animated by initHeroEntrance */
}

.hero-availability strong { color: var(--green); font-weight: 600; }

.avail-pulse {
  flex-shrink: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #3aaa6b;
  animation: avail-pulse 2.2s ease-in-out infinite;
}

@keyframes avail-pulse {
  0%   { box-shadow: 0 0 0 0   rgba(58, 170, 107, 0.5); }
  60%  { box-shadow: 0 0 0 7px rgba(58, 170, 107, 0);   }
  100% { box-shadow: 0 0 0 0   rgba(58, 170, 107, 0);   }
}

/* ── Trust Bar ─────────────────────────────────────────────── */
.trust-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 0.85rem 0;
  overflow: hidden;
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-label);
  font-size: 0.77rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.45rem 1.5rem;
  white-space: nowrap;
  position: relative;
}

.trust-item + .trust-item::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 16px;
  background: var(--border-light);
}

.trust-item svg { color: var(--green); flex-shrink: 0; }

/* ── Analyse: Scarcity ─────────────────────────────────────── */
.analyse-scarcity {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-label);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--salmon);
  margin-top: 1.25rem;
  padding: 0.45rem 0.9rem;
  background: var(--salmon-muted);
  border: 1px solid rgba(217, 107, 82, 0.2);
  border-radius: 100px;
}

.analyse-scarcity svg { flex-shrink: 0; }

/* ── About: Exclusivity ────────────────────────────────────── */
.about-exclusivity {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: var(--ff-label);
  font-size: 0.84rem;
  color: var(--green-mid);
  line-height: 1.65;
  margin: 0 0 1.5rem;
  padding: 1rem 1.25rem;
  background: rgba(31, 61, 46, 0.06);
  border: 1px solid rgba(31, 61, 46, 0.12);
  border-radius: var(--radius);
}

.about-exclusivity svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--green);
  opacity: 0.7;
}

/* ── Contact: Reassurance Badges ──────────────────────────── */
.contact-reassurance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

.reassurance-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--ff-label);
  font-size: 0.78rem;
  color: var(--text-muted);
}

.reassurance-item svg { color: var(--green); flex-shrink: 0; }

/* ── Contact: 24h Note ─────────────────────────────────────── */
.contact-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-label);
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
}

.contact-note svg { flex-shrink: 0; color: var(--green-light); }

/* ============================================================
   QUIZ
   ============================================================ */
.section-quiz {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--bg-secondary);
  text-align: center;
}

.quiz-inner {
  max-width: 680px;
  margin: 0 auto;
}

.quiz-hidden { display: none !important; }

/* ── Progress ─────────────────────────────────────────────── */
.quiz-progress {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.quiz-progress-bar {
  width: 100%;
  height: 3px;
  background: var(--border-light);
  border-radius: 100px;
  overflow: hidden;
}

.quiz-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--salmon), var(--green));
  border-radius: 100px;
  transition: width 0.55s var(--ease-expo);
}

.quiz-progress-label {
  font-family: var(--ff-label);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Card ─────────────────────────────────────────────────── */
.quiz-card {
  padding: 2.5rem 2.75rem;
  text-align: left;
  transition: opacity 0.21s ease, transform 0.21s ease;
}

.quiz-card--out {
  opacity: 0;
  transform: translateX(-14px);
}

.quiz-q-text {
  font-family: var(--ff-heading);
  font-size: clamp(1.15rem, 2.8vw, 1.5rem);
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: 1.75rem;
  font-weight: 600;
}

/* ── Options ──────────────────────────────────────────────── */
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.quiz-option {
  padding: 1rem 1.25rem;
  border: 1.5px solid var(--border-card);
  border-radius: var(--radius);
  background: var(--bg-secondary);
  color: var(--text-secondary);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.2s, opacity 0.2s;
  animation: quizOptIn 0.38s var(--ease-expo) both;
  animation-delay: calc(var(--qi, 0) * 70ms);
}

@keyframes quizOptIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.quiz-option:hover:not(:disabled) {
  border-color: var(--salmon);
  color: var(--text-primary);
  background: var(--salmon-muted);
  transform: translateX(5px);
}

.quiz-opt--chosen {
  border-color: var(--green) !important;
  background: var(--green-muted) !important;
  color: var(--green) !important;
  font-weight: 500;
}

.quiz-opt--dim {
  opacity: 0.35;
}

/* ── Result ───────────────────────────────────────────────── */
.quiz-res-card {
  padding: 3rem 2.75rem;
  text-align: center;
  animation: quizOptIn 0.45s var(--ease-expo) both;
}

.quiz-res-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  border-radius: 100px;
  background: var(--green-muted);
  border: 1px solid rgba(31, 61, 46, 0.15);
  font-family: var(--ff-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.5rem;
}

.quiz-res--salmon .quiz-res-badge {
  background: var(--salmon-muted);
  border-color: rgba(217, 107, 82, 0.15);
  color: var(--salmon);
}

.quiz-res-title {
  font-family: var(--ff-heading);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.quiz-res-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.82;
  max-width: 520px;
  margin: 0 auto 2rem;
}

.quiz-res-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.quiz-res-cta, .quiz-res-link { display: inline-flex; }

.quiz-restart {
  display: block;
  font-family: var(--ff-label);
  font-size: 0.8rem;
  color: var(--text-muted);
  cursor: pointer;
  background: none;
  border: none;
  margin: 0 auto;
  padding: 0.25rem 0;
  transition: color 0.2s;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.quiz-restart:hover { color: var(--green); }

@media (max-width: 600px) {
  .quiz-card     { padding: 1.75rem 1.5rem; }
  .quiz-res-card { padding: 2rem 1.5rem; }
  .quiz-option   { font-size: 0.9rem; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  /* Hero: stack on tablet */
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: left;
  }

  .hero-visual { display: none; }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .service-card--featured { transform: translateY(0); }

.about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-placeholder { max-width: 340px; aspect-ratio: 4/3; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }

  .faq-grid { grid-template-columns: 1fr; gap: 3rem; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .nav-toggle { display: flex; }

  .hero-headline { font-size: clamp(2.2rem, 9vw, 3.2rem); }

  .hero-container { padding-bottom: 3rem; }
  .scroll-indicator { display: none; }

  /* Hyphenation for German compound words */
  body {
    hyphens: auto;
    -webkit-hyphens: auto;
    overflow-wrap: break-word;
  }

  /* Prevent orphan words in body text */
  .hero-sub,
  .section-sub,
  .analyse-sub,
  .contact-sub,
  .pt-desc,
  .faq-answer p,
  .about-text p,
  .review-quote,
  .pain-card p,
  .service-card p {
    text-wrap: pretty;
    overflow-wrap: break-word;
  }

  /* Remove hard line breaks in flowing text on mobile */
  .analyse-sub br { display: none; }


  /* Hero eyebrow — allow wrapping instead of overflow */
  .hero-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    white-space: normal;
    text-align: left;
  }

  /* FAQ left column: remove inline break */
  .faq-left p br { display: none; }

  /* Reviews: horizontal scroll on mobile */
  .reviews-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
  }
  .reviews-grid .review-card {
    flex: 0 0 85vw;
    scroll-snap-align: start;
  }

  .pain-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

.footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .process-step { grid-template-columns: 2.5rem 1fr; }
  .step-number::before { display: none; }
  .process-line { display: none; }

  .about-photo { object-position: center 28%; }
  .about-badge { right: 0; }

  /* Perf: disable expensive blur blobs on mobile */
  .ha { display: none; }

  /* Trust bar: allow wrapping, hide separators */
  .trust-item { padding: 0.4rem 0.9rem; }
  .trust-item + .trust-item::before { display: none; }

  /* Hero availability: full width on mobile */
  .hero-availability { font-size: 0.73rem; }

  /* Perf: disable promises ticker animation on mobile — show as grid */
  .promises-track-wrap {
    mask-image: none;
    -webkit-mask-image: none;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .promises-track {
    animation: none;
    width: auto;
    display: grid;
    grid-template-columns: repeat(3, 280px);
    padding-bottom: 0.5rem;
  }
  /* Hide duplicate cards on mobile */
  .promise-card[aria-hidden="true"] { display: none; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost, .btn-hero, .btn-outline { justify-content: center; text-align: center; }

  /* Process: single column on small phones */
  .promises-track { grid-template-columns: repeat(3, 260px); }

  /* Services cards: full width */
  .services-grid { max-width: 100%; }

  /* Reduce section padding on very small screens */
  .section-contact { padding: 4rem 0 5rem; }
  .section-faq { padding: 4rem 0; }
}

/* ============================================================
   CURSOR & INTERACTION — UI/UX Pro Max
   ============================================================ */
.review-card,
.service-card,
.faq-question,
.promise-card,
.magnetic {
  cursor: pointer;
}

.review-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(31, 61, 46, 0.12);
}

/* ============================================================
   ACCESSIBILITY — 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;
  }
}
