:root{
    --primary:#1473f3;
    --primary-dark:#0b58cf;
    --primary-soft:#eaf3ff;
    --secondary:#06184a;
    --text:#101828;
    --muted:#667085;
    --bg:#f4f7fb;
    --white:#ffffff;
    --border:#dbe4f0;
    --success:#12b76a;
    --warning:#f59e0b;
    --danger:#ef4444;
    --shadow:0 16px 50px rgba(8,27,77,.10);
    --shadow-strong:0 34px 90px rgba(8,27,77,.16);
    --radius:30px;
}

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    padding:0;
    font-family:Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color:var(--text);
    background:
        radial-gradient(circle at top right, rgba(20,115,243,.10), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
    line-height:1.6;
}

img{
    max-width:100%;
    display:block;
}

a{
    color:inherit;
    text-decoration:none;
}

.container{
    width:min(1240px, calc(100% - 40px));
    margin:0 auto;
}

/* Header */

.site-header{
    position:sticky;
    top:0;
    z-index:1000;
    background:rgba(255,255,255,.78);
    backdrop-filter:blur(26px);
    border-bottom:1px solid rgba(219,228,240,.72);
}

.header-inner{
    min-height:106px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:28px;
}

.logo{
    max-height:112px;
    width:auto;
    filter:drop-shadow(0 12px 22px rgba(8,27,77,.10));
}

.main-nav{
    display:flex;
    align-items:center;
    gap:10px;
    padding:8px;
    border-radius:999px;
    background:rgba(255,255,255,.70);
    border:1px solid rgba(219,228,240,.72);
    box-shadow:0 10px 28px rgba(8,27,77,.06);
}

.main-nav a{
    padding:13px 17px;
    border-radius:999px;
    font-weight:900;
    color:#26364f;
    transition:.22s ease;
}

.main-nav a:hover{
    color:var(--primary);
    background:rgba(20,115,243,.08);
}

.nav-login{
    background:linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
    color:#fff !important;
    box-shadow:0 12px 28px rgba(20,115,243,.22);
}

.nav-toggle{
    display:none;
    align-items:center;
    justify-content:center;
    width:54px;
    height:54px;
    border:0;
    border-radius:18px;
    background:rgba(20,115,243,.08);
    color:var(--secondary);
    font-size:2rem;
    font-weight:900;
    cursor:pointer;
    line-height:1;
    transition:.2s ease;
}

.nav-toggle:hover{
    background:rgba(20,115,243,.14);
}

/* Global */

.eyebrow{
    display:inline-flex;
    align-items:center;
    gap:9px;
    margin-bottom:18px;
    color:var(--primary);
    font-size:.78rem;
    font-weight:950;
    letter-spacing:.14em;
    text-transform:uppercase;
}

.eyebrow::before{
    content:"";
    width:9px;
    height:9px;
    border-radius:50%;
    background:var(--primary);
    box-shadow:0 0 0 6px rgba(20,115,243,.10);
}

h1,
h2,
h3,
p{
    margin-top:0;
}

h1{
    font-size:clamp(3.5rem, 6.8vw, 7rem);
    line-height:.88;
    letter-spacing:-.08em;
    margin-bottom:26px;
    color:var(--secondary);
}

h2{
    font-size:clamp(2.2rem, 4vw, 4.3rem);
    line-height:.96;
    letter-spacing:-.06em;
    margin-bottom:18px;
    color:var(--secondary);
}

h3{
    font-size:1.55rem;
    line-height:1.1;
    margin-bottom:16px;
    color:var(--secondary);
}

.hero-text,
.section-head p,
.benefit-intro p{
    color:var(--muted);
}

/* Buttons */

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:62px;
    padding:0 34px;
    border-radius:999px;
    border:none;
    cursor:pointer;
    font-size:1rem;
    font-weight:950;
    transition:.22s ease;
    white-space:nowrap;
}

.btn-primary{
    background:linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color:white;
    box-shadow:0 22px 54px rgba(20,115,243,.28);
}

.btn-primary:hover{
    transform:translateY(-3px);
    box-shadow:0 28px 70px rgba(20,115,243,.34);
}

.btn-secondary{
    background:rgba(255,255,255,.88);
    color:var(--secondary);
    border:1px solid var(--border);
    box-shadow:0 14px 35px rgba(8,27,77,.07);
}

.btn-secondary:hover{
    transform:translateY(-3px);
    border-color:rgba(20,115,243,.35);
}

.btn-full{
    width:100%;
}

/* Hero */

