:root{
    --bg:#08111f;
    --bg-soft:#101a2d;
    --bg-soft-2:#0d1526;
    --card:#13203a;
    --card-2:#172845;
    --line:rgba(255,255,255,.08);
    --text:#eef4ff;
    --muted:#9eb2d2;
    --primary:#f97316;
    --primary-2:#ea580c;
    --accent:#38bdf8;
    --success:#22c55e;
    --danger:#ef4444;
    --white:#ffffff;
    --shadow:0 20px 60px rgba(0,0,0,.30);
    --shadow-soft:0 10px 30px rgba(0,0,0,.20);
    --radius:22px;
    --radius-sm:14px;
    --container:1180px;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
    margin:0;
    font-family:Arial,Helvetica,sans-serif;
    background:var(--bg);
    color:var(--text);
    line-height:1.6;
}

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

.container{
    width:min(100% - 32px, var(--container));
    margin-inline:auto;
}

/* HEADER */
.site-header{
    position:sticky;
    top:0;
    z-index:1000;
    background:#1f1f23 !important;
    border-bottom:1px solid rgba(255,255,255,.06);
    box-shadow:0 8px 30px rgba(0,0,0,.35);
}

.header-wrap{
    min-height:88px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    flex-wrap:nowrap;
}

.logo{
    font-size:1.5rem;
    font-weight:900;
    letter-spacing:.4px;
}

.logo-img{
    width:200px;
    min-width:200px;
    max-width:200px;
    overflow:hidden;
    flex-shrink:0;
}

.logo-img img{
    width:100%;
    height:auto;
    display:block;
}

/* NAV DESKTOP PRO */
.nav,
.desktop-nav{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    flex:1;
}

.nav a,
.desktop-nav a{
    position:relative;
    color:#eef4ff !important;
    font-weight:800;
    font-size:.88rem;
    white-space:nowrap;
    padding:10px 14px;
    border-radius:999px;
    transition:.22s ease;
}

.nav a:hover,
.desktop-nav a:hover{
    color:#ffffff !important;
    background:rgba(255,255,255,.07);
}

.nav a::after,
.desktop-nav a::after{
    content:'';
    position:absolute;
    left:16px;
    right:16px;
    bottom:5px;
    height:2px;
    background:var(--primary);
    transform:scaleX(0);
    transform-origin:center;
    transition:.22s ease;
    border-radius:999px;
}

.nav a:hover::after,
.desktop-nav a:hover::after{
    transform:scaleX(1);
}

.header-actions{
    display:flex;
    align-items:center;
    gap:14px;
    flex-shrink:0;
}

.desktop-call{
    white-space:nowrap;
    padding:11px 17px;
    border-radius:13px;
    font-size:.9rem;
}

/* BUTTONS */
.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 18px;
    border-radius:14px;
    font-weight:800;
    transition:.22s ease;
    border:none;
    cursor:pointer;
}

.btn:hover{
    transform:translateY(-1px);
}

.btn-lg{
    padding:14px 22px;
}

.btn-primary{
    background:linear-gradient(180deg,var(--primary),var(--primary-2));
    color:var(--white);
    box-shadow:0 10px 24px rgba(249,115,22,.28);
    position:relative;
    overflow:hidden;
}

.btn-primary::after{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(120deg, transparent, rgba(255,255,255,.25), transparent);
    opacity:0;
    transition:.3s;
}

.btn-primary:hover::after{
    opacity:1;
}

.btn-secondary{
    border:1px solid var(--line);
    color:var(--white);
    background:transparent;
}

.btn-glass{
    border:1px solid rgba(255,255,255,.14);
    background:rgba(255,255,255,.05);
    color:var(--white);
    backdrop-filter:blur(10px);
}

.full{
    width:100%;
}

/* MOBILE MENU */
.menu-toggle{
    display:none;
    width:48px;
    height:48px;
    padding:0;
    border-radius:14px;
    border:1px solid rgba(255,255,255,.18);
    background:rgba(255,255,255,.08);
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
}

