/* ==========================================================================
   1. DESIGN SYSTEM & VARIABLEN
   ========================================================================== */
:root {
    --bs-body-font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --text: #0b2119;
    --muted: #607265;
    --green: #073f22;
    --green-deep: #002f1b;
    --green-bright: #58a900;
    --green-soft: #edf8df;
    --leaf: #79b928;
    --mint: #a9d56a;
    --sun: #ffb20d;
    --surface: rgba(255, 255, 255, 0.9);
    --line: rgba(7, 63, 34, 0.14);
    --shadow: 0 24px 70px rgba(7, 63, 34, 0.15);
}

/* ==========================================================================
   2. BASICS & GLOBALS
   ========================================================================== */
html {
    scroll-behavior: smooth;
}

html, body {
    min-height: 100%;
    color: var(--text);
    background: radial-gradient(circle at 14% 10%, rgba(255, 178, 13, 0.22), transparent 24rem), radial-gradient(circle at 85% 8%, rgba(88, 169, 0, 0.18), transparent 26rem), linear-gradient(135deg, rgba(237, 248, 223, 0.74) 0 18%, transparent 18% 100%), linear-gradient(180deg, #fffdf7 0%, #eef7e5 52%, #f8fbf3 100%);
    font-family: var(--bs-body-font-family);
}

a, .btn-link {
    color: var(--green);
}

h1, h2, h3, p {
    margin-top: 0;
}

    h1:focus {
        outline: none;
    }

/* ==========================================================================
   3. BUTTONS & FORMS
   ========================================================================== */
.btn {
    border-radius: 999px;
    font-weight: 700;
    padding: 0.9rem 1.35rem;
}

.btn-primary-modern {
    color: #fff;
    background: linear-gradient(135deg, var(--green-deep), var(--green-bright));
    border: 0;
    box-shadow: 0 18px 35px rgba(7, 59, 50, 0.24);
}

    .btn-primary-modern:hover {
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 22px 42px rgba(7, 59, 50, 0.28);
    }

.btn-secondary-modern {
    color: var(--green);
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid var(--line);
}

    .btn-secondary-modern:hover {
        color: var(--green);
        background: #fff;
        transform: translateY(-2px);
    }

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem rgba(101, 211, 126, 0.65);
}

.darker-border-checkbox.form-check-input {
    border-color: #929292;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

/* Validation */
.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid #e50000;
}

.validation-message {
    color: #e50000;
}

.blazor-error-boundary {
    background: #b32121;
    color: white;
    padding: 1rem;
}

    .blazor-error-boundary::after {
        content: 'Ein Fehler ist aufgetreten.';
    }

/* ==========================================================================
   4. LAYOUT STRUCTURE & HERO SECTIONS
   ========================================================================== */
.hero-section,
.section,
.page-hero {
    width: min(1120px, calc(100% - 2rem));
    margin-inline: auto;
}

.hero-section {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
    min-height: calc(100vh - 94px);
}

.page-hero {
    padding: clamp(1rem, 4vw, 6rem) 0 clamp(1rem, 1vw, 3rem);
}

    .page-hero.compact {
        min-height: auto;
    }

.eyebrow {
    color: var(--green-bright);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-content h1,
.page-hero h1 {
    max-width: 760px;
    font-size: clamp(2.25rem, 5.2vw, 4.35rem);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 1.02;
    margin-bottom: 1.35rem;
}

.hero-text,
.page-hero p {
    max-width: 650px;
    color: var(--muted);
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 2rem;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

    .trust-row span {
        border: 1px solid var(--line);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.68);
        color: var(--green);
        font-size: 0.92rem;
        font-weight: 700;
        padding: 0.65rem 0.95rem;
    }

/* Hero Cards & Logos */
.hero-card {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 2.2rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(237, 248, 223, 0.78)), radial-gradient(circle at 16% 12%, rgba(255, 178, 13, 0.28), transparent 16rem), radial-gradient(circle at 92% 8%, rgba(88, 169, 0, 0.28), transparent 14rem);
    box-shadow: 0 30px 80px rgba(7, 63, 34, 0.18);
    padding: clamp(1.15rem, 3vw, 1.55rem);
}

    .hero-card::before,
    .hero-card::after {
        position: absolute;
        content: '';
        border-radius: 999px;
        pointer-events: none;
    }

    .hero-card::before {
        inset: auto -4rem -5rem auto;
        width: 14rem;
        height: 14rem;
        background: rgba(88, 169, 0, 0.28);
        filter: blur(8px);
    }

    .hero-card::after {
        inset: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.58);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
    }

