/* Hägele Datenservice – Landingpage Sicherheitscheck */

:root {
    --navy: #0a1f3d;
    --navy-mid: #122d52;
    --navy-light: #1a3d6b;
    --gold: #d4a017;
    --gold-light: #f0c14d;
    --gold-glow: rgba(212, 160, 23, 0.35);
    --white: #ffffff;
    --off: #f4f7fb;
    --text: #1e293b;
    --muted: #64748b;
    --danger: #dc2626;
    --danger-bg: #fef2f2;
    --danger-border: #fecaca;
    --warn: #d97706;
    --ok: #059669;
    --radius: 14px;
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    --max-w: 1100px;
    --content-w: 880px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: var(--off);
    line-height: 1.6;
}

.landing { overflow-x: hidden; }

/* ── Hero (nur Landingpage – nicht Vollbericht .hero) ── */
.landing .hero {
    position: relative;
    background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 40%, #0d2847 100%);
    color: var(--white);
    padding: 0 1.25rem 4rem;
    min-height: 92vh;
    display: flex;
    flex-direction: column;
}
.landing .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 0%, var(--gold-glow), transparent 55%),
        radial-gradient(ellipse 60% 40% at 90% 80%, rgba(56, 120, 200, 0.15), transparent);
    pointer-events: none;
}
.landing .hero-inner {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 2rem;
}
.landing .hero-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}
.landing .hero-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.hds-brand-mark {
    display: inline-block;
    max-width: 100%;
    text-decoration: none;
    color: inherit;
}
.hds-brand-mark:hover .hds-brand-name {
    filter: brightness(1.08);
}
.hds-brand-mark img {
    display: block;
    max-height: 72px;
    width: auto;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,.3));
}
.hds-brand-name {
    display: inline-block;
    margin-top: .45rem;
    font-size: clamp(0.62rem, 1.75vw, 0.88rem);
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1.15;
    white-space: nowrap;
    transform-origin: left center;
}
.landing .hero-logo-fallback {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: .04em;
}
.landing .hero-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: .2rem;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--gold-light);
    border: 1px solid rgba(212, 160, 23, .45);
    padding: .5rem .95rem;
    border-radius: 999px;
    background: rgba(0,0,0,.2);
    text-align: center;
    line-height: 1.25;
}
.landing .hero-badge-subline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .15rem .35rem;
    font-size: .52rem;
    letter-spacing: .06em;
    text-transform: none;
    font-weight: 600;
    opacity: .92;
    max-width: 18rem;
    line-height: 1.35;
}
.landing .hero-badge-subline .product-name {
    font-size: inherit;
    font-weight: 700;
}
.landing .hero-badge-subline .check-suite-sep {
    opacity: .65;
    font-weight: 400;
}
.landing .hero-badge-main {
    display: block;
    font-size: .95rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: none;
    color: #fff;
    line-height: 1.2;
}
.landing .hero-badge-line { display: block; }
.landing .hero-badge-sub {
    display: block;
    font-size: .62rem;
    letter-spacing: .1em;
    opacity: .88;
    text-transform: none;
    font-weight: 600;
}

/* WebCheck + MailCheck – Produktnamen (Landing, Scan, Teaser) */
.product-name {
    font-weight: 800;
    letter-spacing: -.02em;
}
.product-name--web { color: var(--gold-light); }
.product-name--mail { color: #7dd3fc; }
.product-name--domain { color: #6ee7b7; }
.product-name--brand { color: #c4b5fd; }
.product-name--cloud { color: #7dd3fc; }
.landing .product-name--web,
.landing .product-name--mail,
.landing .product-name--domain,
.landing .product-name--brand,
.landing .product-name--cloud { text-shadow: 0 1px 2px rgba(0,0,0,.25); }

/* 5in1 Check – groß + Einzelchecks klein darunter */
.check-suite-main {
    display: block;
    font-weight: 900;
    letter-spacing: -.03em;
    line-height: 1.05;
    text-transform: none;
}
.check-suite-sub {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .2rem .35rem;
    font-weight: 600;
    line-height: 1.4;
}
.check-suite-sub .product-name {
    font-weight: 700;
}
.check-suite-sep {
    opacity: .55;
    font-weight: 400;
}
.check-suite-tagline,
.check-suite-heading .hero-h1-sub {
    flex: 1 1 100%;
    display: block;
    font-weight: 600;
    opacity: .92;
}
.check-suite-prefix {
    display: block;
    font-size: .55em;
    font-weight: 600;
    opacity: .85;
    letter-spacing: .02em;
    margin-bottom: .15rem;
}

.landing .check-suite-heading {
    margin: 0 0 1rem;
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
}
.landing .check-suite-heading .check-suite-main {
    font-size: clamp(2.35rem, 6vw, 4rem);
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.landing .check-suite-heading .check-suite-sub {
    font-size: clamp(.72rem, 1.6vw, .88rem);
    opacity: .9;
}
.landing .check-suite-heading .check-suite-tagline,
.landing .check-suite-heading .hero-h1-sub {
    font-size: clamp(1.05rem, 2.4vw, 1.4rem);
    margin-top: .15rem;
    color: rgba(255,255,255,.92);
}

.hero-product-duo {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 1.75rem;
}
.hero-product {
    padding: 1rem 1.15rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
}
.hero-product .product-name {
    display: block;
    font-size: 1.05rem;
    margin-bottom: .35rem;
}
.hero-product p {
    margin: 0;
    font-size: .88rem;
    opacity: .88;
    line-height: 1.45;
}
.hero-product--web { border-left: 3px solid var(--gold); }
.hero-product--mail { border-left: 3px solid #38bdf8; }
.hero-product--domain { border-left: 3px solid #34d399; }
.hero-product--brand { border-left: 3px solid #a78bfa; }
.hero-product--cloud { border-left: 3px solid #0ea5e9; }
.hero-product-trio,
.hero-product-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.hero-checks-fold {
    margin-bottom: 1.25rem;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: var(--radius);
    background: rgba(255,255,255,.04);
}
.hero-checks-fold > summary {
    cursor: pointer;
    padding: .85rem 1.1rem;
    font-weight: 600;
    color: var(--gold-light);
    list-style: none;
}
.hero-checks-fold > summary::-webkit-details-marker { display: none; }
.hero-checks-fold > summary::after {
    content: ' ▾';
    opacity: .7;
    font-weight: 400;
}
.hero-checks-fold[open] > summary::after { content: ' ▴'; }
.hero-checks-fold .hero-product-grid--fold {
    padding: 0 1rem 1rem;
    margin-bottom: 0;
}

.hds-brand-mark--partner {
    text-decoration: none;
    color: inherit;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .5rem .65rem;
}
.hds-brand-partner-via {
    font-size: .72rem;
    opacity: .75;
    width: 100%;
    margin-left: 0;
}

.landing .scan-partner-hint {
    margin: 0 0 1rem;
    padding: .65rem .85rem;
    border-radius: 8px;
    background: rgba(201,162,39,.12);
    border: 1px solid rgba(201,162,39,.35);
    font-size: .88rem;
}

.landing .hero h1.check-suite-heading {
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
}
.landing .hero h1 .hero-plus {
    font-weight: 400;
    opacity: .75;
    font-size: .9em;
}
.landing .hero h1 .hero-h1-sub {
    flex: 1 1 100%;
    display: block;
    font-size: clamp(1.1rem, 2.5vw, 1.45rem);
    font-weight: 600;
    opacity: .92;
    margin-top: .15rem;
}
.landing .hero h1 em {
    font-style: normal;
    color: var(--gold-light);
}
.landing .hero-lead {
    font-size: clamp(1.05rem, 2.2vw, 1.35rem);
    opacity: .92;
    max-width: 42rem;
    margin: 0 0 2rem;
    line-height: 1.55;
}
.landing .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem .6rem;
    align-items: stretch;
    max-width: 52rem;
}
.landing .hero-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    font-weight: 700;
    font-size: .84rem;
    line-height: 1.2;
    padding: .62rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform .15s, box-shadow .15s, background .15s, border-color .15s, color .15s;
    white-space: nowrap;
}
.landing .hero-actions .hero-btn--main {
    font-size: .92rem;
    font-weight: 800;
    padding: .72rem 1.2rem;
}
.landing .hero-actions .btn-outline {
    color: rgba(255,255,255,.92);
    background: rgba(255,255,255,.07);
    border-color: rgba(255,255,255,.28);
}
.landing .hero-actions .btn-outline:hover {
    color: var(--gold-light);
    background: rgba(255,255,255,.12);
    border-color: rgba(240, 193, 77, .55);
    transform: translateY(-1px);
}
.landing .hero-actions .btn-light {
    color: #0a1f3d;
    background: linear-gradient(180deg, #fff 0%, #f1f5f9 100%);
    border-color: rgba(255,255,255,.65);
    box-shadow: 0 4px 14px rgba(0,0,0,.18);
}
.landing .hero-actions .btn-light:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0,0,0,.22);
}
.landing .hero-actions .btn-primary {
    box-shadow: 0 6px 18px var(--gold-glow);
}
.landing .hero-actions .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px var(--gold-glow);
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 100%);
    color: var(--navy);
    font-weight: 800;
    font-size: 1.05rem;
    padding: 1rem 1.75rem;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 8px 24px var(--gold-glow);
    transition: transform .15s, box-shadow .15s;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px var(--gold-glow);
}
.btn-ghost {
    color: rgba(255,255,255,.85);
    text-decoration: none;
    font-size: .95rem;
    border-bottom: 1px solid rgba(255,255,255,.3);
}
.btn-ghost:hover { color: var(--gold-light); border-color: var(--gold-light); }
.landing .hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,.12);
}
.stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255,255,255,.06);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,.08);
}
.stat strong {
    display: block;
    font-size: 1.75rem;
    color: var(--gold-light);
    line-height: 1.2;
}
.stat span { font-size: .78rem; opacity: .8; text-transform: uppercase; letter-spacing: .06em; }
.stat--highlight {
    background: linear-gradient(145deg, rgba(212,160,23,.25), rgba(212,160,23,.08));
    border-color: rgba(240,193,77,.55);
    box-shadow: 0 0 0 1px rgba(240,193,77,.2);
}