.menu-toggle span{
    display:block;
    width:20px;
    height:2px;
    background:#fff;
    transition:.22s ease;
}

.menu-toggle.is-active span:nth-child(1){
    transform:translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2){
    opacity:0;
}

.menu-toggle.is-active span:nth-child(3){
    transform:translateY(-7px) rotate(-45deg);
}

.mobile-menu{
    display:none;
    border-top:1px solid rgba(255,255,255,.10);
    background:#1f232b;
}

.mobile-menu.is-open{
    display:block;
}

.mobile-menu-inner{
    display:flex;
    flex-direction:column;
    gap:10px;
    padding:16px 0 18px;
}

.mobile-menu-inner a{
    color:#eef4ff;
    padding:12px 0;
    border-bottom:1px solid rgba(255,255,255,.06);
}

.mobile-menu-inner a:last-child{
    border-bottom:none;
}

.mobile-menu-call{
    margin-top:8px;
}

/* HERO */
.hero{
    position:relative;
    overflow:hidden;
}

.hero-premium{
    padding:88px 0 64px;
    position:relative;
    background:
        linear-gradient(120deg, rgba(8,17,31,.96), rgba(8,17,31,.75)),
        url('/assets/img/hero-bg.jpg') center/cover no-repeat;
}

.hero-premium::after{
    content:'';
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 80% 20%, rgba(56,189,248,.12), transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(249,115,22,.15), transparent 45%);
    pointer-events:none;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at top right, rgba(56,189,248,.10), transparent 28%),
        radial-gradient(circle at left center, rgba(249,115,22,.12), transparent 32%);
    pointer-events:none;
}

.hero-premium-grid{
    position:relative;
    z-index:1;
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:30px;
    align-items:center;
}

.hero-content h1{
    font-size:clamp(2.2rem,5vw,4.5rem);
    line-height:1.04;
    margin:0 0 16px;
    max-width:800px;
    text-shadow:0 6px 30px rgba(0,0,0,.55);
}

.hero-text{
    font-size:1.08rem;
    color:#dbe7fb;
    text-shadow:0 4px 20px rgba(0,0,0,.45);
}

.eyebrow,
.section-kicker{
    display:inline-block;
    font-size:.82rem;
    font-weight:900;
    letter-spacing:.16em;
    color:#ffb37a;
    margin-bottom:12px;
}

.hero-actions{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    margin-top:26px;
}

.hero-points{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:24px;
}

.hero-points span{
    padding:8px 12px;
    border-radius:999px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
    color:#dbe7fb;
    font-size:.92rem;
}

.hero-panel{
    display:flex;
    justify-content:flex-end;
}

.hero-panel-card{
    width:100%;
    max-width:390px;
    border-radius:28px;
    padding:28px;
    background:linear-gradient(180deg, rgba(19,32,58,.85), rgba(14,24,43,.92));
    border:1px solid rgba(255,255,255,.12);
    backdrop-filter:blur(10px);
    box-shadow:0 30px 80px rgba(0,0,0,.45);
}

.hero-panel-card h3{
    margin:0 0 10px;
    font-size:1.6rem;
}

.hero-panel-card p{
    color:var(--muted);
    margin-bottom:18px;
}

.service-checks{
    list-style:none;
    margin:0 0 22px;
    padding:0;
}

.service-checks li{
    position:relative;
    padding-left:26px;
    margin-bottom:12px;
}

.service-checks li::before{
    content:'✓';
    position:absolute;
    left:0;
    top:0;
    color:#7dd3fc;
    font-weight:900;
}

/* SECTIONS */
.section{
    padding:72px 0;
}

.section-dark{
    background:linear-gradient(180deg, var(--bg-soft), var(--bg-soft-2));
}

.section-head{
    max-width:760px;
    margin-bottom:28px;
}

.section-head h2{
    font-size:clamp(1.8rem,4vw,2.8rem);
    line-height:1.1;
    margin:0 0 12px;
}

