@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Space+Mono:wght@400;700&display=swap');

:root {
    --brand:        #E91E63;
    --brand-dark:   #C2185B;
    --brand-light:  #FCE4EC;
    --brand-rgb:    233, 30, 99;
    --text:         #111827;
    --text-muted:   #6b7280;
    --text-light:   #9ca3af;
    --bg:           #f9fafb;
    --bg-alt:       #f3f4f6;
    --card:         #ffffff;
    --border:       #e5e7eb;
    --radius:       12px;
    --radius-lg:    16px;
    --radius-xl:    20px;
    --shadow-sm:    0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow:       0 4px 12px rgba(0,0,0,0.07), 0 2px 6px rgba(0,0,0,0.04);
    --shadow-md:    0 8px 24px rgba(0,0,0,0.09), 0 4px 10px rgba(0,0,0,0.05);
    --shadow-lg:    0 16px 40px rgba(0,0,0,0.11), 0 6px 16px rgba(0,0,0,0.06);
    --font:         'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono:    'Space Mono', monospace;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

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

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

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

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

/* ── Header ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(249, 250, 251, 0.92);
    backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .85rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: .55rem;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -.01em;
}
.logo:hover { text-decoration: none; color: var(--text); }

.logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--brand);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.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.55rem; flex-wrap: nowrap; }
.nav-desktop a {
    font-size: .78rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    transition: color .15s;
    white-space: nowrap;
    padding: 0.2rem 0.1rem;
}
.nav-desktop a:hover { color: var(--text); text-decoration: none; }

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: .25rem;
    padding: .75rem 0 1rem;
    border-top: 1px solid var(--border);
}
.nav-mobile.is-open { display: flex; }
.nav-mobile a {
    font-size: .9rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: .4rem 0;
}

.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;
    gap: .4rem;
    padding: .6rem 1.25rem;
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: .875rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all .15s;
    border: none;
    white-space: nowrap;
}
.btn-primary {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 2px 8px rgba(var(--brand-rgb), .3);
}
.btn-primary:hover {
    background: var(--brand-dark);
    color: #fff;
    box-shadow: 0 4px 16px rgba(var(--brand-rgb), .4);
    text-decoration: none;
    transform: translateY(-1px);
}
.btn-ghost {
    background: transparent;
    color: var(--text-muted);
    border: 1.5px solid var(--border);
}
.btn-ghost:hover {
    background: var(--card);
    color: var(--text);
    border-color: var(--brand);
    text-decoration: none;
}

/* ── Sections ── */
section { padding: 5rem 0; }
.alt-bg { background: var(--bg-alt); }

.section-label {
    font-family: var(--font-mono);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--brand);
    margin-bottom: .75rem;
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--text);
    letter-spacing: -.02em;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-intro {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 640px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

/* ── Hero ── */
.hero { padding: 4rem 0 5rem; background: var(--bg); overflow: hidden; }

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-eyebrow {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--brand);
    background: var(--brand-light);
    padding: .3rem .75rem;
    border-radius: 100px;
    margin-bottom: 1.25rem;
}

.hero-copy h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.03em;
    color: var(--text);
    margin-bottom: 1.25rem;
}
.hero-copy h1 em {
    font-style: normal;
    color: var(--brand);
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.hero-trust {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}
.hero-trust li {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .82rem;
    font-weight: 500;
    color: var(--text-muted);
}

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

.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.75rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .2s, transform .2s;
}
.step-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.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.75rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .2s, transform .2s;
}
.problem-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.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);
    padding: 1rem 1.1rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .2s;
}
.feature-list li:hover { box-shadow: var(--shadow); }

.check {
    width: 24px;
    height: 24px;
    background: var(--brand-light);
    color: var(--brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: .1rem;
}

.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-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-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);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .2s;
}
.faq-item:hover { box-shadow: var(--shadow); }
.faq-item[open] { border-color: rgba(var(--brand-rgb), .25); }

.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 ── */
#kontakt { background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%); }
#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(--text);
    color: rgba(255,255,255,.6);
    padding: 2.5rem 0;
}

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

.footer-inner strong { color: #fff; }

.footer-inner a {
    color: rgba(255,255,255,.6);
    transition: color .15s;
    font-size: .875rem;
}
.footer-inner a:hover { color: #fff; text-decoration: none; }
.footer-inner p { font-size: .875rem; }

/* ── 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.18rem;
    font-weight: 700;
    color: var(--text, #0f172a);
    line-height: 1.45;
    margin-bottom: 1.25rem;
    font-style: italic;
    padding-left: 1rem;
    border-left: 3px solid var(--accent, #6366f1);
}

.story-text p {
    color: #374151;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.975rem;
}

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

.story-sidebar { position: sticky; top: 5.5rem; }

.story-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 4px 18px rgba(0,0,0,0.07);
}

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

.story-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.story-card > p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.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: #374151;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 8px;
    padding: 0.45rem 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; }
    .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: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.5rem 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .2s, transform .2s;
}
.feat-category:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

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

.feat-category h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.9rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--brand-light);
}

.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: 1.5px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem 1.75rem;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .2s, transform .2s;
}
.pricing-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.pricing-card--featured {
    border-color: var(--brand);
    box-shadow: 0 0 0 2px rgba(var(--brand-rgb), .12), var(--shadow-md);
}
.pricing-card--featured:hover {
    box-shadow: 0 0 0 2px 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; }

/* 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: 2px solid var(--brand);
    position: relative;
}
.feat-category--highlight::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(233,30,99,.04) 0%, transparent 60%);
    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;
}

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