@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --navy: #0E2433;
  --navy-2: #16324a;
  --green: #4CA845;
  --green-dk: #3d8a37;
  --bg: #FFFFFF;
  --bg-alt: #F2F5F7;
  --ink: #12212e;
  --ink-2: #45566a;
  --ink-3: #6b7f94;
  --rule: #DCE3E9;
  --warm: #C8963E;
  --warm-bg: #FBF5E9;
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;
  --r-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(14,36,51,.05);
  --shadow-md: 0 4px 20px rgba(14,36,51,.07);
  --shadow-lg: 0 12px 40px rgba(14,36,51,.10);
  --shadow-xl: 0 20px 60px rgba(14,36,51,.14);
  --promo-h: 0px;
  --nav-h: 72px;
  --max-w: 1200px;
  --section-py: 96px;
  --ease-out: cubic-bezier(.16,1,.3,1);
  --ease-smooth: cubic-bezier(.25,.46,.45,.94);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + var(--promo-h));
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
}

.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.container {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

.section--alt {
  background: var(--bg-alt);
}

.section--dark {
  background: var(--navy);
  color: #fff;
}

.h-display {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.h-1 {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.h-2 {
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.h-3 {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  line-height: 1.3;
}

.lead {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.75;
  color: var(--ink-2);
}

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.accent-line {
  width: 48px;
  height: 3px;
  background: var(--green);
  border: none;
  border-radius: 2px;
  margin-bottom: 20px;
}

.skip-link {
  position: fixed;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 12px 24px;
  background: var(--green);
  color: #fff;
  font-weight: 600;
  border-radius: var(--r-md);
  transition: top 0.2s var(--ease-out);
}

.skip-link:focus {
  top: 16px;
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

/* ── Promo Bar ── */
.promo-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--promo-h);
  background: var(--navy);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.promo-bar__link {
  color: rgba(255,255,255,.9);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  padding: 0 40px;
}

.promo-bar__link:hover {
  color: #fff;
}

.promo-bar__asterisk {
  color: rgba(255,255,255,.5);
  text-decoration: none;
  margin-left: 1px;
}

.promo-bar__close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,.5);
  font-size: 20px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}

.promo-bar__close:hover {
  color: #fff;
}

.promo-bar--hidden {
  display: none;
}

body.has-promo {
  --promo-h: 40px;
}

.topbar {
  position: fixed;
  top: var(--promo-h);
  left: 0;
  right: 0;
  height: var(--nav-h);
  background: rgba(14,36,51,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
}

.topbar__logo img {
  height: 38px;
  width: auto;
}

.topbar__wordmark {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  text-decoration: none;
}
.topbar__wordmark-dot {
  color: var(--green);
}

.topbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--green);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--r-md);
  transition: background 0.2s var(--ease-smooth);
}

.topbar__cta:hover {
  background: var(--green-dk);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--r-md);
  padding: 14px 28px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease-smooth);
  text-decoration: none;
  line-height: 1.2;
}

.btn--primary {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.btn--primary:hover {
  background: var(--green-dk);
  border-color: var(--green-dk);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--rule);
}

.btn--secondary:hover {
  border-color: var(--ink-3);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.35);
}

.btn--outline-white:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.6);
}

.btn--sm {
  padding: 10px 18px;
  font-size: 13px;
}

.btn--lg {
  padding: 18px 36px;
  font-size: 17px;
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  margin-top: calc(var(--nav-h) + var(--promo-h));
  overflow: hidden;
  background: var(--navy);
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(14,36,51,.92) 0%,
    rgba(22,50,74,.78) 40%,
    rgba(14,36,51,.65) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  color: #fff;
  padding: var(--section-py) 0;
}