.hero{
    position:relative;
    overflow:hidden;
    min-height:calc(100vh - 106px);
    padding:120px 0 100px;
    background:
        radial-gradient(circle at 82% 20%, rgba(20,115,243,.22), transparent 26%),
        radial-gradient(circle at 16% 86%, rgba(6,24,74,.13), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #f7fbff 42%, #eaf3ff 100%);
}

.hero-premium{
    background:
        radial-gradient(circle at 82% 18%, rgba(20,115,243,.22), transparent 26%),
        radial-gradient(circle at 16% 86%, rgba(6,24,74,.13), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #f7fbff 42%, #eaf3ff 100%);
}

.hero::before{
    content:"";
    position:absolute;
    inset:auto -180px -240px auto;
    width:680px;
    height:680px;
    border-radius:50%;
    background:rgba(20,115,243,.12);
    filter:blur(24px);
}

.hero::after{
    content:"";
    position:absolute;
    inset:80px auto auto -180px;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(8,27,77,.06);
    filter:blur(20px);
}

.hero-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:72px;
    align-items:center;
}

.hero-text{
    max-width:760px;
    margin-bottom:36px;
    font-size:1.24rem;
    line-height:1.8;
}

.hero-actions{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    margin-bottom:30px;
}

.hero-badges{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

.hero-badges span{
    display:inline-flex;
    align-items:center;
    min-height:46px;
    padding:0 18px;
    border-radius:999px;
    background:rgba(255,255,255,.88);
    border:1px solid rgba(219,228,240,.9);
    color:#344054;
    font-weight:850;
    box-shadow:0 12px 32px rgba(8,27,77,.07);
}

/* Hero Card */

.hero-card{
    position:relative;
    isolation:isolate;
    background:rgba(255,255,255,.88);
    border:1px solid rgba(219,228,240,.95);
    border-radius:38px;
    padding:46px;
    box-shadow:var(--shadow-strong);
    backdrop-filter:blur(24px);
}

.hero-card::before{
    content:"";
    position:absolute;
    inset:-1px;
    z-index:-1;
    border-radius:38px;
    background:
        radial-gradient(circle at top right, rgba(20,115,243,.24), transparent 30%),
        linear-gradient(135deg, rgba(255,255,255,.7), transparent);
    opacity:.9;
}

.hero-card-top{
    margin-bottom:32px;
}

.hero-card-label{
    display:inline-flex;
    margin-bottom:16px;
    padding:10px 16px;
    border-radius:999px;
    background:rgba(20,115,243,.10);
    color:var(--primary);
    font-weight:950;
}

.hero-card strong{
    display:block;
    font-size:4.5rem;
    line-height:1;
    letter-spacing:-.08em;
    color:var(--secondary);
}

.hero-card p,
.hero-card-premium p{
    margin-top:16px;
    color:var(--muted);
    font-weight:700;
}

.storage-bar{
    height:18px;
    overflow:hidden;
    border-radius:999px;
    background:#e3ecf8;
}

.storage-bar-fill{
    width:72%;
    height:100%;
    border-radius:999px;
    background:linear-gradient(90deg, var(--primary) 0%, #54a5ff 100%);
    box-shadow:0 10px 24px rgba(20,115,243,.28);
}

.storage-info{
    display:flex;
    justify-content:space-between;
    margin-top:13px;
    margin-bottom:30px;
    color:#667085;
    font-size:.92rem;
    font-weight:850;
}

.hero-list{
    list-style:none;
    padding:0;
    margin:0;
}

.hero-list li{
    position:relative;
    padding-left:32px;
    margin-bottom:16px;
    color:#344054;
    font-weight:700;
}

.hero-list li::before{
    content:"";
    position:absolute;
    left:0;
    top:9px;
    width:11px;
    height:11px;
    border-radius:50%;
    background:var(--primary);
    box-shadow:0 0 0 6px rgba(20,115,243,.10);
}

/* Sections */

.section{
    padding:120px 0;
}

.section-light{
    background:
        radial-gradient(circle at 15% 20%, rgba(20,115,243,.08), transparent 28%),
        #ffffff;
}

.section-head{
    max-width:860px;
    margin-bottom:54px;
}

.section-head p{
    font-size:1.12rem;
    line-height:1.8;
}

/* Trust Section */

.trust-section{
    padding:34px 0;
    margin-top:-42px;
    position:relative;
    z-index:5;
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:18px;
}

.trust-item{
    padding:24px;
    border-radius:26px;
    background:rgba(255,255,255,.92);
    border:1px solid rgba(219,228,240,.9);
    box-shadow:var(--shadow);
    backdrop-filter:blur(18px);
}

.trust-item strong{
    display:block;
    margin-bottom:5px;
    color:var(--secondary);
    font-size:1.15rem;
    font-weight:950;
}

.trust-item span{
    color:var(--muted);
    font-weight:700;
}

/* Benefits */

.benefits-grid{
    display:grid;
    grid-template-columns:1.2fr repeat(3, 1fr);
    gap:24px;
    align-items:stretch;
}

.benefit-intro{
    padding:38px;
    border-radius:34px;
    background:#ffffff;
    border:1px solid var(--border);
    box-shadow:var(--shadow);
}

.benefit-box{
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    min-height:240px;
    padding:32px;
    border-radius:34px;
    background:
        radial-gradient(circle at top right, rgba(20,115,243,.16), transparent 34%),
        #ffffff;
    border:1px solid var(--border);
    box-shadow:var(--shadow);
    color:var(--secondary);
    font-size:1.3rem;
    font-weight:950;
    line-height:1.25;
}

.benefit-box strong{
    display:inline-flex;
    width:54px;
    height:54px;
    align-items:center;
    justify-content:center;
    margin-bottom:30px;
    border-radius:18px;
    background:linear-gradient(135deg, var(--primary), var(--primary-dark));
    color:#ffffff;
    font-size:.95rem;
    box-shadow:0 16px 34px rgba(20,115,243,.24);
}

/* Pricing */

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:30px;
}

.price-card{
    position:relative;
    overflow:hidden;
    background:rgba(255,255,255,.94);
    border:1px solid var(--border);
    border-radius:36px;
    padding:42px;
    box-shadow:var(--shadow);
    transition:.25s ease;
}

.price-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:radial-gradient(circle at top right, rgba(20,115,243,.10), transparent 35%);
    opacity:0;
    transition:.25s ease;
}

.price-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow-strong);
}

.price-card:hover::before{
    opacity:1;
}

.price-card > *{
    position:relative;
    z-index:2;
}

.price-card.is-highlight{
    border-color:rgba(20,115,243,.52);
    box-shadow:0 34px 88px rgba(20,115,243,.20);
    transform:translateY(-10px);
}

.price-badge{
    position:absolute;
    top:22px;
    right:22px;
    padding:8px 14px;
    border-radius:999px;
    background:linear-gradient(135deg, var(--primary), var(--primary-dark));
    color:white;
    font-size:.78rem;
    font-weight:950;
    box-shadow:0 14px 32px rgba(20,115,243,.25);
}

.price{
    margin-bottom:14px;
    font-size:3.3rem;
    font-weight:950;
    letter-spacing:-.07em;
    color:var(--secondary);
}

