/* =====================================================================
   PFLEGEKOMPASS · Landing Page Styles
   Aesthetic: "Warm & Würdevoll" — Braun-Ink & Sand, Terrakotta/Apricot-Akzent, Salbei, Serif-Display, große Schrift
   ===================================================================== */
@import url("../fonts/fonts.css");

:root {
  --ink: #2a1c15;
  --ink-2: #35251c;
  --ink-3: #443127;
  --paper: #f8f2e9;
  --paper-2: #f0e6d8;
  --paper-3: #e6d9c6;
  --yellow: #f4a261;
  --yellow-deep: #d97f3d;
  --green: #6cbf8e;
  --green-deep: #3f9a67;
  --red: #ff4d4d;
  --text: #2a1c15;
  --text-soft: #5e4d43;
  --text-inv: #f8f2e9;
  --text-inv-soft: #c9b6a6;
  --line: rgba(42, 28, 21, 0.12);
  --line-inv: rgba(248, 242, 233, 0.14);
  --radius: 18px;
  --radius-sm: 10px;
  --shadow-lg: 0 30px 60px -20px rgba(42, 28, 21, 0.35), 0 10px 20px -10px rgba(42, 28, 21, 0.2);
  --shadow-md: 0 12px 30px -12px rgba(42, 28, 21, 0.25);
  --font-display: "Newsreader", Georgia, "Times New Roman", serif;
  --font-body: "Figtree", "Helvetica Neue", Arial, sans-serif;
  --container: 1180px;
  --sticky-h: 56px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.55;
  color: var(--text);
  background: var(--paper);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select { font: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.08; margin: 0; letter-spacing: -0.01em; font-variation-settings: 'opsz' 72; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
@media (max-width: 640px) { .container { width: calc(100% - 32px); } }

/* --- Type scale --- */
.h-display { font-size: clamp(2.3rem, 4.8vw, 3.9rem); font-weight: 600; }
.h-1 { font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 600; }
.h-2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); font-weight: 700; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; flex-wrap: nowrap;
  font-family: var(--font-display); font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-soft);
}
.eyebrow::before { content: ""; width: 26px; height: 3px; background: var(--yellow); border-radius: 2px; }
.dark .eyebrow { color: var(--text-inv-soft); }
.lead { font-size: 1.15rem; color: var(--text-soft); max-width: 60ch; }
.dark .lead { color: var(--text-inv-soft); }
.mark { background: linear-gradient(transparent 58%, var(--yellow) 58%, var(--yellow) 92%, transparent 92%); padding: 0 .1em; }
.dark .mark { background: linear-gradient(transparent 58%, var(--yellow) 58%, var(--yellow) 92%, transparent 92%); color: var(--paper); }

/* --- Sections --- */
section { position: relative; padding: clamp(64px, 9vw, 120px) 0; }
.dark { background: var(--ink); color: var(--text-inv); }
.dark-2 { background: var(--ink-2); color: var(--text-inv); }
.paper-2 { background: var(--paper-2); }

/* Wave divider (Wärme) */
.stripe {
  height: 14px; width: 100%;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='14' viewBox='0 0 120 14'><path d='M0 9 Q30 -4 60 9 T120 9' fill='none' stroke='%23f4a261' stroke-width='2'/><path d='M0 12 Q30 -1 60 12 T120 12' fill='none' stroke='%236cbf8e' stroke-width='1.2' opacity='.7'/></svg>") repeat-x center / 120px 14px;
  opacity: .9;
}

/* Grain overlay */
.grain::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0; opacity: .07; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.grain > * { position: relative; z-index: 1; }

/* --- Buttons --- */
.btn {
  --bg: var(--yellow); --fg: var(--ink); font-family: var(--font-body) !important;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--bg); color: var(--fg); border: 0; cursor: pointer;
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; letter-spacing: -0.01em;
  padding: 16px 26px; border-radius: 999px; text-decoration: none;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  box-shadow: 0 10px 24px -10px rgba(217, 127, 61, .6);
  position: relative; overflow: hidden;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(217, 127, 61, .75); }
