@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --brand:        #E91E63;
    --brand-dark:   #C2185B;
    --brand-deep:   #880E4F;
    --brand-light:  #FCE4EC;
    --brand-soft:   rgba(233, 30, 99, 0.07);
    --brand-glow:   rgba(233, 30, 99, 0.22);
    --brand-rgb:    233, 30, 99;
    --ink:          #0f172a;
    --text:         #0f172a;
    --text-muted:   #64748b;
    --text-light:   #94a3b8;
    --bg:           #f8fafc;
    --bg-alt:       #eef2f7;
    --bg-warm:      #fdf8fa;
    --card:         #ffffff;
    --border:       rgba(15, 23, 42, 0.08);
    --border-strong:rgba(15, 23, 42, 0.12);
    --radius:       14px;
    --radius-lg:    20px;
    --radius-xl:    28px;
    --shadow-sm:    0 1px 2px rgba(15, 23, 42, 0.04), 0 2px 8px rgba(15, 23, 42, 0.03);
    --shadow:       0 8px 30px rgba(15, 23, 42, 0.06), 0 2px 8px rgba(15, 23, 42, 0.04);
    --shadow-md:    0 16px 48px rgba(15, 23, 42, 0.08), 0 4px 12px rgba(15, 23, 42, 0.04);
    --shadow-lg:    0 28px 70px rgba(15, 23, 42, 0.12), 0 8px 24px rgba(15, 23, 42, 0.06);
    --font:         'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono:    'IBM Plex Mono', 'Space Mono', monospace;
    --header-h:     76px;
    --ease:         cubic-bezier(0.22, 1, 0.36, 1);
    --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
    --section-y:    clamp(5.5rem, 11vw, 8.5rem);
    --radius-2xl:   32px;
    --glass-bg:     rgba(255, 255, 255, 0.52);
    --glass-border: rgba(255, 255, 255, 0.72);
    --glass-blur:   22px;
    --shadow-glass: 0 12px 40px rgba(15, 23, 42, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.85);
    --shadow-glass-hover: 0 24px 60px rgba(15, 23, 42, 0.11), 0 0 0 1px rgba(var(--brand-rgb), 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background:
        radial-gradient(ellipse 80% 50% at 100% -10%, rgba(233, 30, 99, 0.06), transparent 55%),
        radial-gradient(ellipse 60% 40% at 0% 100%, rgba(99, 102, 241, 0.04), transparent 50%);
}

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

a { color: var(--brand-dark); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--brand); }

.container { width: min(1200px, 90vw); margin-inline: auto; }

/* ── Header ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.62);
    backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04), 0 8px 32px rgba(15, 23, 42, 0.04);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .9rem 0;
    min-height: var(--header-h);
}

.logo {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: -.025em;
}
.logo:hover { text-decoration: none; color: var(--ink); }

/* Logo unverändert beibehalten */
.logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--brand);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    box-shadow: 0 4px 14px var(--brand-glow);
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 7px);
    gap: 2px;
}
.logo-grid i {
    width: 7px; height: 7px;
    border-radius: 2px;
    background: rgba(255,255,255,.3);
    display: block;
    transition: background .2s;
}
.logo-grid i.on { background: #fff; }

.nav-desktop { display: flex; align-items: center; gap: 0.15rem; flex-wrap: nowrap; }
.nav-desktop a,
.nav-group-toggle {
    font-size: .82rem;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    transition: color .2s var(--ease), background .2s var(--ease);
    white-space: nowrap;
}
.nav-desktop a:hover,
.nav-group-toggle:hover { color: var(--ink); text-decoration: none; }

.nav-group { position: relative; }
.nav-group-toggle {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    padding: .45rem .65rem;
    border-radius: 999px;
}
.nav-group-toggle::after {
    content: '▾';
    font-size: .58rem;
    opacity: .55;
    transition: transform .2s var(--ease);
}
.nav-group:hover .nav-group-toggle,
.nav-group:focus-within .nav-group-toggle {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.7);
}
.nav-group:hover .nav-group-toggle::after,
.nav-group:focus-within .nav-group-toggle::after { transform: rotate(180deg); }

.nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 12rem;
    padding-top: .45rem;
    z-index: 120;
    flex-direction: column;
}
.nav-dropdown-panel {
    padding: .45rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    gap: .15rem;
}
.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown { display: flex; }

.nav-dropdown a {
    display: block;
    padding: .5rem .75rem;
    border-radius: 10px;
    font-size: .82rem;
    font-weight: 500;
    color: var(--text-muted);
}
.nav-dropdown a:hover {
    background: var(--brand-soft);
    color: var(--brand-dark);
    text-decoration: none;
}

.nav-link-accent {
    color: var(--brand-dark) !important;
    font-weight: 700;
    padding: .45rem .65rem;
    border-radius: 999px;
}
.nav-link-accent:hover {
    background: var(--brand-soft);
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: .75rem;
    padding: .75rem 0 1rem;
    border-top: 1px solid var(--border);
}
.nav-mobile.is-open { display: flex; }
.nav-mobile-group {
    display: flex;
    flex-direction: column;
    gap: .15rem;
}
.nav-mobile-label {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text-light);
    padding: .25rem 0 .15rem;
}
.nav-mobile a {
    font-size: .9rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: .35rem 0 .35rem .5rem;
}
.nav-mobile .nav-link-accent {
    padding-left: 0;
    margin-top: .25rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.3rem;
    color: var(--text);
    padding: .2rem .4rem;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    padding: .65rem 1.35rem;
    border-radius: 999px;
    font-family: var(--font);
    font-size: .875rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
    border: none;
    white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    color: #fff;
    box-shadow: 0 4px 18px var(--brand-glow);
}
.btn-primary:hover {
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px var(--brand-glow);
}
.btn-ghost {
    background: rgba(255, 255, 255, 0.8);
    color: var(--ink);
    border: 1.5px solid var(--border-strong);
    backdrop-filter: blur(8px);
}
.btn-ghost:hover {
    background: #fff;
    color: var(--brand-dark);
    border-color: rgba(var(--brand-rgb), .35);
    text-decoration: none;
    transform: translateY(-1px);
}
.btn-white {
    background: #fff;
    color: var(--brand-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.btn-white:hover {
    background: var(--brand-light);
    color: var(--brand-deep);
    text-decoration: none;
    transform: translateY(-2px);
}
.btn-ghost-light {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.btn-ghost-light:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
}

/* ── Sections ── */
section { padding: clamp(4rem, 8vw, 6rem) 0; position: relative; }
.alt-bg {
    background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
    border-block: 1px solid var(--border);
}

.section-label {
    font-family: var(--font-mono);
    font-size: .68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--brand-dark);
    margin-bottom: .85rem;
}
.section-label--light { color: rgba(255, 255, 255, 0.75); }

.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.65rem);
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -.03em;
    line-height: 1.15;
    margin-bottom: 1rem;
    max-width: 22ch;
}

.section-intro {
    font-size: 1.0625rem;
    color: var(--text-muted);
    max-width: 620px;
    line-height: 1.75;
    margin-bottom: 2.75rem;
}

