/* =====================================================
   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; }
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;
    min-height: 100vh;
}
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; } }

/* ============= 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;
}
.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(2.5rem, 6vw, 5.5rem);
    line-height: 1.05; 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(2rem, 4vw, 3.2rem);
    font-weight: 700; letter-spacing: -.02em; line-height: 1.1;
    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; }
@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: 1.2fr 1fr; gap: 2rem;
}
@media (max-width: 900px) { .pricing-wrap { grid-template-columns: 1fr; } }

.modules-list {
    display: grid; gap: .8rem;
}
.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; }
.module-toggle.required .price,
.module-toggle.active .price { color: var(--text); }

.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);
}
.price-card .label { color: var(--text-muted); font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; }
.price-card .total { font-size: 4rem; font-weight: 700; letter-spacing: -.04em; line-height: 1.05; margin: .8rem 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: 2.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 .breakdown { color: var(--text-muted); font-size: .85rem; margin-bottom: 1.5rem; }
.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; }

/* ============= 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;
    }
}
