.egp-section {
    background: #ffffff;
    padding: 100px 0;
}
.hyk-container {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 40px;
}
/* ── Header ── */
.egp-header {
    text-align: center;
    margin-bottom: 70px;
}

.egp-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
    line-height: 28px;
}

.egp-title {
    font-size: 38px;
    font-weight: 600;
    color: #000000;
    margin: 0;
    line-height: 54px;
}

/* ── Steps Grid ── */
.egp-steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 48px;
    margin-bottom: 54px;
}

/* ── Single Step ── */
.egp-step__number {
    display: block;
    font-size: 36px;
    font-weight: 600;
    color: #0D5AFF;
    line-height: 48px;
    margin-bottom: 20px;
}

.egp-step__title {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 8px;
    line-height: 27px;
}

.egp-step__text p{
    font-size: 14px;
    color: #374151;
    line-height: 23px;
    font-weight: 400;
    margin: 0;
}

/* ── CTA Link ── */
.egp-cta {
    text-align: center;
}
a.egp-cta__link, a.egp-cta__link:link, a.egp-cta__link:active, a.egp-cta__link:visited,
a.egp-cta__link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    color: #3040CF;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s;
}
.egp-cta__link:hover {
    opacity: 0.75;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .egp-steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .egp-section {
        padding: 64px 0;
    }

    .egp-header {
        margin-bottom: 48px;
    }

    .egp-title {
        font-size: 28px;
    }

    .egp-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
        margin-bottom: 48px;
    }
}

@media (max-width: 480px) {
    .egp-section {
        padding: 48px 0;
    }

    .egp-steps-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .egp-title {
        font-size: 24px;
    }

    .egp-step__number {
        font-size: 28px;
    }
}