/* ── Hero ── */
.hero {
    padding: clamp(3rem, 7vw, 5rem) 0 clamp(4rem, 8vw, 6rem);
    overflow: hidden;
    position: relative;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: .55;
}
.hero-blob--1 {
    width: 420px;
    height: 420px;
    top: -120px;
    right: -80px;
    background: rgba(233, 30, 99, 0.14);
}
.hero-blob--2 {
    width: 320px;
    height: 320px;
    bottom: -60px;
    left: -40px;
    background: rgba(99, 102, 241, 0.1);
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-family: var(--font-mono);
    font-size: .68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--brand-dark);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(var(--brand-rgb), .15);
    padding: .35rem .85rem;
    border-radius: 999px;
    margin-bottom: 1.35rem;
    backdrop-filter: blur(8px);
}

.hero-copy h1 {
    font-size: clamp(2.15rem, 4.5vw, 3.35rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.035em;
    color: var(--ink);
    margin-bottom: 1.35rem;
}
.hero-copy h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-lead {
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 520px;
}

.hero-actions { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 2.25rem; }

.hero-trust {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
}
.hero-trust li {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .78rem;
    font-weight: 600;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--border);
    padding: .4rem .75rem;
    border-radius: 999px;
    backdrop-filter: blur(6px);
}

/* hero visual */
.hero-visual { position: relative; }

.booking-grid {
    position: absolute;
    inset: -3rem;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: .5rem;
    opacity: .35;
    pointer-events: none;
    z-index: 0;
}
.booking-grid i {
    aspect-ratio: 1;
    border-radius: 8px;
    background: var(--border);
    display: block;
    animation: gridPulse 3s ease-in-out infinite;
    animation-delay: calc(var(--d) * 0.18s);
}
.booking-grid i.on { background: var(--brand-light); border: 1.5px solid rgba(var(--brand-rgb),.25); }

@keyframes gridPulse {
    0%, 100% { opacity: .6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.04); }
}

.hero-screenshot { position: relative; z-index: 1; }
.product-screenshot { margin: 0 auto; }

.browser-frame {
    background: var(--card);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.hero-visual:hover .browser-frame {
    transform: perspective(1200px) rotateY(-1deg) rotateX(0deg);
    box-shadow: 0 32px 80px rgba(15, 23, 42, 0.14);
}

.browser-chrome {
    display: flex;
    align-items: center;
    gap: .4rem;
    padding: .75rem 1rem;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
}

.browser-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--border);
}
.browser-dot:nth-child(1) { background: #fc5f57; }
.browser-dot:nth-child(2) { background: #fdbc2c; }
.browser-dot:nth-child(3) { background: #33c748; }

.browser-viewport { overflow: hidden; }
.browser-viewport img { width: 100%; }

.hero-screenshot-caption {
    margin-top: .75rem;
    font-size: .78rem;
    color: var(--text-light);
    text-align: center;
}

/* ── Steps ── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    list-style: none;
    counter-reset: steps;
}

.step-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.85rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .25s var(--ease), transform .25s var(--ease), border-color .25s var(--ease);
    position: relative;
    overflow: hidden;
}
.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand), rgba(var(--brand-rgb), .3));
    opacity: 0;
    transition: opacity .25s var(--ease);
}
.step-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: rgba(var(--brand-rgb), .15);
}
.step-card:hover::before { opacity: 1; }

.step-slot {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--brand);
    background: var(--brand-light);
    padding: .25rem .65rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .6rem;
    letter-spacing: -.01em;
}

.step-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }

/* ── Problem/Feature cards ── */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.problem-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.85rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.problem-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
    border-color: rgba(var(--brand-rgb), .12);
}

.problem-card .icon { font-size: 1.75rem; margin-bottom: .85rem; }

.problem-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .5rem;
}

.problem-card p { font-size: .88rem; color: var(--text-muted); margin-bottom: .5rem; line-height: 1.6; }

.solution {
    font-size: .8rem !important;
    font-weight: 600;
    color: var(--brand) !important;
    font-family: var(--font-mono);
}

/* ── Product showcase ── */
.product-showcase {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

.product-callouts { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; }

.product-callouts li {
    display: flex;
    gap: .85rem;
    align-items: flex-start;
}

.callout-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--brand);
    flex-shrink: 0;
    margin-top: .45rem;
    box-shadow: 0 0 0 3px var(--brand-light);
}

.product-callouts strong {
    display: block;
    font-size: .95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .2rem;
}

.product-callouts span { font-size: .87rem; color: var(--text-muted); line-height: 1.55; }

/* ── Screenshot gallery ── */
.screenshot-gallery {
    display: grid;
    gap: 1.25rem;
}

.screenshot-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .2s, transform .2s;
}
.screenshot-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.screenshot-frame { overflow: hidden; aspect-ratio: 16/9; background: var(--bg-alt); }
.screenshot-frame img { width: 100%; height: 100%; object-fit: cover; }

.screenshot-card figcaption {
    padding: .9rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: .2rem;
}
.screenshot-card figcaption strong { font-size: .88rem; font-weight: 700; color: var(--text); }
.screenshot-card figcaption span { font-size: .8rem; color: var(--text-muted); }

/* ── Feature list ── */
.feature-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.feature-list { list-style: none; display: flex; flex-direction: column; gap: 1.1rem; }

