@charset "UTF-8";

:root{
    --bg:#04050b;
    --bg-2:#0a0d18;
    --panel:#0d1224;
    --panel-2:#11182d;
    --panel-3:rgba(255,255,255,.03);
    --border:rgba(120,132,255,.18);
    --border-strong:rgba(154,163,255,.34);
    --text:#f5f7ff;
    --muted:#9fa9d1;
    --primary:#5d6bff;
    --primary-2:#8972ff;
    --accent:#ffb100;
    --accent-2:#ffd45c;
    --shadow:0 0 0 1px rgba(115,128,255,.10), 0 20px 50px rgba(0,0,0,.45);
    --max:1180px;
}

*,
*::before,
*::after{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    font-family:Inter,system-ui,sans-serif;
    color:var(--text);
    background:linear-gradient(180deg,#030409 0%,#070a13 45%,#0b1020 100%);
    line-height:1.6;
    letter-spacing:.01em;
}

a{
    color:inherit;
    text-decoration:none;
}

img{
    display:block;
    max-width:100%;
}

button,
input,
textarea,
select{
    font:inherit;
    color:inherit;
}

.container{
    width:min(var(--max), calc(100% - 40px));
    margin:0 auto;
}

/* Navigation */

.nav{
    position:sticky;
    top:0;
    z-index:50;
    background:rgba(4,6,14,.88);
    backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.nav-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    padding:18px 0;
}

.brand{
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.brand-badge{
    width:46px;
    height:46px;
    display:grid;
    place-items:center;
    background:linear-gradient(135deg,var(--primary),var(--primary-2));
    box-shadow:0 0 0 1px rgba(255,255,255,.08), 0 0 24px rgba(89,104,255,.22);
    font-weight:900;
    position:relative;
}

.brand-badge::after{
    content:"";
    position:absolute;
    inset:6px;
    border:1px solid rgba(255,255,255,.14);
    pointer-events:none;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:22px;
    color:var(--muted);
    font-size:.95rem;
    text-transform:uppercase;
    letter-spacing:.06em;
}

/* Buttons */

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-height:52px;
    padding:14px 24px;
    border:1px solid transparent;
    background:none;
    cursor:pointer;
    transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease, opacity .18s ease;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.06em;
}

.btn:hover{
    transform:translateY(-2px);
}

.btn:active{
    transform:translateY(0);
}

.btn-primary{
    color:#fff;
    background:linear-gradient(135deg,var(--primary),var(--primary-2));
    border-color:rgba(255,255,255,.08);
    box-shadow:0 16px 34px rgba(89,104,255,.24);
}

.btn-primary:hover{
    box-shadow:0 20px 42px rgba(89,104,255,.30);
}

.btn-secondary{
    color:#1f1400;
    background:linear-gradient(135deg,var(--accent),var(--accent-2));
    border-color:rgba(255,255,255,.08);
    box-shadow:0 16px 34px rgba(247,166,0,.20);
}

.btn-secondary:hover{
    box-shadow:0 20px 42px rgba(247,166,0,.26);
}

.btn-ghost{
    color:var(--text);
    background:rgba(255,255,255,.03);
    border-color:rgba(255,255,255,.12);
}

.btn-ghost:hover{
    background:rgba(255,255,255,.06);
    border-color:rgba(255,255,255,.18);
}

/* Hero */

.hero{
    padding:96px 0 72px;
}

.hero-grid{
    display:grid;
    grid-template-columns:1.08fr .92fr;
    gap:48px;
    align-items:center;
}

.eyebrow{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 14px;
    background:rgba(89,104,255,.09);
    border:1px solid rgba(127,139,255,.24);
    color:#d9ddff;
    font-size:.84rem;
    font-weight:800;
    margin-bottom:22px;
    text-transform:uppercase;
    letter-spacing:.08em;
    box-shadow:inset 0 0 0 1px rgba(255,255,255,.03);
}

.eyebrow::before{
    content:"";
    width:10px;
    height:10px;
    background:linear-gradient(135deg,var(--accent),var(--accent-2));
    box-shadow:0 0 14px rgba(247,166,0,.45);
}

h1{
    margin:0 0 18px;
    font-size:clamp(3rem,5vw,5.2rem);
    line-height:.94;
    letter-spacing:-.06em;
    text-transform:uppercase;
}

.hero .lead{
    font-size:1.12rem;
    color:#dde4ff;
}

.hero p{
    margin:0 0 16px;
    color:var(--muted);
    font-size:1.03rem;
    max-width:720px;
}

.highlight{
    color:var(--accent-2);
    text-shadow:0 0 14px rgba(247,166,0,.12);
}

.cta-row{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin:30px 0 24px;
}

.trust-row{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
    color:#dce2ff;
    font-size:.92rem;
    text-transform:uppercase;
    letter-spacing:.05em;
}

.trust-row span::before{
    content:"■";
    margin-right:8px;
    color:var(--accent);
    font-size:.72rem;
}

/* Panels and cards */

.panel,
.card,
.step,
.faq-item,
.cta-box,
.quote,
.problem-box,
.demo-card{
    position:relative;
    background:linear-gradient(180deg,rgba(15,20,38,.96),rgba(8,11,22,.98));
    border:1px solid var(--border);
    box-shadow:var(--shadow);
}

.panel::before,
.card::before,
.step::before,
.faq-item::before,
.cta-box::before,
.quote::before,
.problem-box::before,
.demo-card::before{
    content:"";
    position:absolute;
    inset:0;
    border:1px solid rgba(255,255,255,.03);
    pointer-events:none;
}

.hero-card{
    padding:32px;
    position:relative;
    overflow:hidden;
}

.hero-card::after{
    content:"";
    position:absolute;
    inset:auto 0 0 0;
    height:2px;
    background:linear-gradient(90deg,transparent,var(--accent),transparent);
    opacity:.7;
}

.price-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-bottom:18px;
    padding:10px 14px;
    background:rgba(255,177,0,.08);
    border:1px solid rgba(247,166,0,.26);
    color:#ffd981;
    font-weight:800;
    font-size:.9rem;
    text-transform:uppercase;
    letter-spacing:.06em;
}

