/* ============================================================
   BILLEVO — Marketing Website
   Designsystem v2 · klar, hell, hochwertig, fokussiert
   ============================================================ */

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url('../fonts/inter-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url('../fonts/inter-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
html, body {
    margin: 0; padding: 0;
    overflow-x: hidden;
    overflow-x: clip;
}
html { width: 100%; }
body { width: 100%; max-width: 100vw; position: relative; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--c-text);
    background: var(--c-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    line-height: 1.55;
    text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; }
h1, h2, h3, h4, h5 {
    margin: 0;
    color: var(--c-ink);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: 0;
}
p { margin: 0; }
ul { margin: 0; }
::selection { background: var(--c-blue); color: #fff; }

/* ---------- Tokens ---------- */
:root {
    /* Brand */
    --c-blue: #2563eb;
    --c-blue-h: #1d4ed8;
    --c-blue-d: #1e3a8a;
    --c-blue-soft: #e6efff;
    --c-blue-tint: #f1f5ff;
    --c-blue-glow: #4f7cff;

    /* Ink / surfaces */
    --c-ink: #0a1226;
    --c-ink-2: #1f2747;
    --c-text: #475569;
    --c-mute: #64748b;
    --c-line: #e6ebf2;
    --c-line-soft: #eef2f7;
    --c-bg: #ffffff;
    --c-bg-soft: #f7f9fc;
    --c-bg-mid:  #f1f4fa;

    /* Accents (status / proof) */
    --c-star: #f5b40a;
    --c-trustpilot: #00b67a;
    --c-success: #16a34a;
    --c-danger: #dc2626;

    /* Shape */
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 16px;
    --r-xl: 22px;
    --r-2xl: 28px;
    --r-pill: 999px;

    /* Shadows — kalibriert auf hell/seriös */
    --sh-1: 0 1px 2px rgba(10,18,38,.04), 0 1px 1px rgba(10,18,38,.03);
    --sh-2: 0 4px 14px rgba(10,18,38,.06), 0 1px 2px rgba(10,18,38,.04);
    --sh-3: 0 18px 38px -12px rgba(10,18,38,.18), 0 4px 12px rgba(10,18,38,.06);
    --sh-4: 0 30px 60px -20px rgba(10,18,38,.28), 0 8px 18px rgba(10,18,38,.08);
    --sh-sm: var(--sh-1);
    --sh-md: var(--sh-2);
    --sh-cta: 0 10px 22px -8px rgba(37,99,235,.55);

    /* Layout */
    --w-max: 1480px;
    --w-wide: 1680px;
    --w-narrow: 980px;
    --w-tight: 760px;
    --nav-h: 76px;
    --nav-actual-h: var(--nav-h);
    --mobile-vvh: 100vh;
    --pad-x: clamp(18px, 3.6vw, 56px);
}

@supports (height: 100svh) {
    :root { --mobile-vvh: 100svh; }
}

@supports (height: 100dvh) {
    :root { --mobile-vvh: 100dvh; }
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--w-max); margin: 0 auto; padding: 0 var(--pad-x); }
.container--wide   { max-width: var(--w-wide); }
.container--narrow { max-width: var(--w-narrow); }
.container--tight  { max-width: var(--w-tight);  }

.section { padding: clamp(72px, 9vw, 128px) 0; position: relative; overflow-x: clip; }
main > .section {
    content-visibility: auto;
    contain-intrinsic-size: 1px 820px;
}
.section--soft { background: var(--c-bg-soft); }
.section--mid  { background: var(--c-bg-mid); }
.section--ink  { background: linear-gradient(180deg,#0a1226 0%,#0e1a3a 100%); color: #cdd6e7; }
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4 { color: #fff; }
.section--ink p { color: #a5b1cc; }

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--c-blue);
    background: var(--c-blue-soft);
    border: 1px solid #d6e2fb;
    border-radius: var(--r-pill);
    padding: 6px 12px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: uppercase;
}
.section-eyebrow .dot {
    width: 6px; height: 6px; border-radius: 99px; background: var(--c-blue);
    box-shadow: 0 0 0 4px rgba(37,99,235,.18);
}

.section-head { max-width: 760px; margin: 0 0 clamp(40px, 6vw, 72px); }
.section-head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head h2 {
    font-size: clamp(1.85rem, 1.4vw + 1.5rem, 2.75rem);
    margin: 14px 0 14px;
}
.section-head p {
    color: var(--c-text);
    font-size: clamp(1rem, .3vw + .95rem, 1.125rem);
    line-height: 1.6;
}

.lead { color: var(--c-text); font-size: 1.075rem; line-height: 1.65; max-width: 60ch; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    border-radius: var(--r-md);
    font-size: .95rem;
    font-weight: 600;
    border: 1px solid transparent;
    color: var(--c-ink);
    background: transparent;
    transition: background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
    line-height: 1.2;
    white-space: normal;
    text-align: center;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: keep-all;
    box-sizing: border-box;
}
.btn:focus-visible { outline: none; box-shadow: 0 0 0 4px rgba(37,99,235,.22); }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

.btn--primary {
    background: var(--c-blue); color: #fff; border-color: var(--c-blue);
    box-shadow: var(--sh-cta);
}
.btn--primary:hover { background: var(--c-blue-h); border-color: var(--c-blue-h); }

.btn--ghost {
    background: #fff; border-color: var(--c-line); color: var(--c-ink);
    box-shadow: var(--sh-1);
}
.btn--ghost:hover { border-color: #c7d3e6; background: #fbfcfe; }

.btn--ink {
    background: var(--c-ink); color: #fff; border-color: var(--c-ink);
}
.btn--ink:hover { background: #1a2342; border-color: #1a2342; }

.btn--link {
    padding: 0; color: var(--c-blue); font-weight: 600;
    border-radius: 0;
}
.btn--link:hover { color: var(--c-blue-h); text-decoration: underline; text-underline-offset: 4px; }

.btn--lg { padding: 16px 26px; font-size: 1rem; border-radius: var(--r-md); }
.btn--xl { padding: 18px 30px; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* Stacked CTA: Button mit Preis-Subtext */
.cta-stack {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: 100%;
}
.cta-stack .btn { max-width: 100%; }
.cta-stack-sub {
    color: var(--c-mute);
    font-size: .9rem;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    max-width: 36ch;
}
.cta-stack-sub strong { color: var(--c-ink); font-weight: 700; }

/* ---------- Pills / chips ---------- */
.pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 12px;
    border-radius: var(--r-pill);
    font-size: .8rem;
    font-weight: 600;
    background: #fff;
    border: 1px solid var(--c-line);
    color: var(--c-ink-2);
}
.pill--blue { background: var(--c-blue-soft); border-color: #d3def9; color: var(--c-blue-d); }
.pill--green { background: #e8f7ee; border-color: #c8ecd5; color: #166534; }
.pill--gold  { background: #fff7e2; border-color: #fae6a3; color: #92590a; }
.pill--ghost { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.14); color: #d5deef; }

/* ---------- Header / Nav ---------- */
.nav {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255,255,255,.78);
    backdrop-filter: saturate(160%) blur(16px);
    -webkit-backdrop-filter: saturate(160%) blur(16px);
    border-bottom: 1px solid transparent;
    transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.nav.is-scrolled {
    background: rgba(255,255,255,.92);
    border-bottom-color: var(--c-line-soft);
    box-shadow: 0 2px 10px rgba(10,18,38,.04);
}
.nav-inner {
    display: flex; align-items: center;
    gap: clamp(20px, 4vw, 48px);
    height: var(--nav-h);
}
.nav-brand { margin-right: auto; }
.nav-brand {
    display: flex; align-items: center; gap: 12px;
    font-weight: 800; letter-spacing: 0;
}
.nav-brand img { width: 40px; height: 40px; border-radius: 9px; }
.nav-brand span {
    font-size: 1.2rem; color: var(--c-ink);
}
.nav-brand span em { font-style: normal; color: var(--c-blue); }
.nav-current {
    display: none;
    align-items: center;
    min-width: 0;
    max-width: 148px;
    padding: 7px 10px;
    border-radius: var(--r-pill);
    border: 1px solid rgba(37,99,235,.18);
    background: linear-gradient(135deg, rgba(241,245,255,.96), rgba(255,255,255,.88));
    color: var(--c-blue-d);
    box-shadow: 0 10px 24px -20px rgba(37,99,235,.55);
    font-size: .76rem;
    font-weight: 750;
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.nav-links {
    display: flex; gap: 4px; align-items: center;
}
.nav-links a,
.nav-group summary {
    padding: 10px 14px;
    font-size: .92rem;
    font-weight: 500;
    color: var(--c-ink-2);
    border-radius: var(--r-sm);
    transition: color .15s, background .15s, box-shadow .15s, border-color .15s;
    letter-spacing: 0;
    cursor: pointer;
    border: 1px solid transparent;
}
.nav-links a:hover,
.nav-group summary:hover { color: var(--c-blue); }
.nav-links a.is-active,
.nav-links a[aria-current="page"],
.nav-group.is-active summary {
    color: var(--c-blue-d);
    font-weight: 750;
    background: linear-gradient(135deg, rgba(241,245,255,.96), rgba(230,239,255,.72));
    border-color: rgba(37,99,235,.18);
    box-shadow: 0 10px 24px -20px rgba(37,99,235,.65);
}
.nav-group[open] summary {
    color: var(--c-blue);
    background: rgba(241,245,255,.72);
    border-color: rgba(37,99,235,.12);
}
.nav-group { position: relative; }
.nav-group summary {
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.nav-group summary::-webkit-details-marker { display: none; }
.nav-group summary::after {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    opacity: .65;
}
.nav-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 270px;
    display: grid;
    gap: 4px;
    padding: 10px;
    border: 1px solid var(--c-line);
    border-radius: var(--r-lg);
    background: rgba(255,255,255,.98);
    box-shadow: var(--sh-lg);
    z-index: 50;
}
.nav-menu a {
    display: block;
    border-radius: var(--r-md);
    padding: 10px 12px;
    line-height: 1.25;
    position: relative;
}
.nav-menu a.is-active,
.nav-menu a[aria-current="page"] {
    background: linear-gradient(135deg, rgba(241,245,255,.98), rgba(230,239,255,.78));
    border-color: rgba(37,99,235,.18);
    box-shadow: inset 3px 0 0 var(--c-blue), 0 12px 24px -22px rgba(37,99,235,.75);
}
.nav-menu a strong {
    display: block;
    color: var(--c-ink);
    font-size: .9rem;
}
.nav-menu a span {
    display: block;
    color: var(--c-mute);
    font-size: .78rem;
    margin-top: 3px;
}
.nav-links .menu-cta { display: none; }

.nav-cta {
    display: flex; align-items: center; gap: 10px;
}
.nav-cta .btn { padding: 11px 20px; font-size: .92rem; font-weight: 600; }
.nav-cta .btn--primary { box-shadow: 0 6px 14px -6px rgba(37,99,235,.45); }

@media (min-width: 1181px) {
    .nav > .nav-inner {
        display: grid;
        grid-template-columns: minmax(180px, 1fr) auto minmax(220px, 1fr);
        column-gap: clamp(20px, 2.2vw, 48px);
        max-width: 100%;
        padding-left: clamp(28px, 3.2vw, 92px);
        padding-right: clamp(28px, 3.2vw, 92px);
    }
    .nav-brand {
        justify-self: start;
        margin-right: 0;
    }
    .nav-links {
        justify-self: center;
        justify-content: center;
        gap: clamp(4px, .45vw, 10px);
        min-width: 0;
    }
    .nav-links a,
    .nav-group summary {
        padding-left: clamp(13px, .75vw, 18px);
        padding-right: clamp(13px, .75vw, 18px);
    }
    .nav-cta {
        justify-self: end;
    }
}

.nav-toggle {
    display: none; width: 52px; height: 52px;
    border-radius: var(--r-md); border: 1px solid var(--c-line); background: #fff;
    align-items: center; justify-content: center;
    color: var(--c-ink-2);
    transition: background .15s, border-color .15s;
}
.nav-toggle:hover { background: var(--c-blue-tint); border-color: var(--c-blue-soft); }
.nav-toggle svg { width: 26px; height: 26px; }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    overflow: hidden;
    padding: clamp(48px, 6vw, 96px) 0 clamp(42px, 5vw, 76px);
    min-height: calc(100svh - var(--nav-h));
    display: flex;
    align-items: center;
}
.hero::before {
    content: "";
    position: absolute; inset: 0;
    background:
        radial-gradient(800px 380px at 12% -10%, #e6efff 0%, transparent 60%),
        radial-gradient(900px 420px at 100% 0%, #eef3ff 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}
.hero::after {
    content: "";
    position: absolute; inset: 0;
    background-image:
        linear-gradient(to right, rgba(15,23,42,.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(15,23,42,.04) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(700px 400px at 50% 30%, #000 30%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.hero > .container {
    position: relative;
    z-index: 1;
    max-width: min(1760px, calc(100% - 2px));
}
.hero-grid {
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    gap: clamp(36px, 5vw, 72px);
    align-items: center;
}
.hero-grid > *,
.showcase > *,
.premium-grid-inner > *,
.conversion-band > *,
.banner-cta > *,
.contact-grid > *,
.footer-grid > * {
    min-width: 0;
}
.hero-eyebrow {
    display: inline-flex; gap: 10px; align-items: center;
    background: #fff;
    border: 1px solid var(--c-line);
    box-shadow: var(--sh-1);
    border-radius: var(--r-pill);
    padding: 8px 14px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--c-ink-2);
    letter-spacing: 0;
}
.hero-eyebrow .badge {
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--c-blue); color: #fff;
    border-radius: var(--r-pill);
    padding: 2px 8px;
    font-size: .68rem;
    letter-spacing: 0;
}
.hero h1 {
    margin-top: 18px;
    font-size: clamp(2.2rem, 2.8vw + 1.05rem, 3.65rem);
    line-height: 1.04;
    letter-spacing: 0;
}
.hero h1 .accent { color: var(--c-blue); display: block; }
.hero-lead {
    margin-top: 18px;
    color: var(--c-text);
    font-size: clamp(1.05rem, .35vw + 1rem, 1.2rem);
    line-height: 1.55;
    max-width: 540px;
}
.hero-actions {
    margin-top: 24px;
    display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
}
.hero-meta {
    margin-top: 18px;
    display: flex; flex-wrap: wrap; gap: 18px;
    color: var(--c-mute);
    font-size: .88rem;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta svg { width: 16px; height: 16px; color: var(--c-blue); }

.hero-visual {
    position: relative;
}
.hero-visual img {
    width: 100%; height: auto;
    border-radius: var(--r-2xl);
    box-shadow: var(--sh-4);
    border: 1px solid #e1e8f3;
}

@media (min-width: 921px) and (max-height: 820px) {
    .hero { padding-top: 42px; padding-bottom: 36px; }
    .hero h1 { font-size: clamp(2.4rem, 3vw + .7rem, 3.35rem); }
    .hero-lead { font-size: 1.05rem; line-height: 1.5; margin-top: 16px; }
    .hero-actions { margin-top: 20px; }
    .hero-meta { margin-top: 16px; }
    .hero-visual img { max-height: 520px; object-fit: cover; }
}
.hero-visual .floater {
    position: absolute;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-lg);
    padding: 14px 16px;
    box-shadow: var(--sh-3);
    display: flex; align-items: center; gap: 12px;
    font-size: .88rem; font-weight: 600; color: var(--c-ink);
}
.hero-visual .floater .ico {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: var(--c-blue-soft);
    color: var(--c-blue);
    display: grid; place-items: center;
}
.hero-visual .floater .ico svg { width: 20px; height: 20px; }
.hero-visual .floater--tl { top: -22px; left: -22px; }
.hero-visual .floater--br { bottom: -22px; right: -22px; }
.hero-visual .floater small { display: block; color: var(--c-mute); font-weight: 500; font-size: .76rem; margin-top: 2px;}

/* ---------- Trust strip ---------- */
.trust-strip {
    border-top: 1px solid var(--c-line-soft);
    border-bottom: 1px solid var(--c-line-soft);
    padding: 20px 0;
    background: #fff;
}
.trust-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    align-items: center;
}
.trust-cell {
    display: flex; align-items: center; gap: 12px;
    color: var(--c-mute);
    font-size: .9rem;
}
.trust-cell svg { width: 22px; height: 22px; color: var(--c-blue); flex: none; }
.trust-cell strong { display: block; color: var(--c-ink); font-weight: 700; font-size: .98rem; }
.trust-cell small { color: var(--c-mute); font-size: .8rem; }

/* ---------- Conversion helpers ---------- */
.quick-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}
.quick-fact {
    border: 1px solid var(--c-line-soft);
    border-radius: var(--r-lg);
    background: #fff;
    padding: 18px;
    box-shadow: var(--sh-sm);
}
.quick-fact strong {
    display: block;
    color: var(--c-ink);
    font-size: .98rem;
    margin-bottom: 6px;
}
.quick-fact span {
    display: block;
    color: var(--c-mute);
    line-height: 1.55;
    font-size: .9rem;
}
.conversion-band {
    display: grid;
    grid-template-columns: 1.4fr .8fr;
    gap: clamp(22px, 4vw, 48px);
    align-items: center;
    padding: clamp(26px, 4vw, 46px);
    border: 1px solid var(--c-line-soft);
    border-radius: var(--r-xl);
    background:
        linear-gradient(135deg, rgba(37,99,235,.08), rgba(255,255,255,.94) 54%),
        #fff;
    box-shadow: var(--sh-md);
}
.conversion-band h2 { margin-bottom: 10px; }
.conversion-band p { color: var(--c-text); line-height: 1.7; }
.conversion-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}
.visual-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--r-xl);
    border: 1px solid var(--c-line-soft);
    background: #fff;
    box-shadow: var(--sh-2);
}
.visual-card img {
    width: 100%;
    display: block;
}
.marketing-visual {
    object-fit: cover;
}
.marketing-visual--16x9 { aspect-ratio: 16 / 9; }
.marketing-visual--4x5 { aspect-ratio: 4 / 5; }
.marketing-visual--1x1 { aspect-ratio: 1 / 1; }
.marketing-visual--9x16 { aspect-ratio: 9 / 16; }
.marketing-visual--21x9 { aspect-ratio: 21 / 9; }
.showcase-media .marketing-visual,
.visual-card .marketing-visual,
.hero-visual .marketing-visual {
    width: 100%;
    height: auto;
}
.visual-card--quiet {
    background:
        linear-gradient(180deg, rgba(37,99,235,.04), rgba(255,255,255,.96)),
        #fff;
}
.page-visual-showcase {
    margin-bottom: clamp(36px, 5vw, 72px);
}
.legal-visual {
    margin: 28px 0 38px;
}
.legal-visual img {
    display: block;
    width: 100%;
    height: auto;
}
.visual-card img[src*="/generated/"],
.showcase-media img[src*="/generated/"],
.hero-visual img[src*="/generated/"] {
    background: #f8fbff;
}
.visual-card__caption {
    padding: 16px 18px;
    color: var(--c-mute);
    font-size: .9rem;
    border-top: 1px solid var(--c-line-soft);
}

/* ---------- Product demo video ---------- */
.section--demo-video {
    background: linear-gradient(180deg,#fff 0%,#f7f9fc 100%);
    padding-top: clamp(64px, 8vw, 112px);
}
.product-demo-shell {
    width: min(100%, 1180px);
    margin: 0 auto;
    border: 1px solid var(--c-line);
    border-radius: var(--r-xl);
    background: #fff;
    box-shadow: var(--sh-4);
    overflow: hidden;
}
.product-demo-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #fff;
    display: block;
}

/* ---------- Showcase blocks ---------- */
.showcase {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: clamp(32px, 5vw, 80px);
    align-items: center;
}
.showcase--reverse { grid-template-columns: 1.05fr 1fr; }
.showcase--reverse .showcase-text { order: 2; }
.showcase--reverse .showcase-media { order: 1; }
.showcase-text h2 {
    font-size: clamp(1.7rem, 1.4vw + 1.2rem, 2.4rem);
    margin: 14px 0 16px;
}
.showcase-text p { color: var(--c-text); margin-bottom: 18px; line-height: 1.65; }
.showcase-list {
    list-style: none; padding: 0;
    display: grid; gap: 12px;
    margin-top: 20px;
}
.showcase-list li {
    display: flex; gap: 12px; align-items: flex-start;
    color: var(--c-ink-2);
    font-weight: 500;
}
.showcase-list li::before {
    content: "";
    margin-top: 7px;
    flex: none;
    width: 18px; height: 18px;
    border-radius: 99px;
    background: var(--c-blue-soft) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/12px no-repeat;
    border: 1px solid #d6e2fb;
}
.showcase-actions { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }

.showcase-media {
    position: relative;
    border-radius: var(--r-2xl);
    overflow: hidden;
    background: #fff;
    border: 1px solid #e6ebf2;
    box-shadow: var(--sh-3);
}
.showcase-media img { width: 100%; height: auto; display: block; }
.showcase-media--frame {
    padding: 18px;
    background: linear-gradient(180deg,#f7f9fc 0%,#eef2f9 100%);
}
.showcase-media--frame img { border-radius: var(--r-lg); box-shadow: var(--sh-2); }

/* ---------- Feature grid ---------- */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.feature-card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-xl);
    padding: 28px 26px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    display: flex; flex-direction: column; gap: 14px;
    position: relative;
}
.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--sh-3);
    border-color: #d6dfee;
}
.feature-card .ico {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--c-blue-soft);
    color: var(--c-blue);
    display: grid; place-items: center;
}
.feature-card .ico svg { width: 22px; height: 22px; }
.feature-card h3 { font-size: 1.18rem; }
.feature-card p { color: var(--c-text); font-size: .96rem; line-height: 1.6; }
.feature-card .pill { align-self: flex-start; }
.feature-card.is-premium {
    background: linear-gradient(180deg,#0a1226 0%,#13204a 100%);
    border-color: rgba(255,255,255,.08);
    color: #cdd6e7;
}
.feature-card.is-premium h3 { color: #fff; }
.feature-card.is-premium p { color: #a5b1cc; }
.feature-card.is-premium .ico { background: rgba(79,124,255,.18); color: #93b1ff; }

/* ---------- Pillars (4 small) ---------- */
.pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.pillar {
    padding: 22px;
    border-radius: var(--r-lg);
    background: #fff;
    border: 1px solid var(--c-line);
    box-shadow: var(--sh-1);
}
.pillar strong { display: block; color: var(--c-ink); font-size: 1.6rem; font-weight: 800; letter-spacing: 0;}
.pillar span { color: var(--c-mute); font-size: .92rem; }

/* ---------- Stat band ---------- */
.stat-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding: 32px clamp(24px, 4vw, 48px);
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-xl);
    box-shadow: var(--sh-2);
}
.stat-band .stat strong {
    display: block;
    font-size: clamp(1.6rem, 1.2vw + 1.2rem, 2.2rem);
    color: var(--c-ink);
    font-weight: 800;
    letter-spacing: 0;
}
.stat-band .stat span { color: var(--c-mute); font-size: .92rem; }

/* ---------- Lizenzmodell Erklaerung ---------- */
.model-explain {
    max-width: 880px;
}
.model-explain h2 {
    font-size: clamp(1.55rem, 1.4vw + 1.05rem, 2.1rem);
    margin: 14px 0 24px;
}
.model-steps {
    list-style: none;
    padding: 0; margin: 0;
    display: grid; gap: 14px;
}
.model-steps li {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-xl);
    padding: 22px 26px;
    color: var(--c-text);
    line-height: 1.6;
    box-shadow: var(--sh-1);
    border-left: 4px solid var(--c-blue);
}
.model-steps li strong {
    display: block;
    color: var(--c-ink);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.model-note {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-top: 32px;
    padding: 22px 26px;
    background: var(--c-blue-tint);
    border: 1px solid var(--c-blue-soft);
    border-radius: var(--r-xl);
    color: var(--c-ink-2);
    line-height: 1.6;
    font-size: .98rem;
}
.model-note svg {
    width: 22px; height: 22px;
    flex: none;
    color: var(--c-blue);
    margin-top: 2px;
}
.model-note strong { color: var(--c-ink); font-weight: 700; }

@media (max-width: 760px) {
    .model-steps li { padding: 20px 22px; }
    .model-note { padding: 20px 22px; gap: 12px; }
}

/* ---------- Pricing ---------- */
.pricing-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: stretch;
}
.price-card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-2xl);
    padding: 36px;
    display: flex; flex-direction: column;
    box-shadow: var(--sh-1);
    position: relative;
}
.price-card--accent {
    border-color: rgba(37,99,235,.35);
    box-shadow: 0 24px 48px -22px rgba(37,99,235,.30), var(--sh-2);
}
.price-card--accent::before {
    content: "Roadmap";
    position: absolute; top: -14px; right: 24px;
    background: var(--c-blue);
    color: #fff;
    font-size: .72rem; font-weight: 700; letter-spacing: 0;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: var(--r-pill);
}
.price-card h3 { font-size: 1.35rem; }
.price-card .price-tag {
    margin: 22px 0 8px;
    display: flex; align-items: baseline; gap: 8px;
}
.price-card .price-tag .amount {
    font-size: 2.6rem; font-weight: 800; color: var(--c-ink);
    letter-spacing: 0;
}
.price-card .price-tag .period { color: var(--c-mute); font-size: .95rem; }
.price-card .price-note { color: var(--c-mute); font-size: .9rem; margin-bottom: 24px; }
.price-list {
    list-style: none; padding: 0; margin: 0 0 28px;
    display: grid; gap: 12px;
}
.price-list li {
    display: flex; gap: 10px; align-items: flex-start;
    color: var(--c-ink-2);
    font-size: .96rem;
}
.price-list li::before {
    content: "";
    margin-top: 6px; flex: none;
    width: 16px; height: 16px;
    border-radius: 99px;
    background: var(--c-blue-soft) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/11px no-repeat;
}
.price-list li.muted { color: var(--c-mute); }
.price-list li.muted::before {
    background: #f1f5fa url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='3'/></svg>") center/11px no-repeat;
}
.price-card .btn { margin-top: auto; }
.price-card .micro { color: var(--c-mute); font-size: .8rem; margin-top: 12px; text-align: center; }

/* ---------- Premium block ---------- */
.premium-shell {
    position: relative;
    padding: clamp(36px, 5vw, 64px);
    border-radius: var(--r-2xl);
    background:
        linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,0)),
        linear-gradient(180deg,#0a1226 0%,#13204a 100%);
    color: #cdd6e7;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
}
.premium-shell::before {
    content: "";
    position: absolute; inset: 0;
    background:
        radial-gradient(500px 220px at 100% 0%, rgba(79,124,255,.30), transparent 70%),
        radial-gradient(420px 220px at 0% 100%, rgba(79,124,255,.18), transparent 70%);
    pointer-events: none;
}
.premium-shell > * { position: relative; }
.premium-grid-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
}
.premium-shell h2 { color: #fff; font-size: clamp(1.7rem, 1.4vw + 1.2rem, 2.4rem); margin-bottom: 16px; }
.premium-shell p { color: #b9c4dc; line-height: 1.65; }
.premium-shell .premium-list {
    list-style: none; padding: 0; margin: 24px 0 0;
    display: grid; gap: 12px;
}
.premium-shell .premium-list li {
    display: flex; gap: 12px; align-items: flex-start;
    color: #d8deef;
    font-weight: 500;
}
.premium-shell .premium-list li::before {
    content: "";
    margin-top: 7px;
    flex: none;
    width: 18px; height: 18px;
    border-radius: 99px;
    background: rgba(79,124,255,.22);
    border: 1px solid rgba(79,124,255,.45);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2393b1ff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 12px;
}
.premium-actions { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }
.premium-actions .btn--ghost { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.18); }
.premium-actions .btn--ghost:hover { background: rgba(255,255,255,.12); }

/* ---------- Sync (Desktop ↔ Web) ---------- */
.sync-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}
.sync-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-xl);
    padding: 32px;
    box-shadow: var(--sh-2);
}
.sync-card .badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 5px 12px; border-radius: var(--r-pill);
    background: var(--c-blue-soft); color: var(--c-blue-d);
    font-size: .76rem; font-weight: 700; letter-spacing: 0; text-transform: uppercase;
    margin-bottom: 16px;
}
.sync-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.sync-card p { color: var(--c-text); }
.sync-card ul {
    list-style: none; padding: 0; margin: 18px 0 0;
    display: grid; gap: 10px;
    color: var(--c-ink-2);
    font-size: .94rem;
}
.sync-card ul li { display: flex; gap: 10px; }
.sync-card ul li::before {
    content: "—"; color: var(--c-blue); font-weight: 800;
}

