/* ═══════════════════════════════════════════════
   FONTS
   Redesign: Playfair Display (Display) + Inter (Text)
   ersetzen Syne/DM Sans im Fließtext der Seite.
   Alte Fonts bleiben geladen, da #pflege sie
   weiterhin unverändert nutzt.
═══════════════════════════════════════════════ */
@font-face { font-family: 'Playfair Display'; src: url('assets/fonts/playfair-display-v37-latin-regular.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Playfair Display'; src: url('assets/fonts/playfair-display-v37-latin-600.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Playfair Display'; src: url('assets/fonts/playfair-display-v37-latin-700.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Playfair Display'; src: url('assets/fonts/playfair-display-v37-latin-italic.woff2') format('woff2'); font-weight: 500; font-style: italic; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('assets/fonts/inter-v18-latin-regular.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('assets/fonts/inter-v18-latin-500.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('assets/fonts/inter-v18-latin-600.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }

/* Legacy – ausschließlich noch von #pflege genutzt (dort bewusst unverändert) */
@font-face { font-family: 'Syne'; src: url('assets/fonts/secondary/syne-v24-latin-regular.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Syne'; src: url('assets/fonts/secondary/syne-v24-latin-600.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Syne'; src: url('assets/fonts/secondary/syne-v24-latin-700.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Syne'; src: url('assets/fonts/secondary/syne-v24-latin-800.woff2') format('woff2'); font-weight: 800; font-style: normal; font-display: swap; }
@font-face { font-family: 'DM Sans'; src: url('assets/fonts/secondary/dm-sans-v17-latin-300.woff2') format('woff2'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'DM Sans'; src: url('assets/fonts/secondary/dm-sans-v17-latin-regular.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'DM Sans'; src: url('assets/fonts/secondary/dm-sans-v17-latin-500.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'DM Sans'; src: url('assets/fonts/secondary/dm-sans-v17-latin-300italic.woff2') format('woff2'); font-weight: 300; font-style: italic; font-display: swap; }

/* ═══════════════════════════════════════════════
   CUSTOM PROPERTIES
   Farben: nur sehr leicht nachjustiert (Wunsch:
   Palette soll ähnlich bleiben). #pflege verwendet
   dieselben Variablen und bleibt dadurch optisch
   praktisch identisch.
═══════════════════════════════════════════════ */
:root {
  --forest: #1B2E42;
  --forest-mid: #2C4A6A;
  --moss: #3A5C7A;
  --sage: #AEC2D3;
  --cream: #F8F5EF;
  --sand: #E9EDF1;
  --amber: #C7AB7B;
  --amber-light: #DFC9A2;
  --amber-deep: #A78A55;
  --white: #FDFCFA;
  --text-dark: #1A1A1A;
  --text-mid: #3D4550;
  --text-light: #6B7280;

  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --shadow-sm: none;
  --shadow-md: none;
  --shadow-lg: 0 24px 56px rgba(27,46,66,0.10);
  --shadow-amber: none;
  --border-soft: 1px solid var(--hairline);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  /* Neue Redesign-Tokens – additiv */
  --hairline: rgba(27,46,66,0.15);
  --hairline-light: rgba(27,46,66,0.09);
  --display-font: 'Playfair Display', serif;
  --body-font: 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--body-font);
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: var(--display-font);
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* ═══════════════════════════════════════════════
   SKIP LINK – [M005] Barrierefreiheit
═══════════════════════════════════════════════ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--amber);
  color: var(--forest);
  padding: 10px 20px;
  border-radius: 0 0 8px 8px;
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ═══════════════════════════════════════════════
   NAVIGATION (shared base)
═══════════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 48px;
  background: rgba(27, 46, 74, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none !important;
}
.nav-logo:hover { text-decoration: none !important; }
.nav-logo img { display: block; height: 46px; width: auto; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-family: var(--body-font);
  color: rgba(255,255,255,0.75); text-decoration: none;
  font-size: 0.875rem; font-weight: 400; letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--amber-light); }
.nav-cta {
  background: var(--amber); color: var(--forest) !important;
  padding: 8px 20px; border-radius: var(--radius-sm);
  font-family: var(--body-font);
  font-weight: 600 !important; font-size: 0.85rem !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--amber-light) !important; color: var(--forest) !important; }

/* ═══════════════════════════════════════════════
   HAMBURGER MENU (legacy – datenschutz/impressum)
═══════════════════════════════════════════════ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 200;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════
   NEW NAV (indexm.html) – Pill button + Dropdown
═══════════════════════════════════════════════ */

/* Right side wrapper */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* CTA Pill */
.nav-cta-pill {
  background: var(--amber);
  color: var(--forest);
  padding: 9px 20px;
  border-radius: 100px;
  font-family: var(--body-font);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  box-shadow: none;
}
.nav-cta-pill:hover {
  background: var(--amber-light);
  transform: translateY(-1px);
  box-shadow: none;
}

/* Menu Button */
.nav-menu-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 9px 16px 9px 12px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  position: relative;
  z-index: 201;
}
.nav-menu-btn:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.28);
}
.nav-menu-btn__label {
  font-family: var(--body-font);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-menu-btn.is-open .nav-menu-btn__label { color: rgba(255,255,255,0.9); }
.nav-menu-btn__icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 18px;
  height: 14px;
}
.nav-menu-btn__icon span {
  display: block;
  height: 1.5px;
  background: rgba(255,255,255,0.75);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(.22,1,.36,1), opacity 0.2s, width 0.3s;
  transform-origin: center;
}
.nav-menu-btn__icon span:nth-child(3) { width: 70%; }
.nav-menu-btn.is-open .nav-menu-btn__icon span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}
.nav-menu-btn.is-open .nav-menu-btn__icon span:nth-child(2) { opacity: 0; }
.nav-menu-btn.is-open .nav-menu-btn__icon span:nth-child(3) {
  width: 100%;
  transform: translateY(-5.5px) rotate(-45deg);
}

/* Backdrop Overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 195;
  background: rgba(0,0,0,0);
  transition: background 0.3s, backdrop-filter 0.3s;
}
.nav-overlay.is-open {
  display: block;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(2px);
}

/* Dropdown Panel */
.nav-dropdown {
  position: fixed;
  top: 70px;
  right: 48px;
  z-index: 200;
  width: 360px;
  background: #152238;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  /* Hidden state */
  opacity: 0;
  transform: translateY(-10px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.22s cubic-bezier(.22,1,.36,1),
              transform 0.22s cubic-bezier(.22,1,.36,1);
  transform-origin: top right;
}
.nav-dropdown.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.nav-dropdown__inner { padding: 8px; }

/* Nav Links */
.nav-dropdown__links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 8px;
}
.nav-dropdown__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 14px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.15s;
  position: relative;
  overflow: hidden;
}
.nav-dropdown__item::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 0;
  background: var(--amber);
  border-radius: 0 3px 3px 0;
  transition: width 0.18s cubic-bezier(.22,1,.36,1);
}
.nav-dropdown__item:hover { background: rgba(255,255,255,0.06); }
.nav-dropdown__item:hover::before { width: 3px; }

.nav-dropdown__num {
  font-family: var(--display-font);
  font-size: 0.63rem;
  font-weight: 700;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.08em;
  flex-shrink: 0;
  width: 18px;
  transition: color 0.2s;
}
.nav-dropdown__item:hover .nav-dropdown__num { color: var(--amber); }

.nav-dropdown__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.nav-dropdown__text strong {
  font-family: var(--display-font);
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  display: block;
  transition: color 0.2s;
}
.nav-dropdown__item:hover .nav-dropdown__text strong { color: var(--white); }

/* FIX [H004]: <small> durch .nav-dropdown__small ersetzt */
.nav-dropdown__text small,
.nav-dropdown__small {
  font-size: 0.71rem;
  color: rgba(255,255,255,0.35);
  font-weight: 300;
  line-height: 1.4;
  transition: color 0.2s;
  display: block;
}
.nav-dropdown__item:hover .nav-dropdown__text small,
.nav-dropdown__item:hover .nav-dropdown__small { color: rgba(255,255,255,0.52); }

.nav-dropdown__arrow {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.18);
  flex-shrink: 0;
  transition: color 0.2s, transform 0.18s;
}
.nav-dropdown__item:hover .nav-dropdown__arrow {
  color: var(--amber);
  transform: translateX(3px);
}

/* Footer inside dropdown */
.nav-dropdown__footer {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 10px 6px 6px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.nav-dropdown__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 0;
  background: var(--amber);
  color: var(--forest);
  border-radius: 12px;
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 3px 14px rgba(196,168,118,0.28);
}
.nav-dropdown__cta:hover {
  background: var(--amber-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(196,168,118,0.42);
}
.nav-dropdown__cta-arrow { transition: transform 0.18s; }
.nav-dropdown__cta:hover .nav-dropdown__cta-arrow { transform: translateX(3px); }

.nav-dropdown__tagline {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.1em;
  text-align: center;
  padding-bottom: 2px;
}

/* Staggered animations when opening */
.nav-dropdown.is-open .nav-dropdown__item {
  animation: ddItemIn 0.28s cubic-bezier(.22,1,.36,1) both;
}
.nav-dropdown.is-open .nav-dropdown__item:nth-child(1) { animation-delay: 0.03s; }
.nav-dropdown.is-open .nav-dropdown__item:nth-child(2) { animation-delay: 0.07s; }
.nav-dropdown.is-open .nav-dropdown__item:nth-child(3) { animation-delay: 0.11s; }
.nav-dropdown.is-open .nav-dropdown__item:nth-child(4) { animation-delay: 0.15s; }
.nav-dropdown.is-open .nav-dropdown__item:nth-child(5) { animation-delay: 0.19s; }
.nav-dropdown.is-open .nav-dropdown__footer {
  animation: ddItemIn 0.28s 0.22s cubic-bezier(.22,1,.36,1) both;
}

@keyframes ddItemIn {
  from { opacity: 0; transform: translateX(8px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
#hero {
  min-height: 92vh;
  background: var(--forest);
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
  position: relative; overflow: hidden;
  padding-top: 80px;
  width: 100%;
}
/* Ruhiger Hintergrund statt Radial-Glow-Muster: eine feine Kontur-Linie, die
   an einen Aktendeckel/Registerrand erinnert – das Signature-Element der Seite. */
.hero-bg-pattern {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 30%);
  pointer-events: none;
}
.hero-grid-lines {
  position: absolute; top: 0; bottom: 0; right: 38%;
  width: 1px;
  background: rgba(255,255,255,0.08);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  padding: 72px 64px 72px 80px;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: none; border: none;
  color: var(--amber-light);
  padding: 0; font-size: 0.78rem; font-weight: 600;
  margin-bottom: 28px; letter-spacing: 0.16em; text-transform: uppercase;
}
.hero-badge::before { content: ''; width: 30px; height: 1.5px; background: var(--amber); display: inline-block; }
h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.1rem, 3.6vw, 3.35rem);
  font-weight: 800; line-height: 1.14;
  color: var(--white); letter-spacing: -0.02em;
  margin-bottom: 22px;
}
h1 .highlight {
  color: var(--amber-light);
  position: relative; display: inline-block;
  font-style: normal; font-weight: 800;
}
.hero-tagline {
  font-family: var(--body-font);
  font-size: 1.08rem; font-weight: 400; line-height: 1.75;
  color: rgba(255,255,255,0.68); margin-bottom: 40px;
  max-width: 480px;
}
.hero-tagline strong { color: var(--amber-light); font-weight: 600; }
.hero-cta-row { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; }

.btn-primary {
  background: var(--amber); color: var(--forest);
  padding: 15px 32px; border-radius: 4px;
  font-family: var(--body-font);
  font-weight: 600; font-size: 0.98rem; text-decoration: none;
  display: inline-block; transition: transform 0.3s var(--ease), background 0.25s;
  box-shadow: none;
}
.btn-primary:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
}
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  color: rgba(255,255,255,0.82); text-decoration: none;
  font-family: var(--body-font);
  font-size: 0.95rem; font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s, gap 0.2s;
}
.btn-ghost:hover { color: var(--amber-light); border-color: var(--amber-light); gap: 12px; }
.btn-ghost::after { content: '→'; transition: transform 0.2s; }

