/* =============================================
   Gasser Vermögensverwaltung AG
   Premium Dark – Vermögensverwaltungs-Design 2025
   ============================================= */

:root {
    /* ─ Kern-Palette ─ */
    --bg-deep:      #080a0e;      /* fast Schwarz */
    --bg-dark:      #0c0f16;      /* Standard-Slide */
    --bg-mid:       #10141c;      /* alternierende Slides */
    --bg-card:      rgba(255,255,255,.035);
    --bg-card-h:    rgba(255,255,255,.06);

    /* ─ Gold (Hauptakzent) ─ */
    --gold:         #b8942a;      /* echtes Champagnergold */
    --gold-light:   #d4ae50;
    --gold-pale:    #f0d080;
    --gold-dim:     rgba(184,148,42,.18);
    --gold-line:    rgba(184,148,42,.45);

    /* ─ Weiss-Abstufungen ─ */
    --w100:  #ffffff;
    --w80:   rgba(255,255,255,.82);
    --w55:   rgba(255,255,255,.55);
    --w35:   rgba(255,255,255,.35);
    --w18:   rgba(255,255,255,.18);
    --w08:   rgba(255,255,255,.08);
    --w04:   rgba(255,255,255,.04);

    /* ─ Borders ─ */
    --border:       rgba(255,255,255,.1);
    --border-gold:  rgba(184,148,42,.35);

    /* ─ Schriften ─ */
    --serif:  'Playfair Display', 'Georgia', serif;
    --sans:   'Inter', system-ui, sans-serif;

    /* ─ Timing ─ */
    --t:     .25s ease;
    --t-slow:.6s cubic-bezier(.22,.61,.36,1);

    /* ─ Layout ─ */
    --max:   1280px;
    --pad:   6rem;
}

/* ══════════════════════════════════════════
   RESET
══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
    font-family: var(--sans);
    background: var(--bg-deep);
    color: var(--w80);
    line-height: 1.7;
    overflow-x: hidden;
}
img   { max-width: 100%; display: block; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; font-size: inherit; }
input, select, textarea { font-family: var(--sans); }

/* ══════════════════════════════════════════
   TYPOGRAFIE
══════════════════════════════════════════ */

/* Eyebrow-Label */
.eyebrow {
    font-size: .58rem;
    font-weight: 600;
    letter-spacing: .38em;
    text-transform: uppercase;
    color: var(--gold-light);
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1.4rem;
}
.eyebrow::before {
    content: '';
    width: 28px; height: 1px;
    background: var(--gold);
    opacity: .7;
    flex-shrink: 0;
}

/* Section-Titel */
.section-title {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 400;
    color: var(--w100);
    line-height: 1.12;
    letter-spacing: -.03em;
    margin-bottom: 1.4rem;
}
.section-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--gold-light);
}
.section-title strong { font-weight: 600; }

/* Lead-Text */
.section-lead {
    font-size: .96rem;
    line-height: 1.85;
    color: var(--w55);
    font-weight: 300;
    max-width: 560px;
}

/* Gold-Trennlinie */
.title-rule {
    width: 44px; height: 1px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
    margin: 1.2rem 0 2rem;
}
.title-rule.center { margin-left: auto; margin-right: auto; }

/* Bodytexte */
.body-text {
    font-size: .93rem;
    line-height: 1.85;
    color: var(--w55);
    font-weight: 300;
    margin-bottom: 1rem;
}
.body-text strong { color: var(--w80); font-weight: 500; }

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .82rem 2rem;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    transition: all var(--t);
    white-space: nowrap;
    cursor: pointer;
    border-radius: 0;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.05);
    opacity: 0;
    transition: opacity var(--t);
}
.btn:hover::after { opacity: 1; }

.btn-gold {
    background: var(--gold);
    color: #080a0e;
    border-color: var(--gold);
}
.btn-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: #000;
}

.btn-outline {
    background: transparent;
    color: var(--w80);
    border-color: var(--w18);
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold-light);
}

.btn-lg  { padding: .96rem 2.6rem; font-size: .72rem; }
.btn-sm  { padding: .6rem 1.4rem;  font-size: .64rem; }
.btn-block { width: 100%; justify-content: center; }

.link-gold { color: var(--gold-light); font-size: .82rem; font-weight: 500; transition: color var(--t); }
.link-gold:hover { color: var(--gold-pale); }
.link-gold-inline { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }

/* ══════════════════════════════════════════
   SIDEBAR NAVIGATION  –  Premium 280px
══════════════════════════════════════════ */

/* ── Grundlayout ── */
body {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 100vh;
    scroll-behavior: smooth;
}

/* ── Sidebar Kern ── */
#sidebar {
    position: fixed;
    top: 0; left: 0;
    width: 280px;
    height: 100vh;
    z-index: 1000;
    background: #05080d;
    border-right: 1px solid rgba(184,148,42,.18);
    border-left: 3px solid var(--gold);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    transition: transform .38s cubic-bezier(.22,.61,.36,1);

    /* Scrollbar fast unsichtbar */
    scrollbar-width: thin;
    scrollbar-color: rgba(184,148,42,.15) transparent;
}
#sidebar::-webkit-scrollbar { width: 3px; }
#sidebar::-webkit-scrollbar-thumb { background: rgba(184,148,42,.18); border-radius: 2px; }

/* Hintergrund-Textur */
#sidebar::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            -55deg,
            transparent 0px, transparent 32px,
            rgba(255,255,255,.006) 32px, rgba(255,255,255,.006) 33px
        );
    pointer-events: none;
    z-index: 0;
}