/* ---------- Reviews ---------- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}
.review-card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-xl);
    padding: 28px;
    box-shadow: var(--sh-1);
    display: flex; flex-direction: column; gap: 16px;
}
.review-card header { display: flex; align-items: center; gap: 14px; }
.review-card header .src {
    display: flex; align-items: center; gap: 10px;
    font-weight: 700; color: var(--c-ink);
}
.review-card header .src svg { width: 24px; height: 24px; }
.review-card .stars { display: inline-flex; gap: 2px; color: var(--c-star); }
.review-card .stars svg { width: 16px; height: 16px; fill: currentColor; }
.review-card blockquote {
    margin: 0; padding: 0;
    color: var(--c-ink-2);
    font-size: 1rem; line-height: 1.6;
}
.review-card cite {
    font-style: normal; color: var(--c-mute); font-size: .88rem;
    display: flex; align-items: center; gap: 8px;
    margin-top: auto;
}
.review-card cite .av {
    width: 28px; height: 28px; border-radius: 99px;
    background: var(--c-blue-soft); color: var(--c-blue);
    display: grid; place-items: center;
    font-weight: 700; font-size: .82rem;
}

.review-source {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-xl);
    padding: 28px;
    display: flex; flex-direction: column; gap: 16px;
}
.review-source header { display: flex; align-items: center; gap: 12px; }
.review-source header svg { width: 32px; height: 32px; }
.review-source h3 { font-size: 1.15rem; }
.review-source small { color: var(--c-mute); font-size: .85rem; }
.review-source ul { list-style: none; padding: 0; display: grid; gap: 8px; color: var(--c-ink-2); font-size: .94rem; }
.review-source ul li { display: flex; gap: 8px; }
.review-source ul li::before { content: "•"; color: var(--c-blue); }
.review-source.is-pending { background: linear-gradient(180deg,#fff,#fbfcfe); }
.review-source.is-pending .pill { background: #fff7e2; color: #92590a; border-color: #fae6a3; }

/* ---------- Review platform card (Google / Trustpilot) ---------- */
.review-platform-card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-2xl);
    padding: clamp(26px, 3vw, 36px);
    display: flex;
    flex-direction: column;
    gap: 18px;
    box-shadow: var(--sh-2);
    position: relative;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}