.price span{
    display:block;
    margin-top:4px;
    font-size:.95rem;
    font-weight:800;
    color:var(--muted);
    letter-spacing:0;
}

.price-quota{
    display:inline-flex;
    align-items:center;
    min-height:46px;
    padding:0 18px;
    margin-bottom:28px;
    border-radius:999px;
    background:var(--primary-soft);
    color:var(--primary);
    font-weight:950;
}

.price-features{
    list-style:none;
    padding:0;
    margin:0 0 32px;
}

.price-features li{
    position:relative;
    padding-left:30px;
    margin-bottom:15px;
    color:#475467;
    font-weight:700;
}

.price-features li::before{
    content:"";
    position:absolute;
    left:0;
    top:9px;
    width:11px;
    height:11px;
    border-radius:50%;
    background:var(--success);
    box-shadow:0 0 0 6px rgba(18,183,106,.10);
}

/* Register / Buchung */

.register-section{
    background:
        radial-gradient(circle at 85% 15%, rgba(20,115,243,.10), transparent 28%),
        linear-gradient(180deg, #f4f7fb 0%, #ffffff 100%);
}

.register-grid{
    display:grid;
    grid-template-columns:1fr .92fr;
    gap:36px;
    align-items:start;
}

.register-info,
.form-card{
    position:relative;
    overflow:hidden;
    background:rgba(255,255,255,.94);
    border:1px solid var(--border);
    border-radius:34px;
    padding:44px;
    box-shadow:var(--shadow);
}

.register-info::before,
.form-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:radial-gradient(circle at top right, rgba(20,115,243,.08), transparent 36%);
    pointer-events:none;
}

.register-info > *,
.form-card > *{
    position:relative;
    z-index:2;
}

.selected-plan{
    margin:30px 0;
    padding:28px;
    border-radius:28px;
    background:
        radial-gradient(circle at top right, rgba(20,115,243,.16), transparent 34%),
        linear-gradient(135deg, #eff6ff 0%, #f8fbff 100%);
    border:1px solid var(--border);
    box-shadow:0 14px 34px rgba(8,27,77,.06);
}

.selected-plan strong{
    display:block;
    margin-bottom:8px;
    font-size:2.8rem;
    line-height:1;
    letter-spacing:-.06em;
    color:var(--secondary);
}

.selected-plan span{
    color:var(--primary);
    font-weight:950;
}

.register-feature-box{
    padding:24px;
    border-radius:26px;
    background:#ffffff;
    border:1px solid var(--border);
    box-shadow:0 10px 28px rgba(8,27,77,.05);
}

.register-feature-box > strong{
    display:block;
    margin-bottom:18px;
    color:var(--secondary);
    font-size:1.05rem;
    font-weight:950;
}

.booking-form{
    display:grid;
    gap:22px;
}

.booking-form label{
    display:grid;
    gap:10px;
    color:var(--secondary);
    font-weight:900;
}

.booking-form input,
.form-select{
    display:block;
    width:100%;
    min-height:60px;
    padding:0 18px;
    border-radius:20px;
    border:1px solid var(--border);
    background:#ffffff;
    color:var(--text);
    font:inherit;
    box-shadow:0 8px 22px rgba(8,27,77,.04);
    transition:border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.booking-form input:focus,
.form-select:focus{
    outline:none;
    border-color:rgba(20,115,243,.58);
    background:white;
    box-shadow:0 0 0 5px rgba(20,115,243,.11);
}

.form-select{
    appearance:none;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--secondary) 50%),
        linear-gradient(135deg, var(--secondary) 50%, transparent 50%);
    background-position:
        calc(100% - 22px) 27px,
        calc(100% - 16px) 27px;
    background-size:6px 6px, 6px 6px;
    background-repeat:no-repeat;
    cursor:pointer;
}

.payment-hint{
    padding:18px 20px;
    border-radius:20px;
    background:#eff6ff;
    border:1px solid var(--border);
    color:var(--secondary);
    font-weight:800;
}

.checkbox-row{
    display:flex !important;
    align-items:flex-start;
    gap:12px !important;
    padding:18px 20px;
    border:1px solid var(--border);
    border-radius:20px;
    background:#ffffff;
    box-shadow:0 8px 22px rgba(8,27,77,.04);
    font-weight:750 !important;
    color:#475467 !important;
}

.checkbox-row input{
    width:18px !important;
    min-height:18px !important;
    height:18px !important;
    padding:0 !important;
    margin-top:4px;
    flex:0 0 18px;
    accent-color:var(--primary);
    box-shadow:none !important;
}

.checkbox-row span{
    display:block;
    line-height:1.5;
}

.checkbox-row a{
    color:var(--primary);
    font-weight:950;
}

.alert{
    padding:24px;
    border-radius:24px;
    line-height:1.7;
    margin-bottom:22px;
}

.alert strong{
    font-size:1.1rem;
}

.alert-error{
    background:#fff1f2;
    border:1px solid #fecdd3;
    color:#be123c;
}

.alert-success{
    background:#f0fdf4;
    border:1px solid #bbf7d0;
    color:#166534;
}

.success-actions{
    display:flex;
    gap:12px;
}

/* Password UX */

.password-field-wrap{
    position:relative;
    display:block;
}

.password-field-wrap input{
    padding-right:112px;
}

.password-toggle{
    position:absolute;
    right:12px;
    top:50%;
    transform:translateY(-50%);
    border:0;
    background:#eef5ff;
    color:var(--primary);
    border-radius:999px;
    padding:8px 14px;
    font-size:.82rem;
    font-weight:900;
    cursor:pointer;
}

.password-toggle:hover{
    background:#dbeafe;
}

.password-helper{
    display:grid;
    gap:13px;
    margin-top:-8px;
    padding:20px;
    border:1px solid var(--border);
    border-radius:22px;
    background:#f8fbff;
    box-shadow:0 8px 22px rgba(8,27,77,.04);
}

