
:root {
    --bg: #071013;
    --bg-soft: #0d1b20;
    --bg-card: #10242b;
    --text: #f3f7f8;
    --muted: #a8b8bd;
    --line: rgba(255,255,255,0.11);

    --accent: #F67315;
    --accent-hover: #d85f0f;
    --accent-soft: rgba(246,115,21,0.08);
    --signal: #32CD32;

    --max: 1180px;
}

#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,0.1);
    z-index: 100;
}

#progress-bar {
    height: 100%;
    width: 0%;
    background: var(--accent);
    transition: width 0.1s ease;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: Inter, Arial, Helvetica, sans-serif;
    background:
    radial-gradient(circle at 80% 0%, rgba(56,213,207,0.12), transparent 35%),
    radial-gradient(circle at 0% 20%, rgba(246,115,21,0.10), transparent 32%),
    var(--bg);
    color: var(--text);
    line-height: 1.55;
    padding-top: 70px; /* Platz für die fixe Nav */
}

a { color: inherit; text-decoration: none; }

.page-shell {
    overflow: hidden;
}

.nav {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(16px);
    background: rgba(7,16,19,0.78);
    border-bottom: 1px solid var(--line);
}

.nav-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    height: 50px;
    max-width: 220px;
    overflow: hidden;
}

.brand-logo {
    display: block;
    height: 32px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    color: var(--muted);
    font-size: 14px;
}

.language-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.language-switch a:hover { color: var(--text); }

.language-switch .active { color: var(--text); }

.nav-links a:hover { color: var(--text); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 18px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
    border: 1px solid transparent;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
    background: var(--accent);
    color: #ffffff;
    box-shadow: 0 12px 40px rgba(246,115,21,0.25);
}

.btn-primary:hover {
    background: var(--accent-hover);
}

.btn-hero {
    color: #ffffff;
}

.btn-secondary {
    border-color: var(--line);
    color: var(--text);
    background: rgba(255,255,255,0.04);
}

section {
    padding: 96px 24px;
    scroll-margin-top: 70px;
}

.container {
    max-width: var(--max);
    margin: 0 auto;
}

.eyebrow {
    color: var(--accent);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

h1, h2, h3, h4 { margin: 0; letter-spacing: -0.045em; line-height: 1.05; }

h1 {
    font-size: clamp(44px, 7vw, 80px);
    max-width: 850px;
}

.accent-line {
    color: var(--accent);
}

h2 {
    font-size: clamp(34px, 4vw, 56px);
    max-width: 880px;
}

h3 {
    font-size: clamp(20px, 2.2vw, 24px);
    margin-bottom: 14px;
}

h4 {
    font-size: clamp(17px, 1.8vw, 20px);
    margin-bottom: 16px;
}

p {
    color: var(--muted);
    font-size: clamp(15px, 1.4vw, 16px);
    margin: 22px auto 0;
}

.section-text {
    color: var(--muted);
    font-size: clamp(17px, 1.7vw, 20px);
    max-width: none;
    margin-top: 16px;
    margin-bottom: 40px;
}





.hero {
    padding-top: 134px;
    padding-bottom: 134px;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
    gap: 58px;
    align-items: center;
}


.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-panel {
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(16,36,43,0.95), rgba(13,27,32,0.88));
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 30px 90px rgba(0,0,0,0.28);
    position: relative;
}

.lead {
    margin: 28px 0 34px;
    max-width: 700px;
    color: var(--muted);
    font-size: clamp(18px, 2vw, 23px);
}

.system-status {
    display: grid;
    gap: 14px;
}

.status-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 19px 0;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: clamp(15px, 1.5vw, 17px);
}

.status-row strong { color: var(--text); }
.status-row:last-child { border-bottom: 0; }

.signal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--signal);
    font-weight: 700;
    white-space: nowrap;
}

.signal::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--signal);
    box-shadow: 0 0 10px rgba(50,205,50,0.7);
}

.alert-red {
    color: #DC2626;
    font-weight: 700;
}

.warning-icon {
    width: 64px;
    height: 64px;
    border: 5px solid var(--accent);
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    color: var(--accent);
    font-size: 40px;
    line-height: 1;
    font-weight: 900;
}

.warning-note {
    margin-top: 0;
    padding: 34px 34px;
    border-radius: 22px;
    background: linear-gradient(90deg, rgba(246,115,21,0.13), rgba(246,115,21,0.05));
    border: 1px solid rgba(246,115,21,0.55);
    color: #fff0e6;
    font-size: clamp(16px, 1.6vw, 18px);
    line-height: 1.35;
    font-weight: 900;
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 20px;
    align-items: center;
    box-shadow: 0 18px 50px rgba(246,115,21,0.12);
}





.thesis {
    padding-top: 134px;
    padding-bottom: 134px;
}

.thesis-box {
    border-radius: 34px;
    padding: 54px;
    background:
    linear-gradient(135deg, rgba(246,115,21,0.18), rgba(56,213,207,0.08)),
    rgba(16,36,43,0.78);
    border: 1px solid rgba(255,255,255,0.14);
    text-align: center;
}

.thesis-box h2 {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}

.thesis-box p {
    color: var(--muted);
    font-size: clamp(17px, 1.7vw, 20px);
    max-width: 800px;
    margin: 22px auto 0;
}