/* Goldener Glüh-Schimmer links */
#sidebar::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        var(--gold) 20%,
        var(--gold-light) 50%,
        var(--gold) 80%,
        transparent 100%
    );
    opacity: .9;
    z-index: 2;
}

/* Alle Kinder über dem Pseudo-Element */
#sidebar > * { position: relative; z-index: 3; }

/* ── Header-Bereich (Logo + Standort) ── */
.sidebar-header {
    padding: 2.4rem 1.8rem 0;
    flex-shrink: 0;
}

.sidebar-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    text-decoration: none;
    transition: opacity .22s ease;
    padding-bottom: 1.4rem;
}
.sidebar-logo:hover { opacity: .88; }

/* Emblem-Wrapper mit Glow-Ring */
.sidebar-emblem {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sidebar-emblem::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 4px;
    background: radial-gradient(ellipse at center, rgba(184,148,42,.12) 0%, transparent 70%);
    pointer-events: none;
}
.sidebar-emblem svg {
    display: block;
    shape-rendering: geometricPrecision;
    filter: drop-shadow(0 0 8px rgba(212,174,80,.25));
}

/* Wortmarke */
.sidebar-wordmark {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.sidebar-wordmark-name {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--w100);
    letter-spacing: .1em;
    line-height: 1.1;
    white-space: nowrap;
}
.sidebar-wordmark-rule {
    width: 70%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: .4rem 0 .3rem;
    opacity: .55;
}
.sidebar-wordmark-sub {
    font-family: var(--sans);
    font-size: .52rem;
    font-weight: 400;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold-light);
    opacity: .8;
    white-space: nowrap;
    text-align: center;
}
.sidebar-wordmark-ag {
    letter-spacing: .2em;
    color: var(--gold);
    opacity: 1;
}

/* Standort */
.sidebar-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    font-size: .54rem;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--w18);
    padding: .65rem 0 0;
}
.sidebar-location i {
    color: var(--gold);
    font-size: .52rem;
    opacity: .7;
}

/* ── Trennlinie ── */
.sidebar-divider {
    flex-shrink: 0;
    height: 1px;
    margin: 1.4rem 1.8rem;
    background: linear-gradient(90deg, transparent, rgba(184,148,42,.35), transparent);
}


/* ── Nav-Section-Label ── */
.sidebar-nav-section-label {
    font-size: .48rem;
    font-weight: 700;
    letter-spacing: .34em;
    text-transform: uppercase;
    color: var(--w18);
    padding: .2rem 1.8rem .7rem;
    flex-shrink: 0;
}

/* ── Haupt-Nav ── */
#main-nav {
    width: 100%;
    flex-shrink: 0;
}
#main-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
}
#main-nav li { width: 100%; }

#main-nav a {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: .82rem 1.8rem;
    font-size: .62rem;
    font-weight: 500;
    color: var(--w35);
    letter-spacing: .14em;
    text-transform: uppercase;
    text-decoration: none;
    border-left: 2px solid transparent;
    position: relative;
    transition: color var(--t), background var(--t), padding-left .22s ease, border-left-color var(--t);
}
#main-nav a::after {
    content: '';
    position: absolute;
    right: 1.8rem; top: 50%;
    transform: translateY(-50%);
    width: 0; height: 1px;
    background: var(--gold);
    transition: width .22s ease;
}
#main-nav a:hover {
    color: var(--w80);
    background: rgba(255,255,255,.032);
    padding-left: 2.2rem;
    border-left-color: var(--gold-line);
}
#main-nav a:hover::after { width: 12px; }
#main-nav a.active {
    color: var(--gold-light);
    background: rgba(184,148,42,.07);
    border-left-color: var(--gold);
    font-weight: 600;
}
#main-nav a.active::after { width: 16px; }

/* Icon vor dem Label */
.sidebar-nav-icon {
    width: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: .7rem;
    color: var(--w18);
    transition: color var(--t);
}
#main-nav a:hover .sidebar-nav-icon { color: var(--gold-line); }
#main-nav a.active .sidebar-nav-icon { color: var(--gold); }

.sidebar-nav-label { flex: 1; }

/* ── Trust-Kennzahlen ── */
.sidebar-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    margin: 0 1.8rem;
    border: 1px solid rgba(184,148,42,.12);
    flex-shrink: 0;
}
.sidebar-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: .9rem .4rem;
    border-right: 1px solid rgba(184,148,42,.1);
    transition: background var(--t);
}
.sidebar-stat:last-child { border-right: none; }
.sidebar-stat:hover { background: rgba(184,148,42,.04); }
.sidebar-stat-num {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--gold-light);
    line-height: 1;
    letter-spacing: -.02em;
}
.sidebar-stat-label {
    font-size: .44rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--w18);
    text-align: center;
    margin-top: .28rem;
    line-height: 1.3;
}

/* ── Spacer ── */
.sidebar-spacer { flex: 1; min-height: 1rem; }

/* ── CTA-Block ── */
.sidebar-cta {
    padding: 0 1.8rem;
    flex-shrink: 0;
    margin-bottom: 1rem;
}
.sidebar-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    width: 100%;
    background: var(--gold);
    color: #080a0e;
    border: none;
    padding: .88rem 1.2rem;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: background var(--t), box-shadow var(--t);
    position: relative;
    overflow: hidden;
}
.sidebar-cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,.12) 0%, transparent 60%);
    pointer-events: none;
}
.sidebar-cta-btn:hover {
    background: var(--gold-light);
    box-shadow: 0 4px 20px rgba(184,148,42,.35);
}
.sidebar-cta-btn i { font-size: .7rem; }
.sidebar-cta-hint {
    font-size: .48rem;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--w18);
    text-align: center;
    margin-top: .55rem;
}