/* Prüfungen-Grid (WebCheck + MailCheck) */
.checks-band {
    background: var(--white);
    padding: 3.5rem 1.25rem;
    border-bottom: 1px solid #e2e8f0;
}
.checks-band-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.checks-band .section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2rem;
}
.checks-kicker {
    margin: 0 0 .35rem;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--gold);
    font-weight: 700;
}
.checks-band .section-head h2 {
    margin: 0 0 .65rem;
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    color: var(--navy);
}
.checks-band .section-head p {
    margin: 0;
    color: var(--muted);
    font-size: .95rem;
}
.checks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
}
.check-tile {
    padding: 1.15rem 1.2rem;
    border-radius: var(--radius);
    border: 1px solid #e2e8f0;
    background: var(--off);
    transition: border-color .15s, box-shadow .15s;
}
.check-tile:hover {
    border-color: #cbd5e1;
    box-shadow: 0 8px 24px rgba(10, 31, 61, .06);
}
.check-tile--mail {
    background: linear-gradient(145deg, #f0f9ff 0%, #fff 100%);
    border-color: #bae6fd;
}
.check-tile--domain {
    background: linear-gradient(145deg, #ecfdf5 0%, #fff 100%);
    border-color: #6ee7b7;
}
.check-tile--brand {
    background: linear-gradient(145deg, #f5f3ff 0%, #fff 100%);
    border-color: #c4b5fd;
}
.check-tile--cloud {
    background: linear-gradient(145deg, #ecfeff 0%, #fff 100%);
    border-color: #7dd3fc;
}
.check-tile-icon {
    font-size: 1.35rem;
    display: block;
    margin-bottom: .35rem;
}
.check-tile-tag {
    display: inline-block;
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 700;
    padding: .2rem .5rem;
    border-radius: 999px;
    margin-bottom: .45rem;
}
.check-tile--web .check-tile-tag {
    background: rgba(212, 160, 23, .15);
    color: #92400e;
}
.check-tile--mail .check-tile-tag {
    background: rgba(56, 189, 248, .2);
    color: #0369a1;
}
.check-tile--domain .check-tile-tag {
    background: rgba(52, 211, 153, .2);
    color: #047857;
}
.check-tile--brand .check-tile-tag {
    background: rgba(167, 139, 250, .25);
    color: #6d28d9;
}
.check-tile--cloud .check-tile-tag {
    background: rgba(14, 165, 233, .2);
    color: #0369a1;
}
.check-tile h3 {
    margin: 0 0 .35rem;
    font-size: 1rem;
    color: var(--navy);
}
.check-tile p {
    margin: 0;
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.45;
}
.checks-band .section-head a {
    color: var(--navy);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.checks-band .section-head a:hover { color: var(--gold); }

/* ── Alleinstellungen (USP-Band) ── */
.usp-band {
    background: linear-gradient(180deg, #fff 0%, var(--off) 40%, #eef4fb 100%);
    padding: 4rem 1.25rem;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}
.usp-band-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.usp-band-kicker {
    margin: 0 0 .35rem;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--gold);
    font-weight: 700;
}
.usp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
@media (max-width: 820px) {
    .usp-grid { grid-template-columns: 1fr; }
}
.usp-card {
    display: grid;
    grid-template-columns: 1fr minmax(180px, 42%);
    gap: 1rem;
    align-items: stretch;
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    padding: 1.35rem 1.25rem;
    box-shadow: 0 8px 28px rgba(10, 31, 61, .06);
    transition: box-shadow .2s, border-color .2s;
}
.usp-card:hover {
    border-color: rgba(212, 160, 23, .45);
    box-shadow: 0 14px 36px rgba(10, 31, 61, .1);
}
@media (max-width: 640px) {
    .usp-card {
        grid-template-columns: 1fr;
    }
    .usp-card-mock { order: -1; }
}
.usp-card-tag {
    display: inline-block;
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 700;
    color: #92400e;
    background: rgba(212, 160, 23, .12);
    padding: .2rem .5rem;
    border-radius: 999px;
    margin-bottom: .5rem;
}
.usp-card-icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: .35rem;
}
.usp-card h3 {
    margin: 0 0 .5rem;
    font-size: 1.08rem;
    color: var(--navy);
    line-height: 1.3;
}
.usp-card-lead {
    margin: 0 0 .65rem;
    font-size: .88rem;
    color: #475569;
    line-height: 1.55;
}
.usp-card-bullets {
    margin: 0;
    padding-left: 1.1rem;
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.45;
}
.usp-card-bullets li { margin-bottom: .3rem; }
.usp-card-mock {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
}
.usp-mock-hacker,
.usp-mock-proof,
.usp-mock-hoster,
.usp-mock-monitor {
    width: 100%;
    background: var(--off);
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: .75rem .85rem;
    font-size: .75rem;
}
.usp-mock-hacker-head {
    font-weight: 800;
    color: var(--navy);
    margin-bottom: .5rem;
    font-size: .78rem;
}
.usp-mock-hacker-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.usp-mock-hacker-list li {
    display: flex;
    align-items: center;
    gap: .35rem;
    padding: .35rem 0;
    border-bottom: 1px solid #e2e8f0;
    color: #334155;
    font-size: .72rem;
}
.usp-mock-hacker-list li:last-child { border-bottom: 0; }
.usp-mock-rank {
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    font-size: .62rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.usp-mock-sev {
    font-size: .58rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: .1rem .35rem;
    border-radius: 4px;
    flex-shrink: 0;
}
.usp-mock-sev--k { background: #fef2f2; color: #b91c1c; }
.usp-mock-sev--h { background: #fff7ed; color: #c2410c; }
.usp-mock-proof-row {
    display: flex;
    justify-content: space-between;
    font-size: .72rem;
    color: var(--muted);
    margin-bottom: .35rem;
}
.usp-mock-proof-row strong { color: #059669; }
.usp-mock-proof-path {
    font-family: ui-monospace, monospace;
    font-size: .7rem;
    color: var(--navy);
    font-weight: 600;
    margin-bottom: .4rem;
    word-break: break-all;
}
.usp-mock-proof-snippet {
    margin: 0;
    padding: .45rem .5rem;
    background: #1e293b;
    color: #e2e8f0;
    border-radius: 6px;
    font-size: .65rem;
    line-height: 1.4;
}
.usp-mock-proof-note {
    margin: .4rem 0 0;
    font-size: .65rem;
    color: var(--muted);
    text-align: center;
}
.usp-mock-hoster-label {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .4rem;
    font-size: .72rem;
}
.usp-mock-hoster-text {
    margin: 0;
    padding: .5rem;
    background: #fff;
    border: 1px dashed #cbd5e1;
    border-radius: 6px;
    font-size: .62rem;
    line-height: 1.45;
    color: #475569;
    white-space: pre-wrap;
}
.usp-mock-monitor-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .35rem 0;
}
.usp-mock-score {
    font-size: 1.25rem;
    font-weight: 800;
}
.usp-mock-score--bad { color: #dc2626; }
.usp-mock-score--ok { color: #059669; }
.usp-mock-monitor-arrow {
    text-align: center;
    font-size: .65rem;
    color: var(--muted);
    padding: .25rem 0;
}
.usp-mock-monitor-code {
    margin: .45rem 0 0;
    font-size: .62rem;
    color: var(--muted);
    text-align: center;
}
.usp-band-cta {
    text-align: center;
    margin: 2.25rem 0 0;
}
.usp-band-cta .btn-primary { margin-bottom: .75rem; }
.usp-band-cta-note {
    display: block;
    font-size: .82rem;
    color: var(--muted);
}

.hero-monitor {
    margin: 2rem 0 0;
    padding: 1.35rem 1.4rem;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(212,160,23,.18) 0%, rgba(255,255,255,.06) 100%);
    border: 2px solid rgba(240,193,77,.45);
    box-shadow: 0 12px 40px rgba(0,0,0,.2);
    max-width: 52rem;
}
.hero-monitor-badge {
    margin: 0 0 .5rem;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--gold-light);
    font-weight: 700;
}
.hero-monitor-title {
    margin: 0 0 .65rem;
    font-size: clamp(1.35rem, 3.5vw, 2rem);
    line-height: 1.15;
    color: #fff;
    font-weight: 800;
}
.hero-monitor-lead {
    margin: 0 0 .85rem;
    font-size: 1rem;
    line-height: 1.55;
    opacity: .95;
    max-width: 46rem;
}
.hero-monitor-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: .35rem;
    font-size: .92rem;
    opacity: .92;
}

.monitor-band {
    background: linear-gradient(90deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy) 100%);
    color: #fff;
    padding: 3rem 1.25rem;
    border-top: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold);
}
.monitor-band-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
}
@media (max-width: 800px) {
    .monitor-band-inner { grid-template-columns: 1fr; text-align: center; }
}
.monitor-band-kicker {
    margin: 0 0 .35rem;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--gold-light);
    font-weight: 700;
}
.monitor-band-copy h2 {
    margin: 0 0 .75rem;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.15;
}
.monitor-band-copy p {
    margin: 0;
    max-width: 36rem;
    line-height: 1.55;
    opacity: .9;
}
.monitor-band-price {
    text-align: center;
    padding: 1.25rem 1.5rem;
    background: rgba(255,255,255,.08);
    border-radius: var(--radius);
    border: 1px solid rgba(240,193,77,.35);
    min-width: 220px;
}
.monitor-band-amount {
    display: block;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--gold-light);
    line-height: 1;
}
.monitor-band-once {
    display: block;
    font-size: .82rem;
    opacity: .75;
    margin: .35rem 0 .75rem;
}
.monitor-band-plus {
    display: block;
    font-size: .95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}
.step--gold {
    border-color: rgba(212,160,23,.45);
}
.step--gold .step-num { background: var(--gold); color: var(--navy); }

/* ── E-Mail-Leak Werbeblock ── */
.email-leak-band {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0c2340 0%, #123a5c 45%, #0a2848 100%);
    color: #fff;
    padding: 3.5rem 1.25rem;
    border-top: 1px solid rgba(147, 197, 253, .2);
    border-bottom: 1px solid rgba(147, 197, 253, .15);
}
.email-leak-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 80% at 0% 50%, rgba(59, 130, 246, .22), transparent 60%),
        radial-gradient(ellipse 40% 60% at 100% 20%, rgba(212, 160, 23, .12), transparent 55%);
    pointer-events: none;
}
.email-leak-inner {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
    align-items: center;
}
@media (max-width: 900px) {
    .email-leak-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .email-leak-visual { order: -1; max-width: 420px; margin: 0 auto; width: 100%; }
}
.email-leak-kicker {
    display: inline-block;
    margin: 0 0 .75rem;
    padding: .35rem .75rem;
    font-size: .68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: #bfdbfe;
    background: rgba(59, 130, 246, .2);
    border: 1px solid rgba(147, 197, 253, .35);
    border-radius: 999px;
}
.email-leak-copy h2 {
    margin: 0 0 1rem;
    font-size: clamp(1.65rem, 3.5vw, 2.35rem);
    line-height: 1.12;
    font-weight: 800;
    max-width: 18ch;
}
.email-leak-lead {
    margin: 0 0 1.25rem;
    font-size: 1.02rem;
    line-height: 1.6;
    opacity: .92;
    max-width: 36rem;
}
.email-leak-lead code {
    font-size: .9em;
    padding: .1rem .35rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, .1);
    color: #fde68a;
}
.email-leak-features {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
    display: grid;
    gap: .75rem;
}
.email-leak-features li {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    font-size: .92rem;
    line-height: 1.5;
    opacity: .95;
}
.email-leak-feature-icon {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .08);
    border-radius: 8px;
    font-size: 1rem;
}
.email-leak-fine {
    margin: 0 0 1.35rem;
    font-size: .78rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, .55);
    max-width: 34rem;
}
.email-leak-cta { font-size: 1rem; }