/* Rechte Hero-Spalte: statt Browser-Mockup das Klintan-Markenzeichen selbst –
   die Steilküsten-Silhouette aus dem Logo, großformatig freigestellt, mit
   Namensherkunft als leiser Beleg und den Kennzahlen darunter. Ruhiger,
   markanter und untrennbar mit "Klintan" verknüpft statt eines generischen
   Browser- oder Dashboard-Mockups. */
.hero-visual {
  position: relative; z-index: 2;
  padding: 72px 80px 72px 56px;
  display: flex; flex-direction: column; justify-content: center;
  align-items: center;
  gap: 0;
  border-left: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.h1-sub {
  font-family: var(--body-font);
  font-size: 0.5em;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.01em;
  display: block;
  margin-top: 10px;
}

.cliff-mark {
  position: relative;
  width: 100%;
  max-width: 260px;
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 36px;
}
.cliff-mark::before {
  content: '';
  position: absolute; inset: -10%;
  background: radial-gradient(circle, rgba(199,171,123,0.14) 0%, rgba(199,171,123,0) 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cliff-mark img {
  position: relative; z-index: 1;
  width: 78%; height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.28));
}
.cliff-quote {
  font-family: var(--body-font);
  font-style: normal; font-weight: 500;
  font-size: 0.88rem; line-height: 1.6;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.55);
  max-width: 320px;
  margin-bottom: 40px;
}

.stats-row {
  display: flex; flex-direction: column; gap: 0;
  width: 100%; max-width: 320px;
  margin-top: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-card {
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  border-radius: 0; padding: 16px 0;
  text-align: left;
  display: flex; align-items: baseline; justify-content: space-between;
  transition: none;
}
.stat-card:last-child { border-bottom: none; }
.stat-card:hover { transform: none; background: none; }
.stat-number {
  font-family: var(--display-font);
  font-size: 1.15rem; font-weight: 600;
  color: var(--amber-light); display: block; line-height: 1;
  margin-bottom: 0;
  order: 2;
}
.stat-label {
  font-family: var(--body-font);
  font-size: 0.85rem; color: rgba(255,255,255,0.5);
  order: 1;
}

/* ═══════════════════════════════════════════════
   SECTION SHARED
═══════════════════════════════════════════════ */
section { padding: 112px 80px; }
.section-label {
  font-family: var(--body-font);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--amber-deep);
  margin-bottom: 16px; display: flex; align-items: center; gap: 10px;
}
.section-label::before {
  content: ''; width: 30px; height: 1px; background: var(--amber-deep);
  display: inline-block;
}
h2 {
  font-family: var(--display-font);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600; line-height: 1.22;
  letter-spacing: -0.005em; color: var(--forest);
  margin-bottom: 20px;
}
.section-intro {
  font-family: var(--body-font);
  font-size: 1.05rem; line-height: 1.75; color: var(--text-mid);
  max-width: 620px; margin-bottom: 48px; font-weight: 400;
}