.review-platform-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--sh-3);
}
.review-platform-card::before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent 55%, rgba(37,99,235,0.04));
    pointer-events: none;
}
.review-platform-card > * { position: relative; z-index: 1; }
.review-platform-card.is-google { border-top: 4px solid #4285F4; }
.review-platform-card.is-trustpilot { border-top: 4px solid #00b67a; }
.review-platform-card.is-google::before {
    background: linear-gradient(135deg, transparent 55%, rgba(66,133,244,0.06));
}
.review-platform-card.is-trustpilot::before {
    background: linear-gradient(135deg, transparent 55%, rgba(0,182,122,0.06));
}
.review-platform-card .platform-head {
    display: flex; align-items: center; gap: 16px;
}
.review-platform-card .platform-head .logo {
    width: 52px; height: 52px;
    flex: none;
    border-radius: 14px;
    background: var(--c-bg-soft);
    display: grid; place-items: center;
    border: 1px solid var(--c-line-soft);
}
.review-platform-card .platform-head .logo svg { width: 30px; height: 30px; }
.review-platform-card .platform-head h3 { font-size: 1.35rem; }
.review-platform-card .platform-head small {
    color: var(--c-mute); font-size: .9rem;
    display: block; margin-top: 2px;
}
.review-platform-card .platform-meta {
    display: flex; align-items: center; gap: 12px;
    flex-wrap: wrap;
    color: var(--c-mute);
    font-size: .92rem;
}
.review-platform-card .stars-big {
    display: inline-flex; gap: 4px; color: var(--c-star);
}
.review-platform-card .stars-big svg { width: 22px; height: 22px; fill: currentColor; }
.review-platform-card p { color: var(--c-text); line-height: 1.65; max-width: 50ch; }
.review-platform-card .actions {
    display: flex; gap: 12px; flex-wrap: wrap;
    margin-top: auto;
    padding-top: 4px;
}

.tp-widget-frame {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-2xl);
    padding: clamp(20px, 2.5vw, 32px);
    box-shadow: var(--sh-2);
    min-height: 220px;
}
.tp-widget-frame .tp-fallback {
    text-align: center;
    color: var(--c-mute);
    padding: 32px 16px;
    font-size: .95rem;
}
.tp-widget-frame .tp-fallback strong { color: var(--c-ink); display: block; margin-bottom: 6px; }

/* ---------- Reviews CTA cards on home ---------- */
.reviews-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 22px;
}
.reviews-cta-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: clamp(22px, 3vw, 32px);
    border-radius: var(--r-2xl);
    background: #fff;
    border: 1px solid var(--c-line);
    box-shadow: var(--sh-2);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    color: var(--c-ink);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}
