/* =====================================================
   StockKit · Marketing Site
   Light Theme · Modern · Minimalistisch
   ===================================================== */

:root {
    --bg: #fafafb;
    --bg-2: #f3f4f7;
    --surface: #ffffff;
    --surface-2: #f7f7fa;
    --line: rgba(15,17,30,.08);
    --line-strong: rgba(15,17,30,.14);
    --text: #0d0e16;
    --text-soft: #2a2c38;
    --text-muted: #6a6d7a;
    --accent: #ff3b30;
    --accent-2: #ff9500;
    --grad: linear-gradient(135deg, #ff3b30 0%, #ff9500 100%);
    --grad-cool: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --shadow-sm: 0 1px 2px rgba(15,17,30,.04), 0 1px 3px rgba(15,17,30,.04);
    --shadow-md: 0 4px 16px rgba(15,17,30,.06), 0 2px 6px rgba(15,17,30,.04);
    --shadow-lg: 0 24px 50px rgba(15,17,30,.10), 0 8px 20px rgba(15,17,30,.06);
    --radius: 14px;
    --radius-lg: 22px;
    --ease: cubic-bezier(.4, 0, .2, 1);
    --ease-out: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--accent); color: #fff; }

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-x: clip; /* moderne Browser: kein Scroll-Context, sticky bleibt funktionsfähig */
}
body {
    background: var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", system-ui, sans-serif;
    font-size: 16px; line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    overflow-x: clip;
    min-height: 100vh;
}
section { max-width: 100%; }
img, video, iframe { max-width: 100%; height: auto; }

/* Lange deutsche Wörter (Hilfsorganisationen, Rettungsdienst, …) sollen umbrechen
   können statt den Viewport zu überdehnen. Auf Headings besonders wichtig. */
h1, h2, h3, h4, h5, h6, p, li {
    overflow-wrap: break-word;
    word-wrap: break-word;
}
h1, h2, h3, .section-title, .hero h1, .contact-block h2 {
    hyphens: auto;
    -webkit-hyphens: auto;
}
a { color: inherit; text-decoration: none; }

/* Background ambient */
body::before {
    content: ""; position: fixed; inset: 0; z-index: -1;
    background:
        radial-gradient(800px 500px at 80% -10%, rgba(255,59,48,.10), transparent 60%),
        radial-gradient(700px 400px at -10% 30%, rgba(99,102,241,.08), transparent 60%),
        radial-gradient(600px 600px at 50% 110%, rgba(255,149,0,.06), transparent 60%);
    pointer-events: none;
}

/* ============= Custom Cursor (Desktop only) ============= */
.cursor-dot, .cursor-ring {
    position: fixed; top: 0; left: 0; pointer-events: none;
    z-index: 9999; will-change: transform;
}
.cursor-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--text);
    transform: translate3d(-100px,-100px,0);
}
.cursor-ring {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1.5px solid rgba(15,17,30,.4);
    background: rgba(255,255,255,.0);
    transform: translate3d(-100px,-100px,0);
    transition: width .25s var(--ease), height .25s var(--ease),
                border-color .25s var(--ease), background .25s var(--ease);
}
.cursor-ring.hover {
    width: 56px; height: 56px;
    background: rgba(15,17,30,.06);
    border-color: var(--text);
}
body.has-custom-cursor,
body.has-custom-cursor * { cursor: none !important; }
@media (pointer: coarse), (max-width: 900px) {
    .cursor-dot, .cursor-ring { display: none !important; }
    body.has-custom-cursor,
    body.has-custom-cursor * { cursor: auto !important; }
    body.has-custom-cursor a,
    body.has-custom-cursor button,
    body.has-custom-cursor label,
    body.has-custom-cursor .module-toggle { cursor: pointer !important; }
}

/* ============= Layout ============= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 8rem 0; position: relative; }
@media (max-width: 768px) { section { padding: 5rem 0; } }
@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    section { padding: 4rem 0; }
}

/* ============= Nav ============= */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background: rgba(250,250,251,.7);
    border-bottom: 1px solid transparent;
    transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.nav.scrolled { border-bottom-color: var(--line); background: rgba(255,255,255,.85); box-shadow: var(--shadow-sm); }
.nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 1.5rem; max-width: 1200px; margin: 0 auto;
    gap: 1rem;
}
.brand {
    display: flex; align-items: center; gap: .6rem;
    font-weight: 700; letter-spacing: -.01em; font-size: 1.05rem;
}
.brand img { width: 28px; height: 28px; }
.brand-name { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
    color: var(--text-soft); font-size: .92rem; font-weight: 500;
    transition: color .2s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.btn-nav {
    padding: .55rem 1.1rem;
    background: var(--text); color: #fff !important;
    border-radius: 999px; font-weight: 600;
    transition: transform .2s var(--ease);
}
.btn-nav:hover { transform: scale(1.05); }
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-links.mobile { display: flex; flex-direction: column; gap: 0; position: fixed; inset: 60px 0 auto 0; background: rgba(255,255,255,.96); backdrop-filter: blur(20px); padding: 1rem 1.5rem 1.5rem; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md); }
    .nav-links.mobile a { padding: .8rem 0; border-bottom: 1px solid var(--line); width: 100%; }
    .nav-toggle { display: flex; }
}
.nav-toggle {
    display: none; width: 36px; height: 36px;
    align-items: center; justify-content: center;
    background: transparent; border: 1px solid var(--line); border-radius: 8px;
    color: var(--text);
}

/* ============= Hero ============= */
.hero {
    min-height: 100vh;
    display: flex; align-items: center; padding-top: 8rem;
    position: relative;
    overflow: hidden; /* hero-visual mit right:-5% nicht über Section hinaus */
}
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .35rem .9rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: .8rem; color: var(--text-muted);
    margin-bottom: 2rem;
    background: rgba(255,255,255,.6);
    box-shadow: var(--shadow-sm);
}
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: #16a34a; box-shadow: 0 0 10px #16a34a; }
.hero h1 {
    font-size: clamp(1.9rem, 6vw, 5.5rem);
    line-height: 1.1; letter-spacing: -.03em;
    font-weight: 700;
    margin-bottom: 1.6rem;
}
.hero h1 .grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero p.lead {
    font-size: clamp(1.1rem, 1.6vw, 1.35rem);
    color: var(--text-soft);
    max-width: 640px; margin-bottom: 2.5rem;
}
.cta-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .9rem 1.6rem; border-radius: 999px;
    font-weight: 600; font-size: .95rem;
    border: 1px solid transparent;
    transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 8px 20px rgba(255,59,48,.25); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(255,59,48,.32); }