.btn:active { transform: translateY(0); }
.btn::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.55) 50%, transparent 70%); transform: translateX(-120%); transition: transform .6s ease; }
.btn:hover::after { transform: translateX(120%); }
.btn-lg { padding: 20px 34px; font-size: 1.15rem; }
.btn-block { width: 100%; }
.btn-ghost { --bg: transparent; --fg: var(--text-inv); box-shadow: none; border: 2px solid var(--line-inv); }
.btn-ghost:hover { box-shadow: none; background: rgba(255,255,255,.06); }
.btn-ghost-dark { --bg: transparent; --fg: var(--ink); box-shadow: none; border: 2px solid var(--ink); }
.btn-ghost-dark:hover { box-shadow: none; background: rgba(42,28,21,.05); }
.btn-arrow { width: 22px; height: 22px; flex: none; }
.btn .btn-arrow { transition: transform .2s ease; }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* --- Top bar --- */
.topbar {
  position: sticky; top: 0; z-index: 50; height: var(--sticky-h);
  background: rgba(248, 242, 233, .88); backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 16px; }
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; letter-spacing: -0.03em; }
.logo-mark { width: 34px; height: 34px; border-radius: 9px; background: var(--ink); display: grid; place-items: center; color: var(--yellow); font-size: 1rem; font-weight: 800; position: relative; overflow: hidden; }
.logo-mark::after { content: ""; position: absolute; left: 6px; right: 6px; bottom: 5px; height: 4px; background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='4' viewBox='0 0 12 4'><path d='M0 2 Q3 0 6 2 T12 2' fill='none' stroke='%23f4a261' stroke-width='1.6'/></svg>") repeat-x; }
.topbar-trust { display: flex; gap: 18px; font-size: .85rem; color: var(--text-soft); font-weight: 600; }
.topbar-trust span { display: inline-flex; align-items: center; gap: 6px; }
.topbar-trust svg { width: 16px; height: 16px; color: var(--green-deep); }
.topbar .btn { padding: 10px 18px; font-size: .95rem; }
@media (max-width: 900px) { .topbar-trust { display: none; } }
@media (max-width: 480px) { .topbar .btn { display: none; } }

/* --- HERO --- */
.hero { padding: clamp(36px, 5vw, 72px) 0 clamp(64px, 8vw, 110px); overflow: hidden; }
.hero-grid > *, .calc > *, .how-grid > * { min-width: 0; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 4vw, 64px); align-items: start; }
.hero-copy { padding-top: 24px; }
.hero-copy .h-display { margin: 18px 0 20px; }
.hero-copy .h-display em { font-style: normal; color: var(--yellow-deep); }
.hero-bullets { display: grid; gap: 12px; margin: 26px 0 30px; }
.hero-bullets li { display: flex; align-items: flex-start; gap: 12px; font-weight: 500; }
.hero-bullets svg { flex: none; width: 24px; height: 24px; margin-top: 2px; }
.hero-cta-mobile { display: none; }
.hero-proof { display: flex; align-items: center; gap: 14px; margin-top: 8px; }
.avatars { display: flex; }
.avatars span { width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--paper); margin-left: -10px; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: .8rem; color: var(--ink); }
.avatars span:first-child { margin-left: 0; }
.stars { color: var(--yellow-deep); letter-spacing: 1px; font-size: 1rem; }
.hero-proof small { display: block; color: var(--text-soft); font-size: .85rem; }