.section-head p{
    margin:0;
    color:var(--muted);
}

/* STATS */
.stats-strip{
    padding:0 0 36px;
}

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

.stat-box{
    background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
    border:1px solid var(--line);
    border-radius:20px;
    padding:20px;
    text-align:center;
    box-shadow:var(--shadow-soft);
}

.stat-box strong{
    display:block;
    font-size:1.1rem;
    margin-bottom:6px;
}

.stat-box span{
    color:var(--muted);
}

/* CARDS */
.cards{
    display:grid;
    gap:20px;
}

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

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

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

.card{
    background:linear-gradient(180deg, rgba(19,32,58,.95), rgba(15,24,42,.95));
    border:1px solid var(--line);
    border-radius:24px;
    padding:24px;
    box-shadow:var(--shadow-soft);
}

.premium-card{
    transition:.22s ease;
}

.premium-card:hover{
    transform:translateY(-4px);
    border-color:rgba(249,115,22,.28);
}

.card-icon{
    width:52px;
    height:52px;
    display:grid;
    place-items:center;
    border-radius:16px;
    margin-bottom:16px;
    background:rgba(249,115,22,.12);
    font-size:1.4rem;
}

.card h3{
    margin:0 0 10px;
    font-size:1.2rem;
}

.card p{
    margin:0;
    color:var(--muted);
}

.text-link{
    display:inline-block;
    margin-top:14px;
    color:#ffb37a;
    font-weight:700;
}

/* WHY */
.why-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:28px;
    align-items:center;
}

.why-grid h2{
    font-size:clamp(1.8rem,4vw,2.8rem);
    line-height:1.1;
    margin:0 0 14px;
}

.why-grid p{
    color:var(--muted);
}

.feature-list{
    display:grid;
    gap:18px;
    margin-top:24px;
}

.feature-item{
    padding:18px 20px;
    border:1px solid var(--line);
    border-radius:20px;
    background:rgba(255,255,255,.03);
}

.feature-item h3{
    margin:0 0 6px;
}

.feature-item p{
    margin:0;
}

.why-visual{
    display:flex;
    justify-content:flex-end;
}

.visual-card{
    width:100%;
    max-width:420px;
    min-height:300px;
    border-radius:28px;
    padding:28px;
    background:
        linear-gradient(180deg, rgba(56,189,248,.10), rgba(249,115,22,.08)),
        linear-gradient(180deg, rgba(19,32,58,.95), rgba(15,24,42,.95));
    border:1px solid rgba(255,255,255,.10);
    box-shadow:var(--shadow);
}

.mini-label{
    display:inline-block;
    margin-bottom:10px;
    font-size:.8rem;
    font-weight:800;
    letter-spacing:.14em;
    color:#7dd3fc;
}

.visual-card h3{
    margin:0 0 12px;
    font-size:1.8rem;
    line-height:1.12;
}

.visual-card p{
    color:var(--muted);
    margin-bottom:22px;
}

/* CONTENT */
.content-band-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
}

.content-box{
    background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.02));
    border:1px solid var(--line);
    border-radius:24px;
    padding:28px;
}

.content-box h2{
    font-size:1.8rem;
    line-height:1.15;
    margin:0 0 12px;
}

.content-box p{
    margin:0;
    color:var(--muted);
}

