*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
}

body{
font-family:'Inter',sans-serif;
background:#f5f7fb;
overflow-x:hidden;
color:#111;
}

img{
max-width:100%;
display:block;
}

section{
scroll-margin-top:100px;
}

/* NAVIGATION */

.nav{
position:sticky;
top:0;
z-index:999;
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.4s;
}

.logo-img:hover{
transform:scale(1.04);
}

.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.35s;
}

.nav nav a:hover::after{
width:100%;
}

.nav nav a:hover{
color:#1E5EFF;
transform:translateY(-2px);
}

/* BUTTONS */

.btn{
display:inline-flex;
align-items:center;
justify-content:center;
gap:10px;
padding:16px 28px;
border-radius:14px;
font-weight:700;
text-decoration:none;
transition:0.35s;
cursor:pointer;
position:relative;
z-index:5;
-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(-6px) scale(1.03);
box-shadow:0 20px 45px rgba(37,211,102,0.4);
}

.dark{
background:#0B2A4A;
color:white;
}

.dark:hover{
transform:translateY(-6px);
background:#123b67;
}

/* HERO */

.hero{
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:20px;
padding:10px 70px 0;
min-height:72vh;
background:#f5f7fb;
}

.badge{
display:inline-flex;
align-items:center;
gap:10px;
padding:12px 18px;
background:white;
border-radius:999px;
font-weight:700;
margin-bottom:22px;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
transition:0.3s;
}

.badge:hover{
transform:translateY(-4px);
}

.hero-left h1{
font-size:88px;
line-height:0.9;
font-weight:900;
letter-spacing:-5px;
margin-bottom:20px;
}

.hero-left span{
color:#1E5EFF;
}

.hero-left p{
font-size:19px;
line-height:1.6;
color:#555;
max-width:560px;
margin-bottom:30px;
}

.hero-buttons{
display:flex;
gap:18px;
flex-wrap:wrap;
}

.hero-right{
display:flex;
justify-content:center;
align-items:center;
position:relative;
}

.hero-right::before{
content:"";
position:absolute;
width:500px;
height:500px;
background:radial-gradient(circle, rgba(30,94,255,0.12), transparent 70%);
z-index:0;
filter:blur(20px);
}

.hero-van{
position:relative;
z-index:2;
width:100%;
max-width:760px;
filter:drop-shadow(0 35px 45px rgba(0,0,0,0.18));
animation:float 5s ease-in-out infinite;
transition:0.5s;
mix-blend-mode:multiply;
}

.hero-van:hover{
transform:scale(1.03);
}

@keyframes float{
0%{transform:translateY(0px);}
50%{transform:translateY(-12px);}
100%{transform:translateY(0px);}
}

/* 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:22px;
border-radius:18px;
color:white;
transition:0.35s;
}

.trust-box:hover{
background:rgba(255,255,255,0.06);
transform:translateY(-6px);
}

.trust-box i{
font-size:25px;
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.4s;
position:relative;
overflow:hidden;
}

.service-card::before{
content:"";
position:absolute;
top:0;
left:-100%;
width:100%;
height:100%;
background:linear-gradient(90deg,transparent,rgba(255,255,255,0.6),transparent);
transition:0.8s;
}

.service-card:hover::before{
left:100%;
}

.service-card:hover{
transform:translateY(-12px);
box-shadow:0 35px 60px rgba(0,0,0,0.08);
}

.service-card i{
font-size:46px;
color:#1E5EFF;
margin-bottom:22px;
transition:0.4s;
}

.service-card:hover i{
transform:scale(1.15) rotate(-5deg);
}

.service-card h3{
margin-bottom:16px;
font-size:22px;
}

.service-card p{
line-height:1.7;
color:#666;
}

/* 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);
transition:0.35s;
}

.step:hover .circle{
transform:scale(1.08);
}

/* 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;
transition:0.3s;
}

.contact-line a:hover{
transform:translateY(-3px);
opacity:0.8;
}

.cta-btn{
font-size:20px;
padding:22px 40px;
}

/* FOOTER */