/* ── Kontakt-Footer ── */
.sidebar-contact {
    padding: 1.2rem 1.8rem 1.8rem;
    border-top: 1px solid rgba(255,255,255,.06);
    display: flex;
    flex-direction: column;
    gap: .55rem;
    flex-shrink: 0;
}
.sidebar-contact-link {
    display: flex;
    align-items: center;
    gap: .65rem;
    font-size: .6rem;
    color: var(--w35);
    text-decoration: none;
    letter-spacing: .04em;
    transition: color var(--t);
    white-space: normal;
    word-break: break-word;
    overflow: visible;
}
.sidebar-contact-link i {
    color: var(--gold);
    font-size: .64rem;
    flex-shrink: 0;
    opacity: .75;
    width: 14px;
}
.sidebar-contact-link:hover { color: var(--gold-light); }
.sidebar-hours {
    display: flex;
    align-items: center;
    gap: .65rem;
    font-size: .56rem;
    color: var(--w18);
    letter-spacing: .06em;
    margin-top: .1rem;
}
.sidebar-hours i {
    color: var(--gold);
    font-size: .58rem;
    opacity: .5;
    width: 14px;
}

/* ── Hauptinhalt-Wrapper – schiebt nach rechts ── */
#page-content {
    margin-left: 280px;
    width: calc(100% - 280px);
    min-width: 0;
    display: flex;
    flex-direction: column;
}

#fp-wrapper { flex: 1; }
#site-footer { /* gehört zu #page-content */ }

/* ── Burger (nur mobil) ── */
.burger {
    display: none;
    position: fixed;
    top: 1rem; left: 1rem;
    z-index: 1300;
    flex-direction: column;
    gap: 5px;
    padding: .55rem;
    background: rgba(6,9,15,.92);
    border: 1px solid var(--border);
    backdrop-filter: blur(8px);
}
.burger span {
    display: block;
    width: 22px; height: 1.5px;
    background: var(--w80);
    transition: all var(--t);
}
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Mobile Nav ── */
.mobile-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,.75);
    z-index: 1100;
    backdrop-filter: blur(4px);
}
.mobile-overlay.open { display: block; }
.mobile-nav {
    position: fixed;
    top: 0; left: -100%;
    width: min(300px, 88vw);
    height: 100%;
    background: #0c0f16;
    border-right: 1px solid var(--border);
    border-left: 3px solid var(--gold);
    z-index: 1200;
    padding: 5rem 2rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: left .35s cubic-bezier(.22,.61,.36,1);
}
.mobile-nav.open { left: 0; }
.mobile-close {
    position: absolute;
    top: 1.2rem; right: 1.2rem;
    color: var(--w55);
    font-size: 1rem;
    padding: .4rem;
    transition: color var(--t);
}
.mobile-close:hover { color: var(--w100); }
.mobile-link {
    display: block;
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--w55);
    padding: .9rem 0;
    border-bottom: 1px solid var(--border);
    transition: color var(--t);
}
.mobile-link:hover { color: var(--gold-light); }
.mobile-cta {
    margin-top: 2rem;
    background: var(--gold);
    color: #080a0e;
    border: none;
    text-align: center;
    padding: 1rem;
    font-size: .68rem;
    font-weight: 700;
    display: block;
}

/* Legacy – nicht mehr gebraucht */
.logo-mark { display: none; }
.header-cta { display: none; }

/* ══════════════════════════════════════════
   FORMULARE
══════════════════════════════════════════ */
.form-group {
    margin-bottom: 1rem;
}
.form-group label {
    display: block;
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--w35);
    margin-bottom: .4rem;
}
.form-group label span { color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--w04);
    border: 1px solid var(--border);
    color: var(--w100);
    font-family: var(--sans);
    font-size: .88rem;
    font-weight: 300;
    padding: .75rem 1rem;
    border-radius: 0;
    outline: none;
    transition: border-color var(--t), background var(--t);
    -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: var(--w08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--w18); }
.form-group select { cursor: pointer; }
.form-group select option { background: #0c0f16; color: #fff; }
.form-group textarea { resize: vertical; min-height: 80px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }

.phone-input { display: flex; }
.phone-prefix {
    background: var(--w08);
    border: 1px solid var(--border);
    border-right: none;
    color: var(--w35);
    font-size: .85rem;
    padding: .75rem .9rem;
    flex-shrink: 0;
    white-space: nowrap;
}
.phone-input input { border-left: none; }

.form-check { display: flex; align-items: flex-start; gap: .7rem; margin-bottom: 1rem; }
.form-check input[type="checkbox"] {
    width: 14px; height: 14px;
    flex-shrink: 0;
    margin-top: .2rem;
    accent-color: var(--gold);
    background: var(--w04);
    border: 1px solid var(--border);
}
.form-check label {
    font-size: .78rem;
    color: var(--w35);
    font-weight: 300;
    line-height: 1.55;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 0;
}
.form-feedback {
    font-size: .8rem;
    margin-top: .7rem;
    padding: .6rem .9rem;
}
.form-feedback.success {
    background: rgba(80,180,100,.1);
    border-left: 2px solid #50b464;
    color: #7dcc90;
}
.form-feedback.error {
    background: rgba(200,70,70,.1);
    border-left: 2px solid #c84646;
    color: #e08080;
}
.form-trust {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-top: .9rem;
    padding-top: .9rem;
    border-top: 1px solid var(--border);
}
.form-trust span {
    font-size: .58rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--w35);
    display: flex;
    align-items: center;
    gap: .3rem;
}
.form-trust i { color: var(--gold); }