.city-card{
    min-height:220px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

/* RECENT WORK */
.recent-work-section{
    background:linear-gradient(180deg, rgba(255,255,255,.01), rgba(255,255,255,.02));
}

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

.work-card{
    overflow:hidden;
    border-radius:24px;
    border:1px solid var(--line);
    background:linear-gradient(180deg, rgba(19,32,58,.95), rgba(15,24,42,.95));
    box-shadow:var(--shadow-soft);
}

.work-photo{
    height:220px;
    background-size:cover;
    background-position:center;
}

.work-photo-1{
    background:
        linear-gradient(180deg, rgba(8,17,31,.15), rgba(8,17,31,.45)),
        url('/assets/img/work-1.webp') center/cover no-repeat;
}

.work-photo-2{
    background:
        linear-gradient(180deg, rgba(8,17,31,.15), rgba(8,17,31,.45)),
        url('/assets/img/work-2.jpg') center/cover no-repeat;
}

.work-photo-3{
    background:
        linear-gradient(180deg, rgba(8,17,31,.15), rgba(8,17,31,.45)),
        url('/assets/img/work-3.webp') center/cover no-repeat;
}

.work-body{
    padding:20px;
}

.work-body h3{
    margin:0 0 10px;
}

.work-body p{
    margin:0;
    color:var(--muted);
}

/* TESTIMONIALS */
.testimonial-card .stars{
    margin-bottom:10px;
    color:#ffb37a;
    letter-spacing:.12em;
    font-size:1rem;
}

.testimonial-card strong{
    display:block;
    margin-top:14px;
    color:#fff;
}

/* FORMS */
.contact-form{
    margin-top:24px;
}

.premium-form{
    background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.02));
    border:1px solid var(--line);
    border-radius:24px;
    padding:24px;
}

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

.form-group{
    margin-top:18px;
}

label{
    display:block;
    margin-bottom:8px;
    font-weight:800;
}

input,
select,
textarea{
    width:100%;
    padding:14px 14px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,.10);
    background:#0d1728;
    color:var(--text);
    outline:none;
}

input:focus,
select:focus,
textarea:focus{
    border-color:rgba(56,189,248,.40);
    box-shadow:0 0 0 3px rgba(56,189,248,.10);
}

textarea{
    resize:vertical;
}

.alert{
    padding:14px 16px;
    border-radius:14px;
    margin-bottom:18px;
    font-weight:800;
}

.alert.success{
    background:rgba(34,197,94,.12);
    border:1px solid rgba(34,197,94,.35);
}

.alert.error{
    background:rgba(239,68,68,.12);
    border:1px solid rgba(239,68,68,.35);
}

/* FLOATING CONTACT */
.floating-contact{
    position:fixed;
    right:16px;
    bottom:16px;
    z-index:120;
    display:flex;
    flex-direction:column;
    gap:12px;
}

.float-btn{
    display:flex;
    align-items:center;
    gap:10px;
    padding:14px 16px;
    border-radius:999px;
    color:#fff;
    font-weight:800;
    box-shadow:0 16px 40px rgba(0,0,0,.30);
}

.float-call{
    background:linear-gradient(180deg,var(--primary),var(--primary-2));
}

