/* ===================================
   PFLEGEPROFI ONLINE — Design System
   Brand-konform (Petrol/Ocker, Domine/Open Sans)
   nach Brand Manual 07/2025
   =================================== */

:root {
  /* Brand colors (aus Brand Manual) */
  --petrol: #006379;            /* Primary */
  --petrol-deep: #00475A;       /* Darker accent */
  --petrol-bright: #1F8AA3;     /* Lighter accent */
  --petrol-soft: #d9eaef;       /* Tint */
  --petrol-tint: rgba(0, 99, 121, 0.08);

  --anthrazit: #3a4144;         /* Body text */
  --anthrazit-soft: #5d6469;
  --anthrazit-muted: #8a9094;
  --anthrazit-dim: #b8bcbe;

  --ocker: #a37e56;             /* Secondary accent (Geld, Highlights) */
  --ocker-deep: #7a5d3e;
  --ocker-bright: #c69d72;
  --ocker-soft: #f0e4d5;
  --ocker-tint: rgba(163, 126, 86, 0.10);

  --weiss: #ffffff;
  --hellgrau: #f4f1f1;
  --line: #e6e3df;
  --line-strong: #d4d0cb;
  --line-bright: #c2bdb6;

  --shadow-xs: 0 1px 2px rgba(58, 65, 68, 0.05);
  --shadow-sm: 0 2px 6px rgba(58, 65, 68, 0.06), 0 1px 2px rgba(58, 65, 68, 0.04);
  --shadow-md: 0 8px 24px rgba(58, 65, 68, 0.08), 0 2px 6px rgba(58, 65, 68, 0.04);
  --shadow-lg: 0 24px 48px rgba(58, 65, 68, 0.10), 0 8px 16px rgba(58, 65, 68, 0.05);

  /* Brand fonts */
  --font-serif: 'Domine', Georgia, serif;
  --font-sans: 'Open Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  --container: 1180px;
  --container-narrow: 820px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--weiss);
  color: var(--anthrazit);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--anthrazit);
  line-height: 1.2;
  letter-spacing: -0.005em;
}
strong, b { font-weight: 700; color: var(--anthrazit); }

.label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--petrol);
}
.label-ocker { color: var(--ocker-deep); }
.label-white { color: var(--weiss); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }

section { padding: 88px 0; position: relative; }
section.tight { padding: 56px 0; }
section.soft { background: var(--hellgrau); }
section.petrol { background: var(--petrol); color: var(--weiss); }
section.petrol h1, section.petrol h2, section.petrol h3, section.petrol h4 { color: var(--weiss); }
section.petrol .label { color: var(--ocker-bright); }

/* ===== Topnav ===== */
.topnav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--line);
}
.topnav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
.brand img {
  height: 42px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 14.5px;
  color: var(--anthrazit-soft);
  font-weight: 600;
  padding: 8px 0;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--petrol); }
.nav-links a.cta {
  background: var(--petrol);
  color: var(--weiss);
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 99, 121, 0.20);
}
.nav-links a.cta:hover {
  background: var(--petrol-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 99, 121, 0.30);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--anthrazit);
  width: 40px;
  height: 40px;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 8px;
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle span:nth-child(1) { top: 13px; }
.nav-toggle span:nth-child(2) { top: 19px; }
.nav-toggle span:nth-child(3) { top: 25px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  padding: 72px 0 96px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 80% -10%, rgba(163, 126, 86, 0.10), transparent 60%),
    radial-gradient(ellipse at 0% 80%, rgba(0, 99, 121, 0.08), transparent 60%),
    var(--weiss);
}
.hero::before {
  /* Globus-Wasserzeichen (CI-Element) */
  content: '';
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='%23006379' stroke-width='1.5' opacity='0.06'%3E%3Ccircle cx='50' cy='50' r='45'/%3E%3Cellipse cx='50' cy='50' rx='45' ry='20'/%3E%3Cellipse cx='50' cy='50' rx='20' ry='45'/%3E%3Cellipse cx='50' cy='50' rx='35' ry='10'/%3E%3Cellipse cx='50' cy='50' rx='10' ry='35'/%3E%3Cline x1='5' y1='50' x2='95' y2='50'/%3E%3Cline x1='50' y1='5' x2='50' y2='95'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--ocker-tint);
  border: 1px solid var(--ocker-soft);
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ocker);
}
.hero h1 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(36px, 5.5vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.018em;
  color: var(--anthrazit);
  margin-bottom: 24px;
}
.hero h1 .euro {
  color: var(--ocker-deep);
  white-space: nowrap;
}
.hero h1 em {
  font-style: italic;
  font-weight: 600;
  color: var(--petrol);
}
.hero-sub {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--anthrazit-soft);
  margin-bottom: 32px;
  max-width: 580px;
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 600;
  color: var(--anthrazit-muted);
}
.hero-trust span { display: flex; align-items: center; gap: 8px; }
.hero-trust span::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--petrol);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.5' stroke-linecap='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

