:root{
    --dark:#0f172a;
    --primary:#0ea5e9;
    --primary-2:#0284c7;
    --accent:#f97316;
    --white:#ffffff;
    --text:#1f2937;
    --muted:#64748b;
    --success-bg:#dcfce7;
    --success-text:#166534;
    --error-bg:#fee2e2;
    --error-text:#991b1b;
    --shadow:0 20px 50px rgba(15,23,42,.12);
    --radius:20px;
}

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    font-family:Arial, Helvetica, sans-serif;
    color:var(--text);
    background:linear-gradient(180deg,#eff6ff 0%, #f8fafc 100%);
    line-height:1.6;
}

a{
    text-decoration:none;
}

.container{
    width:min(1150px, 92%);
    margin:auto;
}

.topbar{
    background:var(--dark);
    color:#fff;
    padding:14px 0;
    font-size:14px;
}

.topbar-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:16px;
    flex-wrap:wrap;
}

.topbar a{
    color:#fff;
    font-weight:700;
}

.hero-illustration{
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-illustration svg{
    width:100%;
    max-width:420px;
    height:auto;
    display:block;
}

.why-strip{
    background:#fff;
    padding:50px 0;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:18px;
}

.why-item{
background:#f8fafc;
border:1px solid #e5e7eb;
border-radius:16px;
padding:20px;
font-weight:700;
color:var(--dark);
box-shadow:var(--shadow);
transition:.2s ease;
}

.why-item:hover{
transform:translateY(-4px);
box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

@media (max-width:1000px){
    .why-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media (max-width:680px){
    .why-grid{
        grid-template-columns:1fr;
    }
}
.hero{
    background:
        radial-gradient(circle at top right, rgba(14,165,233,.18), transparent 30%),
        radial-gradient(circle at left bottom, rgba(249,115,22,.16), transparent 28%),
        linear-gradient(135deg, #0f172a 0%, #1d4ed8 48%, #0ea5e9 100%);
    color:#fff;
    padding:80px 0 70px;
}

.hero-grid{
display:grid;
grid-template-columns:1.1fr .9fr;
gap:40px;
align-items:center;
}

.badge{
    display:inline-block;
    background:rgba(255,255,255,.14);
    border:1px solid rgba(255,255,255,.25);
    color:#fff;
    padding:8px 14px;
    border-radius:999px;
    font-size:14px;
    font-weight:700;
    margin-bottom:18px;
}

.hero h1{
    font-size:clamp(34px, 5vw, 58px);
    line-height:1.1;
    margin:0 0 16px;
    letter-spacing:-1px;
}

.hero p{
    font-size:18px;
    max-width:720px;
    color:rgba(255,255,255,.92);
    margin:0 0 26px;
}

.hero-actions{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    margin-bottom:22px;
}

.btn{
    display:inline-block;
    padding:15px 22px;
    border-radius:14px;
    font-weight:700;
}

.btn-primary{
    background:var(--accent);
    color:#fff;
    box-shadow:0 10px 25px rgba(249,115,22,.35);
}

.btn-secondary{
    background:rgba(255,255,255,.12);
    color:#fff;
    border:1px solid rgba(255,255,255,.24);
}

.hero-card{
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.18);
    padding:26px;
    border-radius:24px;
    box-shadow:var(--shadow);
}

.hero-card h3{
    margin:0 0 14px;
    font-size:24px;
}

.hero-card li{
    margin-bottom:10px;
    color:#f8fafc;
}

section{
    padding:70px 0;
}

.section-title{
    text-align:center;
    max-width:760px;
    margin:0 auto 40px;
}

.section-title h2{
    margin:0 0 12px;
    font-size:clamp(28px, 4vw, 42px);
    color:var(--dark);
}

.section-title p{
    margin:0;
    color:var(--muted);
    font-size:17px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.card{
    background:var(--white);
    border-radius:var(--radius);
    padding:28px;
    box-shadow:var(--shadow);
    border:1px solid #e5e7eb;
}

.card .icon{
    width:56px;
    height:56px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    margin-bottom:16px;
    background:linear-gradient(135deg, #e0f2fe, #ffedd5);
}

.card-link{
    text-decoration:none;
    color:var(--text);
    display:block;
    transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.card-link:hover{
    transform:translateY(-6px);
    box-shadow:0 24px 50px rgba(15,23,42,.14);
    border-color:#cbd5e1;
}

.card-link h3{
    color:var(--dark);
}

.card-link p{
    color:var(--text);
}


.split{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:28px;
}

.panel{
    background:var(--white);
    border-radius:var(--radius);
    box-shadow:var(--shadow);
    padding:34px;
    border:1px solid #e5e7eb;
}

.check-list{
    list-style:none;
    padding:0;
    margin:20px 0 0;
}

.check-list li{
    margin:0 0 12px;
    padding-left:30px;
    position:relative;
}

.check-list li:before{
    content:"✔";
    position:absolute;
    left:0;
    color:var(--primary-2);
    font-weight:700;
}

.areas{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
    margin-top:24px;
}

.area-pill{
    background:#e0f2fe;
    color:#075985;
    padding:14px 16px;
    border-radius:14px;
    text-align:center;
    font-weight:700;
}

/* FORM */

.form-card{
    background:var(--white);
    border-radius:24px;
    padding:34px;
    box-shadow:var(--shadow);
    border:1px solid #e5e7eb;
}

.form-grid-3{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;
}

.form-grid-4{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:14px;
}

.field{
    margin-bottom:16px;
}

.field-full{
    grid-column:1 / -1;
}

.location-block{
    margin-top:22px;
    margin-bottom:22px;
    padding:22px;
    background:#f8fafc;
    border:1px solid #e2e8f0;
    border-radius:18px;
}

.location-block h4{
    margin:0 0 16px;
    color:var(--dark);
    font-size:20px;
}

.area-link{
    display:block;
    text-decoration:none;
    transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.area-link:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 24px rgba(15,23,42,.10);
    background:#bae6fd;
}


.hidden-fields{
    display:none;
}

label{
    display:block;
    font-weight:700;
    margin-bottom:8px;
    color:var(--dark);
}

input,
select,
textarea{
    width:100%;
    padding:14px 15px;
    border:1px solid #cbd5e1;
    border-radius:14px;
    font-size:15px;
    outline:none;
    background:#fff;
}

input:focus,
select:focus,
textarea:focus{
    border-color:var(--primary);
    box-shadow:0 0 0 4px rgba(14,165,233,.12);
}

textarea{
    min-height:130px;
    resize:vertical;
}
.form-trust{
font-size:14px;
color:#64748b;
margin-bottom:12px;
}

.form-btn{
    background:linear-gradient(135deg, var(--accent), #fb923c);
    color:#fff;
    border:none;
    width:100%;
    padding:16px;
    font-size:17px;
    font-weight:700;
    border-radius:16px;
    cursor:pointer;
    box-shadow:0 12px 30px rgba(249,115,22,.28);
}

.price-guide{
margin-top:25px;
padding:20px;
background:#f8fafc;
border:1px solid #e5e7eb;
border-radius:16px;
}

.price-guide h4{
margin-bottom:14px;
font-size:18px;
color:var(--dark);
}

.price-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:12px;
}

.price-item{
background:white;
padding:12px;
border-radius:10px;
border:1px solid #e5e7eb;
text-align:center;
}

.price-item strong{
display:block;
font-size:14px;
margin-bottom:4px;
}

.price-item span{
color:#0284c7;
font-weight:700;
}

.price-note{
margin-top:10px;
font-size:13px;
color:#64748b;
}

.success{
    background:var(--success-bg);
    color:var(--success-text);
    padding:14px 16px;
    border-radius:14px;
    margin-bottom:18px;
    font-weight:700;
}

.error{
    background:var(--error-bg);
    color:var(--error-text);
    padding:14px 16px;
    border-radius:14px;
    margin-bottom:18px;
    font-weight:700;
}

.testimonials{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.testimonial{
    background:#fff;
    border-radius:20px;
    padding:26px;
    box-shadow:var(--shadow);
    border:1px solid #e5e7eb;
}

.stars{
    color:#f59e0b;
    font-size:18px;
    margin-bottom:10px;
}

.faq{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:22px;
}

.faq-item{
    background:#fff;
    border-radius:20px;
    padding:24px;
    box-shadow:var(--shadow);
    border:1px solid #e5e7eb;
}

footer{
    background:var(--dark);
    color:#cbd5e1;
    padding:34px 0;
}

.footer-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:16px;
    flex-wrap:wrap;
}

footer a{
    color:#fff;
    font-weight:700;
}

/* RESPONSIVE */

@media (max-width:1100px){
    .form-grid-4{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media (max-width:1000px){
    .hero-grid,
    .split,
    .faq{
        grid-template-columns:1fr;
    }

    .cards,
    .testimonials{
        grid-template-columns:repeat(2,1fr);
    }

    .areas{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width:700px){
    .form-grid-4{
        grid-template-columns:1fr;
    }
}

@media (max-width:680px){
    .cards,
    .testimonials,
    .areas,
    .form-grid-3,
    .form-grid-4{
        grid-template-columns:1fr;
    }

    .hero{
        padding:60px 0 50px;
    }

    .hero p{
        font-size:16px;
    }

    .topbar-inner{
        justify-content:center;
        text-align:center;
    }

    .hero-actions{
        flex-direction:column;
    }

    .btn{
        text-align:center;
    }
}