/* How It Works Section */

.how-it-works__inner {
    display: flex;
    flex-direction: column;
    gap: 56px;
    padding-top: var(--space-20);
    padding-bottom: var(--space-20);
}

.how-it-works__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
}

.how-it-works__title {
    font-size: var(--text-7xl);
    font-weight: 700;
    color: var(--foreground);
}

.how-it-works__subtitle {
    font-size: var(--text-lg);
    font-weight: 400;
    color: var(--text-secondary);
}

.how-it-works__steps {
    display: flex;
    gap: var(--space-5);
}

.how-it-works__step {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
    padding: var(--space-8);
    background-color: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    height: 244px;
}

.how-it-works__step-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.how-it-works__step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-pill);
    background-color: var(--primary-light);
    color: var(--primary);
}

.how-it-works__step-icon {
    width: 24px;
    height: 24px;
}

.how-it-works__step-badge {
    font-size: var(--text-8xl);
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.how-it-works__step-title {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--foreground);
}

.how-it-works__step-desc {
    font-size: var(--text-base);
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .how-it-works__steps {
        flex-direction: column;
    }

    .how-it-works__step {
        height: auto;
    }
}