.float-whatsapp{
    background:linear-gradient(180deg,#25d366,#128c7e);
}

.float-btn span{
    font-size:1.1rem;
}

/* MOBILE STICKY CTA */
.mobile-sticky-cta{
    display:none;
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    z-index:130;
    padding:10px 12px calc(10px + env(safe-area-inset-bottom));
    background:rgba(8,17,31,.96);
    border-top:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(12px);
    gap:10px;
}

.mobile-sticky-btn{
    flex:1;
    min-height:50px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
    color:#fff;
}

.mobile-sticky-call{
    background:linear-gradient(180deg,var(--primary),var(--primary-2));
}

.mobile-sticky-whatsapp{
    background:linear-gradient(180deg,#25d366,#128c7e);
}

/* INNER HERO */
.inner-hero{
    padding:78px 0 54px;
    background:
        linear-gradient(135deg, rgba(8,17,31,.96), rgba(8,17,31,.76)),
        url('/assets/img/hero-bg.jpg') center/cover no-repeat;
    position:relative;
    overflow:hidden;
}

.inner-hero::after{
    content:'';
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 80% 20%, rgba(56,189,248,.10), transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(249,115,22,.12), transparent 45%);
    pointer-events:none;
}

.inner-hero-grid{
    position:relative;
    z-index:1;
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:28px;
    align-items:center;
}

.inner-hero h1{
    font-size:clamp(2rem,5vw,3.6rem);
    line-height:1.05;
    margin:0 0 14px;
    text-shadow:0 6px 30px rgba(0,0,0,.45);
}

.inner-hero p{
    color:#dbe7fb;
    max-width:760px;
}

.inner-hero-card{
    background:linear-gradient(180deg, rgba(19,32,58,.88), rgba(14,24,43,.92));
    border:1px solid rgba(255,255,255,.10);
    border-radius:24px;
    padding:26px;
    box-shadow:var(--shadow);
}

.inner-hero-card h3{
    margin-top:0;
    margin-bottom:14px;
}

/* FOOTER */
.site-footer{
    border-top:1px solid var(--line);
    padding:34px 0;
    color:var(--muted);
    background:#08111f;
}

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

.footer-grid h3,
.footer-grid h4{
    color:var(--white);
    margin-top:0;
}

.footer-grid p{
    margin:0 0 10px;
}

/* RESPONSIVE */
@media (max-width:1100px){
    .logo-img{
        width:245px;
        max-width:245px;
    }

    .desktop-nav{
        gap:12px;
    }

    .desktop-nav a{
        font-size:.86rem;
    }

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

@media (max-width:900px){
    .desktop-nav,
    .desktop-call,
    .floating-contact{
        display:none;
    }

    .menu-toggle{
        display:flex;
    }

    .mobile-sticky-cta{
        display:flex;
    }

    body{
        padding-bottom:84px;
    }

    .header-wrap{
        min-height:74px;
        padding:8px 0;
    }

    .logo-img{
        width:210px;
        max-width:210px;
    }

    .hero-premium-grid,
    .why-grid,
    .content-band-grid,
    .stats-grid,
    .footer-grid,
    .form-grid,
    .cards-2,
    .cards-3,
    .cards-4,
    .work-grid,
    .inner-hero-grid{
        grid-template-columns:1fr;
    }

    .hero-premium{
        padding:70px 0 48px;
    }

    .hero-content h1{
        font-size:clamp(2rem,8vw,3rem);
    }

    .hero-text{
        font-size:1rem;
    }

    .hero-panel{
        justify-content:stretch;
    }

    .hero-panel-card,
    .visual-card{
        max-width:none;
    }

    .section{
        padding:58px 0;
    }

    .inner-hero{
        padding:62px 0 42px;
    }

    .inner-hero h1{
        font-size:clamp(1.9rem,8vw,2.8rem);
    }

    .floating-contact{
        right:12px;
        bottom:12px;
    }

    .float-btn{
        padding:13px 14px;
    }
}

@media (max-width:420px){
    .logo-img{
        width:180px;
        max-width:180px;
    }
}

/* MENU DESKTOP PRO */
@media (min-width:901px){
    .header-wrap{
        min-height:86px;
        gap:10px;
    }

    .desktop-nav{
        flex:1;
        justify-content:center;
        gap:22px;
    }

    .desktop-nav a{
        position:relative;
        font-size:.92rem;
        font-weight:800;
        color:#eef4ff !important;
        padding:10px 0;
    }

    .desktop-nav a::after{
        content:'';
        position:absolute;
        left:0;
        right:0;
        bottom:2px;
        height:2px;
        background:var(--primary);
        transform:scaleX(0);
        transform-origin:center;
        transition:.22s ease;
        border-radius:99px;
    }

    .desktop-nav a:hover{
        color:#ffffff !important;
    }

    .desktop-nav a:hover::after{
        transform:scaleX(1);
    }

    .header-actions{
        flex-shrink:0;
    }

    .desktop-call{
        padding:11px 18px;
        border-radius:13px;
        font-size:.92rem;
    }
}
.card-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 18px;
    color: #ffb300;
}

.footer-links{
list-style:none;
padding:0;
margin:0;
}

.footer-links li{
margin:.45rem 0;
}

.footer-links a{
color:inherit;
text-decoration:none;
opacity:.9;
}

.footer-links a:hover{
opacity:1;
text-decoration:underline;
}