/* ==========================================================
   WHY PERTECNICA
   Executive Corporate Advantage Section
========================================================== */

.hcg-why-pertecnica-section {

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #F8FAFC 0%,
            #F4F6F8 100%
        );
}


/* ==========================================================
   LEFT EXECUTIVE SIDE LINE
========================================================== */

.hcg-why-pertecnica-section::before {

    content: '';

    position: absolute;

    top: 60px;
    bottom: 60px;

    left: 12px;

    width: 2px;

    background:
        linear-gradient(
            to bottom,
            rgba(15,45,82,.85),
            rgba(15,45,82,.10)
        );

    pointer-events: none;
}


/* ==========================================================
   CONTAINER
========================================================== */

.hcg-why-pertecnica-section
.hcg-container {

    max-width: 1320px;

    position: relative;

    z-index: 2;
}


/* ==========================================================
   HEADER
========================================================== */

.hcg-why-header {

    text-align: center;

    max-width: 1000px;

    margin:
        0 auto 34px;
}

.hcg-why-label {

    display: inline-block;

    color: #0F2D52;

    text-transform: uppercase;

    letter-spacing: .08em;

    margin-bottom: 12px;
}

.hcg-why-header h2 {

    margin-bottom: 16px;
}

.hcg-why-header p {

    max-width: 860px;

    margin: 0 auto;
}


/* ==========================================================
   GRID
========================================================== */

.hcg-why-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px;
}


/* ==========================================================
   CARD
========================================================== */

.hcg-why-card {

    position: relative;

    background: #ffffff;

    border:
        1px solid rgba(15,23,42,.06);

    border-radius: 18px;

    padding: 24px;

    min-height: 220px;

    text-decoration: none !important;

    box-shadow:
        0 8px 22px rgba(15,23,42,.04);

    transition:
        all .25s ease;
}

.hcg-why-card:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 14px 28px rgba(15,23,42,.07);
}


/* ==========================================================
   CARD ACCENT LINE
========================================================== */

.hcg-why-card-line {

    display: block;

    width: 42px;
    height: 3px;

    border-radius: 999px;

    background: #0F2D52;

    margin-bottom: 18px;
}


/* ==========================================================
   CARD CONTENT
========================================================== */

.hcg-why-card h3 {

    margin-bottom: 12px;
}

.hcg-why-card p {

    margin: 0;
}


/* ==========================================================
   CTA
========================================================== */

.hcg-why-footer {

    text-align: center;

    margin-top: 30px;
}

.hcg-why-button {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 0 28px;

    border-radius: 12px;

    border:
        1px solid transparent;

    background:
        linear-gradient(
            135deg,
            #0F2D52 0%,
            #1B466F 100%
        );

    color: #ffffff !important;

    text-decoration: none !important;

    font-size: 14px;
    font-weight: 600;

    letter-spacing: .2px;

    box-shadow:
        0 10px 24px rgba(15,45,82,.14);

    transition:
        all .22s ease;
}

.hcg-why-button:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 14px 30px rgba(15,45,82,.18);
}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 900px) {

    .hcg-why-pertecnica-section::before {

        display: none;
    }

    .hcg-why-grid {

        grid-template-columns: 1fr;
    }

    .hcg-why-card {

        min-height: auto;

        padding: 20px;
    }

    .hcg-why-pertecnica-section
    .hcg-container {

        padding-left: 14px;
        padding-right: 14px;
    }
}