.email-leak-visual {
    position: relative;
}
.email-leak-visual-glow {
    position: absolute;
    inset: 10% -5% -10% -5%;
    background: radial-gradient(circle, rgba(96, 165, 250, .25), transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.email-leak-mock {
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    color: var(--text);
    border-radius: 16px;
    padding: 1.15rem 1.2rem 1rem;
    box-shadow:
        0 24px 48px rgba(0, 0, 0, .35),
        0 0 0 1px rgba(255, 255, 255, .12);
    border: 1px solid rgba(147, 197, 253, .4);
}
.email-leak-mock-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: baseline;
    gap: .35rem;
    margin-bottom: .75rem;
    padding-bottom: .65rem;
    border-bottom: 1px solid #e2e8f0;
}
.email-leak-mock-title {
    font-size: .82rem;
    font-weight: 800;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: .06em;
}
.email-leak-mock-domain {
    font-size: .78rem;
    color: var(--muted);
    font-family: ui-monospace, monospace;
}
.email-leak-mock-score {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin-bottom: .85rem;
}
.email-leak-mock-pill {
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    padding: .28rem .55rem;
    border-radius: 999px;
    background: #f1f5f9;
    color: #475569;
}
.email-leak-mock-pill--bad {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}
.email-leak-mock-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.email-leak-mock-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: .35rem .5rem;
    padding: .5rem 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: .8rem;
}
.email-leak-mock-row:last-child { border-bottom: 0; }
.email-leak-mock-row--pwned {
    background: linear-gradient(90deg, #fff7ed 0%, transparent 100%);
    margin: 0 -0.5rem;
    padding-left: .5rem;
    padding-right: .5rem;
    border-radius: 6px;
}
.email-leak-mock-addr {
    font-family: ui-monospace, monospace;
    font-weight: 600;
    color: #0f172a;
}
.email-leak-mock-status {
    font-size: .68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #dc2626;
}
.email-leak-mock-status--ok { color: #059669; }
.email-leak-mock-foot {
    margin: .65rem 0 0;
    font-size: .72rem;
    color: var(--muted);
    text-align: center;
}

/* ── Sections ── */
.section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 1.25rem;
}
.section-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 2.5rem;
}
.section-head h2 {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    color: var(--navy);
    margin: 0 0 .75rem;
}
.section-head p { color: var(--muted); margin: 0; font-size: 1.05rem; }
.section--dark {
    background: var(--navy);
    color: var(--white);
    max-width: none;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}
