@import url('../fonts/inter.css?v=1');

/* ============================================================
   Finanzkompass – Landingpage GKV/HEK Bonus
   Branding-Farben zentral hier oben ändern.
   ============================================================ */

:root {
  /* --- BRANDING myfinanzkompass (von myfinanzkompass.de übernommen) --- */
  --c-primary:        #800020;  /* Bordeaux – Logo & Hauptfarbe */
  --c-primary-soft:   #9B0F2E;
  --c-primary-deep:   #5C0017;
  --c-accent:         #BB1B28;  /* Rot – Buttons & Links */
  --c-accent-dark:    #9A1421;

  --c-gold:           #E69A19;  /* Gold – Akzente, Häkchen, Sterne */
  --c-gold-text:      #9C6608;  /* dunkleres Gold für Text auf Weiß */
  --c-gold-soft:      #F7F0E4;
  --c-gold-line:      #E8D9B8;

  /* --- Neutrale, warme Töne --- */
  --c-bg:             #FFFFFF;
  --c-bg-alt:         #F8F6F2;
  --c-text:           #3B302B;
  --c-text-muted:     #7E6F67;
  --c-border:         #E8E3D9;
  --c-white:          #FFFFFF;

  /* --- Typo & Layout --- */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, sans-serif;
  --maxw: 1080px;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(128, 0, 32, .07);
  --shadow-lg: 0 12px 40px rgba(128, 0, 32, .13);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-accent); }

h1, h2, h3 { color: var(--c-primary); line-height: 1.2; margin: 0 0 .6em; }
h1 { font-size: clamp(1.9rem, 6vw, 3.1rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.5rem, 4.5vw, 2.2rem); letter-spacing: -.01em; }
h3 { font-size: 1.15rem; }
p  { margin: 0 0 1em; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
section { padding: 56px 0; }
.bg-alt { background: var(--c-bg-alt); }

/* ---------- Header ---------- */
.site-header {
  padding: 14px 0;
  border-bottom: 1px solid var(--c-border);
  background: var(--c-white);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo img { height: 38px; width: auto; }
.logo-text { font-weight: 800; font-size: 1.15rem; color: var(--c-primary); letter-spacing: -.02em; }
.header-phone {
  font-weight: 600; font-size: .95rem; text-decoration: none; color: var(--c-primary);
  white-space: nowrap;
}
@media (max-width: 520px) { .header-phone { display: none; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; text-align: center; text-decoration: none;
  font-weight: 700; font-size: 1.08rem; line-height: 1.3;
  padding: 17px 32px; border: 0; border-radius: var(--radius-sm);
  background: var(--c-primary); color: var(--c-white);
  cursor: pointer; transition: transform .12s ease, background .12s ease;
  box-shadow: 0 4px 14px rgba(128, 0, 32, .28);
}
.btn:hover  { background: var(--c-primary-soft); }
.btn:active { transform: translateY(1px); }
.btn-block  { display: block; width: 100%; }
.btn-lg     { padding: 19px 36px; font-size: 1.15rem; }

/* ---------- Hero ---------- */
.hero { padding: 48px 0 44px; }
.hero .wrap { max-width: 780px; text-align: center; }
.eyebrow {
  display: inline-block; margin-bottom: 18px;
  background: var(--c-gold-soft); color: var(--c-gold-text);
  border: 1px solid var(--c-gold-line);
  font-size: .82rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  padding: 7px 15px; border-radius: 100px;
}
.hero .lead {
  font-size: clamp(1.05rem, 2.6vw, 1.24rem);
  color: var(--c-text-muted); max-width: 620px; margin: 0 auto 28px;
}
.hero .btn { min-width: 300px; }
@media (max-width: 420px) { .hero .btn { min-width: 0; width: 100%; } }

.trust-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px;
  margin-top: 22px; font-size: .93rem; color: var(--c-text-muted);
}
.trust-row span { display: flex; align-items: center; gap: 7px; }
.check { color: var(--c-gold-text); font-weight: 800; }

/* ---------- Social Proof / Screenshots ---------- */
.proof-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px; margin-top: 30px;
}
.proof-card {
  background: var(--c-white); border: 1px solid var(--c-border);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
}
.proof-card img { width: 100%; }
.proof-card figcaption {
  padding: 13px 16px; font-size: .9rem; color: var(--c-text-muted);
  border-top: 1px solid var(--c-border);
}
.proof-placeholder {
  aspect-ratio: 4 / 5; background: var(--c-bg-alt);
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: var(--c-text-muted); font-size: .88rem; padding: 20px;
  border-bottom: 1px dashed var(--c-border);
}

/* ---------- Schritte ---------- */
.steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px; margin-top: 32px;
}
.step {
  background: var(--c-white); border: 1px solid var(--c-border);
  border-radius: var(--radius); padding: 26px 24px;
}
.step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--c-gold); color: var(--c-white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem; margin-bottom: 15px;
}
.step p { margin: 0; color: var(--c-text-muted); font-size: .97rem; }