.logo-showcase {
    isolation: isolate;
}

    .logo-showcase > * {
        position: relative;
        z-index: 1;
    }

.showcase-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: 1px solid rgba(88, 169, 0, 0.18);
    border-radius: 999px;
    color: var(--green);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 12px 28px rgba(7, 63, 34, 0.08);
    padding: 0.48rem 0.72rem;
}

    .status-pill span {
        width: 0.58rem;
        height: 0.58rem;
        border-radius: 50%;
        background: var(--green-bright);
        box-shadow: 0 0 0 0.35rem rgba(88, 169, 0, 0.16);
    }

.showcase-note {
    text-align: right;
}

.logo-orb {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 340px;
    overflow: hidden;
    background-color: white;
}

    .logo-orb::before {
        position: absolute;
        inset: 12%;
        content: '';
        border-radius: 50%;
        filter: blur(0.5px);
        opacity: 0.82;
    }

    .logo-orb img {
        position: relative;
        width: min(110%, 450px);
        height: auto;
        mix-blend-mode: multiply;
        filter: drop-shadow(0 20px 35px rgba(7, 63, 34, 0.2));
    }

/* Metrics */
.metric-card,
.metric-grid > div {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.74);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 42px rgba(7, 59, 50, 0.1);
    padding: 1rem;
}

.main-metric {
    display: grid;
    gap: 0.1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(237, 248, 223, 0.82)), radial-gradient(circle at 92% 0%, rgba(255, 178, 13, 0.24), transparent 8rem);
}

.metric-card span,
.metric-grid span {
    display: block;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    margin-bottom: 0.2rem;
}

.metric-card strong,
.metric-grid strong {
    color: var(--green);
    font-weight: 900;
    letter-spacing: -0.035em;
}

.metric-card small,
.metric-grid small {
    color: var(--muted);
    font-weight: 700;
}

.metric-card small {
    display: block;
    margin-top: 0.25rem;
}

.metric-card strong {
    font-size: clamp(1.65rem, 3vw, 2.45rem);
}

.metric-grid strong {
    font-size: clamp(1.2rem, 2vw, 1.7rem);
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

    .metric-grid > div {
        transition: transform 180ms ease, box-shadow 180ms ease;
    }

        .metric-grid > div:hover {
            transform: translateY(-3px);
            box-shadow: 0 22px 48px rgba(7, 59, 50, 0.13);
        }

/* ==========================================================================
   5. SECTIONS & CARDS (BENEFITS, STEPS, CTA)
   ========================================================================== */
.section {
    padding: clamp(3rem, 7vw, 5rem) 0;
}

.section-heading {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 2rem;
    align-items: end;
    margin-bottom: 1.5rem;
}

    .section-heading h2,
    .cta-section h2,
    .info-panel h2 {
        font-size: clamp(1.7rem, 3vw, 2.8rem);
        font-weight: 800;
        letter-spacing: -0.04em;
        line-height: 1.08;
    }

.benefit-grid,
.steps-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.benefit-card,
.step-card,
.info-panel,
.cta-section {
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 1.6rem;
    background: var(--surface);
    box-shadow: 0 16px 44px rgba(7, 59, 50, 0.08);
}

.benefit-card,
.step-card {
    padding: 1.35rem;
}

.icon-pill {
    display: grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, var(--green-soft), rgba(255, 178, 13, 0.14));
    font-size: 1.35rem;
    margin-bottom: 1.15rem;
}

.benefit-card h3,
.step-card h2 {
    color: var(--green);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.65rem;
}

.benefit-card p,
.step-card p,
.info-panel p {
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 0;
}

