/* =========================================================
   SSP SERVICES PREMIUM ENTERPRISE
   Security Sales Perú
========================================================= */

/* =========================================================
   PAGE HERO
========================================================= */

.ssp-page-hero{
    position:relative;
    min-height:520px;
    display:flex;
    align-items:center;
    overflow:hidden;
    padding:
        180px 0 100px;
    background:
        linear-gradient(
            135deg,
            #040816 0%,
            #071327 45%,
            #050816 100%
        );
}

/* =========================================================
   HERO BACKGROUND
========================================================= */

.ssp-page-hero-bg{
    position:absolute;
    inset:0;
    z-index:1;
}

.ssp-page-hero-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    opacity:0.35;
    filter:
        brightness(0.85)
        saturate(1.05);
    transform:
        scale(1.05);
}

/* =========================================================
   HERO OVERLAY
========================================================= */

.ssp-page-hero-overlay{
    position:absolute;
    inset:0;
    z-index:2;
    background:
        linear-gradient(
            90deg,
            rgba(5,8,22,0.95) 0%,
            rgba(5,8,22,0.80) 45%,
            rgba(5,8,22,0.92) 100%
        );
}

/* =========================================================
   HERO CONTENT
========================================================= */

.ssp-page-hero-content{
    position:relative;
    z-index:5;
    max-width:760px;
}

/* =========================================================
   SUBTITLE
========================================================= */

