
/* How It Works Section */
.how-it-works-alt-component-section {
    padding: 80px 24px;
    background: white;
}

.how-it-works-alt-component-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.how-it-works-alt-component-section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.how-it-works-alt-component-section-subtitle {
    max-width: 600px;
    color: #666;
    line-height: 1.6;
    margin: 0 auto;
}

.how-it-works-alt-component-steps-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.how-it-works-alt-component-step-row {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: stretch;
    min-height: 400px;
    position: relative;
    padding-top: 40px;
}

.how-it-works-alt-component-step-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, #696969, #413c3e);
}

.how-it-works-alt-component-step-row.reverse {
    grid-template-columns: 1fr 1.3fr;
}

.how-it-works-alt-component-step-image {
    background: #f0f0f0;
    border-radius: 16px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
}

.how-it-works-alt-component-step-row.reverse .how-it-works-alt-component-step-image {
    order: 2;
}

.how-it-works-alt-component-step-card {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
}

.how-it-works-alt-component-step-card:hover {
    border-color: var(--r-blue-light);
}

.how-it-works-alt-component-step-number {
    width: 56px;
    height: 56px;
    background: var(--r-blue-light);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
}

.how-it-works-alt-component-step-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.how-it-works-alt-component-step-card p {
    color: #666;
    line-height: 1.7;
    font-size: 16px;
}

.quality-cta-section {
    padding: 80px 24px;
    background: white;
    text-align: center;
}

.quality-cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.quality-cta-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

@media (max-width: 1024px) {
    .how-it-works-alt-component-step-row,
    .how-it-works-alt-component-step-row.reverse {
        grid-template-columns: 1fr;
        gap: 32px;
        min-height: auto;
    }

    .how-it-works-alt-component-step-row.reverse .how-it-works-alt-component-step-image {
        order: 2;
    }

    .how-it-works-alt-component-step-image {
        min-height: 300px;
        order: 2;
    }

    .how-it-works-alt-component-step-card {
        order: 1;
        padding: 32px;
    }

    .how-it-works-alt-component-section-title {
        font-size: 32px;
    }

    .how-it-works-alt-component-step-card h3 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {

    .quality-cta-title {
        font-size: 32px;
    }
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: 100px 24px;
    background-color: var(--r-blue-light);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(138, 43, 226, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(0, 119, 182, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

/* .cta-section .hero-cta {
    padding: 16px 40px;
    font-size: 16px;
} */

/* CTA Section - Responsive Design */

/* Tablets */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 20px;
    }

    .cta-content h2 {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .cta-content p {
        font-size: 16px;
        margin-bottom: 32px;
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    .cta-section {
        padding: 40px 16px;
    }

    .cta-content h2 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .cta-content p {
        font-size: 14px;
        margin-bottom: 24px;
    }

    /* .cta-section .hero-cta {
        padding: 12px 24px;
        font-size: 13px;
    } */
}

/* Small mobile phones */
@media (max-width: 380px) {
    .cta-content h2 {
        font-size: 20px;
    }
}