.hero__eyebrow {
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero__headline {
  margin-bottom: 20px;
}

.hero__sub {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.65;
  opacity: .75;
  margin-bottom: 32px;
}

.hero__trust-line {
  font-size: 15px;
  color: rgba(255,255,255,.75);
  margin-bottom: 28px;
}

.hero__trust-star {
  color: var(--warm);
}

.hero__text-link {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}

.hero__text-link:hover {
  text-decoration: underline;
}

/* ── Form Action Hint ── */
.form-aktion-hint {
  font-size: 14px;
  color: var(--green);
  margin-bottom: 16px;
  line-height: 1.5;
}

.form-aktion-hint a {
  color: inherit;
  text-decoration: none;
}

.hero__form-card .form-aktion-hint {
  color: var(--green);
  margin-bottom: 12px;
}

.hero__form-card .form-aktion-hint a {
  color: var(--ink-3);
}

/* ── Coupon Box (danke.html) ── */
.coupon-box {
  margin-top: 32px;
  padding: 28px 32px;
  background: var(--bg-alt);
  border: 2px dashed var(--green);
  border-radius: var(--r-lg);
  text-align: center;
}

.coupon-box__label {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-2);
  margin-bottom: 16px;
}

.coupon-box__code-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.coupon-box__code {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--green);
}

.coupon-box__hint {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.5;
}

.coupon-box__hint a {
  color: var(--green);
}

/* ── Aktionsbedingungen ── */
.aktionsbedingungen {
  padding: 48px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--rule);
}

.aktionsbedingungen__list {
  margin-top: 20px;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-2);
}

.aktionsbedingungen__list li {
  margin-bottom: 8px;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.trust-strip {
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max-w);
  margin: 0 auto;
}

.trust-strip__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 28px 24px;
  position: relative;
}

.trust-strip__item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--rule);
}

.trust-strip__item:last-child::after {
  display: none;
}

.trust-strip__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--green);
}

.trust-strip__icon svg {
  width: 100%;
  height: 100%;
}

.trust-strip__text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-2);
}

.trust-strip__text strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}

.calc {
  background: var(--bg-alt);
}

.calc__card {
  background: var(--bg);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  padding: 48px;
  max-width: 720px;
  margin: 0 auto;
  border: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}

.calc__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--green-dk));
}

.calc-progress {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  position: relative;
}

.calc-progress__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 1;
  max-width: 160px;
}

.calc-progress__dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-3);
  position: relative;
  z-index: 2;
  transition: all 0.3s var(--ease-out);
}

.calc-progress__label {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-3);
  margin-top: 8px;
  text-align: center;
  transition: color 0.3s var(--ease-out);
}

.calc-progress__step.is-active .calc-progress__dot {
  background: var(--green);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(76,168,69,.15);
}

.calc-progress__step.is-active .calc-progress__label {
  color: var(--ink);
  font-weight: 600;
}

.calc-progress__step.is-complete .calc-progress__dot {
  background: var(--green);
  color: #fff;
}

.calc-progress__step.is-complete .calc-progress__label {
  color: var(--ink-2);
}

.calc-progress__line {
  position: absolute;
  top: 16px;
  left: calc(100% / 8);
  right: calc(100% / 8);
  height: 2px;
  background: var(--rule);
  z-index: 1;
}

.calc-progress__fill {
  height: 100%;
  background: var(--green);
  border-radius: 1px;
  transition: width 0.4s var(--ease-out);
  width: 0%;
}

@keyframes calcFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.calc-step {
  display: none;
}

.calc-step.is-active {
  display: block;
  animation: calcFadeIn 0.4s var(--ease-out);
}

.calc-step__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.calc-step__subtitle {
  font-size: 14px;
  color: var(--ink-3);
  margin-bottom: 24px;
}

.calc-step__actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.btn-select {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.btn-select__option {
  padding: 10px 20px;
  border: 1px solid var(--rule);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  background: var(--bg);
  cursor: pointer;
  transition: all 0.2s var(--ease-smooth);
}

.btn-select__option:hover {
  border-color: var(--green);
  color: var(--green);
}

.btn-select__option.is-selected {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.range-slider {
  width: 100%;
  margin: 16px 0;
}

.range-slider input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: var(--rule);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}

.range-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  background: var(--green);
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: transform 0.15s var(--ease-out);
}

.range-slider input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.range-slider input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  background: var(--green);
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