.password-strength-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
}

.password-strength-label{
    color:var(--secondary);
    font-weight:950;
    font-size:.94rem;
}

.password-strength-text{
    color:var(--muted);
    font-weight:900;
    font-size:.86rem;
}

.password-strength-bar{
    width:100%;
    height:10px;
    border-radius:999px;
    background:#e6edf7;
    overflow:hidden;
}

.password-strength-fill{
    display:block;
    width:0;
    height:100%;
    border-radius:999px;
    background:var(--danger);
    transition:.2s ease;
}

.password-rules{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:10px 14px;
    margin:0;
    padding:0;
    list-style:none;
}

.password-rules li{
    position:relative;
    padding-left:27px;
    color:#667085;
    font-size:.9rem;
    font-weight:750;
    line-height:1.35;
}

.password-rules li::before{
    content:"";
    position:absolute;
    left:0;
    top:2px;
    width:18px;
    height:18px;
    border-radius:50%;
    background:#e5e7eb;
    box-shadow:inset 0 0 0 1px rgba(8,27,77,.08);
}

.password-rules li.is-ok{
    color:#166534;
}

.password-rules li.is-ok::before{
    background:#22c55e;
}

.password-match{
    font-size:.9rem;
    font-weight:900;
    color:#667085;
}

.password-match.is-ok{
    color:#166534;
}

.password-match.is-bad{
    color:#b91c1c;
}

/* Feature Section */

.feature-section{
    background:
        radial-gradient(circle at 85% 15%, rgba(20,115,243,.11), transparent 28%),
        linear-gradient(180deg, #f4f7fb 0%, #ffffff 100%);
}

.feature-split{
    display:grid;
    grid-template-columns:.85fr 1.15fr;
    gap:54px;
    align-items:center;
}

.feature-split-reverse .section-head{
    order:2;
}

.feature-split-reverse .visual-card{
    order:1;
}

.visual-card{
    position:relative;
    overflow:hidden;
    border-radius:40px;
    background:rgba(255,255,255,.94);
    border:1px solid rgba(219,228,240,.95);
    box-shadow:var(--shadow-strong);
}

.visual-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at top right, rgba(20,115,243,.14), transparent 35%),
        linear-gradient(135deg, rgba(255,255,255,.28), transparent);
    pointer-events:none;
    z-index:2;
}

.visual-card img{
    width:100%;
    height:auto;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:24px;
}

.feature-card{
    position:relative;
    overflow:hidden;
    min-height:270px;
    padding:32px;
    border-radius:34px;
    background:rgba(255,255,255,.94);
    border:1px solid var(--border);
    box-shadow:var(--shadow);
    transition:.25s ease;
}

.feature-card:hover{
    transform:translateY(-7px);
    box-shadow:var(--shadow-strong);
}

.feature-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:60px;
    height:60px;
    margin-bottom:28px;
    border-radius:20px;
    background:linear-gradient(135deg, var(--primary), var(--primary-dark));
    color:white;
    font-size:1.6rem;
    box-shadow:0 18px 38px rgba(20,115,243,.25);
}

.feature-card h3{
    font-size:1.3rem;
}

.feature-card p{
    color:var(--muted);
    font-weight:650;
}

/* Security Section */

.security-section{
    background:
        radial-gradient(circle at 20% 20%, rgba(20,115,243,.13), transparent 30%),
        linear-gradient(135deg, #06184a 0%, #09266f 100%);
    color:white;
}

.security-section .eyebrow{
    color:#8ec5ff;
}

.security-section .eyebrow::before{
    background:#8ec5ff;
    box-shadow:0 0 0 6px rgba(142,197,255,.16);
}

.security-section h2{
    color:white;
}

.security-grid{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:44px;
    align-items:center;
}

.security-content p{
    max-width:720px;
    color:rgba(255,255,255,.72);
    font-size:1.12rem;
    line-height:1.8;
}

.security-list{
    list-style:none;
    padding:0;
    margin:30px 0 0;
    display:grid;
    gap:14px;
}

.security-list li{
    position:relative;
    padding-left:34px;
    color:rgba(255,255,255,.86);
    font-weight:750;
}

.security-list li::before{
    content:"";
    position:absolute;
    left:0;
    top:8px;
    width:11px;
    height:11px;
    border-radius:50%;
    background:#22c55e;
    box-shadow:0 0 0 7px rgba(34,197,94,.15);
}

.security-panel{
    border-radius:36px;
    padding:34px;
    background:rgba(255,255,255,.10);
    border:1px solid rgba(255,255,255,.16);
    box-shadow:0 34px 90px rgba(0,0,0,.20);
    backdrop-filter:blur(22px);
}

.security-panel-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    padding-bottom:20px;
    margin-bottom:18px;
    border-bottom:1px solid rgba(255,255,255,.14);
}

.security-panel-top span{
    color:rgba(255,255,255,.70);
    font-weight:800;
}

.security-panel-top strong{
    display:inline-flex;
    align-items:center;
    padding:9px 14px;
    border-radius:999px;
    background:rgba(34,197,94,.16);
    color:#86efac;
    font-weight:950;
}

.status-line{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    padding:16px 0;
    border-bottom:1px solid rgba(255,255,255,.10);
}

.status-line:last-child{
    border-bottom:0;
}

.status-line span{
    color:rgba(255,255,255,.68);
    font-weight:750;
}

.status-line strong{
    color:white;
    font-weight:950;
}

/* FAQ */

.faq-wrap{
    max-width:940px;
}

.faq-list details{
    margin-bottom:18px;
    overflow:hidden;
    border-radius:28px;
    background:white;
    border:1px solid var(--border);
    box-shadow:var(--shadow);
}

.faq-list summary{
    cursor:pointer;
    padding:25px 30px;
    font-size:1.09rem;
    font-weight:950;
    color:var(--secondary);
}

