/* =========================================================
   TECHNOLOGIES SECTION
   SECURITY SALES PERÚ - ENTERPRISE FINAL
========================================================= */

.technologies-section{
    position:relative;
    padding:110px 0;
    overflow:hidden;

    background:
    linear-gradient(
    135deg,
    #020817 0%,
    #06152d 45%,
    #020617 100%);
}

/* =========================================================
   BACKGROUND GRID
========================================================= */

.technologies-section::before{
    content:"";
    position:absolute;
    inset:0;

    background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);

    background-size:60px 60px;

    opacity:.25;
    pointer-events:none;
}

/* =========================================================
   CONTAINER
========================================================= */

.technologies-section .container{
    position:relative;
    z-index:2;
}

/* =========================================================
   HEADER
========================================================= */

.tech-header{
    max-width:900px;
    margin:0 auto 70px;
    text-align:center;
}

.tech-badge{
    display:inline-block;

    margin-bottom:18px;

    color:#ff6b00;

    font-size:13px;
    font-weight:700;

    letter-spacing:3px;
    text-transform:uppercase;
}

.tech-header h2{
    font-size:clamp(2.8rem,5vw,5rem);

    line-height:1.05;

    font-weight:900;

    color:#ffffff;

    margin-bottom:28px;

    letter-spacing:-2px;
}

.tech-header h2 span{
    display:block;

    background:linear-gradient(
    90deg,
    #ff6b00,
    #ff914d);

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.tech-header p{
    max-width:820px;
    margin:auto;

    color:rgba(255,255,255,.72);

    font-size:1.08rem;
    line-height:1.9;
}

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

.technologies-grid{
    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:28px;
}

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

.tech-card{
    position:relative;

    background:
    linear-gradient(
    180deg,
    rgba(15,23,42,.92),
    rgba(7,14,26,.96));

    border:1px solid rgba(255,255,255,.06);

    border-radius:24px;

    overflow:hidden;

    transition:
    transform .4s ease,
    box-shadow .4s ease,
    border-color .4s ease;

    box-shadow:
    0 12px 30px rgba(0,0,0,.28);

    min-height:320px;

    display:flex;
    flex-direction:column;
}

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

.tech-card:hover{
    transform:translateY(-8px);

    border-color:rgba(255,107,0,.22);

    box-shadow:
    0 20px 45px rgba(0,0,0,.42),
    0 0 20px rgba(255,107,0,.10);
}

/* =========================================================
   IMAGE AREA
========================================================= */

.tech-image{
    position:relative;

    width:100%;
    height:170px;

    background:
    linear-gradient(
    135deg,
    rgba(255,255,255,.02),
    rgba(255,255,255,.01));

    overflow:hidden;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:16px;
}

.tech-image img{
    width:100%;
    height:100%;

    object-fit:cover;

    border-radius:14px;

    transition:
    transform .5s ease,
    filter .5s ease;
}

.tech-card:hover .tech-image img{
    transform:scale(1.04);
    filter:brightness(1.03);
}

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

.tech-content{
    padding:22px 22px 24px;

    display:flex;
    flex-direction:column;

    flex:1;
}

/* =========================================================
   LOGO + TITLE
========================================================= */

.tech-logo-title{
    display:flex;
    align-items:center;
    gap:14px;

    margin-bottom:18px;
}

.tech-logo{
    width:42px;
    height:42px;

    object-fit:contain;

    border-radius:10px;

    background:#ffffff;

    padding:6px;
}

.tech-logo-title h3{
    color:#ffffff;

    font-size:1.05rem;
    font-weight:700;

    line-height:1.4;
}

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

.tech-content p{
    color:rgba(255,255,255,.72);

    font-size:.95rem;

    line-height:1.8;

    margin:0;
}

/* =========================================================
   LIGHT EFFECT
========================================================= */

.tech-card::before{
    content:"";

    position:absolute;

    width:160px;
    height:160px;

    top:-80px;
    right:-80px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(255,107,0,.12),
    transparent 70%);

    opacity:0;

    transition:opacity .4s ease;
}

.tech-card:hover::before{
    opacity:1;
}

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

@media(max-width:1400px){

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

}

@media(max-width:1100px){

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

}

@media(max-width:768px){

    .technologies-section{
        padding:90px 0;
    }

    .tech-header{
        margin-bottom:50px;
    }

    .tech-header h2{
        font-size:3.2rem;
    }

    .tech-header p{
        font-size:1rem;
    }

    .tech-card{
        min-height:300px;
    }

}

@media(max-width:600px){

    .technologies-grid{
        grid-template-columns:1fr;
    }

    .tech-card{
        min-height:280px;
    }

    .tech-image{
        height:190px;
    }

}

@media(max-width:480px){

    .technologies-section{
        padding:70px 0;
    }

    .tech-header h2{
        font-size:2.5rem;
    }

    .tech-badge{
        font-size:11px;
        letter-spacing:2px;
    }

    .tech-content{
        padding:20px;
    }

}