/* Formular-Box */
.form-box {
    background: var(--w04);
    border: 1px solid var(--border);
    padding: 2.4rem 2.2rem;
    position: relative;
}
.form-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light) 50%, transparent);
}
.form-box-title {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--w100);
    margin-bottom: .3rem;
    line-height: 1.3;
}
.form-box-sub {
    font-size: .8rem;
    color: var(--w35);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 1.6rem;
}
.form-box-eyebrow {
    font-size: .58rem;
    font-weight: 600;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: .7rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.form-box-eyebrow i { font-size: .55rem; }

/* ══════════════════════════════════════════
   KARTEN – Service
══════════════════════════════════════════ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--border);
    background: var(--border);
    width: 100%;
}
.service-card {
    background: var(--bg-dark);
    padding: 2.2rem 2rem;
    position: relative;
    transition: background var(--t);
}
.service-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: transparent;
    transition: background var(--t);
}
.service-card:hover { background: var(--bg-card-h); }
.service-card:hover::after { background: var(--gold); }
.service-card--highlight { background: rgba(184,148,42,.05); }
.service-card--highlight::after { background: var(--gold); }

.service-icon {
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 1.2rem;
    opacity: .85;
}
.service-card h3 {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--w100);
    margin-bottom: .7rem;
    line-height: 1.3;
}
.service-card p {
    font-size: .82rem;
    color: var(--w55);
    line-height: 1.75;
    font-weight: 300;
}

/* ══════════════════════════════════════════
   KARTEN – Zielgruppen
══════════════════════════════════════════ */
.ziel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--border);
    background: var(--border);
    width: 100%;
}
.ziel-card {
    background: var(--bg-dark);
    padding: 2.8rem 2.2rem;
    transition: background var(--t);
}
.ziel-card:hover { background: var(--bg-card-h); }
.ziel-num {
    font-family: var(--serif);
    font-size: 4rem;
    font-weight: 400;
    color: rgba(184,148,42,.12);
    line-height: 1;
    margin-bottom: .5rem;
    letter-spacing: -.05em;
    display: block;
}
.ziel-icon {
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 1.2rem;
    display: block;
}
.ziel-card h3 {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--w100);
    margin-bottom: .8rem;
    line-height: 1.3;
}
.ziel-card p {
    font-size: .85rem;
    color: var(--w55);
    line-height: 1.78;
    font-weight: 300;
}

/* ══════════════════════════════════════════
   AWARDS-PLAQUES (bestehend, angepasst für dark)
══════════════════════════════════════════ */
.award-plaque {
    width: 100%; height: 120px;
    border: 1px solid var(--border-gold);
    display: flex; align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
    background: rgba(184,148,42,.04);
}
.award-plaque::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg, transparent, transparent 8px,
        rgba(184,148,42,.03) 8px, rgba(184,148,42,.03) 9px
    );
}
.plaque-inner { position: relative; z-index: 1; text-align: center; padding: .8rem; }
.capital-logo-line { font-family: var(--serif); color: var(--gold-light); font-size: .9rem; font-weight: 500; }
.capital-c { font-size: 1.3rem; font-weight: 700; }
.plaque-rule { width: 30px; height: 1px; background: var(--gold); margin: .3rem auto; }
.plaque-label { font-size: .55rem; letter-spacing: .18em; text-transform: uppercase; color: var(--w55); margin-bottom: .2rem; }
.plaque-stars { color: var(--gold); font-size: .5rem; letter-spacing: .1em; margin-bottom: .2rem; }
.plaque-company { font-size: .5rem; color: var(--w35); letter-spacing: .06em; }
.plaque-year { font-family: var(--serif); font-size: 1rem; color: var(--gold-light); font-weight: 500; margin-top: .2rem; }

.pb-header { text-align: center; }
.pb-title-top { display: block; font-size: .55rem; letter-spacing: .28em; color: var(--w55); text-transform: uppercase; }
.pb-title-bot { display: block; font-family: var(--serif); font-size: 1rem; color: var(--w100); font-weight: 500; }
.pb-year-badge { display: inline-block; font-size: .5rem; color: var(--gold); border: 1px solid var(--gold-line); padding: .1rem .4rem; letter-spacing: .12em; margin-top: .2rem; }
.pb-seal { margin-top: .4rem; border: 1px solid var(--border-gold); padding: .4rem .8rem; }
.pb-seal-text1 { font-size: .5rem; color: var(--w55); letter-spacing: .1em; text-transform: uppercase; }
.pb-seal-text2 { font-family: var(--serif); font-size: .75rem; color: var(--gold-light); font-weight: 500; }
.pb-seal-co { font-size: .42rem; color: var(--w35); margin-top: .2rem; }

.welt-logo { font-family: var(--sans); font-size: 1.1rem; font-weight: 900; color: var(--w100); letter-spacing: .12em; margin-bottom: .3rem; display: block; }
.welt-badge-title { font-family: var(--serif); font-size: .75rem; color: var(--gold-light); line-height: 1.2; font-weight: 500; }
.welt-badge-stars { color: var(--gold); font-size: .45rem; margin: .2rem 0; }
.welt-badge-nr { font-family: var(--serif); font-size: .8rem; font-weight: 700; color: var(--w100); }
.welt-badge-sub { font-size: .45rem; letter-spacing: .12em; color: var(--w55); text-transform: uppercase; }