.btn-ghost { background: var(--surface); color: var(--text); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { background: #fff; border-color: var(--line-strong); transform: translateY(-2px); }
.btn-arrow { transition: transform .25s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }

.hero-stats {
    display: flex; gap: 3rem; margin-top: 4rem;
    flex-wrap: wrap;
}
.hero-stat .num { font-size: 1.8rem; font-weight: 700; letter-spacing: -.02em; }
.hero-stat .lbl { color: var(--text-muted); font-size: .85rem; }

/* Floating preview */
.hero-visual {
    position: absolute; top: 50%; right: -5%; transform: translateY(-50%);
    width: 50%; max-width: 720px; aspect-ratio: 16/10;
    perspective: 1500px; pointer-events: none; opacity: .9;
}
@media (max-width: 1100px) { .hero-visual { display: none; } }
.hero-visual .float-card {
    position: absolute; inset: 0;
    transform: rotateY(-22deg) rotateX(8deg) translateZ(0);
    transform-origin: center;
    border-radius: var(--radius-lg);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    animation: float 6s ease-in-out infinite alternate;
    display: flex; flex-direction: column;
}
@keyframes float {
    from { transform: rotateY(-22deg) rotateX(8deg) translateY(-10px); }
    to   { transform: rotateY(-22deg) rotateX(8deg) translateY(10px); }
}

/* Float-Card Inhalt (Mini-Dashboard) */
.fc-chrome {
    display: flex; gap: .35rem; padding: .55rem .75rem;
    background: var(--bg-2); border-bottom: 1px solid var(--line);
    flex-shrink: 0;
}
.fc-dot { width: 10px; height: 10px; border-radius: 50%; }
.fc-dot:nth-child(1) { background: #ff5f57; }
.fc-dot:nth-child(2) { background: #febc2e; }
.fc-dot:nth-child(3) { background: #28c840; }

.fc-body { flex: 1; display: grid; grid-template-columns: 130px 1fr; min-height: 0; }
.fc-side {
    background: #1c2230; padding: .8rem .55rem;
    color: #d1d5db; font-size: .68rem;
}
.fc-brand { display: flex; align-items: center; gap: .45rem; padding: .2rem .35rem .65rem; border-bottom: 1px solid #2a3142; margin-bottom: .55rem; }
.fc-logo { width: 24px; height: 24px; border-radius: 5px; background: var(--grad); display: grid; place-items: center; font-weight: 800; font-size: .58rem; color: #fff; flex-shrink: 0; }
.fc-bt { font-size: .68rem; font-weight: 600; color: #fff; line-height: 1.1; }
.fc-bs { font-size: .55rem; color: #9aa3b2; }
.fc-link {
    display: flex; align-items: center; gap: .4rem;
    padding: .35rem .45rem; border-radius: 5px;
    margin: 1px 0; font-size: .68rem;
}
.fc-link.active { background: var(--accent); color: #fff; }
.fc-link span { width: 12px; text-align: center; font-size: .72rem; }

.fc-main { padding: .9rem; min-width: 0; overflow: hidden; }
.fc-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: .8rem; padding-bottom: .55rem; border-bottom: 1px solid var(--line); }
.fc-title { font-size: .82rem; font-weight: 600; color: var(--text); }
.fc-pill { font-size: .58rem; color: var(--text-muted); padding: .15rem .5rem; border: 1px solid var(--line); border-radius: 999px; }

.fc-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: .45rem; margin-bottom: .8rem; }
.fc-stat { background: var(--surface-2); border: 1px solid var(--line); border-radius: 7px; padding: .45rem .55rem; }
.fc-stat .v { font-size: .95rem; font-weight: 700; color: var(--text); line-height: 1.1; }
.fc-stat .l { font-size: .55rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .04em; margin-top: .15rem; }

.fc-card { background: var(--surface-2); border: 1px solid var(--line); border-radius: 7px; overflow: hidden; }
.fc-card-h { padding: .45rem .65rem; border-bottom: 1px solid var(--line); font-size: .65rem; font-weight: 600; color: var(--text); }
.fc-row { display: flex; justify-content: space-between; align-items: center; padding: .35rem .65rem; border-bottom: 1px solid var(--line); font-size: .65rem; color: var(--text-soft); }
.fc-row:last-child { border-bottom: 0; }
.fc-bd { font-size: .55rem; padding: .1rem .4rem; border-radius: 3px; font-weight: 700; }
.fc-bd.ok   { background: rgba(22,163,74,.12);  color: #16a34a; }
.fc-bd.warn { background: rgba(255,149,0,.15);  color: #c97000; }
.fc-bd.crit { background: rgba(255,59,48,.12);  color: #c2161c; }

/* ============= Sections – common ============= */
.section-eyebrow {
    display: inline-block;
    text-transform: uppercase; letter-spacing: .15em;
    font-size: .75rem; color: var(--accent); font-weight: 600;
    margin-bottom: 1rem;
}
.section-title {
    font-size: clamp(1.6rem, 4vw, 3.2rem);
    font-weight: 700; letter-spacing: -.02em; line-height: 1.15;
    max-width: 800px;
}
.section-lead {
    color: var(--text-soft);
    font-size: 1.1rem; max-width: 640px; margin-top: 1rem;
}

/* ============= Reveal Animations ============= */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: .08s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: .16s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: .24s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: .32s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: .40s; }

/* ============= Module: Horizontal scroll ============= */
.module-track {
    display: flex; gap: 1.4rem;
    overflow-x: auto; scroll-snap-type: x mandatory;
    padding: 2rem 1.5rem 3rem;
    margin: 3rem -1.5rem 0;
    scrollbar-width: none;
}
.module-track::-webkit-scrollbar { display: none; }
.module-card {
    flex: 0 0 360px; max-width: 360px;
    scroll-snap-align: start;
    background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--radius-lg); padding: 1.8rem;
    position: relative; overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.module-card:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: var(--shadow-md); }
.module-card .icon {
    width: 54px; height: 54px; border-radius: 14px;
    display: grid; place-items: center; font-size: 1.6rem;
    background: var(--grad); margin-bottom: 1.2rem;
    box-shadow: 0 6px 16px rgba(255,59,48,.22);
}
.module-card.cool .icon { background: var(--grad-cool); box-shadow: 0 6px 16px rgba(99,102,241,.22); }
.module-card h3 { font-size: 1.25rem; margin-bottom: .5rem; letter-spacing: -.01em; }
.module-card p { color: var(--text-muted); font-size: .92rem; }
.module-card .tag {
    display: inline-block; font-size: .7rem; padding: .2rem .55rem;
    border-radius: 999px; background: rgba(15,17,30,.06);
    color: var(--text-soft); margin-bottom: 1rem; letter-spacing: .03em; font-weight: 500;
}
.module-card.basis .tag { background: var(--grad); color: #fff; }

/* Modul-Karten · Preis-Tag mit UVP + Aktion + Rabatt-Etikett */
.module-card .module-tag {
    display: flex; align-items: center; flex-wrap: wrap; gap: .35rem .5rem;
    margin-bottom: 1rem;
}
.module-card .module-tag .tag-base {
    background: var(--grad); color: #fff;
    font-size: .68rem; padding: .25rem .65rem; border-radius: 999px;
    letter-spacing: .04em; font-weight: 600;
    box-shadow: 0 3px 8px rgba(255,59,48,.25);
}
.module-card .module-tag .tag-old {
    color: var(--text-muted); opacity: .55;
    font-size: .78rem; font-weight: 500; text-decoration: line-through;
}
.module-card .module-tag .tag-new {
    color: var(--text); font-weight: 700; font-size: .92rem; letter-spacing: -.01em;
}
.module-card .module-tag .tag-discount {
    background: linear-gradient(135deg, var(--accent), #ff9500);
    color: #fff; font-size: .65rem; font-weight: 800;
    padding: .18rem .5rem; border-radius: 6px; letter-spacing: .05em;
    box-shadow: 0 3px 10px rgba(255,59,48,.35);
}
.module-card .module-tag .tag-new-feature {
    background: #0d0e16; color: #fff;
    font-size: .62rem; font-weight: 700;
    padding: .2rem .55rem; border-radius: 999px;
    letter-spacing: .08em;
    border: 1px solid rgba(255,255,255,.1);
}
/* Bei "Basis" inkludiert kommt UVP/Aktion in eigene Zeile */
.module-card.basis .module-tag {
    flex-direction: row;
    flex-wrap: wrap;
}
.module-card.basis .module-tag .tag-base { flex-shrink: 0; }
@media (max-width: 768px) {
    .module-card { flex: 0 0 80vw; }
}
.scroll-hint { color: var(--text-muted); font-size: .8rem; margin-top: 1rem; }

/* ============= Preview Section ============= */
.preview-frame {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 4rem;
    box-shadow: var(--shadow-lg);
    user-select: none; -webkit-user-select: none;
    -webkit-user-drag: none;
}
.preview-frame * { -webkit-user-drag: none; }
.preview-chrome {
    display: flex; gap: .4rem; padding: .8rem 1rem;
    background: var(--bg-2); border-bottom: 1px solid var(--line);
    align-items: center;
}
.preview-chrome span.dot {
    width: 12px; height: 12px; border-radius: 50%;
}
.preview-chrome span.dot:nth-child(1) { background: #ff5f57; }
.preview-chrome span.dot:nth-child(2) { background: #febc2e; }
.preview-chrome span.dot:nth-child(3) { background: #28c840; }
.preview-chrome .url {
    flex: 1; background: rgba(15,17,30,.04);
    border-radius: 6px; padding: .25rem .8rem;
    font-size: .78rem; color: var(--text-muted);
    margin-left: 1rem;
    max-width: 480px;
}

.preview-app {
    display: grid; grid-template-columns: 220px 1fr;
    min-height: 540px;
}
@media (max-width: 768px) { .preview-app { grid-template-columns: 1fr; } .preview-sidebar { display:none; } }

.preview-sidebar {
    background: #1c2230;
    border-right: 1px solid var(--line);
    padding: 1.2rem .8rem;
    color: #d1d5db;
}
.prev-brand {
    display: flex; align-items: center; gap: .6rem;
    padding: .4rem .6rem 1rem;
    border-bottom: 1px solid #2a3142; margin-bottom: 1rem;
}
.prev-brand .lg { width: 32px; height: 32px; border-radius: 7px; background: var(--grad); display: grid; place-items: center; font-weight: 800; font-size: .8rem; color: #fff; }
.prev-brand .t { font-size: .85rem; font-weight: 600; color: #fff; }
.prev-brand .s { font-size: .7rem; color: #9aa3b2; }
.prev-nav-section { color: #7a8294; text-transform: uppercase; font-size: .65rem; letter-spacing: .08em; padding: 1rem .6rem .3rem; }
.prev-link {
    display: flex; align-items: center; gap: .55rem;
    padding: .5rem .65rem; border-radius: 7px;
    font-size: .82rem; color: #d1d5db; margin: 1px 0;
}
.prev-link.active { background: var(--accent); color: #fff; }
.prev-link .dotcol { width: 16px; text-align: center; opacity: .9; }

.preview-main { padding: 1.4rem; background: var(--surface); }
.prev-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.4rem; padding-bottom: .8rem; border-bottom: 1px solid var(--line); }
.prev-title { font-size: 1.05rem; font-weight: 600; }
.prev-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: .8rem; margin-bottom: 1.2rem; }
.prev-stat { background: var(--surface-2); border: 1px solid var(--line); border-radius: 10px; padding: .8rem 1rem; }
.prev-stat .v { font-size: 1.4rem; font-weight: 700; }
.prev-stat .l { font-size: .7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; }

.prev-card { background: var(--surface-2); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.prev-card .head { padding: .8rem 1rem; border-bottom: 1px solid var(--line); font-size: .85rem; font-weight: 600; }
.prev-row { display: grid; grid-template-columns: 1.5fr 1fr 1fr .8fr; gap: 1rem; padding: .65rem 1rem; border-bottom: 1px solid var(--line); font-size: .82rem; align-items: center; }
.prev-row:last-child { border-bottom: 0; }
.prev-row .name { font-weight: 500; }
.prev-row .muted { color: var(--text-muted); }
.prev-badge { display: inline-block; font-size: .68rem; padding: .15rem .5rem; border-radius: 4px; font-weight: 600; }
.prev-badge.ok { background: rgba(22,163,74,.12); color: #16a34a; }
.prev-badge.warn { background: rgba(255,149,0,.15); color: #c97000; }
.prev-badge.crit { background: rgba(255,59,48,.12); color: #c2161c; }

/* ============= Pricing ============= */
.pricing-wrap {
    margin-top: 4rem;
    display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: 2rem;
    max-width: 100%;
}
.pricing-wrap > * { min-width: 0; }
@media (max-width: 900px) { .pricing-wrap { grid-template-columns: minmax(0, 1fr); } }

.modules-list {
    display: grid; gap: .8rem;
    min-width: 0;
    max-width: 100%;
}
.module-toggle {
    display: flex; align-items: center; gap: 1rem;
    padding: 1rem 1.2rem; background: var(--surface);
    border: 1px solid var(--line); border-radius: var(--radius);
    cursor: pointer; transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
    user-select: none;
    box-shadow: var(--shadow-sm);
}
.module-toggle:hover { border-color: var(--line-strong); box-shadow: var(--shadow-md); }
.module-toggle.active { border-color: var(--accent); background: linear-gradient(135deg, rgba(255,59,48,.06), rgba(255,149,0,.03)); }
.module-toggle.required { background: linear-gradient(135deg, rgba(255,59,48,.10), rgba(255,149,0,.05)); border-color: var(--accent); cursor: not-allowed; }
.module-toggle input { accent-color: var(--accent); width: 18px; height: 18px; }
.module-toggle .info { flex: 1; }
.module-toggle .info .n { font-weight: 600; font-size: .98rem; }
.module-toggle .info .d { color: var(--text-muted); font-size: .82rem; margin-top: .1rem; }
.module-toggle .price { font-weight: 600; font-size: .92rem; color: var(--text-muted); white-space: nowrap; display: inline-flex; align-items: baseline; gap: .35rem; flex-shrink: 0; }
.module-toggle.required .price,
.module-toggle.active .price { color: var(--text); }
.module-toggle .price-old { text-decoration: line-through; color: var(--text-muted); opacity: .55; font-weight: 500; font-size: .82rem; }
.module-toggle .price-new { color: var(--accent); font-weight: 700; }
.module-toggle .price-per { color: var(--text-muted); font-weight: 500; font-size: .78rem; }
.module-toggle.required .price-old { color: var(--text-muted); }
.module-toggle .basis-tag { background: rgba(255,59,48,.12); color: var(--accent); font-size: .62rem; padding: 1px 7px; border-radius: 999px; margin-left: 4px; vertical-align: middle; font-weight: 600; letter-spacing: .04em; }
.module-toggle .new-tag { background: var(--accent); color: #fff; font-size: .62rem; padding: 1px 7px; border-radius: 999px; margin-left: 4px; vertical-align: middle; font-weight: 700; letter-spacing: .04em; }

/* ============= Promo-Banner (Starter-Rabatt) ============= */
.promo-banner {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(255,59,48,.10), rgba(255,149,0,.06));
    border: 1px solid rgba(255,59,48,.25);
    border-radius: var(--radius-lg);
    padding: 1.1rem 1.4rem;
    margin: 0 0 2rem;
    box-shadow: 0 6px 20px rgba(255,59,48,.10);
}
.promo-badge {
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--accent), #ff9500);
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    padding: .55rem .9rem;
    border-radius: 12px;
    letter-spacing: .02em;
    box-shadow: 0 4px 12px rgba(255,59,48,.35);
}
.promo-text { flex: 1; min-width: 0; }
.promo-title { font-weight: 700; font-size: 1rem; color: var(--text); }
.promo-sub { font-size: .85rem; color: var(--text-muted); margin-top: .1rem; }
@media (max-width: 600px) {
    .promo-banner { flex-direction: column; text-align: center; padding: 1rem; }
}

.price-card {
    position: sticky; top: 100px;
    background: linear-gradient(180deg, var(--surface), var(--surface-2));
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    height: fit-content;
    box-shadow: var(--shadow-md);
    min-width: 0;
}
.price-card .label { color: var(--text-muted); font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; }
.price-card .price-old-line { color: var(--text-muted); font-size: .92rem; margin: .5rem 0 -.2rem; opacity: .8; }
.price-card .price-old-line s { color: var(--text-muted); }
.price-card .total {
    font-size: 3.6rem;
    font-weight: 700; letter-spacing: -.04em; line-height: 1.05;
    margin: .3rem 0 .2rem;
    background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    display: flex; justify-content: center; align-items: baseline; gap: .05em;
}
.price-card .total .currency { font-size: 2rem; vertical-align: super; margin-right: .15rem; }
.price-card .total .per { font-size: 1.1rem; color: var(--text-muted); font-weight: 500; -webkit-text-fill-color: var(--text-muted); }
.price-card .discount-pill {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), #ff9500);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    padding: .35rem .85rem;
    border-radius: 999px;
    letter-spacing: .03em;
    margin: .2rem 0 1rem;
    box-shadow: 0 4px 12px rgba(255,59,48,.3);
}
.price-card .breakdown { color: var(--text-muted); font-size: .85rem; margin-bottom: 1.2rem; }
.price-card ul { list-style: none; text-align: left; margin: 1.5rem 0; padding: 0; }
.price-card ul li { padding: .4rem 0; font-size: .9rem; color: var(--text-soft); display: flex; gap: .6rem; align-items: center; }
.price-card ul li::before { content: "✓"; color: #16a34a; font-weight: 700; }

/* ============= Konfigurator-Modus (Preise deaktiviert) ============= */
.price-card .config-count {
    display: flex; align-items: baseline; justify-content: center;
    gap: .35rem; margin: .8rem 0 .3rem;
}
.price-card .config-count-num {
    font-size: 3.4rem; font-weight: 700; letter-spacing: -.04em; line-height: 1;
    background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.price-card .config-count-suffix {
    font-size: .95rem; color: var(--text-muted); font-weight: 500;
}
.price-card .config-list-title {
    font-size: .8rem; text-transform: uppercase; letter-spacing: .08em;
    color: var(--text-muted); font-weight: 600;
    margin: 1rem 0 .4rem;
    text-align: left;
}
.price-card .config-list {
    list-style: none; text-align: left; margin: 0 0 1rem; padding: 0;
}
.price-card .config-list li {
    padding: .45rem 0; font-size: .92rem; color: var(--text);
    display: flex; gap: .6rem; align-items: center;
    border-bottom: 1px dashed var(--line);
}
.price-card .config-list li:last-child { border-bottom: 0; }
.price-card .config-list li::before { content: "✓"; color: var(--accent); font-weight: 700; }
.price-card .config-extras {
    margin-top: .6rem; padding-top: .8rem; border-top: 1px solid var(--line);
    font-size: .8rem; color: var(--text-muted); text-align: left;
}
.price-card .config-extras > div { padding: .15rem 0; }
.price-card .config-extras > div::before { content: "→ "; color: var(--accent); font-weight: 700; }

/* ============= Pricing-Sektion · Mobile-Anpassung ============= */
@media (max-width: 760px) {
    /* Pricing-Wrap ist auf Mobile schon Single-Column (siehe oben).
       Hier kümmern wir uns NUR um die Mobile-Spezifika. */

    /* 1) Module-Toggle: Stacken statt Quetschen.
          Layout: [Checkbox] [Modul-Name + Description (volle Breite)]
                            [                                    Preis] */
    .module-toggle {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-areas:
            "check info"
            ".     price";
        align-items: start;
        gap: .25rem .8rem;
        padding: .9rem 1rem;
    }
    .module-toggle > input[type="checkbox"] { grid-area: check; align-self: center; }
    .module-toggle .info  { grid-area: info; min-width: 0; }
    .module-toggle .price { grid-area: price; justify-self: end; font-size: .88rem; flex-wrap: wrap; }
    .module-toggle .info .n { font-size: .95rem; }
    .module-toggle .info .d { font-size: .78rem; line-height: 1.4; }

    /* 2) Price-Card: weniger Padding, kleinerer Hauptpreis, Spaltenpadding raus */
    .price-card {
        padding: 1.5rem 1.2rem;
        position: static;            /* sticky bringt auf Mobile nichts und kann verklemmen */
    }
    .price-card .total {
        font-size: 2.6rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    .price-card .total .currency { font-size: 1.4rem; }
    .price-card .total .per      { font-size: .95rem; flex-basis: 100%; text-align: center; margin-top: -.3rem; }

    /* 3) Discount-Pill: bei langen Texten umbrechen lassen */
    .price-card .discount-pill {
        display: inline-block;
        max-width: 100%;
        white-space: normal;
        line-height: 1.35;
    }

    /* 4) Promo-Banner: Inhalts-Text-Schutz */
    .promo-banner { padding: 1rem; }
    .promo-text { min-width: 0; }
    .promo-title, .promo-sub { overflow-wrap: break-word; }
}

/* ============= Vorteile (Bento) ============= */
.bento {
    display: grid; gap: 1.2rem; margin-top: 4rem;
    grid-template-columns: repeat(6, 1fr);
}
.bento-cell {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative; overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.bento-cell:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: var(--shadow-md); }
.bento-cell h3 { font-size: 1.3rem; margin-bottom: .5rem; letter-spacing: -.01em; }
.bento-cell p { color: var(--text-muted); font-size: .92rem; }
.bento-cell .ico { font-size: 2rem; margin-bottom: 1rem; display: inline-block; }
.bento-1 { grid-column: span 3; }
.bento-2 { grid-column: span 3; }
.bento-3 { grid-column: span 2; }
.bento-4 { grid-column: span 2; }
.bento-5 { grid-column: span 2; }
.bento-big { grid-column: span 6; min-height: 200px; background: linear-gradient(135deg, rgba(255,59,48,.06), rgba(255,149,0,.03)); }
.bento-big h3 { font-size: 1.8rem; max-width: 600px; }
@media (max-width: 900px) {
    .bento { grid-template-columns: repeat(2, 1fr); }
    .bento-1, .bento-2, .bento-3, .bento-4, .bento-5 { grid-column: span 2; }
    .bento-big { grid-column: span 2; }
}

/* ============= Kontakt CTA ============= */
.contact-block {
    margin-top: 4rem;
    padding: 4rem 3rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #ffffff 0%, #f7f7fa 100%);
    border: 1px solid var(--line);
    position: relative; overflow: hidden;
    box-shadow: var(--shadow-md);
}
.contact-block::before {
    content: ""; position: absolute; inset: -50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,59,48,.08), transparent 50%);
    pointer-events: none;
}
.contact-block > * { position: relative; }
.contact-block h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); letter-spacing: -.02em; margin-bottom: .5rem; }
.contact-block p { color: var(--text-soft); margin-bottom: 2rem; max-width: 560px; }
.contact-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1rem;
    margin-top: 2rem;
}
.contact-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.4rem;
    transition: border-color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
    display: block;
    box-shadow: var(--shadow-sm);
}
.contact-card:hover { background: #fff; border-color: var(--line-strong); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.contact-card .label { font-size: .75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .4rem; }
.contact-card .value { font-size: 1.05rem; font-weight: 600; word-break: break-word; }
.contact-card .arrow { display: inline-block; margin-left: .3rem; transition: transform .2s var(--ease); }
.contact-card:hover .arrow { transform: translateX(4px); }

/* ============= Footer ============= */
.footer {
    border-top: 1px solid var(--line);
    padding: 3rem 0 2rem;
    margin-top: 4rem;
    background: var(--bg-2);
}
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; flex-wrap: wrap; }
.footer .col h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: .8rem; }
.footer .col a { display: block; color: var(--text-soft); font-size: .9rem; padding: .2rem 0; transition: color .2s var(--ease); }
.footer .col a:hover { color: var(--accent); }
.footer-bottom {
    margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line);
    color: var(--text-muted); font-size: .8rem;
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}

/* ============= Marquee ============= */
.marquee {
    overflow: hidden; padding: 4rem 0;
    border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
    background: var(--surface);
}
.marquee-track {
    display: flex; gap: 4rem; animation: marquee 28s linear infinite;
    width: max-content;
}
.marquee-item {
    color: var(--text-soft); font-size: 1.2rem;
    font-weight: 500; letter-spacing: -.01em;
    display: flex; align-items: center; gap: 4rem;
    white-space: nowrap;
}
.marquee-item::after { content: "•"; color: var(--accent); }
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============= FAQ-Sektion · Premium Cards mit Aufklapp-Animation ============= */
.faq-list {
    max-width: 820px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: .9rem;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 1px 2px rgba(15,17,30,.03), 0 4px 12px rgba(15,17,30,.025);
    overflow: hidden;
    transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .15s var(--ease);
    position: relative;
}
.faq-item:hover {
    border-color: rgba(255,59,48,.30);
    box-shadow: 0 4px 14px rgba(15,17,30,.05), 0 14px 40px rgba(255,59,48,.05);
    transform: translateY(-1px);
}
.faq-item[open] {
    border-color: rgba(255,59,48,.45);
    box-shadow: 0 6px 22px rgba(255,59,48,.10), 0 18px 50px rgba(255,59,48,.06);
}

/* Akzent-Streifen oben beim Öffnen */
.faq-item::before {
    content: "";
    position: absolute; left: 0; top: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #ff9500);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.faq-item[open]::before { transform: scaleX(1); }

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.4rem 1.6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    transition: background .15s var(--ease);
}
.faq-item summary:hover { background: rgba(255,59,48,.025); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ""; }

.faq-item summary h3 {
    font-size: 1.08rem;
    font-weight: 600;
    margin: 0;
    color: var(--text);
    letter-spacing: -.01em;
    line-height: 1.4;
    transition: color .2s var(--ease);
}
.faq-item[open] summary h3 { color: var(--accent); }

/* Plus-Icon mit smooth bouncy rotation */
.faq-item .faq-arrow {
    flex-shrink: 0;
    width: 36px; height: 36px;
    border-radius: 10px;
    background: rgba(15,17,30,.04);
    display: grid; place-items: center;
    font-size: 1.5rem; line-height: 1; font-weight: 300;
    color: var(--text-muted);
    transition: transform .35s cubic-bezier(.34,1.56,.64,1), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
}
.faq-item:hover .faq-arrow {
    background: rgba(255,59,48,.10);
    color: var(--accent);
}
.faq-item[open] .faq-arrow {
    transform: rotate(135deg);
    background: linear-gradient(135deg, var(--accent), #ff9500);
    color: #fff;
    box-shadow: 0 4px 14px rgba(255,59,48,.35);
}

/* Antwort-Container: smooth fade+slide animation beim Öffnen */
.faq-item .faq-answer {
    padding: 0 1.6rem 1.5rem;
    color: var(--text-soft);
    font-size: .95rem;
    line-height: 1.7;
    border-top: 1px solid var(--line);
    padding-top: 1.3rem;
    margin-top: 0;
}
.faq-item[open] .faq-answer {
    animation: faq-fade-in .35s cubic-bezier(.4,0,.2,1);
}
@keyframes faq-fade-in {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.faq-item .faq-answer p { margin: 0 0 .8rem; }
.faq-item .faq-answer p:last-child { margin-bottom: 0; }
.faq-item .faq-answer ul { margin: .8rem 0; padding-left: 1.3rem; }
.faq-item .faq-answer li { padding: .3rem 0; }
.faq-item .faq-answer li::marker { color: var(--accent); }
.faq-item .faq-answer a { color: var(--accent); font-weight: 500; }
.faq-item .faq-answer a:hover { text-decoration: underline; }
.faq-item .faq-answer strong { color: var(--text); font-weight: 600; }
.faq-item .faq-answer code {
    background: var(--bg-2);
    padding: 2px 7px; border-radius: 5px;
    font-size: .85em; color: var(--text);
    border: 1px solid var(--line);
    font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}

@media (max-width: 600px) {
    .faq-item summary { padding: 1.1rem 1.2rem; gap: .7rem; }
    .faq-item summary h3 { font-size: .98rem; }
    .faq-item .faq-arrow { width: 32px; height: 32px; font-size: 1.3rem; }
    .faq-item .faq-answer { padding: 1.2rem 1.2rem 1.3rem; font-size: .9rem; }
}

/* Reduce motion respektieren */
@media (prefers-reduced-motion: reduce) {
    .faq-item, .faq-item *, .faq-item::before { transition: none !important; animation: none !important; }
}

/* ============= SEO Zielgruppen-Section ============= */
.seo-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--surface), var(--bg-2));
    border-top: 1px solid var(--line);
}
.seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.4rem;
    max-width: 1100px;
    margin: 0 auto;
}
.seo-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2rem 1.8rem;
    box-shadow: var(--shadow-sm);
    transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
    position: relative;
    overflow: hidden;
}
.seo-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #ff9500);
    opacity: 0;
    transition: opacity .3s var(--ease);
}
.seo-card:hover {
    border-color: var(--line-strong);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md), 0 12px 30px rgba(255,59,48,.06);
}
.seo-card:hover::before { opacity: 1; }
.seo-card h3 {
    font-size: 1.18rem;
    font-weight: 700;
    margin-bottom: .8rem;
    letter-spacing: -.015em;
    color: var(--text);
    line-height: 1.35;
    display: flex;
    align-items: center;
    gap: .55rem;
    flex-wrap: wrap;
}
.seo-card h3::first-letter,
.seo-card h3 > *:first-child {
    /* Emoji als visueller Akzent größer */
}
.seo-card p {
    font-size: .92rem;
    color: var(--text-soft);
    line-height: 1.7;
    margin: 0;
}
.seo-card strong { color: var(--text); font-weight: 600; }

@media (max-width: 600px) {
    .seo-section { padding: 3rem 0; }
    .seo-card { padding: 1.5rem 1.4rem; }
    .seo-card h3 { font-size: 1.08rem; }
    .seo-card p { font-size: .88rem; }
}
