*,
*::before,
*::after{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    font-family:'Inter',sans-serif;
    color:#0f172a;
    background:#f8fafc;
    line-height:1.6;
}

img{
    max-width:100%;
    display:block;
    border:0;
}

a{
    text-decoration:none;
    color:inherit;
}

.container{
    width:min(1200px, calc(100% - 32px));
    margin:0 auto;
}

/* Header */
.site-header{
    position:sticky;
    top:0;
    z-index:1000;
    background:rgba(255,255,255,0.92);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(15,23,42,0.08);
}

.nav-wrap{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    min-height:78px;
}

.logo{
    font-size:1.35rem;
    font-weight:800;
    color:#0f172a;
    letter-spacing:-0.02em;
}

.logo span{
    color:#2563eb;
}

.main-nav{
    display:flex;
    align-items:center;
    gap:22px;
    flex-wrap:wrap;
}

.main-nav a{
    color:#334155;
    font-weight:600;
    transition:0.25s ease;
}

.main-nav a:hover{
    color:#2563eb;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    border:none;
    border-radius:14px;
    padding:14px 22px;
    font-weight:700;
    transition:0.3s ease;
    cursor:pointer;
}

.btn:hover{
    transform:translateY(-2px);
}

.btn-primary{
    background:linear-gradient(135deg,#2563eb,#06b6d4);
    color:#fff;
    box-shadow:0 12px 30px rgba(37,99,235,0.24);
}

.btn-secondary{
    background:#ffffff;
    color:#0f172a;
    border:1px solid rgba(15,23,42,0.1);
}

.btn-light{
    background:#fff;
    color:#0f172a;
}

.btn-outline-light{
    background:transparent;
    color:#fff;
    border:1px solid rgba(255,255,255,0.45);
}

.btn-nav{
    background:#0f172a;
    color:#fff;
    padding:12px 18px;
}

.btn-full{
    width:100%;
}

/* Hero */
.hero{
    position:relative;
    min-height:88vh;
    display:flex;
    align-items:center;
    background:
        linear-gradient(120deg, rgba(15,23,42,0.75), rgba(37,99,235,0.45)),
        url('/bilder/hero-deutschland.jpg') center center/cover no-repeat;
    overflow:hidden;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, rgba(15,23,42,0.12), rgba(15,23,42,0.26));
}

.hero-content{
    position:relative;
    z-index:2;
    padding:80px 0;
}

.hero-text{
    max-width:760px;
    color:#fff;
}

.eyebrow,
.section-tag{
    display:inline-block;
    margin-bottom:14px;
    padding:7px 12px;
    border-radius:999px;
    background:rgba(255,255,255,0.16);
    color:#fff;
    font-size:0.92rem;
    font-weight:700;
    backdrop-filter:blur(10px);
}

.section-tag{
    background:#dbeafe;
    color:#1d4ed8;
}

.section-tag.light{
    background:rgba(255,255,255,0.16);
    color:#fff;
}

.hero h1{
    margin:0 0 18px 0;
    font-size:clamp(2.3rem, 6vw, 4.5rem);
    line-height:1.05;
    letter-spacing:-0.03em;
}

.hero p{
    font-size:1.1rem;
    max-width:680px;
    color:rgba(255,255,255,0.94);
}

.hero-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin:28px 0 30px;
}

.search-box{
    background:rgba(255,255,255,0.96);
    border:1px solid rgba(255,255,255,0.4);
    border-radius:24px;
    padding:20px;
    box-shadow:0 20px 50px rgba(15,23,42,0.22);
}

.search-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:14px;
}

.form-group{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.form-group label{
    color:#334155;
    font-size:0.95rem;
    font-weight:700;
}

.form-group input,
.form-group select{
    width:100%;
    min-height:52px;
    border-radius:14px;
    border:1px solid #cbd5e1;
    background:#fff;
    padding:0 14px;
    font-size:1rem;
    outline:none;
}

.form-group input:focus,
.form-group select:focus{
    border-color:#2563eb;
    box-shadow:0 0 0 4px rgba(37,99,235,0.12);
}

.search-submit{
    justify-content:flex-end;
}

/* Trust */
.trust{
    padding:28px 0;
    background:#fff;
    border-bottom:1px solid rgba(15,23,42,0.06);
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.trust-item{
    padding:20px;
    border-radius:20px;
    background:#f8fafc;
    border:1px solid rgba(15,23,42,0.05);
}

.trust-item strong{
    display:block;
    margin-bottom:8px;
    font-size:1rem;
}

.trust-item span{
    color:#475569;
    font-size:0.95rem;
}

/* Generic sections */
.split-section,
.offers,
.highlight-band,
.regions,
.cta-section{
    padding:88px 0;
}

.split-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:42px;
    align-items:center;
}

.reverse .split-grid{
    direction:rtl;
}

.reverse .split-grid > *{
    direction:ltr;
}

.split-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:28px;
    box-shadow:0 22px 50px rgba(15,23,42,0.12);
}

