/* Lokal gehostete Schriften – kein externer Abruf von Google Fonts, keine IP-Übertragung an Google. */
    @font-face { font-family: 'Inter'; font-style: normal; font-weight: 300 700; font-display: swap;
      src: url('fonts/inter-n-lat.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; }
    @font-face { font-family: 'Inter'; font-style: normal; font-weight: 300 700; font-display: swap;
      src: url('fonts/inter-n-latext.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: 'Playfair Display'; font-style: italic; font-weight: 700; font-display: swap;
      src: url('fonts/playfairdisplay-i-lat.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; }
    @font-face { font-family: 'Playfair Display'; font-style: italic; font-weight: 700; font-display: swap;
      src: url('fonts/playfairdisplay-i-latext.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: 'Playfair Display'; font-style: normal; font-weight: 700; font-display: swap;
      src: url('fonts/playfairdisplay-n-lat.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; }
    @font-face { font-family: 'Playfair Display'; font-style: normal; font-weight: 700; font-display: swap;
      src: url('fonts/playfairdisplay-n-latext.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; }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --navy: #0C1B33; --navy2: #122040;
      --gold: #C9A84C; --gold2: #e0bf6e;
      --white: #FFFFFF;
      --text-light: rgba(255,255,255,0.72);
      --text-muted: rgba(255,255,255,0.45);
    }
    html { scroll-behavior: smooth; overflow-x: hidden; }
    body { font-family: 'Inter', sans-serif; background: var(--navy); color: var(--white); overflow-x: hidden; }

    /* NAV */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 20px 60px;
      background: rgba(12,27,51,0.88); backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(201,168,76,0.15);
    }
    .logo { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--white); }
    .logo span { color: var(--gold); }
    nav ul { display: flex; gap: 36px; list-style: none; }
    nav ul a { text-decoration: none; color: var(--text-light); font-size: 14px; font-weight: 500; transition: color .2s; }
    nav ul a:hover { color: var(--gold); }
    .nav-cta { background: var(--gold); color: var(--navy) !important; padding: 10px 22px; border-radius: 6px; font-weight: 600 !important; }
    .nav-cta:hover { background: var(--gold2) !important; }
    .nav-toggle { display: none; }
    .nav-burger { display: none; }

    /* HERO */
    #hero { min-height: 100vh; display: flex; align-items: stretch; padding: 72px 60px 0; position: relative; overflow: hidden; }
    #hero::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse 60% 70% at 70% 50%, rgba(201,168,76,0.07) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: stretch; max-width: 1200px; margin: 0 auto; width: 100%; }
    /* Beide Hero-Spalten füllen die volle Höhe, Inhalt bleibt vertikal zentriert → Quiz-Kasten schließt oben an die Nav und unten an die nächste Section an */
    .hero-grid > div { display: flex; flex-direction: column; justify-content: center; }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3);
      color: var(--gold); font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
      text-transform: uppercase; padding: 6px 14px; border-radius: 100px; margin-bottom: 28px;
    }
    .hero-eyebrow::before { content: '◆'; font-size: 8px; }
    h1 { font-family: 'Playfair Display', serif; font-size: clamp(40px, 5vw, 62px); line-height: 1.1; margin-bottom: 24px; }
    h1 em { font-style: italic; color: var(--gold); }
    .hero-sub { font-size: 18px; line-height: 1.7; color: var(--text-light); margin-bottom: 40px; max-width: 480px; }
    .hero-sub strong { color: var(--white); }
    .cta-group { display: flex; gap: 16px; flex-wrap: wrap; }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--gold); color: var(--navy); font-weight: 700; font-size: 15px;
      padding: 16px 32px; border-radius: 8px; text-decoration: none; transition: all .25s;
      box-shadow: 0 8px 32px rgba(201,168,76,0.35);
    }
    .btn-primary:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(201,168,76,0.45); }
    .btn-ghost {
      display: inline-flex; align-items: center; gap: 8px;
      color: var(--text-light); font-size: 15px; padding: 16px 24px; border-radius: 8px;
      text-decoration: none; border: 1px solid rgba(255,255,255,0.15); transition: all .2s;
    }
    .btn-ghost:hover { color: var(--white); border-color: rgba(255,255,255,0.35); }
    .hero-card {
      background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.2);
      border-radius: 20px; padding: 36px; backdrop-filter: blur(12px);
    }
    .hero-card-label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
    .calc-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
    .calc-row:last-child { border-bottom: none; }
    .calc-label { font-size: 13px; color: var(--text-light); }
    .calc-value { font-size: 16px; font-weight: 600; }
    .calc-value.green { color: #4ade80; }
    .calc-value.red { color: #f87171; }
    .calc-total { margin-top: 20px; padding: 18px 20px; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3); border-radius: 12px; display: flex; justify-content: space-between; align-items: center; }
    .calc-total-label { font-size: 13px; font-weight: 600; color: var(--text-light); }
    .calc-total-value { font-size: 22px; font-weight: 700; color: var(--gold); }
    .card-note { font-size: 11px; color: var(--text-muted); margin-top: 14px; text-align: center; }
    .badge-row { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 40px; }
    .badge { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-light); }
    .badge-icon { color: var(--gold); }

    /* HERO RECHNER */
    .rk-card { padding: 28px; }
    .rk-summary { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 14px; margin-bottom: 18px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .rk-sum-item { display: flex; flex-direction: column; gap: 2px; }
    .rk-sum-item span { font-size: 10px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-muted); }
    .rk-sum-item b { font-size: 15px; font-weight: 700; color: var(--white); }
    .rk-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 12px; }
    .rk-field { display: flex; flex-direction: column; gap: 4px; }
    .rk-field span { font-size: 11px; color: var(--text-light); }
    /* Info-Tooltip (CSS-only, Hover + Tap via focus) */
    .rk-tip { position: relative; display: inline-flex; align-items: center; justify-content: center;
      width: 14px; height: 14px; margin-left: 5px; border-radius: 50%;
      border: 1px solid rgba(201,168,76,0.5); color: var(--gold); font-size: 9px; font-weight: 700;
      cursor: help; line-height: 1; vertical-align: middle; user-select: none; }
    .rk-tip::after {
      content: attr(data-tip);
      position: absolute; bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(4px);
      width: 220px; max-width: 66vw; background: #0a1628; color: var(--text-light);
      border: 1px solid rgba(201,168,76,0.35); border-radius: 8px; padding: 10px 12px;
      font-size: 11px; font-weight: 400; line-height: 1.5; text-transform: none; letter-spacing: 0;
      box-shadow: 0 12px 32px rgba(0,0,0,0.45); z-index: 20;
      opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s; }
    .rk-tip:hover::after, .rk-tip:focus::after { opacity: 1; transform: translateX(-50%) translateY(0); }
    .rk-tip:focus { outline: none; }
    .rk-field input, .rk-field select { width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; color: var(--white); font-size: 13px; padding: 8px 10px; font-family: 'Inter', sans-serif; }
    .rk-field input:focus, .rk-field select:focus { outline: none; border-color: var(--gold); }
    .rk-field select { cursor: pointer; }
    .rk-field select option { background: #122040; color: var(--white); }
    .rk-field-wide { grid-column: 1 / -1; }
    .rk-hint { font-size: 11px; color: var(--text-muted); line-height: 1.5; margin-top: 10px; }
    .rk-puffer { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 12px; margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.08); }
    .rk-puffer-title { grid-column: 1 / -1; font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold); }
    .rk-flow { margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.08); }
    .rk-flow-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 8px 0; font-size: 13px; color: var(--text-light); border-bottom: 1px solid rgba(255,255,255,0.05); }
    .rk-flow-row:last-child { border-bottom: none; }
    .rk-flow-row b { font-weight: 700; color: var(--white); white-space: nowrap; }
    .rk-totals { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }
    .rk-total { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 14px 10px; text-align: center; }
    .rk-total span { display: block; font-size: 11px; color: var(--text-muted); margin-bottom: 6px; }
    .rk-total b { font-size: 20px; font-weight: 700; color: var(--white); }
    .rk-total small { display: block; font-size: 11px; color: var(--text-muted); margin-top: 2px; }
    .rk-total.primary { background: rgba(201,168,76,0.12); border-color: rgba(201,168,76,0.4); }
    .rk-total.primary b { color: var(--gold); font-size: 24px; }
    .rk-scenarios { margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.08); }
    .rk-scen-title { font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
    .rk-scen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .rk-scen-grid div { text-align: center; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; padding: 8px 4px; }
    .rk-scen-grid span { display: block; font-size: 11px; color: var(--text-muted); margin-bottom: 2px; }
    .rk-scen-grid b { font-size: 13px; font-weight: 700; color: var(--white); }
    .rk-note { font-size: 11px; color: var(--text-muted); line-height: 1.55; margin-top: 16px; }
    /* Aufklapper (Ebene 2: Steuerliche Annahmen / Rechenweg) */
    .rk-acc { margin-top: 14px; border-top: 1px solid rgba(255,255,255,0.08); }
    .rk-acc summary { cursor: pointer; list-style: none; display: flex; align-items: center; gap: 8px;
      font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
      color: var(--gold); padding: 14px 0 4px; }
    .rk-acc summary::-webkit-details-marker { display: none; }
    .rk-acc summary::before { content: '▸'; font-size: 10px; transition: transform .2s; }
    .rk-acc[open] summary::before { transform: rotate(90deg); }
    .rk-acc-body { padding: 8px 0 4px; }
    /* Ergebnis-Stufen (Ebene 1: einfach) */
    .rk-results { margin-top: 18px; padding-top: 4px; border-top: 1px solid rgba(255,255,255,0.08); }
    .rk-result { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .rk-result-label b { display: block; font-size: 14px; font-weight: 600; color: var(--white); }
    .rk-result-label span { font-size: 11px; color: var(--text-muted); }
    .rk-result-val { font-size: 16px; font-weight: 700; white-space: nowrap; }
    /* Aufschlüsselung im Detail-Aufklapper */
    .rk-break { display: flex; justify-content: space-between; gap: 12px; font-size: 12px; color: var(--text-light); padding: 5px 0; }
    .rk-break b { font-weight: 600; white-space: nowrap; }
    .rk-break.sum { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 4px; padding-top: 8px; font-weight: 700; color: var(--white); }
    .rk-break.sum b { color: var(--white); }

    /* SECTIONS */
    section { padding: 100px 60px; }
    .section-inner { max-width: 1200px; margin: 0 auto; }
    .section-tag { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
    h2 { font-family: 'Playfair Display', serif; font-size: clamp(32px, 4vw, 50px); line-height: 1.15; margin-bottom: 20px; }
    h2 em { font-style: italic; color: var(--gold); }
    .section-lead { font-size: 18px; color: var(--text-light); line-height: 1.7; max-width: 580px; margin-bottom: 60px; }

    /* HOW */
    #how { background: rgba(255,255,255,0.02); border-top: 1px solid rgba(255,255,255,0.05); }
    .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 20px; }
    .step { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); padding: 40px 36px; transition: all .3s; }
    .step:hover { background: rgba(201,168,76,0.06); border-color: rgba(201,168,76,0.25); }
    .step-num { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 700; color: rgba(201,168,76,0.2); line-height: 1; margin-bottom: 20px; }
    .step-icon { font-size: 28px; margin-bottom: 16px; }
    .step h3 { font-size: 20px; font-weight: 600; margin-bottom: 12px; }
    .step p { font-size: 15px; color: var(--text-light); line-height: 1.7; }

    /* WHY */
    #why { background: var(--navy); }
    .why-grid { display: grid; grid-template-columns: 1fr; gap: 80px; align-items: start; }
    .why-visual { background: rgba(255,255,255,0.03); border: 1px solid rgba(201,168,76,0.15); border-radius: 20px; padding: 40px; }
    .why-visual-title { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 28px; }
    .flow-item { display: flex; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .flow-item:last-child { border-bottom: none; }
    .flow-icon-wrap { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
    .flow-icon-wrap.red { background: rgba(248,113,113,0.12); }
    .flow-icon-wrap.green { background: rgba(74,222,128,0.12); }
    .flow-icon-wrap.gold { background: rgba(201,168,76,0.12); }
    .flow-text { flex: 1; }
    .flow-title-txt { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
    .flow-desc { font-size: 12px; color: var(--text-muted); }
    .flow-amount { font-size: 16px; font-weight: 700; }
    .flow-amount.red { color: #f87171; }
    .flow-amount.green { color: #4ade80; }
    .flow-amount.gold { color: var(--gold); }
    .flow-result { margin-top: 20px; padding: 18px; background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.25); border-radius: 12px; display: flex; justify-content: space-between; align-items: center; }
    .flow-result-label { font-size: 14px; font-weight: 600; }
    .flow-result-value { font-size: 24px; font-weight: 700; color: var(--gold); }
    .why-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; padding-top: 24px; }
    .why-point { display: flex; gap: 20px; }
    .why-point-num { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(201,168,76,0.4); color: var(--gold); font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
    .why-point h4 { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
    .why-point p { font-size: 14px; color: var(--text-light); line-height: 1.65; }

    /* STATS */
    #numbers { background: linear-gradient(180deg, rgba(201,168,76,0) 0%, rgba(201,168,76,0.05) 22%, rgba(201,168,76,0.05) 78%, rgba(201,168,76,0) 100%); padding: 60px; }
    .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
    .stat-item { padding: 40px; text-align: center; border-right: 1px solid rgba(255,255,255,0.07); }
    .stat-item:last-child { border-right: none; }
    .stat-num { font-family: 'Playfair Display', serif; font-size: 46px; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 8px; }
    /* Kompakte Text-Kacheln (statt großer Kennzahl) – beide Zeilen einheitlich */
    .stats-grid.compact .stat-num,
    .stats-grid.compact .stat-label {
      font-family: 'Playfair Display', serif;
      font-size: 20px; font-weight: 700; color: var(--gold);
      line-height: 1.35; margin: 0;
    }
    .stat-label { font-size: 13px; color: var(--text-light); line-height: 1.5; }

    /* FOR WHOM */
    #forwho { background: var(--navy); }
    .fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 60px; }
    .fit-card { border-radius: 16px; padding: 32px; }
    .fit-card.yes { background: rgba(74,222,128,0.05); border: 1px solid rgba(74,222,128,0.2); }
    .fit-card.no { background: rgba(248,113,113,0.04); border: 1px solid rgba(248,113,113,0.15); }
    .fit-header { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
    .fit-icon { font-size: 22px; }
    .fit-title { font-size: 17px; font-weight: 700; }
    .fit-title.yes { color: #4ade80; }
    .fit-title.no { color: #f87171; }
    .fit-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .fit-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-light); line-height: 1.5; }
    .fit-list li::before { content: '–'; color: var(--text-muted); flex-shrink: 0; }

    /* ═══ QUIZ ═══ */
    #quiz {
      position: relative;
      isolation: isolate;
      padding: 120px 60px;
    }
    /* Panel-Hintergrund auf Pseudo-Element, Ränder laufen weich in die Umgebungsfarbe aus (alle 4 Seiten) */
    #quiz::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: -1;
      background: linear-gradient(135deg, var(--navy2) 0%, #080f1e 100%);
      -webkit-mask:
        linear-gradient(to bottom, transparent 0, #000 9%, #000 91%, transparent 100%),
        linear-gradient(to right, transparent 0, #000 9%, #000 91%, transparent 100%);
      -webkit-mask-composite: source-in;
      mask:
        linear-gradient(to bottom, transparent 0, #000 9%, #000 91%, transparent 100%),
        linear-gradient(to right, transparent 0, #000 9%, #000 91%, transparent 100%);
      mask-composite: intersect;
      pointer-events: none;
    }
    #quiz h2 { text-align: center; }
    #quiz .section-lead { text-align: center; margin: 0 auto 56px; }
    .quiz-wrap {
      max-width: 620px; margin: 0 auto;
    }

    /* Progress */
    .quiz-progress-outer {
      height: 3px; background: rgba(255,255,255,0.08); border-radius: 99px; margin-bottom: 12px;
    }
    .quiz-progress-inner {
      height: 100%; background: var(--gold); border-radius: 99px;
      transition: width .4s ease;
    }
    .quiz-step-label {
      font-size: 12px; color: var(--text-muted); text-align: right; margin-bottom: 36px;
    }

    /* Question card */
    .quiz-card {
      background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.09);
      border-radius: 20px; padding: 44px;
      transition: opacity .3s, transform .3s;
    }
    .quiz-card.fade-out { opacity: 0; transform: translateX(-20px); pointer-events: none; }
    .quiz-card.fade-in { opacity: 0; transform: translateX(20px); }
    .quiz-q { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; margin-bottom: 8px; }
    .quiz-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 32px; }

    /* Answer buttons */
    .quiz-options { display: flex; flex-direction: column; gap: 12px; }
    .quiz-option {
      display: flex; align-items: center; gap: 14px;
      padding: 16px 20px; border-radius: 12px; cursor: pointer;
      border: 1px solid rgba(255,255,255,0.1);
      background: rgba(255,255,255,0.02);
      transition: all .2s; user-select: none;
    }
    .quiz-option:hover { border-color: rgba(201,168,76,0.4); background: rgba(201,168,76,0.05); }
    .quiz-option.selected {
      border-color: var(--gold); background: rgba(201,168,76,0.1);
    }
    .quiz-option.selected .opt-check { background: var(--gold); border-color: var(--gold); color: var(--navy); }
    .opt-check {
      width: 22px; height: 22px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.2);
      display: flex; align-items: center; justify-content: center;
      font-size: 11px; font-weight: 700; flex-shrink: 0; transition: all .2s;
    }
    .opt-icon { font-size: 20px; width: 28px; text-align: center; flex-shrink: 0; }
    .opt-label { font-size: 15px; font-weight: 500; flex: 1; }

    /* Custom input for "Anderes" */
    .custom-input {
      width: 100%; background: transparent; border: none; outline: none;
      color: var(--white); font-size: 15px; font-family: 'Inter', sans-serif;
      margin-top: 8px; padding: 8px 0;
      border-bottom: 1px solid rgba(201,168,76,0.4);
    }
    .custom-input::placeholder { color: var(--text-muted); }

    /* Next button */
    .quiz-next {
      display: flex; align-items: center; justify-content: center; gap: 8px;
      width: 100%; margin-top: 28px; padding: 16px;
      background: var(--gold); color: var(--navy);
      font-size: 15px; font-weight: 700; border: none; border-radius: 10px;
      cursor: pointer; transition: all .25s;
      opacity: 0; pointer-events: none; transform: translateY(6px);
    }
    .quiz-next.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
    .quiz-next:hover { background: var(--gold2); transform: translateY(-1px); }
    .quiz-back {
      display: none; width: 100%; margin-top: 12px; padding: 12px;
      background: transparent; border: none; color: var(--text-muted);
      font-size: 14px; font-weight: 500; cursor: pointer; font-family: 'Inter', sans-serif;
      transition: color .2s;
    }
    .quiz-back:hover { color: var(--text-light); }
    .quiz-back.visible { display: block; }

    /* Result card */
    .quiz-result {
      background: rgba(255,255,255,0.03); border: 1px solid rgba(201,168,76,0.25);
      border-radius: 20px; padding: 44px;
      display: none;
    }
    .quiz-result.show { display: block; animation: fadeUp .4s ease; }
    @keyframes fadeUp { from { opacity:0; transform: translateY(16px); } to { opacity:1; transform: translateY(0); } }
    @keyframes quizNudge { 0%,100%{transform:translateX(0)} 20%{transform:translateX(-7px)} 60%{transform:translateX(7px)} 80%{transform:translateX(-4px)} }
    .quiz-nudge { animation: quizNudge .32s ease; }
    .result-tag { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
    .result-headline { font-family: 'Playfair Display', serif; font-size: 22px; margin-bottom: 8px; }
    .result-box {
      margin: 28px 0;
      padding: 28px; background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.3);
      border-radius: 14px; text-align: center;
    }
    .result-box-label { font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
    .result-big { font-family: 'Playfair Display', serif; font-size: 52px; font-weight: 700; color: var(--gold); line-height: 1; }
    .result-big-unit { font-size: 18px; color: var(--text-light); margin-top: 4px; }
    .result-note { font-size: 13px; color: var(--text-light); line-height: 1.65; margin-bottom: 28px; }
    .result-note strong { color: var(--white); }

    /* Contact form */
    .result-divider { font-size: 14px; font-weight: 600; color: var(--text-muted); text-align: center; margin: 28px 0; position: relative; }
    .result-divider::before, .result-divider::after { content: ''; position: absolute; top: 50%; width: 38%; height: 1px; background: rgba(255,255,255,0.08); }
    .result-divider::before { left: 0; }
    .result-divider::after { right: 0; }

    .cta-calendly {
      display: flex; align-items: center; justify-content: center; gap: 10px;
      width: 100%; padding: 18px; border-radius: 10px;
      background: var(--gold); color: var(--navy);
      font-size: 16px; font-weight: 700; text-decoration: none;
      transition: all .25s; box-shadow: 0 8px 32px rgba(201,168,76,0.3);
      margin-bottom: 16px;
    }
    .cta-calendly:hover { background: var(--gold2); transform: translateY(-2px); }

    .callback-toggle {
      display: flex; align-items: center; justify-content: center; gap: 8px;
      width: 100%; padding: 16px; border-radius: 10px; cursor: pointer;
      color: var(--text-light); font-size: 14px; font-weight: 500;
      border: 1px solid rgba(255,255,255,0.12); background: transparent;
      transition: all .2s;
    }
    .callback-toggle:hover { border-color: rgba(255,255,255,0.3); color: var(--white); }

    .callback-form { margin-top: 20px; display: none; }
    .callback-form.open { display: block; animation: fadeUp .3s ease; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
    .form-field {
      display: flex; flex-direction: column; gap: 6px;
    }
    .form-field label { font-size: 12px; color: var(--text-muted); letter-spacing: 0.04em; }
    .form-field input {
      background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
      border-radius: 8px; padding: 12px 14px;
      color: var(--white); font-size: 14px; font-family: 'Inter', sans-serif;
      outline: none; transition: border-color .2s;
    }
    .form-field input:focus { border-color: rgba(201,168,76,0.5); }
    .form-field input::placeholder { color: var(--text-muted); }
    .phone-group { display: flex; gap: 8px; }
    .phone-group .f_country {
      flex: 0 0 auto; width: auto;
      background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
      border-radius: 8px; padding: 12px 8px;
      color: var(--white); font-size: 14px; font-family: 'Inter', sans-serif;
      outline: none; cursor: pointer; transition: border-color .2s;
    }
    .phone-group .f_country:focus { border-color: rgba(201,168,76,0.5); }
    .phone-group .f_country option { background: #122040; color: var(--white); }
    .phone-group input { flex: 1 1 auto; width: 100%; min-width: 0; }
    .form-submit {
      width: 100%; padding: 15px; margin-top: 8px;
      background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15);
      border-radius: 10px; color: var(--white); font-size: 14px; font-weight: 600;
      cursor: pointer; transition: all .2s; font-family: 'Inter', sans-serif;
    }
    .form-submit:hover { background: rgba(255,255,255,0.12); }
    .form-success { text-align: center; padding: 20px; color: #4ade80; font-size: 15px; display: none; }

    .cta-note { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 16px; }

    /* FOOTER */
    footer { background: linear-gradient(180deg, var(--navy) 0%, #060e1a 60%); padding: 40px 60px; display: flex; justify-content: space-between; align-items: center; }
    .footer-links { display: flex; gap: 28px; }
    .footer-links a { font-size: 13px; color: var(--text-muted); text-decoration: none; transition: color .2s; }
    .footer-links a:hover { color: var(--text-light); }
    .footer-copy { font-size: 12px; color: var(--text-muted); }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      nav { padding: 16px 24px; }
      .nav-burger {
        display: flex; flex-direction: column; justify-content: center; align-items: center;
        gap: 5px; width: 44px; height: 44px; cursor: pointer; z-index: 101;
      }
      .nav-burger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .25s, opacity .2s; }
      nav ul {
        display: none;
        position: absolute; top: 100%; left: 0; right: 0;
        flex-direction: column; gap: 0;
        background: rgba(12,27,51,0.98); backdrop-filter: blur(16px);
        border-bottom: 1px solid rgba(201,168,76,0.15);
        padding: 6px 24px 22px;
      }
      .nav-toggle:checked ~ ul { display: flex; }
      nav ul li { width: 100%; }
      nav ul a { display: block; padding: 15px 2px; font-size: 16px; border-bottom: 1px solid rgba(255,255,255,0.06); }
      .nav-cta { display: block; text-align: center; margin-top: 14px; padding: 15px 22px !important; border-bottom: none !important; }
      .nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
      .nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
      .nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
      #hero { padding: 100px 24px 60px; }
      .hero-grid { grid-template-columns: 1fr; gap: 48px; }
      section { padding: 70px 24px; }
      #quiz { padding: 80px 24px; }
      .steps { grid-template-columns: 1fr; }
      .why-grid { grid-template-columns: 1fr; gap: 48px; }
      .why-points { grid-template-columns: 1fr; gap: 32px; }
      #numbers { padding: 44px 18px; }
      .stats-grid { grid-template-columns: 1fr 1fr; gap: 0; }
      .stat-item { padding: 20px 12px; min-width: 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
      .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.07); }
      .stat-item:nth-last-child(-n+2) { border-bottom: none; }
      .stat-num { font-size: 34px; }
      .stat-num, .stat-label { overflow-wrap: break-word; hyphens: auto; }
      .stats-grid.compact .stat-num,
      .stats-grid.compact .stat-label { font-size: 15.5px; line-height: 1.3; }
      .fit-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      footer { flex-direction: column; gap: 20px; text-align: center; }
    }

/* ═══════════════════════════════════════════════════════════
   MULTI-PAGE ERWEITERUNGEN (rechner.html / guide.html / danke.html)
   ═══════════════════════════════════════════════════════════ */

/* Standalone-Seiten: Inhalt unter der fixierten Nav */
.subpage { padding: 140px 60px 80px; }
.subpage-inner { max-width: 760px; margin: 0 auto; }
.subpage-wide { max-width: 1100px; margin: 0 auto; }
.page-eyebrow { display:inline-flex; align-items:center; gap:8px; background:rgba(201,168,76,0.12);
  border:1px solid rgba(201,168,76,0.3); color:var(--gold); font-size:11px; font-weight:600;
  letter-spacing:0.12em; text-transform:uppercase; padding:6px 14px; border-radius:100px; margin-bottom:24px; }
.page-eyebrow::before { content:'◆'; font-size:8px; }

/* Minimale Nav (Danke-Seite: kein Weg-Klicken, nur Logo) */
.nav-min { justify-content:center; }
.nav-min .logo { font-size:22px; }

/* Feld-Erklärung: ein Satz je Feld, direkt sichtbar (nicht nur Tooltip) */
.rk-field .field-hint { font-size:10.5px; color:var(--text-muted); line-height:1.45; margin-top:2px; }

/* Kurz-Erklärung „Was der Rechner rechnet" */
.calc-intro { background:rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.08);
  border-radius:14px; padding:22px 24px; margin-bottom:28px; }
.calc-intro h3 { font-size:15px; font-weight:700; color:var(--white); margin-bottom:8px; }
.calc-intro p { font-size:14px; color:var(--text-light); line-height:1.65; }
.calc-intro .steps-inline { display:flex; flex-wrap:wrap; gap:8px 18px; margin-top:14px; }
.calc-intro .steps-inline span { font-size:12.5px; color:var(--text-light); display:flex; align-items:center; gap:7px; }
.calc-intro .steps-inline b { color:var(--gold); font-weight:700; }

/* ── Brutto-Netto-Darstellung (emotionaler Einstieg) ── */
.bn { background:linear-gradient(135deg, rgba(255,255,255,0.04), rgba(201,168,76,0.05));
  border:1px solid rgba(201,168,76,0.22); border-radius:20px; padding:34px; margin-bottom:34px; }
.bn h3 { font-family:'Playfair Display',serif; font-size:clamp(22px,2.6vw,28px); margin-bottom:8px; }
.bn h3 em { font-style:italic; color:var(--gold); }
.bn-sub { font-size:14px; color:var(--text-light); line-height:1.6; margin-bottom:24px; max-width:560px; }
.bn-input-row { display:flex; align-items:flex-end; gap:14px; flex-wrap:wrap; margin-bottom:26px; }
.bn-input-row .rk-field { min-width:200px; }
.bn-input-row label span { font-size:12px; color:var(--text-light); }
.bn-input-row input { background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.14);
  border-radius:10px; color:var(--white); font-size:18px; font-weight:700; padding:12px 14px;
  font-family:'Inter',sans-serif; width:220px; }
.bn-input-row input:focus { outline:none; border-color:var(--gold); }
.bn-toggle { display:flex; gap:6px; background:rgba(255,255,255,0.05); border-radius:10px; padding:4px; }
.bn-toggle button { border:none; background:transparent; color:var(--text-light); font-size:12px; font-weight:600;
  padding:9px 14px; border-radius:7px; cursor:pointer; font-family:'Inter',sans-serif; }
.bn-toggle button.active { background:var(--gold); color:var(--navy); }

/* Balken */
.bn-bar { height:54px; border-radius:12px; overflow:hidden; display:flex; margin-bottom:16px;
  border:1px solid rgba(255,255,255,0.1); }
.bn-bar .seg { display:flex; align-items:center; justify-content:center; font-size:13px; font-weight:700;
  color:#fff; transition:width .6s cubic-bezier(.4,0,.2,1); white-space:nowrap; overflow:hidden; }
.bn-bar .seg-net { background:linear-gradient(90deg,#3fa268,#4ade80); color:#06210f; }
.bn-bar .seg-tax { background:linear-gradient(90deg,#b4433f,#f87171); }
.bn-legend { display:flex; gap:26px; flex-wrap:wrap; margin-bottom:18px; }
.bn-legend div { display:flex; flex-direction:column; gap:2px; }
.bn-legend .lg-top { display:flex; align-items:center; gap:8px; font-size:12px; color:var(--text-light); }
.bn-legend .dot { width:11px; height:11px; border-radius:3px; }
.bn-legend .dot.net { background:#4ade80; }
.bn-legend .dot.tax { background:#f87171; }
.bn-legend b { font-size:22px; font-weight:700; }
.bn-legend b.net { color:#4ade80; }
.bn-legend b.tax { color:#f87171; }
.bn-legend small { font-size:11px; color:var(--text-muted); }
.bn-punch { background:rgba(201,168,76,0.1); border:1px solid rgba(201,168,76,0.3); border-radius:12px;
  padding:16px 18px; font-size:14px; line-height:1.6; color:var(--text-light); }
.bn-punch b { color:var(--gold); }
.bn-note { font-size:11px; color:var(--text-muted); line-height:1.5; margin-top:12px; }

/* ── Kontakt-Kasten direkt unter dem Ergebnis ── */
.lead-box { margin-top:30px; background:linear-gradient(135deg, rgba(201,168,76,0.12), rgba(255,255,255,0.03));
  border:1px solid rgba(201,168,76,0.35); border-radius:18px; padding:32px; }
.lead-box h3 { font-family:'Playfair Display',serif; font-size:clamp(21px,2.4vw,26px); margin-bottom:10px; }
.lead-box h3 em { font-style:italic; color:var(--gold); }
.lead-box p.lb-lead { font-size:14.5px; color:var(--text-light); line-height:1.7; margin-bottom:22px; }
.lead-box .form-field { margin-bottom:12px; }
.lead-box .form-field label { font-size:12px; color:var(--text-muted); letter-spacing:0.04em; display:block; margin-bottom:6px; }
.lead-box .form-field input { width:100%; background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.14);
  border-radius:9px; padding:13px 14px; color:var(--white); font-size:14px; font-family:'Inter',sans-serif; outline:none; transition:border-color .2s; }
.lead-box .form-field input:focus { border-color:var(--gold); }
.lead-box .form-field input::placeholder { color:var(--text-muted); }
.consent { display:flex; align-items:flex-start; gap:11px; margin:16px 0 6px; }
.consent input { margin-top:3px; accent-color:var(--gold); width:17px; height:17px; flex-shrink:0; }
.consent label { font-size:12px; color:var(--text-muted); line-height:1.55; cursor:pointer; }
.consent label a { color:var(--gold); text-decoration:underline; }
.lead-submit { width:100%; padding:17px; margin-top:10px; background:var(--gold); color:var(--navy);
  font-size:15px; font-weight:700; border:none; border-radius:10px; cursor:pointer;
  font-family:'Inter',sans-serif; transition:all .25s; box-shadow:0 8px 32px rgba(201,168,76,0.3); }
.lead-submit:hover { background:var(--gold2); transform:translateY(-2px); }
.lead-note { font-size:11.5px; color:var(--text-muted); text-align:center; margin-top:14px; line-height:1.5; }

/* ── Prozess-Schritte mit ehrlicher Stundenzahl (einmal, am Zweifelspunkt) ── */
.proc { background:rgba(255,255,255,0.02); border:1px solid rgba(201,168,76,0.15); border-radius:20px; padding:40px; }
.proc-head { display:flex; align-items:baseline; justify-content:space-between; gap:20px; flex-wrap:wrap; margin-bottom:28px; }
.proc-head h3 { font-family:'Playfair Display',serif; font-size:clamp(22px,2.6vw,30px); }
.proc-head h3 em { font-style:italic; color:var(--gold); }
.proc-total { text-align:right; }
.proc-total b { display:block; font-family:'Playfair Display',serif; font-size:40px; color:var(--gold); line-height:1; }
.proc-total span { font-size:12px; color:var(--text-muted); }
.proc-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:2px; }
.proc-step { background:rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.07); padding:24px 20px; }
.proc-step .ps-num { font-family:'Playfair Display',serif; font-size:30px; color:rgba(201,168,76,0.3); line-height:1; margin-bottom:12px; }
.proc-step h4 { font-size:15px; font-weight:600; margin-bottom:8px; }
.proc-step p { font-size:12.5px; color:var(--text-light); line-height:1.55; margin-bottom:12px; }
.proc-step .ps-time { font-size:12px; font-weight:700; color:var(--gold); display:inline-flex; align-items:center; gap:6px; }
.proc-note { font-size:12px; color:var(--text-muted); margin-top:18px; line-height:1.6; }

/* ── Objekt-Showcase (echte, nachvollziehbare Rechnungen) ── */
.obj-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; margin-top:40px; }
.obj-card { background:rgba(255,255,255,0.03); border:1px solid rgba(201,168,76,0.18); border-radius:18px; overflow:hidden; }
.obj-card .obj-top { padding:24px 26px 18px; border-bottom:1px solid rgba(255,255,255,0.07); }
.obj-badge { display:inline-block; font-size:10px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase;
  color:var(--gold); background:rgba(201,168,76,0.12); border:1px solid rgba(201,168,76,0.3); padding:4px 10px; border-radius:100px; margin-bottom:12px; }
.obj-card h4 { font-family:'Playfair Display',serif; font-size:20px; margin-bottom:4px; }
.obj-card .obj-loc { font-size:12.5px; color:var(--text-muted); }
.obj-rows { padding:18px 26px 22px; }
.obj-row { display:flex; justify-content:space-between; align-items:center; padding:9px 0; font-size:13px;
  color:var(--text-light); border-bottom:1px solid rgba(255,255,255,0.05); }
.obj-row:last-child { border-bottom:none; }
.obj-row b { font-weight:700; color:var(--white); }
.obj-row.hi { margin-top:8px; padding:14px 16px; background:rgba(201,168,76,0.1); border:1px solid rgba(201,168,76,0.3);
  border-radius:10px; font-weight:600; }
.obj-row.hi b { color:var(--gold); font-size:18px; }

/* ── Video-Rahmen (Danke-Seite) ── */
.video-wrap { position:relative; width:100%; padding-top:56.25%; border-radius:16px; overflow:hidden;
  border:1px solid rgba(201,168,76,0.3); background:#000; box-shadow:0 20px 60px rgba(0,0,0,0.5); }
.video-wrap iframe, .video-wrap video { position:absolute; inset:0; width:100%; height:100%; border:none; }
.video-placeholder { position:absolute; inset:0; display:flex; flex-direction:column; align-items:center;
  justify-content:center; gap:14px; background:linear-gradient(135deg,#0a1628,#122040); color:var(--text-light); text-align:center; padding:20px; }
.video-placeholder .vp-play { width:70px; height:70px; border-radius:50%; background:var(--gold); color:var(--navy);
  display:flex; align-items:center; justify-content:center; font-size:26px; }
.video-placeholder small { font-size:12px; color:var(--text-muted); max-width:360px; }

/* ── Danke-Seite ── */
.danke { min-height:100vh; display:flex; align-items:center; justify-content:center; padding:120px 24px 60px; text-align:center; }
.danke-inner { max-width:720px; width:100%; }
.danke-emoji { font-size:56px; line-height:1; margin-bottom:18px; }
.danke h1 { font-family:'Playfair Display',serif; font-size:clamp(30px,4.4vw,46px); margin-bottom:14px; }
.danke h1 em { font-style:italic; color:var(--gold); }
.danke .danke-mail { font-size:17px; color:#4ade80; font-weight:600; margin-bottom:8px; }
.danke .danke-sub { font-size:15px; color:var(--text-light); line-height:1.7; margin-bottom:34px; max-width:560px; margin-left:auto; margin-right:auto; }
.danke .video-cap { font-size:14px; color:var(--text-light); line-height:1.6; margin:26px 0 12px; }
.danke .video-cap b { color:var(--white); }
.danke-next { margin-top:36px; display:flex; flex-direction:column; align-items:center; gap:16px; }
.danke-ebook-dl { display:inline-flex; align-items:center; gap:9px; font-size:13px; color:var(--gold);
  text-decoration:none; border:1px solid rgba(201,168,76,0.35); padding:11px 20px; border-radius:9px; transition:all .2s; }
.danke-ebook-dl:hover { background:rgba(201,168,76,0.1); }
/* E-Book-Sofort-Download über dem Video */
.ebook-dl-wrap { margin:6px 0 32px; }
.ebook-dl-btn { font-size:16px; padding:15px 30px; }
.ebook-dl-hint { font-size:12px; color:var(--text-muted); margin-top:12px; }

@media (max-width: 900px) {
  .subpage { padding:110px 22px 60px; }
  .bn { padding:24px; }
  .proc { padding:28px 22px; }
  .proc-grid { grid-template-columns:1fr 1fr; }
  .obj-grid { grid-template-columns:1fr; }
  .lead-box { padding:24px; }
}
@media (max-width: 560px) {
  .proc-grid { grid-template-columns:1fr; }
}

/* Mobile: kleinere seitliche Ränder → Quiz & Rechner nutzen mehr Breite (größer) */
@media (max-width: 900px) {
  #hero { padding: 96px 0 0; }
  /* Hero-Text bleibt eingerückt, Quiz-Panel füllt volle Breite (randlos) */
  .hero-grid > div:first-child { padding-left: 16px; padding-right: 16px; }
  /* Quiz-Panel schließt unten bündig an die nächste Section an (verschmilzt) */
  #quiz { padding: 60px 14px 30px; }
  .subpage { padding: 100px 12px 60px; }
  .quiz-card { padding: 26px 18px; }
  .quiz-result { padding: 26px 18px; }
  .hero-card { padding: 22px 16px; }
  .rk-card { padding: 20px 15px; }
  .guide-form-card { padding: 26px 18px; }
  .lead-box { padding: 22px 16px; }
  .bn { padding: 22px 15px; }
}

/* E-Book / Ratgeber-Teaser (index.html #ebook) */
.ebook-teaser { display:grid; grid-template-columns:auto 1fr; gap:56px; align-items:center; }
.ebook-cover { width:230px; aspect-ratio:3/4; border-radius:6px 12px 12px 6px; justify-self:center;
  background:linear-gradient(135deg,#122040,#0a1628); border:1px solid rgba(201,168,76,0.3);
  box-shadow:0 24px 60px rgba(0,0,0,0.5), inset 6px 0 0 rgba(201,168,76,0.5);
  padding:28px 24px; display:flex; flex-direction:column; justify-content:space-between; }
.ebook-cover .ec-tag { font-size:9px; letter-spacing:0.14em; text-transform:uppercase; color:var(--gold); }
.ebook-cover .ec-title { font-family:'Playfair Display',serif; font-size:24px; line-height:1.15; color:#fff; }
.ebook-cover .ec-title em { font-style:italic; color:var(--gold); }
.ebook-cover .ec-foot { font-size:10px; color:var(--text-muted); }
.ebook-cover-img { width:230px; max-width:100%; justify-self:center; display:block;
  border-radius:6px 12px 12px 6px; box-shadow:0 30px 70px rgba(0,0,0,0.55), inset 6px 0 0 rgba(201,168,76,0.5); }

/* ── E-Book-Cover als gebundenes 3D-Buch ── */
.book3d { --bw:230px; --bt:34px; width:var(--bw); justify-self:center; margin:0 auto;
  perspective:1700px; }
.book3d-inner { position:relative; width:var(--bw); transform-style:preserve-3d;
  transform:rotateY(-27deg); transition:transform .6s cubic-bezier(.2,.8,.2,1); }
.book3d:hover .book3d-inner { transform:rotateY(-15deg); }
/* Vorderes Cover (die Grafik) */
.book3d .ebook-cover-img { position:relative; display:block; width:100%; height:auto;
  margin:0; border-radius:3px 6px 6px 3px; box-shadow:none; z-index:2; }
/* Seitliche Seiten-Blätter (rechte Kante) */
.book3d-inner::before { content:''; position:absolute; top:4px; left:0;
  width:var(--bt); height:calc(100% - 8px);
  background:repeating-linear-gradient(90deg,#cfc6ae 0,#f7f2e6 2px,#cfc6ae 4px);
  transform:translateX(calc(var(--bw) - 4px)) rotateY(90deg) translateX(calc(var(--bt) / 2));
  border-radius:0 2px 2px 0; box-shadow:inset 0 0 8px rgba(0,0,0,0.22); }
/* Hinteres Cover (gibt Tiefe + Schlagschatten) */
.book3d-inner::after { content:''; position:absolute; inset:0;
  background:linear-gradient(135deg,#0f1b30,#070f1e);
  transform:translateZ(calc(var(--bt) * -1)); border-radius:3px 6px 6px 3px;
  box-shadow:-16px 16px 55px 10px rgba(0,0,0,0.6); }
/* Buchrücken links (Falz + Gold-Kante) */
.book3d-spine { position:absolute; top:0; left:0; width:16px; height:100%;
  transform:translateZ(1px); z-index:3; pointer-events:none;
  border-left:2px solid var(--gold); border-radius:3px 0 0 3px;
  background:linear-gradient(90deg,rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.14) 55%,rgba(0,0,0,0) 100%); }
@media (max-width:760px){ .book3d{ --bw:200px; --bt:30px; } }
.ebook-bullets { list-style:none; display:flex; flex-direction:column; gap:12px; margin:0; padding:0; }
.ebook-bullets li { display:flex; gap:12px; align-items:flex-start; font-size:14.5px; color:var(--text-light); line-height:1.55; }
.ebook-bullets li::before { content:'✓'; color:var(--gold); font-weight:700; flex-shrink:0; }
@media (max-width: 760px) {
  .ebook-teaser { grid-template-columns:1fr; gap:36px; }
}