.range-slider input[type="range"]::-webkit-slider-runnable-track {
  background: linear-gradient(to right, var(--green) 0%, var(--green) var(--progress, 50%), var(--rule) var(--progress, 50%));
  height: 6px;
  border-radius: 3px;
}

.range-slider__labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  font-size: 13px;
  color: var(--ink-3);
}

.range-slider__value {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}

.calc-result {
  background: var(--bg-alt);
  border-radius: var(--r-lg);
  padding: 28px;
  margin-top: 24px;
  border: 1px solid var(--rule);
}

.calc-result__highlight {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--green);
  line-height: 1.1;
  margin-bottom: 8px;
}

.calc-result__detail {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
}

.calc-result__disclaimer {
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 12px;
  line-height: 1.5;
}

/* --- Disqualifikation (Mieter) --- */
.calc-disqualified {
  text-align: center;
  padding: 40px 20px;
}

.calc-disqualified__icon {
  margin-bottom: 16px;
}

.calc-disqualified__text {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 420px;
  margin: 12px auto 0;
}

/* --- Gated result (no numbers) --- */
.calc-result-gated {
  text-align: center;
  padding: 32px 20px;
  background: var(--bg-alt);
  border-radius: var(--r-lg);
  border: 1px solid var(--rule);
}

.calc-result-gated__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.calc-result-gated__text {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 480px;
  margin: 12px auto 0;
}

/* --- Loader (Berechnung) --- */
.calc-loader {
  text-align: center;
  padding: 48px 20px;
}

.calc-loader__list {
  list-style: none;
  padding: 0;
  margin: 28px auto 0;
  max-width: 320px;
  text-align: left;
}

.calc-loader__item {
  font-size: 15px;
  color: var(--ink-3);
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color 0.3s var(--ease-out);
}

.calc-loader__check {
  color: var(--rule);
  font-size: 18px;
  font-weight: 700;
  transition: color 0.3s var(--ease-out);
  flex-shrink: 0;
}

.calc-loader__item.is-done {
  color: var(--ink);
}

.calc-loader__item.is-done .calc-loader__check {
  color: var(--green);
}

/* --- Form helper text --- */
.form-helper {
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 6px;
  line-height: 1.4;
}

/* --- Optional btn-select (no validation required) --- */
.btn-select--optional .btn-select__option {
  border-style: dashed;
}

/* --- Ansprechpartner --- */
.ansprechpartner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ansprechpartner__foto {
  border-radius: 50%;
  object-fit: cover;
}

.ansprechpartner__text {
  font-size: 15px;
  line-height: 1.5;
}

@media (prefers-reduced-motion: reduce) {
  .calc-loader__item,
  .calc-loader__check {
    transition: none;
  }
}

/* === 25-Jahre-Slider-Vergleich === */

.slider-compare__control {
  text-align: center;
  margin-bottom: 40px;
}

.slider-compare__year {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 20px;
}

.slider-compare__year span {
  color: var(--green);
}

.slider-compare__range-wrap {
  max-width: 600px;
  margin: 0 auto;
}

.slider-compare__input {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  background: var(--rule);
  border-radius: 4px;
  outline: none;
  cursor: pointer;
}

.slider-compare__input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  background: var(--green);
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: transform 0.15s var(--ease-out);
}

.slider-compare__input::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.slider-compare__input::-moz-range-thumb {
  width: 28px;
  height: 28px;
  background: var(--green);
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

.slider-compare__ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 12px;
  color: var(--ink-3);
  font-weight: 500;
  padding: 0 2px;
}

.slider-compare__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.slider-compare__card {
  border-radius: var(--r-lg);
  padding: 28px;
  border: 2px solid var(--rule);
  background: var(--bg);
}

.slider-compare__card--mrk {
  border-color: var(--green);
  background: rgba(76,168,69,.03);
}

.slider-compare__card-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
}

.slider-compare__card--billig .slider-compare__card-title {
  color: var(--ink-3);
}

.slider-compare__card--mrk .slider-compare__card-title {
  color: var(--green);
}

.slider-compare__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
}