.tuev-logo { display: flex; align-items: center; gap: .6rem; }
.tuev-badge { background: var(--gold); padding: .3rem .5rem; text-align: center; }
.tuev-top-bar { font-size: .55rem; font-weight: 900; color: #000; letter-spacing: .08em; }
.tuev-sud { font-size: .6rem; font-weight: 900; color: #000; }
.tuev-iso { font-family: var(--serif); font-size: .85rem; color: var(--w100); font-weight: 500; }
.tuev-cert { font-size: .45rem; letter-spacing: .15em; color: var(--gold-light); text-transform: uppercase; }
.tuev-management { font-size: .48rem; color: var(--w35); letter-spacing: .08em; text-transform: uppercase; margin-top: .3rem; text-align: center; }

/* ══════════════════════════════════════════
   PROZESS-SCHRITTE
══════════════════════════════════════════ */
.prozess-steps { display: flex; flex-direction: column; }
.prozess-step {
    display: flex;
    gap: 1.8rem;
    align-items: flex-start;
    padding: 1.6rem 0;
    border-bottom: 1px solid var(--border);
    transition: padding-left var(--t);
}
.prozess-step:first-child { border-top: 1px solid var(--border); }
.prozess-step:hover { padding-left: .5rem; }
.step-circle {
    width: 38px; height: 38px;
    border: 1px solid var(--gold);
    color: var(--gold-light);
    font-size: .78rem;
    font-weight: 600;
    font-family: var(--serif);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background var(--t);
}
.prozess-step:hover .step-circle { background: var(--gold-dim); }
.step-content h4 {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 500;
    color: var(--w100);
    margin-bottom: .35rem;
    line-height: 1.3;
}
.step-content p {
    font-size: .83rem;
    color: var(--w55);
    line-height: 1.7;
    font-weight: 300;
}

/* ══════════════════════════════════════════
   HOME FAQ SECTION
══════════════════════════════════════════ */
.home-faq {
    background: var(--bg-deep);
    padding: 7rem var(--pad);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.home-faq-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    align-items: start;
}
.home-faq-header {
    position: sticky;
    top: 2rem;
}
.home-faq-title {
    font-family: var(--serif);
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    font-weight: 400;
    color: var(--w100);
    line-height: 1.15;
    letter-spacing: -.03em;
    margin-bottom: 1.2rem;
}
.home-faq-rule {
    width: 36px;
    height: 2px;
    background: var(--gold);
    margin-top: .5rem;
    opacity: .85;
}
.home-faq-more {
    margin-top: 2.4rem;
    padding-top: 1.6rem;
    border-top: 1px solid var(--border);
}

@media (max-width: 900px) {
    .home-faq { padding: 5rem 2rem; }
    .home-faq-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .home-faq-header { position: static; }
}
@media (max-width: 600px) {
    .home-faq { padding: 4rem 1.5rem; }
}

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq-list { width: 100%; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.3rem 0;
    color: var(--w80);
    font-size: .92rem;
    font-weight: 400;
    text-align: left;
    transition: color var(--t);
    letter-spacing: -.005em;
    line-height: 1.5;
}
.faq-question:hover { color: var(--gold-light); }
.faq-question[aria-expanded="true"] { color: var(--gold-light); }
.faq-icon {
    color: var(--gold);
    font-size: .6rem;
    flex-shrink: 0;
    margin-left: 1.5rem;
    transition: transform var(--t);
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding-bottom: 1.4rem; }
.faq-answer.open { display: block; }
.faq-answer p {
    font-size: .86rem;
    color: var(--w55);
    line-height: 1.8;
    font-weight: 300;
}
.faq-answer p + p { margin-top: 1rem; }
.faq-answer strong { color: var(--w80); font-weight: 500; }
.faq-link {
    color: var(--gold-light);
    text-decoration: none;
    border-bottom: 1px solid rgba(184,148,42,.35);
    transition: color var(--t), border-color var(--t);
}
.faq-link:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

/* ── CTA Disclaimer-Badges (global, alle Seiten) ── */
.cta-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .5rem 2rem;
    margin-top: 2rem;
}
.cta-badges span {
    display: flex;
    align-items: center;
    gap: .45rem;
    font-size: .63rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--w35);
}
.cta-badges span i {
    color: var(--gold);
    font-size: .6rem;
    opacity: .8;
}