.hero-grid { grid-template-rows: auto auto 1fr; }
.hero-copy { grid-column: 1; grid-row: 1; }
.hero-extra { grid-column: 1; grid-row: 2; margin-top: -30px; }
.hero-visual { grid-row: 3; }
.funnel-wrap { grid-column: 2; grid-row: 1 / span 3; position: sticky; top: calc(var(--sticky-h) + 16px); align-self: start; }
.hero-visual { position: relative; grid-column: 1; margin-top: 44px; }
.hero-photo { border-radius: 26px; overflow: hidden; aspect-ratio: 3/2; box-shadow: var(--shadow-lg); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.sticker {
  position: absolute; background: var(--paper); border-radius: 14px; padding: 12px 16px;
  box-shadow: var(--shadow-md); font-family: var(--font-display); font-weight: 800; line-height: 1.1;
  border: 1px solid var(--line);
}
.sticker b { display: block; font-size: 1.5rem; }
.sticker small { font-family: var(--font-body); font-weight: 600; font-size: .78rem; color: var(--text-soft); }
.sticker-1 { left: -22px; top: 22%; }
.sticker-2 { right: -12px; bottom: 16%; background: var(--yellow); }
.sticker-2 small { color: rgba(42,28,21,.7); }
.sticker-3 { left: 6%; bottom: -18px; background: var(--ink); color: var(--paper); }
.sticker-3 small { color: var(--text-inv-soft); }

/* Hero layout: form on the right on desktop; on mobile form under headline */
@media (max-width: 980px) {
  .hero { padding-top: 22px; }
  .hero-grid { grid-template-columns: 1fr; grid-template-rows: auto; gap: 22px; }
  .hero-copy, .hero-extra, .funnel-wrap { grid-column: 1; grid-row: auto; }
  .funnel-wrap { position: relative; top: auto; }
  .hero-visual { display: none; }
  .hero-copy { padding-top: 6px; }
  .hero-copy .h-display { font-size: clamp(2rem, 8.4vw, 2.7rem); margin: 12px 0 12px; }
  .hero-copy .lead { font-size: 1.02rem; }
  .hero-extra { order: 3; margin-top: 0; }
  .hero-bullets { margin: 6px 0 18px; }
  .funnel { padding: 20px 16px; }
}
.how-photo img { width: 100%; height: auto; }

/* --- FUNNEL CARD --- */
.funnel-wrap { position: relative; }
.funnel {
  background: var(--ink); color: var(--text-inv); border-radius: 24px; padding: 26px;
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.funnel::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 90% -10%, rgba(244,162,97,.18), transparent 60%); pointer-events: none; }
.funnel > * { position: relative; }
.funnel-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; flex-wrap: wrap; }
.funnel-head h2 { font-size: 1.3rem; font-weight: 700; }
.funnel-badge { font-size: .75rem; font-weight: 700; padding: 6px 10px; border-radius: 999px; background: rgba(108,191,142,.15); color: var(--green); border: 1px solid rgba(108,191,142,.35); white-space: nowrap; }
.progress { height: 6px; background: rgba(255,255,255,.1); border-radius: 999px; overflow: hidden; margin: 6px 0 20px; }
.progress i { display: block; height: 100%; width: 10%; background: linear-gradient(90deg, var(--yellow-deep), var(--yellow)); border-radius: 999px; transition: width .4s cubic-bezier(.2,.8,.2,1); }
.progress-label { display: flex; justify-content: space-between; font-size: .78rem; color: var(--text-inv-soft); margin-bottom: 6px; font-weight: 600; }

.step { display: none; animation: stepIn .35s ease both; }
.step.active { display: block; }
@keyframes stepIn { from { opacity: 0; transform: translateX(14px); } to { opacity: 1; transform: none; } }
.step h3 { font-size: 1.45rem; font-weight: 700; margin-bottom: 6px; }
.step .hint { color: var(--text-inv-soft); font-size: .92rem; margin-bottom: 16px; }

