/* ===================== TOKENS ===================== */
:root {
  --teal: #21A596;
  --navy: #26547C;
  --mid: #305F88;
  --light-blue: #48B8D0;
  --pale-blue: #94DFF4;
  --mint: #EFF7F6;
  --white: #FFFFFF;
  --text: #26547C;
  --muted: #5b7388;
  --line: #e3ebf0;
  --shadow: 0 18px 40px rgba(38, 84, 124, .10);
  --shadow-sm: 0 8px 24px rgba(38, 84, 124, .08);
  --radius: 16px;
  --radius-lg: 24px;
  --container: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 { font-family: 'Figtree', sans-serif; color: var(--navy); line-height: 1.2; }

a { color: inherit; text-decoration: none; }

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

.accent { color: var(--teal); }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Figtree', sans-serif; font-weight: 600;
  border: none; border-radius: 999px; cursor: pointer;
  padding: 13px 26px; font-size: 16px; line-height: 1;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn svg { flex: none; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: #1f456a; }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: #1b8f82; }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-lg { padding: 15px 30px; font-size: 17px; }

/* ===================== HEADER ===================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 24px; height: 76px; }

.logo { display: inline-flex; align-items: center; }
.logo-img { height: 40px; width: auto; display: block; }

.main-nav { display: flex; gap: 28px; margin-left: 24px; }
.main-nav a { font-weight: 500; font-size: 15px; color: var(--navy); transition: color .15s; }
.main-nav a:hover { color: var(--teal); }

.header-actions { display: flex; gap: 12px; margin-left: auto; }

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

/* ===================== HERO ===================== */
.hero { padding: 56px 0 40px; overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }

.trust-badges { display: flex; gap: 20px; align-items: center; margin-bottom: 28px; background: #fff; padding: 11px 20px; border-radius: 14px; box-shadow: var(--shadow-sm); width: fit-content; flex-wrap: wrap; }
.trust-badges img { height: 38px; width: auto; display: block; object-fit: contain; }
.badge-ph { font-size: 11px; font-weight: 700; color: var(--mid); background: var(--mint); padding: 6px 9px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; min-width: 34px; }

.hero-content h1 { font-size: clamp(34px, 4.4vw, 52px); font-weight: 800; margin-bottom: 18px; }
.hero-sub { font-size: 18px; color: var(--muted); margin-bottom: 30px; max-width: 440px; }

.hero-media { display: flex; justify-content: center; }
/* freistehendes Vollmotiv (Norman + Orbit-Kreisel + Punkte) */
.hero-ring { position: relative; width: min(520px, 100%); }
.hero-orbit-img { width: 100%; height: auto; display: block; }
.photo-ph { color: #fff; font-weight: 600; font-family: 'Figtree', sans-serif; opacity: .85; }

.hero-features { display: flex; flex-wrap: wrap; justify-content: center; gap: 28px 40px; margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--line); }
.feat { display: flex; align-items: center; gap: 10px; font-weight: 500; font-size: 15px; }
.feat .check { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 50%; background: var(--teal); color: #fff; font-size: 13px; flex: none; }

/* ===================== SECTIONS ===================== */
.section { padding: 72px 0; }
.section.pt0 { padding-top: 0; }
.section-mint { background: var(--mint); }
.section-light { background: var(--mint); }

.section-title { font-size: clamp(28px, 3.4vw, 38px); font-weight: 700; text-align: center; }
.section-title.left { text-align: left; }
.section-sub { text-align: center; color: var(--muted); margin-top: 12px; margin-bottom: 44px; }
.eyebrow { text-align: center; color: var(--teal); font-weight: 700; font-family: 'Figtree',sans-serif; margin-bottom: 8px; }
.center-narrow { max-width: 760px; text-align: center; }

/* ===================== CONCEPT CARDS ===================== */
.concept-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 44px; }
.ccard { border-radius: var(--radius-lg); padding: 30px 28px; min-height: 220px; box-shadow: var(--shadow-sm); }
.ccard h3 { color: #fff; margin: 18px 0 12px; font-size: 21px; }
.ccard p { color: rgba(255,255,255,.92); font-size: 15.5px; }
.ccard-icon { display: inline-flex; color: #fff; }
.ccard-light { background: var(--light-blue); }
.ccard-mid  { background: var(--mid); }
.ccard-dark { background: var(--teal); }

.concept-footer { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.reviews { display: flex; gap: 36px; flex-wrap: wrap; }
.review-item { display: flex; flex-direction: column; gap: 2px; }
.review-label { font-weight: 700; font-family: 'Figtree',sans-serif; color: var(--navy); }
.stars { color: var(--teal); letter-spacing: 2px; }
.stars-gold { color: #f5a623; }
.review-meta { font-size: 13px; color: var(--muted); }
.reviews { align-items: center; }
.reviews .trustpilot-widget { width: 240px; flex: none; }
.reviews .review-widget_net { flex: none; }

/* ===================== SPLIT ===================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.align-center { align-items: center; }
.split-text h2 { margin-bottom: 16px; }
.split-text p { color: var(--muted); margin-bottom: 26px; }

.video-thumb {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 16/10; background: linear-gradient(150deg, #dbe7ee, #b7ccd8);
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow);
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.video-thumb-lg { aspect-ratio: 16/11; }
.play-btn {
  position: absolute; width: 64px; height: 64px; border-radius: 50%;
  background: #fff; color: var(--teal); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.25); transition: transform .15s;
}
.play-btn:hover { transform: scale(1.08); }
.video-thumb[data-youtube] { cursor: pointer; }
.video-thumb iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 2; }
.video-thumb.is-playing img,
.video-thumb.is-playing .play-btn { opacity: 0; pointer-events: none; }

/* ===================== STEPS ===================== */
.steps-title { text-align: left; font-size: 22px; margin-bottom: 28px; }
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.step { background: #fff; border-radius: var(--radius); padding: 22px 20px; box-shadow: var(--shadow-sm); }
.step-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.step-icon { font-size: 22px; }
.step-no { font-size: 12px; color: var(--teal); font-weight: 700; }
.step h4 { font-size: 16px; margin-bottom: 8px; }
.step p { font-size: 13.5px; color: var(--muted); }
.step-active { background: var(--teal); }
.step-active h4 { color: #fff; }
.step-active p { color: rgba(255,255,255,.92); }
.step-active .step-no { color: rgba(255,255,255,.85); }

/* ===================== DONUT ===================== */
.donut-wrap { display: flex; flex-direction: column; align-items: center; gap: 26px; }
.donut {
  position: relative; width: 280px; height: 280px; border-radius: 50%;
  background: conic-gradient(
    var(--teal) 0% 60%,
    var(--light-blue) 60% 82%,
    var(--navy) 82% 100%
  );
  display: flex; align-items: center; justify-content: center;
}
.donut::after { content: ""; position: absolute; width: 64%; height: 64%; background: #fff; border-radius: 50%; }
.donut-center { position: relative; z-index: 1; text-align: center; }
.donut-label { font-size: 13px; color: var(--muted); display: block; }
.donut-value { font-family: 'Figtree',sans-serif; font-size: 38px; color: var(--teal); display: block; margin-top: 4px; }
.donut-legend { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.donut-legend li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--navy); }
.lg { width: 14px; height: 14px; border-radius: 4px; flex: none; }
.lg-teal { background: var(--teal); }
.lg-lightteal { background: var(--light-blue); }
.lg-navy { background: var(--navy); }

/* ===================== PROFIT BOX ===================== */
.profit-box { background: var(--teal); border-radius: var(--radius-lg); padding: 44px 40px; color: #fff; box-shadow: var(--shadow); }
.profit-box h3 { color: #fff; text-align: center; font-size: 26px; margin-bottom: 34px; }
.profit-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.profit-col h4 { color: #fff; font-size: 18px; margin: 12px 0 8px; }
.profit-col p { color: rgba(255,255,255,.92); font-size: 15px; }
.check-circle { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,.2); color: #fff; font-weight: 700; }

/* ===================== STORY ===================== */
.story-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; margin-top: 40px; }
.story-grid-2 { grid-template-columns: 1fr 1.4fr; margin-top: 32px; }
.testimonial { background: var(--mint); border-radius: var(--radius-lg); padding: 34px 32px; position: relative; }
.quote-mark { font-family: 'Figtree',sans-serif; font-size: 60px; color: var(--teal); line-height: .5; display: block; margin-bottom: 14px; }
.testimonial p { font-style: italic; font-size: 19px; color: var(--navy); font-weight: 600; margin-bottom: 18px; }
.testimonial footer strong { display: block; color: var(--teal); }
.testimonial footer span { font-size: 13px; color: var(--muted); }
.story-cta { text-align: center; }
.story-cta p { margin-top: 16px; color: var(--muted); font-size: 14px; }
.story-cta-row { text-align: center; margin-top: 48px; }
.story-cta-row p { margin-top: 16px; color: var(--muted); font-size: 14px; }

/* ===================== COMPARE ===================== */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 44px; align-items: start; }
.compare-card { border-radius: var(--radius-lg); padding: 34px 32px; box-shadow: var(--shadow); }
.compare-card h3 { font-size: 20px; margin-bottom: 22px; }
.compare-card ul { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.compare-card li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; }
.compare-bad { background: #fff; }
.compare-bad li { color: var(--navy); }
.compare-good { background: var(--navy); transform: translateY(-14px); }
.compare-good h3, .compare-good li { color: #fff; }
.x, .c { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 50%; font-size: 12px; flex: none; margin-top: 1px; }
.x { background: #ef4444; color: #fff; }
.c { background: var(--teal); color: #fff; }
.compare-cta { text-align: center; margin-top: 44px; }

/* ===================== FOOTER ===================== */
.site-footer { position: relative; background: var(--navy); color: #fff; margin-top: 40px; }
.footer-wave { position: absolute; top: -1px; left: 0; width: 100%; transform: translateY(-99%); line-height: 0; }
.footer-wave svg { width: 100%; height: 80px; display: block; }
.footer-inner { display: grid; grid-template-columns: 1.8fr 1fr; gap: 40px; padding-top: 56px; padding-bottom: 40px; }
.logo-white .logo-text strong { color: #fff; }
.logo-white .logo-text em { color: var(--teal); }
.footer-tag { color: rgba(255,255,255,.75); margin: 16px 0; font-size: 14px; }
.footer-contact { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; font-size: 14px; color: rgba(255,255,255,.85); }
.footer-col h5 { color: #fff; font-size: 14px; letter-spacing: .5px; margin-bottom: 18px; text-transform: uppercase; opacity: .85; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: rgba(255,255,255,.8); font-size: 14px; transition: color .15s; }
.footer-col a:hover { color: var(--teal); }
.footer-note { background: rgba(255,255,255,.06); border-radius: var(--radius); padding: 22px; }
.footer-note h5 { color: var(--teal); font-size: 14px; margin-bottom: 12px; }
.footer-note p { font-size: 12.5px; color: rgba(255,255,255,.7); line-height: 1.7; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 20px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,.65); }
.socials { display: flex; gap: 12px; }
.socials a { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: 14px; color: #fff; transition: background .15s; }
.socials a:hover { background: var(--teal); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 980px) {
  .main-nav, .header-actions { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  .main-nav.open { display: flex; position: absolute; top: 76px; left: 0; right: 0; background: #fff; flex-direction: column; padding: 20px 24px; gap: 16px; box-shadow: var(--shadow); margin-left: 0; }

  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-media { order: -1; }
  .hero-ring { width: min(320px, 80%); }

  .concept-cards { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .profit-cols { grid-template-columns: 1fr; gap: 24px; }
  .story-grid, .story-grid-2 { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; }
  .compare-good { transform: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .section { padding: 52px 0; }
  .steps { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .reviews { gap: 20px; }
  .trust-badges { flex-wrap: wrap; }
}

/* ===================== FUNNEL ===================== */
.funnel-body { background: linear-gradient(180deg, #ffffff 0%, var(--mint) 100%); min-height: 100vh; }
.funnel-header { border-bottom: 1px solid var(--line); background: rgba(255,255,255,.92); position: sticky; top: 0; z-index: 10; }
.funnel-header .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.funnel-back { font-size: 14px; color: var(--muted); font-weight: 600; font-family: 'Figtree',sans-serif; display: inline-flex; align-items: center; gap: 7px; }
.funnel-back:hover { color: var(--teal); }
.funnel-main { display: flex; justify-content: center; padding: 48px 24px 72px; }
.funnel-card { width: 100%; max-width: 640px; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 40px 44px; }

.funnel-progress { margin-bottom: 30px; }
.funnel-progress-bar { height: 8px; background: var(--mint); border-radius: 999px; overflow: hidden; }
.funnel-progress-fill { height: 100%; width: 25%; background: var(--teal); border-radius: 999px; transition: width .35s ease; }
.funnel-progress-label { font-size: 13px; color: var(--muted); margin-top: 10px; font-weight: 600; font-family: 'Figtree',sans-serif; }

.funnel-step { display: none; }
.funnel-step.active { display: block; animation: funnelIn .3s ease; }
@keyframes funnelIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.funnel-eyebrow { color: var(--teal); font-weight: 700; font-family: 'Figtree',sans-serif; font-size: 14px; margin-bottom: 8px; }
.funnel-q { font-size: clamp(22px, 3vw, 28px); font-weight: 700; color: var(--navy); margin-bottom: 6px; line-height: 1.25; }
.funnel-hint { color: var(--muted); font-size: 15px; margin-bottom: 24px; }

.opt-list { display: grid; gap: 12px; }
.opt { display: flex; align-items: center; gap: 14px; text-align: left; width: 100%; background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius); padding: 17px 20px; cursor: pointer; font-family: 'Inter',sans-serif; font-size: 16px; color: var(--navy); font-weight: 500; transition: border-color .15s, box-shadow .15s, background .15s; }
.opt:hover { border-color: var(--teal); box-shadow: var(--shadow-sm); }
.opt.selected { border-color: var(--teal); background: var(--mint); }
.opt-check { width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--line); flex: none; display: inline-flex; align-items: center; justify-content: center; color: #fff; font-size: 12px; transition: .15s; }
.opt.selected .opt-check { background: var(--teal); border-color: var(--teal); }

.funnel-fields { display: grid; gap: 16px; }
.funnel-field label { display: block; font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 6px; font-family: 'Figtree',sans-serif; }
.funnel-field input, .funnel-field textarea { width: 100%; border: 1.5px solid var(--line); border-radius: 12px; padding: 13px 16px; font-family: 'Inter',sans-serif; font-size: 16px; color: var(--navy); background: #fff; }
.funnel-field input:focus, .funnel-field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(33,165,150,.15); }
.funnel-field .err { color: #ef4444; font-size: 12.5px; margin-top: 5px; display: none; font-weight: 600; }
.funnel-field.invalid input { border-color: #ef4444; border-left-width: 5px; background: #fef2f2; }
.funnel-field.invalid label { color: #ef4444; }
.funnel-field.invalid .err { display: block; }
.funnel-consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--muted); line-height: 1.5; }
.funnel-consent input { margin-top: 3px; flex: none; }
.funnel-consent a { color: var(--teal); text-decoration: underline; }

.funnel-nav { display: flex; align-items: center; justify-content: space-between; margin-top: 28px; gap: 16px; }
.funnel-prev { background: none; border: none; color: var(--muted); font-size: 14px; font-weight: 600; cursor: pointer; font-family: 'Figtree',sans-serif; display: inline-flex; align-items: center; gap: 6px; }
.funnel-prev:hover { color: var(--navy); }
.funnel-prev[hidden] { visibility: hidden; }
.btn[hidden] { display: none !important; }

.funnel-success { text-align: center; padding: 16px 0; }
.funnel-success .succ-icon { width: 72px; height: 72px; border-radius: 50%; background: var(--teal); color: #fff; display: inline-flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.funnel-success h2 { font-size: 28px; margin-bottom: 12px; }
.funnel-success p { color: var(--muted); max-width: 440px; margin: 0 auto 26px; }

@media (max-width: 560px) { .funnel-card { padding: 28px 22px; } }

/* ===================== Rechtstext-Seiten (Impressum / Datenschutz) ===================== */
.legal { padding: 56px 0 72px; }
.legal .container { max-width: 820px; }
.legal h1 { font-family: 'Figtree', sans-serif; font-weight: 700; color: var(--navy, #26547C); font-size: clamp(30px, 4vw, 44px); margin: 0 0 8px; }
.legal .legal-intro { color: #5b6b7b; margin: 0 0 32px; font-size: 17px; }
.legal h2 { font-family: 'Figtree', sans-serif; font-weight: 600; color: var(--navy, #26547C); font-size: 22px; margin: 36px 0 10px; }
.legal h3 { font-family: 'Figtree', sans-serif; font-weight: 600; color: var(--navy, #26547C); font-size: 18px; margin: 22px 0 6px; }
.legal p, .legal li { font-size: 16px; line-height: 1.7; color: #2c3b49; }
.legal ul { padding-left: 22px; margin: 8px 0 16px; }
.legal li { margin-bottom: 4px; }
.legal a { color: #21A596; }
.legal .legal-box { background: #EFF7F6; border-radius: 12px; padding: 18px 22px; margin: 16px 0 8px; }
.legal .legal-note { font-size: 14px; color: #6a7886; border-top: 1px solid var(--line, #e3e9ee); margin-top: 40px; padding-top: 18px; }

/* ===================== Cookie-Consent-Banner ===================== */
#cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 999;
  background: #fff; border: 1px solid var(--line, #e3ebf0); border-radius: 16px;
  box-shadow: 0 18px 50px rgba(38,84,124,.20);
}
#cookie-banner .cb-inner {
  display: flex; align-items: center; gap: 22px;
  max-width: 1120px; margin: 0 auto; padding: 18px 22px; flex-wrap: wrap;
}
#cookie-banner .cb-text { flex: 1 1 380px; font-size: 14.5px; line-height: 1.55; color: #2c3b49; }
#cookie-banner .cb-text strong { color: var(--navy, #26547C); }
#cookie-banner .cb-text a { color: #21A596; }
#cookie-banner .cb-actions { display: flex; gap: 10px; flex: none; }
#cookie-banner .cb-deny { background: #eef2f5; color: var(--navy, #26547C); }
#cookie-banner .cb-deny:hover { background: #e2e8ed; }
#cookie-banner .cb-accept { padding: 15px 38px; font-size: 16px; font-weight: 700; box-shadow: 0 10px 24px rgba(33,165,150,.35); }
#cookie-banner .cb-accept:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(33,165,150,.40); }
@media (max-width: 560px) {
  #cookie-banner .cb-actions { width: 100%; }
  #cookie-banner .cb-actions .btn { flex: 1; justify-content: center; }
}

/* Honeypot-Feld (Bot-Schutz) – für Menschen unsichtbar, für Bots ein Köder */
.hp-field { position: absolute !important; left: -9999px !important; top: auto; width: 1px; height: 1px; overflow: hidden; }