/* Hero figure card (right) */
.hero-fig {
  position: relative;
}
.hero-card {
  background: var(--weiss);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}
.hero-card-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ocker-deep);
  margin-bottom: 12px;
}
.hero-card-big {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(56px, 8vw, 84px);
  color: var(--anthrazit);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.hero-card-big .e { color: var(--ocker-deep); font-weight: 600; }
.hero-card-sub {
  font-size: 13px;
  color: var(--anthrazit-muted);
  margin-bottom: 22px;
  line-height: 1.5;
}
.hero-card-row {
  display: flex;
  justify-content: space-between;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--anthrazit-soft);
}
.hero-card-row strong { font-weight: 700; color: var(--anthrazit); }
.hero-card-row.total {
  margin-top: 4px;
  padding-top: 16px;
  border-top: 2px solid var(--petrol-soft);
}
.hero-card-row.total strong {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--petrol);
  font-weight: 600;
}

/* Störer (Brand-Element: Kreis mit doppelter Kontur) */
.stoerer {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--ocker);
  color: var(--weiss);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px 10px;
  z-index: 3;
  transform: rotate(-12deg);
  box-shadow: 0 8px 20px rgba(163, 126, 86, 0.30);
}
.stoerer::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1.5px solid var(--weiss);
  border-radius: 50%;
  opacity: 0.5;
}
.stoerer-line1 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-transform: uppercase;
}
.stoerer-line2 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  margin-top: 4px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.005em;
  cursor: pointer;
  transition: all 0.22s ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--petrol);
  color: var(--weiss);
  box-shadow: 0 6px 16px rgba(0, 99, 121, 0.22);
}
.btn-primary:hover {
  background: var(--petrol-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 99, 121, 0.32);
}
.btn-ocker {
  background: var(--ocker);
  color: var(--weiss);
  box-shadow: 0 6px 16px rgba(163, 126, 86, 0.25);
}
.btn-ocker:hover {
  background: var(--ocker-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(163, 126, 86, 0.35);
}
.btn-ghost {
  background: var(--weiss);
  border: 1.5px solid var(--line-strong);
  color: var(--anthrazit);
  box-shadow: var(--shadow-xs);
}
.btn-ghost:hover {
  border-color: var(--petrol);
  color: var(--petrol);
  transform: translateY(-1px);
}
.btn-large { padding: 18px 34px; font-size: 16px; }
.btn .arrow { transition: transform 0.22s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ===== Section Head ===== */
.sec-head { margin-bottom: 56px; text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; }
.sec-head.left { text-align: left; margin-left: 0; }
.sec-head .label { margin-bottom: 14px; display: inline-block; }
.sec-head h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.012em;
}
.sec-head h2 em { font-style: italic; color: var(--petrol); }
.sec-head .lead {
  font-size: 17px;
  color: var(--anthrazit-soft);
  line-height: 1.6;
}

/* ===== Pain / Problem cards ===== */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.pain-card {
  background: var(--weiss);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  text-align: left;
}
.pain-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--petrol-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--petrol);
}
.pain-icon svg { width: 24px; height: 24px; }
.pain-card h3 {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
}
.pain-card p {
  color: var(--anthrazit-soft);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ===== Quote-Band (für Markenkern) ===== */
.quote-band {
  background: var(--petrol);
  color: var(--weiss);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='%23fff' stroke-width='1' opacity='0.05'%3E%3Ccircle cx='50' cy='50' r='45'/%3E%3Cellipse cx='50' cy='50' rx='45' ry='20'/%3E%3Cellipse cx='50' cy='50' rx='20' ry='45'/%3E%3Cline x1='5' y1='50' x2='95' y2='50'/%3E%3Cline x1='50' y1='5' x2='50' y2='95'/%3E%3C/svg%3E");
  background-size: 400px;
  background-position: 80% 50%;
  background-repeat: no-repeat;
  opacity: 0.5;
}
.quote-band-inner { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.quote-band blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(24px, 3.2vw, 36px);
  line-height: 1.3;
  color: var(--weiss);
  margin-bottom: 24px;
}
.quote-band cite {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ocker-bright);
}