.step-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    color: var(--green);
    background: linear-gradient(135deg, var(--sun), #ffe58a);
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-section,
.info-panel {
    display: grid;
    grid-template-columns: auto;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
    padding: clamp(1.5rem, 4vw, 2.25rem);
}

/* ==========================================================================
   6. LAUNCH STATUS & COUNTDOWN
   ========================================================================== */
.launch-status-section {
    padding-top: clamp(1rem, 3vw, 2rem);
}

.launch-status-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    gap: clamp(1.25rem, 4vw, 2.5rem);
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 2rem;
    background: radial-gradient(circle at 8% 12%, rgba(255, 178, 13, 0.25), transparent 16rem), radial-gradient(circle at 92% 18%, rgba(88, 169, 0, 0.22), transparent 18rem), linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(237, 248, 223, 0.84));
    box-shadow: var(--shadow);
    padding: clamp(1.4rem, 4vw, 2.35rem);
}

    .launch-status-card::before {
        position: absolute;
        inset: 1rem;
        content: '';
        border: 1px dashed rgba(7, 63, 34, 0.13);
        border-radius: 1.45rem;
        pointer-events: none;
    }

.launch-status-copy,
.countdown-panel {
    position: relative;
    z-index: 1;
}

    .launch-status-copy h2 {
        color: var(--green);
        font-size: clamp(1.7rem, 3vw, 2.65rem);
        font-weight: 900;
        letter-spacing: -0.045em;
        line-height: 1.05;
        margin-bottom: 1rem;
    }

    .launch-status-copy p {
        color: var(--muted);
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 0;
    }

    .launch-status-copy strong {
        color: var(--green);
    }

.countdown-panel {
    display: grid;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 1.65rem;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 18px 42px rgba(7, 59, 50, 0.11);
    padding: clamp(1rem, 3vw, 1.35rem);
}

.countdown-status {
    justify-self: start;
    font-weight: 900;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
}

.countdown-item {
    display: grid;
    place-items: center;
    min-height: 6.1rem;
    border: 1px solid var(--line);
    border-radius: 1.25rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(237, 248, 223, 0.8)), radial-gradient(circle at 50% 0%, rgba(255, 178, 13, 0.22), transparent 5rem);
    text-align: center;
}

    .countdown-item strong {
        color: var(--green);
        font-size: clamp(1.65rem, 4vw, 2.75rem);
        font-weight: 900;
        letter-spacing: -0.055em;
        line-height: 1;
    }

    .countdown-item span {
        color: var(--muted);
        font-size: 0.75rem;
        font-weight: 900;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

/* ==========================================================================
   7. CONNECTION DIAGRAM
   ========================================================================== */
.connection-diagram-section {
    padding-top: clamp(1rem, 3vw, 2rem);
}

.connection-diagram {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 2rem;
    background: radial-gradient(circle at 50% 0%, rgba(255, 178, 13, 0.2), transparent 18rem), radial-gradient(circle at 12% 38%, rgba(88, 169, 0, 0.16), transparent 18rem), linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(237, 248, 223, 0.86));
    box-shadow: var(--shadow);
    padding: clamp(1.25rem, 4vw, 2.75rem);
}

    .connection-diagram::before {
        position: absolute;
        inset: 1rem;
        content: '';
        border: 1px dashed rgba(7, 63, 34, 0.12);
        border-radius: 1.45rem;
        pointer-events: none;
    }

.diagram-node {
    position: relative;
    z-index: 1;
    border: 1px solid var(--line);
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 42px rgba(7, 59, 50, 0.1);
    padding: clamp(1.2rem, 3vw, 1.65rem);
}

.meter-node,
.result-node {
    width: min(100%, 760px);
    margin-inline: auto;
    text-align: center;
}

.meter-node {
    background: linear-gradient(135deg, rgba(7, 63, 34, 0.95), rgba(88, 169, 0, 0.9)), radial-gradient(circle at 20% 12%, rgba(255, 178, 13, 0.35), transparent 9rem);
    color: #fff;
}

.diagram-kicker {
    display: block;
    color: inherit;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    opacity: 0.76;
    text-transform: uppercase;
}

