/* ============================================================
   Mirador Tax — Design System
   Palette: warm cream surfaces · near-black ink · terracotta accent
   Type: Figtree (warm humanist sans)
   ============================================================ */

:root {
  /* surfaces — warm light neutral + crisp white, paired with deep blue */
  --cream:    #faf8f9;   /* page / hero canvas (near-white) */
  --cream-2:  #efeeea;   /* alt section / soft */
  --cream-3:  #e3e1db;   /* deeper */
  --paper:    #ffffff;   /* white nav + cards */
  --ink:      #111216;   /* near-black */
  --ink-2:    #34363c;
  --muted:    #6a6c72;
  --muted-2:  #92949a;
  --line:     rgba(17,18,22,.12);
  --line-2:   rgba(17,18,22,.06);

  /* darker beige panels (CTA + calculator) */
  --beige:      #dcd5c4;
  --beige-line: rgba(22,20,10,.14);

  /* deep navy display panel (hero visual band) */
  --olive:     #1b2747;
  --olive-2:   #16203b;
  --olive-ink: #eef1f8;
  --olive-line: rgba(238,241,248,.20);

  /* primary CTA — black pill (ElevenLabs) */
  --cta:     #111216;
  --cta-2:   #000000;
  --cta-ink: #ffffff;
  --cta-soft: #aebdf2;

  /* accent (tweakable) — blue by default */
  --accent:        #2a4fd0;
  --accent-ink:    #ffffff;
  --accent-soft:   #cdd7f5;
  --accent-tint:   #e6ebfa;

  /* on-dark */
  --on-dark:       #eef1f8;
  --on-dark-muted: #9aa0ad;
  --on-dark-line:  rgba(238,241,248,.16);

  /* shape */
  --radius:   10px;
  --radius-s: 8px;
  --radius-l: 14px;

  /* type */
  --font: "Helvetica Neue", Helvetica, "Segoe UI", Arial, sans-serif;
  --maxw: 1440px;
  --gutter: clamp(24px, 7vw, 132px);

  --shadow-s: 0 1px 2px rgba(24,26,29,.04), 0 1px 4px rgba(24,26,29,.03);
  --shadow-m: 0 2px 8px rgba(24,26,29,.05), 0 10px 26px rgba(24,26,29,.06);
  --shadow-l: 0 4px 14px rgba(24,26,29,.06), 0 18px 44px rgba(24,26,29,.08);
}

/* radius variant: sharp */
[data-shape="sharp"] {
  --radius: 4px; --radius-s: 3px; --radius-l: 6px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 17px;
  line-height: 1.5;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--accent); color: #fff; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(24px, 4.5vw, 76px); }
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }

/* ---------- typography ---------- */
.eyebrow {
  font-size: 12.5px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent);
  display: inline-flex; align-items: center; gap: 9px;
}
.eyebrow--muted { color: var(--muted); }

h1, h2, h3 { margin: 0; font-weight: 600; line-height: 1.04; letter-spacing: -.02em; text-wrap: balance; }
.display {
  font-size: clamp(40px, 5.2vw, 64px);
  font-weight: 450;
  letter-spacing: -.025em;
  line-height: 1.04;
}
.h2 { font-size: clamp(30px, 3.6vw, 46px); letter-spacing: -.03em; }
.h3 { font-size: clamp(21px, 1.8vw, 26px); letter-spacing: -.02em; font-weight: 600; }
.lede {
  font-size: clamp(18px, 1.45vw, 21px);
  color: var(--muted); line-height: 1.5; font-weight: 400;
  text-wrap: pretty;
}
.kicker-num { font-variant-numeric: tabular-nums; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  border: 1px solid transparent; border-radius: 999px;
  font-size: 15.5px; font-weight: 600; letter-spacing: -.01em;
  padding: 13px 22px; transition: transform .14s ease, background .18s ease, box-shadow .18s ease, border-color .18s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--accent { background: var(--cta); color: var(--cta-ink); }
.btn--accent:hover { background: var(--cta-2); box-shadow: 0 6px 18px color-mix(in srgb, var(--cta) 46%, transparent); }
.btn--ink { background: var(--ink); color: var(--on-dark); }
.btn--ink:hover { background: #000; }
.btn--ghost { background: var(--paper); color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); background: var(--paper); }
.btn--lite { background: var(--on-dark); color: var(--ink); }
.btn--lite:hover { background: #fff; }
.btn--lg { padding: 16px 28px; font-size: 16.5px; }
.btn--block { width: 100%; }
.btn .arr { transition: transform .18s ease; }
.btn:hover .arr { transform: translateX(3px); }

.textlink {
  display: inline-flex; align-items: center; gap: 7px; font-weight: 600;
  font-size: 15.5px; border-bottom: 1.5px solid var(--line); padding-bottom: 2px;
  transition: border-color .18s, color .18s;
}
.textlink:hover { border-color: var(--accent); color: var(--accent); }
.textlink .arr { transition: transform .18s; }
.textlink:hover .arr { transform: translateX(3px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: #ffffff;
  border-bottom: 1px solid transparent;
  transition: border-color .25s, background .25s;
}
.nav.is-stuck { border-color: var(--line); box-shadow: 0 1px 0 var(--line-2); }
.nav .wrap { max-width: none; padding: 0 var(--gutter); }
.nav__row { display: flex; align-items: center; gap: 18px; height: 64px; }
.nav__brand { flex: none; display: inline-flex; align-items: center; }
.nav__logo { height: 34px; width: auto; max-width: none; flex: none; display: block; aspect-ratio: 1418 / 386; }
.nav__links { display: flex; align-items: center; gap: 2px; margin-left: 10px; }
.nav__link {
  font-size: 16px; font-weight: 500; color: var(--ink);
  padding: 8px 12px; border-radius: 999px; transition: background .15s, color .15s; white-space: nowrap;
}
.nav__link:hover { background: var(--cream-2); }
.nav__spacer { flex: 1; }
.nav__right { display: flex; align-items: center; gap: 10px; }
.nav__switch {
  display: inline-flex; align-items: center; gap: 7px; white-space: nowrap;
  font-size: 14px; font-weight: 650; color: var(--accent);
  padding: 8px 14px; border-radius: 999px;
  border: 1.5px solid var(--accent-soft); background: var(--accent-tint);
  transition: background .15s, border-color .15s;
}
.nav__switch:hover { background: var(--accent-soft); border-color: var(--accent); }
.nav__switch svg { flex: none; }

/* Floating WhatsApp consultation button */
.fconsult {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 22px 9px 11px;
  box-shadow: 0 10px 30px rgba(17,18,22,.16);
  transition: transform .16s ease, box-shadow .16s ease;
}
.fconsult:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(17,18,22,.22); }
.fconsult__avatars { display: inline-flex; }
.fconsult__ava { width: 38px; height: 38px; border-radius: 50%; border: 2.5px solid var(--paper); object-fit: cover; margin-left: -13px; background: var(--cream-2); }
.fconsult__ava:first-child { margin-left: 0; }
.fconsult__text { font-size: 16.5px; font-weight: 600; color: var(--ink); letter-spacing: -.01em; white-space: nowrap; }
@media (max-width: 560px) {
  .fconsult { right: 14px; bottom: 14px; padding: 7px 16px 7px 9px; gap: 10px; }
  .fconsult__text { font-size: 14.5px; }
  .fconsult__ava { width: 32px; height: 32px; margin-left: -11px; }
}
.nav__login { font-size: 16px; font-weight: 600; padding: 8px 10px; }
.nav__cta { padding: 9px 18px; font-size: 15px; white-space: nowrap; }
.nav__login:hover { color: var(--accent); }
.nav__burger { display: none; color: var(--ink); }

/* mobile dropdown menu (hidden on desktop) */
.nav__mobile, .nav__scrim { display: none; }
.nav__mobile {
  position: fixed; left: 0; right: 0; top: 64px; z-index: 59;
  background: #fff; border-bottom: 1px solid var(--line);
  max-height: 0; overflow: hidden; transition: max-height .32s ease;
}
.nav__mobile.open { max-height: calc(100vh - 64px); overflow-y: auto; box-shadow: 0 16px 34px rgba(20,18,10,.12); }
.nav__mobile-inner { padding: 8px var(--gutter) 26px; display: flex; flex-direction: column; }
.nav__mlink {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 16px 4px; font-size: 18px; font-weight: 600; color: var(--ink);
  border-bottom: 1px solid var(--line-2);
}
.nav__mlink svg { color: var(--muted-2); }
.nav__mlink.is-active { color: var(--accent); }
.nav__mlink.is-active svg { color: var(--accent); }
.nav__mobile-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 22px; }
.nav__mobile-actions .btn { width: 100%; justify-content: center; }
.nav__mobile-login { text-align: center; font-weight: 600; color: var(--muted); padding: 10px; font-size: 15px; }
.nav__scrim {
  position: fixed; left: 0; right: 0; top: 64px; bottom: 0; z-index: 58;
  background: rgba(20,19,17,.42); opacity: 0; pointer-events: none; transition: opacity .3s;
}
.nav__scrim.open { opacity: 1; pointer-events: auto; }

@media (max-width: 1040px) {
  .nav__switch { display: none; }
}

@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__signup, .nav__login { display: none; }
  .nav__mobile, .nav__scrim { display: block; }
  .nav__burger {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line);
    background: var(--paper); cursor: pointer;
  }
}