.metric-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
    margin-bottom:18px;
}

.metric{
    position:relative;
    padding:18px;
    background:rgba(255,255,255,.02);
    border:1px solid rgba(255,255,255,.06);
}

.metric::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:2px;
    background:linear-gradient(90deg,var(--primary),transparent);
    opacity:.8;
}

.metric strong{
    display:block;
    margin-bottom:4px;
    font-size:1.55rem;
    line-height:1.1;
    letter-spacing:-.03em;
}

.metric span{
    color:var(--muted);
    font-size:.88rem;
    text-transform:uppercase;
    letter-spacing:.05em;
}

.checklist{
    margin:0;
    padding:0;
    list-style:none;
}

.checklist li{
    padding:13px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
    color:#e4e9ff;
}

.checklist li:last-child{
    border-bottom:0;
}

.checklist li::before{
    content:"■";
    color:var(--accent);
    font-size:.7rem;
    font-weight:800;
    margin-right:10px;
    vertical-align:middle;
}

section{
    padding:44px 0;
}

.section-head{
    max-width:850px;
    margin:0 auto 36px;
    text-align:center;
}

.section-head h2{
    margin:0 0 12px;
    font-size:clamp(2rem,3vw,3.1rem);
    letter-spacing:-.05em;
    text-transform:uppercase;
}

.section-head p{
    margin:0;
    color:var(--muted);
    font-size:1.02rem;
}

.grid-3{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.card{
    padding:30px;
}

.card h3{
    margin:0 0 10px;
    font-size:1.12rem;
    text-transform:uppercase;
    letter-spacing:.04em;
}

.card p{
    margin:0;
    color:var(--muted);
}

.icon{
    width:54px;
    height:54px;
    display:grid;
    place-items:center;
    margin-bottom:16px;
    font-weight:900;
    background:linear-gradient(135deg,rgba(89,104,255,.18),rgba(89,104,255,.05));
    border:1px solid rgba(127,139,255,.28);
    color:#eef1ff;
    box-shadow:inset 0 0 0 1px rgba(255,255,255,.04);
}

.problem-box{
    padding:34px;
}

.problem-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
    margin-top:22px;
}

