/* Стили для how-it-works */
.how-it-works {
    padding: 80px 20px;
    background-color: #f9f9fb;
    text-align: center;
}

.how-it-works .section-header h2 {
    font-size: 48px; 
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.step-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    width: 280px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(98, 85, 246, 0.1);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(100deg, #814BF6, #6255F6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(98, 85, 246, 0.3);
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #111;
}

.step-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-icon {
    font-size: 30px;
    color: #6255F6;
    margin-top: 20px;
}