/* =========================================
   NASIL ÇALIŞIR SAYFASI MİMARİSİ
   ========================================= */

.how-hero {
    padding: clamp(100px, 15vh, 140px) 0 clamp(60px, 10vh, 100px);
    text-align: center;
}

.center-badge {
    margin: 0 auto 32px auto;
}

.constrained-subtitle {
    margin: 0 auto;
    max-width: 650px;
}

.step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 900;
    border-radius: 16px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    margin-bottom: 24px;
    box-shadow: 0 10px 20px -5px rgba(99, 102, 241, 0.2);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease, color 0.4s ease;
}

.split-content:hover .step-badge {
    transform: scale(1.1) rotate(-5deg);
    background: var(--accent-color);
    color: var(--white);
    box-shadow: 0 15px 30px -5px rgba(99, 102, 241, 0.5);
}

.step-section {
    padding: 100px 0;
}

.bg-white {
    background-color: var(--white);
}

.bg-light {
    background-color: var(--bg-light);
}

.border-top {
    border-top: 1px solid var(--border-color);
}

.step-image {
    border-radius: 24px;
}

.list-check {
    margin-right: 8px;
}

.how-cta {
    padding: 100px 0;
}

.how-cta .cta-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.how-cta .cta-text {
    margin-bottom: 40px;
}

.how-cta .cta-btn {
    padding: 18px 48px;
}