/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 60px 0;
}

.how-header {
    text-align: center;
    margin-bottom: 52px;
}

.how-header .section-subtitle {
    margin: 0 auto;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 52px;
    left: 16.6%;
    right: 16.6%;
    height: 2px;
    background: linear-gradient(90deg, var(--red-primary), var(--gray-dark), var(--red-primary));
    opacity: 0.3;
}

.step-card {
    text-align: center;
    padding: 36px 28px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    transition: all 0.4s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    background: var(--glass-bg-hover);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.step-number {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 24px var(--red-glow);
}

.step-emoji {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.step-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