/* ═══════════════════════════════════════════════
   PROBLEM / PAIN SECTION
   Emoji-Icon-Boxen ersetzt durch nummerierte
   Aktenreiter-Zeilen, flach statt Card-Schatten
═══════════════════════════════════════════════ */
#problem { background: var(--cream); padding: 100px 80px; }
.pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.pain-cards { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--hairline); }
.pain-card {
  background: none; border-radius: 0;
  padding: 24px 4px; display: flex; gap: 20px; align-items: flex-start;
  border: none; border-bottom: 1px solid var(--hairline);
  box-shadow: none;
  counter-increment: pain-counter;
  transition: padding-left 0.35s var(--ease);
}
.pain-card:hover { padding-left: 10px; }
.pain-cards { counter-reset: pain-counter; }
.pain-icon {
  font-size: 0; flex-shrink: 0;
  width: 32px; height: auto; border-radius: 0;
  background: none; display: flex; align-items: flex-start; justify-content: flex-start;
  padding-top: 3px;
}
.pain-icon::before {
  content: counter(pain-counter, decimal-leading-zero);
  font-family: var(--display-font); font-style: italic;
  font-size: 1rem; color: var(--amber-deep); font-weight: 500;
}
.pain-card h3 {
  font-family: var(--display-font); font-size: 1.05rem; font-weight: 600;
  color: var(--forest); margin-bottom: 6px;
}
.pain-card p { font-family: var(--body-font); font-size: 0.92rem; color: var(--text-light); line-height: 1.65; }
.solution-box {
  background: var(--forest); border-radius: var(--radius-lg); padding: 44px 40px;
  color: var(--white);
}
.solution-box h3 {
  font-family: var(--display-font); font-size: 1.4rem; font-weight: 600;
  font-style: italic;
  color: var(--amber-light); margin-bottom: 18px; letter-spacing: -0.01em;
}
.solution-box p {
  font-family: var(--body-font);
  font-size: 0.96rem; line-height: 1.75; color: rgba(255,255,255,0.75);
  margin-bottom: 28px; font-weight: 400;
}
.solution-check { display: flex; flex-direction: column; gap: 0; }
.check-item {
  display: flex; gap: 12px; align-items: center;
  font-family: var(--body-font);
  font-size: 0.9rem; color: rgba(255,255,255,0.85);
  padding: 11px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.check-item::before {
  content: '—'; color: var(--amber-light);
  font-weight: 400; font-size: 0.9rem; flex-shrink: 0;
  background: none; border-radius: 0;
  width: auto; height: auto; display: inline-block;
}

/* ═══════════════════════════════════════════════
   TRUST STATS BAR
═══════════════════════════════════════════════ */
.trust-stats-bar {
  background: var(--forest);
  padding: 48px 80px;
  position: relative;
}
.trust-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}
.trust-stat {
  text-align: left;
  padding: 0 32px;
  border-left: 1px solid rgba(255,255,255,0.14);
}
.trust-stat:first-child { border-left: none; padding-left: 0; }
.trust-stat__number {
  font-family: var(--display-font);
  font-size: 2rem;
  font-weight: 600;
  font-style: italic;
  color: var(--amber-light);
  margin-bottom: 6px;
}
.trust-stat__label {
  font-family: var(--body-font);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}

/* ═══════════════════════════════════════════════
   LOKALES VERSPRECHEN
═══════════════════════════════════════════════ */
#versprechen { background: var(--white); }
.versprechen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.versprechen-box {
  background: var(--forest);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  color: var(--white);
}
.versprechen-box h3 {
  font-family: var(--display-font);
  font-style: italic;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--amber-light);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.versprechen-box > p {
  font-family: var(--body-font);
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
  font-weight: 400;
}
.versprechen-checks {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
}
.versprechen-checks .check-item {
  font-family: var(--body-font);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  align-items: flex-start;
  padding: 11px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.versprechen-checks .check-item strong { color: var(--white); }
.versprechen-footer {
  font-family: var(--body-font);
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.14);
}

/* ═══════════════════════════════════════════════
   DAS BEKOMMEN SIE
   Karten -> flache Register-Zeilen mit Nummerierung
═══════════════════════════════════════════════ */
#das-bekommen-sie { background: var(--cream); }
.deliverables-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0 0 40px;
  padding: 0;
  border-top: 1px solid var(--hairline);
  counter-reset: deliverable-counter;
}
.deliverable-item {
  background: none;
  border-radius: 0;
  padding: 26px 4px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  border: none;
  border-bottom: 1px solid var(--hairline);
  box-shadow: none;
  counter-increment: deliverable-counter;
  transition: padding-left 0.35s var(--ease);
}
.deliverable-item:hover { padding-left: 10px; box-shadow: none; transform: none; }
.deliverable-icon {
  font-size: 0;
  flex-shrink: 0;
  width: 36px; height: auto; border-radius: 0;
  background: none;
  display: flex; align-items: flex-start; justify-content: flex-start;
  padding-top: 3px;
}
.deliverable-icon::before {
  content: counter(deliverable-counter, decimal-leading-zero);
  font-family: var(--display-font); font-style: italic;
  font-size: 1rem; color: var(--amber-deep); font-weight: 500;
}
.deliverable-item h3 {
  font-family: var(--display-font);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 8px;
}
.deliverable-item p {
  font-family: var(--body-font);
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
}
.deliverables-closing {
  font-family: var(--body-font);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 720px;
  font-weight: 400;
}

/* ═══════════════════════════════════════════════
   BRANCHEN
   Duenne Kontur statt Schatten, Icon-Balken statt Emoji
═══════════════════════════════════════════════ */
#branchen { background: var(--white); }
.branchen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  margin-bottom: 48px;
}
.branche-card {
  background: var(--white);
  border: none;
  border-radius: 0;
  padding: 36px 30px;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}

.branche-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--forest);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.branche-card:hover::before { 
  transform: scaleX(1); 
}

.branche-card:hover {
  transform: none;
  box-shadow: none;
  background: var(--cream);
}

.branche-card--featured {
  background: var(--forest) !important;
  border-color: var(--forest) !important;
  color: var(--white) !important;
}

.branche-card--featured::before {
  background: var(--amber-light);
  transform: scaleX(0);
}

.branche-card--featured:hover::before {
  transform: scaleX(1) !important;
}

.branche-card--featured:hover {
  background: var(--forest) !important;
}

.branche-card--featured h3 { 
  color: var(--amber-light) !important; 
}

.branche-card.branche-card--featured p { 
  color: var(--white) !important; 
  opacity: 1 !important;
}

.branche-card--featured p em,
.branche-card--featured p strong {
  color: var(--white) !important;
}

.branche-card--featured .branche-card__em { 
  color: rgba(255, 255, 255, 0.95) !important;
}

.branche-card--featured .branche-card__em em {
  color: var(--amber-light) !important;
  font-style: normal;
  font-weight: 600;
}

.branchen-grid { counter-reset: branche-counter; }
.branche-card__icon {
  font-size: 0;
  margin-bottom: 18px;
  display: block;
}
.branche-card__icon::before {
  counter-increment: branche-counter;
  content: counter(branche-counter, decimal-leading-zero);
  font-family: var(--display-font); font-style: italic;
  font-size: 1.3rem; color: var(--amber-deep); font-weight: 500;
  display: block; line-height: 1;
}
.branche-card--featured .branche-card__icon::before { color: var(--amber-light); }

.branche-card h3 {
  font-family: var(--display-font);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 12px;
}

.branche-card p {
  font-family: var(--body-font);
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 12px;
}

.branche-card__em {
  font-family: var(--body-font);
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.55;
  margin-bottom: 0;
}

.branchen-cta {
  text-align: left;
  max-width: 560px;
  margin: 0;
}

.branchen-cta p {
  font-family: var(--body-font);
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Transition Delays fuer die Reveal-Animationen */
.td-01 { transition-delay: 0.10s; }
.td-02 { transition-delay: 0.20s; }
.td-03 { transition-delay: 0.30s; }
.td-04 { transition-delay: 0.40s; }
/* ═══════════════════════════════════════════════
   LEISTUNGEN
   Feature-Cards flacher, Icon-Balken statt Emoji
═══════════════════════════════════════════════ */
#leistungen { background: var(--white); }
.leistungen-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-bottom: 60px; }
.leistungen-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 56px;
  margin: 0; padding: 0; list-style: none;
  counter-reset: leistung-counter;
}
.leistungen-list__item {
  counter-increment: leistung-counter;
  display: flex; align-items: flex-start; gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--hairline);
}
.leistungen-list__num {
  flex-shrink: 0;
  font-family: var(--display-font); font-style: italic; font-weight: 500;
  font-size: 1.4rem; line-height: 1.3; color: var(--amber-deep);
  width: 40px;
}
.leistungen-list__num::before { content: counter(leistung-counter, decimal-leading-zero); }
.leistungen-list__item strong {
  font-family: var(--display-font); font-size: 1.05rem; font-weight: 600;
  color: var(--forest); margin-bottom: 6px; display: block;
}
.leistungen-list__item p { font-family: var(--body-font); font-size: 0.9rem; color: var(--text-light); line-height: 1.65; margin: 0; }
.leistungen-list__item a { color: var(--moss); }
.leistungen-list__item a:hover { color: var(--amber-deep); }