.problem-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 14px;
    gap: 14px;
}

.problem-item, .offer-card {
    border: 1px solid var(--line);
    background: rgba(16,36,43,0.72);
    border-radius: 22px;
    padding: 24px;
}

.problem-item {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 16px;
    align-items: start;
}

.icon-dot {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(246,115,21,0.13);
    color: var(--accent);
    font-weight: 900;
}

.problem-item p { margin: 0; font-size: 16px; color: var(--muted); }
.problem-item strong { color: var(--text); }





.case {
    padding-top: 134px;
    padding-bottom: 134px;
}

.case-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.flow-step {
    min-height: 170px;
    padding: 22px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.035);
    position: relative;
}

.flow-step:not(:last-child)::after {
    content: "→";
    position: absolute;
    right: -17px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    font-size: clamp(20px, 2.2vw, 24px);
    z-index: 2;
}

.flow-step strong {
    display: block;
    margin-bottom: 10px;
    font-size: clamp(15px, 1.5vw, 17px);
}

.flow-step span { color: var(--muted); font-size: 16px; }

.cards-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.result-text {
    color: #F67315;
    font-size: clamp(17px, 1.7vw, 20px);
    max-width: 100%;
    margin: 30px;
}





.offer {
    background:
    linear-gradient(180deg, rgba(13,27,32,0.1), rgba(13,27,32,0.78));
    margin-top: 0px;
    margin-bottom: 0px;
}

.offer-grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
}

.offer-card {
    padding: 34px;
    background: linear-gradient(180deg, rgba(16,36,43,0.92), rgba(7,16,19,0.72));
    box-shadow: 0 30px 90px rgba(0,0,0,0.24);
}

.offer-cta {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.offer-cta-comment {
    color: var(--muted);
    font-size: 14px;
    font-style: italic;
}

.check-list {
    display: grid;
    gap: 16px;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 13px;
    color: var(--muted);
}

.check-list li::before {
    content: "✓";
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--accent-soft);
    color: var(--accent);
    font-weight: 900;
}

.result-note {
    padding: 26px 28px;
    border-radius: 20px;
    background: linear-gradient(90deg, rgba(246,115,21,0.13), rgba(246,115,21,0.05));
    border: 1px solid rgba(246,115,21,0.55);
    color: #fff0e6;
    font-size: clamp(19px, 2vw, 22px);
    line-height: 1.4;
    font-weight: 700;
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 30px;
    align-items: center;
    box-shadow: 0 14px 36px rgba(246,115,21,0.12);
}

.result-label {
    color: #F67315;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 900;
}

.offer-final {
text-align: center;
margin-top: 64px;
width: 100%;
}





.about {
    border-top: 1px solid var(--line);
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 36px;
}

.about-box {
    padding-top: 24px;
    color: var(--muted);
}

.about-box strong { color: var(--text); }





footer {
    background: var(--bg);
    color: var(--text);
    padding: 20px 0px;
    text-align: center;
    border-top: 1px solid var(--line);
}

footer span, footer a {
    color: var(--muted);
    font-size: clamp(14px, 1.4vw, 16px);
    text-decoration: none;
}

footer a:hover {
    color: var(--text);
}

#whatsapp-btn {
    position: fixed;
    bottom: 45px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

#whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

#whatsapp-btn img {
    width: 60px;
    height: 60px;
    display: block;
}

@media (max-width: 780px) {
    body {
    padding-top: 170px;
    }

    .nav-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 20px;
    }

    .brand {
    height: auto;
    }

    .brand-logo {
    height: 28px;
    }

    .nav-links {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px 14px;
    font-size: 13px;
    text-align: center;
    }

    .nav-links .btn {
    flex: 0 0 100%;
    width: 100%;
    justify-content: center;
    padding: 11px 16px;
    }

    .language-switch {
    flex: 0 0 100%;
    width: 100%;
    justify-content: center;
    margin-top: 2px;
    }

    section {
    padding: 72px 20px;
    scroll-margin-top: 170px;
    }

    .hero {
    padding-top: 72px;
    padding-bottom: 88px;
    }

    .hero-grid,
    .offer-grid,
    .about-box {
    grid-template-columns: 1fr;
    }

    .hero-panel {
    padding: 22px;
    }

    .warning-note {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px;
    }

    .warning-icon {
    margin: 0 auto;
    }

    .problem-grid-2x2 {
    grid-template-columns: 1fr;
    }

    .problem-item {
    grid-template-columns: 1fr;
    }

    .case-flow,
    .cards-3 {
    grid-template-columns: 1fr;
    }

    .flow-step:not(:last-child)::after {
    display: none;
    }

    .result-text {
    margin: 24px 0 0;
    font-size: clamp(16px, 1.6vw, 18px);
    }

    .offer-card {
    padding: 22px;
    }

    .result-note {
    grid-template-columns: 1fr;
    font-size: clamp(16px, 1.6vw, 18px);
    padding: 22px;
    text-align: center;
    }

    .result-icon {
    margin: 0 auto;
    }

    .offer-cta {
    flex-direction: column;
    align-items: stretch;
    }

    .offer-cta .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    }

    .offer-cta-comment {
    text-align: center;
    }

    .check-list li {
    grid-template-columns: 24px 1fr;
    }
}