.slider-compare__row:last-child {
  border-bottom: none;
}

.slider-compare__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
}

.slider-compare__value {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  text-align: right;
  transition: opacity 0.2s ease;
}

.slider-compare__value--good {
  color: var(--green);
}

.slider-compare__value--warn {
  color: var(--ink-3);
}

.slider-compare__badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.slider-compare__badge--active {
  background: rgba(76,168,69,.1);
  color: var(--green);
  border: 1px solid rgba(76,168,69,.2);
}

.slider-compare__badge--expired {
  background: rgba(214,69,69,.08);
  color: #d64545;
  border: 1px solid rgba(214,69,69,.15);
}

.slider-compare__footnote {
  font-size: 12px;
  color: var(--ink-3);
  text-align: center;
  max-width: 700px;
  margin: 24px auto 0;
  line-height: 1.6;
}

.reviews-summary {
  text-align: center;
  margin-bottom: 40px;
}

.reviews-summary__score {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}

.reviews-summary__stars {
  color: var(--warm);
  font-size: 22px;
  margin: 8px 0;
}

.reviews-summary__count {
  font-size: 14px;
  color: var(--ink-3);
}

.review-card {
  flex: 0 0 360px;
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: 28px;
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s var(--ease-smooth);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
}

.review-card__header {
  margin-bottom: 14px;
}

.review-card__stars {
  color: var(--warm);
  font-size: 16px;
  letter-spacing: 2px;
}

.review-card__body {
  flex: 1;
  margin-bottom: 16px;
}

.review-card__text {
  font-style: italic;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-2);
}

.review-card__body[data-truncate] .review-card__text {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-card__footer {
  border-top: 1px solid var(--rule);
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-card__author {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.review-card__date {
  font-size: 12px;
  color: var(--ink-3);
}

.review-card__source {
  font-size: 12px;
  color: var(--ink-3);
  font-weight: 500;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 0;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-slide {
  flex: 0 0 calc(33.333% - 14px);
  scroll-snap-align: start;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s var(--ease-smooth);
  color: var(--ink);
}

.carousel-btn:hover {
  border-color: var(--ink-3);
  box-shadow: var(--shadow-sm);
}

.carousel-btn:disabled {
  opacity: .35;
  cursor: default;
}

.process-timeline {
  display: flex;
  gap: 0;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 16px;
}

.process-step__number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 26px;
  left: calc(50% + 26px);
  width: calc(100% - 52px);
  height: 2px;
  background: var(--rule);
  z-index: 1;
}

.process-step__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
}

.process-step__desc {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
}

.form-section {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 72px;
  align-items: start;
}

.form-section__info {
  padding-top: 12px;
}

.form-section__promise {
  background: rgba(76,168,69,.06);
  border: 1px solid rgba(76,168,69,.15);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  margin-top: 28px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink);
}

.form-section__promise strong {
  color: var(--green);
}

.form-card {
  background: var(--bg);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--green-dk));
}

.form-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--ink-2);
  margin-bottom: 24px;
}

.form-trust-badge strong {
  color: var(--warm);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  background: var(--bg);
  font-size: 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(76,168,69,.1);
}

.form-input::placeholder {
  color: var(--ink-3);
}

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%236b7f94' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

textarea.form-input {
  resize: vertical;
  min-height: 100px;
}

.form-checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-2);
}

.form-checkbox input[type="checkbox"] {
  margin-top: 2px;
  accent-color: var(--green);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  position: relative;
  cursor: pointer;
}

.form-checkbox input[type="checkbox"]::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
}

.form-reassurance {
  font-size: 12px;
  color: var(--ink-3);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}

.form-group.is-error .form-input {
  border-color: #d64545;
  box-shadow: 0 0 0 3px rgba(214,69,69,.1);
}

.form-group.is-error label {
  color: #d64545;
}

.form-error-msg {
  font-size: 12px;
  color: #d64545;
  margin-top: 4px;
  display: none;
}

.form-group.is-error .form-error-msg {
  display: block;
}