.leistungen-sub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.leistungen-sub-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--forest); border-radius: var(--radius-md); padding: 22px 24px;
  text-decoration: none; position: relative; overflow: hidden;
  border: 1px solid var(--forest);
  transition: background 0.25s;
}
.leistungen-sub-card::before {
  content: ''; position: absolute; top: 0; left: 0; bottom: 0;
  width: 2px; background: var(--amber-light);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.3s;
}
.leistungen-sub-card:hover::before { transform: scaleY(1); }
.leistungen-sub-card:hover { transform: none; box-shadow: none; background: var(--moss); }
.leistungen-sub-card__icon { font-size: 0; flex-shrink: 0; width: 0; }
.leistungen-sub-card__body { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.leistungen-sub-card__body strong { font-family: var(--display-font); font-size: 1rem; font-weight: 600; color: var(--white); }
.leistungen-sub-card__body small { font-family: var(--body-font); font-size: 0.8rem; color: rgba(255,255,255,0.7); line-height: 1.4; }
.leistungen-sub-card__arrow { color: var(--amber-light); font-size: 1.1rem; flex-shrink: 0; transition: transform 0.25s; }
.leistungen-sub-card:hover .leistungen-sub-card__arrow { transform: translateX(4px); }

@media (max-width: 860px) {
  .leistungen-sub-grid { grid-template-columns: 1fr; }
  .branchen-grid { grid-template-columns: 1fr; }
  .leistungen-list { grid-template-columns: 1fr; column-gap: 0; }
}


/* ═══════════════════════════════════════════════
   PREISE
═══════════════════════════════════════════════ */
#preise { background: var(--forest); }
#preise h2 { color: var(--white); }
#preise .section-label { color: var(--amber); }
#preise .section-intro { color: rgba(255,255,255,0.65); }

.preise-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; align-items: start; margin-bottom: 48px;
}
.paket-card {
  background: var(--white); border-radius: var(--radius-md); padding: 40px 36px;
  position: relative; overflow: hidden;
  border: 1px solid transparent;
  transition: border-color 0.25s;
}
.paket-card:hover { transform: none; box-shadow: none; border-color: var(--hairline); }
.paket-card::after {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 2px; background: var(--sand);
}
.paket-card.featured {
  background: var(--white); border: 1px solid var(--amber);
  transform: none;
}
.paket-card.featured::after { background: var(--amber); height: 2px; }
.paket-card.premium::after {
  background: var(--moss); height: 2px;
}

.paket-tag {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; border-radius: 100px;
  padding: 4px 12px; margin-bottom: 20px;
  background: var(--cream); color: var(--text-light);
}
.paket-card.featured .paket-tag { background: var(--amber); color: var(--forest); }
.paket-card.premium .paket-tag { background: var(--forest); color: var(--amber); }

.paket-name {
  font-family: var(--display-font); font-size: 1.25rem; font-weight: 600;
  color: var(--forest); margin-bottom: 6px;
}
.paket-subtitle { font-size: 0.8rem; color: var(--text-light); margin-bottom: 24px; line-height: 1.4; }

.paket-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.paket-price .currency {
  font-family: var(--display-font); font-size: 1.4rem; font-weight: 400;
  color: var(--text-mid); align-self: flex-start; margin-top: 8px;
}
.paket-price .amount {
  font-family: var(--display-font); font-size: 3.2rem; font-weight: 600;
  color: var(--forest); line-height: 1; letter-spacing: -0.04em;
}
.paket-price-note { font-size: 0.78rem; color: var(--text-light); margin-bottom: 24px; }

.paket-divider { height: 1px; background: var(--sand); margin: 24px 0; }

.paket-features {
  list-style: none; display: flex; flex-direction: column;
  gap: 10px; margin-bottom: 32px;
}
.paket-features li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.875rem; color: var(--text-mid); line-height: 1.45;
}
.paket-features li .tick { color: var(--moss); font-weight: 700; flex-shrink: 0; font-size: 0.9rem; margin-top: 1px; }
.paket-features li strong { color: var(--forest); }

.paket-cta {
  display: block; width: 100%; text-align: center;
  padding: 13px 0; border-radius: var(--radius-sm);
  font-family: var(--body-font); font-size: 0.9rem; font-weight: 600;
  text-decoration: none; cursor: pointer;
  border: 1px solid var(--forest);
  background: transparent; color: var(--forest);
  transition: all 0.2s;
}
.paket-cta:hover { background: var(--forest); color: var(--white); }
.paket-card.featured .paket-cta {
  background: var(--amber); color: var(--forest);
  border-color: var(--amber); box-shadow: none;
}
.paket-card.featured .paket-cta:hover { background: var(--amber-light); border-color: var(--amber-light); }
.paket-card.premium .paket-cta { border-color: var(--forest); color: var(--forest); }
.paket-card.premium .paket-cta:hover { background: var(--forest); color: var(--white); }
.paket-delivery { text-align: center; font-size: 0.75rem; color: var(--text-light); margin-top: 12px; }

.preis-info-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.info-block {
  background: none; border: none;
  border-top: 1px solid rgba(255,255,255,0.14);
  border-radius: 0; padding: 28px 0 0;
}
.info-title {
  font-family: var(--display-font); font-size: 1rem; font-weight: 700;
  color: var(--amber); margin-bottom: 10px;
}
.info-block p { font-size: 0.875rem; color: rgba(255,255,255,0.7); line-height: 1.7; }
.info-block a { color: var(--amber-light); }
.info-block a:hover { color: var(--amber); }
.process-steps { display: flex; flex-direction: column; gap: 12px; margin-top: 4px; }
.step { display: flex; gap: 14px; align-items: flex-start; }
.step-num {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--amber); color: var(--forest);
  font-size: 0.75rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.step-text { font-size: 0.875rem; color: rgba(255,255,255,0.75); line-height: 1.5; padding-top: 3px; }
