:root {
    /* NeoRiester Design Tokens (Marke der VWM) */
    --ink: #0B3B36;
    --teal: #12967E;
    --teal-deep: #0B6E5B;
    --teal-tint: #E4F2EE;
    --amber: #C97A2B;
    --amber-tint: #FBEEE0;
    --paper: #F5F7F4;
    --white: #FFFFFF;
    --slate: #5C6D69;
    --slate-soft: #84928E;
    --line: #DCE3DF;
    --line-strong: #C3CDC8;
    --display: 'Space Grotesk', system-ui, sans-serif;
    --body: 'IBM Plex Sans', system-ui, sans-serif;
    --mono: 'IBM Plex Mono', ui-monospace, monospace;

    /* Legacy aliases (bestehende Klassen nutzen --gold*) */
    --bg: var(--paper);
    --bg-accent: var(--teal-tint);
    --card: var(--white);
    --border: var(--line);
    --gold: var(--teal);
    --gold-dark: var(--teal-deep);
    --gold-light: #3FC7AB;
    --muted: var(--slate);
    --ok: #16A34A;
    --warn: var(--amber);
    --bad: #DC2626;
    --radius: 14px;
    --radius-s: 6px;
    --radius-m: 10px;
    --shadow-card: 0 1px 2px rgba(11,59,54,0.04), 0 8px 24px rgba(11,59,54,0.05);
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: var(--body);
    background: var(--paper);
    color: var(--ink);
    min-height: 100vh;
    line-height: 1.55;
}

.rc-shell { max-width: 640px; margin: 0 auto; padding: 18px 16px 60px; }

.rc-header { display: flex; align-items: center; gap: 12px; padding: 10px 2px 18px; }
.rc-mark {
    width: 40px; height: 40px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: transparent; color: var(--teal); font-size: 18px;
    box-shadow: none; border-radius: 0;
}
.rc-mark svg { width: 40px; height: 40px; display: block; }
.rc-brand-text { min-width: 0; flex: 1; }
.rc-brand-name {
    font-family: var(--display); font-weight: 600; font-size: 20px;
    letter-spacing: -.01em; color: var(--ink); line-height: 1.15;
}
.rc-brand-name .neo { font-weight: 500; opacity: .72; }
.rc-brand-name .riester { font-weight: 600; }
.rc-brand-tag { font-size: 12px; color: var(--muted); line-height: 1.35; }
.rc-brand-foot {
    margin-top: 28px; padding-top: 18px; border-top: 1px solid var(--line);
    font-size: 12px; color: var(--slate-soft); text-align: center; line-height: 1.5;
}
.rc-brand-foot a { color: var(--teal-deep); }

.rc-progress { height: 5px; border-radius: 999px; background: var(--line); overflow: hidden; margin-bottom: 22px; }
.rc-progress-fill { height: 100%; width: 4%; background: var(--teal-deep); transition: width .4s ease; }

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

.rc-eyebrow { display: inline-flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 11.5px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--teal-deep); background: var(--teal-tint); border: 1px solid var(--line); padding: 5px 10px; border-radius: 999px; margin-bottom: 14px; }

h1.rc-h1 { font-family: var(--display); font-size: 28px; line-height: 1.15; margin: 0 0 12px; font-weight: 600; color: var(--ink); letter-spacing: -.01em; }
h2.rc-h2 { font-family: var(--display); font-size: 21px; line-height: 1.25; margin: 0 0 8px; font-weight: 600; color: var(--ink); letter-spacing: -.01em; }
p.rc-lead { color: var(--muted); font-size: 15px; margin: 0 0 22px; }

.rc-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; margin-bottom: 14px; box-shadow: var(--shadow-card); }

.rc-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 18px 0 26px; }
.rc-trust div { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 12px 10px; font-size: 12px; text-align: center; color: var(--muted); box-shadow: 0 2px 10px rgba(31,41,55,.04); }
.rc-trust i { display: block; color: var(--gold-dark); font-size: 16px; margin-bottom: 6px; }