.reviews-cta-card::before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(37,99,235,0.04));
    pointer-events: none;
}
.reviews-cta-card.is-google { border-top: 4px solid #4285F4; }
.reviews-cta-card.is-google::before {
    background: linear-gradient(135deg, transparent 55%, rgba(66,133,244,0.06));
}
.reviews-cta-card.is-trustpilot { border-top: 4px solid #00b67a; }
.reviews-cta-card.is-trustpilot::before {
    background: linear-gradient(135deg, transparent 55%, rgba(0,182,122,0.06));
}
.reviews-cta-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--sh-3);
    border-color: #d6dfee;
}
.reviews-cta-card > * { position: relative; z-index: 1; }
.reviews-cta-head {
    display: flex; align-items: center; gap: 14px;
}
.reviews-cta-logo {
    width: 52px; height: 52px;
    flex: none;
    border-radius: 14px;
    background: var(--c-bg-soft);
    border: 1px solid var(--c-line-soft);
    display: grid; place-items: center;
}
.reviews-cta-logo svg { width: 30px; height: 30px; }
.reviews-cta-head h3 {
    font-size: 1.2rem;
    margin: 0 0 4px;
}
.reviews-cta-head span {
    color: var(--c-mute);
    font-size: .9rem;
    display: block;
}
.reviews-cta-action {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 18px;
    border-radius: var(--r-md);
    background: var(--c-blue-soft);
    color: var(--c-blue-d);
    font-weight: 700;
    font-size: .95rem;
    align-self: flex-start;
    transition: gap .2s ease;
}
.reviews-cta-card.is-trustpilot .reviews-cta-action {
    background: #e8f7ee;
    color: #166534;
}
.reviews-cta-card:hover .reviews-cta-action { gap: 12px; }

.reviews-actions-row {
    display: flex; gap: 12px; flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 760px) {
    .reviews-cta { grid-template-columns: 1fr; gap: 14px; }
    .reviews-actions-row .btn { flex: 1 1 0; min-width: 0; }
}

/* ---------- Reviews slider (legacy) ---------- */
.reviews-slider {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-2xl);
    padding: clamp(16px, 2vw, 28px);
    box-shadow: var(--sh-2);
}
.reviews-source-row {
    display: flex; gap: 10px; align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--c-mute);
    font-size: .9rem;
}
.reviews-source-row .src-pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 12px;
    border-radius: var(--r-pill);
    background: var(--c-bg-soft);
    border: 1px solid var(--c-line);
    color: var(--c-ink-2);
    font-weight: 600;
    font-size: .85rem;
}
.reviews-source-row .src-pill svg { width: 16px; height: 16px; }
.reviews-source-row .stars {
    display: inline-flex; gap: 2px; color: var(--c-star);
}
.reviews-source-row .stars svg { width: 16px; height: 16px; fill: currentColor; }