.faq-list p{
    padding:0 30px 26px;
    color:var(--muted);
}

/* CTA Section */

.cta-section{
    padding:100px 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(20,115,243,.14), transparent 30%),
        #ffffff;
}

.cta-card{
    position:relative;
    overflow:hidden;
    padding:64px;
    border-radius:40px;
    background:
        radial-gradient(circle at top right, rgba(20,115,243,.18), transparent 30%),
        linear-gradient(135deg, #ffffff 0%, #eef6ff 100%);
    border:1px solid var(--border);
    box-shadow:var(--shadow-strong);
}

.cta-card h2{
    max-width:820px;
}

.cta-card p{
    max-width:720px;
    color:var(--muted);
    font-size:1.14rem;
    line-height:1.8;
}

/* Footer */

.site-footer{
    padding:42px 0;
    background:white;
    border-top:1px solid var(--border);
}

.footer-inner{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:24px;
    flex-wrap:wrap;
}

.footer-inner strong{
    display:block;
    margin-bottom:8px;
    color:var(--secondary);
}

.footer-inner p{
    color:var(--muted);
}

.footer-links{
    display:flex;
    gap:20px;
}

.footer-links a{
    font-weight:850;
    color:#475467;
}

.footer-links a:hover{
    color:var(--primary);
}

/* Responsive */

@media (max-width:980px){

    .hero{
        min-height:auto;
        padding:90px 0 80px;
    }

    .hero-grid,
    .pricing-grid,
    .trust-grid,
    .feature-grid,
    .security-grid,
    .register-grid,
    .feature-split,
    .benefits-grid{
        grid-template-columns:1fr;
    }

    .feature-split-reverse .section-head,
    .feature-split-reverse .visual-card{
        order:initial;
    }

    .header-inner{
        position:relative;
    }

    .nav-toggle{
        display:flex;
        flex:0 0 auto;
    }

    .main-nav{
        display:none;
        position:absolute;
        top:calc(100% + 14px);
        left:0;
        right:0;
        flex-direction:column;
        align-items:flex-start;
        gap:0;
        padding:20px;
        border-radius:30px;
        background:rgba(255,255,255,.98);
        border:1px solid rgba(219,228,240,.9);
        box-shadow:0 24px 70px rgba(8,27,77,.18);
        backdrop-filter:blur(24px);
        z-index:999;
    }

    .main-nav.is-open{
        display:flex;
    }

    .main-nav a{
        width:100%;
        padding:18px 10px;
        border-radius:18px;
        border-bottom:1px solid rgba(219,228,240,.7);
    }

    .main-nav a:last-child{
        border-bottom:0;
    }

    .main-nav a:hover{
        background:rgba(20,115,243,.08);
    }

    .nav-login{
        margin-top:12px;
        text-align:center;
    }

    .price-card.is-highlight{
        transform:none;
    }

    .trust-section{
        margin-top:0;
    }

    h1{
        font-size:4rem;
    }
}

@media (max-width:640px){

    .container{
        width:min(100% - 28px, 1240px);
    }

    .hero,
    .section{
        padding:70px 0;
    }

    .hero-card,
    .price-card,
    .feature-card,
    .trust-item,
    .security-panel,
    .cta-card,
    .register-info,
    .form-card,
    .benefit-intro,
    .benefit-box{
        padding:26px;
        border-radius:26px;
    }

    h1{
        font-size:3rem;
    }

    h2{
        font-size:2.35rem;
    }

    .hero-actions{
        flex-direction:column;
    }

    .btn{
        width:100%;
    }

    .logo{
        max-height:92px;
    }

    .header-inner{
        min-height:92px;
        gap:16px;
    }

    .nav-toggle{
        width:50px;
        height:50px;
        border-radius:16px;
        font-size:1.9rem;
    }

    .main-nav{
        top:calc(100% + 10px);
        padding:16px;
        border-radius:24px;
    }

    .hero-card strong{
        font-size:3.5rem;
    }

    .footer-links{
        flex-wrap:wrap;
    }

    .password-rules{
        grid-template-columns:1fr;
    }

    .password-field-wrap input{
        padding-right:100px;
    }

    .benefit-box{
        min-height:auto;
    }
}


/* ======================================================
   KASSEL-NET WEBMAIL - KOMPLETT
====================================================== */

.webmail-hero{
    position:relative;
    overflow:hidden;
    padding:110px 0 100px;
    background:
        radial-gradient(circle at 82% 18%, rgba(20,115,243,.18), transparent 28%),
        radial-gradient(circle at 12% 86%, rgba(6,24,74,.09), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #f7fbff 45%, #eaf3ff 100%);
}

.webmail-hero-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:minmax(0, 1.05fr) minmax(360px, .95fr);
    gap:58px;
    align-items:center;
}

.webmail-login-card,
.webmail-service-card,
.webmail-settings-card,
.webmail-help-card,
.webmail-status-card{
    position:relative;
    overflow:hidden;
    background:rgba(255,255,255,.94);
    border:1px solid var(--border);
    box-shadow:var(--shadow);
}

.webmail-login-card{
    border-radius:38px;
    padding:44px;
    box-shadow:var(--shadow-strong);
    backdrop-filter:blur(22px);
}

.webmail-login-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:radial-gradient(circle at top right, rgba(20,115,243,.15), transparent 36%);
    pointer-events:none;
}

.webmail-login-card > *{
    position:relative;
    z-index:2;
}

.webmail-card-label{
    display:inline-flex;
    margin-bottom:18px;
    padding:10px 16px;
    border-radius:999px;
    background:rgba(20,115,243,.10);
    color:var(--primary);
    font-size:.88rem;
    font-weight:950;
}

.webmail-login-card > strong{
    display:block;
    margin-bottom:16px;
    color:var(--secondary);
    font-size:3.3rem;
    line-height:1;
    letter-spacing:-.07em;
}