.meter-node h2,
.result-node p {
    margin: 0.2rem 0 0;
    font-size: clamp(1.45rem, 3vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1;
    text-transform: uppercase;
}

.diagram-line {
    position: relative;
    z-index: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: min(82%, 720px);
    height: clamp(3.5rem, 7vw, 5.4rem);
    margin-inline: auto;
}

    .diagram-line::before,
    .diagram-line::after,
    .diagram-line span::before,
    .diagram-line span::after {
        position: absolute;
        content: '';
        background: rgba(7, 63, 34, 0.32);
    }

.split-line::before,
.merge-line::before {
    left: 50%;
    width: 2px;
    height: 42%;
    transform: translateX(-50%);
}

.split-line::before {
    top: 0;
}

.merge-line::before {
    bottom: 0;
}

.split-line span::before,
.merge-line span::before {
    top: 42%;
    width: calc(50% + 2px);
    height: 2px;
}

.split-line span:first-child::before,
.merge-line span:first-child::before {
    right: 50%;
    transform: rotate(-18deg);
    transform-origin: right center;
}

.split-line span:last-child::before,
.merge-line span:last-child::before {
    left: 50%;
    transform: rotate(18deg);
    transform-origin: left center;
}

.merge-line span:first-child::before {
    transform: rotate(18deg);
}

.merge-line span:last-child::before {
    transform: rotate(-18deg);
}

.diagram-line::after {
    left: 50%;
    bottom: 0.55rem;
    width: 0.72rem;
    height: 0.72rem;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    transform: translateX(-50%);
}

.split-line::after {
    display: none;
}

.diagram-branches {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1rem, 3vw, 1.6rem);
}