.footer{
padding:60px 20px;
background:#081d33;
text-align:center;
}

.footer-logo-img{
height:110px;
margin:auto;
margin-bottom:20px;
transition:0.4s;
}

.footer-logo-img:hover{
transform:scale(1.05);
}

.footer p{
color:rgba(255,255,255,0.7);
font-size:15px;
}

/* FLOATING WHATSAPP */

.floating-whatsapp{
position:fixed;
right:24px;
bottom:24px;
width:72px;
height:72px;
background:#25D366;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:34px;
color:white;
text-decoration:none;
z-index:999;
box-shadow:0 20px 40px rgba(37,211,102,0.4);
animation:pulse 2.5s infinite;
transition:0.35s;
}

.floating-whatsapp:hover{
transform:scale(1.08);
}

@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);}
}

/* MOBILE */

@media(max-width:1100px){

.hero{
grid-template-columns:1fr;
text-align:center;
padding:40px 25px 0;
}

.hero-left p{
margin:auto auto 35px;
}

.hero-buttons{
justify-content:center;
}

.hero-left h1{
font-size:62px;
}

.nav{
padding:16px 20px;
}

.nav nav{
display:none;
}

.trust{
grid-template-columns:1fr 1fr;
padding:25px;
}

.service-grid,
.steps-grid{
grid-template-columns:1fr 1fr;
}

.logo-img{
height:62px;
}

.footer-logo-img{
height:80px;
}

}

@media(max-width:700px){

.hero-left h1{
font-size:48px;
letter-spacing:-2px;
}

.title-area h2,
.steps h2,
.cta h2{
font-size:34px;
}

.trust,
.service-grid,
.steps-grid{
grid-template-columns:1fr;
}

.btn{
width:100%;
}

.logo-img{
height:52px;
}

.footer-logo-img{
height:65px;
}

.hero-buttons{
flex-direction:column;
}

}/* =========================================
CALCULATOR BUTTON
========================================= */

.calc-btn{
background:white;
border:none;
color:#111;
box-shadow:0 12px 30px rgba(0,0,0,0.08);
}

.calc-btn:hover{
transform:translateY(-6px);
}

/* =========================================
POPUP OVERLAY
========================================= */

.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:99999;
padding:20px;
}

/* =========================================
POPUP
========================================= */

.calculator-popup{
width:100%;
max-width:700px;
background:white;
border-radius:28px;
padding:40px;
position:relative;
animation:popupIn 0.35s ease;
max-height:90vh;
overflow-y:auto;
box-shadow:0 30px 80px rgba(0,0,0,0.2);
}

@keyframes popupIn{
from{
opacity:0;
transform:scale(0.9);
}
to{
opacity:1;
transform:scale(1);
}
}

/* =========================================
CLOSE BUTTON
========================================= */

.close-popup{
position:absolute;
right:20px;
top:20px;
width:45px;
height:45px;
border:none;
border-radius:50%;
background:#f3f5f9;
font-size:28px;
cursor:pointer;
transition:0.3s;
}

.close-popup:hover{
transform:rotate(90deg);
background:#e9edf5;
}

/* =========================================
HEADER
========================================= */

.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;
}

/* =========================================
FORM
========================================= */

.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;
transition:0.3s;
}

.calculator-form input:focus,
.calculator-form select:focus,
.calculator-form textarea:focus{
border-color:#1E5EFF;
background:white;
box-shadow:0 0 0 4px rgba(30,94,255,0.08);
}

.calculator-form textarea{
height:130px;
resize:none;
}

/* =========================================
CHECKBOXES
========================================= */

.checkboxes{
display:flex;
flex-direction:column;
gap:12px;
padding:10px 0;
}

.checkboxes label{
display:flex;
align-items:center;
gap:12px;
font-weight:600;
font-size:15px;
}

.checkboxes input{
width:18px;
height:18px;
}

/* =========================================
PRICE RESULT
========================================= */