/* ---------- Klartext-Box (Rechenbeispiel) ---------- */
.klartext {
  background: var(--c-white); border: 1px solid var(--c-border);
  border-left: 4px solid var(--c-gold);
  border-radius: var(--radius); padding: 28px 26px; margin-top: 28px;
}
.klartext h3 { margin-bottom: .5em; }
.klartext ul { margin: 0 0 1.2em; padding-left: 1.2em; color: var(--c-text-muted); }
.klartext li { margin-bottom: .4em; }
.calc {
  border-collapse: collapse; width: 100%; max-width: 420px;
  font-size: .97rem; margin-top: 4px;
}
.calc td { padding: 9px 4px; border-bottom: 1px solid var(--c-border); }
.calc td:last-child { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
.calc tr:last-child td {
  border-bottom: 0; font-weight: 800; color: var(--c-primary);
  border-top: 2px solid var(--c-primary); padding-top: 11px;
}
.calc .minus td:last-child { color: var(--c-gold-text); font-weight: 700; }

/* ---------- Formular ---------- */
.form-section { background: var(--c-primary); color: var(--c-white); }
.form-section h2 { color: var(--c-white); }
.form-section .sub { color: rgba(255,255,255,.78); max-width: 520px; margin: 0 auto 30px; }
.form-section .wrap { max-width: 620px; text-align: center; }

.lead-form {
  background: var(--c-white); border-radius: var(--radius);
  padding: 30px 26px; text-align: left; box-shadow: var(--shadow-lg);
}
.field { margin-bottom: 16px; }
.field label {
  display: block; font-weight: 600; font-size: .93rem;
  color: var(--c-primary); margin-bottom: 6px;
}
.field input, .field select {
  width: 100%; font-family: var(--font); font-size: 1.02rem;
  padding: 14px 15px; border: 1.5px solid var(--c-border);
  border-radius: var(--radius-sm); background: var(--c-white); color: var(--c-text);
  transition: border-color .12s ease;
  -webkit-appearance: none; appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath fill='%235A6B82' d='M1.4 0 7 5.6 12.6 0 14 1.4 7 8.4 0 1.4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; padding-right: 42px;
}
.field input:focus, .field select:focus {
  outline: none; border-color: var(--c-gold);
  box-shadow: 0 0 0 3px var(--c-gold-soft);
}
.field input.invalid, .field select.invalid { border-color: #D94F4F; }
.field .error {
  display: none; color: #D94F4F; font-size: .85rem; margin-top: 5px;
}
.field.has-error .error { display: block; }

.consent {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: .85rem; line-height: 1.5; color: var(--c-text-muted);
  margin: 20px 0 22px;
}
.consent input { margin: 3px 0 0; width: 19px; height: 19px; flex: 0 0 auto; accent-color: var(--c-primary); }
.consent.has-error { color: #D94F4F; }

/* Honeypot – für Menschen unsichtbar, fängt Bots */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-note {
  text-align: center; font-size: .85rem; color: var(--c-text-muted); margin: 14px 0 0;
}
.form-success {
  display: none; background: var(--c-white); border-radius: var(--radius);
  padding: 44px 28px; text-align: center; box-shadow: var(--shadow-lg);
}
.form-success .tick {
  width: 62px; height: 62px; border-radius: 50%; background: var(--c-gold-soft);
  color: var(--c-gold-text); font-size: 2rem; line-height: 62px; margin: 0 auto 18px;
}
.form-success p { color: var(--c-text-muted); margin: 0; }
.is-sending { opacity: .6; pointer-events: none; }

/* ---------- FAQ ---------- */
.faq { max-width: 720px; margin: 28px auto 0; }
.faq details {
  background: var(--c-white); border: 1px solid var(--c-border);
  border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden;
}
.faq summary {
  cursor: pointer; list-style: none; padding: 18px 50px 18px 20px;
  font-weight: 650; color: var(--c-primary); position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  font-size: 1.4rem; font-weight: 400; color: var(--c-gold-text); line-height: 1;
}
.faq details[open] summary::after { content: "–"; }
.faq .answer { padding: 0 20px 18px; color: var(--c-text-muted); font-size: .97rem; }
.faq .answer p:last-child { margin-bottom: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--c-primary); color: rgba(255,255,255,.7);
  padding: 34px 0; font-size: .89rem;
}
.site-footer a { color: var(--c-white); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-bottom: 14px; }
.disclaimer { font-size: .8rem; line-height: 1.55; color: rgba(255,255,255,.55); margin: 0; }

/* ---------- Sticky Mobile CTA ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid var(--c-border);
  transform: translateY(110%); transition: transform .25s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta .btn { padding: 15px 20px; font-size: 1.05rem; }
@media (min-width: 861px) { .sticky-cta { display: none; } }
body.has-sticky { padding-bottom: 80px; }
@media (min-width: 861px) { body.has-sticky { padding-bottom: 0; } }

/* ---------- Rechtstexte (Impressum/Datenschutz) ---------- */
.legal { max-width: 760px; padding-top: 44px; padding-bottom: 60px; }
.legal h1 { font-size: clamp(1.7rem, 5vw, 2.3rem); margin-bottom: 1em; }
.legal h2 { font-size: 1.25rem; margin-top: 1.9em; }
.legal p, .legal li { color: var(--c-text-muted); font-size: .97rem; }
.legal .back { display: inline-block; margin-bottom: 26px; font-weight: 600; }
.legal .todo {
  background: #FFF8E1; border: 1px solid #F0D488; border-radius: var(--radius-sm);
  padding: 16px 18px; color: #7A5B00; font-size: .92rem;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ============================================================
   Marken-Bausteine myfinanzkompass
   ============================================================ */

/* ---------- Wortmarke im Header ---------- */
.logo img { height: 42px; width: 42px; }
.logo-text {
  font-weight: 800; font-size: 1.2rem; letter-spacing: -.02em;
  color: var(--c-text);
}
.logo-text .m1 { color: var(--c-gold); }
.logo-text .m2 { color: var(--c-primary); }
@media (max-width: 380px) { .logo-text { font-size: 1.05rem; } }

/* ---------- Bewertung / Sterne ---------- */
.rating {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--c-white); border: 1px solid var(--c-gold-line);
  border-radius: 100px; padding: 8px 18px; margin-top: 20px;
  font-size: .92rem; color: var(--c-text);
  box-shadow: var(--shadow);
}
.stars { color: var(--c-gold); letter-spacing: 1px; font-size: 1rem; }
.rating strong { font-weight: 800; }
.rating .quelle { color: var(--c-text-muted); font-size: .85rem; }
.rating a { color: inherit; text-decoration: none; }
.rating a:hover { text-decoration: underline; }

/* ---------- Trust-Badges ---------- */
.badges {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  margin-top: 30px;
}
.badge {
  display: flex; align-items: center; gap: 9px;
  background: var(--c-white); border: 1px solid var(--c-border);
  border-radius: var(--radius-sm); padding: 12px 17px;
  font-size: .9rem; font-weight: 600; color: var(--c-text);
}
.badge .icon {
  width: 26px; height: 26px; flex: 0 0 auto; border-radius: 50%;
  background: var(--c-gold-soft); color: var(--c-gold-text);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; font-weight: 800;
}
.badge small { display: block; font-weight: 400; color: var(--c-text-muted); font-size: .78rem; }

/* ---------- Formularsektion: goldener Button auf Bordeaux ---------- */
.form-section .lead-form .btn {
  background: var(--c-gold); color: #3B302B;
  box-shadow: 0 4px 14px rgba(230, 154, 25, .35);
}
.form-section .lead-form .btn:hover { background: #D18B10; }

/* Hinweis, dass die Kasse im Gespräch geklärt wird */
.hinweis-kasse {
  background: var(--c-gold-soft); border: 1px solid var(--c-gold-line);
  border-radius: var(--radius-sm); padding: 16px 18px; margin-top: 22px;
  font-size: .93rem; color: var(--c-text); line-height: 1.55;
}
.hinweis-kasse strong { color: var(--c-primary); }

/* Bewertungs-Badge: sauberer Umbruch auf schmalen Displays */
.rating { flex-wrap: wrap; justify-content: center; max-width: 100%; }
.rating > span { white-space: nowrap; }
.rating .quelle { white-space: normal; }
@media (max-width: 430px) {
  .rating { gap: 4px 9px; padding: 10px 16px; font-size: .88rem; border-radius: var(--radius); }
  .rating .quelle { flex-basis: 100%; text-align: center; font-size: .8rem; }
}

/* Kein horizontaler Überlauf – Sicherheitsnetz für schmale Displays */
html, body { overflow-x: hidden; }
.calc { max-width: 100%; }
.calc td:first-child { padding-right: 12px; }

/* Rechenbeispiel: feste Spaltenbreiten, damit nichts überläuft */
.calc { table-layout: fixed; }
.calc td:first-child { overflow-wrap: break-word; hyphens: auto; }
.calc td:last-child { width: 92px; }
@media (max-width: 400px) { .calc { font-size: .92rem; } }

/* Trust-Badges auf Mobile einheitlich breit */
@media (max-width: 560px) {
  .badges { flex-direction: column; align-items: center; gap: 10px; }
  .badge { width: 100%; max-width: 330px; }
}

/* Absende-Button auf schmalen Displays einzeilig halten */
@media (max-width: 420px) {
  .lead-form .btn-lg { font-size: 1.04rem; padding: 17px 18px; }
}

/* ============================================================
   Pop-up Formular
   ============================================================ */
.modal {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.modal[hidden] { display: none; }

.modal-overlay {
  position: absolute; inset: 0;
  background: rgba(43, 12, 20, .62);
  backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
  animation: modalFade .18s ease;
}
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }

.modal-box {
  position: relative; z-index: 1;
  width: 100%; max-width: 480px;
  max-height: calc(100vh - 40px);
  max-height: calc(100dvh - 40px);
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  background: var(--c-white);
  border-radius: var(--radius);
  padding: 34px 28px 28px;
  box-shadow: 0 24px 70px rgba(43, 12, 20, .4);
  animation: modalIn .22s cubic-bezier(.2, .8, .3, 1);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(14px) scale(.98); }
  to   { opacity: 1; transform: none; }
}

.modal-box h2 { font-size: clamp(1.35rem, 4.5vw, 1.7rem); margin-bottom: .45em; padding-right: 30px; }
.modal-sub { color: var(--c-text-muted); font-size: .96rem; margin-bottom: 24px; }

/* Formular im Pop-up braucht keinen eigenen Rahmen mehr */
.modal .lead-form { background: none; padding: 0; box-shadow: none; }
.modal .form-success { box-shadow: none; padding: 20px 0 8px; }

.modal-close {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 38px; height: 38px; border: 0; border-radius: 50%;
  background: var(--c-bg-alt); color: var(--c-text-muted);
  font-size: 1.6rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .12s ease, color .12s ease;
}
.modal-close:hover { background: var(--c-border); color: var(--c-text); }
.modal-close:focus-visible { outline: 2px solid var(--c-gold); outline-offset: 2px; }

/* Einwilligungshinweis unter dem Absende-Button */
.consent-hinweis {
  font-size: .78rem; line-height: 1.5; color: var(--c-text-muted);
  margin: 14px 0 0; text-align: center;
}
.consent-hinweis a { color: var(--c-accent); }

.modal .form-note { margin-top: 10px; font-size: .82rem; }

/* Seite darf im Hintergrund nicht mitscrollen */
body.modal-offen { overflow: hidden; }

/* Der Absende-Button im Pop-up bleibt Bordeaux (kein Gold-Sonderfall) */
.modal .lead-form .btn { background: var(--c-primary); color: var(--c-white); }
.modal .lead-form .btn:hover { background: var(--c-primary-soft); }

@media (max-width: 420px) {
  .modal { padding: 12px; }
  .modal-box { padding: 30px 20px 22px; }
}

/* ---------- Echte Belege: zwei Karten + Brief in voller Breite ---------- */
.proof-grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: start;
  max-width: 780px; margin-left: auto; margin-right: auto;
}
.proof-card img { width: 100%; height: auto; }

.proof-brief {
  margin: 20px auto 0; max-width: 900px;
  background: var(--c-white); border: 1px solid var(--c-border);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
}
.proof-brief img { width: 100%; height: auto; display: block; }
.proof-brief figcaption {
  padding: 13px 16px; font-size: .88rem; color: var(--c-text-muted);
  border-top: 1px solid var(--c-border);
}

/* ---------- Belege auf schmalen Displays ---------- */
@media (max-width: 700px) {
  /* Karten untereinander, damit sie gross genug sind */
  .proof-grid-2 { grid-template-columns: 1fr; max-width: 380px; }

}

/* figure hat im Browser einen Standardrand von 40px - der muss weg */
figure { margin: 0; }

/* Brief-Ausschnitt: schmal und ohne Scrollen */
.proof-brief { max-width: 560px; }

/* Brief: zwei Ausschnitte untereinander */
.brief-zeilen { background: #C3CDDB; padding: 4px 0 8px; }
.brief-zeilen img { display: block; width: 100%; height: auto; }

/* ============================================================
   Cookie-Hinweis (Pflicht, sobald der Meta-Pixel läuft)
   ============================================================ */
.consent-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  background: var(--c-white);
  border-top: 3px solid var(--c-primary);
  box-shadow: 0 -6px 30px rgba(43, 12, 20, .16);
  padding: 20px 20px calc(20px + env(safe-area-inset-bottom));
  display: none;
}
.consent-banner.sichtbar { display: block; }

.consent-banner .inner {
  max-width: 900px; margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px 24px;
}
.consent-banner p {
  margin: 0; flex: 1 1 380px;
  font-size: .9rem; line-height: 1.55; color: var(--c-text-muted);
}
.consent-banner strong { color: var(--c-text); }
.consent-banner a { color: var(--c-accent); }

.consent-banner .knoepfe {
  display: flex; gap: 10px; flex: 0 0 auto;
}
/* Beide Schaltflächen gleich gewichtet – Ablehnen muss so leicht sein wie Zustimmen */
.consent-banner button {
  font-family: var(--font); font-size: .95rem; font-weight: 650;
  padding: 12px 22px; border-radius: var(--radius-sm); cursor: pointer;
  border: 1.5px solid var(--c-primary); white-space: nowrap;
}
.consent-banner .ablehnen { background: var(--c-white); color: var(--c-primary); }
.consent-banner .ablehnen:hover { background: var(--c-bg-alt); }
.consent-banner .annehmen { background: var(--c-primary); color: var(--c-white); }
.consent-banner .annehmen:hover { background: var(--c-primary-soft); }
.consent-banner button:focus-visible { outline: 2px solid var(--c-gold); outline-offset: 2px; }

@media (max-width: 560px) {
  .consent-banner .inner { flex-direction: column; align-items: stretch; }
  .consent-banner .knoepfe button { flex: 1; }
}

/* Solange der Hinweis steht, den Sticky-Button nicht darüberlegen */
body.consent-offen .sticky-cta { display: none; }

/* ---------- Danke-Seite ---------- */
.danke-seite { max-width: 640px; text-align: center; padding: 56px 20px 70px; }
.danke-seite .tick {
  width: 74px; height: 74px; border-radius: 50%; margin: 0 auto 24px;
  background: var(--c-gold-soft); color: var(--c-gold-text);
  font-size: 2.3rem; line-height: 74px;
}
.danke-seite h1 { font-size: clamp(1.6rem, 5vw, 2.3rem); }
.danke-seite .lead { color: var(--c-text-muted); font-size: 1.06rem; margin-bottom: 38px; }

.danke-schritte {
  display: grid; gap: 14px; text-align: left;
  margin: 0 auto; max-width: 460px;
}
.danke-schritt {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--c-bg-alt); border: 1px solid var(--c-border);
  border-radius: var(--radius-sm); padding: 16px 18px;
}
.danke-schritt .nr {
  flex: 0 0 auto; width: 28px; height: 28px; border-radius: 50%;
  background: var(--c-gold); color: var(--c-white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .92rem;
}
.danke-schritt p { margin: 0; font-size: .95rem; color: var(--c-text-muted); }

.danke-hinweis { margin-top: 30px; font-size: .93rem; color: var(--c-text-muted); }