.preis-guarantee {
  text-align: center; margin-top: 32px;
  font-size: 0.85rem; color: rgba(255,255,255,0.45); letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════
   VERGLEICH: KLINTAN VS. BAUKASTEN
═══════════════════════════════════════════════ */
#vergleich { background: var(--white); }
.vergleich-table-wrapper {
  overflow-x: auto; margin: 40px 0 32px;
  border-radius: var(--radius-sm); border: 1px solid var(--hairline);
  -webkit-overflow-scrolling: touch;
}
.vergleich-table {
  width: 100%; border-collapse: collapse; min-width: 620px;
  font-size: 0.9rem; background: var(--white);
}
.vergleich-table thead th {
  font-family: var(--display-font); font-weight: 600; font-size: 0.95rem;
  color: var(--forest); background: var(--cream);
  text-align: left; padding: 20px 22px; border-bottom: 2px solid var(--sand);
}
.vergleich-table thead th.vergleich-col--highlight {
  background: var(--forest); color: var(--white);
}
.vergleich-subcol { font-weight: 400; font-size: 0.75rem; opacity: 0.7; display: block; margin-top: 2px; }
.vergleich-table tbody th {
  text-align: left; padding: 18px 22px; font-weight: 700; color: var(--forest);
  font-size: 0.875rem; white-space: nowrap; border-bottom: 1px solid var(--sand);
}
.vergleich-table tbody td {
  padding: 18px 22px; color: var(--text-mid); line-height: 1.5; border-bottom: 1px solid var(--sand);
}
.vergleich-table tbody tr:last-child th,
.vergleich-table tbody tr:last-child td { border-bottom: none; }
.vergleich-table tbody td.vergleich-col--highlight {
  background: rgba(120,151,179,0.07); color: var(--forest); font-weight: 500;
}
.vergleich-icon { display: inline-flex; margin-right: 6px; font-weight: 600; }
.vergleich-icon--minus { color: #c0554a; }
.vergleich-icon--plus { color: var(--moss); }
.vergleich-closing {
  text-align: center; max-width: 640px; margin: 0 auto; color: var(--text-light);
  font-size: 0.95rem; line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   QUALITÄTS-GARANTIEN
═══════════════════════════════════════════════ */
#garantien { background: var(--cream); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); margin-top: 40px; counter-reset: trust-counter; }
.trust-card {
  background: var(--white); border-radius: 0; padding: 36px 30px;
  text-align: left; border: none;
  transition: background 0.25s;
}
.trust-card:hover { transform: none; box-shadow: none; background: var(--cream); }
.trust-card__icon {
  font-size: 0; display: block;
  margin-bottom: 20px;
}
.trust-card__icon::before {
  counter-increment: trust-counter;
  content: counter(trust-counter, decimal-leading-zero);
  font-family: var(--display-font); font-style: italic;
  font-size: 1.3rem; color: var(--amber-deep); font-weight: 500;
  display: block; line-height: 1;
}
.trust-card h3 {
  font-family: var(--display-font); font-size: 1.08rem; font-weight: 600;
  color: var(--forest); margin-bottom: 12px;
}
.trust-card p { font-family: var(--body-font); font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

@media (max-width: 860px) {
  .trust-grid { grid-template-columns: 1fr; }
  .vergleich-table { min-width: 560px; }
}

/* ═══════════════════════════════════════════════
   ABO-PAKETE
═══════════════════════════════════════════════ */
#abo { background: var(--cream); }
#abo h2, #abo .abo-heading { color: var(--forest); font-family: var(--display-font); font-weight: 600; }
#abo .section-label { color: var(--moss); font-family: 'DM Sans', sans-serif; }
#abo .section-intro { color: var(--text-mid); font-family: 'DM Sans', sans-serif; font-weight: 300; }

/* #pflege bleibt bewusst unverändert: section-label/section-intro hier
   auf die ursprüngliche Syne/DM-Sans-Optik zurücksetzen, da diese
   generischen Klassen sonst das neue Playfair Display/Inter erben würden. */
#pflege > .section-label { font-family: 'DM Sans', sans-serif; font-weight: 600; }
#pflege > .section-intro { font-family: 'DM Sans', sans-serif; font-weight: 300; }

.abo-heading {
  font-family: var(--display-font);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600; line-height: 1.15;
  letter-spacing: -0.02em; color: var(--forest);
  margin-bottom: 20px;
}
.abo-heading span { color: var(--amber); }

/* ── PFLEGE TIMELINE (Stack-Layout statt 3er-Grid) ── */
.pflege-timeline {
  position: relative;
  max-width: 760px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0;
}
.pflege-step {
  display: grid; grid-template-columns: 64px 1fr;
  gap: 24px; position: relative;
}
.pflege-step__marker {
  display: flex; flex-direction: column; align-items: center;
  position: relative;
}
.pflege-step__marker::before {
  content: ''; position: absolute; top: 64px; bottom: -32px; left: 50%;
  width: 2px; background: var(--sand); transform: translateX(-50%);
}
.pflege-step--total .pflege-step__marker::before { display: none; }
.pflege-step__dot {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--forest); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display-font); font-weight: 600; font-size: 1.1rem;
  flex-shrink: 0; z-index: 1;
}
.pflege-step__dot--total { background: var(--amber); font-size: 1.4rem; }
.pflege-step__plus {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--cream); border: 2px dashed var(--amber);
  color: var(--amber); display: flex; align-items: center; justify-content: center;
  font-family: var(--display-font); font-weight: 600; font-size: 1.6rem;
  flex-shrink: 0; z-index: 1;
}
.pflege-step__card {
  background: var(--white); border-radius: 18px; padding: 32px 32px 28px;
  border: 1.5px solid var(--sand); margin-bottom: 32px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.pflege-step__card:hover { transform: translateX(4px); box-shadow: 0 16px 44px rgba(0,0,0,0.08); }
.pflege-step__card--featured { border-color: var(--amber); box-shadow: 0 16px 44px rgba(196,168,118,0.14); }
.pflege-step__card--total {
  background: var(--forest); border-color: var(--forest); margin-bottom: 0;
  text-align: center; padding: 30px 32px;
}
.pflege-step__head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 16px; flex-wrap: wrap; margin-bottom: 4px;
}
.pflege-step__head .abo-price { margin-bottom: 0; }
.pflege-total__label {
  color: rgba(255,255,255,0.75); font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px;
}
.pflege-total__amount {
  font-family: var(--display-font); font-size: 1.3rem; color: var(--white); margin-bottom: 8px;
}
.pflege-total__amount strong { color: var(--amber-light); }
.pflege-total__note { color: rgba(255,255,255,0.6); font-size: 0.85rem; }

.abo-features--row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 12px;
  margin-bottom: 24px;
}

@media (max-width: 640px) {
  .pflege-step { grid-template-columns: 48px 1fr; gap: 14px; }
  .pflege-step__dot, .pflege-step__plus { width: 48px; height: 48px; font-size: 0.9rem; }
  .pflege-step__marker::before { top: 48px; }
  .pflege-step__card { padding: 24px 20px; }
  .abo-features--row { grid-template-columns: 1fr; }
}

.abo-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--amber); color: var(--forest);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; border-radius: 100px;
  padding: 5px 14px; margin-bottom: 20px;
}
.abo-badge::before { content: '★'; font-size: 0.65rem; }
.abo-tag {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; border-radius: 100px;
  padding: 4px 12px; margin-bottom: 20px;
  background: var(--cream); color: var(--text-light);
}
.abo-name {
  font-family: var(--display-font); font-size: 1.2rem; font-weight: 600;
  color: var(--forest); margin-bottom: 4px;
}
.abo-subtitle { font-size: 0.8rem; color: var(--text-light); margin-bottom: 24px; line-height: 1.4; }
.abo-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.abo-price .currency {
  font-family: var(--display-font); font-size: 1.3rem; font-weight: 400;
  color: var(--text-mid); align-self: flex-start; margin-top: 8px;
}
.abo-price .amount {
  font-family: var(--display-font); font-size: 3rem; font-weight: 600;
  color: var(--forest); line-height: 1; letter-spacing: -0.04em;
}
.abo-price-note { font-size: 0.78rem; color: var(--text-light); margin-bottom: 24px; }
.abo-divider { height: 1px; background: var(--sand); margin: 22px 0; }
.abo-features {
  list-style: none; display: flex; flex-direction: column;
  gap: 10px; margin-bottom: 32px;
}
.abo-features li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.875rem; color: var(--text-mid); line-height: 1.45;
}
.abo-features li .tick { color: var(--moss); font-weight: 700; flex-shrink: 0; font-size: 0.9rem; margin-top: 1px; }
.pflege-step__card--featured .abo-features li .tick { color: var(--amber); }
.abo-cta {
  display: block; width: 100%; text-align: center;
  padding: 13px 0; border-radius: 8px;
  font-family: var(--body-font); font-size: 0.9rem; font-weight: 600;
  text-decoration: none; cursor: pointer;
  border: 2px solid var(--forest);
  background: transparent; color: var(--forest);
  transition: all 0.2s;
}
.abo-cta:hover { background: var(--forest); color: var(--white); }
.pflege-step__card--featured .abo-cta {
  background: var(--amber); color: var(--forest);
  border-color: var(--amber); box-shadow: 0 4px 20px rgba(196,168,118,0.35);
}
.pflege-step__card--featured .abo-cta:hover { background: var(--amber-light); border-color: var(--amber-light); }

