.hiw-wrapper-07bbf3b7 {
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
    background-color: #1A2235;
    color: #FFFFFF;
}

.hiw-container-07bbf3b7 {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.hiw-header-07bbf3b7 {
    text-align: center;
    margin-bottom: 60px;
}

.hiw-label-07bbf3b7 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #E0A100;
    display: block;
    margin-bottom: 12px;
}

.hiw-heading-07bbf3b7 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px;
    color: #FFFFFF;
}

.hiw-subheading-07bbf3b7 {
    font-size: 16px;
    color: #A0ABC0;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Steps Row */
.hiw-steps-row-07bbf3b7 {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    margin-bottom: 50px;
}

/* Card */
.hiw-step-card-07bbf3b7 {
    flex: 1;
    background: #232D45;
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hiw-step-card-07bbf3b7:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.hiw-step-top-07bbf3b7 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.hiw-step-num-07bbf3b7 {
    font-size: 48px;
    font-weight: 700;
    color: #E0A100;
    opacity: 0.3;
    line-height: 1;
}

.hiw-icon-wrapper-07bbf3b7 {
    width: 60px;
    height: 60px;
    background: rgba(224, 161, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E0A100;
    font-size: 24px;
    animation: pulse-icon-07bbf3b7 3s infinite ease-in-out;
}

.hiw-icon-wrapper-07bbf3b7 i, .hiw-icon-wrapper-07bbf3b7 svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.hiw-step-title-07bbf3b7 {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 16px;
    color: #FFFFFF;
}

.hiw-step-desc-07bbf3b7 {
    font-size: 15px;
    color: #A0ABC0;
    line-height: 1.6;
    margin: 0;
}

/* Connector */
.hiw-connector-07bbf3b7 {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    color: rgba(224, 161, 0, 0.5);
    width: 30px;
    display: flex;
    justify-content: center;
    z-index: 10;
    animation: float-arrow-07bbf3b7 2s infinite ease-in-out;
}

.hiw-connector-07bbf3b7 svg {
    width: 24px;
    height: 24px;
}

/* CTA Row */
.hiw-cta-row-07bbf3b7 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.hiw-primary-btn-07bbf3b7 {
    background-color: #E0A100;
    color: #1A2235;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #E0A100;
}

.hiw-primary-btn-07bbf3b7:hover {
    background-color: #c78d00;
    border-color: #c78d00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(224, 161, 0, 0.3);
    color: #1A2235;
}

.hiw-secondary-btn-07bbf3b7 {
    color: #FFFFFF;
    font-weight: 600;
    text-decoration: none;
    padding: 16px 20px;
    transition: color 0.3s ease;
    border-bottom: 2px solid transparent;
}

.hiw-secondary-btn-07bbf3b7:hover {
    color: #E0A100;
    border-bottom-color: #E0A100;
}

/* Animations */
.hiw-anim-fade-in-07bbf3b7 {
    opacity: 0;
    transition: opacity 0.8s ease-out;
}
.hiw-anim-fade-in-07bbf3b7.is-visible {
    opacity: 1;
}

.hiw-anim-slide-up-07bbf3b7 {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.hiw-anim-slide-up-07bbf3b7.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse-icon-07bbf3b7 {
    0% { box-shadow: 0 0 0 0 rgba(224, 161, 0, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(224, 161, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(224, 161, 0, 0); }
}

@keyframes float-arrow-07bbf3b7 {
    0%, 100% { transform: translate(0, -50%); }
    50% { transform: translate(5px, -50%); }
}

/* Responsive */
@media (max-width: 991px) {
    .hiw-steps-row-07bbf3b7 {
        flex-direction: column;
        gap: 20px;
    }
    .hiw-connector-07bbf3b7 {
        display: none;
    }
    .hiw-heading-07bbf3b7 {
        font-size: 32px;
    }
}
@media (max-width: 767px) {
    .hiw-cta-row-07bbf3b7 {
        flex-direction: column;
        gap: 15px;
    }
    .hiw-primary-btn-07bbf3b7 {
        width: 100%;
        text-align: center;
    }
}