.diagram-number {
    display: inline-grid;
    place-items: center;
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 999px;
    color: var(--green);
    background: linear-gradient(135deg, var(--sun), #ffe58a);
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.diagram-node h3 {
    color: var(--green);
    font-size: clamp(1.2rem, 2vw, 1.65rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}

.diagram-subtitle {
    color: var(--muted);
    font-weight: 700;
    margin-bottom: 1rem;
}

.diagram-node ul {
    display: grid;
    gap: 0.65rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.diagram-node li {
    position: relative;
    color: var(--text);
    font-weight: 700;
    line-height: 1.45;
    padding-left: 1.75rem;
}

    .diagram-node li::before {
        position: absolute;
        left: 0;
        top: 0.1rem;
        display: grid;
        place-items: center;
        width: 1.15rem;
        height: 1.15rem;
        content: '✓';
        border-radius: 999px;
        color: #fff;
        background: var(--green-bright);
        font-size: 0.7rem;
        font-weight: 900;
    }

.community-node {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(237, 248, 223, 0.92)), radial-gradient(circle at 90% 12%, rgba(255, 178, 13, 0.22), transparent 8rem);
}

.result-node {
    color: var(--green-deep);
    background: linear-gradient(135deg, #fff8df, rgba(237, 248, 223, 0.96));
}

    .result-node .diagram-kicker {
        color: var(--green-bright);
        opacity: 1;
    }

/* ==========================================================================
   8. PRICING & COMPARISON TABLES (DESKTOP)
   ========================================================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.pricing-card {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 1.6rem;
    background: radial-gradient(circle at 90% 0%, rgba(255, 178, 13, 0.18), transparent 10rem), rgba(255, 255, 255, 0.88);
    box-shadow: 0 16px 44px rgba(7, 59, 50, 0.08);
    padding: clamp(1.35rem, 3vw, 1.8rem);
}

    .pricing-card::after {
        position: absolute;
        inset: auto -2rem -3rem auto;
        width: 8rem;
        height: 8rem;
        content: '';
        border-radius: 999px;
        background: rgba(88, 169, 0, 0.12);
    }

    .pricing-card.featured {
        color: #fff;
        background: radial-gradient(circle at 92% 8%, rgba(255, 178, 13, 0.32), transparent 9rem), linear-gradient(135deg, var(--green-deep), var(--green-bright));
    }

    .pricing-card.savings-card {
        background: radial-gradient(circle at 92% 8%, rgba(88, 169, 0, 0.24), transparent 10rem), linear-gradient(145deg, #ffffff, var(--green-soft));
    }

.pricing-label {
    display: inline-flex;
    align-items: center;
    border: 1px solid currentColor;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    opacity: 0.82;
    padding: 0.45rem 0.7rem;
    text-transform: uppercase;
}

.pricing-card strong {
    display: block;
    font-size: clamp(2rem, 3.8vw, 3.15rem);
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: 0.9;
    margin-bottom: 1rem;
}

.pricing-card p {
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}

.pricing-card.featured p {
    color: rgba(255, 255, 255, 0.86);
}

.price-metric-grid {
    margin-top: 1rem;
}

.price-highlight-section {
    padding-top: clamp(1rem, 4vw, 3rem);
}

.price-info-panel,
.imprint-panel {
    margin-top: 0;
}

/* Originales Desktop-Design für Tabellen-Komponenten */
.comparison-wrapper {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.comparison-header {
    text-align: center;
    margin-bottom: 2rem;
}

    .comparison-header h2 {
        margin-bottom: .5rem;
    }

    .comparison-header p {
        color: #64748b;
    }

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

    .comparison-table thead th {
        background: #0f766e;
        color: white;
        padding: 1rem;
        text-align: left;
    }

    .comparison-table td {
        padding: 1rem;
        border-bottom: 1px solid #e5e7eb;
    }

    .comparison-table tbody tr:hover {
        background: #f8fafc;
    }

    .comparison-table tfoot td {
        font-weight: 700;
        font-size: 1.1rem;
        background: #f0fdf4;
    }

.positive {
    color: #16a34a;
    font-weight: 700;
}

.negative {
    color: #dc2626;
}

.neutral {
    color: #2563eb;
}

.saving-banner {
    margin-top: 1.5rem;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: white;
    padding: 1.25rem;
    border-radius: 16px;
    text-align: center;
    font-size: 1.2rem;
}

    .saving-banner strong {
        display: block;
        font-size: 2rem;
        margin: .3rem 0;
    }

    .saving-banner span {
        display: block;
        opacity: .9;
    }

/* ==========================================================================
   9. COOKIE CONSENT BANNER
   ========================================================================== */
.cookie-consent-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1040;
    background: rgba(2, 22, 13, 0.2);
    backdrop-filter: blur(2px);
}

.cookie-consent,
.cookie-preferences {
    position: fixed;
    z-index: 1050;
    border: 1px solid rgba(255, 255, 255, 0.78);
    background: radial-gradient(circle at 94% 0%, rgba(255, 178, 13, 0.2), transparent 12rem), linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(237, 248, 223, 0.95));
    box-shadow: 0 28px 90px rgba(2, 31, 18, 0.28);
    color: var(--text);
}

.cookie-consent {
    right: clamp(1rem, 3vw, 2rem);
    bottom: clamp(1rem, 3vw, 2rem);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(1rem, 3vw, 1.8rem);
    align-items: end;
    width: min(920px, calc(100% - 2rem));
    border-radius: 1.6rem;
    padding: clamp(1rem, 3vw, 1.5rem);
}

    .cookie-consent h2,
    .cookie-preferences h2,
    .cookie-option h3 {
        margin: 0;
    }

    .cookie-consent p,
    .cookie-preferences p,
    .cookie-option p {
        color: var(--muted);
        line-height: 1.6;
    }

        .cookie-consent p:last-child,
        .cookie-preferences p:last-child,
        .cookie-option p:last-child {
            margin-bottom: 0;
        }

.cookie-consent__link,
.cookie-consent__settings {
    color: var(--green);
    font-weight: 800;
}

.cookie-consent__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: flex-end;
}

.cookie-preferences {
    top: 50%;
    left: 50%;
    width: min(680px, calc(100% - 2rem));
    max-height: calc(100vh - 2rem);
    overflow: auto;
    border-radius: 1.8rem;
    padding: clamp(1.15rem, 3vw, 1.8rem);
    transform: translate(-50%, -50%);
}

.cookie-preferences__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cookie-preferences__close {
    display: grid;
    place-items: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    color: var(--green);
    font-size: 1.6rem;
    line-height: 1;
}

.cookie-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border: 1px solid var(--line);
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.72);
    margin-top: 0.85rem;
    padding: 1rem;
}

    .cookie-option input {
        width: 1.35rem;
        height: 1.35rem;
        accent-color: var(--green-bright);
        flex: 0 0 auto;
    }