/* ══════════════════════════════════════════
   FESTGELD
══════════════════════════════════════════ */
.rate-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--border);
    border: 1px solid var(--border);
    margin-top: 1.8rem;
}
.rate-card {
    background: var(--bg-dark);
    padding: 1.8rem 1.6rem;
    position: relative;
    transition: background var(--t);
}
.rate-card--alt { background: rgba(184,148,42,.05); }
.rate-card:hover { background: var(--bg-card-h); }
.rate-label {
    font-size: .58rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: .6rem;
}
.rate-value {
    font-family: var(--serif);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--w100);
    line-height: 1;
    display: block;
    margin-bottom: .25rem;
    letter-spacing: -.03em;
}
.rate-sub {
    font-size: .72rem;
    color: var(--w35);
    display: block;
    margin-bottom: 1.1rem;
    font-weight: 300;
}
.rate-card ul { display: flex; flex-direction: column; gap: .35rem; }
.rate-card li {
    font-size: .78rem;
    color: var(--w55);
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.rate-card li::before {
    content: '';
    width: 5px; height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

.festgeld-def { margin-bottom: 1.2rem; }
.festgeld-def h4 {
    font-family: var(--serif);
    font-size: .95rem;
    font-weight: 500;
    color: var(--w100);
    margin-bottom: .35rem;
}
.festgeld-def p {
    font-size: .83rem;
    color: var(--w55);
    line-height: 1.75;
    font-weight: 300;
}

/* ══════════════════════════════════════════
   DIFFERENZ / ANSATZ
══════════════════════════════════════════ */
.differenz-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    width: 100%;
}
.differenz-item {
    padding-top: 1.4rem;
    border-top: 1px solid var(--border);
    position: relative;
}
.differenz-item::before {
    content: '';
    position: absolute;
    top: -1px; left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width .5s ease;
}
.differenz-item:hover::before { width: 100%; }
.differenz-num {
    font-family: var(--serif);
    font-size: 3.5rem;
    font-weight: 400;
    color: rgba(184,148,42,.1);
    line-height: 1;
    display: block;
    margin-bottom: .5rem;
    letter-spacing: -.06em;
}
.differenz-item h3 {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--w100);
    margin-bottom: .8rem;
}
.differenz-item p {
    font-size: .85rem;
    color: var(--w55);
    line-height: 1.78;
    font-weight: 300;
}

/* ══════════════════════════════════════════
   KONTAKT
══════════════════════════════════════════ */
.kontakt-info-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}
.kontakt-info-item:first-of-type { border-top: 1px solid var(--border); }
.kontakt-info-icon {
    width: 34px; height: 34px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: .85rem;
    flex-shrink: 0;
}
.kontakt-info-item strong {
    display: block;
    font-size: .58rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--w35);
    margin-bottom: .18rem;
}
.kontakt-info-item span {
    font-size: .9rem;
    color: var(--w80);
    font-weight: 300;
}

/* ══════════════════════════════════════════
   SITE FOOTER
══════════════════════════════════════════ */
#site-footer {
    background: #06090f;
    border-top: 2px solid var(--gold);
}

/* ── Haupt-Bereich: 3 gleichwertige Spalten ── */
.footer-main {
    max-width: var(--max);
    margin: 0 auto;
    padding: 4rem var(--pad) 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    align-items: start;
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-col {
    padding: 0 3rem;
    border-right: 1px solid rgba(255,255,255,.07);
}
.footer-col:first-child { padding-left: 0; }
.footer-col:last-child  { padding-right: 0; border-right: none; }

/* ── Logo & Firma ── */
.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: .85rem;
    margin-bottom: 2rem;
}
.footer-logo-svg { display: block; flex-shrink: 0; }
.footer-logo-name {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--w100);
    letter-spacing: .04em;
    display: block;
    line-height: 1.15;
}
.footer-logo-tagline {
    font-size: .5rem;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--w35);
    display: block;
    margin-top: .28rem;
}

/* Kontakt-Liste */
.footer-contact { display: flex; flex-direction: column; }
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
    padding: .75rem 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.footer-contact-item:first-child { border-top: 1px solid rgba(255,255,255,.05); }
.footer-contact-icon {
    color: var(--gold);
    font-size: .82rem;
    width: 15px;
    flex-shrink: 0;
    margin-top: .2rem;
    opacity: .9;
}
.footer-contact-label {
    font-size: .54rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--w18);
    display: block;
    margin-bottom: .2rem;
}
.footer-contact-val {
    font-size: .86rem;
    color: var(--gold-light);
    font-weight: 300;
    display: block;
    line-height: 1.5;
    text-decoration: none;
    transition: color var(--t);
}
a.footer-contact-val:hover { color: var(--gold-pale); }
.footer-contact-val--muted {
    color: var(--w55);
    font-size: .84rem;
}

/* ── Nav-Spalten ── */
.footer-nav-heading {
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--w100);
    display: block;
    padding-bottom: .9rem;
    margin-bottom: .4rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-nav-list {
    display: flex;
    flex-direction: column;
}
.footer-nav-list a {
    font-size: .84rem;
    font-weight: 300;
    color: var(--w55);
    padding: .55rem 0;
    border-bottom: 1px solid rgba(255,255,255,.04);
    display: flex;
    align-items: center;
    gap: .5rem;
    transition: color var(--t), gap var(--t);
    text-decoration: none;
}
.footer-nav-list a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width .22s ease;
    flex-shrink: 0;
}
.footer-nav-list a:hover {
    color: var(--w100);
}
.footer-nav-list a:hover::before { width: 14px; }

/* ── Zertifizierungs-Leiste ── */
.footer-cert-bar {
    max-width: var(--max);
    margin: 0 auto;
    padding: 2.2rem var(--pad);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5rem;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .6rem;
    opacity: .5;
    transition: opacity .25s ease;
}
.footer-cert-item:hover { opacity: .9; }

