:root{
    --black:#050505;
    --red:#e30613;
    --red-dark:#a8000b;
    --yellow:#ffcc00;
    --white:#fff;
    --line:rgba(255,255,255,.12);
    --shadow:0 24px 70px rgba(0,0,0,.35);
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
    margin:0;
    font-family:Inter,Segoe UI,Roboto,Arial,sans-serif;
    background:#050505;
    color:#fff;
    line-height:1.6;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

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

.site-header{
    position:sticky;
    top:0;
    z-index:20;
    background:rgba(5,5,5,.9);
    backdrop-filter:blur(14px);
    border-bottom:1px solid var(--line);
}

.nav{
    min-height:76px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:24px;
}

.brand img{height:52px}

.nav-links{
    display:flex;
    gap:24px;
    font-size:.95rem;
    font-weight:600;
    letter-spacing:.01em;
    color:#f1f1f1;
    align-items:center;
    flex-wrap:wrap;
}

.nav-links a{white-space:nowrap}

.nav-links a:hover{
    color:var(--yellow);
    opacity:1;
}

.hero,
.service-hero{
    position:relative;
    overflow:hidden;
    background:
        radial-gradient(circle at top right,rgba(227,6,19,.34),transparent 32%),
        radial-gradient(circle at bottom left,rgba(255,204,0,.14),transparent 28%),
        linear-gradient(135deg,#050505 0%,#160000 55%,#070707 100%);
}

.hero{
    min-height:680px;
    display:flex;
    align-items:center;
}

.hero:before,
.service-hero:before{
    content:"";
    position:absolute;
    inset:0;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);
    background-size:42px 42px;
}

.hero-content{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:72px;
    align-items:center;
    padding:110px 0 95px;
}

.service-hero{
    padding:105px 0 78px;
}

.service-hero .container{
    position:relative;
    z-index:2;
}

.eyebrow,
.section-kicker{
    color:var(--yellow);
    text-transform:uppercase;
    font-weight:800;
    letter-spacing:.14em;
    font-size:.78rem;
}

.hero h1{
    font-size:clamp(3rem,5vw,5.2rem);
    line-height:1.04;
    font-weight:800;
    letter-spacing:-2.2px;
    max-width:920px;
    margin:18px 0 26px;
    color:#ffffff;
}

.hero-subtitle{
    font-size:1.18rem;
    line-height:1.85;
    color:rgba(255,255,255,.82);
    max-width:780px;
    margin:0 0 40px;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:52px;
    padding:15px 28px;
    border-radius:999px;
    font-weight:800;
    letter-spacing:.01em;
    transition:.25s ease;
}

.btn-primary{
    background:linear-gradient(135deg,var(--red),var(--red-dark));
    box-shadow:0 16px 38px rgba(227,6,19,.26);
}

.btn-primary:hover{
    transform:translateY(-3px);
    box-shadow:0 20px 46px rgba(227,6,19,.34);
}

.btn-secondary{
    border:1px solid rgba(255,255,255,.3);
}

.btn-secondary:hover{
    background:rgba(255,255,255,.08);
    transform:translateY(-3px);
}

.hero-card{
    padding:40px;
    border:1px solid rgba(255,255,255,.14);
    background:linear-gradient(180deg,rgba(255,255,255,.10),rgba(255,255,255,.04));
    border-radius:32px;
    box-shadow:0 30px 80px rgba(0,0,0,.42);
    backdrop-filter:blur(18px);
}

.hero-card img{
    width:230px;
    margin-bottom:22px;
}

.hero-card h2{
    margin:0 0 14px;
    color:var(--yellow);
    font-size:2.1rem;
    letter-spacing:-1px;
}

.hero-card p{
    color:#d9d9d9;
    line-height:1.8;
}

.status-list{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:22px;
}

.status-list span{
    padding:10px 14px;
    border-radius:999px;
    background:rgba(255,255,255,.09);
    border:1px solid rgba(255,255,255,.14);
    font-size:.9rem;
    color:#f3f3f3;
    font-weight:600;
    letter-spacing:.01em;
    backdrop-filter:blur(10px);
    transition:.25s ease;
}

.status-list span:hover{
    background:rgba(255,204,0,.12);
    border-color:rgba(255,204,0,.32);
    transform:translateY(-2px);
}

.section{padding:92px 0}
.section-light{background:#f5f5f5;color:#111}
.section-dark{background:radial-gradient(circle at top left,rgba(227,6,19,.18),transparent 28%),#0c0c0c}

.split{
    display:grid;
    grid-template-columns:.8fr 1.2fr;
    gap:56px;
    align-items:start;
}

h2{
    margin:0;
    font-size:clamp(2rem,4vw,3.2rem);
    line-height:1.05;
    letter-spacing:-.04em;
}

.lead-text{
    font-size:1.08rem;
    color:#333;
}

.section-heading{
    max-width:850px;
    margin:0 auto 42px;
    text-align:center;
}

.section-heading p{color:#cfcfcf}
.section-light .section-heading p{color:#333}

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

.solution-card{
    position:relative;
    overflow:hidden;
    min-height:300px;
    padding:30px;
    border-radius:28px;
    border:1px solid rgba(255,255,255,.11);
    background:linear-gradient(180deg,#161616,#0e0e0e);
    box-shadow:0 18px 48px rgba(0,0,0,.25);
    transition:.25s;
}

.solution-card:hover{
    transform:translateY(-6px);
    border-color:rgba(255,204,0,.35);
}

.solution-card.featured{
    background:linear-gradient(180deg,rgba(227,6,19,.24),rgba(12,12,12,1)),#111;
}

.icon{
    width:48px;
    height:48px;
    border-radius:16px;
    display:grid;
    place-items:center;
    background:rgba(255,204,0,.13);
    color:var(--yellow);
    font-size:1.5rem;
    margin-bottom:20px;
}

.solution-card h3{
    margin:0 0 12px;
    font-size:1.3rem;
}

.solution-card p{
    margin:0;
    color:#cfcfcf;
}

.card-link{
    display:inline-flex;
    margin-top:20px;
    color:var(--yellow);
    font-weight:900;
}

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

.benefit{
    padding:28px;
    border-radius:26px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.1);
}

.benefit strong{
    display:block;
    color:var(--yellow);
    font-size:1.55rem;
    margin-bottom:10px;
}

.benefit span{color:#d6d6d6}

.cta-panel{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    padding:46px;
    border-radius:34px;
    background:radial-gradient(circle at right,rgba(227,6,19,.18),transparent 30%),#111;
    color:#fff;
    box-shadow:var(--shadow);
}

.cta-panel p{
    max-width:720px;
    color:#d7d7d7;
}

.contact-section{
    background:radial-gradient(circle at top,rgba(255,204,0,.1),transparent 30%),#070707;
}

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

.contact-card{
    display:block;
    padding:28px;
    border-radius:24px;
    background:#121212;
    border:1px solid rgba(255,255,255,.11);
    transition:.25s;
}

.contact-card:hover{
    transform:translateY(-4px);
    border-color:rgba(227,6,19,.45);
}

.contact-card span{
    display:block;
    color:var(--yellow);
    font-weight:800;
    margin-bottom:8px;
}

.contact-card strong{
    color:#fff;
    font-size:1.05rem;
}

.whatsapp-float{
    position:fixed;
    right:22px;
    bottom:22px;
    z-index:30;
    padding:14px 18px;
    border-radius:999px;
    background:#25d366;
    color:#081b0d;
    font-weight:900;
    box-shadow:0 14px 40px rgba(0,0,0,.35);
}

.footer{
    border-top:1px solid var(--line);
    background:#020202;
    padding:28px 0;
}

.footer-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    color:#aaa;
}

.footer img{height:42px}

.breadcrumb{
    color:#cfcfcf;
    font-size:.92rem;
    margin-bottom:26px;
}

.breadcrumb a{
    color:var(--yellow);
    font-weight:800;
}

.service-layout{
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:42px;
    align-items:start;
}

.content-box{
    background:#fff;
    color:#171717;
    border-radius:32px;
    padding:42px;
    box-shadow:var(--shadow);
}

.content-box h2{
    font-size:2rem;
    margin:28px 0 14px;
}

.content-box h2:first-child{margin-top:0}
.content-box p,
.content-box li{color:#333}
.content-box li{margin-bottom:10px}

.sidebar-card{
    position:sticky;
    top:100px;
    background:linear-gradient(180deg,#171717,#0d0d0d);
    border:1px solid rgba(255,255,255,.12);
    border-radius:30px;
    padding:30px;
    box-shadow:var(--shadow);
}

.sidebar-card h3{
    margin:0 0 12px;
    color:var(--yellow);
    font-size:1.45rem;
}

.sidebar-card p{color:#d0d0d0}

.service-list{
    display:grid;
    gap:12px;
    margin:22px 0;
}

.service-list a{
    padding:14px 16px;
    border-radius:16px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.12);
    color:#ffffff !important;
    text-decoration:none;
    font-weight:600;
    font-size:15px;
    line-height:1.4;
    display:flex;
    align-items:center;
    justify-content:space-between;
    transition:all .25s ease;
}

.service-list a:hover{
    background:rgba(227,6,19,.15);
    border-color:rgba(227,6,19,.45);
    color:#ffffff !important;
    transform:translateX(4px);
}

.faq-item{
    border-top:1px solid #ddd;
    padding:18px 0;
}

.faq-item h3{
    margin:0 0 8px;
    color:#111;
    font-size:1.08rem;
}

.local-seo{
    padding:28px;
    border-radius:24px;
    background:#f7f7f7;
    border:1px solid #e3e3e3;
    margin-top:24px;
}

@media(max-width:980px){
    .nav{
        flex-direction:column;
        padding:16px 0;
    }

    .nav-links{
        justify-content:center;
    }

    .hero-content,
    .split,
    .service-layout{
        grid-template-columns:1fr;
    }

    .hero{
        min-height:auto;
    }

    .hero-card{
        max-width:520px;
    }

    .solutions-grid,
    .benefits-grid,
    .contact-grid{
        grid-template-columns:1fr 1fr;
    }

    .cta-panel{
        flex-direction:column;
        align-items:flex-start;
    }

    .sidebar-card{
        position:static;
    }
}

@media(max-width:640px){
    .container{
        width:90%;
    }

    .brand img{
        height:44px;
    }

    .nav-links{
        font-size:.84rem;
        gap:14px;
    }

    .hero-content{
        padding:58px 0;
    }

    .hero h1,
    .service-hero h1{
        font-size:2.55rem;
        letter-spacing:-1.2px;
    }

    .hero-subtitle{
        font-size:1.05rem;
        line-height:1.75;
    }

    .section{
        padding:64px 0;
    }

    .solutions-grid,
    .benefits-grid,
    .contact-grid{
        grid-template-columns:1fr;
    }

    .solution-card{
        min-height:auto;
    }

    .hero-card,
    .content-box,
    .sidebar-card{
        padding:24px;
        border-radius:24px;
    }

    .footer-content{
        flex-direction:column;
        text-align:center;
    }

    .whatsapp-float{
        right:14px;
        bottom:14px;
    }
}