.rc-options { display: grid; gap: 10px; margin-bottom: 20px; }
.rc-option { border: 1.5px solid var(--border); background: var(--card); border-radius: 12px; padding: 14px 16px; cursor: pointer; transition: .15s ease; position: relative; }
.rc-option:hover { border-color: var(--gold); background: rgba(18,150,126,.06); }
.rc-option.selected { border-color: var(--gold); background: rgba(18,150,126,.1); box-shadow: 0 0 0 1px var(--gold) inset; }
.rc-option .rc-opt-title { font-weight: 700; font-size: 15px; color: var(--ink); }
.rc-option .rc-opt-sub { color: var(--muted); font-size: 12.5px; margin-top: 2px; }

.rc-field { margin-bottom: 16px; }
.rc-field label { display: block; font-size: 13px; font-weight: 700; color: #4b5563; margin-bottom: 6px; }
.rc-field .rc-hint { font-size: 12px; color: var(--muted); margin-top: 5px; }
.rc-hint { font-size: 12px; color: var(--muted); }
.rc-field input, .rc-field select {
    width: 100%; padding: 13px 14px; border-radius: 10px; border: 1.5px solid var(--border);
    background: #fff; color: var(--ink); font-size: 15px; font-family: inherit;
}
.rc-field input:focus, .rc-field select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(18,150,126,.15); }
.rc-field input::placeholder { color: #9aa3af; }
.rc-field select:disabled { background: #f3f4f6; color: #9aa3af; cursor: not-allowed; }
.rc-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.rc-toggle-yesno { display: flex; gap: 10px; margin-bottom: 6px; }
.rc-toggle-yesno button { flex: 1; padding: 12px; border-radius: 10px; border: 1.5px solid var(--border); background: #fff; color: var(--ink); font-weight: 700; cursor: pointer; }
.rc-toggle-yesno button.active { border-color: var(--gold); background: rgba(18,150,126,.14); color: var(--gold-dark); }

.rc-child-row { display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: end; margin-bottom: 10px; }
.rc-child-remove { background: rgba(220,38,38,.08); border: 1px solid rgba(220,38,38,.25); color: var(--bad); border-radius: 10px; width: 44px; height: 44px; cursor: pointer; font-weight: 700; }

.rc-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 14px 22px; border-radius: var(--radius-m); border: none; font-weight: 600; font-size: 15px; cursor: pointer; font-family: var(--body); transition: background .15s ease, transform .15s ease; }
.rc-btn-primary { background: var(--teal-deep); color: #fff; box-shadow: 0 8px 22px rgba(11,110,91,.22); }
.rc-btn-primary:hover { background: var(--ink); }
.rc-btn-primary:disabled { opacity: .5; cursor: not-allowed; }
.rc-btn-ghost { background: transparent; color: var(--muted); border: 1.5px solid var(--border); margin-top: 10px; }
.rc-btn-secondary { background: #fff; color: var(--ink); border: 1.5px solid var(--border); }
.rc-btn-link { background: transparent; color: var(--gold-dark); border: none; text-decoration: underline; font-weight: 700; width: auto; padding: 8px 0; }

.rc-error { color: var(--bad); font-size: 13px; margin: 8px 0 0; display: none; }
.rc-error.show { display: block; }

.rc-add-child { background: rgba(18,150,126,.08); border: 1.5px dashed var(--border); color: var(--gold-dark); border-radius: 10px; padding: 12px; width: 100%; cursor: pointer; font-weight: 700; margin-bottom: 6px; }

.rc-loading { text-align: center; padding: 50px 10px; }
.rc-spinner { width: 46px; height: 46px; border-radius: 50%; border: 4px solid rgba(18,150,126,.18); border-top-color: var(--gold-dark); margin: 0 auto 18px; animation: rcSpin 1s linear infinite; }
@keyframes rcSpin { to { transform: rotate(360deg); } }

.rc-verdict { border-radius: var(--radius); padding: 22px; margin-bottom: 16px; border: 1.5px solid var(--gold); background: linear-gradient(160deg, rgba(18,150,126,.14), rgba(18,150,126,.02)); }
.rc-verdict-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .4px; padding: 4px 10px; border-radius: 999px; margin-bottom: 10px; }
.rc-verdict-badge.klar { background: rgba(22,163,74,.14); color: #15803d; }
.rc-verdict-badge.tendenziell { background: rgba(217,119,6,.14); color: #b45309; }
.rc-verdict-badge.ausgeglichen { background: rgba(107,114,128,.14); color: #4b5563; }
.rc-verdict h2 { margin: 0 0 6px; font-size: 22px; color: var(--ink); }

.rc-hero-stat { text-align: center; padding: 6px 0 4px; }
.rc-hero-stat .rc-hero-num { font-size: 34px; font-weight: 900; color: var(--gold-dark); line-height: 1.15; }
.rc-hero-stat .rc-hero-sub { font-size: 13.5px; color: var(--muted); margin-top: 4px; }

.rc-bars { display: grid; gap: 10px; margin: 14px 0; }
.rc-bar-row { }
.rc-bar-label { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 5px; }
.rc-bar-label strong { color: var(--ink); }
.rc-bar-label span { color: var(--muted); }
.rc-bar-track { height: 14px; background: #f1f2f4; border-radius: 999px; overflow: hidden; }
.rc-bar-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, #6b8fd6, #8fabe6); transition: width .6s ease; }
.rc-bar-fill.winner { background: linear-gradient(90deg, var(--gold-dark), var(--gold)); }

.rc-scenario-tabs { display: flex; gap: 8px; margin-bottom: 14px; }
.rc-scenario-tabs button { flex: 1; padding: 9px; border-radius: 10px; border: 1.5px solid var(--border); background: #fff; color: var(--muted); font-weight: 700; font-size: 12.5px; cursor: pointer; }
.rc-scenario-tabs button.active { border-color: var(--gold); color: var(--gold-dark); background: rgba(18,150,126,.1); }

.rc-list { margin: 0; padding-left: 18px; color: #374151; font-size: 14px; }
.rc-list li { margin-bottom: 8px; }

.rc-hints { border-left: 3px solid var(--gold); padding-left: 12px; margin: 14px 0; }
.rc-hints .rc-hint-item { font-size: 13.5px; color: var(--muted); margin-bottom: 8px; }

.rc-advisor { display: flex; gap: 14px; align-items: center; margin-bottom: 16px; }
.rc-advisor-avatar { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; }
.rc-advisor-avatar img { width: 100%; height: 100%; object-fit: cover; }
.rc-advisor-name { font-weight: 800; color: var(--ink); }
.rc-advisor-sub { color: var(--muted); font-size: 12.5px; }

.rc-consent { display: flex; gap: 10px; align-items: flex-start; font-size: 12.5px; color: var(--muted); margin: 14px 0; }
.rc-consent input { margin-top: 3px; }
.rc-consent a { color: var(--gold-dark); }

.rc-disclaimer { font-size: 11.5px; color: #9aa3af; margin-top: 18px; line-height: 1.5; }

.rc-success { text-align: center; padding: 30px 10px; }
.rc-success i { font-size: 46px; color: var(--ok); margin-bottom: 14px; }

.rc-kosten-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 6px; }
.rc-kosten-chip { background: #fafaf7; border: 1px solid var(--border); border-radius: 12px; padding: 12px 10px; text-align: center; }
.rc-kosten-chip .kv-num { font-size: 19px; font-weight: 800; color: var(--ink); }
.rc-kosten-chip.highlight .kv-num { color: var(--gold-dark); }
.rc-kosten-chip .kv-label { font-size: 11px; color: var(--muted); margin-top: 3px; line-height: 1.3; }
@media (max-width: 480px) { .rc-kosten-grid { grid-template-columns: 1fr; } }

/* Tarif-Auswahl (Gesellschaft / Tarif / Abschlussjahr) */
.rc-tarif-status { font-size: 13px; margin-top: 8px; display: none; }
.rc-tarif-status.show { display: flex; align-items: center; gap: 8px; }
.rc-tarif-status.found { color: var(--ok); }
.rc-tarif-status.notfound { color: var(--muted); }

/* Kinder-Stepper */
.rc-stepper { display: inline-flex; align-items: center; gap: 14px; }
.rc-stepper button {
    width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--border);
    background: #fff; color: var(--gold-dark); font-size: 15px; cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center; transition: .15s ease;
}
.rc-stepper button:hover { border-color: var(--gold); background: rgba(18,150,126,.08); }
.rc-stepper-num { min-width: 40px; text-align: center; font-size: 22px; font-weight: 800; color: var(--ink); }

/* Riester-Score (animierter Ring mit Ampelfarben) */
.rc-score-card {
    background: var(--card); border: 1.5px solid var(--gold); border-radius: var(--radius);
    padding: 26px 22px 20px; margin-bottom: 16px; text-align: center;
    background: linear-gradient(160deg, rgba(18,150,126,.1), rgba(18,150,126,.01)), #fff;
    box-shadow: 0 8px 30px rgba(31,41,55,.07);
}
.rc-score-ring-wrap { position: relative; width: 170px; height: 170px; margin: 0 auto 10px; }
.rc-score-ring { width: 100%; height: 100%; transform: rotate(-90deg); }
.rc-ring-bg { fill: none; stroke: rgba(31,41,55,.08); stroke-width: 11; }
.rc-ring-fill {
    fill: none; stroke-width: 11; stroke-linecap: round;
    transition: stroke .3s ease;
}
.rc-ring-fill.gruen { stroke: var(--ok); }
.rc-ring-fill.gelb { stroke: var(--warn); }
.rc-ring-fill.rot { stroke: var(--bad); }
.rc-score-center {
    position: absolute; inset: 0; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
}
.rc-score-num { font-size: 44px; font-weight: 900; line-height: 1; color: var(--ink); }
.rc-score-num.gruen { color: var(--ok); }
.rc-score-num.gelb { color: var(--warn); }
.rc-score-num.rot { color: var(--bad); }
.rc-score-max { font-size: 12px; color: var(--muted); font-weight: 600; margin-top: 4px; }
.rc-score-label { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .6px; color: var(--gold-dark); margin-bottom: 8px; }
.rc-score-verdict { font-size: 16.5px; font-weight: 700; color: var(--ink); margin: 0 0 14px; line-height: 1.45; }

/* News-Abo (Riester-Radar) */
.rc-news-card {
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 20px; margin: 14px 0; box-shadow: 0 4px 20px rgba(31,41,55,.05);
}
.rc-news-card.primary {
    border: 1.5px solid var(--gold);
    background: linear-gradient(160deg, rgba(18,150,126,.14), rgba(18,150,126,.02)), #fff;
    box-shadow: 0 10px 30px rgba(11,110,91,.15);
}
.rc-news-head { font-weight: 800; font-size: 15.5px; color: var(--ink); display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.rc-news-head i { color: var(--gold-dark); }
.rc-news-text { font-size: 13.5px; color: var(--muted); margin: 0 0 14px; line-height: 1.55; }
.rc-news-form { display: flex; gap: 10px; }
.rc-news-form input {
    flex: 1; padding: 13px 14px; border-radius: 10px; border: 1.5px solid var(--border);
    background: #fff; color: var(--ink); font-size: 15px; font-family: inherit; min-width: 0;
}
.rc-news-form input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(18,150,126,.15); }
.rc-news-form .rc-btn { width: auto; padding: 13px 20px; flex-shrink: 0; }
.rc-news-privacy { font-size: 11px; color: #9aa3af; margin: 10px 0 0; line-height: 1.5; }
.rc-news-privacy a { color: var(--gold-dark); }
.rc-news-success { display: flex; align-items: center; gap: 8px; color: var(--ok); font-weight: 700; font-size: 14.5px; }
@media (max-width: 480px) {
    .rc-news-form { flex-direction: column; }
    .rc-news-form .rc-btn { width: 100%; }
}

/* Lead-Angebot (kombinierter Nutzen: PDF + Soll-Ist-Check + 2027-Update) */
.rc-lead-offer {
    background: linear-gradient(160deg, rgba(18,150,126,.14), rgba(18,150,126,.02)), #fff;
    border: 1.5px solid var(--gold);
    border-radius: var(--radius);
    padding: 18px 20px;
    margin: 14px 0 20px;
    box-shadow: 0 10px 30px rgba(11,110,91,.12);
}
.rc-lead-offer-title {
    font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px;
    color: var(--gold-dark); margin: 0 0 14px; display: flex; align-items: center; gap: 8px;
}
.rc-lead-benefit { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.rc-lead-benefit:last-child { margin-bottom: 0; }
.rc-lead-benefit i { color: var(--ok); font-size: 16px; margin-top: 2px; flex-shrink: 0; width: 18px; text-align: center; }
.rc-lead-benefit-title { font-weight: 700; color: var(--ink); font-size: 14px; margin: 0 0 2px; }
.rc-lead-benefit-text { font-size: 12.5px; color: var(--muted); margin: 0; line-height: 1.5; }

/* Sticky-CTA (AV-Vergleichsseite): dezente Leiste am unteren Rand */
.rc-sticky-cta {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    border-top: 1.5px solid var(--gold);
    box-shadow: 0 -8px 30px rgba(31,41,55,.12);
    transform: translateY(110%);
    transition: transform .3s ease;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
}
.rc-sticky-cta.visible { transform: translateY(0); }
.rc-sticky-cta-inner {
    max-width: 640px; margin: 0 auto;
    display: flex; align-items: center; gap: 12px;
}
.rc-sticky-cta-text {
    flex: 1; min-width: 0; font-size: 13.5px; font-weight: 700; color: var(--ink);
    line-height: 1.35;
}
.rc-sticky-cta .rc-btn { width: auto; padding: 12px 18px; font-size: 14px; flex-shrink: 0; margin: 0; }
@media (max-width: 480px) {
    .rc-sticky-cta-text { font-size: 12.5px; }
    .rc-sticky-cta .rc-btn { padding: 11px 14px; font-size: 13px; }
}

/* AV-Depot-Vergleich */
.rc-av-legal {
    display: flex; gap: 10px; align-items: flex-start;
    background: rgba(107,114,128,.08); border: 1px solid var(--border);
    border-radius: 12px; padding: 12px 14px; margin-bottom: 16px;
    font-size: 12.5px; color: var(--muted); line-height: 1.5;
}
.rc-av-legal i { color: var(--gold-dark); margin-top: 2px; flex-shrink: 0; }
.rc-av-urteil {
    border-radius: var(--radius); padding: 18px 20px; margin-bottom: 14px;
    border: 1.5px solid var(--border); background: var(--card);
}
.rc-av-urteil.tendenz_riester { border-color: rgba(22,163,74,.4); background: rgba(22,163,74,.07); }
.rc-av-urteil.tendenz_av { border-color: rgba(22,163,74,.4); background: rgba(22,163,74,.07); }
.rc-av-urteil.tendenz_offen { border-color: var(--gold); background: rgba(18,150,126,.08); }
.rc-av-urteil-badge {
    display: inline-flex; font-size: 11px; font-weight: 800; text-transform: uppercase;
    letter-spacing: .4px; padding: 4px 10px; border-radius: 999px; margin-bottom: 8px;
    background: rgba(107,114,128,.12); color: #4b5563;
}
.rc-av-urteil.tendenz_riester .rc-av-urteil-badge,
.rc-av-urteil.tendenz_av .rc-av-urteil-badge { background: rgba(22,163,74,.14); color: #15803d; }
.rc-av-urteil.tendenz_offen .rc-av-urteil-badge { background: rgba(18,150,126,.18); color: var(--gold-dark); }
.rc-av-urteil-text { margin: 0; font-size: 15px; font-weight: 600; color: var(--ink); line-height: 1.5; }
.rc-av-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 14px; }
.rc-av-col {
    background: var(--card); border: 1px solid var(--border); border-radius: 14px;
    padding: 16px; box-shadow: 0 4px 16px rgba(31,41,55,.04);
}
.rc-av-col.tendency-lead { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold) inset; }
.rc-av-col-title { font-weight: 800; font-size: 14px; color: var(--ink); margin-bottom: 12px; }
.rc-av-row { display: flex; justify-content: space-between; gap: 8px; font-size: 12.5px; margin-bottom: 8px; }
.rc-av-row span { color: var(--muted); }
.rc-av-row strong { color: var(--ink); text-align: right; }
.rc-av-diff {
    text-align: center; font-size: 13px; color: var(--muted); margin: 0 0 14px;
    padding: 10px; background: rgba(18,150,126,.08); border-radius: 10px;
}
.rc-av-diff strong { color: var(--gold-dark); }

.rc-av-teaser {
    margin: 14px 0 16px;
    padding: 20px 18px;
    border-radius: var(--radius);
    border: 1.5px solid var(--gold);
    background: linear-gradient(160deg, rgba(18,150,126,.16), rgba(255,255,255,.95));
    box-shadow: 0 10px 28px rgba(11,110,91,.14);
}
.rc-av-teaser.winner-riester,
.rc-av-teaser.winner-av {
    border-color: rgba(22,163,74,.35);
    background: linear-gradient(165deg, rgba(22,163,74,.08), rgba(255,255,255,.96));
    box-shadow: 0 10px 28px rgba(22,163,74,.1);
}
.rc-av-teaser-badge {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .35px;
    color: var(--gold-dark); margin-bottom: 8px;
}
.rc-av-teaser.winner-riester .rc-av-teaser-badge,
.rc-av-teaser.winner-av .rc-av-teaser-badge { color: #15803d; }
.rc-av-teaser-title { margin: 0 0 6px; font-size: 18px; font-weight: 800; color: var(--ink); }
.rc-av-teaser-text { margin: 0 0 12px; font-size: 13.5px; color: var(--muted); line-height: 1.5; }
.rc-av-teaser-charts { display: grid; gap: 12px; margin-bottom: 14px; }
.rc-av-teaser .rc-btn-primary { width: 100%; }

.rc-av-winner {
    border-radius: 12px; padding: 14px 14px 12px; margin-bottom: 14px;
    background: rgba(22,163,74,.08); border: 1px solid rgba(22,163,74,.22);
}
.rc-av-winner-kicker {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .3px;
    color: #15803d; margin-bottom: 6px;
}
.rc-av-winner-title { font-size: 16px; font-weight: 800; color: #166534; margin-bottom: 4px; }
.rc-av-winner-text { margin: 0; font-size: 13.5px; color: #14532d; line-height: 1.45; font-weight: 600; }
.rc-av-teaser.winner-offen .rc-av-winner {
    background: rgba(18,150,126,.1); border-color: var(--border);
}
.rc-av-teaser.winner-offen .rc-av-winner-kicker,
.rc-av-teaser.winner-offen .rc-av-winner-title { color: var(--gold-dark); }
.rc-av-teaser.winner-offen .rc-av-winner-text { color: var(--ink); }

.rc-av-charts { display: grid; gap: 14px; margin: 0 0 14px; }
.rc-vchart {
    background: var(--card); border: 1px solid var(--border); border-radius: 14px;
    padding: 16px 14px 12px; box-shadow: 0 4px 16px rgba(31,41,55,.04);
}
.rc-vchart-title {
    font-size: 13px; font-weight: 800; color: var(--ink); margin-bottom: 12px; text-align: center;
}
.rc-vchart-plot {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: end;
    min-height: 160px; padding: 0 8px;
}
.rc-vchart-col {
    display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
    min-width: 0;
}
.rc-vchart-amount {
    font-size: 13px; font-weight: 800; color: var(--ink); margin-bottom: 8px; text-align: center;
    line-height: 1.2;
}
.rc-vchart-rail {
    width: 100%; max-width: 72px; height: 120px;
    display: flex; align-items: flex-end; justify-content: center;
    background: linear-gradient(180deg, rgba(11,110,91,.06), rgba(11,110,91,.02));
    border-radius: 10px 10px 4px 4px;
    border: 1px solid rgba(11,110,91,.12);
    border-bottom: none;
    padding: 0 10px;
    box-sizing: border-box;
}
.rc-vchart-bar {
    width: 100%; border-radius: 8px 8px 2px 2px; height: 0;
    transition: height .95s cubic-bezier(.22,1,.36,1);
}
.rc-vchart-bar.riester { background: linear-gradient(180deg, #6B7280, #374151); opacity: .45; }
.rc-vchart-bar.av { background: linear-gradient(180deg, var(--gold-light), var(--gold-dark)); opacity: .45; }
.rc-vchart-bar.lead {
    opacity: 1;
    background: linear-gradient(180deg, #4ADE80, #16A34A);
    box-shadow: 0 0 0 1px rgba(22,163,74,.2), 0 8px 18px rgba(22,163,74,.18);
}
.rc-vchart-col.is-winner .rc-vchart-amount { color: #166534; }
.rc-vchart-col.is-runner .rc-vchart-amount { color: var(--muted); }
.rc-vchart-name {
    margin-top: 8px; font-size: 12px; font-weight: 700; color: var(--muted); text-align: center;
}
.rc-vchart-col.is-winner .rc-vchart-name { color: #166534; }
.rc-vchart-badge {
    margin-top: 4px; font-size: 10px; font-weight: 800; text-transform: uppercase;
    letter-spacing: .3px; color: #15803d; min-height: 14px;
}
.rc-vchart-badge.muted { color: transparent; }
.rc-vchart-baseline {
    height: 2px; margin: 0 4px 4px; border-radius: 2px;
    background: rgba(31,41,55,.18);
}

.rc-av-leadline { display: grid; gap: 8px; margin: 0 0 16px; }
.rc-av-lead-item {
    display: flex; justify-content: space-between; gap: 12px; align-items: baseline;
    background: rgba(255,255,255,.9); border: 1px solid var(--border); border-radius: 12px; padding: 12px 14px;
}
.rc-av-lead-item.has-win {
    background: rgba(22,163,74,.07); border-color: rgba(22,163,74,.22);
}
.rc-av-lead-item span { font-size: 12px; color: var(--muted); font-weight: 600; flex-shrink: 0; }
.rc-av-lead-item strong { font-size: 13.5px; color: var(--ink); text-align: right; line-height: 1.35; }
.rc-av-lead-item.has-win strong { color: #166534; }

.rc-av-col.is-winner-col {
    border-color: rgba(22,163,74,.35);
    background: rgba(22,163,74,.05);
    box-shadow: 0 0 0 1px rgba(22,163,74,.12) inset;
}
.rc-av-col-win {
    display: inline-block; margin-left: 6px; font-size: 10px; font-weight: 800;
    text-transform: uppercase; letter-spacing: .3px; color: #15803d;
    background: rgba(22,163,74,.12); padding: 2px 7px; border-radius: 999px; vertical-align: middle;
}

@media (max-width: 520px) { .rc-av-grid { grid-template-columns: 1fr; } }

@media (max-width: 480px) {
    .rc-shell { padding: 12px 14px 48px; }
    .rc-header { gap: 10px; padding-bottom: 14px; }
    .rc-mark { width: 42px; height: 42px; font-size: 16px; border-radius: 12px; }
    .rc-brand-name { font-size: 17px; }
    .rc-brand-tag { font-size: 11px; }
    .rc-row2 { grid-template-columns: 1fr; }
    .rc-trust { grid-template-columns: 1fr; }
    .rc-toggle-yesno { flex-direction: column; }
    .rc-toggle-yesno button { width: 100%; }
    h1.rc-h1 { font-size: 24px; }
    .rc-h2 { font-size: 20px; }
    .rc-btn { min-height: 48px; font-size: 15px; }
    .rc-av-teaser { padding: 16px 14px; }
    .rc-av-teaser-title { font-size: 16px; }
    .rc-vchart-rail { height: 100px; max-width: 64px; }
    .rc-vchart-plot { min-height: 140px; gap: 10px; }
    .rc-av-lead-item { flex-direction: column; align-items: flex-start; }
    .rc-av-lead-item strong { text-align: left; }
    .rc-score-card { padding: 18px 14px; }
    .rc-news-form { flex-direction: column; }
    .rc-news-form .rc-btn { width: 100%; }
}


/* NeoRiester: Zahlen in Mono */
.rc-score-num,
.rc-hero-num,
.rc-bar-label span,
.rc-kosten-chip .kv-num,
.rc-av-row strong,
.rc-sticky-cta-text,
.rc-av-winner-title,
.rc-lead-benefit-title {
    font-variant-numeric: tabular-nums;
}
.rc-score-num,
.rc-hero-num,
.rc-kosten-chip .kv-num,
.rc-bar-label span,
.rc-av-row strong {
    font-family: var(--mono);
}
.rc-score-num { font-weight: 600; }
.rc-hero-num { font-weight: 600; letter-spacing: -.02em; }