.footer-cert-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    min-height: 32px;
}
/* AOOS */
.cert-aoos {
    font-family: var(--sans);
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: .05em;
    border: 1.5px solid rgba(255,255,255,.4);
    padding: .2rem .55rem;
    line-height: 1;
}
.cert-aoos-sub {
    font-size: .62rem;
    font-weight: 400;
    color: rgba(255,255,255,.55);
    letter-spacing: .06em;
    display: block;
}
/* finma */
.cert-finma {
    font-family: var(--sans);
    font-size: 1.15rem;
    font-style: italic;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.01em;
}
/* OFS */
.cert-ofs {
    font-family: var(--sans);
    font-size: .9rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: .1em;
    border: 1.5px solid rgba(255,255,255,.4);
    padding: .2rem .5rem;
}
/* TÜV */
.cert-tuev {
    display: flex;
    align-items: center;
    gap: .35rem;
}
.cert-tuev-box {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.3);
    padding: .22rem .4rem;
    text-align: center;
    line-height: 1.2;
}
.cert-tuev-box span:first-child {
    display: block;
    font-size: .52rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: .06em;
}
.cert-tuev-box span:last-child {
    display: block;
    font-size: .58rem;
    font-weight: 800;
    color: #fff;
}
.cert-tuev-text { display: flex; flex-direction: column; }
.cert-tuev-text em {
    font-style: normal;
    font-size: .7rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
}
.cert-tuev-text small {
    font-size: .52rem;
    color: rgba(255,255,255,.45);
    letter-spacing: .06em;
}

.footer-cert-label {
    font-size: .54rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    text-align: center;
    white-space: nowrap;
}

/* ── Rechtliche Hinweise ── */
.footer-legal {
    max-width: var(--max);
    margin: 0 auto;
    padding: 2.2rem var(--pad) 1.8rem;
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.footer-legal-title {
    font-size: .56rem;
    font-weight: 700;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: rgba(255,255,255,.3);
    display: block;
    margin-bottom: .75rem;
}
.footer-legal-text {
    font-size: .78rem;
    color: rgba(255,255,255,.28);
    line-height: 1.8;
    font-weight: 300;
    max-width: 100%;
}

/* ── Copyright ── */
.footer-copyright {
    text-align: center;
    padding: 1.1rem var(--pad);
}
.footer-copyright p {
    font-size: .58rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255,255,255,.2);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .footer-main { grid-template-columns: 1fr; gap: 0; }
    .footer-col {
        padding: 2rem 0;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,.07);
    }
    .footer-col:last-child { border-bottom: none; }
    .footer-cert-bar { gap: 2.5rem; }
}
@media (max-width: 640px) {
    .footer-cert-bar { gap: 2rem; padding: 2rem var(--pad); }
    .footer-legal { padding: 1.8rem var(--pad); }
}

/* ── Legacy ── */
.footer-links-row { display: none; }
.copyright-text   { display: none; }

/* ══════════════════════════════════════════
   RECHTLICHER HINWEIS
══════════════════════════════════════════ */
.legal-box {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1.3rem 1.6rem;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.02);
    width: 100%;
}
.legal-box-icon { color: var(--gold); font-size: .85rem; flex-shrink: 0; margin-top: .1rem; }
.legal-box strong {
    display: block;
    font-size: .6rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--w35);
    margin-bottom: .4rem;
}
.legal-box p {
    font-size: .78rem;
    color: var(--w35);
    line-height: 1.7;
    font-weight: 300;
}

/* ══════════════════════════════════════════
   BURGER-BUTTON
══════════════════════════════════════════ */
.burger {
    display: none;
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 9999;
    width: 44px;
    height: 44px;
    background: rgba(12,15,22,.95);
    border: 1px solid rgba(184,148,42,.35);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 0;
    backdrop-filter: blur(8px);
}
.burger span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--gold-light);
    transition: all .25s ease;
    transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ══════════════════════════════════════════
   MOBILE OVERLAY
══════════════════════════════════════════ */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    z-index: 8000;
    opacity: 0;
    transition: opacity .3s ease;
    backdrop-filter: blur(2px);
}
.mobile-overlay.open {
    display: block;
    opacity: 1;
}

/* ══════════════════════════════════════════
   MOBILE NAV DRAWER
══════════════════════════════════════════ */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100dvh;
    background: #0c0f16;
    border-right: 1px solid rgba(184,148,42,.2);
    z-index: 9000;
    display: flex;
    flex-direction: column;
    padding: 5rem 0 2rem;
    transform: translateX(-100%);
    transition: transform .35s cubic-bezier(.22,.61,.36,1);
    overflow-y: auto;
}
.mobile-nav.open {
    transform: translateX(0);
}
.mobile-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,.05);
    border: 1px solid var(--border);
    color: var(--w55);
    font-size: .85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--t);
}
.mobile-close:hover { background: rgba(255,255,255,.1); color: var(--w100); }

.mobile-link {
    display: block;
    padding: .9rem 1.8rem;
    font-size: .82rem;
    font-weight: 400;
    color: var(--w55);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,.05);
    letter-spacing: .03em;
    transition: all var(--t);
}
.mobile-link:hover,
.mobile-link.active {
    color: var(--gold-light);
    background: rgba(184,148,42,.05);
    padding-left: 2.2rem;
}
.mobile-cta {
    display: block;
    margin: 1.5rem 1.5rem .5rem;
    padding: .9rem 1.4rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: #0c0f16;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    transition: opacity var(--t);
}
.mobile-cta:hover { opacity: .85; }