.feature-list li {
    display: flex;
    gap: .85rem;
    align-items: flex-start;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.1rem 1.2rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.feature-list li:hover {
    box-shadow: var(--shadow);
    border-color: rgba(var(--brand-rgb), .12);
}

.check {
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, var(--brand-light), #fff);
    color: var(--brand-dark);
    border: 1px solid rgba(var(--brand-rgb), .15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: .05rem;
}

.feature-list strong {
    display: block;
    font-size: .9rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .2rem;
}

.feature-list span { font-size: .83rem; color: var(--text-muted); line-height: 1.55; }

/* ── Theme grid ── */
.theme-grid {
    display: grid;
    gap: 1.1rem;
}
.theme-grid--five { grid-template-columns: repeat(5, 1fr); }
.theme-grid--two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 760px;
    margin: 0 auto;
}

.theme-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1rem;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: box-shadow .2s, transform .2s;
}
.theme-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.theme-preview {
    height: 64px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700;
    margin-bottom: .8rem;
    letter-spacing: .02em;
}
.theme-preview.classic { background: #111; color: #E91E63; }
.theme-preview.minimal { background: #f8f8f8; color: #333; border: 1px solid #ddd; }
.theme-preview.slotra2 { background: linear-gradient(135deg, #E91E63, #9c27b0); color: #fff; }
.theme-preview.eduslot { background: linear-gradient(135deg, #1a1a2e, #16213e); color: #E91E63; }
.theme-preview.iserv   { background: #0057b8; color: #fff; }
.theme-preview.opsclassic { background: #f1f5f9; color: #334155; border: 1.5px solid #cbd5e1; font-family: "IBM Plex Mono", monospace; }

.theme-card h4 {
    font-size: .85rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .35rem;
}
.theme-card p { font-size: .78rem; color: var(--text-muted); line-height: 1.5; }

/* ── Trust / Vertrauen ── */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.trust-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .2s, transform .2s;
}
.trust-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.trust-card .icon { font-size: 2rem; margin-bottom: .85rem; }
.trust-card h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: .5rem; }
.trust-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }

/* ── FAQ ── */
.faq-container { max-width: 720px; }

.faq-list { display: flex; flex-direction: column; gap: .5rem; }

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.faq-item:hover { box-shadow: var(--shadow); }
.faq-item[open] {
    border-color: rgba(var(--brand-rgb), .22);
    box-shadow: var(--shadow);
}

.faq-item summary {
    padding: 1.1rem 1.25rem;
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text);
}
.faq-item summary::after {
    content: '+';
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--brand);
    transition: transform .2s;
    flex-shrink: 0;
    margin-left: 1rem;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item p {
    padding: 0 1.25rem 1.1rem;
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ── Kontakt / CTA ── */
.section-cta {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background:
        radial-gradient(ellipse 80% 120% at 50% 100%, rgba(233, 30, 99, 0.18), transparent 55%),
        linear-gradient(145deg, #0f172a 0%, #1e1b4b 45%, var(--brand-deep) 100%);
}

.cta-panel {
    max-width: 640px;
    margin-inline: auto;
    text-align: center;
}

.cta-title {
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -.03em;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    gap: .75rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Legacy kontakt rules (contact form pages) */
#kontakt .section-label { color: rgba(255,255,255,.7); }
#kontakt .section-title { color: #fff; }
#kontakt .section-intro { color: rgba(255,255,255,.8); }

.contact-card {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    backdrop-filter: blur(12px);
    max-width: 560px;
}

.contact-form { display: flex; flex-direction: column; gap: 1rem; }

.contact-form input,
.contact-form textarea {
    font-family: var(--font);
    font-size: .9rem;
    padding: .75rem 1rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,.3);
    background: rgba(255,255,255,.15);
    color: #fff;
    width: 100%;
    transition: border-color .15s, background .15s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,.55); }
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(255,255,255,.7);
    background: rgba(255,255,255,.2);
}
.contact-form textarea { resize: vertical; min-height: 120px; }

.contact-form .btn-white {
    background: #fff;
    color: var(--brand-dark);
    font-weight: 700;
    padding: .8rem 1.5rem;
    align-self: flex-start;
}
.contact-form .btn-white:hover {
    background: var(--brand-light);
    color: var(--brand-dark);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
}

.contact-alt {
    margin-top: 1.5rem;
    font-size: .85rem;
    color: rgba(255,255,255,.75);
}
.contact-alt a { color: #fff; font-weight: 600; }

/* ── Footer ── */
.site-footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.55);
    padding: 3rem 0 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .85rem;
    text-align: center;
}

.logo--footer {
    color: #fff;
    margin-bottom: .25rem;
}
.logo--footer:hover { color: #fff; }
.logo--footer .logo-mark { box-shadow: 0 4px 20px rgba(233, 30, 99, 0.35); }

.footer-tagline {
    font-size: .9rem;
    color: rgba(255, 255, 255, 0.65);
}

.footer-links {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    font-size: .875rem;
    font-weight: 500;
    transition: color .2s var(--ease);
}
.footer-links a:hover { color: #fff; text-decoration: none; }

.footer-copy { font-size: .8rem; color: rgba(255, 255, 255, 0.38); }

/* ── Legal pages ── */
.legal-hero {
    background: linear-gradient(135deg, var(--brand-light), #fff);
    padding: 3.5rem 0 2.5rem;
    border-bottom: 1px solid var(--border);
}
.legal-hero h1 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    color: var(--text);
    letter-spacing: -.02em;
    margin-bottom: .5rem;
}
.legal-hero p { font-size: 1rem; color: var(--text-muted); }

.legal-body {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 0 5rem;
}

.legal-body h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin: 2.25rem 0 .65rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    letter-spacing: -.01em;
}
.legal-body h2:first-child { border-top: none; padding-top: 0; }

.legal-body h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin: 1.5rem 0 .5rem;
}

.legal-body p, .legal-body li {
    font-size: .95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: .75rem;
}

.legal-body ul { margin-left: 1.5rem; margin-bottom: .75rem; }

.legal-card {
    background: var(--brand-light);
    border: 1px solid rgba(var(--brand-rgb), .2);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.75rem;
    margin: 1.5rem 0;
}
.legal-card strong { color: var(--brand-dark); font-weight: 700; display: block; margin-bottom: .5rem; }
.legal-card p { color: var(--text); margin: 0; }

/* ── Responsive ── */
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-visual { display: none; }
    .product-showcase { grid-template-columns: 1fr; gap: 2rem; }
    .feature-split { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .problem-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr; }
    .theme-grid--five { grid-template-columns: repeat(2, 1fr); }
    .nav-desktop { display: none; }
    .menu-toggle { display: block; }
    .header-inner .btn { display: none; }
}

/* ── Story Section ── */
.story-block {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 3rem;
    align-items: start;
    margin-top: 2.25rem;
}

.story-lead {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.45;
    margin-bottom: 1.25rem;
    font-style: italic;
    padding-left: 1rem;
    border-left: 3px solid var(--brand);
}

.story-text p {
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 1rem;
    font-size: 0.975rem;
}

.story-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.85rem;
    box-shadow: var(--shadow);
}

.story-card h4 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.story-card > p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1rem;
}

.story-text p:last-child { margin-bottom: 0; }

.story-sidebar { position: sticky; top: calc(var(--header-h) + 1rem); }

.story-icon {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
    display: block;
}

.story-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.story-highlights li {
    font-size: 0.845rem;
    color: var(--text-muted);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.5rem 0.75rem;
    font-weight: 500;
}

@media (max-width: 860px) {
    .story-block {
        grid-template-columns: 1fr;
    }
    .story-sidebar {
        position: static;
        order: -1;
    }
}

@media (max-width: 600px) {
    section { padding: 3.5rem 0; }
    .theme-grid--five { grid-template-columns: 1fr 1fr; }
    .theme-grid--two { grid-template-columns: 1fr; }
    .screenshot-gallery { grid-template-columns: 1fr !important; }
}

/* ── Funktionen / Feature-Grid ── */
.feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.feat-category {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.6rem 1.6rem 1.85rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .25s var(--ease), transform .25s var(--ease), border-color .25s var(--ease);
    position: relative;
}
.feat-category:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: rgba(var(--brand-rgb), .14);
}

.feat-category-icon {
    font-size: 1.75rem;
    margin-bottom: 0.6rem;
    line-height: 1;
}

.feat-category h3 {
    font-size: 1.02rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 0.95rem;
    padding-bottom: 0.7rem;
    border-bottom: 1px solid var(--border);
}

.feat-category ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.feat-category ul li {
    font-size: 0.86rem;
    color: var(--text);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.4;
}

.feat-category ul li::before {
    content: "✓";
    color: var(--brand);
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 0.1em;
}

@media (max-width: 960px) {
    .feat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
    .feat-grid { grid-template-columns: 1fr; }
}