.webmail-login-card p{
    color:var(--muted);
    font-weight:700;
    margin-bottom:26px;
}

.webmail-login-note{
    margin-top:22px;
    padding:18px 20px;
    border-radius:22px;
    background:#eff6ff;
    border:1px solid var(--border);
    color:#344054;
    font-weight:750;
    line-height:1.6;
}

.webmail-login-note strong{
    display:inline;
    margin:0;
    color:var(--secondary);
}

.webmail-login-note span{
    color:var(--primary);
    font-weight:950;
}

.webmail-login-links{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    margin-top:22px;
}

.webmail-login-links a{
    color:var(--primary);
    font-weight:900;
}

.webmail-login-links a:hover{
    text-decoration:underline;
}

.webmail-quick-section{
    background:#ffffff;
}

.webmail-card-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:24px;
}

.webmail-service-card{
    min-height:260px;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    padding:32px;
    border-radius:34px;
    transition:.25s ease;
}

.webmail-service-card:hover{
    transform:translateY(-7px);
    box-shadow:var(--shadow-strong);
}

.webmail-service-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:radial-gradient(circle at top right, rgba(20,115,243,.11), transparent 34%);
    opacity:0;
    transition:.25s ease;
}

.webmail-service-card:hover::before{
    opacity:1;
}

.webmail-service-card > *{
    position:relative;
    z-index:2;
}

.webmail-service-card-main{
    border-color:rgba(20,115,243,.50);
    box-shadow:0 26px 70px rgba(20,115,243,.18);
}

.webmail-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:62px;
    height:62px;
    margin-bottom:24px;
    border-radius:21px;
    background:linear-gradient(135deg, var(--primary), var(--primary-dark));
    color:#fff;
    font-size:1.6rem;
    box-shadow:0 18px 38px rgba(20,115,243,.25);
}

.webmail-service-card h3{
    margin-bottom:10px;
}

.webmail-service-card p{
    color:var(--muted);
    font-weight:650;
    margin-bottom:24px;
}

.webmail-service-card strong{
    margin-top:auto;
    color:var(--primary);
    font-weight:950;
}

.webmail-settings-grid{
    display:grid;
    grid-template-columns:minmax(0, .9fr) minmax(360px, 1.1fr);
    gap:46px;
    align-items:start;
}

.webmail-settings-card{
    border-radius:34px;
    padding:34px;
}

.setting-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    padding:18px 0;
    border-bottom:1px solid var(--border);
}

.setting-row:last-child{
    border-bottom:0;
}

.setting-row span{
    color:var(--muted);
    font-weight:800;
}

.setting-row strong{
    color:var(--secondary);
    text-align:right;
    font-weight:950;
}

.webmail-guide-section{
    background:
        radial-gradient(circle at 85% 15%, rgba(20,115,243,.10), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
}

.setup-guide-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:32px;
}

.setup-guide-card{
    position:relative;
    overflow:hidden;
    border-radius:36px;
    background:rgba(255,255,255,.96);
    border:1px solid var(--border);
    box-shadow:var(--shadow);
    transition:.25s ease;
}

.setup-guide-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow-strong);
}

.setup-guide-image-button{
    display:block;
    width:100%;
    padding:0;
    margin:0;
    border:0;
    background:transparent;
    cursor:zoom-in;
    overflow:hidden;
}

.setup-guide-image-button img{
    width:100%;
    height:auto;
    display:block;
    transition:.35s ease;
    transform-origin:center center;
}

.setup-guide-card:hover .setup-guide-image-button img,
.setup-guide-image-button:focus-visible img{
    transform:scale(1.045);
}

.setup-guide-image-button:focus-visible{
    outline:4px solid rgba(20,115,243,.35);
    outline-offset:-4px;
}

.setup-guide-content{
    padding:30px;
}

.setup-guide-content h3{
    margin-bottom:12px;
}

.setup-guide-content p{
    color:var(--muted);
    font-weight:650;
    margin-bottom:22px;
}

.webmail-status-section{
    background:#ffffff;
}

.webmail-status-card{
    display:grid;
    grid-template-columns:1fr auto;
    gap:34px;
    align-items:center;
    border-radius:38px;
    padding:44px;
    box-shadow:var(--shadow-strong);
}

.webmail-status-card p{
    color:var(--muted);
    font-weight:650;
}

.webmail-status-box{
    min-width:260px;
    padding:26px;
    border-radius:28px;
    background:#f8fbff;
    border:1px solid var(--border);
    text-align:center;
}

.status-dot{
    display:block;
    width:18px;
    height:18px;
    margin:0 auto 14px;
    border-radius:50%;
    background:var(--success);
    box-shadow:0 0 0 9px rgba(18,183,106,.14);
}

.webmail-status-box strong{
    display:block;
    color:var(--secondary);
    font-size:1.15rem;
    font-weight:950;
}

.webmail-status-box small{
    color:var(--muted);
    font-weight:800;
}

.setup-lightbox{
    position:fixed;
    inset:0;
    z-index:99999;
    display:none;
    align-items:center;
    justify-content:center;
    padding:34px;
    background:rgba(6,24,74,.78);
    backdrop-filter:blur(14px);
}

.setup-lightbox.is-open{
    display:flex;
}

.setup-lightbox-open{
    overflow:hidden;
}

.setup-lightbox-inner{
    width:min(1500px, 100%);
    max-height:calc(100vh - 80px);
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:16px;
}

.setup-lightbox-inner img{
    max-width:100%;
    max-height:calc(100vh - 150px);
    width:auto;
    height:auto;
    border-radius:24px;
    background:#ffffff;
    box-shadow:0 40px 120px rgba(0,0,0,.40);
}

.setup-lightbox-inner p{
    margin:0;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(255,255,255,.95);
    color:var(--secondary);
    font-weight:950;
    box-shadow:0 14px 38px rgba(0,0,0,.18);
}