.section--dark .section-inner { max-width: 1100px; margin: 0 auto; }
.section--dark .section-head h2 { color: var(--white); }
.section--dark .section-head p { color: rgba(255,255,255,.75); }
.section-head--ablauf {
    text-align: center;
    margin-bottom: 2rem;
}
.ablauf-kicker {
    margin: 0 0 .75rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold-light);
}
.check-suite-heading--ablauf {
    align-items: center;
    margin: 0 auto 1rem;
    max-width: 40rem;
}
.check-suite-heading--ablauf .check-suite-prefix {
    font-size: clamp(.95rem, 2vw, 1.15rem);
    font-weight: 600;
    color: rgba(255,255,255,.82);
    margin-bottom: .2rem;
}
.check-suite-heading--ablauf .check-suite-main {
    font-size: clamp(2rem, 5vw, 3rem);
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.check-suite-sub--ablauf {
    justify-content: center;
    font-size: clamp(.72rem, 1.5vw, .84rem);
    opacity: .88;
    margin-top: .15rem;
}
.check-suite-sub--ablauf .product-name--web { color: #f0c14d; }
.check-suite-sub--ablauf .product-name--mail { color: #7dd3fc; }
.check-suite-sub--ablauf .product-name--domain { color: #6ee7b7; }
.check-suite-sub--ablauf .product-name--brand { color: #c4b5fd; }
.check-suite-sub--ablauf .product-name--cloud { color: #7dd3fc; }
.ablauf-lead {
    max-width: 38rem;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.55;
    color: rgba(255,255,255,.75);
}

/* ── Risk cards ── */
.risk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.25rem;
}
.risk-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem 1.5rem 1.25rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(15, 23, 42, .06);
    transition: box-shadow .2s, border-color .2s;
}
.risk-card:hover {
    box-shadow: 0 12px 32px rgba(15, 23, 42, .1);
    border-color: var(--gold);
}
.risk-card--critical { border-left: 4px solid var(--danger); }
.risk-card--high { border-left: 4px solid var(--warn); }
.risk-card--mail {
    border-left: 4px solid #0284c7;
    background: linear-gradient(145deg, #f0f9ff 0%, var(--white) 100%);
    border-color: #bae6fd;
}
.risk-card--mail:hover {
    border-color: #38bdf8;
    box-shadow: 0 12px 32px rgba(2, 132, 199, .12);
}
.risk-card--mail .when--mail {
    color: #0369a1;
}
.risk-card--mail .product-name--mail {
    color: #0369a1;
}
.risk-card--domain {
    border-left: 4px solid #059669;
    background: linear-gradient(145deg, #ecfdf5 0%, var(--white) 100%);
    border-color: #6ee7b7;
}
.risk-card--domain:hover {
    border-color: #34d399;
    box-shadow: 0 12px 32px rgba(5, 150, 105, .12);
}
.risk-card--domain .when--domain {
    color: #047857;
}
.risk-card--domain .product-name--domain {
    color: #047857;
}
.risk-card--brand {
    border-left: 4px solid #7c3aed;
    background: linear-gradient(145deg, #f5f3ff 0%, var(--white) 100%);
    border-color: #c4b5fd;
}
.risk-card--brand:hover {
    border-color: #a78bfa;
    box-shadow: 0 12px 32px rgba(124, 58, 237, .12);
}
.risk-card--brand .when--brand { color: #6d28d9; }
.risk-card--brand .product-name--brand { color: #6d28d9; }
.risk-card--cloud {
    border-left: 4px solid #0284c7;
    background: linear-gradient(145deg, #ecfeff 0%, var(--white) 100%);
    border-color: #7dd3fc;
}
.risk-card--cloud:hover {
    border-color: #0ea5e9;
    box-shadow: 0 12px 32px rgba(2, 132, 199, .12);
}
.risk-card--cloud .when--cloud { color: #0369a1; }
.risk-card--cloud .product-name--cloud { color: #0369a1; }
.risk-icon {
    font-size: 1.75rem;
    margin-bottom: .5rem;
}
.risk-card h3 {
    margin: 0 0 .65rem;
    font-size: 1.1rem;
    color: var(--navy);
}
.risk-card .when {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--danger);
    margin-bottom: .5rem;
}
.risk-card p {
    margin: 0 0 .75rem;
    font-size: .92rem;
    color: #475569;
    line-height: 1.55;
}
.risk-card ul {
    margin: 0;
    padding-left: 1.1rem;
    font-size: .88rem;
    color: var(--muted);
}
.risk-card li { margin-bottom: .35rem; }

/* ── Steps ── */
.steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 1.15rem;
}
.steps--ablauf {
    margin-bottom: 1.5rem;
}
@media (max-width: 720px) {
    .steps { grid-template-columns: 1fr; }
}
.step {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius);
    padding: 1.35rem 1.2rem 1.15rem;
    position: relative;
}
.section--dark .step--gold {
    background: rgba(212, 160, 23, .1);
    border-color: rgba(212, 160, 23, .42);
}
.section--dark .step--gold h3 {
    color: var(--gold-light);
}
.section--dark .step--gold p {
    opacity: .9;
}
.step-num {
    position: absolute;
    top: -11px;
    left: 1rem;
    background: var(--gold);
    color: var(--navy);
    font-weight: 800;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .82rem;
}
.step h3 { margin: .35rem 0 .45rem; font-size: .98rem; line-height: 1.3; }
.step p { margin: 0; font-size: .84rem; opacity: .85; line-height: 1.48; }
.ablauf-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .5rem .65rem;
}
.ablauf-actions .ablauf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    font-weight: 700;
    font-size: .84rem;
    line-height: 1.2;
    padding: .62rem 1.05rem;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform .15s, box-shadow .15s, background .15s, border-color .15s, color .15s;
    white-space: nowrap;
}
.ablauf-actions .btn-primary {
    font-size: .92rem;
    font-weight: 800;
    padding: .72rem 1.2rem;
    box-shadow: 0 6px 18px var(--gold-glow);
}
.ablauf-actions .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px var(--gold-glow);
}
.ablauf-actions .btn-outline {
    color: rgba(255,255,255,.92);
    background: rgba(255,255,255,.07);
    border-color: rgba(255,255,255,.28);
}
.ablauf-actions .btn-outline:hover {
    color: var(--gold-light);
    background: rgba(255,255,255,.12);
    border-color: rgba(240, 193, 77, .55);
    transform: translateY(-1px);
}

/* ── IT-Partner White-Label ── */
.partner-band {
    background: linear-gradient(180deg, rgba(10,31,61,.95) 0%, rgba(18,45,82,.98) 100%);
    color: var(--white);
    padding: 2.5rem 1.25rem 2.75rem;
    scroll-margin-top: 1rem;
}
.partner-band-wrap {
    max-width: var(--content-w);
    margin: 0 auto;
}
.partner-band-card {
    padding: 1.75rem 1.5rem 1.5rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.05);
    box-shadow: 0 12px 40px rgba(0,0,0,.2);
}
.partner-band-kicker {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--gold);
    margin: 0 0 .45rem;
    font-weight: 700;
}
.partner-band-title {
    margin: 0 0 .65rem;
    font-size: clamp(1.25rem, 2.8vw, 1.65rem);
    line-height: 1.25;
    max-width: 36rem;
}
.partner-band-lead {
    margin: 0 0 1.15rem;
    font-size: .95rem;
    opacity: .9;
    line-height: 1.55;
    max-width: 38rem;
}
.partner-band-grid {
    display: grid;
    grid-template-columns: 1fr minmax(240px, 280px);
    gap: 1.25rem 1.5rem;
    align-items: start;
}
@media (max-width: 720px) {
    .partner-band-grid { grid-template-columns: 1fr; }
    .partner-band-card { padding: 1.35rem 1.15rem; }
}
.partner-band-copy p { margin: 0 0 .85rem; opacity: .9; line-height: 1.55; }
.partner-band-list {
    margin: 0 0 .85rem;
    padding-left: 1.15rem;
    line-height: 1.5;
    font-size: .9rem;
    opacity: .92;
}
.partner-band-list li { margin-bottom: .3rem; }
.partner-band-list code {
    font-size: .82rem;
    background: rgba(0,0,0,.25);
    padding: .1rem .35rem;
    border-radius: 4px;
}
.partner-band-note {
    font-size: .85rem;
    opacity: .82;
    margin: 0 0 .85rem;
    line-height: 1.5;
    max-width: 32rem;
}
.partner-band-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
}
.partner-band-actions .btn {
    font-size: .88rem;
    padding: .55rem 1rem;
}
.partner-band-aside {
    padding: 1rem 1.1rem;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(0,0,0,.18);
    font-size: .88rem;
}
.partner-band-aside h3 {
    margin: 0 0 .55rem;
    font-size: .95rem;
    color: var(--gold-light);
}
.partner-steps {
    margin: 0 0 .65rem;
    padding-left: 1.1rem;
    line-height: 1.45;
    font-size: .85rem;
}
.partner-steps li { margin-bottom: .4rem; }
.partner-link-sample {
    display: block;
    margin-top: .25rem;
    font-size: .75rem;
    opacity: .9;
    word-break: break-all;
    background: rgba(0,0,0,.2);
    padding: .35rem .45rem;
    border-radius: 6px;
}
.partner-aside-fine {
    margin: 0;
    font-size: .75rem;
    opacity: .7;
    line-height: 1.45;
}

/* Monitor-Band etwas kompakter (direkt unter Partner) */
.monitor-band-inner {
    max-width: var(--content-w);
    grid-template-columns: 1fr minmax(200px, 240px);
    gap: 1.5rem;
}
.monitor-band-copy p { max-width: none; }

/* ── CTA band ── */
.cta-band {
    background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
    color: var(--white);
    text-align: center;
    padding: 3.5rem 1.25rem;
    margin: 0;
}
.cta-band h2 { margin: 0 0 .75rem; font-size: 1.75rem; }
.cta-band p { margin: 0 0 1.5rem; opacity: .9; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ── Trust ── */
.trust {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    padding: 2rem 1.25rem;
    background: var(--white);
    border-top: 1px solid #e2e8f0;
}
.trust-item { text-align: center; max-width: 200px; }
.trust-item strong { display: block; color: var(--navy); font-size: 1.5rem; }
.trust-item span { font-size: .82rem; color: var(--muted); }

/* ── Footer ── */
.landing-foot {
    background: #071525;
    color: rgba(255,255,255,.6);
    text-align: center;
    padding: 2rem 1.25rem;
    font-size: .82rem;
}
.landing-foot a { color: var(--gold-light); }
.landing-foot--legal { padding: 1.75rem 1.25rem; }
.landing-foot-copy { margin-top: .5rem; opacity: .75; font-size: .78rem; }
.landing-foot-note {
    text-align: center;
    padding: 1rem 1.25rem 0;
    font-size: .82rem;
    color: var(--muted);
    max-width: 680px;
    margin: 0 auto;
}

/* ── Legal pages (Impressum / Datenschutz) ── */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.25rem;
}
.container-narrow { max-width: 780px; }

.site-header {
    background: var(--navy);
    color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: .85rem 0;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.site-header-brand .hds-brand-mark img { max-height: 52px; }
.site-header-brand .hds-brand-name { color: var(--gold-light); font-size: .78rem; }
.site-header-back {
    font-size: .88rem;
    padding: .45rem .9rem;
    border-radius: 999px;
}
.legal-page { background: var(--white); }

.legal { padding: 3rem 0 4rem; background: var(--white); }
.legal-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin: 0 0 1.75rem;
    color: var(--navy);
}
.legal h2 {
    font-size: 1.25rem;
    color: var(--navy);
    margin: 2rem 0 .65rem;
    padding-top: .85rem;
    border-top: 1px solid #e7ecf6;
}
.legal h3 { font-size: 1.05rem; color: var(--text); margin: 1.25rem 0 .4rem; }
.legal p { color: var(--text); margin: 0 0 .75rem; }
.legal a { color: #9a7209; text-decoration: underline; }
.legal a:hover { color: var(--gold); }
.legal-note {
    background: var(--off);
    border-left: 4px solid var(--gold);
    padding: 1rem 1.1rem;
    border-radius: 8px;
    font-size: .92rem;
    color: var(--muted) !important;
    margin-top: 1.75rem;
}
.legal-back { margin-top: 2rem; }

.legal-header {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: .5rem;
}
.legal-portrait {
    width: 180px;
    max-width: 100%;
    height: auto;
    border: 1px solid #e7ecf6;
    border-radius: 8px;
    background: var(--white);
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(10, 31, 61, 0.08);
}
.legal-header-text { flex: 1; min-width: 220px; }
.legal-header-text h2 {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    font-size: 1.25rem;
}

.btn-outline {
    display: inline-block;
    padding: .65rem 1.25rem;
    border: 2px solid var(--navy);
    border-radius: 999px;
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    font-size: .92rem;
    transition: background .2s, color .2s;
}
.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
    text-decoration: none;
}
.btn-outline--muted {
    border-color: #cbd5e1;
    color: var(--muted);
}
.btn-outline--muted:hover {
    background: var(--off);
    color: var(--navy);
    border-color: var(--navy);
}

@media (max-width: 600px) {
    .landing .hero { min-height: auto; padding-bottom: 3rem; }
    .landing .hero h1 { max-width: none; }
}

/* SEO: Skip-Link & FAQ */
.seo-skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: 9999;
    padding: .75rem 1rem;
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
}
.seo-skip-link:focus {
    left: 1rem;
    top: 1rem;
    width: auto;
    height: auto;
    overflow: visible;
}
.faq-band {
    background: #f4f6f9;
    border-top: 1px solid rgba(10, 22, 40, .06);
}
.faq-band-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 3.5rem 1.25rem 4rem;
}
.faq-kicker {
    font-size: .85rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin: 0 0 .5rem;
}
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
    background: #fff;
    border: 1px solid rgba(10, 22, 40, .08);
    border-radius: 10px;
    padding: 0 1rem;
}
.faq-item[open] { border-color: rgba(201, 162, 39, .35); }
.faq-question {
    cursor: pointer;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--navy);
    padding: 1rem 0;
    list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-question::after {
    content: '+';
    float: right;
    color: var(--gold);
    font-weight: 700;
}
.faq-item[open] .faq-question::after { content: '−'; }
.faq-answer {
    margin: 0 0 1rem;
    color: var(--muted);
    font-size: .98rem;
    line-height: 1.55;
}

