/* Satzlicht — marketing site.
   Brand: warm gold accent on cream paper + ink, mirroring the print flyer
   (DIN-Lang). Premium but vivid: gold glows, highlight marker, gold price chip. */

/* Self-hosted Inter (variable, latin subset) — no third-party font CDN, so no
   visitor data is sent to Google. See Datenschutzerklärung. */
@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url("../fonts/inter-latin-variable.woff2") format("woff2");
}

:root {
    --ink: #0e0e10;
    --ink-2: #3a3a40;
    --paper: #f4f1ea;          /* warm flyer paper — the page base */
    --surface: #ffffff;        /* cards / panels float on the paper */
    --tint: #ece7db;           /* deeper cream for alternating sections */
    --line: #e3ddd0;           /* warm hairline */
    --muted: #76746d;
    --gold: #f6b82c;           /* signature accent */
    --gold-2: #f4a91e;         /* gradient partner */
    --gold-deep: #d69614;      /* shadows / deep accents */
    --gold-ink: #8a6a0c;       /* gold text on light (eyebrows) */
    --gold-glow: rgba(246, 184, 44, .42);
    --maxw: 1120px;
    --radius: 16px;
    --ease: cubic-bezier(.16, .84, .44, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* clip (not hidden) prevents horizontal overflow WITHOUT making body a scroll
   container — so the sticky .site-header keeps working. */
html, body { overflow-x: clip; }

body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

h1, h2, h3 { overflow-wrap: break-word; hyphens: manual; }

/* Let grid/flex items shrink below their content's intrinsic width (avoids
   the min-width:auto overflow that pushes the page wider than the viewport). */
.hero-grid > *, .flow-grid > *, .cards > *, .value-grid > *,
.footer-inner > *, .btn-row > * { min-width: 0; }

a { color: inherit; }

img { max-width: 100%; display: block; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 720px; }

.skip {
    position: absolute; left: -9999px; top: 0;
    background: var(--ink); color: #fff; padding: 10px 16px; z-index: 100;
}
.skip:focus { left: 8px; top: 8px; }

/* gold highlight marker behind a headline word (flyer's "E-Paper." treatment) */
.mark {
    white-space: nowrap;
    background: linear-gradient(to top, var(--gold) 0, var(--gold) 34%, transparent 34%);
    padding: 0 .12em;
    border-radius: 2px;
}

/* ---------- Header ---------- */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(244, 241, 234, .82);
    backdrop-filter: saturate(150%) blur(12px);
    border-bottom: 1px solid var(--line);
    box-shadow: inset 0 3px 0 0 var(--gold);   /* gold top accent */
}
.header-inner { display: flex; align-items: center; gap: 24px; height: 70px; }
.brand { display: flex; align-items: center; flex: 0 0 auto; }
.brand-logo { height: 30px; width: auto; }
.nav { display: flex; gap: 28px; margin-left: 12px; flex: 1 1 auto; }
.nav a {
    position: relative; text-decoration: none; font-weight: 500; font-size: 15px;
    color: var(--ink-2); transition: color .2s var(--ease);
}
.nav a::after {
    content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px;
    background: var(--gold); border-radius: 2px; transition: right .25s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 16px; flex: 0 0 auto; }
.lang-switch {
    text-decoration: none; font-weight: 700; font-size: 13px; letter-spacing: .04em;
    color: var(--ink); border: 1px solid var(--line); border-radius: 999px; padding: 6px 12px;
    transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.lang-switch:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 17px; text-decoration: none;
    padding: 16px 32px; border-radius: 999px; border: 1.5px solid transparent;
    transition: transform .18s var(--ease), box-shadow .2s var(--ease),
        background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
    cursor: pointer; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm { padding: 9px 18px; font-size: 14px; }
/* gold = the primary, energetic action */
.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
    color: var(--ink); box-shadow: 0 10px 24px -8px var(--gold-glow);
}
.btn-gold:hover { box-shadow: 0 16px 34px -10px var(--gold-glow); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #262626; }
.btn-ghost { background: transparent; color: var(--ink); border-color: rgba(14, 14, 16, .22); }
.btn-ghost:hover { border-color: var(--ink); background: rgba(14, 14, 16, .04); }
.btn-light { background: #fff; color: var(--ink); }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .45); }
.btn-ghost-light:hover { border-color: #fff; background: rgba(255, 255, 255, .08); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

/* App Store badge — native store link, styled to Apple's badge proportions */
.store-badge {
    display: inline-flex; align-items: center; gap: 11px;
    background: var(--ink); color: #fff; text-decoration: none;
    padding: 11px 20px; border-radius: 13px; border: 1.5px solid var(--ink);
    line-height: 1; white-space: nowrap;
    transition: transform .18s var(--ease), background .2s var(--ease);
}
.store-badge:hover { transform: translateY(-2px); background: #262626; }
.store-badge-glyph { flex: 0 0 auto; margin-top: -3px; }
.store-badge-tx { display: inline-flex; flex-direction: column; align-items: flex-start; gap: 3px; }
.store-badge-sub { font-size: 11px; font-weight: 500; letter-spacing: .02em; opacity: .92; }
.store-badge-name { font-size: 20px; font-weight: 600; letter-spacing: .01em; }

/* ---------- Shared section ---------- */
.eyebrow {
    display: inline-flex; align-items: center; gap: 9px;
    text-transform: uppercase; letter-spacing: .18em; font-size: 12px; font-weight: 700;
    color: var(--gold-ink); margin: 0 0 14px;
}
.eyebrow::before {
    content: ""; width: 22px; height: 3px; border-radius: 2px;
    background: var(--gold); flex: 0 0 auto;
}
.section { padding: 116px 0; border-bottom: 1px solid var(--line); }
.section-tint { background: var(--tint); }
.section-title { font-size: clamp(30px, 4.2vw, 46px); line-height: 1.1; letter-spacing: -.02em; font-weight: 800; margin: 0 0 20px; max-width: 20ch; }
.section-lead { font-size: 20px; color: var(--ink-2); max-width: 60ch; margin: 0 0 48px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(56px, 9vw, 110px) 0; overflow: hidden; }
.hero::before {                                   /* warm wash behind the hero */
    content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background:
        radial-gradient(60% 70% at 82% 18%, var(--gold-glow), transparent 60%),
        linear-gradient(180deg, #faf8f2 0%, var(--paper) 70%);
}
.hero .wrap { position: relative; z-index: 1; }
/* headline spans the full hero width so it reads on one line on desktop */
.hero-title { font-size: clamp(34px, 5.2vw, 58px); line-height: 1.05; letter-spacing: -.03em; font-weight: 800; margin: 14px 0 20px; }
/* bold positioning statement under the headline — the manifesto line */
.hero-statement { font-size: clamp(20px, 2.6vw, 28px); line-height: 1.32; font-weight: 700; letter-spacing: -.01em; color: var(--ink); max-width: 30ch; margin: 0 0 34px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero-copy .lead { font-size: clamp(18px, 2.2vw, 22px); color: var(--ink-2); max-width: 46ch; margin: 0; }
.micro { font-size: 14px; color: var(--muted); margin-top: 18px; }

/* price chip — echoes the flyer's gold price block */
.price-chip {
    display: inline-flex; align-items: baseline; gap: 8px; margin-top: 24px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
    color: var(--ink); border-radius: 14px; padding: 12px 18px;
    box-shadow: 0 14px 30px -12px var(--gold-glow);
}
.price-chip .pc-from { font-size: 13px; font-weight: 600; opacity: .85; }
.price-chip .pc-amt { font-size: 26px; font-weight: 800; line-height: 1; letter-spacing: -.01em; }
.price-chip .pc-unit { font-size: 13px; font-weight: 600; opacity: .85; }

/* Hero device cascade — real Beispiel-Zeitung shots in a layered browser/tablet/phone
   combo. Sized in container-query units (cqw) off the 680×588 design canvas, so the
   whole stack (bezels, radii, shadows) scales fluidly with no JS. */
.hero-visual { container-type: inline-size; position: relative; width: 100%; max-width: 680px; margin-left: auto; }
.hero-combo { position: relative; width: 100%; height: 86.5cqw; }
.hc-glow { position: absolute; left: 50%; top: 50%; width: 88cqw; height: 79cqw; transform: translate(-46%, -48%);
    background: radial-gradient(circle at 50% 50%, rgba(244, 182, 44, .42), rgba(244, 182, 44, 0) 66%); z-index: 0; pointer-events: none; }
.hc-dev { position: absolute; }
.hc-dev img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.hc-inner { width: 100%; height: 100%; overflow: hidden; background: #fff; position: relative; }

/* browser window — desktop shot */
.hc-browser { left: 17.06cqw; top: .59cqw; width: 68.53cqw; height: 43.82cqw; z-index: 1;
    background: #fff; border-radius: 2.06cqw; overflow: hidden; border: 1px solid rgba(0, 0, 0, .07);
    box-shadow: 0 6.5cqw 13cqw -4.4cqw rgba(34, 28, 14, .34), 0 2cqw 4.4cqw -2.4cqw rgba(34, 28, 14, .2);
    display: flex; flex-direction: column; }
.hc-chrome { height: 5.88cqw; flex: none; display: flex; align-items: center; gap: 1.5cqw; padding: 0 2.35cqw; background: #F2F0EA; border-bottom: 1px solid rgba(0, 0, 0, .06); }
.hc-dots { display: flex; gap: 1cqw; }
.hc-dots span { width: 1.6cqw; height: 1.6cqw; border-radius: 50%; background: #DAD5CB; }
.hc-url { flex: 1; display: flex; justify-content: center; }
.hc-url > div { display: flex; align-items: center; justify-content: center; gap: 1.2cqw; height: 3.5cqw; padding: 0 2.35cqw; width: 100%; max-width: 40cqw; background: #fff; border: 1px solid rgba(0, 0, 0, .07); border-radius: 1.8cqw; }
.hc-favi { width: 1.2cqw; height: 1.2cqw; border-radius: .3cqw; border: .22cqw solid #B7B1A6; }
.hc-url span { font-size: 1.76cqw; color: #8A847A; font-weight: 500; white-space: nowrap; }
.hc-browser-body { flex: 1; position: relative; background: #fff; overflow: hidden; }

/* tablet */
.hc-tablet { left: 48.82cqw; top: 42.06cqw; width: 45cqw; height: 33.82cqw; z-index: 2;
    background: #15130F; border-radius: 4.12cqw; padding: 1.76cqw;
    box-shadow: 0 5.9cqw 11.8cqw -4.1cqw rgba(34, 28, 14, .34), 0 1.8cqw 3.8cqw -2cqw rgba(34, 28, 14, .22); }
.hc-tablet .hc-inner { border-radius: 2.5cqw; }

/* phone */
.hc-phone { left: 9.41cqw; top: 30.88cqw; width: 26.18cqw; height: 55.29cqw; z-index: 3;
    background: #15130F; border-radius: 5.59cqw; padding: 1.32cqw;
    box-shadow: 0 7cqw 13cqw -4.1cqw rgba(34, 28, 14, .4), 0 2.35cqw 5cqw -2.35cqw rgba(34, 28, 14, .28); }
.hc-phone .hc-inner { border-radius: 4.41cqw; }

/* ---------- Problem (x-list) ---------- */
.x-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 32px; max-width: 760px; }
.x-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 17px; }
.x-list .x { flex: 0 0 auto; width: 24px; height: 24px; border-radius: 50%; background: #f4dedd; color: #c0392f; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; font-size: 15px; margin-top: 2px; }

/* ---------- Solution cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease); }
.card::before { content: ""; display: block; width: 34px; height: 14px; margin-bottom: 18px; background: repeating-linear-gradient(180deg, var(--gold) 0 2px, transparent 2px 4px); }
.card:hover { transform: translateY(-4px); box-shadow: 0 24px 44px -26px var(--gold-glow); border-color: var(--gold); }
.card h3 { margin: 0 0 8px; font-size: 19px; letter-spacing: -.01em; }
.card p { margin: 0; color: var(--ink-2); font-size: 15.5px; }

/* ---------- Satzlicht-Erlebnis (AI reader experience) ---------- */
.section-erlebnis { background: radial-gradient(82% 60% at 86% 8%, var(--gold-glow), transparent 60%), #f7f1e6; }
.erlebnis-cards .card { background: #fff; }
.erlebnis-cards .card .card-tag { position: absolute; top: 22px; right: 22px; font-size: 11px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; color: var(--gold-ink); background: rgba(246, 184, 44, .16); border: 1px solid rgba(246, 184, 44, .35); border-radius: 999px; padding: 3px 11px; }
.erlebnis-cards .card h3 { padding-right: 84px; }
.erlebnis-note { margin: 34px 0 0; color: var(--ink-2); font-size: 16px; max-width: 70ch; }
.erlebnis-cta { margin: 22px 0 0; }

/* ---------- Hörprobe (audio: standard vs premium) ---------- */
.hoer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.hoer-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; background: var(--surface); }
.hoer-card--premium { border-color: rgba(246, 184, 44, .4); background: radial-gradient(80% 70% at 92% 0, rgba(246, 184, 44, .09), transparent 60%), var(--surface); }
.hoer-tier { font-size: 13px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--ink); display: flex; align-items: center; gap: 9px; }
.hoer-badge { font-size: 11px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; color: var(--gold-ink); background: rgba(246, 184, 44, .16); border: 1px solid rgba(246, 184, 44, .35); border-radius: 999px; padding: 2px 9px; }
.hoer-meta { font-size: 14px; color: var(--ink-2); margin: 7px 0 4px; }
.hoer-track { margin-top: 16px; }
.hoer-name { display: block; font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.hoer-track audio { width: 100%; height: 38px; }
.hoer-voices { max-width: 760px; }
.hoer-tracks { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 18px; }
.hoer-tracks .hoer-track { margin-top: 0; }
@media (max-width: 560px) { .hoer-tracks { grid-template-columns: 1fr; gap: 16px; } }
.hoer-cost { margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(246, 184, 44, .3); }
.hoer-cost-title { margin: 0 0 4px; font-size: 14px; font-weight: 800; color: var(--gold-ink); }
.hoer-cost-text { margin: 0 0 8px; font-size: 14px; line-height: 1.5; color: var(--ink-2); }
.hoer-cost-example { margin: 0; font-size: 14px; line-height: 1.5; color: var(--ink); font-weight: 600; }
.hoer-note { margin: 24px 0 0; font-size: 15px; color: var(--ink-2); max-width: 72ch; }
@media (max-width: 720px) { .hoer-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .erlebnis-cards .card .card-tag { position: static; display: inline-block; margin-bottom: 12px; } .erlebnis-cards .card h3 { padding-right: 0; } }

/* ---------- Before / After ---------- */
.flow-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: center; }
.flow-col { border-radius: var(--radius); padding: 28px; border: 1px solid var(--line); background: var(--surface); }
.flow-before { background: #fbf6ee; }
.flow-after { background: var(--ink); color: #fff; border-color: var(--ink); box-shadow: 0 26px 50px -28px rgba(14, 14, 16, .55); }
.flow-col h3 { margin: 0 0 16px; font-size: 16px; text-transform: uppercase; letter-spacing: .08em; }
.flow-after h3 { color: var(--gold); }
.flow-col ol { margin: 0; padding-left: 20px; display: flex; flex-direction: column; gap: 10px; }
.flow-col li { font-size: 17px; font-weight: 500; }
.flow-after li::marker { color: var(--gold); font-weight: 700; }
.flow-arrow { font-size: 30px; color: var(--gold-deep); }

/* ---------- Value ---------- */
.value-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.value-item { background: var(--surface); padding: 32px; transition: background .2s var(--ease); }
.value-item:hover { background: #fffdf7; }
.value-item h3 { margin: 0 0 8px; font-size: 18px; padding-left: 14px; position: relative; }
.value-item h3::before { content: ""; position: absolute; left: 0; top: .15em; bottom: .15em; width: 4px; border-radius: 2px; background: var(--gold); }
.value-item p { margin: 0; color: var(--ink-2); }

/* ---------- Compare table ---------- */
.table-scroll { max-width: 820px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare { width: 100%; border-collapse: collapse; min-width: 480px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.compare th, .compare td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line); }
.compare thead th { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.compare thead th.hl { color: var(--ink); }
.compare tbody th { font-weight: 600; font-size: 16px; }
.compare td { text-align: center; width: 26%; font-size: 18px; }
.compare td.no { color: #c4bdb0; }
.compare td.yes { color: var(--gold-deep); font-weight: 700; }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: 0; }
.compare td.yes, .compare thead th.hl { background: #fdf6e6; box-shadow: inset 3px 0 0 0 var(--gold), inset -3px 0 0 0 var(--gold); }

/* ---------- Proof ---------- */
.check-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px 32px; }
.check-list li { display: flex; align-items: center; gap: 12px; font-size: 17px; font-weight: 500; }
.check-list .ck { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%); color: var(--ink); display: inline-flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; box-shadow: 0 4px 10px -4px var(--gold-glow); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; background: var(--ink); color: #fff; padding: 116px 0; overflow: hidden; }
.cta-band::before {
    content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background:
        radial-gradient(50% 120% at 15% 0%, rgba(246, 184, 44, .26), transparent 55%),
        radial-gradient(45% 120% at 90% 100%, rgba(246, 184, 44, .18), transparent 55%);
}
.cta-band .wrap { position: relative; z-index: 1; }
.cta-inner { text-align: center; }
.cta-inner h2 { font-size: clamp(30px, 4.5vw, 50px); letter-spacing: -.02em; font-weight: 800; margin: 0 0 14px; }
.cta-inner p { font-size: 19px; color: rgba(255, 255, 255, .76); max-width: 56ch; margin: 0 auto; }
.cta-inner .btn-row { justify-content: center; }
.share-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px; margin-top: 34px; }
.share-label { color: rgba(255, 255, 255, .7); font-size: 14px; font-weight: 600; margin-right: 4px; }
.share-chip { display: inline-block; border: 0; cursor: pointer; font: inherit; font-size: 13px; font-weight: 700; line-height: 1; color: #fff; padding: 9px 15px; border-radius: 999px; text-decoration: none; transition: transform .15s ease, filter .15s ease; }
.share-chip:hover { transform: translateY(-2px); filter: brightness(1.08); }
.sc-wa { background: #25D366; } .sc-x { background: #000; } .sc-li { background: #0A66C2; }
.sc-fb { background: #1877F2; } .sc-em { background: #4b5563; }
.sc-cp { background: rgba(255, 255, 255, .14); border: 1px solid rgba(255, 255, 255, .32); }

/* ---------- Trust (4-up check row) ---------- */
.check-list.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Pricing ---------- */
.price-headline { display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 16px; margin: 4px 0 12px; }
.price-main { font-size: clamp(42px, 6.4vw, 66px); font-weight: 800; letter-spacing: -.02em; line-height: 1; }
.price-unit { font-size: clamp(16px, 2vw, 20px); font-weight: 600; color: var(--ink-2); }
.price-floor { font-size: 16px; font-weight: 600; color: var(--ink-2); margin: 0 0 14px; }
.price-tag { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--gold-ink); background: #fdf6e6; border: 1px solid #ecd9a2; border-radius: 999px; padding: 5px 13px; margin: 0 0 18px; }
.price-note { margin: 30px 0 0; max-width: 72ch; font-size: 15px; line-height: 1.6; color: var(--muted); border-top: 1px solid var(--line); padding-top: 22px; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 8px; }
.pricing-panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 34px; }
.pricing-panel h3 { margin: 0 0 20px; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.check-col { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 15px; }
.check-col li { display: flex; align-items: center; gap: 12px; font-size: 17px; font-weight: 500; }
.check-col .ck { flex: 0 0 auto; width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%); color: var(--ink); display: inline-flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; box-shadow: 0 4px 10px -4px var(--gold-glow); }
.price-examples-label { margin: 40px 0 16px; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 700; }
.price-examples { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.price-ex { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 24px 20px; text-align: center; transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease); }
.price-ex:hover { transform: translateY(-3px); border-color: var(--gold); box-shadow: 0 20px 40px -26px var(--gold-glow); }
.price-ex .ex-a { display: block; font-size: 14px; color: var(--muted); margin-bottom: 8px; }
.price-ex .ex-p { display: block; font-size: clamp(20px, 2.4vw, 26px); font-weight: 800; letter-spacing: -.01em; }

/* Package / tier cards */
.pkg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
.pkg-card { position: relative; display: flex; flex-direction: column; gap: 11px; background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 28px 24px 26px; transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease); }
.pkg-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 24px 48px -28px var(--gold-glow); }
.pkg-card.is-featured { border-color: var(--gold); box-shadow: 0 18px 44px -30px var(--gold-glow); background: linear-gradient(180deg, #fffdf7 0%, var(--surface) 62%); }
.pkg-badge { position: absolute; top: -12px; left: 24px; font-size: 11px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; color: #fff; background: var(--gold); border-radius: 999px; padding: 5px 12px; box-shadow: 0 8px 18px -8px var(--gold-glow); }
.pkg-name { font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.pkg-price { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.pkg-amt { font-size: clamp(27px, 3vw, 36px); font-weight: 800; letter-spacing: -.02em; line-height: 1; }
.pkg-unit { font-size: 13px; font-weight: 600; color: var(--ink-2); }
.pkg-desc { margin: 4px 0 0; font-size: 14px; line-height: 1.55; color: var(--muted); }

/* ---------- Compatibility & integration (spec panels + chips) ---------- */
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.spec-panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 34px; }
.spec-panel h3 { margin: 0 0 6px; font-size: 20px; letter-spacing: -.01em; }
.spec-sub { margin: 0 0 20px; color: var(--ink-2); font-size: 15.5px; line-height: 1.5; }
.chips { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.chips li { font-size: 14px; font-weight: 600; color: var(--ink); background: var(--tint); border: 1px solid var(--line); border-radius: 999px; padding: 8px 15px; }
.spec-more { margin: 18px 0 0; font-size: 14px; color: var(--muted); }

/* ---------- Summer special / early-bird promo ---------- */
.promo {
    position: relative; overflow: hidden;
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
    gap: 24px 44px; margin: 0 0 56px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
    color: var(--ink); border-radius: var(--radius); padding: 36px 42px;
    box-shadow: 0 26px 54px -28px var(--gold-glow);
}
.promo::before { content: ""; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(60% 130% at 100% 0%, rgba(255, 255, 255, .38), transparent 55%); }
.promo-main { position: relative; z-index: 1; min-width: 0; flex: 1 1 360px; }
.promo-aside { position: relative; z-index: 1; flex: 0 0 auto; display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.promo-kicker { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; background: var(--ink); color: #fff; border-radius: 999px; padding: 6px 14px; margin-bottom: 16px; }
.promo-title { font-size: clamp(22px, 3vw, 30px); line-height: 1.16; letter-spacing: -.01em; font-weight: 800; margin: 0 0 10px; }
.promo-text { margin: 0; font-size: 16px; line-height: 1.55; max-width: 54ch; color: rgba(14, 14, 16, .82); }
.promo-price { display: flex; align-items: baseline; gap: 9px; }
.promo-amt { font-size: clamp(34px, 5vw, 48px); font-weight: 800; line-height: 1; letter-spacing: -.02em; }
.promo-unit { font-size: 15px; font-weight: 700; opacity: .8; }
.promo .btn-dark { white-space: nowrap; }

/* Anzeigenblatt special tier — dark card, contrasts the gold promo */
.ab-offer {
    position: relative; overflow: hidden;
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
    gap: 24px 44px; margin: 48px 0 0;
    background: var(--ink); color: #fff; border-radius: var(--radius);
    padding: 36px 42px; box-shadow: 0 26px 54px -30px rgba(14, 14, 16, .6);
}
.ab-offer::before { content: ""; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(64% 130% at 100% 0%, rgba(246, 184, 44, .22), transparent 58%); }
.ab-main { position: relative; z-index: 1; min-width: 0; flex: 1 1 380px; }
.ab-aside { position: relative; z-index: 1; flex: 0 0 auto; display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.ab-eyebrow { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-ink); background: rgba(246, 184, 44, .16); border: 1px solid rgba(246, 184, 44, .35); border-radius: 999px; padding: 6px 14px; margin-bottom: 16px; }
.ab-title { font-size: clamp(22px, 3vw, 30px); line-height: 1.16; letter-spacing: -.01em; font-weight: 800; margin: 0 0 10px; }
.ab-text { margin: 0; font-size: 16px; line-height: 1.55; max-width: 60ch; color: rgba(255, 255, 255, .82); }
.ab-feature { margin: 14px 0 0; font-size: 14px; font-weight: 600; color: var(--gold); }
.ab-price { display: flex; align-items: baseline; gap: 9px; }
.ab-amt { font-size: clamp(34px, 5vw, 48px); font-weight: 800; line-height: 1; letter-spacing: -.02em; }
.ab-unit { font-size: 15px; font-weight: 700; opacity: .8; }
.ab-offer .btn-gold { white-space: nowrap; }

/* ---------- Legal ---------- */
.legal .section-title { margin-bottom: 24px; }
.legal h2 { margin-top: 32px; font-size: 20px; }
.todo-note { background: #fdf3d6; border: 1px solid #ecd9a2; color: #7a651f; padding: 14px 18px; border-radius: 10px; font-size: 15px; }
.back-link { margin-top: 40px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--surface); padding: 56px 0 32px; border-top: 3px solid var(--gold); }
.footer-inner { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; align-items: flex-start; }
.footer-logo { height: 26px; margin-bottom: 12px; }
.footer-brand p { margin: 0; color: var(--ink-2); max-width: 32ch; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { color: var(--muted); text-decoration: none; font-size: 15px; transition: color .2s var(--ease); }
.footer-nav a:hover { color: var(--gold-ink); }
.footer-legal { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }

/* ---------- App section (native iOS / Android) ---------- */
.section-app { position: relative; overflow: hidden; }
.section-app::before {
    content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background:
        radial-gradient(70% 60% at 88% 12%, var(--gold-glow), transparent 60%),
        linear-gradient(180deg, #faf8f2 0%, var(--paper) 72%);
}
.section-app .wrap { position: relative; z-index: 1; }
.app-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 56px; align-items: center; }
.app-copy .section-title { max-width: 17ch; }
.app-copy .section-lead { margin-bottom: 28px; }
.app-feats { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 14px; }
.app-feats li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; line-height: 1.5; color: var(--ink-2); }
.app-feats strong { color: var(--ink); font-weight: 700; }
.app-feat-ic {
    flex: 0 0 auto; width: 24px; height: 24px; margin-top: 1px; border-radius: 999px;
    display: inline-flex; align-items: center; justify-content: center;
    background: #fdf6e6; color: var(--gold-ink); border: 1px solid #ecd9a2; font-size: 13px; font-weight: 800;
}
.app-platforms { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; }
.app-pill {
    font-size: 13px; font-weight: 700; letter-spacing: .02em; color: var(--ink-2);
    background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 6px 14px;
}
.app-note { margin-top: 16px; }
.app-shots { position: relative; display: flex; justify-content: center; align-items: flex-end; gap: 18px; }
.app-shots-glow {
    position: absolute; inset: 8% 6%; z-index: 0; border-radius: 50%;
    background: radial-gradient(closest-side, var(--gold-glow), transparent 72%); filter: blur(10px);
}
.app-phone {
    position: relative; z-index: 1; margin: 0; width: 30%; max-width: 232px;
    background: #fff; border-radius: 26px; padding: 6px; border: 1px solid var(--line);
    box-shadow: 0 34px 64px -32px rgba(14, 14, 16, .5), 0 6px 16px -10px rgba(14, 14, 16, .28);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.app-phone img { width: 100%; height: auto; border-radius: 20px; display: block; }
.app-phone figcaption { text-align: center; font-size: 12px; font-weight: 600; color: var(--muted); margin-top: 12px; }
/* centre phone (2nd figure) is the lead — larger and raised */
.app-shots figure:nth-of-type(2) { width: 35%; max-width: 272px; z-index: 2; transform: translateY(-20px); }
.app-phone:hover { transform: translateY(-6px); }
.app-shots figure:nth-of-type(2):hover { transform: translateY(-26px); }
.app-shots-wrap { min-width: 0; }

/* ---------- KI-Kennzeichnung (Art. 50 Abs. 4/5 KI-VO) ----------
   Sichtbares Label direkt im/am Bild plus Bildzeile unmittelbar darunter,
   damit der Hinweis beim ersten Kontakt wahrnehmbar ist und nicht erst nach
   Klick oder Scrollen erscheint. Das Label darf nicht verdeckt werden. */
.ki-stamp {
    position: absolute; z-index: 4; top: 10px; right: 10px;
    font-size: 11px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
    color: #fff; background: rgba(14, 14, 16, .82); border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 999px; padding: 3px 9px; line-height: 1.35; pointer-events: none;
    backdrop-filter: saturate(140%) blur(2px);
}
.ki-stamp--hero { z-index: 9; top: 0; right: 0; }
/* Phone mock-ups are narrow — keep the stamp legible but unobtrusive. */
.app-phone .ki-stamp { top: 14px; right: 14px; font-size: 9px; letter-spacing: .04em; padding: 2px 7px; }
.ki-caption {
    margin: 14px 0 0; font-size: 13px; line-height: 1.5; color: var(--ink-2);
    max-width: 62ch;
}
.app-shots-ki { margin-top: 18px; }
.hero-visual .ki-caption { text-align: right; margin-left: auto; }
@media (max-width: 900px) { .hero-visual .ki-caption { text-align: left; } }
.hoer-badge--track { margin-left: 8px; vertical-align: middle; }
.hoer-ki-note { margin: 10px 0 0; font-size: 14px; line-height: 1.5; color: var(--ink-2); max-width: 72ch; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { width: 100%; max-width: 460px; margin: 8px auto 0; }
    .hero-statement { max-width: none; }
    .cards { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; }
    .price-examples, .pkg-grid, .check-list.cols-4 { grid-template-columns: repeat(2, 1fr); }
    .app-grid { grid-template-columns: 1fr; gap: 36px; }
    .app-shots { justify-content: flex-start; gap: 14px; overflow-x: auto; padding: 22px 2px 6px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
    .app-phone, .app-shots figure:nth-of-type(2) { width: auto; flex: 0 0 196px; max-width: 196px; transform: none; scroll-snap-align: center; }
    .app-shots-glow { display: none; }
    .nav { display: none; }
}
@media (max-width: 640px) {
    .section { padding: 80px 0; }
    .cards, .value-grid, .check-list, .check-list.cols-4, .x-list, .price-examples, .pkg-grid { grid-template-columns: 1fr; }
    .flow-grid { grid-template-columns: 1fr; }
    .flow-arrow { transform: rotate(90deg); justify-self: center; }
    .header-actions .btn { display: none; }
    .hero-visual { max-width: 100%; }
    .promo { padding: 28px 24px; }
    .promo-aside { width: 100%; }
    .promo-aside .btn { width: 100%; }
    .spec-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .btn:hover, .card:hover { transform: none; }
}

.hoer-sametext { margin: -28px 0 30px; font-size: 14px; color: var(--ink-2); font-style: italic; }

/* ---------- Brand-fit panel (looks like the publisher's own title) ---------- */
.brand-panel { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.brand-list { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 13px; }
.brand-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; line-height: 1.5; color: var(--ink-2); }
.brand-list strong { color: var(--ink); font-weight: 700; }
.brand-ic { flex: 0 0 auto; width: 24px; height: 24px; border-radius: 999px; background: var(--gold); color: var(--ink); display: inline-flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; margin-top: 1px; }
.brand-visual { display: flex; justify-content: center; }
.brand-tile { width: 100%; max-width: 330px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; box-shadow: 0 28px 56px -32px rgba(20, 28, 45, .34); text-align: center; }
.brand-tile-logo { font-family: Georgia, "Times New Roman", serif; font-size: 21px; font-weight: 700; color: var(--ink-2); border: 1.5px dashed var(--line); border-radius: 10px; padding: 16px; margin-bottom: 20px; }
.brand-tile-sw { display: flex; justify-content: center; gap: 10px; margin-bottom: 20px; }
.brand-tile-sw span { width: 34px; height: 34px; border-radius: 9px; box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .07); }
.brand-tile-sw .add { background: transparent; border: 1.5px dashed var(--line); box-shadow: none; color: var(--ink-2); display: inline-flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; }
.brand-tile-fonts { display: flex; justify-content: center; gap: 24px; align-items: baseline; margin-bottom: 16px; }
.brand-tile-fonts .serif { font-family: Georgia, "Times New Roman", serif; font-size: 30px; font-weight: 700; color: var(--ink); }
.brand-tile-fonts .sans { font-family: -apple-system, "Helvetica Neue", Arial, sans-serif; font-size: 30px; font-weight: 800; color: var(--ink); }
.brand-tile-label { font-size: 11.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-ink); }
@media (max-width: 820px) { .brand-panel { grid-template-columns: 1fr; gap: 30px; } .brand-visual { order: -1; } }