.setup-lightbox-close{
    position:fixed;
    top:22px;
    right:24px;
    width:58px;
    height:58px;
    border:0;
    border-radius:50%;
    background:rgba(255,255,255,.96);
    color:var(--secondary);
    font-size:2.3rem;
    line-height:1;
    font-weight:900;
    cursor:pointer;
    box-shadow:0 18px 48px rgba(0,0,0,.24);
}

.setup-lightbox-close:hover{
    background:#ffffff;
    transform:scale(1.04);
}

@media (max-width:980px){

    .webmail-hero-grid,
    .webmail-card-grid,
    .webmail-settings-grid,
    .setup-guide-grid,
    .webmail-status-card{
        grid-template-columns:1fr;
    }

    .webmail-status-box{
        min-width:0;
    }
}

@media (max-width:640px){

    .webmail-hero{
        padding:70px 0;
    }

    .webmail-login-card,
    .webmail-service-card,
    .webmail-settings-card,
    .webmail-status-card,
    .setup-guide-card{
        border-radius:26px;
    }

    .webmail-login-card,
    .webmail-service-card,
    .webmail-settings-card,
    .webmail-status-card,
    .setup-guide-content{
        padding:26px;
    }

    .webmail-login-card > strong{
        font-size:2.5rem;
    }

    .setting-row{
        display:block;
    }

    .setting-row strong{
        display:block;
        margin-top:5px;
        text-align:left;
    }

    .setup-lightbox{
        padding:14px;
    }

    .setup-lightbox-inner img{
        border-radius:16px;
        max-height:calc(100vh - 125px);
    }

    .setup-lightbox-close{
        top:12px;
        right:12px;
        width:50px;
        height:50px;
        font-size:2rem;
    }
}


/* ======================================================
   KASSEL-NET PROVIDER STATUS
====================================================== */

.provider-status-section{
    background:
        radial-gradient(circle at 15% 20%, rgba(20,115,243,.08), transparent 28%),
        #ffffff;
}

.provider-status-overview{
    display:grid;
    gap:26px;
}

.provider-status-summary{
    display:flex;
    align-items:center;
    gap:22px;
    padding:32px;
    border-radius:34px;
    background:rgba(255,255,255,.96);
    border:1px solid var(--border);
    box-shadow:var(--shadow-strong);
}

.provider-status-summary strong{
    display:block;
    margin-bottom:6px;
    color:var(--secondary);
    font-size:1.45rem;
    font-weight:950;
}

.provider-status-summary p{
    margin:0;
    color:var(--muted);
    font-weight:800;
}

.provider-status-pulse{
    position:relative;
    width:24px;
    height:24px;
    flex:0 0 24px;
    border-radius:50%;
    background:var(--success);
    box-shadow:0 0 0 10px rgba(18,183,106,.14);
}

.provider-status-summary.is-offline .provider-status-pulse{
    background:var(--danger);
    box-shadow:0 0 0 10px rgba(239,68,68,.14);
}

.provider-status-pulse::after{
    content:"";
    position:absolute;
    inset:-10px;
    border-radius:50%;
    border:2px solid currentColor;
    color:rgba(18,183,106,.32);
    animation:providerPulse 1.8s ease-out infinite;
}

.provider-status-summary.is-offline .provider-status-pulse::after{
    color:rgba(239,68,68,.32);
}

@keyframes providerPulse{
    from{
        transform:scale(.7);
        opacity:1;
    }
    to{
        transform:scale(1.45);
        opacity:0;
    }
}

.provider-status-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:22px;
}

.provider-status-card{
    position:relative;
    overflow:hidden;
    min-height:190px;
    padding:26px;
    border-radius:30px;
    background:rgba(255,255,255,.96);
    border:1px solid var(--border);
    box-shadow:var(--shadow);
}

.provider-status-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:radial-gradient(circle at top right, rgba(18,183,106,.12), transparent 34%);
    pointer-events:none;
}

.provider-status-card.is-offline::before{
    background:radial-gradient(circle at top right, rgba(239,68,68,.12), transparent 34%);
}

.provider-status-card-top{
    position:relative;
    z-index:2;
    display:flex;
    align-items:flex-start;
    gap:16px;
    margin-bottom:24px;
}

.provider-status-dot{
    width:16px;
    height:16px;
    margin-top:7px;
    flex:0 0 16px;
    border-radius:50%;
    background:var(--success);
    box-shadow:0 0 0 7px rgba(18,183,106,.13);
}

.provider-status-card.is-offline .provider-status-dot{
    background:var(--danger);
    box-shadow:0 0 0 7px rgba(239,68,68,.13);
}

.provider-status-card h3{
    margin-bottom:6px;
    font-size:1.18rem;
}

.provider-status-card p{
    margin:0;
    color:var(--muted);
    font-weight:700;
    line-height:1.45;
}

.provider-status-meta{
    position:relative;
    z-index:2;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    padding-top:18px;
    border-top:1px solid var(--border);
}

.provider-status-meta strong{
    color:var(--success);
    font-weight:950;
}

.provider-status-card.is-offline .provider-status-meta strong{
    color:var(--danger);
}

.provider-status-meta span{
    color:var(--muted);
    font-weight:850;
}

.provider-maintenance-card{
    display:flex;
    gap:20px;
    align-items:center;
    padding:28px;
    border-radius:30px;
    background:#f8fbff;
    border:1px solid var(--border);
    box-shadow:var(--shadow);
}

.provider-maintenance-card h3{
    margin-bottom:6px;
}

.provider-maintenance-card p{
    margin:0;
    color:var(--muted);
    font-weight:700;
}

@media (max-width:980px){

    .provider-status-grid{
        grid-template-columns:1fr;
    }

    .provider-status-summary{
        align-items:flex-start;
    }
}