.choices { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
@media (max-width: 480px) { .choices { grid-template-columns: 1fr; } .choice { padding: 12px 14px; } }
.choices.cols-1 { grid-template-columns: 1fr; }
.choice {
  display: flex; align-items: center; gap: 12px; text-align: left; width: 100%; min-height: 64px;
  background: rgba(255,255,255,.05); border: 1.5px solid var(--line-inv); color: var(--text-inv);
  border-radius: 14px; padding: 14px 14px; cursor: pointer;
  transition: border-color .15s, background .15s, transform .12s;
}
.choice:hover { border-color: rgba(244,162,97,.6); background: rgba(244,162,97,.06); transform: translateY(-1px); }
.choice.selected { border-color: var(--yellow); background: rgba(244,162,97,.12); }
.choice .ico { width: 38px; height: 38px; flex: none; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; }
.choice .ico svg { width: 22px; height: 22px; }
.choice b { display: block; font-family: var(--font-body); font-weight: 700; font-size: 1.02rem; line-height: 1.2; }
.choice small { display: block; color: var(--text-inv-soft); font-size: .78rem; margin-top: 2px; }
.choice { position: relative; }
.choice .tag { position: absolute; top: -8px; right: 10px; font-size: .68rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; background: var(--yellow); color: var(--ink); padding: 3px 7px; border-radius: 6px; }

.field { margin-bottom: 12px; }
.field label { display: block; font-size: .85rem; font-weight: 700; margin-bottom: 6px; color: var(--text-inv-soft); }
.field input, .field select {
  width: 100%; background: rgba(255,255,255,.06); border: 1.5px solid var(--line-inv); color: var(--text-inv);
  border-radius: 12px; padding: 14px 14px; font-size: 1.02rem; outline: none; transition: border-color .15s, box-shadow .15s;
}
.field input::placeholder { color: rgba(255,255,255,.35); }
.field input:focus, .field select:focus { border-color: var(--yellow); box-shadow: 0 0 0 4px rgba(244,162,97,.15); }
.field.invalid input { border-color: var(--red); }
.field .err { display: none; color: #ff8a8a; font-size: .8rem; margin-top: 5px; }
.field.invalid .err { display: block; }
.field-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
@media (max-width: 400px) { .field-row { grid-template-columns: 1fr; } }
.plz-info { display: none; align-items: center; gap: 8px; margin: -2px 0 12px; font-size: .85rem; color: var(--green); font-weight: 600; }
.plz-info.show { display: flex; }
.plz-info svg { width: 16px; height: 16px; }

.consent { display: flex; gap: 10px; align-items: flex-start; font-size: .84rem; color: var(--text-inv-soft); line-height: 1.45; margin: 12px 0 14px; }
.consent input { margin-top: 3px; accent-color: var(--yellow); width: 16px; height: 16px; flex: none; }
.consent a { color: var(--text-inv); }
.consent.invalid { color: #ff8a8a; }

.funnel-nav { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 16px; }
.btn-back { background: none; border: 0; color: var(--text-inv-soft); font-weight: 600; cursor: pointer; padding: 10px 6px; display: inline-flex; align-items: center; gap: 6px; }
.btn-back:hover { color: var(--text-inv); }
.btn-back svg { width: 16px; height: 16px; }
.funnel-foot { display: flex; flex-wrap: wrap; gap: 10px 16px; justify-content: center; margin-top: 16px; font-size: .75rem; color: var(--text-inv-soft); }
.funnel-foot span { display: inline-flex; align-items: center; gap: 5px; }
.funnel-foot svg { width: 14px; height: 14px; color: var(--green); }

.summary { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 8px; margin: 4px 0 16px; }
.summary div { background: rgba(255,255,255,.05); border: 1px solid var(--line-inv); border-radius: 10px; padding: 8px 10px; font-size: .78rem; }
.summary b { display: block; font-size: .88rem; font-family: var(--font-display); font-weight: 700; line-height: 1.2; }
.summary small { color: var(--text-inv-soft); }

/* Thank you */
.thanks { text-align: center; padding: 10px 0 4px; }
.thanks .check { width: 72px; height: 72px; margin: 0 auto 16px; border-radius: 50%; background: var(--green); display: grid; place-items: center; animation: pop .5s cubic-bezier(.2,1.4,.4,1) both; }
.thanks .check svg { width: 36px; height: 36px; color: var(--ink); }
@keyframes pop { from { transform: scale(.4); opacity: 0 } to { transform: scale(1); opacity: 1 } }
.thanks h3 { font-size: 1.6rem; margin-bottom: 8px; }
.thanks p { color: var(--text-inv-soft); }
.next-steps { text-align: left; margin: 18px 0; display: grid; gap: 10px; }
.next-steps li { display: flex; gap: 12px; align-items: flex-start; font-size: .92rem; }
.next-steps i { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--yellow); color: var(--ink); font-style: normal; font-weight: 800; font-family: var(--font-display); display: grid; place-items: center; font-size: .85rem; }

/* --- STATS BAND --- */
.stats { padding: clamp(48px, 6vw, 80px) 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { border-left: 3px solid var(--yellow); padding-left: 18px; }
.stat b { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(1.7rem, 2.6vw, 2.4rem); letter-spacing: -0.03em; line-height: 1; white-space: nowrap; }
.stat span { display: block; color: var(--text-inv-soft); font-size: .92rem; margin-top: 8px; }
.stats-src { margin-top: 26px; font-size: .78rem; color: var(--text-inv-soft); opacity: .8; }
@media (max-width: 900px) { .stats-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .stats-grid { grid-template-columns: 1fr; } .stat b { white-space: normal; } }

/* --- HOW IT WORKS --- */
.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.how-photo { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.how-photo img { aspect-ratio: 4/3; object-fit: cover; }
.how-photo figcaption { position: absolute; left: 16px; bottom: 16px; background: rgba(42,28,21,.85); color: var(--paper); backdrop-filter: blur(6px); padding: 10px 14px; border-radius: 10px; font-size: .85rem; font-weight: 600; }
.steps-list { display: grid; gap: 22px; margin-top: 30px; }
.steps-list li { display: grid; grid-template-columns: 56px 1fr; gap: 18px; align-items: start; }
.steps-list .num { width: 56px; height: 56px; border-radius: 16px; background: var(--ink); color: var(--yellow); font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; display: grid; place-items: center; }
.steps-list h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 4px; }
.steps-list p { color: var(--text-soft); font-size: .98rem; }
@media (max-width: 900px) { .how-grid { grid-template-columns: 1fr; } .how-photo { order: 2; } }

/* --- CALCULATORS --- */
.calc-head { text-align: center; max-width: 720px; margin: 0 auto 36px; }
.calc-head .lead { margin: 14px auto 0; }
.tabs { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 26px; }
.tab { border: 1.5px solid var(--line); background: transparent; border-radius: 999px; padding: 10px 18px; font-weight: 700; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; transition: all .15s; }
.tab svg { width: 18px; height: 18px; }
.tab:hover { border-color: var(--ink); }
.tab.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.calc-panel { display: none; }
.calc-panel.active { display: block; animation: stepIn .3s ease both; }
.calc {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 26px;
  background: #fff; border-radius: 24px; padding: 26px; box-shadow: var(--shadow-md); border: 1px solid var(--line);
}
@media (max-width: 900px) { .calc { grid-template-columns: 1fr; } }
.calc-inputs { display: grid; gap: 16px; align-content: start; }
.calc-inputs label, .calc-inputs .lbl { display: block; font-size: .85rem; font-weight: 700; margin-bottom: 8px; color: var(--text-soft); }
.calc-inputs select, .calc-inputs input[type=number] {
  width: 100%; padding: 12px 14px; border-radius: 12px; border: 1.5px solid var(--line); background: var(--paper); font-size: 1rem; outline: none;
}
.calc-inputs select:focus, .calc-inputs input:focus { border-color: var(--ink); }
.seg { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; background: var(--paper-2); padding: 5px; border-radius: 12px; }
.seg.cols-4 { grid-template-columns: repeat(4, 1fr); }
.seg.cols-2 { grid-template-columns: repeat(2, 1fr); }
.seg button { border: 0; background: transparent; padding: 10px 6px; border-radius: 9px; font-weight: 700; font-size: .88rem; cursor: pointer; color: var(--text-soft); transition: all .15s; }
.seg button.active { background: var(--ink); color: var(--paper); box-shadow: 0 4px 10px -4px rgba(0,0,0,.4); }
.range-wrap { display: flex; align-items: center; gap: 12px; }
.range-wrap input[type=range] { flex: 1; accent-color: var(--ink); }
.range-wrap output { font-family: var(--font-display); font-weight: 800; min-width: 3.2ch; text-align: right; }

.calc-result { background: var(--ink); color: var(--text-inv); border-radius: 18px; padding: 24px; position: relative; overflow: hidden; }
.calc-result::before { content: ""; position: absolute; inset: 0; background: radial-gradient(500px 220px at 100% 0%, rgba(244,162,97,.16), transparent 60%); pointer-events: none; }
.calc-result > * { position: relative; }
.calc-result .big { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.2rem, 4vw, 3.1rem); letter-spacing: -0.03em; line-height: 1; }
.calc-result .range-note { color: var(--text-inv-soft); font-size: .92rem; margin: 6px 0 18px; }
.bars { display: grid; gap: 9px; margin: 8px 0 18px; }
.bar { display: grid; grid-template-columns: 1fr auto; gap: 8px; font-size: .84rem; align-items: center; }
.bar .lbl { color: var(--text-inv-soft); }
.bar .val { font-family: var(--font-display); font-weight: 700; }
.bar .track { grid-column: 1 / -1; height: 7px; background: rgba(255,255,255,.1); border-radius: 999px; overflow: hidden; }
.bar .track i { display: block; height: 100%; width: 0; background: var(--yellow); border-radius: 999px; transition: width .6s cubic-bezier(.2,.8,.2,1); }
.bar.green .track i { background: var(--green); }
.saving { display: flex; align-items: center; gap: 12px; background: rgba(108,191,142,.12); border: 1px solid rgba(108,191,142,.35); border-radius: 12px; padding: 12px 14px; margin-bottom: 16px; }
.saving svg { width: 26px; height: 26px; color: var(--green); flex: none; }
.saving b { color: var(--green); font-family: var(--font-display); font-size: 1.05rem; }
.saving span { font-size: .85rem; color: var(--text-inv-soft); display: block; }
.calc-result .btn { width: 100%; }
.calc-note { font-size: .74rem; color: var(--text-inv-soft); margin-top: 12px; opacity: .8; }

.rate-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin: 10px 0 18px; }
.rate-grid div { background: rgba(255,255,255,.06); border: 1.5px solid var(--line-inv); border-radius: 12px; padding: 12px 8px; text-align: center; cursor: pointer; transition: all .15s; }
.rate-grid div.active { border-color: var(--yellow); background: rgba(244,162,97,.12); }
.rate-grid b { display: block; font-family: var(--font-display); font-size: 1.15rem; }
.rate-grid small { color: var(--text-inv-soft); font-size: .74rem; }
@media (max-width: 480px) { .rate-grid { grid-template-columns: 1fr 1fr; } }

.timeline { display: grid; gap: 0; margin: 14px 0 18px; }
.timeline li { display: grid; grid-template-columns: 22px 1fr auto; gap: 12px; align-items: start; padding: 10px 0; border-bottom: 1px dashed var(--line-inv); font-size: .9rem; }
.timeline li:last-child { border-bottom: 0; }
.timeline .dot { width: 14px; height: 14px; border-radius: 50%; background: var(--yellow); margin-top: 4px; }
.timeline .dot.g { background: var(--green); }
.timeline b { font-family: var(--font-display); font-weight: 700; }
.timeline .when { color: var(--text-inv-soft); font-size: .8rem; text-align: right; white-space: nowrap; }

/* --- CITIES --- */
.cities { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 30px; }
.city { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 16px 18px; cursor: pointer; text-align: left; transition: transform .15s, box-shadow .15s, border-color .15s; display: flex; flex-direction: column; gap: 4px; }
.city:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--ink); }
.city b { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; }
.city span { color: var(--text-soft); font-size: .88rem; }
.city em { font-style: normal; font-size: .75rem; color: var(--green-deep); font-weight: 700; margin-top: 4px; }
@media (max-width: 900px) { .cities { grid-template-columns: 1fr 1fr; } }