/* ===== Module list ===== */
.module-list {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}
.module-item {
  background: var(--weiss);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 24px;
  align-items: center;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-xs);
}
.module-item:hover {
  border-color: var(--petrol-soft);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.module-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--petrol-tint);
  color: var(--petrol);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 20px;
}
.module-body h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 19px;
  margin-bottom: 4px;
  line-height: 1.2;
}
.module-body p {
  color: var(--anthrazit-muted);
  font-size: 14px;
  line-height: 1.5;
}
.module-meta {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--ocker-deep);
  text-align: right;
  white-space: nowrap;
}

/* ===== Pricing ===== */
.pricing-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 20px;
  max-width: 920px;
  margin: 0 auto;
}
.price-card {
  background: var(--weiss);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  position: relative;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  border: 2px solid var(--petrol);
  background: linear-gradient(180deg, var(--weiss), var(--petrol-tint));
  box-shadow: var(--shadow-lg);
}
.price-card.featured::before {
  content: 'Bestseller · spart 116 €';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ocker);
  color: var(--weiss);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.price-card .label { margin-bottom: 8px; }
.price-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.2;
}
.price-card .price-sub {
  font-size: 13.5px;
  color: var(--anthrazit-muted);
  margin-bottom: 18px;
  line-height: 1.5;
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 12px 0 20px;
}
.price-amount .amount {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  color: var(--anthrazit);
  letter-spacing: -0.02em;
}
.price-amount .currency {
  font-size: 28px;
  vertical-align: top;
  margin-right: 4px;
  color: var(--anthrazit-muted);
  font-weight: 600;
}
.price-amount .period {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--anthrazit-muted);
}
.price-features {
  list-style: none;
  margin: 18px 0 28px;
  flex: 1;
}
.price-features li {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  color: var(--anthrazit-soft);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}
.price-features li:last-child { border-bottom: none; }
.price-features li::before {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--petrol);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.5' stroke-linecap='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px;
  background-position: center;
  background-repeat: no-repeat;
}
.price-card .btn { width: 100%; justify-content: center; }

/* ===== Guarantee ===== */
.guarantee {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--ocker-tint);
  border: 1px solid var(--ocker-soft);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  margin: 32px auto 0;
  max-width: 920px;
}
.guarantee-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--weiss);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--ocker-deep);
  box-shadow: var(--shadow-xs);
}
.guarantee-icon svg { width: 26px; height: 26px; }
.guarantee-body strong {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 17px;
  color: var(--anthrazit);
  display: block;
  margin-bottom: 2px;
}
.guarantee-body p {
  font-size: 14px;
  color: var(--anthrazit-soft);
  line-height: 1.5;
}