/* ═══════════════════════════════════════════════════════════════
   Hub-Landingpage – Datenrettung, USB, 5in1, DigiCheck24
   ═══════════════════════════════════════════════════════════════ */
.hub-landing {
    --hub-navy: #0a1733;
    --hub-navy-2: #0e1f47;
    --hub-gold: #e6b422;
    --hub-gold-light: #f5d98a;
    --hub-gold-dark: #c8941a;
    --hub-ink: #1d2433;
    --hub-muted: #5b6577;
    --hub-soft: #f5f7fc;
    --hub-radius: 16px;
    --hub-shadow: 0 18px 40px rgba(10, 23, 51, 0.12);
    --hub-max: 1140px;
}

.hub-notdienst {
    background: linear-gradient(90deg, #8b1a1a, #b52a2a);
    color: #fff;
    text-align: center;
    padding: 10px 16px;
    font-size: .88rem;
    font-weight: 600;
}
.hub-notdienst a { color: var(--hub-gold-light); text-decoration: underline; }

.hub-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(10, 23, 51, .97);
    border-bottom: 1px solid rgba(230, 180, 34, .15);
    backdrop-filter: blur(8px);
}
.hub-header-inner {
    max-width: var(--hub-max);
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.hub-brand {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.hub-brand .hds-brand-mark img { max-height: 52px; }
.hub-brand .hds-brand-name { color: var(--hub-gold-light); font-size: .78rem; }
.hub-brand-tag {
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #aab6d3;
}
.hub-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 16px;
    font-size: .88rem;
}
.hub-nav a {
    color: #c5cfe8;
    text-decoration: none;
    padding: 6px 4px;
    border-radius: 6px;
}
.hub-nav a:hover { color: var(--hub-gold); }
.hub-header-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hub-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 600;
    font-size: .9rem;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.hub-btn:hover { transform: translateY(-2px); }
.hub-btn-lg { padding: 14px 28px; font-size: 1rem; }
.hub-btn-gold {
    background: linear-gradient(135deg, var(--hub-gold-light), var(--hub-gold) 55%, var(--hub-gold-dark));
    color: #2a2105;
    box-shadow: 0 10px 24px rgba(230, 180, 34, .35);
}
.hub-btn-outline {
    border-color: var(--hub-gold);
    color: var(--hub-gold);
    background: transparent;
}
.hub-btn-outline:hover { background: rgba(230, 180, 34, .12); }
.hub-btn-outline-light {
    border-color: rgba(255,255,255,.35);
    color: #fff;
    background: transparent;
    margin-left: 8px;
}
.hub-btn-outline-light:hover { background: rgba(255,255,255,.1); }
.hub-btn-ghost {
    color: #e8eeff;
    border-color: rgba(255,255,255,.25);
    background: transparent;
}
.hub-btn-ghost:hover { background: rgba(255,255,255,.08); }
.hub-btn-dark {
    background: var(--hub-navy-2);
    color: #fff;
    box-shadow: 0 10px 24px rgba(14, 31, 71, .3);
}
.hub-btn-dark-outline {
    border-color: var(--hub-navy-2);
    color: var(--hub-navy-2);
    background: transparent;
}
.hub-btn-dark-outline:hover { background: rgba(14, 31, 71, .06); }

.hub-hero {
    background: linear-gradient(155deg, var(--hub-navy) 0%, var(--hub-navy-2) 45%, #142a5c 100%);
    color: #eef2fb;
    padding: 64px 24px 72px;
    position: relative;
    overflow: hidden;
}
.hub-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 10% 0%, rgba(230, 180, 34, .15), transparent 55%),
        radial-gradient(ellipse 50% 40% at 95% 90%, rgba(56, 120, 200, .12), transparent);
    pointer-events: none;
}
.hub-hero-inner {
    position: relative;
    max-width: var(--hub-max);
    margin: 0 auto;
    display: grid;
    gap: 40px;
    align-items: center;
}
@media (min-width: 900px) {
    .hub-hero-inner { grid-template-columns: 1.15fr .85fr; }
}
.hub-eyebrow {
    display: inline-block;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--hub-gold);
    margin-bottom: 14px;
    font-weight: 600;
}
.hub-hero h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    line-height: 1.2;
    margin-bottom: 18px;
    color: #fff;
    font-weight: 700;
}
.hub-gold { color: var(--hub-gold); }
.hub-lead {
    font-size: 1.08rem;
    color: #aab6d3;
    margin-bottom: 24px;
    max-width: 54ch;
    line-height: 1.65;
}
.hub-value-prop {
    font-size: clamp(1.15rem, 2.5vw, 1.45rem);
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
    max-width: 48ch;
    line-height: 1.45;
}
.hub-trust-band {
    background: #fff;
    border-bottom: 1px solid #e4e9f2;
    padding: 56px 24px;
}
.hub-trust-inner {
    max-width: var(--hub-max);
    margin: 0 auto;
    display: grid;
    gap: 36px;
    align-items: start;
}
@media (min-width: 800px) {
    .hub-trust-inner { grid-template-columns: minmax(200px, 280px) 1fr; }
}
.hub-trust-photo {
    margin: 0;
    border-radius: var(--hub-radius);
    overflow: hidden;
    box-shadow: var(--hub-shadow);
    border: 3px solid var(--hub-gold);
}
.hub-trust-photo img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1;
}
.hub-trust-title {
    font-family: Georgia, serif;
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    color: var(--hub-navy-2);
    margin-bottom: 16px;
    line-height: 1.25;
}
.hub-trust-copy p {
    color: var(--hub-muted);
    line-height: 1.65;
    margin-bottom: 14px;
    font-size: .98rem;
}
.hub-trust-list {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
    display: grid;
    gap: 8px;
}
.hub-trust-list li {
    padding-left: 26px;
    position: relative;
    color: var(--hub-navy-2);
    font-size: .92rem;
    font-weight: 600;
}
.hub-trust-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--hub-gold-dark);
    font-weight: 800;
}
.hub-pillar-body p {
    font-size: .9rem;
    color: var(--hub-muted);
    line-height: 1.6;
    margin-bottom: 12px;
    text-align: left;
}
.hub-pillar-welt .hub-pillar-body { margin-bottom: 8px; }
.hub-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}
.hub-trust {
    font-size: .88rem;
    color: #8893ad;
}
.hub-hero-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(230, 180, 34, .25);
    border-radius: var(--hub-radius);
    padding: 28px;
}
.hub-hero-card h2 {
    font-family: Georgia, serif;
    font-size: 1.15rem;
    color: var(--hub-gold);
    margin-bottom: 12px;
}
.hub-hero-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: .92rem;
    color: #aab6d3;
}
.hub-hero-card li {
    padding: 6px 0 6px 22px;
    position: relative;
}
.hub-hero-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--hub-gold);
    font-weight: 700;
}