/* --- WHY / BENEFITS --- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.why { background: rgba(255,255,255,.04); border: 1px solid var(--line-inv); border-radius: 18px; padding: 24px; }
.why .ico { width: 46px; height: 46px; border-radius: 12px; background: var(--yellow); color: var(--ink); display: grid; place-items: center; margin-bottom: 16px; }
.why .ico svg { width: 24px; height: 24px; }
.why h3 { font-size: 1.15rem; margin-bottom: 8px; }
.why p { color: var(--text-inv-soft); font-size: .95rem; }
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; } }

/* --- FULL BLEED IMAGE CTA --- */
.bleed { padding: 0; }
.bleed-inner { position: relative; min-height: 520px; display: grid; place-items: center; overflow: hidden; }
.bleed-inner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bleed-inner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(42,28,21,.25), rgba(42,28,21,.75)); }
.bleed-copy { position: relative; z-index: 1; text-align: center; color: var(--paper); padding: 80px 20px; max-width: 760px; }
.bleed-copy h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); font-weight: 800; margin-bottom: 14px; }
.bleed-copy p { color: rgba(248,242,233,.85); font-size: 1.1rem; margin-bottom: 26px; }

/* --- TESTIMONIALS --- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.testi { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 24px; display: flex; flex-direction: column; gap: 14px; }
.testi .stars { font-size: 1.05rem; }
.testi p { font-size: 1rem; }
.testi footer { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testi .av { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; color: var(--ink); }
.testi footer b { display: block; font-size: .95rem; }
.testi footer small { color: var(--text-soft); font-size: .8rem; }
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }

/* --- FAQ --- */
.faq { max-width: 820px; margin: 30px auto 0; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 20px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--ink); display: grid; place-items: center; flex: none; font-weight: 400; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); background: var(--ink); color: var(--paper); }
.faq .ans { padding: 0 0 20px; color: var(--text-soft); max-width: 68ch; }