/* ===== Speaker / Anastasia ===== */
.speaker {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
  background: var(--weiss);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.speaker::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: var(--petrol-tint);
  border-radius: 50%;
  z-index: 0;
}
.speaker > * { position: relative; z-index: 1; }
.speaker-portrait {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--petrol-soft), var(--ocker-soft));
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.speaker-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ===== Warmer-Moment-Block (Photo + Text alternating) ===== */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.feature-split.reverse { direction: rtl; }
.feature-split.reverse > * { direction: ltr; }
.feature-photo {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-md);
  background: var(--hellgrau);
}
.feature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.feature-photo.landscape { aspect-ratio: 5/4; }
.feature-photo-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--weiss);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  max-width: 280px;
  font-size: 13.5px;
  color: var(--anthrazit);
  font-weight: 600;
  line-height: 1.4;
}
.feature-photo-tag strong { color: var(--petrol); display: block; font-family: var(--font-serif); font-size: 16px; margin-bottom: 2px; }
.feature-body .label { margin-bottom: 14px; display: inline-block; }
.feature-body h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.012em;
}
.feature-body h2 em { font-style: italic; color: var(--petrol); }
.feature-body p {
  color: var(--anthrazit-soft);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.feature-body .checks {
  list-style: none;
  margin-top: 24px;
}
.feature-body .checks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--anthrazit);
  font-weight: 600;
}
.feature-body .checks li::before {
  content: '';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--petrol);
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.5' stroke-linecap='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 13px;
  background-position: center;
  background-repeat: no-repeat;
}
.speaker-body .label { margin-bottom: 10px; display: inline-block; }
.speaker-body h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 8px;
  line-height: 1.15;
}
.speaker-body .role {
  font-size: 14px;
  font-weight: 700;
  color: var(--ocker-deep);
  margin-bottom: 18px;
}
.speaker-body p {
  color: var(--anthrazit-soft);
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 14px;
}
.speaker-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.speaker-cred {
  font-size: 12px;
  font-weight: 700;
  color: var(--petrol);
  background: var(--petrol-tint);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}

/* ===== FAQ ===== */
.faq { max-width: 760px; margin: 0 auto; }
.faq details {
  background: var(--weiss);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 4px 24px;
  margin-bottom: 10px;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-xs);
}
.faq details[open] {
  border-color: var(--petrol-soft);
  box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 17px;
  padding: 18px 0;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 400;
  color: var(--petrol);
  transition: transform 0.2s ease;
  line-height: 1;
  width: 24px;
  text-align: center;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  color: var(--anthrazit-soft);
  font-size: 15px;
  line-height: 1.65;
  padding: 4px 0 18px;
}

/* ===== Form ===== */
.form-card {
  background: var(--weiss);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-lg);
}
.form-card .label { margin-bottom: 10px; display: inline-block; }
.form-card h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 8px;
  line-height: 1.2;
}
.form-card .lead { color: var(--anthrazit-soft); font-size: 15px; margin-bottom: 28px; }
.form-grid { display: grid; gap: 14px; margin-bottom: 20px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--petrol);
  margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--hellgrau);
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--anthrazit);
  font-family: var(--font-sans);
  font-size: 16px;
  transition: all 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}
.field input::placeholder { color: var(--anthrazit-dim); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--petrol);
  background: var(--weiss);
  box-shadow: 0 0 0 4px var(--petrol-tint);
}
.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 18px 0 20px;
}
.consent input[type="checkbox"] {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  appearance: none;
  -webkit-appearance: none;
  background: var(--weiss);
  border: 1.5px solid var(--line-strong);
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.consent input[type="checkbox"]:checked { background: var(--petrol); border-color: var(--petrol); }
.consent input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 6px; top: 2px; width: 6px; height: 11px;
  border: solid var(--weiss);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.consent label {
  font-size: 13px;
  color: var(--anthrazit-muted);
  line-height: 1.55;
  cursor: pointer;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  margin: 0;
}
.consent label a { color: var(--anthrazit); text-decoration: underline; }
.form-microcopy {
  font-size: 12px;
  color: var(--anthrazit-muted);
  margin-top: 14px;
  text-align: center;
}
.form-microcopy span:not(:last-child)::after {
  content: '·';
  margin: 0 8px;
  color: var(--anthrazit-dim);
}
.form-success {
  background: var(--petrol-tint);
  border: 1px solid var(--petrol-soft);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
}
.form-success h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  margin-bottom: 12px;
  color: var(--petrol-deep);
}