.hub-pillars {
    padding: 64px 24px;
    background: var(--hub-soft);
}
.hub-section-inner {
    max-width: var(--hub-max);
    margin: 0 auto;
}
.hub-section-narrow { max-width: 820px; }
.hub-section-title {
    font-family: Georgia, serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    text-align: center;
    margin-bottom: 12px;
    color: var(--hub-navy-2);
}
.hub-section-title-light { color: #fff; }
.hub-section-sub {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
    color: var(--hub-muted);
    line-height: 1.6;
}
.hub-section-sub-light { color: #aab6d3; }
.hub-pillar-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) { .hub-pillar-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .hub-pillar-grid { grid-template-columns: repeat(4, 1fr); } }
.hub-pillar {
    position: relative;
    background: #fff;
    border-radius: var(--hub-radius);
    padding: 28px 24px;
    box-shadow: var(--hub-shadow);
    border-top: 4px solid var(--hub-gold);
    display: flex;
    flex-direction: column;
}
.hub-pillar-featured {
    border-top-color: var(--hub-navy-2);
    box-shadow: 0 18px 40px rgba(230, 180, 34, .22);
}
.hub-pillar-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--hub-navy-2);
    color: var(--hub-gold);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 999px;
}
.hub-pillar-icon { font-size: 2rem; margin-bottom: 12px; }
.hub-pillar h3 {
    font-family: Georgia, serif;
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--hub-navy-2);
}
.hub-pillar p {
    font-size: .9rem;
    color: var(--hub-muted);
    flex: 1;
    margin-bottom: 18px;
    line-height: 1.55;
}

.hub-spotlight {
    background: linear-gradient(135deg, var(--hub-gold-light), var(--hub-gold) 55%, var(--hub-gold-dark));
    padding: 56px 24px;
}
.hub-spotlight h2 {
    font-family: Georgia, serif;
    font-size: clamp(1.5rem, 3.2vw, 2.3rem);
    color: var(--hub-navy-2);
    margin-bottom: 14px;
    line-height: 1.25;
}
.hub-spotlight-eyebrow {
    display: inline-block;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--hub-navy-2);
    font-weight: 700;
    margin-bottom: 10px;
}
.hub-spotlight-lead {
    font-size: 1.05rem;
    color: #3a2f08;
    max-width: 70ch;
    margin-bottom: 20px;
    line-height: 1.6;
}
.hub-spotlight-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin-bottom: 24px;
}
.hub-spotlight-badges span {
    background: rgba(14, 31, 71, .1);
    color: var(--hub-navy-2);
    font-size: .85rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 999px;
}
.hub-spotlight-inner {
    display: grid;
    gap: 32px;
    align-items: start;
    max-width: var(--hub-max);
    margin: 0 auto;
}
@media (min-width: 900px) {
    .hub-spotlight-inner { grid-template-columns: 1.2fr 1fr; }
}
.hub-spotlight-card {
    background: rgba(255, 255, 255, .92);
    border-radius: var(--hub-radius);
    padding: 28px 24px;
    box-shadow: var(--hub-shadow);
    color: var(--hub-navy-2);
}
.hub-spotlight-card h3 {
    font-family: Georgia, serif;
    font-size: 1.15rem;
    margin-bottom: 12px;
}
.hub-spotlight-card ul {
    margin: 0 0 16px;
    padding-left: 1.2rem;
    line-height: 1.55;
    font-size: .92rem;
}
.hub-spotlight-card-note {
    font-size: .85rem;
    margin: 0;
    color: var(--hub-muted);
}

.hub-section { padding: 72px 24px; scroll-margin-top: 80px; }
.hub-section-soft { background: var(--hub-soft); }
.hub-section-dark {
    background: linear-gradient(155deg, var(--hub-navy) 0%, var(--hub-navy-2) 100%);
    color: #eef2fb;
}

.hub-service-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
    grid-template-columns: 1fr;
}
@media (min-width: 600px) { .hub-service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .hub-service-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .hub-service-grid--dr { grid-template-columns: repeat(4, 1fr); } }
.hub-service-tile {
    background: #fff;
    border-radius: 14px;
    padding: 22px 20px;
    border: 1px solid rgba(14, 31, 71, .08);
    transition: border-color .15s, box-shadow .15s;
}
.hub-section-soft .hub-service-tile { border-color: rgba(14, 31, 71, .06); }
.hub-service-tile:hover {
    border-color: rgba(230, 180, 34, .45);
    box-shadow: 0 8px 24px rgba(10, 23, 51, .08);
}
.hub-service-tile h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--hub-navy-2);
}
.hub-service-tile p {
    font-size: .88rem;
    color: var(--hub-muted);
    margin: 0;
    line-height: 1.5;
}