/* --- FINAL CTA --- */
.final { text-align: center; }
.final .h-1 { max-width: 20ch; margin: 14px auto 16px; }
.final .lead { margin: 0 auto 28px; }

/* --- FOOTER --- */
footer.site { background: var(--ink); color: var(--text-inv-soft); padding: 40px 0 100px; font-size: .85rem; }
footer.site .container { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 28px; }
footer.site h4 { color: var(--paper); font-size: .95rem; margin-bottom: 10px; }
footer.site a { color: var(--text-inv-soft); text-decoration: none; display: block; padding: 3px 0; }
footer.site a:hover { color: var(--paper); }
footer.site a.logo { display: inline-flex; padding: 0; color: var(--paper); }
footer.site .logo-mark { background: var(--yellow); color: var(--ink); }

footer.site .legal { grid-column: 1 / -1; border-top: 1px solid var(--line-inv); padding-top: 18px; font-size: .75rem; opacity: .75; }
@media (max-width: 760px) { footer.site .container { grid-template-columns: 1fr; } }

/* --- STICKY MOBILE CTA --- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(248,242,233,.94); backdrop-filter: blur(10px); border-top: 1px solid var(--line);
  transform: translateY(110%); transition: transform .3s ease; display: flex; align-items: center; gap: 12px;
}
.sticky-cta.show { transform: none; }
.sticky-cta .txt { font-size: .8rem; font-weight: 700; line-height: 1.2; }
.sticky-cta .txt small { display: block; color: var(--text-soft); font-weight: 600; }
.sticky-cta .btn { margin-left: auto; padding: 12px 18px; font-size: .95rem; white-space: nowrap; }
@media (min-width: 981px) { .sticky-cta { display: none; } }

/* --- EXIT MODAL --- */
.modal { position: fixed; inset: 0; z-index: 100; display: none; place-items: center; padding: 20px; background: rgba(42,28,21,.6); backdrop-filter: blur(4px); }
.modal.show { display: grid; }
.modal-card { background: var(--paper); border-radius: 22px; padding: 30px; max-width: 460px; width: 100%; position: relative; box-shadow: var(--shadow-lg); animation: pop .35s ease both; }
.modal-card h3 { font-size: 1.6rem; margin-bottom: 8px; }
.modal-card p { color: var(--text-soft); margin-bottom: 18px; }
.modal-close { position: absolute; top: 12px; right: 12px; border: 0; background: var(--paper-2); width: 34px; height: 34px; border-radius: 50%; cursor: pointer; font-size: 1.1rem; }