.split-text h2,
.section-head h2,
.cta-content h2{
    font-size:clamp(2rem, 4vw, 3rem);
    line-height:1.1;
    margin:0 0 18px;
    letter-spacing:-0.02em;
}

.split-text p,
.section-head p,
.cta-content p{
    color:#475569;
    font-size:1.05rem;
}

.feature-list{
    list-style:none;
    padding:0;
    margin:22px 0 28px;
}

.feature-list li{
    position:relative;
    padding-left:28px;
    margin-bottom:12px;
    color:#334155;
    font-weight:500;
}

.feature-list li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    color:#16a34a;
    font-weight:800;
}

.section-head{
    margin-bottom:34px;
}

.section-head.center{
    text-align:center;
    max-width:800px;
    margin:0 auto 34px;
}

/* Cards */
.card-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.card{
    background:#fff;
    border:1px solid rgba(15,23,42,0.06);
    border-radius:26px;
    padding:28px;
    box-shadow:0 18px 40px rgba(15,23,42,0.06);
    transition:0.3s ease;
}

.card:hover{
    transform:translateY(-6px);
    box-shadow:0 24px 50px rgba(15,23,42,0.12);
}

.card-icon{
    font-size:2rem;
    margin-bottom:14px;
}

.card h3{
    margin:0 0 10px;
    font-size:1.25rem;
}

.card p{
    margin:0;
    color:#475569;
}

/* Highlight */
.highlight-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:28px;
}

.highlight-box{
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    border:1px solid rgba(15,23,42,0.06);
    box-shadow:0 18px 40px rgba(15,23,42,0.06);
}

.highlight-box img{
    width:100%;
    height:280px;
    object-fit:cover;
}

.highlight-content{
    padding:26px;
}

.highlight-content h3{
    margin:0 0 12px;
    font-size:1.45rem;
}

.highlight-content p{
    margin:0 0 14px;
    color:#475569;
}

.text-link{
    color:#2563eb;
    font-weight:700;
}

/* Regions */
.regions{
    background:#fff;
}

.region-grid{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    justify-content:center;
}

.region-item{
    padding:14px 20px;
    border-radius:999px;
    background:#eff6ff;
    color:#1d4ed8;
    font-weight:700;
    transition:0.25s ease;
    border:1px solid #bfdbfe;
}

.region-item:hover{
    background:#dbeafe;
    transform:translateY(-2px);
}

/* CTA */
.cta-section{
    position:relative;
    background:
        linear-gradient(120deg, rgba(15,23,42,0.76), rgba(37,99,235,0.6)),
        url('/bilder/bg-cta.jpg') center center/cover no-repeat;
    color:#fff;
    overflow:hidden;
}

.cta-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, rgba(15,23,42,0.1), rgba(15,23,42,0.26));
}

.cta-content{
    position:relative;
    z-index:2;
    text-align:center;
    max-width:850px;
}

.cta-content p{
    color:rgba(255,255,255,0.92);
}

/* Footer */
.site-footer{
    background:#0f172a;
    color:#e2e8f0;
    padding-top:60px;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr 1fr;
    gap:28px;
    padding-bottom:38px;
}

.footer-logo{
    font-size:1.3rem;
    font-weight:800;
    margin-bottom:14px;
}

.site-footer h4{
    margin-top:0;
    margin-bottom:14px;
    color:#fff;
}

.site-footer ul{
    list-style:none;
    margin:0;
    padding:0;
}

.site-footer li{
    margin-bottom:10px;
}

.site-footer a{
    color:#cbd5e1;
}

.site-footer a:hover{
    color:#fff;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.08);
    padding:20px 0;
    text-align:center;
    color:#94a3b8;
}

.sub-hero{
    padding:90px 0;
    background:linear-gradient(135deg,#eff6ff,#f8fafc);
}

.sub-hero h1{
    margin:0 0 12px;
    font-size:clamp(2rem,4vw,3.4rem);
    line-height:1.1;
}

.sub-hero p{
    max-width:760px;
    color:#475569;
    font-size:1.05rem;
}

/* Responsive */
@media (max-width: 1100px){
    .search-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .card-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .trust-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .footer-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width: 860px){
    .main-nav{
        display:none;
    }

    .split-grid,
    .highlight-grid{
        grid-template-columns:1fr;
    }

    .hero{
        min-height:auto;
    }

    .hero-content{
        padding:60px 0;
    }
}

@media (max-width: 640px){
    .container{
        width:min(100% - 24px, 1200px);
    }

    .hero-buttons{
        flex-direction:column;
    }

    .search-grid,
    .card-grid,
    .trust-grid,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:2.35rem;
    }

    .split-section,
    .offers,
    .highlight-band,
    .regions,
    .cta-section{
        padding:64px 0;
    }

    .search-box{
        padding:16px;
        border-radius:20px;
    }

    .card,
    .highlight-content{
        padding:22px;
    }
}