/* ---------- USP Offline highlight ---------- */
.offline-band {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
    padding: clamp(28px, 4vw, 48px);
    border-radius: var(--r-2xl);
    background:
        radial-gradient(420px 220px at 100% 0%, rgba(37,99,235,.10), transparent 70%),
        linear-gradient(180deg, #fff 0%, #f5f9ff 100%);
    border: 1px solid var(--c-line);
    box-shadow: var(--sh-2);
}
.offline-band h2 {
    font-size: clamp(1.55rem, 1.4vw + 1.05rem, 2.1rem);
    margin-bottom: 12px;
}
.offline-band p { color: var(--c-text); max-width: 60ch; line-height: 1.6; }
.offline-band .points {
    list-style: none; padding: 0; margin: 18px 0 0;
    display: grid; gap: 10px;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
}
.offline-band .points li {
    display: flex; gap: 10px; align-items: flex-start;
    color: var(--c-ink-2);
    font-size: .96rem; font-weight: 500;
}
.offline-band .points li::before {
    content: "";
    margin-top: 6px; flex: none;
    width: 16px; height: 16px;
    border-radius: 99px;
    background: var(--c-blue-soft) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/11px no-repeat;
}
.offline-visual {
    width: 200px;
    height: 200px;
    flex: none;
    border-radius: 28px;
    background:
        radial-gradient(circle at 30% 30%, #4f7cff 0%, #1e3a8a 80%);
    display: grid; place-items: center;
    color: #fff;
    box-shadow: var(--sh-3);
    position: relative;
}
.offline-visual::before {
    content: "";
    position: absolute; inset: 8px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.18);
}
.offline-visual svg { width: 96px; height: 96px; }

/* ---------- Compare table ---------- */
.compare-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
    border-radius: var(--r-xl);
    border: 1px solid var(--c-line);
    box-shadow: var(--sh-2);
    background: #fff;
}
.compare {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
}
.compare thead th {
    text-align: left;
    padding: 18px 20px;
    background: var(--c-bg-soft);
    border-bottom: 1px solid var(--c-line);
    color: var(--c-ink);
    font-weight: 700;
    font-size: .92rem;
}
.compare thead th:first-child { width: 38%; }
.compare thead th.is-billevo {
    background: var(--c-blue-soft);
    color: var(--c-blue-d);
}
.compare tbody td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--c-line-soft);
    font-size: .94rem;
    color: var(--c-ink-2);
    vertical-align: top;
}
.compare tbody tr:last-child td { border-bottom: 0; }
.compare tbody td:first-child {
    color: var(--c-ink);
    font-weight: 600;
}
.compare .yes { color: var(--c-success); font-weight: 700; }
.compare .no  { color: var(--c-danger); font-weight: 700; }
.compare .neutral { color: var(--c-mute); }

/* ---------- Download / release pages ---------- */
.download-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}
.download-card {
    border: 1px solid var(--c-line);
    border-radius: var(--r-xl);
    background: #fff;
    box-shadow: var(--sh-2);
    padding: clamp(24px, 3vw, 36px);
    min-width: 0;
    position: relative;
}
.download-card--primary {
    background:
        radial-gradient(520px 240px at 100% 0%, rgba(37,99,235,.10), transparent 70%),
        #fff;
}
.download-card.is-recommended {
    border-color: rgba(37,99,235,.46);
    box-shadow: 0 20px 48px rgba(37,99,235,.14);
}
.platform-recommendation {
    display: none;
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--c-blue);
    background: var(--c-blue-tint);
    border: 1px solid var(--c-blue-soft);
    border-radius: 999px;
    padding: 7px 10px;
}
.download-card.is-recommended .platform-recommendation { display: inline-flex; }
.download-card--muted {
    background: linear-gradient(180deg, #fff, #f8fbff);
}
.download-note {
    border: 1px solid var(--c-line-soft);
    border-radius: var(--r-lg);
    background: var(--c-bg-soft);
    padding: 18px;
    color: var(--c-text);
    line-height: 1.65;
}
.download-card h2 {
    font-size: clamp(1.35rem, .9vw + 1.1rem, 2rem);
    margin: 14px 0 12px;
}
.download-card p {
    color: var(--c-text);
    line-height: 1.65;
}
.release-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 24px 0;
}
.release-meta div {
    border: 1px solid var(--c-line-soft);
    border-radius: var(--r-md);
    background: var(--c-bg-soft);
    padding: 14px 16px;
    min-width: 0;
}
.release-meta dt {
    color: var(--c-mute);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.release-meta dd {
    margin: 0;
    color: var(--c-ink);
    font-weight: 700;
    overflow-wrap: anywhere;
}
.checksum-box {
    margin: 18px 0 0;
    padding: 16px;
    border-radius: var(--r-md);
    border: 1px solid var(--c-line);
    background: #0a1226;
    color: #dce7ff;
    overflow-x: auto;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    font-size: .88rem;
    line-height: 1.55;
}
.steps-list,
.status-list {
    display: grid;
    gap: 12px;
    margin: 18px 0 0;
    padding-left: 22px;
    color: var(--c-ink-2);
}
.steps-list li,
.status-list li {
    padding-left: 4px;
    line-height: 1.65;
}

/* ---------- Lang switch ---------- */
.lang-switch {
    display: inline-flex;
    border: 1px solid var(--c-line);
    border-radius: var(--r-pill);
    background: #fff;
    padding: 3px;
    gap: 2px;
}
.lang-switch a {
    padding: 6px 12px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--c-mute);
    border-radius: var(--r-pill);
    transition: all .15s;
}
.lang-switch a.is-active {
    background: var(--c-ink);
    color: #fff;
}
.lang-switch a:hover:not(.is-active) {
    color: var(--c-ink);
}