.hub-detail {
    background: #fff;
    border-radius: var(--hub-radius);
    padding: 32px 28px;
    margin-bottom: 24px;
    box-shadow: var(--hub-shadow);
}
.hub-section-soft .hub-detail { background: #fff; }
.hub-detail h3 {
    font-family: Georgia, serif;
    font-size: 1.35rem;
    color: var(--hub-navy-2);
    margin-bottom: 14px;
}
.hub-detail p {
    color: var(--hub-muted);
    font-size: .95rem;
    margin-bottom: 12px;
    line-height: 1.6;
}
.hub-cta-row {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.hub-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0;
}
.hub-chip-list span {
    font-size: .78rem;
    padding: 5px 10px;
    background: var(--hub-soft);
    border-radius: 999px;
    color: var(--hub-navy-2);
    border: 1px solid rgba(14, 31, 71, .1);
}

/* ============================================================
   Datenrettung – Premium-Sektion (Hero, Mockups, Fakten, Ablauf)
   ============================================================ */

.hub-dr-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 70% 60% at 82% 12%, rgba(230, 180, 34, .16), transparent 60%),
        linear-gradient(155deg, var(--hub-navy) 0%, var(--hub-navy-2) 55%, #0a1a38 100%);
    padding: 76px 24px 84px;
    border-bottom: 1px solid rgba(230, 180, 34, .35);
}
.hub-dr-hero-inner {
    max-width: var(--hub-max);
    margin: 0 auto;
    display: grid;
    gap: 48px;
    grid-template-columns: 1fr;
    align-items: center;
}
@media (min-width: 980px) {
    .hub-dr-hero-inner { grid-template-columns: 1.05fr .95fr; }
}
.hub-dr-eyebrow {
    display: inline-block;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-weight: 700;
    color: var(--hub-gold-light);
    margin-bottom: 16px;
}
.hub-dr-title {
    font-family: Georgia, serif;
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1.15;
    color: #fff;
    margin-bottom: 18px;
}
.hub-dr-title-gold {
    background: linear-gradient(90deg, var(--hub-gold-light) 0%, var(--hub-gold) 60%, var(--hub-gold-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hub-dr-lead {
    font-size: 1.08rem;
    line-height: 1.65;
    color: #cdd6ea;
    max-width: 56ch;
    margin-bottom: 24px;
}
.hub-dr-lead strong { color: #fff; }
.hub-dr-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}
.hub-dr-badges li {
    font-size: .84rem;
    font-weight: 600;
    color: #eef2fb;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(230, 180, 34, .3);
    padding: 7px 14px;
    border-radius: 999px;
}

.hub-dr-proof {
    display: grid;
    gap: 22px;
}
.hub-dr-mock {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(3, 10, 26, .45);
    transform: rotate(-.6deg);
}
.hub-dr-mock--tiefensuche { transform: rotate(.6deg); margin-left: 6%; }
@media (max-width: 640px) {
    .hub-dr-mock, .hub-dr-mock--tiefensuche { transform: none; margin-left: 0; }
}
.hub-dr-mock-bar {
    background: var(--hub-navy-2);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.hub-dr-mock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--hub-gold);
    opacity: .55;
}
.hub-dr-mock-dot:nth-child(2) { opacity: .75; }
.hub-dr-mock-dot:nth-child(3) { opacity: .95; }
.hub-dr-mock-title {
    margin-left: 6px;
    font-size: .82rem;
    font-weight: 700;
    color: var(--hub-gold-light);
}
.hub-dr-mock-body { padding: 18px 20px 20px; }
.hub-dr-mock-note {
    font-size: .82rem;
    color: var(--hub-muted);
    margin-bottom: 12px;
}
.hub-dr-mock-list { list-style: none; padding: 0; margin: 0 0 16px; }
.hub-dr-mock-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
    border-bottom: 1px solid rgba(14, 31, 71, .07);
    font-size: .9rem;
    color: var(--hub-ink);
}
.hub-dr-mock-list li:last-child { border-bottom: none; }
.hub-dr-mock-list strong { color: var(--hub-gold-dark); font-size: .95rem; }
.hub-dr-mock-btn {
    display: inline-block;
    background: linear-gradient(180deg, var(--hub-gold-light) 0%, var(--hub-gold) 100%);
    color: var(--hub-navy-2);
    font-size: .82rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 8px;
}
.hub-dr-mock-table { width: 100%; border-collapse: collapse; font-size: .86rem; margin-bottom: 10px; }
.hub-dr-mock-table td {
    padding: 8px 4px;
    border-bottom: 1px solid rgba(14, 31, 71, .07);
    color: var(--hub-ink);
}
.hub-dr-mock-table td:first-child { font-family: Consolas, monospace; font-size: .82rem; }
.hub-dr-mock-table td:last-child { text-align: right; color: var(--hub-muted); font-size: .78rem; }
.hub-dr-mock-row--ghost td { color: var(--hub-muted); font-style: italic; }
.hub-dr-mock-row--ghost td:first-child { font-weight: 700; opacity: .6; }
.hub-dr-mock-foot { font-size: .76rem; color: var(--hub-muted); margin: 0; }

.hub-dr-facts {
    background: var(--hub-navy-2);
    border-bottom: 1px solid rgba(230, 180, 34, .2);
}
.hub-dr-facts-inner {
    max-width: var(--hub-max);
    margin: 0 auto;
    padding: 26px 24px;
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
}
@media (min-width: 720px) { .hub-dr-facts-inner { grid-template-columns: repeat(4, 1fr); } }
.hub-dr-fact strong {
    display: block;
    color: var(--hub-gold-light);
    font-size: 1.15rem;
    margin-bottom: 4px;
}
.hub-dr-fact span { color: #b9c3dc; font-size: .82rem; }

.hub-service-tile-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 1.2rem;
    margin-bottom: 12px;
    background: var(--hub-soft);
    border: 1px solid rgba(14, 31, 71, .08);
}
.hub-service-tile--handy .hub-service-tile-icon,
.hub-service-tile--ssd .hub-service-tile-icon,
.hub-service-tile--tiefensuche .hub-service-tile-icon {
    background: linear-gradient(180deg, var(--hub-gold-light) 0%, var(--hub-gold) 100%);
    border-color: transparent;
}
.hub-service-tile--tiefensuche { border-color: rgba(230, 180, 34, .5); }

.hub-dr-ablauf {
    background: linear-gradient(155deg, var(--hub-navy) 0%, var(--hub-navy-2) 100%);
    padding: 72px 24px;
    color: #eef2fb;
}
.hub-dr-ablauf-head { max-width: 680px; margin: 0 auto 40px; text-align: center; }
.hub-dr-ablauf-kicker {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--hub-gold-light);
    font-weight: 700;
    margin-bottom: 10px;
}
.hub-dr-steps {
    max-width: var(--hub-max);
    margin: 0 auto;
    display: grid;
    gap: 22px;
    grid-template-columns: 1fr;
}
@media (min-width: 720px) { .hub-dr-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .hub-dr-steps { grid-template-columns: repeat(4, 1fr); } }
.hub-dr-step {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(230, 180, 34, .18);
    border-radius: 14px;
    padding: 24px 20px;
}
.hub-dr-step h3 { color: #fff; font-size: 1.05rem; margin: 10px 0 8px; }
.hub-dr-step p { color: #b9c3dc; font-size: .88rem; line-height: 1.55; margin: 0; }
.hub-dr-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(230, 180, 34, .18);
    color: var(--hub-gold-light);
    font-weight: 700;
    font-size: .95rem;
}
.hub-dr-step--gold {
    background: linear-gradient(180deg, rgba(230, 180, 34, .16), rgba(230, 180, 34, .05));
    border-color: var(--hub-gold);
}
.hub-dr-step--gold .hub-dr-step-num {
    background: linear-gradient(180deg, var(--hub-gold-light) 0%, var(--hub-gold) 100%);
    color: var(--hub-navy-2);
}
.hub-dr-step--gold h3 { color: var(--hub-gold-light); }

.hub-sec-intro {
    background: linear-gradient(135deg, #0c2340 0%, #123a5c 50%, #0a2848 100%);
    color: #fff;
    padding: 48px 24px;
    border-top: 3px solid var(--hub-gold);
    border-bottom: 3px solid var(--hub-gold);
    scroll-margin-top: 80px;
}
.hub-sec-intro-inner {
    max-width: var(--hub-max);
    margin: 0 auto;
    display: grid;
    gap: 28px;
    align-items: center;
}
@media (min-width: 800px) {
    .hub-sec-intro-inner { grid-template-columns: auto 1fr; }
}
.hub-sec-intro-icon {
    width: 96px;
    height: 96px;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,.3));
}
.hub-sec-intro-kicker {
    margin: 0 0 .5rem;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--hub-gold-light);
    font-weight: 700;
}
.hub-sec-intro h2 {
    font-family: Georgia, serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 12px;
    line-height: 1.2;
}
.hub-sec-intro p {
    margin-bottom: 20px;
    opacity: .92;
    line-height: 1.6;
    max-width: 56ch;
}

.hub-product-band {
    display: grid;
    gap: 32px;
    align-items: center;
}
@media (min-width: 800px) {
    .hub-product-band { grid-template-columns: auto 1fr; }
}
.hub-product-logo {
    width: 88px;
    height: 88px;
    object-fit: contain;
}
.hub-product-band h2 {
    font-family: Georgia, serif;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
}
.hub-product-band p {
    color: #aab6d3;
    margin-bottom: 14px;
    font-size: .95rem;
    line-height: 1.6;
}

.hub-contact-grid {
    display: grid;
    gap: 28px;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .hub-contact-grid { grid-template-columns: 1fr 1fr; }
    .hub-contact-grid--form { grid-template-columns: 1.1fr .9fr; }
}
.hub-contact-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(230, 180, 34, .2);
    border-radius: var(--hub-radius);
    padding: 28px;
}
.hub-contact-card h3 {
    color: var(--hub-gold);
    margin-bottom: 14px;
    font-size: 1.1rem;
}
.hub-contact-card a { color: var(--hub-gold-light); }
.hub-contact-card a:hover { text-decoration: underline; }
.hub-contact-card p { margin-bottom: 8px; font-size: .95rem; }
.hub-contact-cta { margin-top: 16px; }

.hub-faq-item {
    background: #fff;
    border-radius: 12px;
    padding: 0;
    margin-bottom: 12px;
    border: 1px solid rgba(14, 31, 71, .08);
    overflow: hidden;
}
.hub-faq-item summary {
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    color: var(--hub-navy-2);
    padding: 18px 22px;
    list-style: none;
}
.hub-faq-item summary::-webkit-details-marker { display: none; }
.hub-faq-item summary::after {
    content: "+";
    float: right;
    color: var(--hub-gold-dark);
    font-weight: 800;
}
.hub-faq-item[open] summary::after { content: "−"; }
.hub-faq-item p {
    font-size: .9rem;
    color: var(--hub-muted);
    margin: 0;
    padding: 0 22px 18px;
    line-height: 1.6;
}
.hub-faq-list { margin-bottom: 8px; }
.hub-faq-group-title {
    font-family: Georgia, serif;
    font-size: 1.15rem;
    color: var(--hub-navy-2);
    margin: 28px 0 14px;
}
.hub-faq-group-title--spaced { margin-top: 36px; }

