.how-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HERO */
.hero {
    background: radial-gradient(circle at top, #db2777, #be185d);
    padding: 90px 20px 70px;
    text-align: center;
    color: white;
    border-radius: 0 0 42px 42px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    background: rgba(255,255,255,0.08);
    filter: blur(140px);
    top: -220px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.18);
    font-weight: 700;
    font-size: 0.9rem;
}

.hero h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    margin: 0 0 14px;
    color: white;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 700;
    opacity: 0.97;
    margin-bottom: 10px;
}

.hero-desc {
    font-size: 1.05rem;
    opacity: 0.92;
    margin: 0 auto 28px;
    max-width: 760px;
}

/* BUTTONS */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn.big {
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
}

.btn-primary {
    background: white;
    color: #be185d;
}

.btn-primary:hover {
    background: #fdf2f8;
    color: #be185d;
}

.btn-secondary {
    background: rgba(255,255,255,0.14);
    color: white;
    border: 1px solid rgba(255,255,255,0.25);
}

.btn-secondary:hover {
    background: white;
    color: #be185d;
    border-color: white;
}

/* QUICK STATS */
.quick-stats {
    margin-top: -26px;
    position: relative;
    z-index: 4;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    border: 1px solid #edf2f7;
    text-align: center;
}

.stat-card strong {
    display: block;
    color: #111827;
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.stat-card span {
    color: #6b7280;
    font-size: 0.94rem;
    line-height: 1.6;
}

/* MAIN SECTIONS */
.for-creators,
.for-members {
    padding: 72px 0;
}

.for-members {
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.55));
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 38px;
}

.section-badge {
    display: inline-block;
    padding: 7px 14px;
    border-radius: 999px;
    background: #fbcfe8;
    color: #be185d;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.section-badge.alt {
    background: #e7f3ff;
    color: #2563eb;
}

.section-header h2 {
    margin: 8px 0 10px;
    font-size: 2.25rem;
    color: #111827;
}

.section-header p {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.7;
}

/* STEPS */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
    gap: 22px;
    margin-bottom: 36px;
}

.step-item {
    background: white;
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 14px 34px rgba(0,0,0,0.06);
    border: 1px solid #edf2f7;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.step-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 42px rgba(0,0,0,0.09);
}

.step-number {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, #be185d, #db2777);
    color: white;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 1.05rem;
    box-shadow: 0 10px 20px rgba(190, 24, 93, 0.22);
}

.step-item h3 {
    margin: 0 0 10px;
    font-size: 1.08rem;
    color: #111827;
}

.step-item p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.step-item a {
    color: #be185d;
    text-decoration: none;
    font-weight: 700;
}

/* FEATURES */
.features-box {
    background: white;
    border-radius: 22px;
    padding: 26px;
    box-shadow: 0 14px 34px rgba(0,0,0,0.05);
    border: 1px solid #edf2f7;
}

.features-title {
    text-align: center;
    margin: 0 0 18px;
    color: #111827;
    font-size: 1.35rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #374151;
    line-height: 1.7;
    border-bottom: 1px solid #f1f5f9;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list i {
    color: #22c55e;
    margin-top: 4px;
}

/* HIGHLIGHT SECTION */
.how-highlight {
    padding: 10px 0 20px;
}

.highlight-card {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 22px;
    background: white;
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 18px 44px rgba(0,0,0,0.06);
    border: 1px solid #edf2f7;
}

.highlight-badge {
    display: inline-block;
    margin-bottom: 12px;
    padding: 7px 14px;
    border-radius: 999px;
    background: #fdf2f8;
    color: #be185d;
    font-weight: 700;
    font-size: 0.85rem;
}

.highlight-text h2 {
    margin: 0 0 10px;
    font-size: 2rem;
    color: #111827;
}

.highlight-text p {
    margin: 0;
    color: #6b7280;
    line-height: 1.8;
}

.highlight-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-content: start;
}

.highlight-point {
    background: #f8fafc;
    border: 1px solid #edf2f7;
    border-radius: 18px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #111827;
    font-weight: 700;
}

.highlight-point i {
    color: #be185d;
    font-size: 1.1rem;
}

/* FINAL CTA */
.cta-section {
    margin: 20px auto 90px;
    max-width: 1180px;
    padding: 52px 28px;
    text-align: center;
    background: radial-gradient(circle at top, #db2777, #be185d);
    border-radius: 30px;
    color: white;
    box-shadow: 0 22px 50px rgba(190, 24, 93, 0.18);
    position: relative;
    overflow: hidden;
}

.cta-inner h2 {
    margin-bottom: 10px;
    font-size: 2.2rem;
    color: white;
}

.cta-inner p {
    margin-bottom: 22px;
    opacity: 0.92;
}

.light-btn {
    background: white !important;
    color: #be185d !important;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .highlight-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 68px 16px 56px;
        border-radius: 0 0 28px 28px;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .steps-grid,
    .stats-grid,
    .highlight-points {
        grid-template-columns: 1fr;
    }

    .for-creators,
    .for-members {
        padding: 58px 0;
    }

    .cta-section {
    border-radius: 24px;
    padding: 40px 20px;
    margin-bottom: 70px;
}

    .cta-inner h2 {
        font-size: 1.85rem;
    }
}

@media (max-width: 480px) {
    .how-container {
        padding: 0 14px;
    }

    .hero h1 {
        font-size: 1.95rem;
    }

    .stat-card,
    .step-item,
    .features-box,
    .highlight-card {
        padding: 20px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn.big {
        width: 100%;
    }
}