.faq__item {
  border-bottom: 1px solid var(--rule);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-weight: 600;
  font-size: 16px;
  text-align: left;
  color: var(--ink);
  cursor: pointer;
  background: none;
  border: none;
  gap: 16px;
  transition: color 0.2s;
}

.faq__question:hover {
  color: var(--green);
}

.faq__question::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--ink-3);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
  line-height: 1;
}

.faq__question[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease-smooth), padding-bottom 0.35s var(--ease-smooth);
  padding-bottom: 0;
}

.faq__answer.is-open {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq__answer p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-2);
}

.faq__answer a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer {
  background: var(--navy);
  color: rgba(255,255,255,.5);
  padding: 48px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  gap: 24px;
}

.footer__copy {
  font-size: 14px;
}

.footer__links {
  display: flex;
  gap: 24px;
}

.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  transition: color 0.2s;
}

.footer__links a:hover {
  color: rgba(255,255,255,.85);
}

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: none;
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(14,36,51,.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,.08);
  transform: translateY(100%);
  transition: transform 0.35s var(--ease-out);
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

.sticky-cta .btn {
  width: 100%;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 480px;
  background: var(--bg);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  padding: 24px;
  z-index: 2000;
  display: none;
  border: 1px solid var(--rule);
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.cookie-banner__text {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: 16px;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(14,36,51,.5);
  backdrop-filter: blur(4px);
}

.cookie-modal.is-visible {
  display: flex;
}

.cookie-modal__card {
  background: var(--bg);
  border-radius: var(--r-xl);
  max-width: 540px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 36px;
  box-shadow: var(--shadow-xl);
}

.cookie-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.cookie-modal__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.cookie-modal__close:hover {
  background: var(--bg-alt);
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
}

.cookie-toggle__info {
  flex: 1;
  margin-right: 16px;
}

.cookie-toggle__name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.cookie-toggle__desc {
  font-size: 13px;
  color: var(--ink-3);
}

.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.toggle-switch__slider {
  position: absolute;
  inset: 0;
  background: var(--rule);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.25s;
}

.toggle-switch__slider::before {
  content: '';
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.25s var(--ease-out);
}

.toggle-switch input:checked + .toggle-switch__slider {
  background: var(--green);
}

.toggle-switch input:checked + .toggle-switch__slider::before {
  transform: translateX(20px);
}

.toggle-switch input:disabled + .toggle-switch__slider {
  opacity: .5;
  cursor: default;
}

.legal-page {
  margin-top: var(--nav-h);
  padding: var(--section-py) 0;
  min-height: 60vh;
}

.legal-page h1 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  margin-bottom: 12px;
}

.legal-page h2 {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 12px;
}

.legal-page h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 8px;
}

.legal-page p {
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: 16px;
}

.legal-page ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-page ul li {
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: 6px;
}

.legal-page a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 2px;
  word-break: break-all;
}

.thankyou {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 70vh;
  margin-top: var(--nav-h);
  padding: var(--section-py) 24px;
}

.thankyou__icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(76,168,69,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.thankyou__icon svg {
  width: 40px;
  height: 40px;
  color: var(--green);
}

.calc-report {
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 0;
}

.calc-report__card {
  background: var(--bg);
  border-radius: var(--r-xl);
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.calc-report__header {
  padding: 28px 32px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--rule);
}

.calc-report__body {
  padding: 28px 32px;
}

.calc-report__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 15px;
}

.calc-report__row:last-child {
  border-bottom: none;
}

.calc-report__row dt {
  color: var(--ink-2);
}

.calc-report__row dd {
  font-weight: 600;
  color: var(--ink);
  text-align: right;
}

.calc-report__highlight {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--green);
  text-align: center;
  padding: 24px 0;
  margin: 12px 0;
  border-top: 2px solid var(--rule);
  border-bottom: 2px solid var(--rule);
}

.page-404 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 70vh;
  margin-top: var(--nav-h);
  padding: var(--section-py) 24px;
}

.page-404__code {
  font-size: clamp(72px, 12vw, 140px);
  font-weight: 800;
  color: var(--rule);
  line-height: 1;
  margin-bottom: 12px;
}