/* ── Pricing / Tarife ── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
    align-items: start;
}

.pricing-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem 1.85rem;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.pricing-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.pricing-card--featured {
    border-color: rgba(var(--brand-rgb), .35);
    background: linear-gradient(180deg, #fff 0%, var(--bg-warm) 100%);
    box-shadow: 0 0 0 1px rgba(var(--brand-rgb), .12), var(--shadow-md);
}
.pricing-card--featured:hover {
    box-shadow: 0 0 0 1px rgba(var(--brand-rgb), .2), var(--shadow-lg);
}

.pricing-popular {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 3px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

.pricing-tier-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 1rem;
    width: fit-content;
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.pricing-tagline {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.pricing-divider {
    height: 1px;
    background: var(--border);
    margin: 1.25rem 0;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.75rem;
    flex: 1;
}

.pricing-features li {
    font-size: 0.87rem;
    color: var(--text);
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    line-height: 1.4;
}

.pricing-features li::before {
    flex-shrink: 0;
    font-size: 0.85rem;
    margin-top: 0.05em;
}

.feat-yes { color: var(--text); }
.feat-yes::before { content: "✓"; color: #16a34a; font-weight: 700; }

.feat-no { color: var(--text-muted); }
.feat-no::before { content: "—"; color: #d1d5db; }

.pricing-cta {
    display: block;
    text-align: center;
    width: 100%;
    margin-top: auto;
}

.pricing-note {
    text-align: center;
    font-size: 0.83rem;
    color: var(--text-muted);
    margin-top: 2rem;
    max-width: 600px;
    margin-inline: auto;
}

/* ── Datenschutz-Grid ── */
.privacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.privacy-card {
    background: var(--card);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .2s, transform .2s;
    position: relative;
    overflow: hidden;
}
.privacy-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #E91E63, #6366f1);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.privacy-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.privacy-icon {
    font-size: 2rem;
    margin-bottom: 0.85rem;
    line-height: 1;
}

.privacy-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.6rem;
}

.privacy-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 900px) {
    .privacy-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
    .pricing-card--featured { order: -1; }
}

/* ── Messaging Showcase ────────────────────────────────────────────────────── */

.msg-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 3rem;
}

/* Mock inbox */
.msg-mock {
    background: var(--card);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.msg-mock-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .85rem 1.1rem;
    border-bottom: 1px solid var(--border);
    background: var(--bg);
    gap: .75rem;
    flex-wrap: wrap;
}

.msg-mock-tabs {
    display: flex;
    gap: .35rem;
    flex-wrap: wrap;
}

.msg-tab {
    font-size: .72rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: .25rem .7rem;
    border-radius: 999px;
    cursor: default;
    border: 1px solid var(--border);
    background: var(--card);
    transition: all .15s;
    white-space: nowrap;
}
.msg-tab.active {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
}

.msg-compose-btn {
    font-size: .72rem;
    font-weight: 700;
    color: var(--brand-dark);
    padding: .28rem .8rem;
    border-radius: 999px;
    border: 1.5px solid var(--brand);
    background: var(--brand-light);
    white-space: nowrap;
    text-decoration: none;
    transition: background .15s;
}
.msg-compose-btn:hover { background: var(--brand); color: #fff; text-decoration: none; }

.msg-list { display: flex; flex-direction: column; }

.msg-item {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    padding: .9rem 1.1rem;
    border-bottom: 1px solid var(--border);
    transition: background .12s;
    cursor: default;
}
.msg-item:last-child { border-bottom: none; }
.msg-item--unread { background: color-mix(in srgb, var(--brand) 4%, var(--card)); }

.msg-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    font-weight: 700;
    font-size: .9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.msg-content { flex: 1; min-width: 0; }

.msg-row {
    display: flex;
    align-items: center;
    gap: .4rem;
    margin-bottom: .18rem;
}

.msg-sender {
    font-size: .82rem;
    font-weight: 700;
    color: var(--text);
    white-space: nowrap;
}

.msg-badge {
    background: var(--brand);
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
    border-radius: 999px;
    padding: 0 .38rem;
    line-height: 1.5;
}

.msg-time {
    font-size: .72rem;
    color: var(--text-light);
    margin-left: auto;
    white-space: nowrap;
}

.msg-subject {
    font-size: .83rem;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: .1rem;
}

.msg-item--unread .msg-subject { color: var(--brand-dark); }

.msg-preview {
    font-size: .76rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Right column */
.msg-callouts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.msg-enc-badge {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 1.1rem 1.3rem;
    border: 1px solid #334155;
    box-shadow: 0 4px 16px rgba(0,0,0,.18);
}

.enc-icon { font-size: 2rem; line-height: 1; flex-shrink: 0; }

.enc-title {
    font-size: .9rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: .25rem;
    font-family: var(--font-mono);
    letter-spacing: .02em;
}

.enc-sub {
    font-size: .78rem;
    color: #94a3b8;
    line-height: 1.55;
}

.msg-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .85rem;
}

.msg-features li {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    font-size: .875rem;
}
.msg-features .check {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    font-size: .7rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: .1rem;
}
.msg-features strong { display: block; font-size: .88rem; color: var(--text); margin-bottom: .1rem; }
.msg-features span   { font-size: .8rem; color: var(--text-muted); line-height: 1.5; }

/* ── IT Section ── */
.it-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.25rem, 2.4vw, 2rem);
    margin-bottom: 2rem;
}

.it-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: clamp(1.35rem, 2vw, 1.9rem);
    box-shadow: var(--shadow-sm);
}

.it-card h3 {
    font-size: clamp(1.02rem, 1.5vw, 1.2rem);
    color: var(--ink);
    margin-bottom: .85rem;
    letter-spacing: -.015em;
}

.it-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .55rem;
}

.it-list li {
    position: relative;
    padding-left: 1rem;
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.it-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .57rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), #818cf8);
}

.it-list code {
    font-family: var(--font-mono);
    font-size: .8em;
    color: var(--brand-deep);
    background: color-mix(in srgb, var(--brand) 8%, #fff);
    padding: .05rem .32rem;
    border-radius: 6px;
}

.it-roadmap {
    background: linear-gradient(145deg, rgba(var(--brand-rgb), 0.06), rgba(99, 102, 241, 0.07));
    border: 1px solid rgba(var(--brand-rgb), 0.18);
    border-radius: var(--radius-xl);
    padding: clamp(1.5rem, 2.3vw, 2.25rem);
}

.it-roadmap h3 {
    font-size: clamp(1.2rem, 2.2vw, 1.55rem);
    color: var(--ink);
    letter-spacing: -.02em;
    margin-bottom: 1rem;
}

.it-roadmap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.it-roadmap-item {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: var(--radius);
    padding: 1rem 1rem 1.05rem;
}

.it-roadmap-phase {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-mono);
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--brand-dark);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(var(--brand-rgb), .16);
    border-radius: 999px;
    padding: .2rem .58rem;
    margin-bottom: .6rem;
}

.it-roadmap-item h4 {
    font-size: .96rem;
    color: var(--text);
    margin-bottom: .45rem;
}

.it-list--compact li {
    font-size: .84rem;
}

/* DB comparison row */
.msg-db-row {
    background: #0f172a;
    border-radius: var(--radius);
    padding: 1rem 1.2rem;
    border: 1px solid #1e293b;
}

.msg-db-label {
    display: block;
    font-size: .7rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: .65rem;
    font-family: var(--font-mono);
}

.msg-db-examples {
    display: flex;
    flex-direction: column;
    gap: .45rem;
}

.msg-db-cipher {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-mono);
}

