/* ============================================================
   Scoped styles for the How It Works pattern.
   ALL rules are prefixed with .is-style-one-landing-how-it-works
   ============================================================ */

.is-style-one-landing-how-it-works {
    background-color: #0E1F29;
    color: #ffffff;
    font-family: 'Satoshi', sans-serif;
}

/* Part 1: Three Steps Section */
.is-style-one-landing-how-it-works .steps-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 640px;
}

.is-style-one-landing-how-it-works .steps-left {
    background-color: #09819F;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.is-style-one-landing-how-it-works .steps-tag {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.42px;
    margin-bottom: 16px;
    color: #ffffff;
}

.is-style-one-landing-how-it-works .steps-title {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 40px 0;
}

.is-style-one-landing-how-it-works .steps-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.is-style-one-landing-how-it-works .step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.is-style-one-landing-how-it-works .step-number {
    font-size: 18px;
    font-weight: 700;
    width: 32px;
    height: 32px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.is-style-one-landing-how-it-works .step-text {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
}

.is-style-one-landing-how-it-works .btn-steps-login {
    align-self: flex-start;
    background: #121C21;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s ease;
}

.is-style-one-landing-how-it-works .btn-steps-login:hover {
    background: #0E1F29;
}

.is-style-one-landing-how-it-works .steps-right {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 80px 40px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.is-style-one-landing-how-it-works .live-qc-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 24px;
    max-width: 320px;
    box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(4px);
    color: #121C21;
}

.is-style-one-landing-how-it-works .qc-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    color: rgba(18, 28, 33, 0.55);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.is-style-one-landing-how-it-works .qc-header svg {
    color: #09819F;
}

.is-style-one-landing-how-it-works .qc-body {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.5;
    color: #121C21;
}

/* Part 2: Benefits Section */
.is-style-one-landing-how-it-works .benefits-section {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.is-style-one-landing-how-it-works .benefits-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.is-style-one-landing-how-it-works .benefits-tag {
    display: inline-block;
    background: rgba(9, 129, 159, 0.15);
    border: 1px solid rgba(9, 129, 159, 0.4);
    padding: 8px 20px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.42px;
    color: #09819F;
    margin-bottom: 24px;
}

.is-style-one-landing-how-it-works .benefits-title {
    font-size: 46px;
    font-weight: 900;
    line-height: 1.15;
    margin: 0 0 20px 0;
}

.is-style-one-landing-how-it-works .benefits-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
}

.is-style-one-landing-how-it-works .benefits-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    margin-bottom: 80px;
}

.is-style-one-landing-how-it-works .benefit-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(9, 129, 159, 0.25);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(6px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.is-style-one-landing-how-it-works .benefit-icon-wrapper {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(9, 129, 159, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #09819F;
    margin-bottom: 30px;
}

.is-style-one-landing-how-it-works .benefit-icon-wrapper.active {
    background: #09819F;
    color: #ffffff;
}

.is-style-one-landing-how-it-works .benefit-card-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 16px 0;
}

.is-style-one-landing-how-it-works .benefit-card-desc {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Custom Catalog card with progress bar */
.is-style-one-landing-how-it-works .catalog-progress-wrapper {
    margin-top: 30px;
}

.is-style-one-landing-how-it-works .progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.is-style-one-landing-how-it-works .label-name {
    color: rgba(255, 255, 255, 0.55);
}

.is-style-one-landing-how-it-works .label-val {
    color: #09819F;
    font-weight: 700;
}

.is-style-one-landing-how-it-works .progress-bar-bg {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    overflow: hidden;
}

.is-style-one-landing-how-it-works .progress-bar-fill {
    height: 100%;
    width: 99.6%;
    background: linear-gradient(90deg, #09819F 0%, #1AB3D4 100%);
    border-radius: 9999px;
    box-shadow: 0px 0px 20px rgba(9, 129, 159, 0.6);
}

/* Stats Counter Row */
.is-style-one-landing-how-it-works .stats-row {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    text-align: center;
    backdrop-filter: blur(4px);
}

.is-style-one-landing-how-it-works .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.is-style-one-landing-how-it-works .stat-number {
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 12px;
}

.is-style-one-landing-how-it-works .stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.60);
    line-height: 1.4;
}

/* Learn More Button */
.is-style-one-landing-how-it-works .about-btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.is-style-one-landing-how-it-works .btn-learn-more {
    background: #09819F;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.is-style-one-landing-how-it-works .btn-learn-more:hover {
    background: #00CCFF;
    color: #071820;
}

.is-style-one-landing-how-it-works .btn-learn-more svg {
    transition: transform 0.2s ease;
}

.is-style-one-landing-how-it-works .btn-learn-more:hover svg {
    transform: translateX(4px);
}

/* Responsive adjustments */
@media (min-width: 1200px) {
    .is-style-one-landing-how-it-works .steps-left {
        padding-left: calc((100vw - 1200px) / 2 + 40px);
        padding-right: 60px;
    }
    .is-style-one-landing-how-it-works .steps-right {
        padding-right: calc((100vw - 1200px) / 2 + 40px);
        padding-left: 60px;
        justify-content: flex-end;
    }
}

@media (max-width: 1024px) {
    .is-style-one-landing-how-it-works .steps-section {
        grid-template-columns: 1fr;
    }
    .is-style-one-landing-how-it-works .steps-right {
        min-height: 360px;
        padding: 40px;
    }
    .is-style-one-landing-how-it-works .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .is-style-one-landing-how-it-works .steps-left {
        padding: 60px 20px;
    }
    .is-style-one-landing-how-it-works .steps-title {
        font-size: 32px;
    }
    .is-style-one-landing-how-it-works .benefits-section {
        padding: 60px 20px;
    }
    .is-style-one-landing-how-it-works .benefits-title {
        font-size: 32px;
    }
    .is-style-one-landing-how-it-works .benefit-card {
        padding: 30px;
    }
    .is-style-one-landing-how-it-works .stats-row {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }
}