/* ═══════════════════════════════════════════════
   ÜBER UNS – FULL-BLEED SPLIT-SCREEN
═══════════════════════════════════════════════ */
#ueber-uns.split-section {
  display: grid; grid-template-columns: 1fr 1fr;
  padding: 0; align-items: stretch; min-height: 640px;
  background: var(--cream);
}
.split-panel { position: relative; overflow: hidden; display: flex; align-items: center; }
.split-panel__inner { padding: 80px 64px; position: relative; z-index: 1; max-width: 560px; margin-left: auto; }
.split-panel--dark { background: var(--forest); justify-content: flex-end; }
.split-panel--dark .split-panel__inner { margin-left: 0; margin-right: auto; }
.split-panel--dark::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 260px; height: 260px; border-radius: 50%;
  background: rgba(196,168,118,0.1);
}
.split-panel--dark::after {
  content: ''; position: absolute; bottom: -80px; left: -40px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(120,151,179,0.12);
}
.split-panel--light { background: var(--cream); justify-content: flex-start; }
.map-pin { font-size: 3rem; margin-bottom: 20px; display: block; position: relative; z-index: 1; }
.split-panel--dark h3 {
  font-family: var(--display-font); font-size: 1.7rem; font-weight: 600;
  color: var(--white); margin-bottom: 16px; position: relative; z-index: 1;
}
.split-panel--dark p { font-size: 0.95rem; color: rgba(255,255,255,0.7); line-height: 1.75; position: relative; z-index: 1; }
.region-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; position: relative; z-index: 1; }
.region-tag {
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8);
  border-radius: 100px; padding: 4px 12px; font-size: 0.78rem;
  border: 1px solid rgba(255,255,255,0.15);
}
.about-text p { font-size: 1rem; line-height: 1.8; color: var(--text-mid); font-weight: 300; margin-bottom: 20px; }
.about-text p strong { color: var(--forest); font-weight: 600; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.value-item { display: flex; gap: 10px; align-items: flex-start; }

@media (max-width: 900px) {
  #ueber-uns.split-section { grid-template-columns: 1fr; min-height: 0; }
  .split-panel__inner { max-width: 100%; margin: 0; padding: 56px 32px; }
  .split-panel--dark, .split-panel--light { justify-content: center; }
}

/* ── TEAM-TEASER (Über-uns-Sektion → Link zu team.html) ── */
.team-teaser {
  display: flex; align-items: center; gap: 18px;
  margin-top: 32px; padding: 18px 22px;
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.team-teaser:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-color: var(--amber);
}
.team-teaser__avatars { display: flex; flex-shrink: 0; }
.team-teaser__avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--forest);
  color: var(--amber-light);
  font-family: var(--display-font); font-weight: 600; font-size: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--white);
  margin-left: -10px;
}
.team-teaser__avatar:first-child { margin-left: 0; }
.team-teaser__text { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.team-teaser__text strong { font-size: 0.95rem; color: var(--forest); font-weight: 700; }
.team-teaser__text small { font-size: 0.8rem; color: var(--text-light); }
.team-teaser__arrow { color: var(--amber); font-size: 1.1rem; flex-shrink: 0; transition: transform 0.2s; }
.team-teaser:hover .team-teaser__arrow { transform: translateX(4px); }

@media (max-width: 900px) {
  .team-teaser { flex-wrap: wrap; }
}
.value-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); flex-shrink: 0; margin-top: 6px; }
.value-text { font-size: 0.875rem; color: var(--text-mid); line-height: 1.5; }
.value-text strong { display: block; color: var(--forest); font-weight: 600; font-size: 0.9rem; }


/* ═══════════════════════════════════════════════
   KONTAKT
═══════════════════════════════════════════════ */
#kontakt { background: var(--white); }
.kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.kontakt-form-wrapper { background: var(--cream); border-radius: var(--radius-md); padding: 48px; border: 1px solid var(--hairline-light); }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-family: var(--body-font); font-size: 0.8rem; font-weight: 600;
  color: var(--forest); margin-bottom: 8px; letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--white); border: 1px solid var(--hairline);
  border-radius: var(--radius-sm); padding: 12px 16px;
  font-family: var(--body-font); font-size: 0.95rem;
  color: var(--text-dark); outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--moss); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.botcheck-hidden { display: none; }

.kontakt-info > * + * { margin-top: 24px; }
.kontakt-info h3 {
  font-family: var(--display-font); font-size: 1.3rem; font-weight: 600;
  color: var(--forest); margin-bottom: 6px;
}
.kontakt-info p { font-family: var(--body-font); font-size: 0.925rem; color: var(--text-light); line-height: 1.7; }
.contact-card { background: var(--forest); border-radius: var(--radius-md); padding: 30px; color: var(--white); }
.contact-card .info-title {
  font-family: var(--display-font); font-size: 0.95rem; font-weight: 600;
  color: var(--amber-light); margin-bottom: 16px;
}
.contact-detail {
  display: flex; gap: 12px; align-items: center;
  font-family: var(--body-font);
  font-size: 0.875rem; color: rgba(255,255,255,0.8); margin-bottom: 10px;
}
.contact-detail .c-icon { font-size: 0; width: 16px; height: 1px; background: var(--amber-light); flex-shrink: 0; }
.promise-box { background: var(--cream); border-radius: var(--radius-md); padding: 28px; border-left: 2px solid var(--amber-deep); }
.promise-box--moss { border-left-color: var(--moss); }
.promise-title {
  font-family: var(--display-font); font-size: 1rem; font-weight: 600;
  color: var(--forest); margin-bottom: 10px;
}
.promise-box p { font-family: var(--body-font); font-size: 0.875rem; color: var(--text-mid); line-height: 1.7; }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
footer {
  background: var(--forest); padding: 48px 80px;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { display: flex; align-items: center; justify-content: center; }
.footer-brand img { display: block; height: 38px; width: auto; }
footer p { font-family: var(--body-font); font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-family: var(--body-font); font-size: 0.8rem; color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-links a:hover { color: var(--amber-light); }

/* ═══════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 4px 24px rgba(196,168,118,0.3); }
  50%       { box-shadow: 0 8px 40px rgba(196,168,118,0.6); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(12px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-badge   { animation: fadeUp 0.55s 0.05s ease both; }
h1            { animation: fadeUp 0.65s 0.18s ease both; }
.hero-tagline { animation: fadeUp 0.65s 0.30s ease both; }
.hero-cta-row { animation: fadeUp 0.65s 0.42s ease both; }
.hero-visual  { animation: slideInRight 0.8s 0.25s cubic-bezier(.22,1,.36,1) both; }
.cliff-mark { animation: floatY 5s 1s ease-in-out infinite; }
.stat-card { animation: countUp 0.5s ease both; }
.stat-card:nth-child(1) { animation-delay: 0.55s; }
.stat-card:nth-child(2) { animation-delay: 0.70s; }
.stat-card:nth-child(3) { animation-delay: 0.85s; }
.btn-primary { animation: pulseGlow 3s 1.5s ease-in-out infinite; }
.btn-primary:hover { animation: none; }

h1 .highlight {
  background: linear-gradient(90deg, var(--amber) 30%, var(--amber-light) 50%, var(--amber) 70%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s 1s linear infinite;
}

.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(.22,1,.36,1), transform 0.65s cubic-bezier(.22,1,.36,1);
}
.reveal.reveal-left  { transform: translateX(-32px); }
.reveal.reveal-right { transform: translateX(32px); }
.reveal.reveal-scale { transform: scale(0.94); }
.reveal.visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════
   UTILITY CLASSES
═══════════════════════════════════════════════ */
.td-005 { transition-delay: 0.05s; }
.td-008 { transition-delay: 0.08s; }
.td-01  { transition-delay: 0.10s; }
.td-015 { transition-delay: 0.15s; }
.td-016 { transition-delay: 0.16s; }
.td-02  { transition-delay: 0.20s; }
.td-024 { transition-delay: 0.24s; }
.td-025 { transition-delay: 0.25s; }
.td-032 { transition-delay: 0.32s; }
.td-040 { transition-delay: 0.40s; }
.td-048 { transition-delay: 0.48s; }
.td-056 { transition-delay: 0.56s; }
.td-064 { transition-delay: 0.64s; }
.mb-0 { margin-bottom: 0; }
.mt-48 { margin-top: 48px; }
.text-white { color: #fff; }
.btn-submit { width: 100%; border: none; cursor: pointer; font-family: var(--body-font); }
.form-privacy-note { font-size: 0.75rem; color: var(--text-light); margin-top: 12px; text-align: center; }
.form-privacy-note a { color: var(--moss); }
.form-success {
  display: none; background: #EAF0F7; border: 1px solid #7897B3;
  border-radius: 10px; padding: 20px 24px; margin-bottom: 20px;
  color: #1B2E4A; font-weight: 500;
}
.contact-link-inline { color: inherit; text-decoration: none; }
.contact-link-inline:hover { text-decoration: underline; }
.highlight-link { color: inherit; text-decoration: none; }
.check-link { color: var(--amber-light); text-decoration: none; }
.check-link:hover { text-decoration: underline; }
.logo-hidden { display: none; }


/* ═══════════════════════════════════════════════
   COOKIE CONSENT BANNER
═══════════════════════════════════════════════ */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: rgba(15, 25, 40, 0.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(193, 122, 90, 0.25);
  padding: 24px 48px;
  display: flex; align-items: center; gap: 32px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.35);
}
#cookie-banner.visible { transform: translateY(0); }
#cookie-banner.hiding { transform: translateY(110%); transition: transform 0.3s ease-in; }
.cookie-text { flex: 1; }
.cookie-text p {
  font-family: var(--body-font); font-size: 0.875rem;
  color: rgba(255,255,255,0.75); line-height: 1.6; margin: 0;
}
.cookie-text a { color: #C4A876; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.cookie-text a:hover { color: #DDC79E; }
.cookie-title {
  font-family: var(--display-font); font-weight: 700; font-size: 0.9rem;
  color: #FDFCFA; display: block; margin-bottom: 6px;
}
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; align-items: center; }
#cookie-accept {
  background: #C4A876; color: #1B2E4A; border: none;
  padding: 11px 24px; border-radius: 7px;
  font-family: var(--body-font); font-weight: 600; font-size: 0.875rem;
  cursor: pointer; transition: background 0.2s, transform 0.15s; white-space: nowrap;
}
#cookie-accept:hover { background: #DDC79E; transform: translateY(-1px); }
#cookie-decline {
  background: transparent; color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.18); padding: 10px 20px; border-radius: 7px;
  font-family: var(--body-font); font-weight: 400; font-size: 0.85rem;
  cursor: pointer; transition: color 0.2s, border-color 0.2s; white-space: nowrap;
}
#cookie-decline:hover { color: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.4); }
#cookie-settings {
  background: transparent; color: rgba(255,255,255,0.35); border: none;
  padding: 10px 12px; font-family: var(--body-font); font-size: 0.8rem;
  cursor: pointer; transition: color 0.2s;
  text-decoration: underline; text-underline-offset: 3px; white-space: nowrap;
}
#cookie-settings:hover { color: rgba(255,255,255,0.65); }