/* ===== Testimonials ===== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.testi {
  background: var(--weiss);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.testi-stars { color: var(--ocker); margin-bottom: 14px; font-size: 16px; letter-spacing: 2px; }
.testi-quote {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--anthrazit);
  margin-bottom: 18px;
  flex: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--petrol-soft), var(--ocker-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--anthrazit);
  font-size: 16px;
}
.testi-author-meta strong { display: block; font-size: 14px; color: var(--anthrazit); }
.testi-author-meta span { font-size: 11px; color: var(--anthrazit-muted); font-weight: 600; }

/* ===== Big CTA band ===== */
.cta-band {
  text-align: center;
  padding: 88px 24px;
  background: var(--petrol);
  color: var(--weiss);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='%23fff' stroke-width='1' opacity='0.06'%3E%3Ccircle cx='50' cy='50' r='45'/%3E%3Cellipse cx='50' cy='50' rx='45' ry='20'/%3E%3Cellipse cx='50' cy='50' rx='20' ry='45'/%3E%3C/svg%3E");
  background-size: 380px;
  background-position: 80% 50%;
  background-repeat: no-repeat;
}
.cta-band-inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.cta-band .label { color: var(--ocker-bright); margin-bottom: 16px; display: inline-block; }
.cta-band h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--weiss);
}
.cta-band h2 em { font-style: italic; color: var(--ocker-bright); }
.cta-band .lead {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16.5px;
  margin-bottom: 32px;
  line-height: 1.55;
}
.cta-band .btn-primary {
  background: var(--ocker);
  color: var(--weiss);
}
.cta-band .btn-primary:hover {
  background: var(--ocker-deep);
}

/* ===== Webinar Meta ===== */
.webinar-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}
.wm-card {
  background: var(--weiss);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-xs);
}
.wm-card .label { color: var(--ocker-deep); font-size: 10px; margin-bottom: 8px; display: inline-block; }
.wm-val {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 22px;
  color: var(--anthrazit);
  line-height: 1.2;
}

/* Bonus cards (webinar page) */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.bonus-card {
  background: var(--weiss);
  border: 1px solid var(--ocker-soft);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.bonus-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ocker-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ocker-deep);
  flex-shrink: 0;
}
.bonus-icon svg { width: 20px; height: 20px; }
.bonus-body h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 6px;
  line-height: 1.2;
}
.bonus-body p {
  color: var(--anthrazit-soft);
  font-size: 14px;
  line-height: 1.55;
}

/* ===== Footer ===== */
.foot {
  background: var(--anthrazit);
  color: rgba(255, 255, 255, 0.65);
  padding: 56px 0 24px;
}
.foot-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.foot-brand img { height: 48px; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: 0.92; }
.foot-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
}
.foot-col h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ocker-bright);
  margin-bottom: 14px;
}
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 8px; }
.foot-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.15s ease;
}
.foot-col a:hover { color: var(--weiss); }
.foot-bot {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== Stoerer Inline (sometimes wanted inline) ===== */
.stoerer-inline {
  display: inline-block;
  background: var(--ocker);
  color: var(--weiss);
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
}

/* ===== Video Embed (Danke-Seite) ===== */
.video-wrap {
  background: var(--anthrazit);
  border-radius: var(--radius-xl);
  padding: 12px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
}
.video-embed iframe,
.video-embed video,
.video-embed > .placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-embed .placeholder {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.6), rgba(0,99,121,0.7)),
    linear-gradient(135deg, var(--petrol-deep), var(--petrol));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--weiss);
  text-align: center;
  padding: 24px;
  cursor: pointer;
}
.video-embed .placeholder-play {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--weiss);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
  transition: transform 0.2s ease;
}
.video-embed .placeholder:hover .placeholder-play { transform: scale(1.07); }
.video-embed .placeholder-play svg {
  width: 32px; height: 32px;
  color: var(--petrol-deep);
  margin-left: 4px;
}
.video-embed .placeholder h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 26px;
  color: var(--weiss);
  margin-bottom: 6px;
}
.video-embed .placeholder p {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  max-width: 360px;
}

/* ===== Countdown Timer ===== */
.countdown {
  display: inline-flex;
  gap: 12px;
  background: var(--ocker-tint);
  border: 1px solid var(--ocker-soft);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  margin-top: 18px;
  flex-wrap: wrap;
  align-items: center;
}
.countdown-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ocker-deep);
}
.countdown-units {
  display: flex;
  gap: 8px;
}
.countdown-unit {
  background: var(--weiss);
  border-radius: 8px;
  padding: 8px 12px;
  text-align: center;
  min-width: 56px;
  box-shadow: var(--shadow-xs);
}
.countdown-unit-num {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 22px;
  color: var(--anthrazit);
  line-height: 1;
}
.countdown-unit-lbl {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--anthrazit-muted);
  text-transform: uppercase;
  margin-top: 3px;
}