@media (max-width:640px){

    .provider-status-summary,
    .provider-status-card,
    .provider-maintenance-card{
        padding:24px;
        border-radius:24px;
    }

    .provider-status-summary strong{
        font-size:1.18rem;
    }
}


/* ======================================================
   WEBMAIL FIX - AUFGERÄUMTE ANLEITUNGEN
   - alte Textkarten werden nicht mehr genutzt
   - Bildanleitungen volle Breite
   - saubere Statusseite
====================================================== */

.webmail-help-grid{
    display:none !important;
}

.setup-guide-grid{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:46px !important;
}

.setup-guide-card{
    display:grid;
    grid-template-columns:1fr;
}

.setup-guide-image-button{
    background:#ffffff;
}

.setup-guide-image-button img{
    width:100%;
    height:auto;
}

.setup-guide-content{
    border-top:1px solid var(--border);
}

.provider-status-section{
    padding-top:110px;
    padding-bottom:110px;
}

.provider-status-grid{
    grid-template-columns:repeat(3, minmax(0, 1fr));
}

@media (max-width:1100px){

    .provider-status-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }

}

@media (max-width:760px){

    .provider-status-grid{
        grid-template-columns:1fr;
    }

    .setup-guide-grid{
        gap:30px !important;
    }

}


/* ======================================================
   MOBILE STATUS FIX - PROFESSIONELLE STATUSPAGE ANSICHT
====================================================== */

@media (max-width:760px){

    .provider-status-section{
        padding:64px 0 !important;
        background:
            radial-gradient(circle at 50% 0%, rgba(20,115,243,.12), transparent 34%),
            linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%) !important;
    }

    .provider-status-section .section-head{
        margin-bottom:26px !important;
    }

    .provider-status-section h2{
        font-size:2.15rem !important;
        letter-spacing:-.045em !important;
    }

    .provider-status-section .section-head p{
        font-size:1rem !important;
        line-height:1.65 !important;
    }

    .provider-status-overview{
        gap:18px !important;
    }

    .provider-status-summary{
        align-items:flex-start !important;
        gap:16px !important;
        padding:22px !important;
        border-radius:24px !important;
        box-shadow:0 16px 44px rgba(8,27,77,.10) !important;
    }

    .provider-status-pulse{
        width:18px !important;
        height:18px !important;
        flex-basis:18px !important;
        margin-top:5px !important;
        box-shadow:0 0 0 7px rgba(18,183,106,.14) !important;
    }

    .provider-status-summary.is-offline .provider-status-pulse{
        box-shadow:0 0 0 7px rgba(239,68,68,.14) !important;
    }

    .provider-status-pulse::after{
        inset:-8px !important;
    }

    .provider-status-summary strong{
        font-size:1.08rem !important;
        line-height:1.25 !important;
        margin-bottom:4px !important;
    }

    .provider-status-summary p{
        font-size:.88rem !important;
        line-height:1.45 !important;
    }

    .provider-status-grid{
        display:grid !important;
        grid-template-columns:1fr !important;
        gap:10px !important;
    }

    .provider-status-card{
        min-height:0 !important;
        padding:0 !important;
        border-radius:20px !important;
        box-shadow:0 10px 28px rgba(8,27,77,.07) !important;
        background:#ffffff !important;
    }

    .provider-status-card::before{
        display:none !important;
    }

    .provider-status-card-top{
        display:grid !important;
        grid-template-columns:18px 1fr !important;
        gap:12px !important;
        align-items:start !important;
        margin:0 !important;
        padding:17px 18px 10px !important;
    }

    .provider-status-dot{
        width:12px !important;
        height:12px !important;
        flex:0 0 12px !important;
        margin-top:6px !important;
        box-shadow:0 0 0 5px rgba(18,183,106,.12) !important;
    }

    .provider-status-card.is-offline .provider-status-dot{
        box-shadow:0 0 0 5px rgba(239,68,68,.12) !important;
    }

    .provider-status-card h3{
        font-size:1rem !important;
        margin:0 0 3px !important;
        letter-spacing:-.02em !important;
    }

    .provider-status-card p{
        font-size:.86rem !important;
        line-height:1.42 !important;
        margin:0 !important;
    }

    .provider-status-meta{
        padding:10px 18px 16px 48px !important;
        border-top:0 !important;
        display:flex !important;
        align-items:center !important;
        justify-content:space-between !important;
        gap:10px !important;
    }

    .provider-status-meta strong{
        display:inline-flex !important;
        align-items:center !important;
        min-height:30px !important;
        padding:0 12px !important;
        border-radius:999px !important;
        background:rgba(18,183,106,.10) !important;
        color:#166534 !important;
        font-size:.82rem !important;
        font-weight:950 !important;
    }

    .provider-status-card.is-offline .provider-status-meta strong{
        background:rgba(239,68,68,.10) !important;
        color:#b91c1c !important;
    }

    .provider-status-meta span{
        font-size:.8rem !important;
        color:#667085 !important;
        font-weight:850 !important;
    }

    .provider-maintenance-card{
        padding:18px !important;
        border-radius:22px !important;
        gap:14px !important;
        box-shadow:0 10px 28px rgba(8,27,77,.07) !important;
    }

    .provider-maintenance-card .webmail-icon{
        width:46px !important;
        height:46px !important;
        min-width:46px !important;
        margin-bottom:0 !important;
        border-radius:16px !important;
        font-size:1.25rem !important;
    }

    .provider-maintenance-card h3{
        font-size:1rem !important;
        margin-bottom:4px !important;
    }

    .provider-maintenance-card p{
        font-size:.88rem !important;
        line-height:1.45 !important;
    }
}

@media (max-width:420px){

    .provider-status-meta{
        padding-left:18px !important;
        flex-direction:column !important;
        align-items:flex-start !important;
    }

    .provider-status-card-top{
        grid-template-columns:16px 1fr !important;
    }
}