.db-field {
    color: #6366f1;
    font-size: .73rem;
    font-weight: 700;
    white-space: nowrap;
}

.msg-db-cipher code {
    font-size: .72rem;
    color: #f87171;
    background: rgba(248,113,113,.08);
    padding: .1rem .4rem;
    border-radius: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
    font-family: var(--font-mono);
}

.msg-db-arrow {
    font-size: .75rem;
    color: #475569;
    padding-left: 3.5rem;
    font-family: var(--font-mono);
}

.db-plain {
    color: #4ade80;
    font-weight: 600;
}

/* Feature highlight */
.feat-category--highlight {
    border: 1px solid rgba(var(--brand-rgb), .28);
    background: linear-gradient(165deg, rgba(233, 30, 99, 0.04) 0%, var(--card) 45%);
    box-shadow: var(--shadow), 0 0 0 1px rgba(var(--brand-rgb), .06);
    position: relative;
    overflow: hidden;
}
.feat-category--highlight::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 0%, rgba(233, 30, 99, 0.08), transparent 50%);
    border-radius: inherit;
    pointer-events: none;
}

.feat-new-badge {
    display: inline-block;
    background: var(--brand);
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
    padding: .15rem .5rem;
    border-radius: 999px;
    vertical-align: middle;
    margin-left: .4rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.feat-tier-badge {
    display: inline-block;
    font-size: .62rem;
    font-weight: 700;
    padding: .12rem .45rem;
    border-radius: 999px;
    vertical-align: middle;
    margin-left: .35rem;
    letter-spacing: .03em;
    text-transform: uppercase;
    white-space: nowrap;
}

.feat-tier-pro {
    background: #dbeafe;
    color: #1d4ed8;
}

.feat-tier-business {
    background: #f3e8ff;
    color: #7e22ce;
}

.feat-tier-legend {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem 1.25rem;
    justify-content: center;
    margin: 0 0 2rem;
    font-size: .82rem;
    color: var(--text-muted);
}

.feat-tier-legend span {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}

@media (max-width: 860px) {
    .msg-showcase { grid-template-columns: 1fr; gap: 2rem; }
    .msg-db-cipher code { max-width: 140px; }
}

/* ── Cookie Banner ── */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: min(720px, calc(100vw - 2rem));
    background: rgba(15, 23, 42, 0.94);
    color: #e2e8f0;
    padding: 1rem 1.25rem;
    z-index: 9999;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(16px);
    font-size: 0.875rem;
    line-height: 1.55;
}
.cookie-banner.is-visible { display: flex; }
.cookie-banner__text { margin: 0; flex: 1; min-width: 200px; }
.cookie-banner__text a { color: #f9a8d4; text-decoration: underline; }
.cookie-banner__text a:hover { color: #fff; }
.cookie-banner__btn {
    background: var(--brand);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 0.55rem 1.25rem;
    cursor: pointer;
    font-family: var(--font);
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background .2s var(--ease), transform .2s var(--ease);
}
.cookie-banner__btn:hover {
    background: var(--brand-dark);
    transform: translateY(-1px);
}

/* Centered section titles in full-width blocks */
#funktionen .section-title,
#tarife .section-title,
#faq .section-title,
#datenschutz .section-title,
#it .section-title,
.section-cta .cta-title {
    max-width: none;
}
#funktionen .section-intro,
#tarife .section-intro,
#faq .section-intro,
#datenschutz .section-intro,
#it .section-intro {
    margin-inline: auto;
    text-align: center;
}
#funktionen .section-label,
#tarife .section-label,
#faq .section-label,
#datenschutz .section-label,
#it .section-label {
    text-align: center;
    display: block;
}
.feat-tier-legend a { font-weight: 600; }

/* ═══════════════════════════════════════════════════════════
   SaaS v2 — größere Typo, Weißraum, Glassmorphism, Motion
   ═══════════════════════════════════════════════════════════ */

@keyframes meshDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(2%, -1.5%) scale(1.03); }
    66% { transform: translate(-1.5%, 2%) scale(0.98); }
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(24px, -28px) scale(1.08); }
    66% { transform: translate(-16px, 18px) scale(0.94); }
}

.hero-blob--1 { animation-duration: 11s; }
.hero-blob--2 { animation-duration: 14s; opacity: 0.65; }

@keyframes floatSoft {
    0%, 100% { transform: perspective(1200px) rotateY(-4deg) rotateX(2deg) translateY(0); }
    50% { transform: perspective(1200px) rotateY(-2deg) rotateX(1deg) translateY(-10px); }
}

@keyframes shimmerLine {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}

body::before {
    animation: meshDrift 22s ease-in-out infinite;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -2;
    background:
        radial-gradient(circle 520px at 8% 18%, rgba(99, 102, 241, 0.07), transparent 55%),
        radial-gradient(circle 480px at 92% 78%, rgba(233, 30, 99, 0.09), transparent 52%);
    animation: meshDrift 28s ease-in-out infinite reverse;
}

/* ── Typografie & Weißraum ── */
section { padding: var(--section-y) 0; }

.section-label {
    font-size: .72rem;
    letter-spacing: .16em;
    margin-bottom: 1.1rem;
}

.section-title {
    font-size: clamp(2.15rem, 4.5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.04em;
    max-width: 26ch;
    margin-bottom: 1.35rem;
}

.section-intro {
    font-size: clamp(1.0625rem, 1.6vw, 1.2rem);
    line-height: 1.85;
    max-width: 680px;
    margin-bottom: clamp(3rem, 5vw, 4rem);
}

.alt-bg {
    background: linear-gradient(180deg, rgba(238, 242, 247, 0.65) 0%, rgba(248, 250, 252, 0.35) 100%);
}

/* ── Glass surfaces ── */
.glass-surface {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur)) saturate(185%);
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(185%);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-glass);
    border-radius: var(--radius-2xl);
}

.glass-surface--dark {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero-copy.glass-surface {
    padding: clamp(2rem, 4vw, 3.25rem);
}

.cta-panel.glass-surface {
    padding: clamp(2.5rem, 5vw, 3.75rem) clamp(2rem, 4vw, 3rem);
}

/* ── Hero ── */
.hero {
    padding: clamp(4rem, 9vw, 7rem) 0 clamp(5rem, 10vw, 8rem);
}

.hero-blob--1 { animation: blobFloat 14s ease-in-out infinite; }
.hero-blob--2 { animation: blobFloat 18s ease-in-out infinite reverse; }

.hero-copy h1 {
    font-size: clamp(2.65rem, 5.5vw, 4.35rem);
    line-height: 1.04;
    letter-spacing: -.045em;
    margin-bottom: 1.5rem;
}

.hero-lead {
    font-size: clamp(1.0625rem, 1.5vw, 1.2rem);
    line-height: 1.85;
    margin-bottom: 2.25rem;
    max-width: 540px;
}

.hero-trust li {
    font-size: .82rem;
    padding: .5rem .9rem;
    background: rgba(255, 255, 255, 0.55);
    border-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
}

.browser-frame {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(18px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(15, 23, 42, 0.04);
    animation: floatSoft 7s ease-in-out infinite;
}

.hero-visual:hover .browser-frame {
    animation-play-state: paused;
    transform: perspective(1200px) rotateY(-1deg) rotateX(0deg) translateY(-6px);
}

/* ── Glass cards (alle Raster) ── */
.step-card,
.problem-card,
.trust-card,
.feat-category,
.pricing-card,
.privacy-card,
.story-card,
.screenshot-card,
.theme-card,
.feature-list li,
.faq-item {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur)) saturate(175%);
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(175%);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-glass);
    border-radius: var(--radius-2xl);
    transition:
        transform .35s var(--ease),
        box-shadow .35s var(--ease),
        border-color .35s var(--ease);
}

