/* ═══════════════════════════════════════════════
   Lenk- und Denkprotokoll – style.css v3
   Hardcoded colors: no CSS variable failures
   ═══════════════════════════════════════════════ */

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: #1a1a2e;
    background: #f0f3fa;
    line-height: 1.6;
    font-size: 16px;
}

img { max-width: 100%; display: block; }
a { color: #4db6e8; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── SITE HEADER ──────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 500;
    background: #0f1d47;
    border-bottom: 1px solid rgba(255,255,255,.08);
    transition: box-shadow .2s;
}
.site-header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.35); }

.site-header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}
.site-logo img {
    height: 38px;
    width: 38px;
    object-fit: contain;
    background: #fff;
    border-radius: 8px;
    padding: 4px;
}
.site-logo span {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255,255,255,.9);
    white-space: nowrap;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}
.site-nav a {
    color: rgba(255,255,255,.75);
    font-size: 14px;
    font-weight: 500;
    padding: 7px 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: background .15s, color .15s;
    white-space: nowrap;
}
.site-nav a:hover { background: rgba(255,255,255,.1); color: #fff; }
.site-nav .nav-cta {
    background: #1a2f6a;
    color: #fff;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,.2);
}
.site-nav .nav-cta:hover { background: #2a4a9a; }

/* Burger */
.site-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    width: 36px;
    height: 36px;
}
.site-burger span {
    display: block;
    height: 2px;
    background: rgba(255,255,255,.85);
    border-radius: 2px;
    transition: transform .2s, opacity .2s;
}

/* ── TESTPHASEN-HINWEIS ─────────────────────────────────────────── */
.site-notice {
    background: #fdf1de;
    border-bottom: 1px solid rgba(245,166,35,.4);
    color: #8a5a00;
    text-align: center;
    font-size: 13.5px;
    font-weight: 600;
    padding: 10px 20px;
    line-height: 1.5;
}
.site-notice strong { color: #a4620e; }

/* Mobile nav open state */
@media (max-width: 680px) {
    .site-logo span { display: none; }
    .site-burger { display: flex; }
    .site-nav {
        display: none;
        flex-direction: column;
        align-items: stretch;
        position: absolute;
        top: 60px;
        left: 0; right: 0;
        background: #0f1d47;
        border-top: 1px solid rgba(255,255,255,.1);
        padding: 12px 20px 20px;
        gap: 4px;
    }
    .site-nav.open { display: flex; }
    .site-nav a { padding: 12px 14px; font-size: 15px; }
}

/* ── HERO ──────────────────────────────────────── */
.hero {
    background: #0f1d47;
    background: linear-gradient(145deg, #0f1d47 0%, #1a2f6a 55%, #1e3a8a 100%);
    color: #fff;
    padding: 70px 20px 60px;
    text-align: center;
}

.hero-inner { max-width: 680px; margin: 0 auto; }

.hero-logo {
    width: 220px;
    height: 220px;
    object-fit: contain;
    margin: 0 auto 24px;
    background: #fff;
    border-radius: 26px;
    padding: 22px;
    box-shadow: 0 12px 36px rgba(0,0,0,.28);
}
.hero-logo-wide {
    width: 340px;
    max-width: 85%;
    height: auto;
    padding: 20px 28px;
}

.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

.hero-punkte {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 28px;
    margin: 4px auto 30px;
    max-width: 620px;
}
.hero-punkt {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}
.hero-punkt::before {
    content: '✓';
    color: #f5a623;
    font-weight: 800;
}

.hero h1 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #fff;
    line-height: 1.2;
}
.hero h1 em { font-style: normal; color: #f5a623; }

.hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,.8);
    max-width: 560px;
    margin: 0 auto 28px;
}

.hero-badges {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.badge-pill {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 13px;
    color: rgba(255,255,255,.9);
}
.badge-pill.gold { background: rgba(245,166,35,.2); border-color: rgba(245,166,35,.4); color: #f5a623; }

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-hero-primary {
    background: #f5a623;
    color: #0f1d47;
    font-weight: 800;
    padding: 13px 28px;
    border-radius: 10px;
    font-size: 15px;
    text-decoration: none;
    transition: opacity .15s;
}
.btn-hero-primary:hover { opacity: .88; text-decoration: none; }
.btn-hero-outline {
    border: 2px solid rgba(255,255,255,.4);
    color: rgba(255,255,255,.9);
    padding: 11px 24px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background .15s;
}
.btn-hero-outline:hover { background: rgba(255,255,255,.1); text-decoration: none; }

/* ── SECTIONS ──────────────────────────────────── */
.content-section { padding: 64px 20px; background: #fff; }
.content-section.bg-light { background: #f0f3fa; }

.section-inner { max-width: 1060px; margin: 0 auto; }

.section-head { text-align: center; margin-bottom: 40px; }
.section-head h2 { font-size: 1.9rem; font-weight: 800; color: #1a2f6a; margin-bottom: 10px; }
.section-head p { color: #5a6a8a; max-width: 540px; margin: 0 auto; font-size: 1.05rem; }
.section-head.light h2 { color: #fff; }
.section-head.light p { color: rgba(255,255,255,.75); }

/* ── FEATURE CARDS ──────────────────────────────── */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}
.feat-card {
    background: #fff;
    border-radius: 12px;
    padding: 26px 22px;
    box-shadow: 0 3px 18px rgba(26,47,106,.1);
    border-top: 4px solid #1a2f6a;
    transition: transform .18s;
}
.feat-card:hover { transform: translateY(-4px); }
.feat-card.roadmap { border-top-color: #f5a623; position: relative; padding-bottom: 52px; }
.feat-icon { font-size: 2.2rem; margin-bottom: 12px; }
.feat-card h3 { font-size: 1.05rem; font-weight: 700; color: #1a2f6a; margin-bottom: 8px; }
.feat-card p { color: #5a6a8a; font-size: .94rem; }

.status-tag {
    position: absolute;
    bottom: 14px;
    left: 22px;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: .4px;
}
.status-tag.in-dev  { background: #d1f5e0; color: #155724; }
.status-tag.planned { background: #d1ecf1; color: #0c5460; }
.status-tag.vision  { background: #eee; color: #666; }

/* ── SCREENSHOTS ─────────────────────────────── */
.screens-section {
    background: #1a2f6a;
    padding: 64px 20px;
}
.screens-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0;
}
.screen-card { flex-shrink: 0; }
.screen-img-wrap {
    position: relative;
    width: 250px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
.screen-img-wrap img {
    width: 100%;
    filter: blur(6px) brightness(.7);
    transform: scale(1.06);
}
.screen-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(15,29,71,.45);
}
.alpha-badge {
    background: #f5a623;
    color: #000;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 4px 12px;
    border-radius: 20px;
}
.screen-label { color: rgba(255,255,255,.85); font-size: 13px; font-weight: 600; }

/* ── NEWS ────────────────────────────────────── */
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.news-card {
    background: #fff;
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 3px 18px rgba(26,47,106,.09);
    border-left: 4px solid #1a2f6a;
    color: inherit;
    text-decoration: none;
    display: block;
    transition: transform .15s;
}
.news-card:hover { transform: translateY(-3px); text-decoration: none; }
.news-date { font-size: 12px; color: #8899bb; font-weight: 600; margin-bottom: 6px; text-transform: uppercase; letter-spacing: .5px; }
.news-card h3 { font-size: 1rem; font-weight: 700; color: #1a2f6a; margin-bottom: 8px; }
.news-card p { font-size: .9rem; color: #5a6a8a; margin-bottom: 12px; }
.news-more { font-size: 13px; color: #4db6e8; font-weight: 600; }

.btn-outline-primary {
    display: inline-block;
    padding: 11px 24px;
    border: 2px solid #1a2f6a;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #1a2f6a;
    text-decoration: none;
    transition: background .15s, color .15s;
}
.btn-outline-primary:hover { background: #1a2f6a; color: #fff; text-decoration: none; }

/* ── CTA SECTION ─────────────────────────────── */
.cta-section { background: #f0f3fa; padding: 64px 20px; }
.cta-section h2 { font-size: 1.9rem; font-weight: 800; color: #1a2f6a; margin-bottom: 12px; }
.cta-section p { color: #5a6a8a; max-width: 500px; margin: 0 auto 28px; }
.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.btn-cta-primary {
    background: #1a2f6a;
    color: #fff;
    font-weight: 700;
    padding: 13px 26px;
    border-radius: 10px;
    font-size: 15px;
    text-decoration: none;
    transition: background .15s;
}
.btn-cta-primary:hover { background: #2a4a9a; text-decoration: none; }
.btn-cta-disabled {
    background: #c8d4e8;
    color: #7a8aaa;
    padding: 13px 22px;
    border-radius: 10px;
    font-size: 14px;
    cursor: not-allowed;
}
.gplay-link { display: inline-block; transition: transform .15s; }
.gplay-link:hover { transform: scale(1.03); }
.gplay-link img { height: 52px; border-radius: 10px; }

/* ── FOOTER ──────────────────────────────────── */
.site-footer {
    background: #0f1d47;
    color: rgba(255,255,255,.5);
    text-align: center;
    padding: 24px 20px;
    font-size: 13px;
}
.site-footer p + p { margin-top: 6px; }
.site-footer a { color: rgba(255,255,255,.45); }
.site-footer a:hover { color: rgba(255,255,255,.8); }

/* ── SHARED COMPONENTS ───────────────────────── */

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 22px; border-radius: 10px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: all .18s; text-decoration: none; }
.btn-primary   { background: #1a2f6a; color: #fff; }
.btn-primary:hover { background: #2a4a9a; text-decoration: none; }
.btn-accent    { background: #4db6e8; color: #fff; }
.btn-accent:hover  { background: #3aa0d0; text-decoration: none; }
.btn-danger    { background: #c0392b; color: #fff; }
.btn-danger:hover  { background: #a93226; text-decoration: none; }
.btn-outline   { background: transparent; border: 2px solid #1a2f6a; color: #1a2f6a; }
.btn-outline:hover { background: #1a2f6a; color: #fff; text-decoration: none; }
.btn-disabled  { background: #c8d4e8; color: #8899bb; cursor: not-allowed; pointer-events: none; }
.btn-sm        { padding: 7px 14px; font-size: 13px; }
.btn-full      { width: 100%; justify-content: center; }

/* Forms */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 12px; font-weight: 700; color: #5a6a8a; margin-bottom: 5px; text-transform: uppercase; letter-spacing: .4px; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 11px 14px; border: 1.5px solid #dde3f0;
    border-radius: 8px; font-size: 15px; color: #1a1a2e;
    background: #fff; transition: border .18s; font-family: inherit;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: #4db6e8; }
.form-group input:disabled { opacity: .55; cursor: not-allowed; background: #f0f3fa; }
.form-group textarea { resize: vertical; min-height: 100px; }

/* Alerts */
.alert { padding: 12px 16px; border-radius: 8px; font-size: 14px; margin-bottom: 18px; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.alert-info    { background: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; }
.alert-warning { background: #fff3cd; color: #856404; border: 1px solid #ffc107; }

/* Cards */
.card { background: #fff; border-radius: 12px; box-shadow: 0 3px 18px rgba(26,47,106,.1); padding: 26px; }
.card-title { font-size: 17px; font-weight: 700; color: #1a2f6a; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid #f0f3fa; }
.divider { border: none; border-top: 1px solid #dde3f0; margin: 20px 0; }

/* Tags */
.tag { display: inline-block; font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 12px; text-transform: uppercase; letter-spacing: .5px; }
.tag-pro   { background: rgba(245,166,35,.15); color: #9a6800; }
.tag-alpha { background: rgba(77,182,232,.15); color: #1a6a9a; }
.tag-soon  { background: #eee; color: #888; }
.tag-admin { background: rgba(192,57,43,.15); color: #922b21; }

/* ── DASHBOARD LAYOUT ────────────────────────── */
.topbar {
    background: #1a2f6a;
    color: #fff;
    padding: 0 22px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,.22);
}
.topbar-logo { display: flex; align-items: center; gap: 10px; }
.topbar-logo img { height: 34px; width: 34px; object-fit: contain; border-radius: 8px; }
.topbar-logo span { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.85); }
.topbar-right { font-size: 13px; color: rgba(255,255,255,.75); display: flex; align-items: center; gap: 10px; }
.topbar-right a { color: rgba(255,255,255,.6); text-decoration: none; transition: color .15s; }
.topbar-right a:hover { color: #fff; }
.topbar-sep { color: rgba(255,255,255,.2); }

.layout { display: flex; min-height: calc(100vh - 58px); }

.sidebar {
    width: 210px;
    background: #0f1d47;
    flex-shrink: 0;
    padding: 16px 0;
}
.sidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 18px;
    color: rgba(255,255,255,.65);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: all .15s;
}
.sidebar-link:hover { background: rgba(255,255,255,.07); color: #fff; text-decoration: none; }
.sidebar-link.active { background: rgba(255,255,255,.1); color: #fff; border-left-color: #4db6e8; }
.sidebar-link .si { font-size: 16px; width: 20px; text-align: center; }
.sidebar-disabled { opacity: .35; cursor: not-allowed; pointer-events: none; }
.sidebar-sep { border: none; border-top: 1px solid rgba(255,255,255,.08); margin: 8px 0; }

.main { flex: 1; padding: 28px; max-width: 860px; }

/* Overview cards */
.ov-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 14px; margin-bottom: 26px; }
.ov-card { background: #fff; border-radius: 12px; padding: 20px 16px; box-shadow: 0 3px 18px rgba(26,47,106,.1); text-align: center; border-top: 3px solid #1a2f6a; cursor: pointer; transition: transform .15s; text-decoration: none; color: inherit; display: block; }
.ov-card:hover { transform: translateY(-3px); text-decoration: none; }
.ov-card .ov-icon { font-size: 1.8rem; margin-bottom: 8px; }
.ov-card h3 { font-size: 13px; font-weight: 700; color: #1a2f6a; }
.ov-card p { font-size: 11px; color: #8899bb; margin-top: 3px; }
.ov-card.dim { opacity: .4; cursor: not-allowed; pointer-events: none; border-color: #bbb; }

.page-hd { margin-bottom: 22px; }
.page-hd h2 { font-size: 1.5rem; font-weight: 800; color: #1a2f6a; }
.page-hd p { color: #5a6a8a; font-size: .95rem; }

/* Google Play button */
.gplay-btn-wrap { display: inline-block; transition: transform .15s; }
.gplay-btn-wrap:hover { transform: scale(1.03); }
.gplay-btn-wrap img { height: 52px; border-radius: 10px; }

/* ── NEWS DISPLAY ────────────────────────────── */
.news-article { max-width: 760px; }
.news-article h1 { font-size: 1.8rem; font-weight: 800; color: #1a2f6a; margin-bottom: 8px; }
.news-meta { font-size: 13px; color: #8899bb; margin-bottom: 24px; }
.news-body { line-height: 1.8; color: #2a2a3e; }
.news-body h1,.news-body h2,.news-body h3 { color: #1a2f6a; margin: 20px 0 8px; }
.news-body p { margin-bottom: 12px; }
.news-body ul,.news-body ol { padding-left: 22px; margin-bottom: 12px; }
.news-body blockquote { border-left: 3px solid #4db6e8; padding-left: 14px; color: #5a6a8a; margin: 12px 0; }
.news-body pre { background: #f0f3fa; padding: 14px; border-radius: 8px; overflow-x: auto; font-size: 13px; margin: 12px 0; }
.news-body img { max-width: 100%; border-radius: 8px; margin: 12px 0; }
.news-body a { color: #4db6e8; }

/* ── ADMIN ───────────────────────────────────── */
.admin-banner {
    background: #c0392b;
    color: #fff;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    padding: 6px;
    letter-spacing: .5px;
}

/* ── UTILITIES ───────────────────────────────── */
.hidden { display: none !important; }

/* ── TILE GRID (Dashboard 3×3) ───────────────── */
.tile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.tile {
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 3px 18px rgba(26,47,106,.1);
    border: 2px solid transparent;
    text-decoration: none;
    color: #1a1a2e;
    cursor: pointer;
    gap: 5px;
    padding: 12px 8px;
    transition: border-color .18s, transform .18s, box-shadow .18s;
}
.tile:hover {
    border-color: #1a2f6a;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(26,47,106,.18);
    text-decoration: none;
}
.tile-icon { font-size: 2rem; line-height: 1; }
.tile-label { font-size: 13px; font-weight: 700; color: #1a2f6a; text-align: center; }
.tile-sub { font-size: 11px; color: #8899bb; text-align: center; }
.tile-coming { color: #f5a623; font-weight: 600; }

/* Admin-Kacheln: rötliche Tönung */
.tile-admin { border-color: rgba(192,57,43,.15); background: #fff8f7; }
.tile-admin:hover { border-color: #c0392b; }
.tile-admin .tile-label { color: #922b21; }

/* "Kommt bald" deaktiviert */
.tile-soon { cursor: default; opacity: .45; }
.tile-soon:hover { transform: none; box-shadow: 0 3px 18px rgba(26,47,106,.1); border-color: transparent; }

/* Unsichtbare Platzhalter */
.tile-ghost { background: transparent; box-shadow: none; cursor: default; border: 2px dashed #e8ecf4; }
.tile-ghost:hover { transform: none; box-shadow: none; border-color: #e8ecf4; }

/* Google Play Kachel */
.tile-gplay { background: #0f1d47; border-color: transparent; }
.tile-gplay:hover { border-color: #4db6e8; }
.tile-gplay-img { width: 80%; max-width: 160px; object-fit: contain; border-radius: 6px; }

/* Info-Felder im Konto-Block */
.info-label { font-size: 11px; color: #8899bb; text-transform: uppercase; letter-spacing: .5px; font-weight: 700; margin-bottom: 4px; }
.info-value { font-weight: 600; font-size: 14px; }

/* Responsive: 2 Spalten auf kleinen Screens */
@media (max-width: 480px) {
    .tile-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .tile-icon { font-size: 1.6rem; }
}


@media (max-width: 680px) {
    .hero h1 { font-size: 1.7rem; }
    .hero-logo { width: 150px; height: 150px; border-radius: 22px; padding: 16px; }
    .hero-logo-wide { width: 260px; max-width: 85%; height: auto; padding: 14px 18px; }
    .hero-punkt { font-size: 13.5px; }
    .card { padding: 18px; }
    .main { padding: 16px; }
    .sidebar { width: 100%; padding: 6px 0; display: flex; overflow-x: auto; white-space: nowrap; }
    .sidebar-link { flex-direction: row; padding: 8px 12px; font-size: 13px; border-left: none; border-bottom: 3px solid transparent; }
    .sidebar-link.active { border-left: none; border-bottom-color: #4db6e8; }
    .layout { flex-direction: column; }
}

/* ── LOGIN PAGE ──────────────────────────────── */
.login-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #0f1d47, #1a2f6a); padding: 20px; }
.login-box { background: #fff; border-radius: 16px; padding: 38px; width: 100%; max-width: 400px; box-shadow: 0 20px 60px rgba(0,0,0,.35); }
.login-logo { text-align: center; margin-bottom: 26px; }
.login-logo img { height: 72px; width: 72px; object-fit: contain; margin: 0 auto 10px; border-radius: 14px; }
.login-logo h1 { font-size: 1.2rem; font-weight: 800; color: #1a2f6a; }
.login-logo p { font-size: 13px; color: #8899bb; }

/* ── BBCODE EDITOR TOOLBAR ──────────────────── */
.bb-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    padding: 8px;
    background: #f0f3fa;
    border: 1.5px solid #dde3f0;
    border-bottom: none;
    border-radius: 8px 8px 0 0;
}
.bb-btn {
    padding: 4px 9px;
    background: #fff;
    border: 1px solid #dde3f0;
    border-radius: 5px;
    font-size: 13px;
    cursor: pointer;
    font-weight: 600;
    color: #1a2f6a;
    transition: background .12s;
}
.bb-btn:hover { background: #1a2f6a; color: #fff; }
.bb-textarea {
    border-radius: 0 0 8px 8px !important;
    border-top: 1px solid #dde3f0 !important;
    min-height: 280px;
}

/* ── PRICING / TARIFE ────────────────────────── */
.pricing-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1a2f6a;
    border-radius: 20px;
    padding: 6px 18px;
    margin-bottom: 18px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
    align-items: start;
}
.price-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 26px 28px;
    box-shadow: 0 4px 24px rgba(26,47,106,.09);
    display: flex;
    flex-direction: column;
    border: 1.5px solid #e8edf8;
    border-top: 5px solid #b0c4d8;
    position: relative;
    transition: transform .22s, box-shadow .22s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 14px 44px rgba(26,47,106,.14); }
.price-card.pc-pro  { border-top-color: #4db6e8; }
.price-card.pc-max  { border-top-color: #f5a623; border-color: rgba(245,166,35,.3); box-shadow: 0 6px 32px rgba(245,166,35,.15); }
.price-card.pc-max:hover { box-shadow: 0 16px 50px rgba(245,166,35,.22); }
.price-card.pc-biz  { background: #0f1d47; border-color: #1a2f6a; border-top-color: #f5a623; }
.price-card-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg,#f5a623,#e8940a);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 18px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(245,166,35,.45);
}
.price-card-icon { font-size: 2.2rem; margin-bottom: 10px; line-height: 1; }
.price-card-name { font-size: 1.15rem; font-weight: 800; color: #1a2f6a; margin-bottom: 3px; }
.price-card-sub  { font-size: 12px; color: #8899bb; margin-bottom: 18px; }
.price-display {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 6px;
}
.price-amount {
    font-size: 2.4rem;
    font-weight: 900;
    color: #1a2f6a;
    letter-spacing: -1.5px;
    line-height: 1;
}
.price-unit {
    font-size: 13px;
    font-weight: 600;
    color: #8899bb;
    margin-bottom: 2px;
}
.price-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: #f5a623;
    margin-bottom: 20px;
}
/* Captcha-Feld */
.captcha-box {
    background: #f7f9fc;
    border: 1.5px solid #e8edf8;
    border-radius: 10px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.captcha-question {
    font-size: 15px;
    font-weight: 700;
    color: #1a2f6a;
    white-space: nowrap;
}
.captcha-box input {
    width: 100px !important;
    text-align: center;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
}
.price-card-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    margin: 0 0 22px;
    padding: 0;
    border-top: 1px solid #f0f3fa;
    padding-top: 18px;
}
.price-card-features li {
    font-size: 13px;
    color: #2a2a3e;
    display: flex;
    align-items: flex-start;
    gap: 9px;
    line-height: 1.4;
}
.price-card-features li::before { content: '✓'; color: #4db6e8; font-weight: 800; flex-shrink: 0; margin-top: 1px; }
.price-card-features li.dim { color: #c0cce0; }
.price-card-features li.dim::before { content: '–'; color: #dde3f0; }
.price-card-footer { margin-top: auto; }
.pricing-note { font-size: 12px; color: #8899bb; text-align: center; margin-top: 32px; font-style: italic; }

/* ── KONTAKTFORMULAR ─────────────────────────── */
.contact-hero {
    background: linear-gradient(140deg, #0f1d47 0%, #1a2f6a 55%, #1e3a8a 100%);
    padding: 56px 20px 72px;
    text-align: center;
    color: #fff;
}
.contact-hero h1 { font-size: 2rem; font-weight: 800; margin-bottom: 10px; }
.contact-hero p  { font-size: 1rem; color: rgba(255,255,255,.75); max-width: 480px; margin: 0 auto; }
.contact-body {
    max-width: 1000px;
    margin: -36px auto 0;
    padding: 0 20px 60px;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
    align-items: start;
}
@media (max-width: 820px) { .contact-body { grid-template-columns: 1fr; } }
.contact-form-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 32px;
    box-shadow: 0 8px 40px rgba(26,47,106,.13);
}
.contact-info-card {
    background: #1a2f6a;
    border-radius: 16px;
    padding: 32px 26px;
    display: flex;
    flex-direction: column;
    gap: 26px;
    box-shadow: 0 8px 40px rgba(26,47,106,.2);
}
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}
.contact-info-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.45); font-weight: 700; margin-bottom: 4px; }
.contact-info-value { font-size: 14px; color: #fff; font-weight: 600; }
.contact-info-value a { color: #4db6e8; }
.contact-info-divider { border: none; border-top: 1px solid rgba(255,255,255,.1); margin: 4px 0; }
.contact-form-card label { display: block; font-size: 11px; font-weight: 700; color: #8899bb; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 7px; }
.contact-form-card input,
.contact-form-card textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e8edf8;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    background: #f7f9fc;
    color: #1a1a2e;
    box-sizing: border-box;
    transition: border-color .15s, background .15s, box-shadow .15s;
}
.contact-form-card input:focus,
.contact-form-card textarea:focus { outline: none; border-color: #4db6e8; background: #fff; box-shadow: 0 0 0 3px rgba(77,182,232,.1); }
.contact-form-card textarea { min-height: 150px; resize: vertical; }
.contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.contact-form-field { margin-bottom: 16px; }
@media (max-width: 560px) { .contact-form-row { grid-template-columns: 1fr; } }