.page-404__title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  margin-bottom: 12px;
}

.page-404__text {
  color: var(--ink-2);
  margin-bottom: 28px;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* === CR-01: Hero 55/45 Layout === */

.hero__layout {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 48px;
  align-items: center;
}

.hero__form-card {
  background: rgba(255,255,255,.97);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 2;
}

.hero__form-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
}

.hero__form-card .form-group {
  margin-bottom: 14px;
}

.hero__form-card .form-input {
  padding: 14px 16px;
}

.hero__form-card .form-checkbox--compact {
  margin-bottom: 16px;
}

.hero__form-card .form-checkbox--compact label {
  font-size: 12px;
}

.hero__form-submit {
  width: 100%;
}

/* === CR-01: Stats Strip === */

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg);
}

.stats-strip__item {
  text-align: center;
  padding: 28px 16px;
  position: relative;
}

.stats-strip__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--rule);
}

.stats-strip__value {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--green);
  line-height: 1.1;
  margin-bottom: 4px;
}

.stats-strip__label {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.4;
}

/* === Anlagen-Anatomie === */

.anatomy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.anatomy__svg-col {
  display: flex;
  justify-content: center;
}

.anatomy-svg {
  width: 100%;
  max-width: 400px;
  height: auto;
}

.anatomy__card-col {
  display: flex;
  align-items: center;
}

.anatomy__card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg);
  padding: 36px;
  width: 100%;
}

.anatomy__num {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: .05em;
  display: block;
  margin-bottom: 4px;
}

.anatomy__category {
  font-weight: 800;
  font-size: clamp(20px, 2.2vw, 28px);
  text-transform: uppercase;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.anatomy__brand {
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  color: var(--green);
  letter-spacing: 0.02em;
}

.anatomy__detail {
  font-size: 15px;
  color: rgba(255,255,255,.6);
  margin-top: 8px;
  line-height: 1.6;
}

/* Hotspot interaction */
.anatomy-hotspot {
  cursor: pointer;
  outline: none;
}

.anatomy-hotspot:hover,
.anatomy-hotspot:focus-visible {
  transform: scale(1.15);
}

.anatomy-hotspot__hit {
  pointer-events: all;
}

.anatomy-hotspot__ring {
  transition: fill-opacity 0.2s var(--ease-smooth);
}

.anatomy-hotspot.is-active .anatomy-hotspot__ring {
  fill-opacity: .85;
}

/* Mobile accordion (hidden desktop) */
.anatomy__accordion {
  display: none;
}

.anatomy__acc-item {
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.anatomy__acc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 18px 0;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', system-ui, sans-serif;
}

.anatomy__acc-btn::after {
  content: '+';
  margin-left: auto;
  font-size: 20px;
  font-weight: 300;
  color: rgba(255,255,255,.5);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
  line-height: 1;
}

.anatomy__acc-btn[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

.anatomy__acc-num {
  font-size: 13px;
  font-weight: 800;
  color: var(--green);
  min-width: 24px;
}

.anatomy__acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease-smooth), padding-bottom 0.35s var(--ease-smooth);
  padding-bottom: 0;
}

.anatomy__acc-panel.is-open {
  max-height: 200px;
  padding-bottom: 16px;
}

.anatomy__acc-brand {
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--green);
  letter-spacing: 0.02em;
  padding-left: 36px;
}

.anatomy__acc-detail {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  padding-left: 36px;
  margin-top: 4px;
  line-height: 1.5;
}


/* === CR-01: Ken Burns Animation === */

@keyframes kenBurns {
  0%   { transform: scale(1.0); }
  100% { transform: scale(1.08); }
}

.hero__bg img {
  animation: kenBurns 20s ease-in-out alternate infinite;
}

/* === CR-01: Stagger Reveal === */

.stagger-reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s var(--ease-smooth), transform 0.5s var(--ease-smooth);
}