.price-result{
background:#0B2A4A;
color:white;
padding:24px;
border-radius:18px;
font-size:24px;
font-weight:800;
text-align:center;
margin-top:10px;
box-shadow:0 20px 45px rgba(11,42,74,0.2);
}

/* =========================================
FULL BUTTON
========================================= */

.full-btn{
width:100%;
font-size:18px;
padding:22px;
margin-top:10px;
justify-content:center;
}

/* =========================================
MOBILE
========================================= */

@media(max-width:700px){

.calculator-popup{
padding:28px 22px;
border-radius:22px;
}

.calculator-header h2{
font-size:34px;
}

.calculator-header p{
font-size:16px;
}

.price-result{
font-size:20px;
padding:20px;
}

.full-btn{
font-size:16px;
padding:18px;
}

}

/* =========================================
MULTI STEP FIX
========================================= */

.calc-step{
display:none;
animation:fadeStep 0.35s ease;
}

.active-step{
display:block;
}

@keyframes fadeStep{
from{
opacity:0;
transform:translateY(10px);
}
to{
opacity:1;
transform:translateY(0);
}
}

/* =========================================
PROGRESS BAR
========================================= */

.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
========================================= */

.step-buttons{
display:flex;
gap:16px;
margin-top:10px;
}

.step-buttons .btn{
flex:1;
justify-content:center;
}

/* =========================================
SECTION TITLES
========================================= */

.checkboxes h3{
font-size:17px;
margin-bottom:8px;
color:#111;
font-weight:800;
}

/* =========================================
CHECKBOX AREA BETTER
========================================= */

.checkboxes{
background:#f8fbff;
padding:18px;
border-radius:18px;
border:1px solid #e4ebf5;
}

/* =========================================
BETTER MOBILE
========================================= */

@media(max-width:700px){

.step-buttons{
flex-direction:column;
}

.calculator-popup{
padding:24px 18px;
}

.calculator-header h2{
font-size:30px;
line-height:1;
}

.calculator-header p{
font-size:15px;
}

}

/* =========================================
MOBILE FIX
========================================= */

@media(max-width:700px){

.hero{
padding:0 18px;
min-height:auto;
gap:10px;
}

.hero-right{
margin-top:-20px;
}

.hero-van{
width:100%;
max-width:100%;
}

.hero-buttons{
width:100%;
flex-direction:column;
}

.hero-buttons .btn{
width:100%;
}

.service-card{
padding:35px 24px;
}

.service-card h3{
font-size:18px;
word-break:break-word;
}

.service-card p{
font-size:15px;
line-height:1.6;
}

.floating-whatsapp{
width:68px;
height:68px;
right:18px;
bottom:18px;
font-size:30px;
}

.calculator-popup{
padding:22px 16px;
}

}

.hero-right,
.hero-right::before,
.hero-van{
pointer-events:none;
}

.hero-buttons{
position:relative;
z-index:50;
}

.hero-left{
position:relative;
z-index:50;
}

.btn{
position:relative;
z-index:60;
}

@media(max-width:700px){

.hero{
padding-top:10px;
}

.hero-right{
margin-top:-10px;
}

.hero-buttons{
width:100%;
flex-direction:column;
position:relative;
z-index:100;
}

.hero-buttons .btn{
width:100%;
}

}

html,
body{
overflow-x:hidden !important;
max-width:100%;
}

@media(max-width:700px){

body{
overflow-x:hidden !important;
width:100%;
position:relative;
}

.nav{
overflow:hidden;
}

.hero{
overflow:hidden;
padding-left:18px;
padding-right:18px;
}

.hero-right{
overflow:hidden;
width:100%;
}

.hero-van{
max-width:115%;
width:115%;
transform:translateX(-6%);
}

.hero-buttons{
width:100%;
}

.hero-buttons .btn{
width:100%;
max-width:100%;
}

.service-grid,
.services,
.steps,
.cta,
.footer{
overflow:hidden;
}

.floating-whatsapp{
right:18px;
bottom:18px;
}

}