.cookie-option__state {
    flex: 0 0 auto;
    border-radius: 999px;
    background: var(--green-soft);
    color: var(--green);
    font-size: 0.82rem;
    font-weight: 900;
    padding: 0.45rem 0.7rem;
}

.cookie-preferences__actions {
    justify-content: flex-start;
    margin-top: 1.2rem;
}

.cookie-settings-trigger {
    position: fixed;
    left: 1rem;
    bottom: 1rem;
    z-index: 50;
    border: 1px solid rgba(7, 59, 50, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 12px 34px rgba(7, 59, 50, 0.14);
    color: var(--green);
    font-size: 0.82rem;
    font-weight: 900;
    padding: 0.6rem 0.85rem;
    backdrop-filter: blur(14px);
}

/* Privacy */
.privacy-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    align-items: start;
}

.privacy-content {
    display: grid;
    gap: 0.75rem;
}

    .privacy-content h3 {
        color: var(--green);
        font-size: 1.05rem;
        font-weight: 900;
        margin: 0.5rem 0 0;
    }

/* ==========================================================================
   10. MEDIA QUERIES (RESPONSIVE STYLING)
   ========================================================================== */

/* Standard-Hinweis im Desktop-Modus unsichtbar */
.rotate-device-hint {
    display: none;
}

/* --- Bis max. 900px Breite --- */
@media (max-width: 900px) {
    .hero-section,
    .section-heading,
    .benefit-grid,
    .steps-section,
    .cta-section,
    .info-panel,
    .launch-status-card,
    .pricing-grid,
    .privacy-panel {
        grid-template-columns: 1fr;
    }

    .hero-section {
        min-height: auto;
    }

    .cta-section {
        align-items: start;
    }

    /* Connection Diagram Anpassung mobil */
    .diagram-branches {
        grid-template-columns: 1fr;
    }

    .diagram-line {
        display: block;
        width: 2px;
        height: 3rem;
        background: rgba(7, 63, 34, 0.32);
    }

        .diagram-line::before,
        .diagram-line span::before {
            display: none;
        }

    .split-line::after,
    .merge-line::after {
        display: block;
        bottom: -0.05rem;
    }

    .launch-status-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: clamp(1.2rem, 4vw, 1.75rem);
    }
}