.step-card,
.problem-card,
.trust-card,
.feat-category,
.pricing-card,
.privacy-card,
.story-card {
    padding: clamp(2rem, 3vw, 2.5rem);
}

.step-card:hover,
.problem-card:hover,
.trust-card:hover,
.feat-category:hover,
.pricing-card:hover,
.privacy-card:hover,
.story-card:hover,
.screenshot-card:hover,
.theme-card:hover,
.feature-list li:hover,
.faq-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glass-hover);
    border-color: rgba(var(--brand-rgb), 0.18);
}

.step-card::before {
    height: 4px;
    background: linear-gradient(90deg, var(--brand), #818cf8, var(--brand));
    background-size: 200% auto;
}

.step-card:hover::before {
    opacity: 1;
    animation: shimmerLine 2.5s linear infinite;
}

.step-card h3,
.problem-card h3,
.trust-card h3 {
    font-size: clamp(1.1rem, 1.5vw, 1.25rem);
    margin-bottom: .75rem;
}

.step-card p,
.problem-card p,
.trust-card p {
    font-size: .95rem;
    line-height: 1.7;
}

.steps-grid,
.problem-grid,
.trust-grid,
.feat-grid,
.pricing-grid {
    gap: clamp(1.75rem, 3vw, 2.25rem);
}

.feat-category h3 {
    font-size: clamp(1.08rem, 1.4vw, 1.2rem);
    border-bottom-color: rgba(15, 23, 42, 0.06);
}

.feat-category ul li { font-size: .92rem; line-height: 1.5; }

.pricing-card--featured {
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.78) 0%, rgba(252, 228, 236, 0.45) 100%);
    border-color: rgba(var(--brand-rgb), 0.28);
    transform: scale(1.03);
}

.pricing-card--featured:hover {
    transform: scale(1.03) translateY(-8px);
}

.pricing-name { font-size: clamp(1.55rem, 2vw, 1.75rem); }

.faq-item summary {
    font-size: clamp(1rem, 1.2vw, 1.08rem);
    padding: 1.35rem 1.5rem;
}

.faq-item p {
    font-size: .95rem;
    padding: 0 1.5rem 1.35rem;
}

.feature-list { gap: 1.25rem; }

.feature-list li { padding: 1.35rem 1.5rem; }

.feature-list strong { font-size: .98rem; }

.feature-list span { font-size: .9rem; }

.story-lead {
    font-size: clamp(1.25rem, 2vw, 1.45rem);
    line-height: 1.5;
}

.story-text p { font-size: 1.025rem; line-height: 1.9; }

.cta-title {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
}

.cta-text {
    font-size: clamp(1.0625rem, 1.5vw, 1.15rem);
}

.section-cta {
    padding: clamp(5rem, 10vw, 8rem) 0;
    position: relative;
    overflow: hidden;
}

.site-footer {
    padding: clamp(3rem, 6vw, 4.5rem) 0;
}

/* ── Scroll reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition:
        opacity .75s var(--ease),
        transform .75s var(--ease);
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-copy.reveal { transform: translateY(24px) scale(0.98); }
.hero-copy.reveal.is-visible { transform: translateY(0) scale(1); }

/* ── SaaS v3 — mehr Dynamik & Motion ── */
@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes btnPulse {
    0%, 100% { box-shadow: 0 4px 18px var(--brand-glow); }
    50% { box-shadow: 0 6px 32px rgba(var(--brand-rgb), 0.45), 0 0 48px rgba(var(--brand-rgb), 0.12); }
}

@keyframes trustFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes patternDrift {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 48px 48px, 48px 48px; }
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(32px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes iconPop {
    0% { transform: scale(1) rotate(0deg); }
    40% { transform: scale(1.18) rotate(-6deg); }
    100% { transform: scale(1) rotate(0deg); }
}

@keyframes ctaGlow {
    0%, 100% {
        box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    }
    50% {
        box-shadow: 0 28px 90px rgba(var(--brand-rgb), 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.16);
    }
}

@keyframes ringPulse {
    0%, 100% { opacity: 0.35; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.08); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-24px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes countGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(var(--brand-rgb), 0.2); }
    50% { box-shadow: 0 0 0 8px rgba(var(--brand-rgb), 0); }
}

.hero-bg {
    transform: translate3d(var(--parallax-x, 0px), calc(var(--parallax-y, 0px) + var(--mouse-y, 0px)), 0);
    transition: transform 0.35s var(--ease);
    will-change: transform;
}

.hero-grid-pattern {
    animation: patternDrift 18s linear infinite;
}

.hero-copy h1 em {
    background-size: 220% auto;
    animation: gradientFlow 5s ease infinite;
}

body.motion-ready .hero-copy > .hero-eyebrow { animation: heroFadeUp 0.85s var(--ease) 0.05s both; }
body.motion-ready .hero-copy > h1 { animation: heroFadeUp 0.9s var(--ease) 0.15s both; }
body.motion-ready .hero-copy > .hero-lead { animation: heroFadeUp 0.9s var(--ease) 0.28s both; }
body.motion-ready .hero-copy > .hero-actions { animation: heroFadeUp 0.9s var(--ease) 0.4s both; }
body.motion-ready .hero-copy > .hero-trust { animation: heroFadeUp 0.9s var(--ease) 0.52s both; }

body.motion-ready .hero-visual {
    animation: heroFadeUp 1s var(--ease) 0.35s both;
}

.hero-trust li:nth-child(1) { animation: trustFloat 3.5s ease-in-out 0.8s infinite; }
.hero-trust li:nth-child(2) { animation: trustFloat 3.5s ease-in-out 1.2s infinite; }
.hero-trust li:nth-child(3) { animation: trustFloat 3.5s ease-in-out 1.6s infinite; }

.btn-primary { animation: btnPulse 2.8s ease-in-out infinite; }
.btn-primary:hover { animation: none; }

.header-inner .btn-primary { animation: btnPulse 3.2s ease-in-out infinite; }

.site-header {
    transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

body.scrolled .site-header {
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 12px 48px rgba(15, 23, 42, 0.08);
}

.logo-mark { transition: transform 0.35s var(--ease-spring), box-shadow 0.35s var(--ease); }
.logo:hover .logo-mark {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 8px 24px var(--brand-glow);
}

.problem-card:hover .icon,
.trust-card:hover .icon,
.feat-category:hover .feat-category-icon {
    animation: iconPop 0.55s var(--ease-spring);
}

.callout-dot { animation: countGlow 2.5s ease-in-out infinite; }
.product-callouts li:nth-child(2) .callout-dot { animation-delay: 0.4s; }
.product-callouts li:nth-child(3) .callout-dot { animation-delay: 0.8s; }
.product-callouts li:nth-child(4) .callout-dot { animation-delay: 1.2s; }

.step-card:hover,
.problem-card:hover,
.feat-category:hover {
    transform: translateY(-10px) scale(1.015);
}

.pricing-card--featured {
    position: relative;
    isolation: isolate;
}

.pricing-card--featured::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--brand), #818cf8, #ec4899, var(--brand));
    background-size: 300% 300%;
    animation: gradientFlow 4s ease infinite;
    z-index: -1;
    opacity: 0.55;
    filter: blur(6px);
}

