/* ==========================================================
   INDUSTRIES SECTION
   Executive Corporate Industries
========================================================== */

.hcg-industries-section {

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #EEF2F5 0%,
            #E9EEF3 100%
        );
}


/* ==========================================================
   RIGHT EXECUTIVE LINE
========================================================== */

.hcg-industries-section::after {

    content: '';

    position: absolute;

    top: 60px;
    bottom: 60px;

    right: 12px;

    width: 2px;

    background:
        linear-gradient(
            to bottom,
            rgba(15,45,82,.85),
            rgba(15,45,82,.10)
        );

    pointer-events: none;
}


/* ==========================================================
   CONTAINER
========================================================== */

.hcg-industries-section
.hcg-container {

    max-width: 1320px;

    position: relative;

    z-index: 2;
}


/* ==========================================================
   HEADER
========================================================== */

.hcg-industries-header {

    text-align: center;

    max-width: 1000px;

    margin:
        0 auto 36px;
}

.hcg-industries-header h2 {

    margin-bottom: 16px;
}

.hcg-industries-header p {

    max-width: 920px;

    margin: 0 auto;
}


/* ==========================================================
   GRID
========================================================== */

.hcg-industries-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}


/* ==========================================================
   CARD
========================================================== */

.hcg-industries-card {

    position: relative;

    background: #ffffff;

    border:
        1px solid rgba(15,23,42,.06);

    border-radius: 18px;

    min-height: 92px;

    padding: 18px 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    text-align: center;

    text-decoration: none !important;

    box-shadow:
        0 10px 26px rgba(15,23,42,.05);

    transition:
        all .25s ease;
}


/* ==========================================================
   SUBTLE TOP ACCENT
========================================================== */

.hcg-industries-card::before {

    content: '';

    position: absolute;

    top: 0;
    left: 18px;

    width: 42px;
    height: 3px;

    border-radius: 999px;

    background: #0F2D52;
}


/* ==========================================================
   CARD HOVER
========================================================== */

.hcg-industries-card:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 14px 30px rgba(15,23,42,.08);
}

.hcg-industries-card:hover span {

    color: #0F2D52;
}


/* ==========================================================
   TITLE
========================================================== */

.hcg-industries-card span {

    font-weight: 600;

    line-height: 1.45;

    color: var(--primary-text);

    transition:
        color .22s ease;
}


/* ==========================================================
   CTA
========================================================== */

.hcg-industries-footer {

    margin-top: 32px;

    text-align: center;
}

.hcg-industries-button {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 50px;

    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 12px 28px rgba(15,45,82,.16);

    transition:
        all .22s ease;
}

.hcg-industries-button:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 16px 34px rgba(15,45,82,.20);
}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 1100px) {

    .hcg-industries-grid {

        grid-template-columns:
            repeat(3, 1fr);
    }
}

@media (max-width: 768px) {

    .hcg-industries-section::after {

        display: none;
    }

    .hcg-industries-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 14px;
    }

    .hcg-industries-card {

        min-height: auto;

        padding: 18px;
    }

    .hcg-industries-section
    .hcg-container {

        padding-left: 14px;
        padding-right: 14px;
    }
}

@media (max-width: 540px) {

    .hcg-industries-grid {

        grid-template-columns: 1fr;
    }
}