/* --- MOBILGERÄTE IM HOCHFORMAT (Portrait) --- */
@media (max-width: 768px) and (orientation: portrait) {
    /* Versteckt die eigentliche Tabelle und die Ersparnis-Banner komplett */
    .table-responsive,
    .comparison-table,
    .saving-banners-container {
        display: none !important;
    }

    /* Blendet das Hinweisschild stilvoll ein */
    .rotate-device-hint {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 3rem 1rem;
        box-sizing: border-box;
    }

    .rotate-card {
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid var(--line);
        border-radius: 20px;
        padding: 2.25rem 1.5rem;
        text-align: center;
        max-width: 340px;
        box-shadow: var(--shadow);
    }

        .rotate-card h3 {
            color: var(--green-deep);
            font-weight: 800;
            font-size: 1.25rem;
            margin: 1rem 0 0.5rem;
        }

        .rotate-card p {
            color: var(--muted);
            font-size: 0.92rem;
            line-height: 1.5;
            margin-bottom: 0;
        }

    /* Das animierte Smartphone-Icon */
    .phone-icon-wrapper {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 4.5rem;
        height: 4.5rem;
        background: var(--green-soft);
        color: var(--green);
        border-radius: 50%;
    }

    .phone-svg {
        width: 2.5rem;
        height: 2.5rem;
        animation: rotatePhone 2.2s ease-in-out infinite;
    }

    /* Die Drehanimation des Handys um exakt 90 Grad */
    @keyframes rotatePhone {
        0%, 15% {
            transform: rotate(0deg);
        }

        40%, 65% {
            transform: rotate(-90deg);
        }

        90%, 100% {
            transform: rotate(0deg);
        }
    }

    /* Cookie Banner Anpassung mobil im Portrait-Modus */
    .cookie-consent {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        grid-template-columns: 1fr;
        width: auto;
        padding: 1.25rem;
        gap: 1.2rem;
    }

    .cookie-consent__actions {
        flex-direction: column;
        width: 100%;
        gap: 0.6rem;
    }

        .cookie-consent__actions > * {
            width: 100%;
            text-align: center;
            padding: 0.8rem 1.2rem;
        }

    .cookie-preferences {
        top: auto;
        bottom: 0;
        left: 0;
        transform: none;
        width: 100%;
        max-height: 85vh;
        border-radius: 1.8rem 1.8rem 0 0;
        border-bottom: none;
        border-left: none;
        border-right: none;
        padding: 1.25rem;
        box-shadow: 0 -10px 40px rgba(2, 31, 18, 0.2);
    }

    .cookie-option {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
    }

        .cookie-option h3 {
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
        }

        .cookie-option p {
            font-size: 0.88rem;
            line-height: 1.4;
        }

        .cookie-option input[type="checkbox"] {
            width: 1.6rem;
            height: 1.6rem;
            margin: 0;
            cursor: pointer;
        }

    .cookie-preferences__actions {
        margin-top: 1.5rem;
        flex-direction: column;
    }
}

/* --- MOBILGERÄTE IM QUERFORMAT (Landscape) --- */
@media (max-width: 900px) and (orientation: landscape) {
    /* Blendet den Hinweis aus */
    .rotate-device-hint {
        display: none !important;
    }

    /* Aktiviert die Tabelle in ihrer echten, wunderschönen Standardstruktur */
    .table-responsive,
    .comparison-table {
        display: table !important;
        width: 100% !important;
    }

        .comparison-table th,
        .comparison-table td {
            white-space: nowrap !important;
            padding: 0.75rem 0.85rem !important;
            font-size: 0.88rem; /* Minimal kleiner im Querformat, damit alles nebeneinander passt */
        }

    .comparison-header h2 {
        font-size: 1.35rem;
    }

    .saving-banners-container {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .saving-banner {
        padding: 0.85rem;
    }

        .saving-banner strong {
            font-size: 1.4rem;
        }
}

/* --- Bis max. 560px Breite (Kleine Smartphones) --- */
@media (max-width: 560px) {
    .logo-orb {
        min-height: 280px;
    }

    .hero-actions,
    .hero-actions .btn,
    .cta-section .btn {
        width: 100%;
    }

    .metric-grid {
        grid-template-columns: 1fr;
    }

    .countdown-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 0.4rem;
    }

    .countdown-item {
        min-height: 4.8rem;
        border-radius: 0.85rem;
        padding: 0.4rem 0.2rem;
    }

        .countdown-item strong {
            font-size: clamp(1.35rem, 6vw, 1.85rem);
        }

        .countdown-item span {
            font-size: 0.65rem;
            letter-spacing: 0.04em;
        }

    .countdown-panel {
        padding: 0.85rem;
    }
}

/* ==========================================================================
   11. EXTRA ADDONS (SLIDER & WHATSAPP-FLOAT)
   ========================================================================== */
.banner-slider {
    position: relative;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
}

.slides {
    display: flex;
    width: 300%;
    height: 100%;
    animation: slider 18s infinite;
}

    .slides img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.35);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 2rem;
}

@keyframes slider {
    0%, 30% {
        transform: translateX(0);
    }

    33%, 63% {
        transform: translateX(-33.333%);
    }

    66%, 96% {
        transform: translateX(-66.666%);
    }

    100% {
        transform: translateX(0);
    }
}

.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 64px;
    height: 64px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,.25);
    z-index: 9999;
    transition: all .2s ease;
}

    .whatsapp-float:hover {
        transform: scale(1.1);
        color: white;
    }
