@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;700;800&display=swap');

.hiw-section-c7a30376 {
    font-family: 'Work Sans', sans-serif;
    padding: 64px 40px;
    text-align: center;
}

.hiw-badge-c7a30376 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #06F869;
    color: #06F869;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hiw-badge-c7a30376::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #06F869;
    display: inline-block;
}

.hiw-title-c7a30376 {
    font-size: 38px;
    font-weight: 800;
    color: #0c0d0e;
    margin: 0 0 14px;
    line-height: 1.15;
}

.hiw-title-c7a30376 span { color: #06F869; }

.hiw-subtitle-c7a30376 {
    font-size: 15px;
    color: rgba(12,13,14,0.5);
    max-width: 400px;
    margin: 0 auto 52px;
    line-height: 1.7;
}

.hiw-steps-c7a30376 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
}

.hiw-step-c7a30376 {
    position: relative;
    padding: 0 16px;
    cursor: pointer;
}

.hiw-step-c7a30376:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 28px;
    right: -2px;
    width: calc(100% - 56px);
    height: 1px;
    background: linear-gradient(90deg, #06F86960, #06F86910);
    transform: translateX(28px);
}

.hiw-num-wrap-c7a30376 {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.hiw-num-c7a30376 {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    background: transparent;
    border: 1px solid rgba(12,13,14,0.2);
    color: rgba(12,13,14,0.3);
}

.hiw-step-c7a30376.active .hiw-num-c7a30376 {
    background: #06F869;
    color: #0c0d0e;
    border-color: #06F869;
    transform: scale(1.1);
}

.hiw-step-c7a30376:hover .hiw-num-c7a30376 {
    border-color: #06F869;
    color: #06F869;
    transform: scale(1.08);
}

.hiw-step-c7a30376.active:hover .hiw-num-c7a30376 {
    background: #06F869;
    color: #0c0d0e;
    transform: scale(1.1);
}

.hiw-step-title-c7a30376 {
    font-size: 15px;
    font-weight: 700;
    color: rgba(12,13,14,0.35);
    margin: 0 0 10px;
    transition: color 0.25s ease;
}

.hiw-step-c7a30376.active .hiw-step-title-c7a30376 { color: #0c0d0e; }
.hiw-step-c7a30376:hover .hiw-step-title-c7a30376 { color: #0c0d0e; }

.hiw-step-desc-c7a30376 {
    font-size: 13px;
    color: rgba(12,13,14,0.3);
    line-height: 1.65;
    margin: 0;
    transition: color 0.25s ease;
}

.hiw-step-c7a30376.active .hiw-step-desc-c7a30376 { color: rgba(12,13,14,0.6); }
.hiw-step-c7a30376:hover .hiw-step-desc-c7a30376 { color: rgba(12,13,14,0.5); }

/* Responsive basics */
@media (max-width: 991px) {
    .hiw-steps-c7a30376 {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 0;
    }
    .hiw-step-c7a30376:nth-child(2)::after {
        display: none;
    }
}
@media (max-width: 767px) {
    .hiw-steps-c7a30376 {
        grid-template-columns: 1fr;
        gap: 40px 0;
    }
    .hiw-step-c7a30376::after {
        display: none;
    }
}