.hub-usp-band {
    background: linear-gradient(135deg, #fff9e8 0%, #f5e6b8 45%, #e6b422 100%);
    border-bottom: 3px solid var(--hub-navy-2);
    padding: 40px 24px;
}
.hub-usp-inner {
    max-width: var(--hub-max);
    margin: 0 auto;
    display: grid;
    gap: 24px;
    align-items: center;
}
@media (min-width: 900px) {
    .hub-usp-inner { grid-template-columns: auto 1fr auto; }
}
.hub-usp-badge-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
}
.hub-usp-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    background: var(--hub-navy-2);
    color: var(--hub-gold);
    font-size: 1.35rem;
    font-weight: 900;
    border: 3px solid #fff;
    box-shadow: 0 8px 24px rgba(14, 31, 71, .2);
}
.hub-usp-badge-sub {
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--hub-navy-2);
    line-height: 1.3;
}
.hub-usp-title {
    font-family: Georgia, serif;
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    color: var(--hub-navy-2);
    margin-bottom: 10px;
    line-height: 1.25;
}
.hub-usp-lead {
    font-size: .98rem;
    color: #3a2f08;
    line-height: 1.6;
    margin: 0;
    max-width: 62ch;
}
.hub-usp-seals {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}
.hub-usp-seals li {
    background: rgba(255,255,255,.75);
    border: 1px solid rgba(14, 31, 71, .12);
    border-radius: 10px;
    padding: 10px 14px;
    text-align: center;
    min-width: 120px;
}
.hub-usp-seals strong {
    display: block;
    font-size: 1.1rem;
    color: var(--hub-navy-2);
}
.hub-usp-seals span {
    font-size: .78rem;
    color: var(--hub-muted);
    font-weight: 600;
}

.hub-leistungen {
    padding: 56px 24px;
    background: #fff;
}
.hub-leistungen-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) {
    .hub-leistungen-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
    .hub-leistungen-grid { grid-template-columns: repeat(3, 1fr); }
}
.hub-leistung-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--hub-soft);
    border-radius: var(--hub-radius);
    padding: 22px 20px;
    border: 1px solid rgba(14, 31, 71, .08);
    transition: box-shadow .2s, border-color .2s, transform .2s;
}
.hub-leistung-card:hover {
    border-color: var(--hub-gold);
    box-shadow: 0 12px 28px rgba(14, 31, 71, .1);
    transform: translateY(-2px);
}
.hub-leistung-icon { font-size: 1.6rem; display: block; margin-bottom: 10px; }
.hub-leistung-card h3 {
    font-family: Georgia, serif;
    font-size: 1.05rem;
    color: var(--hub-navy-2);
    margin-bottom: 8px;
    line-height: 1.3;
}
.hub-contact-form-card { background: rgba(255,255,255,.06); }
.hub-contact-subhead {
    margin-top: 20px;
    font-size: 1.05rem;
    color: var(--hub-gold);
}
.hub-contact-form { display: grid; gap: 10px; }
.hub-form-label {
    font-size: .85rem;
    font-weight: 600;
    color: #c5d0e8;
}
.hub-form-input,
.hub-form-textarea {
    width: 100%;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 10px;
    padding: 11px 14px;
    font: inherit;
    font-size: .95rem;
    background: rgba(7, 21, 37, .55);
    color: #fff;
}
.hub-form-input:focus,
.hub-form-textarea:focus {
    outline: 2px solid var(--hub-gold);
    border-color: transparent;
}
.hub-form-textarea { resize: vertical; min-height: 120px; }
.hub-form-hint { font-size: .8rem; color: #8893ad; margin: 4px 0 8px; }
.hub-form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.hub-form-notice {
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 20px;
    font-size: .92rem;
    font-weight: 600;
}
.hub-form-notice--ok {
    background: rgba(72, 160, 96, .2);
    border: 1px solid rgba(120, 200, 140, .45);
    color: #d4f5dc;
}
.hub-form-notice--err {
    background: rgba(200, 80, 80, .18);
    border: 1px solid rgba(240, 140, 140, .4);
    color: #ffd8d8;
}

.hub-story {
    padding: 56px 24px;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f8 100%);
    border-bottom: 1px solid #e2e8f0;
}
.hub-story-inner {
    max-width: var(--hub-max);
    margin: 0 auto;
    display: grid;
    gap: 32px;
    align-items: start;
}
@media (min-width: 800px) {
    .hub-story-inner { grid-template-columns: 220px 1fr; }
}
.hub-story-photo {
    margin: 0;
    border-radius: var(--hub-radius);
    overflow: hidden;
    box-shadow: var(--hub-shadow);
    border: 3px solid var(--hub-navy-2);
}
.hub-story-photo img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
}
.hub-story-kicker {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--hub-gold-dark);
    font-weight: 700;
    margin-bottom: 8px;
}
.hub-story-title {
    font-family: Georgia, serif;
    font-size: clamp(1.45rem, 3vw, 2rem);
    color: var(--hub-navy-2);
    margin-bottom: 16px;
    line-height: 1.25;
}
.hub-story-copy p {
    color: var(--hub-muted);
    line-height: 1.65;
    margin-bottom: 14px;
    font-size: .98rem;
}
.hub-story-copy a {
    color: var(--hub-navy-2);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.hub-story-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.hub-leistung-card p {
    font-size: .88rem;
    color: var(--hub-muted);
    margin: 0;
    line-height: 1.5;
}

.hub-footer {
    background: #071525;
    color: #8893ad;
    padding: 40px 24px 28px;
    font-size: .88rem;
}
.hub-footer-inner {
    max-width: var(--hub-max);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
}
.hub-footer strong { color: #fff; }
.hub-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
}
.hub-footer-links a {
    color: #c5cfe8;
    text-decoration: none;
}
.hub-footer-links a:hover { color: var(--hub-gold); }
.hub-footer-copy {
    max-width: var(--hub-max);
    margin: 24px auto 0;
    text-align: center;
    font-size: .8rem;
}
.hub-footer-copy a { color: var(--hub-gold-light); }

.landing .hero.hero--security {
    min-height: auto;
    padding-top: 2.5rem;
    padding-bottom: 3.5rem;
}

.hub-lead a {
    color: var(--hub-gold-light);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.hub-section-sub a {
    color: var(--hub-navy-2);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.hub-hero-card-title {
    font-family: Georgia, serif;
    font-size: 1.15rem;
    color: var(--hub-gold);
    margin-bottom: 12px;
}
.hub-pillar-grid--welten { grid-template-columns: 1fr; }
@media (min-width: 900px) {
    .hub-pillar-grid--welten { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1300px) {
    .hub-pillar-grid--welten { grid-template-columns: repeat(4, 1fr); }
}
.hub-pillar-welt { text-align: left; }
.hub-pillar-welt .hub-welt-char { margin-left: 0; }
.hub-pillar-welt .hub-welt-title,
.hub-pillar-welt .hub-welt-sub { text-align: left; }
.hub-welt-char {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--hub-navy-2);
    color: var(--hub-gold);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}
.hub-welt-title {
    font-family: Georgia, serif;
    font-size: 1.2rem;
    margin-bottom: 4px;
    color: var(--hub-navy-2);
}
.hub-welt-sub {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--hub-muted);
    margin-bottom: 12px;
    font-weight: 700;
}
.hub-pillar-welt .hub-btn { margin-top: 6px; width: 100%; text-align: center; }
.hub-pillar-welt--g .hub-welt-char {
    background: linear-gradient(135deg, var(--hub-gold-light), var(--hub-gold));
    color: #2a2105;
}
.hub-testimonials {
    padding: 64px 24px;
    background: #fff;
    border-top: 1px solid #e8edf5;
}
.hub-testimonial-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: 1fr;
}
@media (min-width: 700px) {
    .hub-testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
    .hub-testimonial-grid { grid-template-columns: repeat(3, 1fr); }
}
.hub-testimonial-card {
    margin: 0;
    background: var(--hub-soft);
    border-radius: var(--hub-radius);
    padding: 24px 22px 20px;
    border-left: 4px solid var(--hub-gold);
    box-shadow: 0 8px 24px rgba(14, 31, 71, .06);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}
.hub-testimonial-quote {
    margin: 0 0 18px;
    flex: 1;
}
.hub-testimonial-quote p {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--hub-navy-2);
    margin: 0;
}
.hub-testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.hub-testimonial-topic {
    display: inline-block;
    align-self: flex-start;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--hub-navy-2);
    background: rgba(230, 180, 34, .25);
    padding: 4px 10px;
    border-radius: 999px;
}
.hub-testimonial-who {
    font-size: .85rem;
    color: var(--hub-muted);
    font-weight: 600;
}
.landing .hero.hero--security h2.check-suite-heading .check-suite-main {
    font-size: clamp(1.75rem, 4.5vw, 2.75rem);
}

@media (max-width: 900px) {
    .hub-nav { width: 100%; order: 3; justify-content: center; }
    .hub-header-inner { justify-content: center; text-align: center; }
    .hub-header-actions { justify-content: center; width: 100%; }
    .hub-brand { align-items: center; }
}