/* ---------- FAQ ---------- */
.faq-list {
    display: grid; gap: 12px;
}
.faq-item {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
}
.faq-item[open] { border-color: #c4d3ee; box-shadow: var(--sh-2); }
.faq-item summary {
    list-style: none;
    padding: 22px 24px;
    display: flex; justify-content: space-between; gap: 16px;
    cursor: pointer;
    font-weight: 600;
    color: var(--c-ink);
    font-size: 1.04rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "";
    width: 24px; height: 24px; flex: none;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>") center/22px no-repeat;
    transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item .answer { padding: 0 24px 24px; color: var(--c-text); line-height: 1.65; }

/* ---------- Banner CTA ---------- */
.banner-cta {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    padding: clamp(36px, 5vw, 60px);
    border-radius: var(--r-2xl);
    background: linear-gradient(135deg,#0a1226 0%,#13204a 70%,#1e3a8a 100%);
    color: #cdd6e7;
    align-items: center;
    overflow: hidden;
    position: relative;
    isolation: isolate;
}
.banner-cta::before {
    content: "";
    position: absolute; inset: 0;
    background:
        radial-gradient(420px 220px at 0% 0%, rgba(79,124,255,.35), transparent 70%),
        radial-gradient(380px 180px at 100% 100%, rgba(79,124,255,.18), transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.banner-cta::after {
    content: "";
    position: absolute;
    inset: 0 0 0 auto;
    width: min(34%, 480px);
    background:
        linear-gradient(90deg, rgba(10,18,38,.99) 0%, rgba(10,18,38,.92) 52%, rgba(10,18,38,.84) 100%),
        url("../img/generated/marketing/billevo-cta-local-start-21x9.webp") center right/cover no-repeat;
    opacity: .16;
    filter: saturate(.84) contrast(.9);
    pointer-events: none;
    z-index: 0;
}
.banner-cta > * { position: relative; z-index: 1; }
.banner-cta h2 { color: #fff; font-size: clamp(1.6rem, 1.4vw + 1.2rem, 2.25rem); }
.banner-cta p { color: #b9c4dc; margin-top: 12px; max-width: 56ch; }
.banner-cta .actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    flex-wrap: wrap;
    align-items: center;
    justify-self: end;
    padding: 14px;
    border-radius: var(--r-xl);
    background: linear-gradient(135deg, rgba(5,12,30,.98), rgba(9,20,48,.97));
    border: 1px solid rgba(255,255,255,.24);
    box-shadow:
        0 26px 54px -26px rgba(0,0,0,.86),
        inset 0 1px 0 rgba(255,255,255,.12);
    z-index: 2;
}
.banner-cta .actions .btn {
    min-width: 174px;
    font-weight: 800;
    text-shadow: none;
    border-width: 1px;
}
.banner-cta .actions .btn--primary {
    background: linear-gradient(180deg, #3275ff 0%, #1558ee 100%);
    border-color: #5c8dff;
    color: #fff;
    box-shadow:
        0 18px 34px -16px rgba(37,99,235,.95),
        inset 0 1px 0 rgba(255,255,255,.22);
}
.banner-cta .actions .btn--primary:hover {
    background: linear-gradient(180deg, #246cff 0%, #0f4ed8 100%);
    border-color: #7da4ff;
}
.banner-cta .actions .btn--ghost {
    background: #fff;
    border-color: #fff;
    color: #0a1226;
    box-shadow:
        0 16px 32px -18px rgba(0,0,0,.68),
        inset 0 1px 0 rgba(255,255,255,.8);
}
.banner-cta .actions .btn--ghost:hover {
    background: #eef4ff;
    border-color: #eef4ff;
    color: #08142f;
}

/* ---------- Subtle premium depth ---------- */
.hero-visual,
.visual-card,
.showcase-media,
.feature-card,
.price-card,
.download-card,
.purchase-card,
.review-card,
.review-platform-card,
.reviews-cta-card,
.sync-card,
.update-teaser {
    position: relative;
    isolation: isolate;
}

.hero-visual::before,
.visual-card::before,
.showcase-media::before,
.download-card::before,
.purchase-card::before,
.price-card::after,
.review-platform-card::after {
    content: "";
    position: absolute;
    inset: -18px;
    border-radius: inherit;
    background:
        radial-gradient(260px 160px at 18% 0%, rgba(79,124,255,.16), transparent 70%),
        radial-gradient(260px 180px at 100% 100%, rgba(20,184,166,.10), transparent 72%);
    opacity: .78;
    pointer-events: none;
    z-index: -1;
}

.visual-card,
.showcase-media--frame,
.feature-card,
.price-card,
.download-card,
.purchase-card,
.review-card,
.review-platform-card,
.reviews-cta-card,
.sync-card,
.update-teaser {
    box-shadow:
        0 1px 0 rgba(255,255,255,.72) inset,
        0 22px 48px -34px rgba(10,18,38,.30),
        var(--sh-2);
}

.visual-card img,
.showcase-media img,
.showcase-media video,
.hero-visual img,
.hero-visual video {
    transform: translateZ(0);
}

@media (hover: hover) and (pointer: fine) {
    .feature-card:hover,
    .price-card:hover,
    .download-card:hover,
    .purchase-card:hover,
    .review-card:hover,
    .review-platform-card:hover,
    .reviews-cta-card:hover {
        transform: translateY(-3px);
        box-shadow:
            0 1px 0 rgba(255,255,255,.78) inset,
            0 28px 60px -34px rgba(37,99,235,.35),
            var(--sh-3);
    }
}

@media (prefers-reduced-motion: reduce) {
    .feature-card,
    .price-card,
    .download-card,
    .purchase-card,
    .review-card,
    .review-platform-card,
    .reviews-cta-card {
        transition: none;
    }
}

/* ---------- Update teaser ---------- */
.update-teaser {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 22px; align-items: center;
    padding: 22px 28px;
    border-radius: var(--r-xl);
    background: #fff;
    border: 1px solid var(--c-line);
    box-shadow: var(--sh-2);
}
.update-teaser .ico {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--c-blue-soft); color: var(--c-blue);
    display: grid; place-items: center;
}
.update-teaser .ico svg { width: 22px; height: 22px; }
.update-teaser strong { display: block; color: var(--c-ink); font-size: 1.02rem; }
.update-teaser span { color: var(--c-mute); font-size: .9rem; }

/* ---------- Kontakt Grid ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: flex-start;
}
.contact-info-title {
    font-size: clamp(1.4rem, 1.2vw + 1rem, 1.8rem);
    margin-bottom: 16px;
}
.contact-info p {
    color: var(--c-text);
    line-height: 1.6;
    max-width: 50ch;
}
.contact-links {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}
.contact-link.btn { justify-content: flex-start; }
.contact-note {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: center;
    margin-top: 28px;
    padding: 20px 22px;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-xl);
    box-shadow: var(--sh-1);
}
.contact-note .ico {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--c-blue-soft);
    color: var(--c-blue);
    display: grid; place-items: center;
}
.contact-note .ico svg { width: 22px; height: 22px; }
.contact-note strong {
    display: block;
    color: var(--c-ink);
    font-size: 1rem;
    font-weight: 700;
}
.contact-note span {
    color: var(--c-mute);
    font-size: .9rem;
}

.contact-form {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-2xl);
    padding: clamp(22px, 3vw, 36px);
    box-shadow: var(--sh-2);
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
}

@media (max-width: 920px) {
    .contact-grid { grid-template-columns: 1fr; }
    .contact-form { max-width: 100%; }
}

/* ---------- Forms (Kontakt) ---------- */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row.is-full { grid-column: 1 / -1; }
.form-row label { font-size: .88rem; font-weight: 600; color: var(--c-ink-2); }
.form-row input,
.form-row textarea,
.form-row select {
    padding: 13px 14px;
    border-radius: var(--r-md);
    border: 1px solid var(--c-line);
    background: #fff;
    color: var(--c-ink);
    font-family: inherit;
    font-size: .98rem;
    transition: border-color .15s, box-shadow .15s;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
    outline: none;
    border-color: var(--c-blue);
    box-shadow: 0 0 0 4px rgba(37,99,235,.16);
}
.form-row textarea { min-height: 140px; resize: vertical; }
.form-row .hint { color: var(--c-mute); font-size: .82rem; }
.form-status {
    min-height: 20px;
    font-size: .88rem;
    color: var(--c-mute);
}
.form-status.is-success { color: #047857; }
.form-status.is-error { color: #b91c1c; }
.form-status.is-pending { color: var(--c-blue); }

/* ---------- Purchase flow ---------- */
.purchase-head::before {
    background:
        linear-gradient(90deg, rgba(243,247,255,0), rgba(243,247,255,.76) 58%, rgba(243,247,255,.98)),
        url("../img/generated/marketing/billevo-pricing-standard-1x1.webp") center right / cover no-repeat;
}
.purchase-grid {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
}
.purchase-card .btn + .micro { margin-top: 14px; }
.purchase-proof {
    display: grid;
    gap: 18px;
}
.purchase-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.purchase-steps article {
    border: 1px solid var(--c-line);
    background: #fff;
    border-radius: var(--r-lg);
    padding: 16px;
    box-shadow: var(--sh-1);
}
.purchase-steps strong {
    display: block;
    color: var(--c-ink);
    margin-bottom: 6px;
}
.purchase-steps span {
    color: var(--c-mute);
    font-size: .88rem;
    line-height: 1.5;
}

/* ---------- Footer ---------- */
.footer {
    background: #0a1226;
    color: #a4afc7;
    padding: clamp(56px, 8vw, 96px) 0 32px;
    margin-top: clamp(72px, 9vw, 120px);
}
.footer-grid {
    display: grid;
    grid-template-columns: minmax(220px, 1.6fr) repeat(4, minmax(120px, 1fr)) minmax(190px, 1.1fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: start;
}
.footer .nav-brand span { color: #fff; }
.footer .nav-brand span em { color: #93b1ff; }
.footer p { color: #94a3b8; margin: 16px 0; max-width: 36ch; line-height: 1.65; }
.footer h4 {
    color: #fff;
    font-size: .82rem;
    letter-spacing: 0;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 14px;
}
.footer ul { list-style: none; padding: 0; display: grid; gap: 10px; }
.footer a { color: #cdd6e7; transition: color .15s; }
.footer a:hover { color: #fff; }
.footer-contact { display: grid; gap: 8px; margin-top: 16px; }
.footer-contact a { color: #cdd6e7; }
.footer-brand { min-width: 0; }
.footer-madein {
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--r-lg);
    padding: 18px;
    background: rgba(255,255,255,.03);
}
.footer-madein .row { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 600; }
.footer-madein .flag {
    width: 22px; height: 14px; border-radius: 2px;
    background:
        linear-gradient(180deg,#000 0 33.3%, #d00 33.3% 66.6%, #ffce00 66.6% 100%);
    box-shadow: 0 0 0 1px rgba(255,255,255,.12);
}
.footer-madein .sub { color: #94a3b8; font-size: .85rem; margin-top: 8px; }
.footer-status {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,.08);
    color: #b6c2d6;
    font-size: .84rem;
    line-height: 1.55;
}
.footer-bottom {
    display: flex; justify-content: space-between; gap: 16px;
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 48px; padding-top: 24px;
    color: #94a3b8;
    font-size: .86rem;
    flex-wrap: wrap;
}
.footer-bottom .links a { margin-left: 18px; }
.footer-bottom-note { color: #b6c2d6; }

/* ---------- Page header (subpages) ---------- */
.page-head {
    padding: clamp(64px, 8vw, 112px) 0 clamp(32px, 5vw, 56px);
    min-height: clamp(380px, 48svh, 620px);
    display: flex;
    align-items: center;
    background:
        linear-gradient(180deg, #f3f7ff 0%, #fff 100%);
    border-bottom: 1px solid var(--c-line-soft);
    position: relative;
    overflow: hidden;
}
.page-head::before {
    content: "";
    position: absolute;
    inset: 0 0 0 auto;
    width: min(58vw, 980px);
    background:
        linear-gradient(90deg, rgba(243,247,255,0), rgba(243,247,255,.72) 58%, rgba(243,247,255,.96)),
        url("../img/generated/marketing/billevo-hero-dashboard-16x9.webp") center right / cover no-repeat;
    opacity: .22;
    mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 100%);
    pointer-events: none;
}
.page-head::after {
    content: "";
    position: absolute; inset: 0;
    background-image:
        linear-gradient(to right, rgba(15,23,42,.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(15,23,42,.04) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(800px 400px at 50% 0%, #000 30%, transparent 70%);
    pointer-events: none;
}
.page-head > .container {
    position: relative;
    z-index: 1;
    max-width: min(1600px, calc(100% - 2px));
}
.page-head h1 {
    font-size: clamp(2rem, 2vw + 1.4rem, 3.25rem);
    margin: 18px 0 16px;
    max-width: 22ch;
}
.page-head .lead { font-size: clamp(1.05rem, .35vw + 1rem, 1.2rem); max-width: 60ch; }
.page-head-actions { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Breadcrumb ---------- */
.crumb {
    color: var(--c-mute);
    font-size: .85rem;
    display: inline-flex; gap: 6px; align-items: center;
    width: auto;
    max-width: 100%;
    padding: 7px 11px;
    border-radius: var(--r-pill);
    border: 1px solid rgba(37,99,235,.14);
    background: rgba(255,255,255,.72);
    box-shadow: 0 10px 28px -24px rgba(37,99,235,.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.crumb a { color: var(--c-blue-d); font-weight: 650; }
.crumb a:hover { color: var(--c-blue); }
.crumb span { color: var(--c-ink-2); font-weight: 650; }
.crumb svg { width: 14px; height: 14px; opacity: .56; color: var(--c-blue); }

/* ---------- Legal pages ---------- */
.legal {
    padding: clamp(48px, 7vw, 96px) 0;
}
.legal h1 { font-size: clamp(1.8rem, 1.6vw + 1.2rem, 2.4rem); margin-bottom: 12px; }
.legal h2 { font-size: 1.25rem; margin-top: 36px; margin-bottom: 10px; }
.legal h3 { font-size: 1.05rem; margin-top: 24px; margin-bottom: 8px; }
.legal p, .legal li { color: var(--c-text); line-height: 1.7; }
.legal ul { padding-left: 22px; }
.legal a { color: var(--c-blue); }
.legal a:hover { text-decoration: underline; }
.legal .legal-sub { color: var(--c-mute); margin-bottom: 20px; }

/* ---------- Anchored sections ---------- */
[id] { scroll-margin-top: calc(var(--nav-h) + 16px); }

/* ---------- Helpers ---------- */
.text-ink { color: var(--c-ink); }
.text-blue { color: var(--c-blue); }
.text-mute { color: var(--c-mute); }
.fw-700 { font-weight: 700; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.center { text-align: center; }
.row-flex { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* ---------- Responsive ---------- */

/* Sehr breite Screens — Hero darf etwas mehr Luft bekommen */
@media (min-width: 1500px) {
    .hero h1 { font-size: clamp(3.4rem, 2.6vw + 1.4rem, 4.4rem); }
    .hero-visual .floater--tl { top: -28px; left: -28px; }
    .hero-visual .floater--br { bottom: -28px; right: -28px; }
}

/* Tablet / Laptop oberhalb Burger-Schwelle */
@media (max-width: 1180px) {
    .nav-links { gap: 2px; }
    .nav-links a { padding: 8px 11px; font-size: .9rem; }
    .nav-cta .btn { padding: 10px 16px; font-size: .88rem; }
    .nav-brand span { font-size: 1.05rem; }
    .hero-visual .floater { padding: 12px 14px; font-size: .82rem; }
    .hero-visual .floater .ico { width: 32px; height: 32px; }
    .hero-visual .floater small { font-size: .72rem; }
}

@media (max-width: 1080px) {
    .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; gap: 32px; }
    .footer-grid > .footer-madein { grid-column: 1 / -1; max-width: 620px; }
    .nav-links a { padding: 7px 9px; font-size: .86rem; }
    .nav-cta .btn--ghost { display: none; }
    .premium-grid-inner { gap: 36px; }
    .feature-card { padding: 24px 22px; }
}

/* Schwelle: Mehrspalter brechen jetzt um — aber spät genug, um nicht zu früh leer zu werden */
@media (max-width: 920px) {
    .hero { min-height: auto; padding-bottom: clamp(40px, 6vw, 80px); }
    .hero-grid { grid-template-columns: 1fr; gap: 44px; }
    .hero-lead { max-width: 100%; }
    .hero-visual { max-width: 720px; margin: 0 auto; width: 100%; }
    .hero-visual .floater--tl { top: -16px; left: -16px; }
    .hero-visual .floater--br { bottom: -16px; right: -16px; }

    .showcase, .showcase--reverse { grid-template-columns: 1fr; gap: 36px; }
    .showcase--reverse .showcase-text { order: 1; }
    .showcase--reverse .showcase-media { order: 2; }

    .pricing-wrap { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; gap: 28px; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .pillars { grid-template-columns: repeat(2, 1fr); }
    .stat-band { grid-template-columns: repeat(2, 1fr); gap: 22px; }
    .trust-row { grid-template-columns: repeat(2, 1fr); gap: 22px 32px; }
    .reviews-grid { grid-template-columns: 1fr; gap: 20px; }
    .sync-grid { grid-template-columns: 1fr; gap: 20px; }
    .download-grid { grid-template-columns: 1fr; }
    .quick-facts { grid-template-columns: 1fr; }
    .conversion-band { grid-template-columns: 1fr; }
    .conversion-actions { justify-content: flex-start; }
    .premium-grid-inner { grid-template-columns: 1fr; gap: 32px; }
    .banner-cta { grid-template-columns: 1fr; gap: 22px; padding: clamp(28px, 4vw, 48px); }
    .banner-cta::after {
        width: 100%;
        opacity: .08;
        background:
            linear-gradient(180deg, rgba(10,18,38,.98) 0%, rgba(10,18,38,.92) 100%),
            url("../img/generated/marketing/billevo-cta-local-start-21x9.webp") center/cover no-repeat;
    }
    .banner-cta .actions {
        justify-content: flex-start;
        justify-self: stretch;
        width: 100%;
        max-width: 560px;
    }
    .purchase-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
    .footer-grid > .footer-madein { grid-column: 1 / -1; max-width: 100%; }
}

/* Smartphone-Schwelle: Burger an, Vollbild Menue */
@media (max-width: 760px) {
    .nav-brand img { width: 42px; height: 42px; }
    .nav-brand span { font-size: 1.18rem; }
    .nav-inner { gap: 10px; }
    .nav-current { display: none !important; }
    .nav-cta { gap: 8px; }
    .nav-cta .btn { padding: 11px 16px; font-size: .92rem; font-weight: 700; }
    .nav-cta .btn--ghost { display: none; }
    .nav-cta .btn--primary { padding: 12px 16px; font-size: .9rem; }
    .nav-toggle { display: inline-flex; width: 48px; height: 48px; }
    .nav-toggle svg { width: 24px; height: 24px; }

    .nav-links { display: none; }
}

/* Mobile Menue Overlay: das nav-links wird per JS an body angehaengt
   und mit is-mobile-open versehen, damit es unabhaengig vom .nav
   Containing Block (backdrop-filter) im Viewport positioniert wird. */
body.menu-locked {
    overflow: hidden;
    overscroll-behavior: none;
}

.nav-links.is-mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-actual-h);
    left: 0;
    right: 0;
    height: calc(var(--mobile-vvh) - var(--nav-actual-h));
    max-height: calc(var(--mobile-vvh) - var(--nav-actual-h));
    background:
        linear-gradient(180deg, #ffffff 0%, #f8fbff 62%, #f3f7ff 100%);
    padding: 10px var(--pad-x) calc(20px + env(safe-area-inset-bottom));
    gap: 4px;
    z-index: 1090;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    animation: fadeIn .2s ease-out;
    box-sizing: border-box;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    contain: layout paint;
}
.nav-links.is-mobile-open .nav-group {
    width: 100%;
    border-bottom: 1px solid rgba(37,99,235,.09);
}
.nav-links.is-mobile-open .nav-group summary {
    width: 100%;
    padding: 12px 14px;
    font-size: 1.05rem;
    font-weight: 800;
    border-radius: var(--r-md);
    color: var(--c-ink);
}
.nav-links.is-mobile-open .nav-group.is-active summary,
.nav-links.is-mobile-open .nav-group[open] summary {
    background: rgba(230,239,255,.72);
    color: var(--c-blue-d);
    box-shadow: inset 4px 0 0 var(--c-blue);
}
.nav-links.is-mobile-open .nav-menu {
    position: static;
    min-width: 0;
    box-shadow: none;
    border: 0;
    padding: 0 0 8px 10px;
    background: transparent;
}
.nav-links.is-mobile-open .nav-menu a {
    font-size: 1rem;
    padding: 10px 12px;
    border-bottom: 0;
    position: relative;
}
.nav-links.is-mobile-open a {
    width: 100%;
    padding: 14px 14px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--c-ink);
    border-radius: var(--r-md);
    border: 1px solid transparent;
    border-bottom-color: rgba(37,99,235,.10);
    text-align: left;
    text-decoration: none;
}
.nav-links.is-mobile-open .nav-menu a {
    font-size: .95rem;
    padding: 10px 12px;
    font-weight: 600;
    border-bottom: 0;
}
.nav-links.is-mobile-open a:last-of-type { border-bottom: 0; }
.nav-links.is-mobile-open a.is-active {
    color: var(--c-blue-d);
    background: linear-gradient(135deg, rgba(241,245,255,.98), rgba(230,239,255,.82));
    border-color: rgba(37,99,235,.18);
    border-bottom-color: transparent;
    box-shadow: inset 4px 0 0 var(--c-blue), 0 12px 28px -24px rgba(37,99,235,.65);
}
.nav-links.is-mobile-open .nav-menu a.is-active::after,
.nav-links.is-mobile-open .nav-menu a[aria-current="page"]::after {
    content: none;
}
.nav-links.is-mobile-open .menu-cta {
    display: block;
    position: static;
    z-index: 1;
    margin-top: 12px;
    padding: 16px 14px;
    background: var(--c-blue);
    color: #fff;
    text-align: center;
    font-size: 1.05rem;
    font-weight: 800;
    border-radius: var(--r-md);
    border-bottom: 0;
    box-shadow: 0 16px 32px -22px rgba(37,99,235,.78);
}
.nav-links.is-mobile-open .menu-cta[href="download"] { margin-top: auto; }
.nav-links.is-mobile-open .menu-cta + .menu-cta {
    margin-top: 12px;
}
.nav-links.is-mobile-open .menu-cta:hover { background: var(--c-blue-h); }

/* Beim Open: eigene Kopfzeile, damit kein Seiteninhalt hinter dem Menue durchscheint */
.nav.is-open {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    height: var(--nav-actual-h);
    min-height: var(--nav-actual-h);
    background: rgba(255,255,255,.96) !important;
    backdrop-filter: saturate(160%) blur(16px) !important;
    -webkit-backdrop-filter: saturate(160%) blur(16px) !important;
    border-bottom-color: var(--c-line-soft);
    box-shadow: 0 2px 10px rgba(10,18,38,.04);
}
.nav.is-open .nav-toggle {
    position: fixed;
    top: 14px;
    right: var(--pad-x);
    z-index: 1110;
    color: var(--c-ink-2);
    background: #fff;
    border-color: var(--c-line);
}
.nav.is-open .nav-toggle:hover {
    background: var(--c-blue-tint);
    border-color: var(--c-blue-soft);
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Auf grossen Screens darf is-mobile-open nichts mehr machen, falls JS spinnt */
@media (min-width: 761px) {
    .nav-links.is-mobile-open {
        position: static;
        background: transparent;
        padding: 0;
        flex-direction: row;
        animation: none;
    }
}

/* Smartphone-spezifische Anpassungen */
@media (max-width: 760px) {

    .page-head {
        min-height: auto;
        padding: 44px 0 34px;
        align-items: flex-start;
    }
    .page-head .lead {
        font-size: 1rem;
        line-height: 1.55;
    }
    .page-head-actions {
        margin-top: 18px;
        gap: 10px;
    }
    .page-head-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .feature-grid { grid-template-columns: 1fr; gap: 14px; }
    .quick-facts { gap: 10px; margin-top: 18px; }
    .quick-fact { padding: 14px; }
    .conversion-band { padding: 24px 20px; }
    .conversion-actions .btn { width: 100%; justify-content: center; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .hero-visual .floater { display: none; }
    .stat-band { grid-template-columns: 1fr 1fr; gap: 18px; padding: 22px; }
    .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
    .footer-bottom .links a:first-child { margin-left: 0; }
    .price-card { padding: 28px 22px; }
    .purchase-steps { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }

    .update-teaser { grid-template-columns: 1fr; gap: 14px; padding: 22px; align-items: flex-start; }
    .update-teaser > a { justify-self: stretch; text-align: center; width: 100%; }

    .premium-shell { padding: 28px 22px; }
    .review-platform-card { padding: 26px 22px; }
    .review-platform-card .actions { flex-direction: column; align-items: stretch; }
    .review-platform-card .actions .btn { width: 100%; justify-content: center; }
    .page-head h1 { font-size: clamp(1.85rem, 6vw, 2.4rem); max-width: 100%; }
    .page-head::before { opacity: .08; width: 100%; }
    .hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
    .section-head h2 { font-size: clamp(1.65rem, 5vw, 2.1rem); }
    .showcase-text h2 { font-size: clamp(1.55rem, 5vw, 2rem); }

    .container { padding: 0 18px; }
    .legal h2 { font-size: 1.15rem; margin-top: 28px; }
    .crumb { font-size: .8rem; }

    .offline-band { grid-template-columns: 1fr; gap: 24px; }
    .offline-band .points { grid-template-columns: 1fr; }
    .offline-visual { width: 140px; height: 140px; }
    .offline-visual svg { width: 64px; height: 64px; }
}

/* Kleines Smartphone */
@media (max-width: 520px) {
    .container {
        max-width: 100vw;
        padding-left: 20px;
        padding-right: 20px;
    }
    .hero-grid,
    .hero-grid > *,
    .hero-actions,
    .hero h1,
    .hero-lead,
    .hero-meta {
        max-width: 330px;
    }
    .nav-inner { justify-content: space-between; position: relative; }
    .nav-cta {
        position: static;
        transform: none;
        margin-left: auto;
    }
    .nav-toggle {
        display: inline-flex !important;
        position: fixed;
        top: 14px;
        right: auto;
        left: min(330px, calc(100vw - 68px));
        z-index: 80;
        background: #fff;
    }
    .pillars { grid-template-columns: 1fr; }
    .stat-band { grid-template-columns: 1fr; }
    .trust-row { grid-template-columns: 1fr; gap: 14px; }
    .nav-cta .btn { display: none; }
    .nav-brand img { width: 30px; height: 30px; }
    .nav-brand span { font-size: 1rem; }
    .nav-current {
        display: none !important;
        max-width: min(138px, 34vw);
        padding: 6px 9px;
        font-size: .7rem;
    }
    .price-card .price-tag .amount { font-size: 2.1rem; }
    .hero-meta { gap: 12px; font-size: .82rem; }
    .hero h1 { font-size: clamp(1.55rem, 6.4vw, 1.9rem); line-height: 1.1; }
    .hero-lead { font-size: 1rem; line-height: 1.55; }
    .hero-actions { width: 100%; }
    .hero-actions .btn { flex: 1 0 100%; justify-content: center; width: 100%; max-width: 330px; }
    .hero h1,
    .page-head h1,
    .section-head h2,
    .showcase-text h2 {
        overflow-wrap: anywhere;
        hyphens: auto;
    }
    .section-eyebrow { font-size: .72rem; padding: 5px 10px; }
    .review-card { padding: 22px; }
    .faq-item summary { padding: 18px 18px; font-size: .98rem; }
    .faq-item .answer { padding: 0 18px 18px; }
    .banner-cta .actions {
        padding: 10px;
        gap: 10px;
    }
    .banner-cta .actions .btn {
        flex: 1 1 100%;
        width: 100%;
        min-width: 0;
    }
    .footer { padding-top: 56px; }
}

/* Sehr klein - letzter Sicherheits-Knoten */
@media (max-width: 380px) {
    .nav-cta .btn { padding: 8px 10px; }
    .hero h1 { font-size: clamp(1.75rem, 8vw, 2.1rem); }
    .price-card .price-tag .amount { font-size: 1.9rem; }
}



/* ---------- Consent Banner ---------- */
.is-hidden { display: none !important; }
.consent-banner {
    position: fixed;
    left: clamp(16px, 3vw, 32px);
    right: clamp(16px, 3vw, 32px);
    bottom: calc(16px + env(safe-area-inset-bottom));
    z-index: 1300;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    max-width: 980px;
    margin: 0 auto;
    padding: 18px;
    background: rgba(255,255,255,.98);
    border: 1px solid rgba(37,99,235,.16);
    border-radius: var(--r-xl);
    box-shadow: 0 24px 70px -34px rgba(10,18,38,.45);
}
.consent-banner h2 { font-size: 1.05rem; margin-bottom: 4px; }
.consent-banner p { color: var(--c-text); font-size: .92rem; max-width: 68ch; }
.consent-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.consent-settings {
    grid-column: 1 / -1;
    display: none;
    padding-top: 12px;
    border-top: 1px solid var(--c-line-soft);
}
.consent-banner.is-settings .consent-settings { display: grid; gap: 10px; }
.consent-option {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    padding: 12px 0;
    color: var(--c-text);
}
.consent-option strong { display: block; color: var(--c-ink); }
.consent-option small { display: block; color: var(--c-mute); }
.tp-consent-box {
    display: grid;
    justify-items: center;
    gap: 12px;
    text-align: center;
    color: var(--c-text);
    padding: 34px 18px;
}
.tp-consent-box strong { color: var(--c-ink); font-size: 1.05rem; }
.tp-consent-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.trustpilot-widget[hidden] { display: none !important; }
@media (max-width: 760px) {
    .consent-banner { grid-template-columns: 1fr; }
    .consent-actions { justify-content: stretch; }
    .consent-actions .btn { width: 100%; justify-content: center; }
}