/* ===== Step list (Danke) ===== */
.step-grid {
  display: grid;
  gap: 14px;
  max-width: 720px;
  margin: 0 auto;
}
.step-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: center;
  background: var(--weiss);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  box-shadow: var(--shadow-xs);
}
.step-item .step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--petrol);
  color: var(--weiss);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 17px;
}
.step-item h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 2px;
}
.step-item p {
  font-size: 14px;
  color: var(--anthrazit-soft);
  line-height: 1.5;
}

/* ===== Über-mich Story-Block ===== */
.story-hero {
  padding: 64px 0 56px;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(0, 99, 121, 0.08), transparent 60%),
    var(--weiss);
}
.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
.story-photo {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--hellgrau);
  box-shadow: var(--shadow-lg);
}
.story-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

/* Produkttreppe cards (Über-mich) */
.treppe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.treppe-card {
  background: var(--weiss);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.treppe-card.featured {
  border-color: var(--petrol-soft);
  background: linear-gradient(180deg, var(--weiss), var(--petrol-tint));
}
.treppe-card .label { margin-bottom: 10px; }
.treppe-card h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 8px;
  line-height: 1.2;
}
.treppe-card .treppe-budget {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 28px;
  color: var(--ocker-deep);
  line-height: 1;
  margin: 12px 0;
}
.treppe-card .treppe-budget small {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--anthrazit-muted);
  display: block;
  margin-top: 4px;
  letter-spacing: 0;
}
.treppe-card p {
  color: var(--anthrazit-soft);
  font-size: 14.5px;
  line-height: 1.55;
  flex: 1;
  margin-bottom: 18px;
}
.treppe-card-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  color: var(--petrol);
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

/* Story duo (2 photos in one block) */
.story-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 24px 0;
}
.story-duo-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-md);
  background: var(--hellgrau);
}
.story-duo-item img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  section { padding: 64px 0; }
  .hero { padding: 48px 0 64px; }
  .hero::before { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-fig { order: -1; max-width: 380px; margin: 0 auto; }
  .hero-card { padding: 28px; }
  .pain-grid, .testi-grid { grid-template-columns: 1fr; }
  .module-item { grid-template-columns: 50px 1fr; gap: 16px; padding: 22px 24px; }
  .module-meta { grid-column: 2; text-align: left; margin-top: 4px; }
  .speaker { grid-template-columns: 1fr; gap: 28px; padding: 32px; }
  .speaker-portrait { max-width: 260px; margin: 0 auto; }
  .feature-split { grid-template-columns: 1fr; gap: 32px; }
  .feature-split.reverse { direction: ltr; }
  .feature-photo { max-width: 460px; margin: 0 auto; }
  .story-grid { grid-template-columns: 1fr; gap: 32px; }
  .story-photo { max-width: 380px; margin: 0 auto; }
  .step-item { padding: 18px 22px; grid-template-columns: 40px 1fr; gap: 14px; }
  .video-embed .placeholder h4 { font-size: 22px; }
  .video-embed .placeholder-play { width: 72px; height: 72px; }
  .countdown { padding: 12px 16px; gap: 10px; }
  .countdown-unit { min-width: 50px; padding: 6px 10px; }
  .countdown-unit-num { font-size: 19px; }
  .treppe-grid { grid-template-columns: 1fr; }
  .story-duo { grid-template-columns: 1fr; }
  .pricing-wrap { grid-template-columns: 1fr; }
  .webinar-meta { grid-template-columns: 1fr; }
  .bonus-grid { grid-template-columns: 1fr; }
  .foot-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stoerer { width: 90px; height: 90px; top: -10px; right: -10px; }
  .stoerer-line2 { font-size: 16px; }
}
@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--weiss);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    padding: 16px 24px 20px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--line); }
  .nav-links a.cta { margin-top: 8px; text-align: center; border-bottom: none; }
  .nav-toggle { display: block; }
  .topnav-inner { position: relative; }
  .brand img { height: 36px; }
  .container, .container-narrow { padding: 0 16px; }
  .btn { padding: 13px 22px; font-size: 14px; }
  .btn-large { padding: 16px 28px; font-size: 15px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .price-card { padding: 28px 22px; }
  .form-card { padding: 28px 22px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .cta-band { padding: 56px 16px; }
  .foot-inner { grid-template-columns: 1fr; gap: 28px; }
  .speaker { padding: 24px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition-duration: 0.01ms !important; }
}