/* --- Reveal on scroll --- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } * { animation: none !important; } }

/* Consent banner */
.consent-banner { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90; max-width: 720px; margin-inline: auto; background: var(--paper); border: 1px solid var(--line); border-radius: 18px; padding: 18px 20px; box-shadow: var(--shadow-lg); display: none; gap: 14px; align-items: center; font-size: .85rem; }
.consent-banner.show { display: flex; }
.consent-banner p { color: var(--text-soft); }
.consent-banner .consent-actions { display: flex; gap: 8px; flex: none; }
.consent-banner .btn { padding: 10px 16px; font-size: .9rem; }
@media (max-width: 640px) { .consent-banner { flex-direction: column; align-items: stretch; bottom: 76px; } .consent-banner .consent-actions { justify-content: stretch; } .consent-banner .btn { flex: 1; } }

/* Toast */
.toast { position: fixed; left: 50%; bottom: 90px; transform: translate(-50%, 20px); background: var(--ink); color: var(--paper); padding: 12px 18px; border-radius: 12px; font-size: .9rem; opacity: 0; pointer-events: none; transition: all .3s; z-index: 70; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* PflegeKompass-spezifisch */
.bar.off .val, .bar.off .lbl { opacity: .45; }
.bar.off .track i { background: rgba(255,255,255,.25); }
.calc-inputs .field-row label { display:block; font-size:.85rem; font-weight:700; margin-bottom:8px; color:var(--text-soft); }
@media (max-width: 480px) { .calc-inputs .field-row { grid-template-columns: 1fr !important; } }