#cookie-modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  align-items: center; justify-content: center;
}
#cookie-modal-overlay.open { display: flex; }
#cookie-modal {
  background: #1B2E4A; border: 1px solid rgba(196,168,118,0.3);
  border-radius: var(--radius-md); padding: 40px; max-width: 560px;
  width: calc(100% - 48px); box-shadow: var(--shadow-lg);
}
#cookie-modal h3 {
  font-family: var(--display-font); font-size: 1.2rem; font-weight: 600;
  color: #FDFCFA; margin-bottom: 8px; letter-spacing: -0.02em;
}
#cookie-modal > p { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 28px; }

.cookie-category {
  border: 1px solid rgba(255,255,255,0.1); border-radius: 10px;
  padding: 18px 20px; margin-bottom: 12px;
  display: flex; align-items: flex-start; gap: 16px;
}
.cookie-category-info { flex: 1; }
.cookie-category-info strong { display: block; font-size: 0.9rem; color: #FDFCFA; font-weight: 600; margin-bottom: 4px; }
.cookie-category-info span { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.5; }

.cookie-toggle { position: relative; flex-shrink: 0; width: 44px; height: 24px; margin-top: 2px; }
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-toggle-slider {
  position: absolute; inset: 0; background: rgba(255,255,255,0.15);
  border-radius: 999px; cursor: pointer; transition: background 0.2s;
}
.cookie-toggle-slider::before {
  content: ''; position: absolute;
  width: 18px; height: 18px; left: 3px; top: 3px;
  background: white; border-radius: 50%; transition: transform 0.2s;
}
.cookie-toggle input:checked + .cookie-toggle-slider { background: #C4A876; }
.cookie-toggle input:checked + .cookie-toggle-slider::before { transform: translateX(20px); }
.cookie-toggle input:disabled + .cookie-toggle-slider { opacity: 0.5; cursor: not-allowed; }

.cookie-modal-actions { display: flex; gap: 12px; margin-top: 28px; justify-content: flex-end; }
.cookie-modal-actions button {
  padding: 11px 22px; border-radius: 8px;
  font-family: var(--body-font); font-size: 0.875rem;
  cursor: pointer; transition: background 0.2s, transform 0.15s;
}
#modal-save { background: #C4A876; color: #1B2E4A; border: none; font-weight: 600; }
#modal-save:hover { background: #DDC79E; transform: translateY(-1px); }
#modal-accept-all {
  background: transparent; color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2); font-weight: 400;
}
#modal-accept-all:hover { color: white; border-color: rgba(255,255,255,0.5); }

#cookie-reopen {
  display: none; position: fixed; bottom: 20px; right: 20px; z-index: 9998;
  background: rgba(15,26,43,0.92); border: 1px solid rgba(196,168,118,0.35);
  border-radius: 50%; width: 44px; height: 44px;
  cursor: pointer; font-size: 1.1rem;
  align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.15s;
  backdrop-filter: blur(8px);
}
#cookie-reopen:hover { background: #2F4A6B; transform: scale(1.08); }
#cookie-reopen.show { display: flex; }

/* ═══════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════ */
#testimonials { background: var(--cream); }
.testimonial-card {
  background: var(--white); border-radius: var(--radius-md); padding: 30px;
  border: 1px solid var(--hairline-light);
  transition: border-color 0.25s;
  text-align: left;
}
.testimonial-card:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--hairline);
}

/* ═══════════════════════════════════════════════
   URGENCY SECTION
═══════════════════════════════════════════════ */
#urgency h2 {
  font-family: var(--display-font);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600; line-height: 1.15;
  letter-spacing: -0.03em;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE DESIGN