/* ══════════════════════════════════════════
   RESPONSIVE – SIDEBAR / MOBILE NAV
══════════════════════════════════════════ */
@media (max-width: 1024px) {
    :root { --pad: 3rem; }

    /* Sidebar verstecken */
    #sidebar { display: none; }

    /* Hauptinhalt füllt volle Breite */
    #page-content { margin-left: 0 !important; width: 100% !important; }

    /* Burger einblenden */
    .burger { display: flex; }

    /* Hero */
    .home-hero-inner { padding: 5rem 2rem 3rem; }
    .home-hero-btns { flex-direction: column; align-items: flex-start; gap: .8rem; }
    .home-hero-trust { flex-wrap: wrap; gap: .6rem; }

    /* Sektionen */
    .services-grid { grid-template-columns: 1fr; }
    .ziel-grid { grid-template-columns: 1fr 1fr; }

    /* Footer */
    .home-footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
    :root { --pad: 1.8rem; }

    /* Sidebar ausblenden → Burger sichtbar */
    #sidebar { transform: translateX(-100%); }
    #page-content { margin-left: 0; width: 100%; }
    .burger { display: flex; }

    .ziel-grid { grid-template-columns: 1fr; }

    /* Hero */
    .home-hero-title { font-size: clamp(2rem, 8vw, 3rem); }

    /* Subpage Hero */
    .subpage-hero { padding: 4rem 1.8rem 3rem; }
    .subpage-hero-inner h1 { font-size: clamp(1.8rem, 6vw, 2.5rem); }

    /* Home FAQ */
    .home-faq { padding: 4rem 1.8rem; }
    .home-faq-inner { grid-template-columns: 1fr; gap: 2rem; }

    /* CTA Banner */
    .home-cta-banner-inner { flex-direction: column; gap: 2rem; text-align: center; padding: 3rem 1.8rem; }
    .home-cta-btns { flex-direction: column; align-items: center; }

    /* Tabellen */
    .data-table th, .data-table td { font-size: .78rem; padding: .7rem .9rem; }

    /* Buttons */
    .btn { font-size: .6rem; padding: .8rem 1.4rem; }
    .btn-lg { font-size: .65rem; padding: .9rem 1.6rem; }
}

@media (max-width: 640px) {
    :root { --pad: 1.4rem; }

    /* Burger */
    .burger { top: .8rem; left: .8rem; }

    /* Hero */
    .home-hero-inner { padding: 4.5rem 1.4rem 2.5rem; }
    .home-hero-pretitle { font-size: .52rem; }
    .home-hero-trust { display: none; }
    .home-hero-badges { display: none; }

    /* Subpage */
    .subpage-hero { padding: 3.5rem 1.4rem 2.5rem; }
    .subpage-meta { flex-wrap: wrap; gap: .5rem; }

    /* Prose */
    .prose h2 { font-size: 1.2rem; }
    .prose p, .prose li { font-size: .84rem; }

    /* Tabellen scrollen */
    .data-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }

    /* Footer */
    .home-footer-bottom { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .home-footer-legal { gap: 1rem; flex-wrap: wrap; }
    .home-footer-inner { padding: 3rem 1.4rem; }

    /* Eyebrow */
    .eyebrow { font-size: .52rem; letter-spacing: .28em; }
}

/* ══════════════════════════════════════════
   ANSATZ-SLIDE – Innen-Grid responsiv
══════════════════════════════════════════ */
#s-ansatz .slide-inner > div {
    width: 100%;
}
@media (max-width: 1100px) {
    #s-ansatz .slide-inner > div {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    #s-ansatz .differenz-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}
@media (max-width: 768px) {
    #s-ansatz .differenz-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 480px) {
    #s-ansatz .differenz-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ══════════════════════════════════════════
   CLOSING CTA – Abschlussband
══════════════════════════════════════════ */
.home-closing-cta {
    position: relative;
    background: var(--bg-dark);
    padding: 8rem var(--pad);
    overflow: hidden;
    border-top: 1px solid var(--border);
    text-align: center;
}

/* Dezentes Radial-Glow im Hintergrund */
.home-closing-cta-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 55% at 50% 60%, rgba(184,148,42,.07) 0%, transparent 70%),
        radial-gradient(ellipse 40% 30% at 50% 100%, rgba(184,148,42,.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* Goldene Dekorlinie oben */
.home-closing-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-line) 30%, var(--gold-line) 70%, transparent);
    z-index: 1;
}

.home-closing-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Eyebrow wird von der globalen Klasse gestylt –
   nur die Zentrierung überschreiben wir */
.home-closing-cta .eyebrow {
    justify-content: center;
}

.home-closing-cta-title {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 400;
    color: var(--w100);
    line-height: 1.12;
    letter-spacing: -.035em;
    margin-bottom: 0;
}
.home-closing-cta-title em {
    font-style: italic;
    color: var(--gold-light);
}

/* Goldener Trennstrich */
.home-closing-cta-rule {
    width: 44px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 1.8rem auto;
    opacity: .85;
}

.home-closing-cta-lead {
    font-size: .92rem;
    color: var(--w55);
    font-weight: 300;
    line-height: 1.9;
    max-width: 520px;
    margin-bottom: 2.6rem;
}

.home-closing-cta-btn {
    padding: 1.05rem 3rem;
    font-size: .72rem;
    letter-spacing: .18em;
    box-shadow: 0 0 32px rgba(184,148,42,.18);
    transition: background var(--t), box-shadow var(--t), transform .18s ease;
}
.home-closing-cta-btn:hover {
    box-shadow: 0 0 48px rgba(184,148,42,.32);
    transform: translateY(-1px);
}



/* Responsive */
@media (max-width: 900px) {
    .home-closing-cta { padding: 6rem var(--pad); }
    .home-closing-cta-lead br { display: none; }
}
@media (max-width: 600px) {
    .home-closing-cta { padding: 5rem 1.5rem; }
    .home-closing-cta-btn { width: 100%; justify-content: center; }
}
