/* ============================================
   How It Works Page Styles
   ============================================ */

/* Hero Section */
.section-hero--how {
    height: 35vh;
    min-height: 250px;
}

.section-hero--how .legal-title {
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center !important;
    align-items: center;
}

.section-hero--how .legal-title__heading {
    text-align: center !important;
}

/* Steps Section */
.section-how-steps {
    position: relative;
    padding: 20px 40px 40px;
}

.how-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Individual Step Card */
.how-step {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.3s ease;
}

.how-step:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(205, 235, 119, 0.3);
}

.how-step--premium {
    background: linear-gradient(135deg, rgba(128, 33, 255, 0.2) 0%, rgba(205, 235, 119, 0.1) 100%);
    border-color: rgba(205, 235, 119, 0.3);
}

.how-step--premium:hover {
    background: linear-gradient(135deg, rgba(128, 33, 255, 0.3) 0%, rgba(205, 235, 119, 0.15) 100%);
}

.how-step__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.how-step__number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-white);
    flex-shrink: 0;
}

.how-step__emoji {
    font-size: 32px;
    line-height: 1;
}

.how-step__title {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 600;
    color: var(--color-white);
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.how-step__intro {
    font-family: var(--font-primary);
    font-size: 18px;
    color: var(--color-white);
    opacity: 0.9;
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.how-step__label {
    font-family: var(--font-primary);
    font-size: 16px;
    color: var(--color-accent);
    font-weight: 500;
    margin: 0 0 12px 0;
}

.how-step__list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.how-step__list li {
    font-family: var(--font-primary);
    font-size: 16px;
    color: var(--color-white);
    opacity: 0.85;
    line-height: 1.6;
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
}

.how-step__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
}

.how-step__outro {
    font-family: var(--font-primary);
    font-size: 16px;
    color: var(--color-white);
    opacity: 0.7;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

/* Features Section */
.section-features {
    position: relative;
    padding: 60px 40px 80px;
}

.how-features {
    max-width: 900px;
    margin: 0 auto 200px;
}

.how-features__title {
    font-family: var(--font-primary);
    font-size: 40px;
    font-weight: 600;
    color: var(--color-white);
    margin: 0 0 40px 0;
    text-align: center;
}

.how-features__list {
    list-style: none;
    padding: 0;
    margin: 0 0 200px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.how-features__list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    font-family: var(--font-primary);
    font-size: 16px;
    color: var(--color-white);
    line-height: 1.5;
    transition: all 0.3s ease;
}

.how-features__list li:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(205, 235, 119, 0.3);
}

.how-features__icon {
    font-size: 24px;
    flex-shrink: 0;
}

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

    .how-steps {
        grid-template-columns: 1fr;
    }

    .how-step {
        padding: 30px 24px;
    }

    .how-step__title {
        font-size: 22px;
    }

    .how-step__intro {
        font-size: 16px;
    }

    .section-features {
        padding: 40px 20px 60px;
    }

    .how-features__title {
        font-size: 28px;
    }

    .how-features__list {
        grid-template-columns: 1fr;
    }
}