═══════════════════════════════════════════════ */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-hamburger { display: flex; }
  .nav-links {
    display: flex !important;
    flex-direction: column;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(27, 46, 74, 0.98);
    backdrop-filter: blur(16px);
    justify-content: center; align-items: center;
    gap: 8px; z-index: 150;
    transform: translateX(100%); opacity: 0; pointer-events: none;
    transition: transform 0.3s cubic-bezier(.22,1,.36,1), opacity 0.3s;
    padding: 24px;
  }
  .nav-links.open { transform: translateX(0); opacity: 1; pointer-events: all; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a {
    font-size: 1.2rem !important; font-weight: 500 !important;
    padding: 14px 0; display: block;
    color: rgba(255,255,255,0.9) !important;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-cta { background: var(--amber) !important; color: var(--forest) !important; border-radius: 8px !important; margin-top: 8px; padding: 14px 32px !important; }

  /* New nav responsive */
  .nav-cta-pill { display: none; }
  .nav-dropdown {
    top: 64px;
    right: 16px;
    width: calc(100vw - 32px);
    max-width: 360px;
  }

  section, #problem, #abo, #urgency { padding: 64px 20px !important; width: 100%; box-sizing: border-box; overflow-x: hidden; }
  #hero {
    display: flex !important; flex-direction: column !important; padding-top: 70px !important;
  }
  .hero-content { order: 1; padding: 32px 20px 20px !important; text-align: center; width: 100%; }
  .hero-visual { order: 2; padding: 0 20px 32px !important; width: 100%; animation: fadeUp 0.8s 0.35s cubic-bezier(.22,1,.36,1) both; border-left: none; }
  .cliff-mark { animation: none; max-width: 160px; margin-bottom: 20px; }
  .cliff-quote { font-size: 0.8rem; margin-bottom: 28px; }
  .hero-tagline { max-width: 100%; text-align: center; }
  .hero-cta-row { justify-content: center; flex-wrap: wrap; }
  .stats-row { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .stat-number { font-size: 1.1rem; }

  .pain-grid, .leistungen-intro-grid, .kontakt-grid, .versprechen-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .leistungen-list { column-gap: 32px; }
  .trust-stats-bar { padding: 36px 20px !important; }
  .trust-stats-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 24px !important; }
  .trust-stat__number { font-size: 1.6rem !important; }
  .branchen-grid { grid-template-columns: 1fr !important; gap: 12px !important; }
  .deliverable-item { padding: 20px 22px !important; gap: 14px !important; }

  .preise-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
  .paket-card.featured { transform: none !important; }
  .paket-card { padding: 28px 24px !important; }
  .paket-price .amount { font-size: 2.6rem !important; }
  .preis-info-row { grid-template-columns: 1fr !important; gap: 16px !important; margin-top: 32px !important; }

  .pflege-step__card { padding: 28px 24px !important; }
  .pflege-step__head { flex-direction: column !important; }
  .abo-price .amount { font-size: 2.6rem !important; }

  /* Testimonials responsive */
  [style*="grid-template-columns: repeat(3, 1fr)"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns: repeat(4, 1fr)"] { grid-template-columns: repeat(2, 1fr) !important; }

  .about-values { grid-template-columns: 1fr !important; }
  .form-row { grid-template-columns: 1fr !important; }
  .kontakt-form-wrapper { padding: 28px 20px !important; }
  .split-panel__inner { padding: 36px 24px !important; }

  footer { flex-direction: column !important; gap: 16px !important; text-align: center !important; padding: 40px 20px !important; }

  .reveal.reveal-left, .reveal.reveal-right { transform: translateY(32px) !important; }
  .reveal.reveal-left.visible, .reveal.reveal-right.visible { transform: none !important; }

  #cookie-banner { flex-direction: column; align-items: flex-start; padding: 20px 20px 24px; gap: 16px; }
  .cookie-actions { width: 100%; flex-wrap: wrap; }
  #cookie-accept { flex: 1; text-align: center; }
  #cookie-decline { flex: 1; text-align: center; }
  #cookie-settings { padding: 8px 0; }
  #cookie-modal { padding: 28px 20px; }
  .cookie-modal-actions { flex-direction: column; }
  .cookie-modal-actions button { width: 100%; }
}

@media (max-width: 600px) {
  h1 { font-size: 1.85rem !important; }
  .hero-badge { font-size: 0.75rem !important; }
  .leistungen-list__item { padding: 20px 0 !important; gap: 16px !important; }
  .stats-row { gap: 6px !important; }
  .stat-number { font-size: 1rem !important; }
  .stat-label { font-size: 0.65rem !important; }
  .stat-card { padding: 12px 8px !important; }
  section, #problem, #abo, #urgency { padding: 48px 16px !important; }
  .paket-card { padding: 24px 18px !important; }
  .paket-price .amount { font-size: 2.2rem !important; }
  .pflege-step__card { padding: 24px 18px !important; }
  .abo-price .amount { font-size: 2rem !important; }
  .abo-name { font-size: 1.05rem !important; }
  .abo-features li { font-size: 0.83rem !important; }
  .section-intro { font-size: 0.95rem !important; }
  .kontakt-form-wrapper { padding: 20px 16px !important; }
  .solution-box { padding: 28px 20px !important; }
  .contact-card { padding: 20px !important; }
  .promise-box { padding: 20px !important; }
  .pflege-total__note { font-size: 0.78rem; padding: 0 8px; }
  .nav-menu-btn__label { display: none; }
  .nav-menu-btn { padding: 9px 12px; }
}

/* Kontakt-Heading */
.kontakt-heading {
  font-family: var(--display-font);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600; line-height: 1.15;
  letter-spacing: -0.03em; color: var(--forest);
  margin-bottom: 20px;
}

/* ═══════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════ */
#faq { background: var(--white); }
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  text-align: left;
  font-family: var(--body-font);
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--forest);
  transition: background 0.2s, color 0.2s;
}
.faq-question:hover { background: var(--cream); }
.faq-question[aria-expanded="true"] { background: var(--cream); color: var(--moss); }
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--sand);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--forest);
  transition: background 0.2s, transform 0.3s, color 0.2s;
  line-height: 1;
}
.faq-question[aria-expanded="true"] .faq-icon {
  background: var(--amber);
  color: var(--forest);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(.22,1,.36,1), padding 0.25s;
  padding: 0 28px;
}
.faq-answer.is-open {
  max-height: 300px;
  padding: 0 28px 22px;
}
.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
}
.faq-answer a { color: var(--moss); }
.faq-answer a:hover { color: var(--amber); }

/* ═══════════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════════ */
.final-cta-section {
  background: var(--forest);
  padding: 100px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent 40%);
  pointer-events: none;
}
.final-cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.fcta-badge {
  font-family: var(--body-font);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  background: none;
  border: none;
  border-top: 1px solid rgba(255,255,255,0.16);
  border-radius: 0;
  padding: 10px 0 0;
  white-space: nowrap;
}
.fcta-badge::before { content: '— '; color: var(--amber-light); }

/* Ghost button light variant (for dark backgrounds) */
.btn-ghost--light {
  border-color: rgba(255,255,255,0.35) !important;
  color: rgba(255,255,255,0.85) !important;
}
.btn-ghost--light:hover {
  background: rgba(255,255,255,0.1) !important;
  border-color: rgba(255,255,255,0.6) !important;
  color: var(--white) !important;
}

@media (max-width: 900px) {
  .final-cta-section { padding: 64px 20px !important; }
  .final-cta-trust { gap: 12px !important; }
  #faq { padding: 64px 20px !important; }
  .faq-question { padding: 18px 20px; font-size: 0.92rem; }
  .faq-answer, .faq-answer.is-open { padding-left: 20px; padding-right: 20px; }
}
@media (max-width: 600px) {
  .fcta-badge { font-size: 0.75rem; padding: 5px 12px; }
}

/* ═══════════════════════════════════════════════
   URGENCY SECTION (#urgency)
═══════════════════════════════════════════════ */
#urgency {
  background: var(--forest);
  padding: 100px 80px;
  position: relative;
  overflow: hidden;
}

/* Decorative background layers */
#urgency::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(196,168,118,0.12) 0%, transparent 55%),
    radial-gradient(circle at 85% 20%, rgba(120,151,179,0.2) 0%, transparent 45%);
  pointer-events: none;
}

#urgency::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(to right, #fff 1px, transparent 1px),
    linear-gradient(to bottom, #fff 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.urgency-inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.urgency-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(196,168,118,0.12);
  border: 1px solid rgba(196,168,118,0.3);
  border-radius: 100px;
  padding: 5px 18px;
  margin-bottom: 24px;
}

.urgency-title {
  color: var(--white) !important;
  font-size: clamp(2rem, 3.5vw, 3rem) !important;
  margin-bottom: 18px !important;
}

.urgency-lead {
  color: rgba(255,255,255,0.65) !important;
  font-size: 1.05rem !important;
  line-height: 1.75 !important;
  max-width: 580px;
  margin: 0 auto 56px !important;
}

/* Cards */
.urgency-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 52px;
  text-align: left;
}

.urgency-card {
  background: none;
  border: none;
  border-top: 1px solid rgba(255,255,255,0.14);
  border-radius: 0;
  padding: 24px 4px 0;
  transition: padding-left 0.3s var(--ease);
  position: relative;
  overflow: visible;
  counter-increment: urgency-counter;
}
.urgency-cards { counter-reset: urgency-counter; }

.urgency-card::before { display: none; }

.urgency-card:hover {
  background: none;
  border-color: rgba(255,255,255,0.14);
  transform: none;
  padding-left: 12px;
}

.urgency-card--featured {
  background: none;
  border-color: var(--amber-light);
}

.urgency-card__icon {
  font-size: 0;
  margin-bottom: 16px;
  display: block;
}
.urgency-card__icon::before {
  content: counter(urgency-counter, decimal-leading-zero);
  font-family: var(--display-font); font-style: italic;
  font-size: 1.15rem; color: var(--amber-light); font-weight: 500;
}

.urgency-card h3 {
  font-family: var(--display-font);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.urgency-card p {
  font-family: var(--body-font);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin: 0 !important;
}

/* CTA Button */
.urgency-btn {
  display: inline-block;
  background: var(--amber);
  color: var(--forest);
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  padding: 15px 38px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.01em;
  box-shadow: none;
  transition: background 0.2s, transform 0.2s;
}

.urgency-btn:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: none;
}

/* Garantie-Section */
#garantie {
  background: var(--cream);
  padding: 80px 80px;
}

@media (max-width: 900px) {
  #urgency { padding: 64px 20px !important; }
  .urgency-cards { grid-template-columns: 1fr !important; gap: 12px !important; }
  #garantie { padding: 64px 20px !important; }
}

@media (max-width: 600px) {
  #urgency { padding: 48px 16px !important; }
  #garantie { padding: 48px 16px !important; }
}
/* Barrierefreiheit: visuell versteckt, aber für Screenreader lesbar */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}