.cta-panel.glass-surface--dark {
    animation: ctaGlow 4s ease-in-out infinite;
}

.section-cta::before {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--brand-rgb), 0.15), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ringPulse 5s ease-in-out infinite;
    pointer-events: none;
}

.faq-item[open] summary {
    color: var(--brand-dark);
    background: rgba(var(--brand-rgb), 0.04);
}

.faq-item p {
    animation: heroFadeUp 0.45s var(--ease) both;
}

.reveal {
    transform: translateY(42px) scale(0.96);
    transition:
        opacity 0.85s var(--ease),
        transform 0.85s var(--ease-spring);
}

.reveal--left {
    transform: translate(-32px, 42px) scale(0.96);
}

.reveal--left.is-visible {
    transform: translate(0, 0) scale(1);
}

.reveal--scale {
    transform: translateY(42px) scale(0.92);
}

.reveal--scale.is-visible {
    transform: translateY(0) scale(1);
}

.section-label.reveal.is-visible {
    animation: none;
}

.booking-grid i.on {
    animation: gridPulse 2.2s ease-in-out infinite, countGlow 3s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.55; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
    .browser-frame { animation: none; }
}

@media (max-width: 600px) {
    section { padding: clamp(4rem, 12vw, 5rem) 0; }
    .hero-copy.glass-surface { padding: 1.75rem; }
    .pricing-card--featured { transform: none; }
    .pricing-card--featured:hover { transform: translateY(-8px); }
}

