*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
}

html,
body{
overflow-x:hidden !important;
max-width:100%;
width:100%;
}

body{
font-family:'Inter',sans-serif;
background:#f5f7fb;
color:#111;
-webkit-text-size-adjust:100%;
}

img{
max-width:100%;
display:block;
}

section{
scroll-margin-top:100px;
}

/* =========================
NAVIGATION
========================= */

.nav{
position:sticky;
top:0;
z-index:9999;
display:flex;
justify-content:space-between;
align-items:center;
padding:14px 70px;
background:rgba(255,255,255,0.94);
backdrop-filter:blur(20px);
border-bottom:1px solid rgba(0,0,0,0.05);
}

.logo-img{
height:82px;
transition:0.35s;
}

.logo-img:hover{
transform:scale(1.03);
}

.nav nav{
display:flex;
gap:40px;
}

.nav nav a{
text-decoration:none;
font-weight:800;
font-size:14px;
color:#111;
position:relative;
transition:0.3s;
}

.nav nav a::after{
content:"";
position:absolute;
left:0;
bottom:-8px;
width:0%;
height:2px;
background:#1E5EFF;
transition:0.3s;
}

.nav nav a:hover::after{
width:100%;
}

.nav nav a:hover{
color:#1E5EFF;
}

/* =========================
BUTTONS
========================= */

.btn{
display:inline-flex;
align-items:center;
justify-content:center;
gap:10px;
padding:18px 30px;
border-radius:16px;
font-weight:800;
text-decoration:none;
transition:0.35s;
cursor:pointer;
border:none;
position:relative;
z-index:50;
-webkit-tap-highlight-color:transparent;
touch-action:manipulation;
}

.green{
background:#25D366;
color:white;
box-shadow:0 15px 35px rgba(37,211,102,0.25);
}

.green:hover{
transform:translateY(-5px);
box-shadow:0 20px 40px rgba(37,211,102,0.35);
}

.dark{
background:#0B2A4A;
color:white;
}

.dark:hover{
transform:translateY(-5px);
background:#123b67;
}

.calc-btn{
background:white;
color:#111;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.calc-btn:hover{
transform:translateY(-5px);
}

/* =========================
HERO
========================= */

.hero{
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:20px;
padding:10px 70px 0;
min-height:72vh;
background:#f5f7fb;
overflow:hidden;
}

.hero-left{
position:relative;
z-index:100;
overflow:hidden;
}