.problem-item{
    position:relative;
    padding:22px;
    background:rgba(255,255,255,.02);
    border:1px solid rgba(255,255,255,.06);
}

.problem-item::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:3px;
    height:100%;
    background:linear-gradient(180deg,var(--accent),transparent);
}

.problem-item strong{
    display:block;
    margin-bottom:8px;
    text-transform:uppercase;
    letter-spacing:.04em;
}

.problem-item p{
    margin:0;
    color:var(--muted);
}

.steps{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.step{
    padding:30px;
}

.step-number{
    width:44px;
    height:44px;
    display:grid;
    place-items:center;
    margin-bottom:18px;
    font-weight:900;
    background:linear-gradient(135deg,var(--accent),var(--accent-2));
    color:#241400;
    box-shadow:0 10px 24px rgba(247,166,0,.20);
}

.step h3{
    margin:0 0 8px;
    text-transform:uppercase;
    letter-spacing:.04em;
}

.step p{
    margin:0;
    color:var(--muted);
}

.split{
    display:grid;
    grid-template-columns:.95fr 1.05fr;
    gap:22px;
    align-items:stretch;
}

.quote,
.demo-card{
    padding:32px;
}

.quote p{
    margin:0 0 14px;
    font-size:1.04rem;
}

.quote span{
    color:var(--muted);
    font-size:.88rem;
    text-transform:uppercase;
    letter-spacing:.05em;
}

.demo-list{
    display:grid;
    gap:10px;
    margin:18px 0 0;
    padding:0;
    list-style:none;
}

.demo-list li{
    position:relative;
    padding-left:22px;
    color:#e4e9ff;
}

.demo-list li::before{
    content:"";
    position:absolute;
    left:0;
    top:.62rem;
    width:9px;
    height:9px;
    background:linear-gradient(135deg,var(--accent),var(--accent-2));
    box-shadow:0 0 10px rgba(247,166,0,.45);
}

.faq{
    display:grid;
    gap:16px;
    max-width:920px;
    margin:0 auto;
}

.faq-item{
    padding:22px 24px;
}

.faq-item h3{
    margin:0 0 8px;
    font-size:1rem;
    text-transform:uppercase;
    letter-spacing:.04em;
}

.faq-item p{
    margin:0;
    color:var(--muted);
}

.cta-box{
    padding:46px;
    text-align:center;
    background:linear-gradient(180deg,rgba(12,16,31,.98),rgba(7,10,19,.98));
}

.cta-box::after{
    content:"";
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:2px;
    background:linear-gradient(90deg,transparent,var(--primary),transparent);
}

.cta-box h2{
    margin:0 0 12px;
    font-size:clamp(2rem,3vw,3.1rem);
    text-transform:uppercase;
    letter-spacing:-.05em;
}

.cta-box p{
    max-width:760px;
    margin:0 auto 22px;
    color:var(--muted);
}

/* Footer */

.footer{
    padding:34px 0 48px;
    color:var(--muted);
    font-size:.92rem;
    text-transform:uppercase;
    letter-spacing:.05em;
}

.footer-inner{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:18px;
    padding-top:24px;
    border-top:1px solid rgba(255,255,255,.08);
}

/* Modal */

.modal{
    position:fixed;
    inset:0;
    display:none;
    align-items:center;
    justify-content:center;
    padding:24px;
    z-index:100;
    background:rgba(3,5,12,.82);
    backdrop-filter:blur(8px);
}

.modal.is-open{
    display:flex;
}

.modal-dialog{
    position:relative;
    overflow:hidden;
    width:min(720px,100%);
    background:linear-gradient(180deg,rgba(11,15,30,.99),rgba(7,10,19,.99));
    border:1px solid var(--border-strong);
    box-shadow:0 30px 90px rgba(0,0,0,.55);
}

.modal-dialog::before{
    content:"";
    position:absolute;
    inset:0;
    border:1px solid rgba(255,255,255,.04);
    pointer-events:none;
}

.modal-topbar{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:20px;
    padding:28px 28px 18px;
    border-bottom:1px solid rgba(255,255,255,.07);
    background:linear-gradient(180deg,rgba(89,104,255,.08),transparent);
}

.modal-topbar h3{
    margin:0 0 8px;
    font-size:1.7rem;
    letter-spacing:-.04em;
    text-transform:uppercase;
}

.modal-topbar p{
    margin:0;
    max-width:520px;
    color:var(--muted);
}

.modal-close{
    width:44px;
    height:44px;
    display:grid;
    place-items:center;
    border:1px solid rgba(255,255,255,.12);
    background:rgba(255,255,255,.04);
    color:var(--text);
    cursor:pointer;
    font-size:1.1rem;
    transition:transform .18s ease, background .18s ease, border-color .18s ease;
}

.modal-close:hover{
    transform:scale(1.03);
    background:rgba(255,255,255,.07);
    border-color:rgba(255,255,255,.18);
}

.modal-body{
    padding:28px;
}

/* Forms */

.form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.field{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.field.full{
    grid-column:1 / -1;
}

.label{
    font-size:.85rem;
    font-weight:800;
    color:#e9eeff;
    text-transform:uppercase;
    letter-spacing:.06em;
}

.input,
.textarea,
.select{
    width:100%;
    min-height:56px;
    padding:16px 18px;
    border:1px solid rgba(137,149,255,.16);
    background:#0d1224;
    color:var(--text);
    outline:none;
    transition:border-color .18s ease, box-shadow .18s ease, transform .18s ease, background .18s ease;
    box-shadow:inset 0 1px 0 rgba(255,255,255,.02), 0 0 0 rgba(89,104,255,0);
}

.input::placeholder,
.textarea::placeholder{
    color:#8390bf;
}

.input:hover,
.textarea:hover{
    border-color:rgba(154,163,255,.28);
    background:#11182d;
}

.input:focus,
.textarea:focus{
    border-color:rgba(124,110,255,.72);
    box-shadow:0 0 0 3px rgba(89,104,255,.16);
    background:#11182d;
    transform:translateY(-1px);
}

.textarea{
    min-height:138px;
    resize:vertical;
}

.select{
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;
    padding-right:48px;
    background-image:
        linear-gradient(45deg, transparent 50%, #c9d2ff 50%),
        linear-gradient(135deg, #c9d2ff 50%, transparent 50%);
    background-position:
        calc(100% - 22px) calc(50% - 3px),
        calc(100% - 16px) calc(50% - 3px);
    background-size:6px 6px, 6px 6px;
    background-repeat:no-repeat;
}

/* Wichtig für Lesbarkeit im geöffneten Dropdown */
.select option{
    background:#ffffff;
    color:#111111;
}

.field-note{
    font-size:.82rem;
    color:#8f9dce;
    letter-spacing:.02em;
}

.form-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:16px;
    margin-top:22px;
}

.privacy{
    max-width:420px;
    color:var(--muted);
    font-size:.88rem;
}

.privacy strong{
    color:#eef2ff;
}

/* Responsive */

@media (max-width: 980px){
    .hero-grid,
    .grid-3,
    .steps,
    .split,
    .problem-grid,
    .metric-grid{
        grid-template-columns:1fr;
    }

    .nav-links{
        display:none;
    }
}

@media (max-width: 720px){
    .container{
        width:min(var(--max), calc(100% - 24px));
    }

    .hero{
        padding-top:56px;
    }

    .btn{
        width:100%;
    }

    .cta-row{
        flex-direction:column;
    }

    .modal{
        padding:12px;
    }

    .modal-topbar,
    .modal-body{
        padding:22px;
    }

    .form-grid{
        grid-template-columns:1fr;
    }

    .form-footer{
        flex-direction:column;
        align-items:stretch;
    }

    .modal-close{
        width:40px;
        height:40px;
    }
}