.stagger-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero__bg img {
    animation: none !important;
  }

  .stagger-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .anatomy-hotspot {
    transition: none;
  }

  .anatomy-hotspot__ring {
    transition: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 1200px) {
  .carousel-slide {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 1024px) {
  .trust-strip__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip__item:nth-child(2)::after {
    display: none;
  }

  .trust-strip__item:nth-child(4)::after {
    display: none;
  }

  .form-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process-timeline {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .process-step {
    flex-direction: row;
    text-align: left;
    padding: 16px 0;
    gap: 20px;
    width: 100%;
    max-width: 400px;
  }

  .process-step__number {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .process-step:not(:last-child)::after {
    left: 26px;
    top: 68px;
    width: 2px;
    height: calc(100% - 52px);
  }

}

@media (max-width: 768px) {
  :root {
    --section-py: 64px;
    --nav-h: 60px;
  }

  .topbar__logo img {
    height: 30px;
  }

  .topbar__cta {
    padding: 8px 14px;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    padding: 40px 0 32px;
  }

  .hero__trust-line {
    font-size: 14px;
  }

  .hero__ctas {
    flex-direction: column;
  }

  .trust-strip__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip__item::after {
    display: none;
  }

  .calc__card {
    padding: 28px 20px;
  }

  .carousel-slide {
    flex: 0 0 80%;
  }

  .review-card {
    flex: 0 0 85%;
  }

  .anatomy {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .anatomy__card-col {
    display: none;
  }

  .anatomy__accordion {
    display: block;
  }

  .anatomy-svg {
    max-width: 300px;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .footer__links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .sticky-cta {
    display: flex;
  }

  body {
    padding-bottom: 80px;
  }

  .form-card {
    padding: 28px 20px;
  }

  .calc-report__header,
  .calc-report__body {
    padding: 20px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }

  .hero__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero__form-card {
    padding: 24px 20px;
  }

  .hero__form-title {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .hero__form-card .form-group {
    margin-bottom: 10px;
  }

  .hero__form-card .form-input {
    padding: 11px 14px;
    font-size: 16px;
  }

  .hero__form-card .form-checkbox--compact label {
    font-size: 11px;
  }

  .hero__form-card .form-aktion-hint {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .hero__form-card .form-reassurance {
    font-size: 12px;
    margin-top: 8px;
  }

  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-strip__item:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero__eyebrow-long {
    display: none;
  }

  .promo-bar__link {
    font-size: 12px;
    padding: 0 32px 0 12px;
  }

  .trust-strip__inner {
    grid-template-columns: 1fr;
  }

  .btn-select {
    flex-direction: column;
  }

  .btn-select__option {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .hero__sub {
    font-size: 16px;
  }

  .calc-progress__label {
    font-size: 10px;
  }

  .calc-progress__dot {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .calc-progress__line {
    top: 14px;
  }

  .calc-step__actions {
    flex-direction: column;
  }

  .calc-step__actions .btn {
    width: 100%;
  }

  .slider-compare__cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .slider-compare__card {
    padding: 20px 16px;
  }

  .slider-compare__card-title {
    font-size: 14px;
  }

  .slider-compare__label {
    font-size: 12px;
  }

  .slider-compare__value {
    font-size: 13px;
  }

  .process-step {
    max-width: 100%;
  }

  .stats-strip {
    grid-template-columns: 1fr;
  }

  .stats-strip__item::after {
    display: none !important;
  }

  /* ── Mobile form compaction ── */
  .form-group {
    margin-bottom: 14px;
  }

  .form-group label {
    font-size: 12px;
    margin-bottom: 4px;
  }

  .form-input {
    padding: 10px 14px;
    font-size: 16px;
  }

  textarea.form-input {
    min-height: 72px;
  }

  .form-checkbox {
    font-size: 12px;
  }

  .form-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
  }

  .form-card {
    padding: 24px 16px;
  }

  .hero__layout {
    gap: 24px;
  }

  .hero__content {
    padding: 32px 0 20px;
  }

  .hero__sub {
    margin-bottom: 20px;
  }

  .hero__trust-line {
    margin-bottom: 16px;
    font-size: 13px;
  }
}