.ssp-page-subtitle{
    display:inline-flex;
    align-items:center;
    gap:12px;
    margin-bottom:24px;
    color:#ff6b00;
    font-size:0.82rem;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.ssp-page-subtitle::before{
    content:'';
    width:46px;
    height:2px;
    background:#ff6b00;
}

/* =========================================================
   HERO TITLE
========================================================= */

.ssp-page-hero-content h1{
    font-size:
        clamp(3rem, 6vw, 5.8rem);
    line-height:1;
    font-weight:900;
    color:#ffffff;
    letter-spacing:-4px;
    margin-bottom:28px;
    text-transform:uppercase;
}

.ssp-page-hero-content h1 span{
    display:block;
    margin-top:10px;
    color:#ff6b00;
    text-shadow:
        0 0 35px rgba(255,107,0,0.18);
}

/* =========================================================
   HERO DESCRIPTION
========================================================= */

.ssp-page-hero-content p{
    max-width:650px;
    color:
        rgba(255,255,255,0.74);
    font-size:1rem;
    line-height:1.9;
    margin-bottom:34px;
}

/* =========================================================
   BREADCRUMB
========================================================= */

.ssp-breadcrumb{
    display:flex;
    align-items:center;
    gap:14px;
    flex-wrap:wrap;
}

.ssp-breadcrumb a{
    color:#ffffff;
    font-size:0.92rem;
    transition:0.35s ease;
}

.ssp-breadcrumb a:hover{
    color:#ff6b00;
}

.ssp-breadcrumb span{
    color:
        rgba(255,255,255,0.55);
    font-size:0.88rem;
}

/* =========================================================
   SERVICES SECTION
========================================================= */

.ssp-services-page{
    position:relative;
    padding:120px 0;
    overflow:hidden;
    background:
        linear-gradient(
            180deg,
            #050816 0%,
            #071327 50%,
            #050816 100%
        );
}

/* =========================================================
   SERVICES GRID
========================================================= */

.ssp-services-grid{
    display:grid;
    grid-template-columns:
        repeat(3, 1fr);
    gap:30px;
    margin-top:70px;
}

/* =========================================================
   SERVICE CARD
========================================================= */

.ssp-service-card{
    position:relative;
    padding:40px 34px;
    border-radius:32px;
    overflow:hidden;
    background:
        rgba(255,255,255,0.04);
    border:
        1px solid rgba(255,255,255,0.06);
    backdrop-filter:blur(16px);
    transition:
        transform 0.45s ease,
        border-color 0.45s ease,
        box-shadow 0.45s ease;
}

/* =========================================================
   CARD HOVER
========================================================= */

.ssp-service-card:hover{
    transform:
        translateY(-10px);
    border-color:
        rgba(255,107,0,0.20);
    box-shadow:
        0 30px 60px rgba(0,0,0,0.30);
}

/* =========================================================
   ICON
========================================================= */

.ssp-service-icon{
    width:82px;
    height:82px;
    border-radius:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:28px;
    background:
        linear-gradient(
            135deg,
            rgba(255,107,0,0.18),
            rgba(255,107,0,0.08)
        );
    border:
        1px solid rgba(255,107,0,0.18);
    color:#ff6b00;
    font-size:1.8rem;
    box-shadow:
        0 18px 40px rgba(255,107,0,0.12);
}

/* =========================================================
   TITLE
========================================================= */

.ssp-service-card h3{
    color:#ffffff;
    font-size:1.45rem;
    font-weight:800;
    line-height:1.3;
    margin-bottom:18px;
}

/* =========================================================
   DESCRIPTION
========================================================= */

.ssp-service-card p{
    color:
        rgba(255,255,255,0.72);
    font-size:0.96rem;
    line-height:1.85;
    margin-bottom:26px;
}

/* =========================================================
   LIST
========================================================= */

.ssp-service-card ul{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.ssp-service-card ul li{
    position:relative;
    padding-left:28px;
    color:
        rgba(255,255,255,0.78);
    font-size:0.92rem;
    line-height:1.7;
}

/* =========================================================
   LIST ICON
========================================================= */

.ssp-service-card ul li::before{
    content:'';
    position:absolute;
    left:0;
    top:10px;
    width:10px;
    height:10px;
    border-radius:50%;
    background:#ff6b00;
    box-shadow:
        0 0 15px rgba(255,107,0,0.20);
}

/* =========================================================
   CTA SECTION
========================================================= */

.ssp-cta-section{
    position:relative;
    padding:120px 0;
    overflow:hidden;
    background:
        linear-gradient(
            135deg,
            #071327 0%,
            #050816 100%
        );
}

/* =========================================================
   CTA BACKGROUND
========================================================= */

.ssp-cta-bg{
    position:absolute;
    inset:0;
    background:
        radial-gradient(
            circle at top left,
            rgba(255,107,0,0.12),
            transparent 35%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(0,119,255,0.10),
            transparent 35%
        );
}

/* =========================================================
   CTA CONTENT
========================================================= */

.ssp-cta-content{
    position:relative;
    z-index:5;
    max-width:900px;
    margin:auto;
    text-align:center;
}

.ssp-cta-content span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-bottom:24px;
    color:#ff6b00;
    font-size:0.85rem;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

/* =========================================================
   CTA TITLE
========================================================= */

.ssp-cta-content h2{
    font-size:
        clamp(2.6rem, 5vw, 5rem);
    line-height:1.05;
    font-weight:900;
    color:#ffffff;
    letter-spacing:-3px;
    margin-bottom:28px;
}

/* =========================================================
   CTA DESCRIPTION
========================================================= */

.ssp-cta-content p{
    max-width:760px;
    margin:auto auto 40px;
    color:
        rgba(255,255,255,0.72);
    font-size:1rem;
    line-height:1.9;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1200px){

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

}

@media(max-width:992px){

    .ssp-page-hero{
        min-height:auto;
        text-align:center;
        padding:
            160px 0 90px;
    }

    .ssp-page-hero-content{
        margin:auto;
    }

    .ssp-page-subtitle{
        justify-content:center;
    }

    .ssp-breadcrumb{
        justify-content:center;
    }

}

@media(max-width:768px){

    .ssp-services-page{
        padding:90px 0;
    }

    .ssp-services-grid{
        grid-template-columns:1fr;
    }

    .ssp-service-card{
        padding:34px 28px;
    }

    .ssp-page-hero-content h1{
        font-size:
            clamp(2.4rem, 9vw, 4rem);
        line-height:1.05;
        letter-spacing:-2px;
    }

}

@media(max-width:576px){

    .ssp-page-hero{
        padding:
            140px 0 70px;
    }

    .ssp-page-hero-content h1{
        font-size:2rem;
    }

    .ssp-page-hero-content p{
        font-size:0.90rem;
    }

    .ssp-service-card{
        padding:28px 22px;
        border-radius:24px;
    }

    .ssp-service-icon{
        width:72px;
        height:72px;
        border-radius:20px;
        font-size:1.5rem;
    }

    .ssp-cta-content h2{
        font-size:
            clamp(2rem, 9vw, 3.5rem);
    }

}