@media (max-width: 1020px) {
    .it-grid,
    .it-roadmap-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Betriebssicherheitsbericht ── */
.bs-doc-hero {
    background: linear-gradient(155deg, #0f172a 0%, #1e293b 45%, #172554 100%);
    color: #fff;
    padding: clamp(3.5rem, 8vw, 5.5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bs-doc-meta {
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 1rem;
}

.bs-doc-hero h1 {
    font-size: clamp(1.85rem, 4.5vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.15;
    margin-bottom: 1rem;
    max-width: 18ch;
}

.bs-doc-subtitle {
    font-size: clamp(.95rem, 2vw, 1.08rem);
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
    max-width: 52rem;
    margin-bottom: 2rem;
}

.bs-rating-panel {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
    margin-bottom: 2rem;
}

.bs-rating-badge {
    display: inline-flex;
    flex-direction: column;
    gap: .25rem;
    padding: .85rem 1.25rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.bs-rating-badge--conditional {
    background: rgba(234, 179, 8, 0.15);
    border: 1px solid rgba(234, 179, 8, 0.45);
}

.bs-rating-label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

.bs-rating-value {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    color: #fde047;
}

.bs-rating-notes {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .65rem;
}

.bs-rating-notes li {
    font-size: .88rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.55;
    padding-left: 1rem;
    border-left: 2px solid rgba(99, 102, 241, 0.5);
}

.bs-toc {
    background: rgba(15, 23, 42, 0.5);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    max-width: 28rem;
}

.bs-toc-title {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: .75rem;
}

.bs-toc ol {
    margin: 0;
    padding-left: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: .35rem;
}

.bs-toc a {
    color: rgba(255, 255, 255, 0.85);
    font-size: .88rem;
    text-decoration: none;
}

.bs-toc a:hover { color: #a5b4fc; text-decoration: underline; }

.bs-doc-body {
    padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(4rem, 8vw, 5rem);
    background: var(--bg);
}

.bs-doc-grid {
    max-width: 52rem;
}

.bs-section {
    margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
    padding-bottom: clamp(2rem, 4vw, 2.75rem);
    border-bottom: 1px solid var(--border);
}

.bs-section:last-child { border-bottom: none; margin-bottom: 0; }

.bs-section h2 {
    font-size: clamp(1.35rem, 3vw, 1.65rem);
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--ink);
    margin-bottom: 1rem;
}

.bs-section h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin: 1.35rem 0 .65rem;
}

.bs-lead {
    font-size: 1.02rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1rem;
}

.bs-list {
    list-style: disc;
    padding-left: 1.35rem;
    display: flex;
    flex-direction: column;
    gap: .55rem;
    color: var(--text-muted);
    font-size: .92rem;
    line-height: 1.6;
}

.bs-list--ordered { list-style: decimal; }

.bs-list code,
.bs-lead code,
.bs-section p code {
    font-family: var(--font-mono);
    font-size: .84em;
    background: color-mix(in srgb, var(--brand) 8%, #fff);
    color: var(--brand-deep);
    padding: .05rem .35rem;
    border-radius: 5px;
}

.bs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .86rem;
    margin: 1rem 0 1.25rem;
}

.bs-table th,
.bs-table td {
    border: 1px solid var(--border);
    padding: .65rem .85rem;
    text-align: left;
    vertical-align: top;
}

.bs-table th {
    background: var(--card);
    font-weight: 700;
    color: var(--ink);
}

.bs-table td { color: var(--text-muted); }

.bs-callout {
    border-radius: var(--radius-md);
    padding: 1rem 1.15rem;
    margin-top: 1.25rem;
    font-size: .88rem;
    line-height: 1.6;
}

.bs-callout--warn {
    background: #fffbeb;
    border: 1px solid #fcd34d;
    color: #92400e;
}

.bs-callout--info {
    background: #eff6ff;
    border: 1px solid #93c5fd;
    color: #1e40af;
}

.bs-risk-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.25rem 0;
}

.bs-risk-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.15rem;
    box-shadow: var(--shadow-sm);
}

.bs-risk-level {
    display: inline-block;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .2rem .55rem;
    border-radius: 100px;
    margin-bottom: .5rem;
}

.bs-risk-card--high .bs-risk-level { background: #fee2e2; color: #b91c1c; }
.bs-risk-card--medium .bs-risk-level { background: #ffedd5; color: #c2410c; }
.bs-risk-card--low .bs-risk-level { background: #dcfce7; color: #15803d; }

.bs-risk-card h3 {
    font-size: .95rem;
    margin: 0 0 .5rem;
    color: var(--ink);
}

.bs-risk-card p {
    font-size: .84rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0 0 .5rem;
}

.bs-rec { margin-top: .65rem !important; color: var(--ink) !important; }

.bs-conclusion {
    background: linear-gradient(145deg, rgba(var(--brand-rgb), 0.06), rgba(99, 102, 241, 0.05));
    border: 1px solid rgba(var(--brand-rgb), 0.18);
    border-radius: var(--radius-lg);
    padding: clamp(1.35rem, 2.5vw, 1.85rem);
    margin-top: 2rem;
}

.bs-conclusion h3 {
    font-size: 1.1rem;
    margin: 0 0 .75rem;
    color: var(--ink);
}

.bs-conclusion p {
    font-size: .92rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: .75rem;
}

.bs-signoff {
    font-size: .82rem !important;
    color: var(--text-muted) !important;
    margin-top: 1rem !important;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

/* Homepage embed — Kurzfassung */
.bs-embed-panel {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.bs-embed-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
    background: linear-gradient(135deg, #0f172a, #1e3a5f);
    color: #fff;
}

.bs-embed-header h3 {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-weight: 800;
    margin: 0;
    letter-spacing: -.02em;
}

.bs-embed-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(234, 179, 8, 0.18);
    border: 1px solid rgba(234, 179, 8, 0.45);
    color: #fde047;
    font-size: .78rem;
    font-weight: 700;
    padding: .4rem .85rem;
    border-radius: 100px;
}

.bs-embed-body { padding: clamp(1.25rem, 2.5vw, 1.75rem); }

.bs-embed-summary {
    font-size: .92rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.bs-embed-details {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: .65rem;
    background: var(--bg);
}

.bs-embed-details summary {
    cursor: pointer;
    padding: .85rem 1rem;
    font-weight: 600;
    font-size: .88rem;
    color: var(--ink);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bs-embed-details summary::-webkit-details-marker { display: none; }

.bs-embed-details summary::after {
    content: "+";
    font-size: 1.1rem;
    color: var(--brand);
    font-weight: 700;
}

.bs-embed-details[open] summary::after { content: "−"; }

.bs-embed-details[open] summary {
    border-bottom: 1px solid var(--border);
    background: rgba(var(--brand-rgb), 0.04);
}

.bs-embed-details .bs-embed-detail-body {
    padding: .85rem 1rem 1rem;
    font-size: .84rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.bs-embed-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

@media (max-width: 720px) {
    .bs-risk-grid { grid-template-columns: 1fr; }
    .bs-table { font-size: .78rem; }
    .bs-table th, .bs-table td { padding: .5rem; }
}

/* ============================================================
   MOBILE-USABILITY-FEINSCHLIFF (Handy & Tablet)
   Konsolidierte Verbesserungen für Touch-Bedienung – steht
   bewusst am Dateiende, damit es ältere Regeln überschreibt.
   ============================================================ */

/* Tablet & Smartphone: vergrößerte Touch-Ziele in der Navigation */
@media (max-width: 900px) {
    /* Menü-Button: volles 44×44px-Tap-Target (WCAG 2.5.5) */
    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 44px;
        min-height: 44px;
        font-size: 1.5rem;
        border-radius: 12px;
        margin-right: -.4rem;
    }
    .menu-toggle:active { background: var(--brand-soft); }

    /* Mobiles Menü: scrollbar, falls es höher als der Bildschirm wird */
    .nav-mobile {
        gap: .35rem;
        max-height: calc(100vh - var(--header-h) - 1rem);
        max-height: calc(100dvh - var(--header-h) - 1rem);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 1.25rem;
    }
    .nav-mobile-group {
        gap: 0;
        padding-bottom: .35rem;
        border-bottom: 1px solid var(--border);
    }
    .nav-mobile-group:last-of-type { border-bottom: none; }
    .nav-mobile-label { padding: .55rem 0 .25rem; }

    /* Navigationslinks: komfortable Tap-Höhe statt 30px-Zeilen */
    .nav-mobile a {
        display: flex;
        align-items: center;
        min-height: 44px;
        padding: .35rem .65rem;
        font-size: 1rem;
        border-radius: 10px;
    }
    .nav-mobile a:active { background: var(--brand-soft); color: var(--brand-dark); }

    /* Demo-Button im Mobilmenü gut sichtbar und fingerfreundlich */
    .nav-mobile .btn-primary {
        min-height: 48px;
        font-size: 1rem;
        margin-top: .75rem;
    }
}

/* Smartphone-spezifisch */
@media (max-width: 600px) {
    /* Etwas mehr nutzbare Breite auf schmalen Geräten */
    .container { width: min(1200px, 92vw); }

    /* Headline nicht zu wuchtig auf kleinen Displays */
    .hero-copy h1 { font-size: clamp(1.95rem, 8.5vw, 2.6rem); line-height: 1.1; }
    .hero-lead { font-size: 1.02rem; line-height: 1.7; }

    /* CTAs: volle Breite & größere Tap-Fläche – leichter zu treffen */
    .hero-actions { flex-direction: column; align-items: stretch; gap: .65rem; }
    .hero-actions .btn { width: 100%; min-height: 50px; font-size: .98rem; }

    .cta-actions { flex-direction: column; align-items: stretch; }
    .cta-actions .btn { width: 100%; min-height: 50px; }

    /* Alle Buttons: Mindesthöhe fürs Antippen */
    .btn { min-height: 46px; padding-inline: 1.25rem; }

    /* Trust-Badges sauber umbrechen statt gequetscht */
    .hero-trust { gap: .5rem; }
    .hero-trust li { font-size: .8rem; }

    /* Tarif-Legende lesbar umbrechen */
    .feat-tier-legend { flex-direction: column; gap: .4rem; align-items: flex-start; }

    /* FAQ-Aufklapper: größere Tap-Fläche */
    .faq-item summary { padding-block: 1rem; }

    /* Lange Code-/Chiffre-Strings nicht über den Rand schieben */
    .msg-db-cipher code { max-width: 100%; overflow-wrap: anywhere; }
}

/* ============================================================
   MOBILE-RASTER-SICHERHEITSNETZ (alle Sektionen)
   Stellt sicher, dass KEIN mehrspaltiges Raster auf Tablet/
   Handy gequetscht bleibt – ergänzt fehlende Umbrüche.
   ============================================================ */

/* Tarife brachen bisher NICHT um -> auf Tablet/Handy einspaltig */
@media (max-width: 880px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin-inline: auto;
    }
    .pricing-card--featured { transform: none; }
    .pricing-card--featured:hover { transform: translateY(-4px); }
    .pricing-popular { white-space: nowrap; }
}

/* Auf dem Smartphone garantiert ALLES einspaltig + sauberes Umbrechen */
@media (max-width: 600px) {
    .steps-grid, .problem-grid, .trust-grid, .feat-grid, .privacy-grid,
    .pricing-grid, .feature-split, .it-grid, .it-roadmap-grid,
    .theme-grid, .theme-grid--two, .theme-grid--five, .screenshot-gallery,
    .product-showcase, .msg-showcase, .story-block, .bs-risk-grid,
    .trust-grid, .about-me {
        grid-template-columns: 1fr !important;
    }
    .footer-links { flex-direction: column; gap: .5rem; align-items: center; }
    .hero-trust { justify-content: center; }
    .feat-tier-legend { flex-direction: column; align-items: flex-start; gap: .4rem; }
    /* Story-Beweisbox über den Text stellen (Lesefluss) */
    .story-sidebar { order: -1; }
    /* Tabellen horizontal scrollbar statt Überlauf */
    .bs-table-wrap, .il-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* Tablet-Zwischenbereich: 2-spaltige Feature-Listen sauber umbrechen */
@media (max-width: 768px) {
    .feature-split { grid-template-columns: 1fr; }
    .msg-showcase { grid-template-columns: 1fr; }
}