@media (max-width: 600px) {
  .nav__cta { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; align-items: stretch;
  min-height: clamp(560px, calc(100vh - 64px), 860px);
}
.hero__copy { display: flex; align-items: center; padding: 56px clamp(40px, 4vw, 72px) 56px var(--gutter); }
.hero__copy-inner { max-width: 560px; width: 100%; }
.hero__eyebrow { margin-bottom: 22px; color: var(--muted); }
.hero__title { margin-bottom: 26px; }
.hero__title em { font-style: normal; color: var(--ink); }
.hero__lede { max-width: 42ch; margin-bottom: 36px; font-size: clamp(18px, 1.3vw, 20px); color: var(--ink-2); line-height: 1.5; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__form {
  display: flex; gap: 8px; background: var(--paper); padding: 8px;
  border-radius: 999px; border: 1px solid var(--line); max-width: 480px;
  box-shadow: var(--shadow-s);
}
.hero__form input {
  flex: 1; border: 0; background: transparent; outline: none;
  font-family: inherit; font-size: 17px; padding: 4px 18px; color: var(--ink); min-width: 0;
}
.hero__form input::placeholder { color: var(--muted-2); }
.hero__note { margin-top: 14px; font-size: 14px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.hero__note svg { flex: none; }

.hero__trust { display: flex; align-items: center; gap: 14px; margin-top: 30px; }
.avatars { display: flex; }
.avatars span {
  width: 34px; height: 34px; border-radius: 50%; border: 2.5px solid var(--cream);
  margin-left: -10px; background-size: cover; background-position: center;
}
.avatars span:first-child { margin-left: 0; }
.hero__trust-text { font-size: 14px; color: var(--muted); line-height: 1.3; }
.hero__trust-text b { color: var(--ink); }

/* centered hero variant */
[data-hero="centered"] .hero__grid {
  grid-template-columns: 1fr; text-align: center; justify-items: center; gap: 40px;
  padding-top: 72px;
}
[data-hero="centered"] .hero__lede { max-width: 46ch; }
[data-hero="centered"] .hero__form { margin: 0 auto; }
[data-hero="centered"] .hero__note,
[data-hero="centered"] .hero__trust { justify-content: center; }
[data-hero="centered"] .hero__visual { width: 100%; max-width: 920px; margin-top: 8px; }

/* dark hero variant */
[data-hero="dark"] .hero { background: var(--ink); }
[data-hero="dark"] .hero__title, [data-hero="dark"] .hero h1 { color: var(--on-dark); }
[data-hero="dark"] .hero__lede { color: var(--on-dark-muted); }
[data-hero="dark"] .hero__form { background: rgba(255,255,255,.06); border-color: var(--on-dark-line); }
[data-hero="dark"] .hero__form input { color: var(--on-dark); }
[data-hero="dark"] .hero__note, [data-hero="dark"] .hero__trust-text { color: var(--on-dark-muted); }
[data-hero="dark"] .hero__trust-text b { color: var(--on-dark); }
[data-hero="dark"] .avatars span { border-color: var(--ink); }
[data-hero="dark"] .nav { background: color-mix(in srgb, var(--ink) 86%, transparent); }
[data-hero="dark"] .nav__link { color: var(--on-dark-muted); }
[data-hero="dark"] .nav__link:hover { background: rgba(255,255,255,.08); color: var(--on-dark); }
[data-hero="dark"] .nav__login { color: var(--on-dark); }
[data-hero="dark"] .nav.is-stuck { border-color: var(--on-dark-line); }
[data-hero="dark"] .nav__logo { content: none; }

/* ---------- hero visual (gradient panel) ---------- */
.hero__visual {
  position: relative;
  background:
    radial-gradient(95% 72% at 16% 94%, rgba(238,236,200,.85), transparent 55%),
    radial-gradient(75% 60% at 88% 4%, rgba(206,224,150,.55), transparent 55%),
    linear-gradient(158deg, #1f7a45 0%, #2f9a55 30%, #54b562 58%, #84c75e 84%, #aed65f 100%);
}
.hero__visual::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .42;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero__panel { position: absolute; inset: 0; display: grid; place-items: center; padding: clamp(36px, 4.5vw, 76px); }
.hero__panel .mock-wrap { width: 100%; max-width: 560px; position: relative; }
.mock {
  background: var(--paper); border: 1px solid rgba(255,255,255,.5); border-radius: 16px;
  box-shadow: 0 30px 70px rgba(8,22,46,.34); overflow: hidden; width: 100%;
}
.hero__pill {
  position: absolute; left: -34px; bottom: clamp(32px, 6vh, 64px); z-index: 4;
  display: flex; align-items: center; gap: 13px;
  background: #fff; border-radius: 999px; padding: 10px 24px 10px 11px;
  box-shadow: 0 16px 40px rgba(8,22,46,.22), 0 2px 6px rgba(8,22,46,.1);
}
.hero__pill-ava {
  width: 36px; height: 36px; border-radius: 50%; flex: none;
  background:
    radial-gradient(120% 120% at 30% 25%, #aed65f, transparent 60%),
    linear-gradient(150deg, #1f7a45, #54b562);
}
.hero__pill-text { display: flex; flex-direction: column; line-height: 1.12; }
.hero__pill-text small { font-size: 11px; color: var(--muted); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.hero__pill-text b { font-size: 15.5px; font-weight: 700; color: var(--ink); letter-spacing: -.01em; }

/* ---------- hero social proof ---------- */
.hero__proof { margin-top: 34px; display: flex; flex-direction: column; gap: 18px; }
.hero__proof-people { display: flex; align-items: center; gap: 14px; }
.hero__avatars { display: flex; }
.hero__avatars span {
  width: 38px; height: 38px; border-radius: 50%; border: 2.5px solid var(--cream);
  margin-left: -12px; box-shadow: 0 1px 3px rgba(0,0,0,.14);
  background-size: cover; background-position: center; background-color: var(--cream-3);
}
.hero__avatars span:first-child { margin-left: 0; }
.hero__proof-text { font-size: 14px; color: var(--muted); line-height: 1.3; }
.hero__proof-text .stars { color: #e0a92a; font-size: 13px; letter-spacing: 2px; }
.hero__proof-text b { color: var(--ink); font-weight: 700; }
.hero__checks { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 24px; }
.hero__checks li { display: flex; align-items: center; gap: 9px; font-size: 14.5px; color: var(--ink-2); font-weight: 500; }
.hero__check-ic {
  width: 20px; height: 20px; border-radius: 50%; flex: none; display: grid; place-items: center;
  background: #dff0d2; color: #2f9a55;
}
.mock__bar {
  display: flex; align-items: center; gap: 8px; padding: 13px 16px;
  border-bottom: 1px solid var(--line-2); background: var(--cream);
}
.mock__dot { width: 11px; height: 11px; border-radius: 50%; background: var(--cream-3); }
.mock__url {
  margin-left: 10px; font-size: 12.5px; color: var(--muted); background: var(--paper);
  border: 1px solid var(--line-2); border-radius: 8px; padding: 5px 12px; flex: 1;
  display: flex; align-items: center; gap: 7px;
}
.mock__body { display: grid; grid-template-columns: 188px 1fr; min-height: 380px; }
.mock__side { border-right: 1px solid var(--line-2); padding: 18px 14px; background: var(--cream); }
.mock__brand { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15px; margin-bottom: 20px; }
.mock__brand img { height: 18px; }
.mock__navitem {
  display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--muted);
  padding: 9px 11px; border-radius: 9px; margin-bottom: 2px; font-weight: 500;
}
.mock__navitem.is-active { background: var(--accent-tint); color: var(--accent); font-weight: 600; }
.mock__navitem .ic { width: 16px; height: 16px; flex: none; }
.mock__main { padding: 22px 22px; }
.mock__h { font-size: 17px; font-weight: 700; letter-spacing: -.01em; margin-bottom: 3px; }
.mock__sub { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.mock__steps { display: flex; flex-direction: column; gap: 10px; }
.mock__step {
  display: flex; align-items: center; gap: 12px; padding: 13px 14px;
  border: 1px solid var(--line-2); border-radius: 12px; background: var(--paper);
}
.mock__check {
  width: 22px; height: 22px; border-radius: 50%; flex: none; display: grid; place-items: center;
  background: var(--cream-2); color: var(--muted);
}
.mock__step.done .mock__check { background: var(--accent); color: #fff; }
.mock__step.active { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-tint); }
.mock__step-main { flex: 1; min-width: 0; }
.mock__step-t { font-size: 13.5px; font-weight: 600; line-height: 1.25; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mock__step-d { font-size: 12px; color: var(--muted); line-height: 1.25; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mock__step .pct { margin-left: auto; font-size: 12px; font-weight: 700; color: var(--muted); font-variant-numeric: tabular-nums; }
.mock__step.active .pct { color: var(--accent); }
.mock__badge {
  display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700;
  padding: 4px 9px; border-radius: 999px; background: var(--accent-tint); color: var(--accent);
  margin-left: auto;
}

/* (price chip replaced by hero__pill) */
.mock-wrap { position: relative; }

@media (max-width: 920px) {
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero__copy { padding: 44px var(--gutter) 8px; }
  .hero__visual { min-height: 460px; }
  .hero__pill { left: 50%; transform: translateX(-50%); bottom: -22px; }
  .mock__body { grid-template-columns: 1fr; }
  .mock__side { display: none; }
}

/* ============================================================
   TRUST SIGNALS
   ============================================================ */
.trust { padding: 56px 0 18px; }
.trust__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 22px 52px; }
.trust__item { display: flex; align-items: center; gap: 12px; }
.trust__item svg { color: #b1b2b7; flex: none; }
.trust__label { font-size: 16px; font-weight: 600; color: #9b9ca2; line-height: 1.16; letter-spacing: -.01em; }
.trust__label--brand { font-size: 23px; font-weight: 700; letter-spacing: .04em; color: #a3a4aa; }
.trust__g {
  width: 30px; height: 30px; border-radius: 50%; border: 2.2px solid #b6b7bc;
  display: grid; place-items: center; font-weight: 800; font-size: 16px; color: #97989e; flex: none;
}
.trust__gtext { display: flex; flex-direction: column; line-height: 1.12; }
.trust__gtext small { font-size: 11.5px; color: #a4a5ab; font-weight: 600; }
.trust__stars { font-size: 14px; color: #97989e; letter-spacing: 1.5px; }
@media (max-width: 760px) { .trust__row { gap: 18px 30px; } }

/* ============================================================
   LEISTUNGEN (feature grid)
   ============================================================ */
.feat__head { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 44px; }
.feat__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.feat__grid--row { grid-template-columns: repeat(4, 1fr); }
.feat__grid--row .card__d { min-height: 9.4em; margin-bottom: 8px; }
.feat__grid--row .card__list { margin: 0; padding-top: 22px; border-top: 1px solid var(--line); }
@media (max-width: 1040px) { .feat__grid--row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feat__grid--row { grid-template-columns: 1fr; } }
/* robust equal-height divider: subgrid aligns the list row across all four cards */
@supports (grid-template-rows: subgrid) {
  @media (min-width: 1041px) {
    .feat__grid--row { grid-template-rows: repeat(5, auto); row-gap: 0; }
    .feat__grid--row .card { grid-row: span 5; display: grid; grid-template-rows: subgrid; }
    .feat__grid--row .card__d { min-height: 0; margin-bottom: 24px; }
  }
}
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; transition: box-shadow .2s, transform .2s, border-color .2s;
}
[data-surface="flat"] .card { box-shadow: none; background: transparent; }
.card:hover { box-shadow: var(--shadow-m); transform: translateY(-2px); border-color: color-mix(in srgb, var(--accent) 30%, var(--line)); }
.card__ic {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  background: var(--accent-tint); color: var(--accent); margin-bottom: 20px;
}
.card__step { font-size: 13px; font-weight: 700; color: var(--muted-2); margin-bottom: 44px; font-variant-numeric: tabular-nums; }
.card__t { font-size: 20px; font-weight: 650; letter-spacing: -.02em; margin-bottom: 8px; }
.card__d { font-size: 15px; color: var(--muted); line-height: 1.5; }
.card__list { margin: 16px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 9px; }
.card__list li { display: flex; gap: 9px; font-size: 14px; color: var(--ink-2); }
.card__list svg { flex: none; color: var(--accent); margin-top: 2px; }

/* big wide feature row */
.card--wide { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 0; padding: 0; overflow: hidden; }
.card--wide .card--wide__text { padding: 36px; align-self: center; }
.card--wide .card--wide__visual { background: var(--cream-2); min-height: 280px; position: relative; }

@media (max-width: 820px) {
  .feat__head, .feat__grid { grid-template-columns: 1fr; }
  .card--wide { grid-template-columns: 1fr; }
  .card__ic { margin-bottom: 22px; }
}

/* ============================================================
   ABLAUF (3 steps)
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: s; }
.step {
  position: relative; padding: 32px 26px; border-radius: var(--radius);
  background: var(--cream-2); border: 1px solid var(--line-2);
}
.step__n {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: var(--ink); color: var(--on-dark); font-weight: 700; font-size: 16px; margin-bottom: 20px;
}
.step__t { font-size: 19px; font-weight: 650; letter-spacing: -.02em; margin-bottom: 8px; }
.step__d { font-size: 15px; color: var(--muted); line-height: 1.5; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }

/* ============================================================
   RECHNER (calculator)
   ============================================================ */
.calc {
  background: var(--paper); color: var(--ink); border: 1px solid var(--line); border-radius: var(--radius-l);
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch;
  overflow: hidden; box-shadow: var(--shadow-m);
}
.calc__panel { background: var(--paper); padding: clamp(28px, 3vw, 40px); }
.calc__field { margin-bottom: 28px; }
.calc__field--last { margin-bottom: 0; }
.calc__title { color: var(--ink); margin-bottom: 12px; }
.calc__sub { color: var(--muted); margin-bottom: 30px; max-width: 38ch; }
.calc__controls { display: flex; flex-direction: column; gap: 24px; }
.calc__field label { display: flex; justify-content: space-between; align-items: baseline; font-size: 14px; color: var(--muted); margin-bottom: 12px; font-weight: 500; }
.calc__field label b { color: var(--ink); font-size: 16px; font-weight: 700; font-variant-numeric: tabular-nums; }
.calc input[type="range"] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 6px;
  background: var(--line); outline: none; cursor: pointer;
}
.calc input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent); cursor: pointer; border: 4px solid var(--paper);
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.calc input[type="range"]::-moz-range-thumb { width: 16px; height: 16px; border-radius: 50%; background: var(--accent); cursor: pointer; border: 3px solid var(--paper); }
.calc__toggle { display: flex; gap: 8px; }
.calc__toggle button {
  flex: 1; padding: 10px; border-radius: 10px; border: 1px solid var(--beige-line);
  background: transparent; color: var(--muted); font-size: 14px; font-weight: 600; transition: .15s;
}
.calc__toggle button.on { background: var(--accent); color: #fff; border-color: var(--accent); }

.calc__checks { display: flex; flex-direction: column; gap: 10px; }
.calc__check {
  display: flex; align-items: center; gap: 4px; width: 100%; padding-right: 6px;
  border-radius: var(--radius); border: 1px solid var(--line);
  background: var(--paper); transition: border-color .15s, background .15s;
}
.calc__check-hit {
  display: flex; align-items: center; gap: 12px; flex: 1; min-width: 0; text-align: left;
  padding: 12px 6px 12px 14px; background: transparent; border: 0; cursor: pointer;
  color: var(--ink); font-size: 14.5px; font-weight: 600;
}
.calc__check:hover { border-color: var(--accent); }
.calc__check.on { border-color: var(--accent); background: var(--accent-tint); }
.calc__check-box {
  width: 20px; height: 20px; border-radius: 6px; flex: none; display: grid; place-items: center;
  border: 1.5px solid var(--line); background: var(--paper); color: transparent; transition: .15s;
}
.calc__check.on .calc__check-box { background: var(--accent); border-color: var(--accent); color: #fff; }
.calc__price--range { font-size: clamp(32px, 4.2vw, 46px); }

/* calculator — refined result card */
.calc__intro { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 26px; }
.calc__hint { font-style: normal; font-size: 12.5px; font-weight: 600; color: var(--muted); text-transform: none; letter-spacing: 0; margin-left: 6px; }
.calc__result { display: flex; flex-direction: column; }
.calc__plan-badge {
  align-self: flex-start; display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink); background: var(--paper); border: 1px solid var(--line); padding: 7px 14px; border-radius: 999px;
  margin-bottom: 22px;
}
.calc__plan-badge svg { color: var(--accent); }
.calc__plan-badge--ind { color: var(--ink); background: var(--paper); }
.calc__price { margin: 0 0 4px; }
.calc__monthly { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.calc__monthly b { color: var(--ink); font-weight: 700; }
.calc__save {
  display: flex; align-items: center; gap: 16px; padding: 18px 20px; border-radius: var(--radius);
  background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-s); margin-bottom: 24px;
}
.calc__save b { font-size: 28px; font-weight: 700; letter-spacing: -.02em; color: var(--accent); font-variant-numeric: tabular-nums; white-space: nowrap; }
.calc__save span { font-size: 12.5px; color: var(--muted); line-height: 1.3; }
.calc__note { font-size: 14.5px; color: var(--muted); line-height: 1.55; margin: 4px 0 24px; }
.calc__fineprint { font-size: 13px; color: var(--muted); text-align: center; margin: 14px 0 0; }

.calc__hint-inline { font-size: 12.5px; font-weight: 600; color: var(--accent); margin-left: 6px; }
.calc__breakdown { border-top: 1px solid var(--beige-line); margin: 4px 0 18px; padding-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.calc__bd-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--muted); }
.calc__bd-row b { color: var(--ink); font-weight: 700; }
.calc__bd-row--once { color: var(--muted-2); }
.calc__bd-row--once em { font-style: normal; font-size: 11px; text-transform: uppercase; letter-spacing: .04em; }
.calc__notice { display: flex; gap: 11px; background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; font-size: 13.5px; line-height: 1.5; color: var(--ink-2); margin-bottom: 18px; }
.calc__notice svg { color: var(--accent); flex: none; margin-top: 2px; }
.calc__notice a { color: var(--accent); font-weight: 600; text-decoration: underline; }
.calc__once-note { font-size: 12.5px; color: var(--muted); text-align: center; margin: 10px 0 0; }

/* single "Alle Zusatzoptionen" dropdown in calculator */
.calc__addons { border: 1px solid var(--line); border-radius: var(--radius); overflow: visible; background: var(--paper); margin-top: 12px; }
.calc__addons-head {
  display: flex; align-items: center; gap: 12px; width: 100%; text-align: left;
  padding: 14px 16px; background: var(--paper); border: 0; color: var(--ink);
  font-size: 14.5px; font-weight: 600; cursor: pointer; border-radius: var(--radius);
}
.calc__addons-head svg { flex: none; }
.calc__addons-head .calc__addons-sub { margin-left: auto; font-size: 12.5px; font-weight: 600; color: var(--muted); }
.calc__addons-head .calc__addons-chev { color: var(--muted); display: inline-flex; flex: none; }
.calc__addons-body { display: none; flex-direction: column; gap: 8px; padding: 0 12px 12px; }
.calc__addons.open .calc__addons-body { display: flex; }
.calc__check-main { display: flex; flex-direction: column; gap: 1px; min-width: 0; font-weight: 500; }
.calc__check-main > span:first-child { font-size: 14.5px; }
.calc__check-price { font-size: 12.5px; font-weight: 700; color: var(--muted); }
.calc__check.on .calc__check-price { color: var(--accent); }

.opt__price { font-style: normal; font-size: 12px; font-weight: 700; color: var(--accent); margin-left: 4px; }

.calc__result { background: var(--cream-2); border: 0; border-left: 1px solid var(--line); border-radius: 0; box-shadow: none; padding: clamp(28px, 3vw, 40px); }
.calc__result small { font-size: 13px; color: var(--muted); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.calc__price { font-size: clamp(44px, 6vw, 64px); font-weight: 700; letter-spacing: -.04em; line-height: 1; margin: 8px 0 4px; font-variant-numeric: tabular-nums; white-space: nowrap; }
.calc__price span { font-size: 22px; color: var(--muted); font-weight: 600; }
.calc__compare { font-size: 14px; color: var(--muted); margin-top: 6px; }
.calc__compare b { color: var(--accent); }
.calc__bars { display: flex; flex-direction: column; gap: 12px; margin: 24px 0; }
.calc__bar-row { font-size: 13px; }
.calc__bar-row > div:first-child { display: flex; justify-content: space-between; margin-bottom: 6px; color: var(--muted); }
.calc__bar { height: 10px; border-radius: 6px; background: rgba(17,18,22,.10); overflow: hidden; }
.calc__bar i { display: block; height: 100%; border-radius: 6px; }
.calc__bar i.mira { background: var(--accent); }
.calc__bar i.other { background: #b3ab97; }
@media (max-width: 860px) { .calc { grid-template-columns: 1fr; } .calc__result { border-left: 0; border-top: 1px solid var(--line); } }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.usp-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 28px; flex-wrap: wrap; margin-bottom: 28px; }
.usp-toggle { display: inline-flex; gap: 6px; background: var(--cream-2); border: 1px solid var(--line); border-radius: 999px; padding: 5px; }
.usp-tab {
  display: inline-flex; align-items: center; gap: 8px; border: 0; background: transparent;
  padding: 10px 18px; border-radius: 999px; font-size: 15px; font-weight: 600; color: var(--muted);
  cursor: pointer; transition: background .18s, color .18s, box-shadow .18s; white-space: nowrap;
}
.usp-tab:hover { color: var(--ink); }
.usp-tab.on { background: var(--paper); color: var(--ink); box-shadow: 0 1px 3px rgba(17,18,22,.12); }
.usp-tab__ic {
  width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; flex: none;
  background-color: var(--cream-3); color: var(--muted); transition: color .18s;
}
.usp-tab.on .usp-tab__ic { background-color: var(--accent); color: #fff; }

.tcards { display: grid; grid-template-columns: 1.5fr 1fr; grid-auto-rows: 1fr; gap: 16px; }
.tcard {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px;
  display: flex; flex-direction: column; gap: 18px;
}
.tcard--feature { grid-row: 1 / span 2; background: var(--accent); color: #fff; border-color: transparent; justify-content: flex-end; }
.tcard__quote { font-size: 18px; line-height: 1.4; letter-spacing: -.01em; font-weight: 500; }
.tcard--feature .tcard__quote { font-size: 24px; line-height: 1.34; }
.tcard__by { display: flex; align-items: center; gap: 12px; }
.tcard__ava { width: 42px; height: 42px; border-radius: 50%; background: var(--cream-3); background-size: cover; flex: none; }
.tcard__name { font-size: 14.5px; font-weight: 700; }
.tcard__role { font-size: 13px; color: var(--muted); }
.tcard--feature .tcard__role { color: rgba(255,255,255,.82); }
.tcard__stat { margin-bottom: auto; }
.tcard__stat b { font-size: 40px; font-weight: 700; letter-spacing: -.03em; display: block; }
.tcard__stat span { font-size: 14px; color: var(--muted); }
.tcard__stat--feature b { font-size: 64px; line-height: 1; color: #fff; }
.tcard__stat--feature span { font-size: 15px; color: rgba(255,255,255,.82); display: block; margin-top: 6px; max-width: 22ch; }
.usp-fade { animation: uspFade .42s ease both; }
@keyframes uspFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@media (max-width: 860px) {
  .tcards { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .tcard--feature { grid-row: auto; }
  .usp-head { align-items: flex-start; }
  .usp-toggle { width: 100%; justify-content: space-between; }
  .usp-tab { flex: 1; justify-content: center; padding: 10px 8px; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; }
.faq__list { display: flex; flex-direction: column; }
.faq__item { border-top: 1px solid var(--line); }
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-size: 18px; font-weight: 600; letter-spacing: -.01em; color: var(--ink);
}
.faq__ic { flex: none; transition: transform .25s; color: var(--accent); }
.faq__item.open .faq__ic { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a p { margin: 0 0 22px; font-size: 16px; color: var(--muted); line-height: 1.55; max-width: 60ch; }
@media (max-width: 820px) { .faq { grid-template-columns: 1fr; gap: 24px; } }

/* ============================================================
   CTA BANNER + FOOTER
   ============================================================ */
.cta {
  background: var(--beige); color: var(--ink); border-radius: var(--radius-l);
  padding: 72px 56px; text-align: center; position: relative; overflow: hidden;
}
.cta h2 { color: var(--ink); margin-bottom: 16px; }
.cta p { color: var(--ink-2); max-width: 46ch; margin: 0 auto 28px; }
.cta__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.footer { background: var(--cream); color: var(--muted); margin-top: 0; border-top: 1px solid var(--line); }
.footer .wrap { padding-left: var(--gutter); padding-right: var(--gutter); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding: 64px 0 40px; }
.footer__brand img { height: 24px; margin-bottom: 16px; }
.footer__brand p { font-size: 14px; max-width: 30ch; line-height: 1.5; color: var(--muted); }
.footer__col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--ink); margin: 0 0 16px; font-weight: 700; }
.footer__col a { display: block; font-size: 14.5px; color: var(--muted); padding: 6px 0; transition: color .15s; }
.footer__col a:hover { color: var(--ink); }
.footer__bottom { border-top: 1px solid var(--line); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; font-size: 13px; flex-wrap: wrap; gap: 12px; }
@media (max-width: 820px) { .footer__grid { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.shead { max-width: 640px; margin-bottom: 44px; }
.shead--center { margin-left: auto; margin-right: auto; text-align: center; }
.shead .eyebrow { margin-bottom: 18px; }
.shead h2 { margin-bottom: 16px; }

/* ============================================================
   SURVEY MODAL
   ============================================================ */
.modal-scrim {
  position: fixed; inset: 0; z-index: 200; background: rgba(20,19,17,.55);
  backdrop-filter: blur(4px); display: grid; place-items: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
.modal-scrim.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--cream); border-radius: var(--radius-l); width: 100%; max-width: 560px;
  max-height: 92vh; overflow: hidden; box-shadow: var(--shadow-l); display: flex; flex-direction: column;
  transform: translateY(14px) scale(.99); transition: transform .25s;
}
.modal-scrim.open .modal { transform: none; }
.modal__head { padding: 20px 26px; display: flex; align-items: center; gap: 14px; border-bottom: 1px solid var(--line); }
.modal__head img { height: 22px; }
.modal__close { margin-left: auto; width: 36px; height: 36px; border-radius: 10px; border: 1px solid var(--line); background: var(--paper); display: grid; place-items: center; color: var(--muted); }
.modal__close:hover { color: var(--ink); border-color: var(--ink); }
.modal__progress { height: 4px; background: var(--cream-3); }
.modal__progress i { display: block; height: 100%; background: var(--accent); border-radius: 0 4px 4px 0; transition: width .35s ease; }
.modal__body { padding: 32px 30px; overflow-y: auto; }
.modal__step-label { font-size: 13px; font-weight: 700; color: var(--accent); letter-spacing: .04em; text-transform: uppercase; margin-bottom: 12px; }
.modal__q { font-size: 24px; font-weight: 650; letter-spacing: -.02em; margin: 0 0 6px; line-height: 1.15; }
.modal__hint { font-size: 14.5px; color: var(--muted); margin: 0 0 24px; }
.modal__foot { padding: 18px 30px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 12px; }
.modal__back { background: none; border: 0; font-weight: 600; color: var(--muted); font-size: 15px; padding: 8px; }
.modal__back:hover { color: var(--ink); }

.opts { display: flex; flex-direction: column; gap: 10px; }
.opt {
  display: flex; align-items: center; gap: 14px; padding: 16px 18px; border-radius: 14px;
  border: 1.5px solid var(--line); background: var(--paper); text-align: left; transition: .15s; width: 100%;
}
.opt:hover { border-color: var(--accent); }
.opt.sel { border-color: var(--accent); background: var(--accent-tint); }
.opt--info { padding: 0; gap: 0; padding-right: 6px; }
.opt__hit {
  display: flex; align-items: center; gap: 14px; flex: 1; min-width: 0;
  padding: 16px 6px 16px 18px; background: transparent; border: 0;
  text-align: left; cursor: pointer; color: inherit; font: inherit;
}
.opt__box { width: 22px; height: 22px; border-radius: 7px; border: 1.5px solid var(--line); flex: none; display: grid; place-items: center; }
.opt.sel .opt__box { background: var(--accent); border-color: var(--accent); color: #fff; }
.opt__radio { border-radius: 50%; }
.opt__t { font-size: 16px; font-weight: 600; }
.opt__d { font-size: 13px; color: var(--muted); }
.opt__main { display: flex; flex-direction: column; gap: 1px; }

.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 14px; font-weight: 600; color: var(--ink-2); }
.field input, .field select {
  font-family: inherit; font-size: 16px; padding: 13px 15px; border-radius: 12px;
  border: 1.5px solid var(--line); background: var(--paper); outline: none; color: var(--ink); width: 100%;
}
.field input:focus, .field select:focus { border-color: var(--accent); }

.slider-q { margin: 8px 0 4px; }
.slider-val { font-size: 40px; font-weight: 700; letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.slider-val span { font-size: 18px; color: var(--muted); font-weight: 600; }
.modal input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 5px; border-radius: 5px; background: var(--cream-3); outline: none; margin-top: 18px; }
.modal input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 26px; height: 26px; border-radius: 50%; background: var(--accent); cursor: pointer; border: 4px solid var(--cream); box-shadow: 0 1px 4px rgba(0,0,0,.2); }

/* result screen */
.result-hero { text-align: center; padding: 8px 0 4px; }
.result-badge { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 999px; background: var(--accent-tint); color: var(--accent); font-weight: 700; font-size: 13px; margin-bottom: 20px; }
.result-price { font-size: 56px; font-weight: 700; letter-spacing: -.04em; line-height: 1; }
.result-price span { font-size: 22px; color: var(--muted); }
.result-range { font-size: 15px; color: var(--muted); margin-top: 8px; }
.result-save {
  display: flex; align-items: center; gap: 12px; text-align: left;
  background: var(--accent-tint); border-radius: 12px; padding: 14px 18px; margin: 22px 0 16px;
}
.result-save b { font-size: 22px; font-weight: 700; letter-spacing: -.02em; color: var(--accent); font-variant-numeric: tabular-nums; white-space: nowrap; }
.result-save span { font-size: 12.5px; color: var(--muted); line-height: 1.3; }
.form-summary {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-top: 18px; padding: 14px 16px; border-radius: 12px;
  background: var(--cream-2); border: 1px solid var(--line);
}
.form-summary span { font-size: 13px; color: var(--muted); font-weight: 600; }
.form-summary b { font-size: 17px; font-weight: 700; color: var(--ink); }
.result-list { margin: 26px 0; display: flex; flex-direction: column; gap: 10px; }
.result-list .ri { display: flex; justify-content: space-between; font-size: 14.5px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.result-list .ri span:first-child { color: var(--muted); }
.result-list .ri b { font-weight: 600; }
.ineligible { text-align: center; padding: 10px 0; }
.ineligible__ic { width: 56px; height: 56px; border-radius: 50%; background: var(--cream-2); display: grid; place-items: center; margin: 0 auto 18px; color: var(--accent); }

/* ============================================================
   INNER PAGES
   ============================================================ */
.page-hero { padding: 72px 0 24px; }
.page-hero__title { font-size: clamp(36px, 4.6vw, 60px); font-weight: 450; letter-spacing: -.025em; line-height: 1.05; margin: 18px 0 0; }
.page-hero__lede { font-size: clamp(18px, 1.4vw, 21px); color: var(--ink-2); line-height: 1.5; max-width: 56ch; margin: 22px 0 0; }

/* --- Preise: plan cards --- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: start; }
.plan {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-l);
  padding: 32px; display: flex; flex-direction: column; gap: 18px; position: relative;
}
.plan--featured { border-color: var(--accent); box-shadow: 0 18px 44px rgba(17,18,22,.08); }
.plan__tag {
  position: absolute; top: -12px; left: 32px; background: var(--accent); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: .04em; padding: 5px 12px; border-radius: 999px;
}
.plan__name { font-size: 18px; font-weight: 700; }
.plan__price { font-size: 44px; font-weight: 700; letter-spacing: -.03em; line-height: 1; }
.plan__price span { font-size: 17px; color: var(--muted); font-weight: 600; }
.plan__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.plan__list li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--ink-2); }
.plan__list li svg { color: var(--accent); flex: none; }
.plans__note { text-align: center; font-size: 15px; color: var(--muted); margin: 32px auto 0; max-width: 60ch; }

/* --- Preise: overview cards --- */
.poverview { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: repeat(4, auto); column-gap: 16px; row-gap: 16px; }
.pov { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-l); padding: 30px 26px; display: grid; grid-template-rows: subgrid; grid-row: span 4; row-gap: 18px; }
.pov--ind { background: var(--cream-2); }
.pov__head .pov__name { margin-bottom: 7px; }
.pov__name { font-size: 19px; font-weight: 700; letter-spacing: -.01em; }
.pov__sub { font-size: 14px; color: var(--muted); line-height: 1.45; }
.pov__price { font-size: 38px; font-weight: 700; letter-spacing: -.03em; line-height: 1; margin: 0; }
.pov__price span { font-size: 15px; color: var(--muted); font-weight: 600; letter-spacing: 0; }
.pov__body { display: block; }
.pov__body--cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 44px; align-content: start; }
.pov__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.pov__group-label { font-size: 15px; font-weight: 700; color: var(--ink); letter-spacing: -.01em; margin-bottom: 13px; }
.pov__list li { display: flex; align-items: flex-start; gap: 9px; font-size: 14.5px; color: var(--ink-2); line-height: 1.4; }
.pov__list li svg { color: var(--accent); flex: none; margin-top: 3px; }

/* Featured (highlighted) Start card — same structure & alignment, wider + accent ring */
.pov--feat { border-color: var(--accent); box-shadow: 0 0 0 1.5px var(--accent), 0 22px 54px color-mix(in srgb, var(--accent) 13%, transparent); }
.pov--feat .pov__price { font-size: 44px; }
.price-endpreis { display: flex; align-items: flex-start; gap: 9px; justify-content: center; text-align: center; font-size: 14.5px; color: var(--muted); margin: 28px auto 0; max-width: 70ch; line-height: 1.5; }
.price-endpreis svg { color: var(--accent); flex: none; margin-top: 3px; }

/* --- Preise: operator + excluded --- */
.price-operator { text-align: center; margin: 36px auto 0; max-width: 72ch; }
.price-operator p { font-size: 14.5px; color: var(--muted); line-height: 1.6; margin: 0 0 16px; }
.price-operator p b { color: var(--ink-2); font-weight: 700; }
.price-excl { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.price-excl__chip { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 600; color: var(--muted); background: var(--paper); border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px; }
.price-excl__chip svg { color: #b4534a; }
@media (max-width: 980px) { .poverview { grid-template-columns: 1fr 1fr; } .pov--feat { grid-column: 1 / -1; } }
@media (max-width: 560px) { .poverview { grid-template-columns: 1fr; } }

/* --- Preise: comparison table --- */
.ptable-wrap { overflow-x: auto; }
.ptable { width: 100%; border-collapse: collapse; min-width: 720px; }
.ptable th, .ptable td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: middle; }
.ptable thead th { border-bottom: 2px solid var(--line); }
.ptable__feat { width: 38%; font-size: 15.5px; color: var(--ink-2); }
td.ptable__feat { font-weight: 500; }
.pt__name { font-size: 18px; font-weight: 700; letter-spacing: -.01em; }
.pt__price { font-size: 14px; color: var(--muted); font-weight: 600; margin-top: 2px; }
.pt__price span { font-weight: 500; }
.pt__yes { display: inline-grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: var(--accent-tint); color: var(--accent); }
.pt__no { font-size: 14px; color: var(--muted-2); }
.pt__val { font-size: 15px; font-weight: 600; color: var(--ink); }
.ptable__cta-row td { border-bottom: 0; padding-top: 22px; }

/* --- Zusatzleistungen cards --- */
.addon-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.addon-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-l); padding: 26px 28px; }
.addon-card__top { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; margin-bottom: 10px; }
.addon-card__t { font-size: 18px; font-weight: 700; margin: 0; }
.addon-card__price { font-size: 22px; font-weight: 700; letter-spacing: -.02em; white-space: nowrap; text-align: right; }
.addon-card__amt { display: inline; white-space: nowrap; }
.addon-card__per { display: block; font-size: 12px; font-weight: 600; color: var(--muted); text-align: right; }
.addon-card__d { font-size: 14.5px; color: var(--muted); line-height: 1.55; margin: 0; }

/* --- Leistungen: security cards --- */
.sec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.sec-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-l); padding: 32px; }
.sec-card__ic { width: 52px; height: 52px; border-radius: 14px; background: var(--accent-tint); color: var(--accent); display: grid; place-items: center; margin-bottom: 18px; }
.sec-card__t { font-size: 20px; font-weight: 700; margin: 0 0 10px; }
.sec-card__d { font-size: 15px; color: var(--muted); line-height: 1.6; margin: 0; }

/* --- Ablauf: Wechsel section --- */
.wechsel { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: start; }
.wechsel__text p { font-size: 16px; color: var(--ink-2); line-height: 1.6; margin: 0 0 20px; }
.wechsel__highlight { display: flex; gap: 12px; background: var(--accent-tint); color: var(--ink); border-radius: 12px; padding: 16px 18px; font-size: 14.5px; line-height: 1.5; }
.wechsel__highlight svg { color: var(--accent); flex: none; margin-top: 2px; }
.wechsel__mail { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-l); overflow: hidden; box-shadow: var(--shadow-s); }
.wechsel__mail-head { display: flex; justify-content: space-between; align-items: center; padding: 14px 18px; border-bottom: 1px solid var(--line); background: var(--cream); }
.wechsel__mail-head span { font-size: 13px; font-weight: 600; color: var(--muted); }
.wechsel__copy { border: 1px solid var(--line); background: var(--paper); color: var(--ink); font-size: 13px; font-weight: 600; padding: 7px 14px; border-radius: 8px; cursor: pointer; transition: .15s; }
.wechsel__copy:hover { border-color: var(--accent); color: var(--accent); }
.wechsel__mail-body { font-family: inherit; font-size: 13.5px; line-height: 1.6; color: var(--ink-2); white-space: pre-wrap; margin: 0; padding: 22px; max-height: 420px; overflow-y: auto; }

/* --- Kunden: all testimonials --- */
.tgroup { margin-bottom: 56px; }
.tgroup:last-child { margin-bottom: 0; }
.tgroup__head { display: flex; align-items: baseline; gap: 18px; margin-bottom: 22px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.tgroup__index { font-size: 15px; font-weight: 700; color: var(--accent); letter-spacing: .06em; font-variant-numeric: tabular-nums; padding-top: 2px; }
.tgroup__meta { display: flex; flex-direction: column; gap: 3px; }
.tgroup__label { font-size: 22px; font-weight: 700; letter-spacing: -.015em; }
.tgroup__stat { font-size: 14px; color: var(--muted); }
.tgroup__stat b { color: var(--accent); font-weight: 700; }
.tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tquote { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 26px 22px; display: flex; flex-direction: column; gap: 14px; position: relative; }
.tquote__mark { position: absolute; top: 14px; right: 22px; font-size: 44px; line-height: 1; color: var(--accent-soft); font-family: Georgia, serif; }
.tquote__text { font-size: 16px; line-height: 1.5; font-weight: 500; flex: 1; margin: 0; }
.tphoto { width: 50px; height: 50px; border-radius: 12px; object-fit: cover; flex: none; background: var(--cream-3); border: 1px solid var(--line); }
@media (max-width: 860px) {
  .addon-grid, .sec-grid { grid-template-columns: 1fr; }
  .wechsel { grid-template-columns: 1fr; }
  .tgrid { grid-template-columns: 1fr; }
}

/* --- Blog: post grid --- */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post {
  display: flex; flex-direction: column; border-radius: var(--radius-l); overflow: hidden;
  border: 1px solid var(--line); background: var(--paper); transition: transform .2s, box-shadow .2s;
}
.post:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(17,18,22,.1); }
.post__thumb { aspect-ratio: 16/10; position: relative; background-size: cover; background-position: center; }
.post__tag {
  position: absolute; left: 16px; bottom: 16px; background: rgba(255,255,255,.92);
  font-size: 12px; font-weight: 700; letter-spacing: .03em; padding: 5px 11px; border-radius: 999px; color: var(--ink);
}
.post__body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; }
.post__t { font-size: 19px; font-weight: 700; letter-spacing: -.01em; line-height: 1.28; margin: 0; }
.post__d { font-size: 15px; color: var(--muted); line-height: 1.5; margin: 0; }
.post__meta { font-size: 13px; color: var(--muted-2); margin-top: 4px; }

/* --- Blog: single article --- */
.wrap--article { max-width: 760px; }
.article { padding-top: 56px; }
.article__back { display: flex; width: fit-content; align-items: center; gap: 7px; font-size: 14px; margin-bottom: 28px; }
.article__tag { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .03em; padding: 6px 13px; border-radius: 999px; color: var(--ink); margin-bottom: 18px; }
.article__title { font-size: clamp(30px, 4vw, 46px); font-weight: 700; letter-spacing: -.02em; line-height: 1.1; margin: 0 0 20px; text-wrap: balance; }
.article__lede { font-size: 20px; line-height: 1.5; color: var(--muted); margin: 0 0 24px; font-weight: 500; text-wrap: pretty; }
.article__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; font-size: 14px; color: var(--muted-2); padding-bottom: 4px; }
.article__dot { opacity: .5; }
.article__cover { max-width: 1040px; margin: 36px auto 44px; height: clamp(220px, 34vw, 380px); border-radius: var(--radius-l); background-size: cover; background-position: center; }
.article__body { font-size: 18px; line-height: 1.72; color: var(--ink); }
.article__body p { margin: 0 0 22px; text-wrap: pretty; }
.article__h2 { font-size: 26px; font-weight: 700; letter-spacing: -.015em; line-height: 1.2; margin: 44px 0 16px; }
.article__ul { margin: 0 0 24px; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.article__ul li { position: relative; padding-left: 28px; }
.article__ul li::before { content: ""; position: absolute; left: 4px; top: 11px; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.article__callout { display: flex; gap: 14px; align-items: flex-start; background: var(--accent-tint); color: var(--ink); border-radius: var(--radius); padding: 20px 22px; margin: 8px 0 28px; font-size: 16.5px; line-height: 1.55; font-weight: 500; }
.article__callout svg { color: var(--accent); flex: none; margin-top: 2px; }
.article__quote { margin: 8px 0 28px; padding: 6px 0 6px 26px; border-left: 3px solid var(--accent); font-size: 23px; line-height: 1.4; font-weight: 600; letter-spacing: -.01em; font-style: italic; color: var(--ink); }
.article__disclaimer { margin-top: 40px; margin-bottom: 60px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 13.5px; line-height: 1.6; color: var(--muted-2); }

/* Rich HTML article bodies (rendered from client content) */
.article__body h2 { font-size: 26px; font-weight: 700; letter-spacing: -.015em; line-height: 1.22; margin: 46px 0 16px; }
.article__body h3 { font-size: 21px; font-weight: 700; letter-spacing: -.01em; line-height: 1.3; margin: 34px 0 12px; }
.article__body h4, .article__body h5, .article__body h6 { font-size: 17px; font-weight: 700; line-height: 1.35; margin: 26px 0 8px; color: var(--ink); }
.article__body > *:first-child { margin-top: 0; }
.article__body strong { font-weight: 700; color: var(--ink); }
.article__body a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.article__body ul, .article__body ol { margin: 0 0 24px; padding-left: 0; display: flex; flex-direction: column; gap: 11px; list-style: none; counter-reset: li; }
.article__body li { position: relative; padding-left: 30px; }
.article__body li > p { margin: 0; }
.article__body li > p + p { margin-top: 8px; }
.article__body ul > li::before { content: ""; position: absolute; left: 5px; top: .62em; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.article__body ol > li { counter-increment: li; }
.article__body ol > li::before { content: counter(li); position: absolute; left: 0; top: .05em; width: 21px; height: 21px; border-radius: 50%; background: var(--accent-tint); color: var(--accent); font-size: 12px; font-weight: 700; display: grid; place-items: center; }
.article__body li ul, .article__body li ol { margin: 11px 0 2px; }
.article__body table { width: 100%; border-collapse: collapse; margin: 8px 0 28px; font-size: 16px; }
.article__body th, .article__body td { text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
.article__body thead th { font-weight: 700; border-bottom: 2px solid var(--line); }
.article__body tbody tr:last-child td { border-bottom: none; }
.article__body blockquote { margin: 8px 0 28px; padding: 6px 0 6px 26px; border-left: 3px solid var(--accent); font-size: 22px; line-height: 1.4; font-weight: 600; letter-spacing: -.01em; font-style: italic; }
.article__body blockquote p { margin: 0; }
@media (max-width: 720px) {
  .article__lede { font-size: 18px; }
  .article__body { font-size: 17px; }
}

/* --- Kontakt --- */
.kontakt { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.kontakt__info { display: flex; flex-direction: column; gap: 28px; }
.kontakt__row { display: flex; gap: 16px; }
.kontakt__ic { width: 46px; height: 46px; border-radius: 12px; background: var(--accent-tint); color: var(--accent); display: grid; place-items: center; flex: none; }
.kontakt__h { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.kontakt__d { font-size: 15px; color: var(--muted); line-height: 1.5; margin-bottom: 6px; }
.kontakt__form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-l); padding: 32px; box-shadow: var(--shadow-s); }
.kontakt__form-h { font-size: 20px; font-weight: 700; margin: 0 0 20px; }
.kontakt__form form { display: flex; flex-direction: column; gap: 16px; }
.kontakt__form textarea {
  font-family: inherit; font-size: 16px; padding: 13px 15px; border-radius: 12px;
  border: 1.5px solid var(--line); background: var(--paper); outline: none; color: var(--ink); width: 100%; resize: vertical;
}
.kontakt__form textarea:focus { border-color: var(--accent); }
.kontakt__sent { text-align: center; padding: 20px 0; }

/* --- Legal pages --- */
.legal { padding: 64px 0 96px; }
.legal__wrap { max-width: 820px; }
.legal__title { font-size: clamp(32px, 4vw, 48px); font-weight: 500; letter-spacing: -.02em; line-height: 1.08; }
.legal__stand { font-size: 14px; color: var(--muted); margin-top: 10px; }
.legal__body { margin-top: 28px; }
.legal__h { font-size: 22px; font-weight: 700; letter-spacing: -.01em; margin: 40px 0 14px; }
.legal__sh { font-size: 17px; font-weight: 700; margin: 24px 0 8px; }
.legal__p { font-size: 16px; line-height: 1.68; color: var(--ink-2); margin: 0 0 16px; }
.legal__ul { margin: 0 0 16px; padding-left: 22px; display: flex; flex-direction: column; gap: 8px; }
.legal__ul li { font-size: 16px; line-height: 1.6; color: var(--ink-2); }

@media (max-width: 860px) {
  .plans { grid-template-columns: 1fr; }
  .posts { grid-template-columns: 1fr 1fr; }
  .kontakt { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .posts { grid-template-columns: 1fr; }
}

/* ============================================================
   PLACEHOLDER IMG
   ============================================================ */
.ph {
  position: relative; background:
    repeating-linear-gradient(135deg, var(--cream-2) 0 11px, var(--cream-3) 11px 22px);
  display: grid; place-items: center; color: var(--muted); overflow: hidden;
}
.ph__tag {
  font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 12px;
  background: rgba(251,250,247,.85); border: 1px solid var(--line); padding: 5px 10px;
  border-radius: 7px; color: var(--muted);
}

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 600px) {
  .wrap { padding: 0 20px; }
  .section { padding: 64px 0; }
  .hero__form { flex-direction: column; border-radius: 18px; }
  .hero__form .btn { width: 100%; }
}

/* ============================================================
   INFO TOOLTIP
   ============================================================ */
.infotip { position: relative; display: inline-flex; flex: none; }
.infotip__btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%; border: 0; flex: none;
  background: transparent; color: var(--muted); cursor: pointer;
  transition: color .15s, background .15s;
}
.infotip__btn:hover { color: var(--accent); background: var(--accent-tint); }
.infotip__pop {
  position: absolute; bottom: calc(100% + 9px); right: -2px; z-index: 80;
  width: max-content; max-width: 250px;
  background: var(--ink); color: #fff;
  font-size: 12.5px; font-weight: 500; line-height: 1.5; letter-spacing: 0;
  text-transform: none; text-align: left; white-space: normal;
  padding: 11px 13px; border-radius: 11px;
  box-shadow: 0 12px 34px rgba(20, 18, 10, .26);
  opacity: 0; visibility: hidden; transform: translateY(5px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
  pointer-events: none;
}
.infotip__pop::after {
  content: ""; position: absolute; top: 100%; right: 13px;
  border: 6px solid transparent; border-top-color: var(--ink);
}
.infotip.is-open .infotip__pop,
.infotip:hover .infotip__pop { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
@media (max-width: 560px) { .infotip__pop { max-width: 200px; } }

/* discount / referral rows */
.calc__bd-row--discount b, .ri--discount b { color: var(--accent); }
.calc__check--gift .calc__check-price { color: var(--accent); }

/* ============================================================
   EMPFEHLUNG / REFERRAL PAGE
   ============================================================ */
.ref-aud { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.ref-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-l);
  padding: clamp(26px, 3vw, 38px); display: flex; flex-direction: column;
}
.ref-card--accent { background: var(--accent-tint); border-color: var(--accent-soft); }
.ref-card__ic {
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  background: var(--accent); color: #fff; margin-bottom: 20px;
}
.ref-card--accent .ref-card__ic { background: var(--accent); }
.ref-card__t { font-size: 22px; font-weight: 650; letter-spacing: -.02em; margin: 0 0 8px; }
.ref-card__d { font-size: 15.5px; color: var(--ink-2); line-height: 1.55; margin: 0 0 22px; }
.ref-card__list { list-style: none; margin: 0 0 26px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.ref-card__list li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; color: var(--ink); line-height: 1.45; }
.ref-card__list li svg { color: var(--accent); flex: none; margin-top: 2px; }
.ref-card .btn { margin-top: auto; }

.ref-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ref-step {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-l);
  padding: 30px 28px; position: relative;
}
.ref-step__n {
  font-size: 13px; font-weight: 800; letter-spacing: .1em; color: var(--accent);
  margin-bottom: 16px;
}
.ref-step__t { font-size: 18px; font-weight: 650; margin: 0 0 8px; letter-spacing: -.01em; }
.ref-step__d { font-size: 14.5px; color: var(--ink-2); line-height: 1.55; margin: 0; }

.ref-reward {
  display: flex; align-items: center; gap: clamp(22px, 4vw, 48px); flex-wrap: wrap;
  background: var(--ink); color: #fff; border-radius: var(--radius-l);
  padding: clamp(30px, 4vw, 48px);
}
.ref-reward__big { font-size: clamp(48px, 7vw, 76px); font-weight: 750; letter-spacing: -.04em; line-height: 1; font-variant-numeric: tabular-nums; }
.ref-reward__big small { display: block; font-size: 15px; font-weight: 600; letter-spacing: .02em; color: rgba(255,255,255,.66); margin-top: 10px; }
.ref-reward__text { flex: 1; min-width: 240px; }
.ref-reward__text h3 { font-size: 22px; font-weight: 650; margin: 0 0 10px; letter-spacing: -.02em; }
.ref-reward__text p { font-size: 15.5px; line-height: 1.6; color: rgba(255,255,255,.78); margin: 0; }

.ref-elig { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 30px; }
.ref-elig li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: var(--ink); line-height: 1.5; }
.ref-elig li svg { color: var(--accent); flex: none; margin-top: 2px; }

@media (max-width: 860px) {
  .ref-aud { grid-template-columns: 1fr; }
  .ref-steps { grid-template-columns: 1fr; }
  .ref-elig { grid-template-columns: 1fr; }
}

/* ============================================================
   MOBILE OPTIMISATION (tablet → phone)
   ============================================================ */
@media (max-width: 860px) {
  /* calculator: tighter padding once stacked */
  .calc__panel, .calc__result { padding: 26px 22px; }
  .calc__save b { font-size: 25px; }
}

@media (max-width: 760px) {
  /* survey modal becomes a bottom sheet */
  .modal-scrim { padding: 0; place-items: end stretch; }
  .modal { max-width: 100%; max-height: 94vh; border-radius: 22px 22px 0 0; }
  .modal__head { padding: 16px 18px; }
  .modal__body { padding: 24px 20px; }
  .modal__q { font-size: 21px; }
  .modal__foot { padding: 14px 18px 18px; }

  /* CTA banner */
  .cta { padding: 44px 22px; border-radius: var(--radius); }

  /* hero: keep the dashboard mock fully inside the viewport */
  .hero__visual { padding-left: 20px; padding-right: 20px; }
  .hero__panel { width: 100%; max-width: 460px; margin: 0 auto; }
  .mock__body { min-height: 300px; }
}

@media (max-width: 600px) {
  /* stack the modal action buttons full-width (primary on top) */
  .modal__foot { flex-direction: column-reverse; align-items: stretch; gap: 8px; }
  .modal__foot .btn { width: 100%; justify-content: center; }
  .modal__foot .modal__back { width: 100%; text-align: center; }
  .modal__foot > div[style] { display: none; } /* the flex:1 spacer */

  /* hero proof block wraps cleanly */
  .hero__actions .btn { width: 100%; justify-content: center; }

  /* footer: two tidy columns, brand on its own row */
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px 22px; padding: 48px 0 32px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 6px; }

  /* calculator labels + price scale down so the longest label ("ab 1.499 € / Jahr") never clips */
  .calc__panel, .calc__result { padding: 24px 18px; }
  .calc__price { font-size: clamp(34px, 10.5vw, 52px); }
  .calc__price span { font-size: 17px; }
}

@media (max-width: 420px) {
  .footer__grid { grid-template-columns: 1fr; }
  .trust__row { gap: 16px 26px; }
}