.badge{
display:inline-flex;
align-items:center;
gap:10px;
padding:12px 18px;
background:white;
border-radius:999px;
font-weight:800;
margin-bottom:22px;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.hero-left h1{
font-size:92px;
line-height:0.92;
letter-spacing:-4px;
font-weight:900;
max-width:100%;
white-space:normal;
word-break:keep-all;
overflow-wrap:normal;
hyphens:none;
}

.hero-left h1 span{
display:block;
color:#1E5EFF;
}

.hero-left p{
font-size:20px;
line-height:1.6;
color:#555;
max-width:620px;
margin:30px 0;
}

.hero-buttons{
display:flex;
gap:18px;
flex-wrap:wrap;
position:relative;
z-index:200;
}

.hero-buttons .btn{
min-width:260px;
}

.hero-right{
display:flex;
justify-content:center;
align-items:center;
position:relative;
overflow:hidden;
pointer-events:none;
}

.hero-right::before{
content:"";
position:absolute;
width:500px;
height:500px;
background:radial-gradient(circle, rgba(30,94,255,0.12), transparent 70%);
filter:blur(20px);
}

.hero-van{
width:100%;
max-width:760px;
position:relative;
z-index:2;
mix-blend-mode:multiply;
filter:drop-shadow(0 30px 45px rgba(0,0,0,0.18));
animation:float 5s ease-in-out infinite;
}

@keyframes float{
0%{transform:translateY(0);}
50%{transform:translateY(-12px);}
100%{transform:translateY(0);}
}

/* =========================
TRUST BAR
========================= */

.trust{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
padding:24px 70px;
background:#0B2A4A;
margin-top:-10px;
}

.trust-box{
display:flex;
gap:18px;
padding:20px;
border-radius:18px;
color:white;
transition:0.35s;
}

.trust-box:hover{
background:rgba(255,255,255,0.06);
transform:translateY(-5px);
}

.trust-box i{
font-size:24px;
margin-top:2px;
}

.trust-box h4{
margin-bottom:8px;
font-size:16px;
}

.trust-box p{
font-size:14px;
line-height:1.6;
opacity:0.9;
}

/* =========================
SERVICES
========================= */

.services{
padding:110px 70px;
}

.title-area{
text-align:center;
margin-bottom:80px;
}

.title-area span{
color:#1E5EFF;
font-size:13px;
font-weight:800;
letter-spacing:1px;
}

.title-area h2{
font-size:58px;
font-weight:900;
margin-top:14px;
}

.service-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.service-card{
background:white;
padding:45px 35px;
border-radius:28px;
text-align:center;
box-shadow:0 20px 40px rgba(0,0,0,0.05);
transition:0.35s;
overflow:hidden;
}

.service-card:hover{
transform:translateY(-10px);
box-shadow:0 30px 60px rgba(0,0,0,0.08);
}

.service-card i{
font-size:46px;
color:#1E5EFF;
margin-bottom:22px;
}

.service-card h3{
font-size:30px;
margin-bottom:16px;
font-weight:900;
}

.service-card p{
line-height:1.7;
color:#666;
font-size:17px;
}

/* =========================
ABLAUF
========================= */

.steps{
padding:120px 70px;
background:white;
text-align:center;
}

.steps span{
color:#1E5EFF;
font-size:13px;
font-weight:800;
letter-spacing:1px;
}

.steps h2{
font-size:56px;
font-weight:900;
margin:20px 0 70px;
}

.steps-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.step{
padding:30px;
border-radius:24px;
transition:0.35s;
}

.step:hover{
transform:translateY(-8px);
background:#f8fbff;
}

.circle{
width:72px;
height:72px;
background:#1E5EFF;
color:white;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:24px;
font-weight:900;
margin:0 auto 24px;
box-shadow:0 16px 35px rgba(30,94,255,0.3);
}

/* =========================
CTA
========================= */

.cta{
padding:100px 20px;
text-align:center;
background:linear-gradient(135deg,#0B2A4A,#123b67);
color:white;
}

.cta span{
font-size:13px;
font-weight:800;
letter-spacing:1px;
}

.cta h2{
font-size:44px;
font-weight:900;
line-height:1.1;
margin:20px 0;
}

.cta p{
font-size:20px;
margin-bottom:40px;
opacity:0.9;
}

.contact-line{
display:flex;
justify-content:center;
gap:40px;
flex-wrap:wrap;
margin-bottom:45px;
}

.contact-line a{
color:white;
text-decoration:none;
font-weight:700;
}

.cta-btn{
font-size:20px;
padding:22px 40px;
}

/* =========================
FOOTER
========================= */

.footer{
padding:60px 20px;
background:#081d33;
text-align:center;
}

.footer-logo-img{
height:120px;
margin:auto;
margin-bottom:20px;
}

.footer p{
color:rgba(255,255,255,0.7);
font-size:15px;
}

/* =========================
WHATSAPP FLOAT
========================= */

.floating-whatsapp{
position:fixed;
right:22px;
bottom:22px;
width:74px;
height:74px;
background:#25D366;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:34px;
color:white;
text-decoration:none;
z-index:99999;
box-shadow:0 20px 40px rgba(37,211,102,0.4);
animation:pulse 2.5s infinite;
}

@keyframes pulse{
0%{box-shadow:0 0 0 0 rgba(37,211,102,0.4);}
70%{box-shadow:0 0 0 20px rgba(37,211,102,0);}
100%{box-shadow:0 0 0 0 rgba(37,211,102,0);}
}

/* =========================
CALCULATOR POPUP
========================= */

.calculator-overlay{
position:fixed;
inset:0;
background:rgba(0,0,0,0.55);
backdrop-filter:blur(8px);
display:none;
align-items:center;
justify-content:center;
z-index:999999;
padding:20px;
}

.calculator-popup{
width:100%;
max-width:700px;
background:white;
border-radius:28px;
padding:40px;
position:relative;
max-height:90vh;
overflow-y:auto;
box-shadow:0 30px 80px rgba(0,0,0,0.2);
animation:popupIn 0.35s ease;
}

@keyframes popupIn{
from{
opacity:0;
transform:scale(0.9);
}
to{
opacity:1;
transform:scale(1);
}
}

.close-popup{
position:absolute;
right:20px;
top:20px;
width:45px;
height:45px;
border:none;
border-radius:50%;
background:#f3f5f9;
font-size:28px;
cursor:pointer;
}

.calculator-header{
margin-bottom:35px;
}

.calculator-header span{
font-size:13px;
font-weight:800;
color:#1E5EFF;
letter-spacing:1px;
}

.calculator-header h2{
font-size:46px;
font-weight:900;
margin:14px 0;
line-height:1;
}

.calculator-header p{
color:#666;
font-size:18px;
line-height:1.6;
}

.calculator-form{
display:flex;
flex-direction:column;
gap:18px;
}

.calculator-form input,
.calculator-form select,
.calculator-form textarea{
width:100%;
padding:18px;
border-radius:16px;
border:1px solid #dfe5ef;
font-size:16px;
font-family:'Inter',sans-serif;
background:#f8faff;
outline:none;
}

.calculator-form textarea{
height:130px;
resize:none;
}

.checkboxes{
display:flex;
flex-direction:column;
gap:12px;
background:#f8fbff;
padding:18px;
border-radius:18px;
border:1px solid #e4ebf5;
}

.checkboxes label{
display:flex;
align-items:center;
gap:12px;
font-weight:600;
}

.price-result{
background:#0B2A4A;
color:white;
padding:24px;
border-radius:18px;
font-size:24px;
font-weight:800;
text-align:center;
}

.full-btn{
width:100%;
font-size:18px;
padding:22px;
justify-content:center;
}

.calc-step{
display:none;
}

.active-step{
display:block;
}

.calculator-progress{
width:100%;
height:10px;
background:#edf2fa;
border-radius:999px;
overflow:hidden;
margin-bottom:35px;
}

.calculator-progress-bar{
height:100%;
width:33%;
background:linear-gradient(90deg,#1E5EFF,#4A7DFF);
border-radius:999px;
transition:0.35s;
}

.step-buttons{
display:flex;
gap:16px;
}

.step-buttons .btn{
flex:1;
justify-content:center;
}

/* =========================
TABLET
========================= */

@media(max-width:1100px){

.nav{
padding:16px 24px;
}

.nav nav{
display:none;
}

.logo-img{
height:62px;
}

.hero{
grid-template-columns:1fr;
padding:30px 24px 0;
text-align:center;
}

.hero-left p{
margin:auto auto 35px;
}

.hero-buttons{
justify-content:center;
}

.hero-left h1{
font-size:74px;
}

.trust{
grid-template-columns:1fr 1fr;
padding:25px;
}

.service-grid,
.steps-grid{
grid-template-columns:1fr 1fr;
}

}

/* =========================
MOBILE
========================= */

@media(max-width:700px){

html,
body{
overflow-x:hidden !important;
max-width:100vw;
}

.nav{
padding:12px 12px;
gap:10px;
overflow:hidden;
}

.logo-img{
height:44px;
max-width:80px;
object-fit:contain;
flex-shrink:0;
}

.nav .btn{
padding:14px 18px;
font-size:15px;
min-width:auto;
}

.hero{
display:flex;
flex-direction:column;
padding:20px 16px 0;
gap:18px;
min-height:auto;
overflow:hidden;
}

.hero-left{
width:100%;
overflow:hidden;
}

.badge{
width:100%;
justify-content:center;
text-align:center;
font-size:14px;
padding:12px;
}

.hero-left h1{
font-size:64px;
line-height:0.9;
letter-spacing:-3px;
word-break:keep-all;
overflow-wrap:normal;
hyphens:none;
max-width:100%;
}

.hero-left p{
font-size:18px;
line-height:1.5;
max-width:100%;
margin:24px 0;
}

.hero-buttons{
display:flex;
flex-direction:column;
gap:14px;
width:100%;
}

.hero-buttons .btn{
width:100%;
min-width:100%;
}

.hero-right{
width:100%;
overflow:hidden;
}

.hero-van{
width:100%;
max-width:100%;
}

.trust{
grid-template-columns:1fr;
padding:22px 16px;
}

.services,
.steps,
.cta{
padding-left:16px;
padding-right:16px;
}

.service-grid,
.steps-grid{
grid-template-columns:1fr;
}

.service-card{
padding:36px 22px;
}

.service-card h3{
font-size:24px;
line-height:1.2;
word-break:normal;
}

.service-card p{
font-size:16px;
}

.title-area h2,
.steps h2,
.cta h2{
font-size:36px;
line-height:1.1;
}

.calculator-popup{
padding:24px 16px;
border-radius:22px;
}

.calculator-header h2{
font-size:32px;
}

.step-buttons{
flex-direction:column;
}

.step-buttons .btn{
width:100%;
}

.footer-logo-img{
height:72px;
}

.floating-whatsapp{
width:68px;
height:68px;
right:18px;
bottom:18px;
font-size:30px;
}

}