/* ── Hero Section ── */
    .hero-section {
        background: linear-gradient(135deg, #FFF9FB 0%, #FFFFFF 50%, #FFF9FB 100%);
        padding: 8rem 2rem 6rem;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .hero-section::before {
        content: '';
        position: absolute;
        top: -20%;
        right: -10%;
        width: 40%;
        height: 120%;
        background: radial-gradient(circle, rgba(208, 143, 168, 0.1) 0%, transparent 70%);
        border-radius: 50%;
    }

    .hero-container {
        max-width: 900px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 1.25rem;
        background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
        color: #FFFFFF;
        border-radius: 50px;
        font-size: 0.875rem;
        font-weight: 600;
        margin-bottom: 2rem;
    }

    .hero-title {
        font-size: 3.5rem;
        font-weight: 800;
        color: #1A1A1A;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.25rem;
        color: #666666;
        margin-bottom: 2.5rem;
        line-height: 1.6;
    }

    .hero-stats {
        display: flex;
        justify-content: center;
        gap: 3rem;
        margin-top: 3rem;
    }

    .hero-stat {
        text-align: center;
    }

    .hero-stat__number {
        font-size: 2.5rem;
        font-weight: 800;
        color: #D08FA8;
        margin-bottom: 0.5rem;
    }

    .hero-stat__label {
        font-size: 0.9375rem;
        color: #666666;
    }

    /* ── Problem Section ── */
    .problem-section {
        padding: 6rem 2rem;
        background: #FFFFFF;
    }

    .problem-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .section-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .section-header__subtitle {
        display: inline-block;
        padding: 0.375rem 1rem;
        background: rgba(208, 143, 168, 0.1);
        color: #D08FA8;
        border-radius: 50px;
        font-size: 0.875rem;
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .section-header__title {
        font-size: 2.5rem;
        font-weight: 800;
        color: #1A1A1A;
        margin-bottom: 1rem;
    }

    .section-header__description {
        font-size: 1.125rem;
        color: #666666;
        max-width: 700px;
        margin: 0 auto;
    }

    .problem-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .problem-card {
        padding: 2rem;
        background: linear-gradient(135deg, #FFF9FB 0%, #FFFFFF 100%);
        border-radius: 20px;
        border: 2px solid #F0F0F0;
        transition: all 0.3s ease;
    }

    .problem-card:hover {
        border-color: #D08FA8;
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(208, 143, 168, 0.15);
    }

    .problem-card__icon {
        width: 60px;
        height: 60px;
        background: rgba(208, 143, 168, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #D08FA8;
        margin-bottom: 1.5rem;
    }

    .problem-card__title {
        font-size: 1.25rem;
        font-weight: 700;
        color: #1A1A1A;
        margin-bottom: 1rem;
    }

    .problem-card__text {
        font-size: 1rem;
        color: #666666;
        line-height: 1.6;
    }

    .solution-box {
        padding: 3rem;
        background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
        border-radius: 24px;
        color: #FFFFFF;
        text-align: center;
    }

    .solution-box__title {
        font-size: 2rem;
        font-weight: 800;
        margin-bottom: 1rem;
    }

    .solution-box__text {
        font-size: 1.125rem;
        opacity: 0.95;
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.6;
    }

    /* ── Features Section ── */
    .features-section {
        padding: 6rem 2rem;
        background: linear-gradient(180deg, #FFF9FB 0%, #FFFFFF 100%);
    }

    .features-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .feature-item {
        display: flex;
        gap: 2rem;
        padding: 2.5rem;
        background: #FFFFFF;
        border-radius: 20px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
    }

    .feature-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(208, 143, 168, 0.2);
    }

    .feature-item__icon {
        flex-shrink: 0;
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #FFFFFF;
    }

    .feature-item__content {
        flex: 1;
    }

    .feature-item__title {
        font-size: 1.5rem;
        font-weight: 700;
        color: #1A1A1A;
        margin-bottom: 0.75rem;
    }

    .feature-item__text {
        font-size: 1rem;
        color: #666666;
        line-height: 1.7;
    }

    /* ── How It Works Section ── */
    .how-section {
        padding: 6rem 2rem;
        background: #FFFFFF;
    }

    .how-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .steps-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
        margin-top: 4rem;
    }

    .step-card {
        text-align: center;
        position: relative;
    }

    .step-card::after {
        content: '→';
        position: absolute;
        top: 40px;
        right: -2rem;
        font-size: 2rem;
        color: #D08FA8;
        opacity: 0.3;
    }

    .step-card:last-child::after {
        display: none;
    }

    .step-card__number {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #FFFFFF;
        font-size: 2rem;
        font-weight: 800;
        margin: 0 auto 1.5rem;
        box-shadow: 0 8px 24px rgba(208, 143, 168, 0.3);
    }

    .step-card__title {
        font-size: 1.125rem;
        font-weight: 700;
        color: #1A1A1A;
        margin-bottom: 0.75rem;
    }

    .step-card__text {
        font-size: 0.9375rem;
        color: #666666;
        line-height: 1.6;
    }

    /* ── Comparison Section ── */
    .comparison-section {
        padding: 6rem 2rem;
        background: linear-gradient(180deg, #FFF9FB 0%, #FFFFFF 100%);
    }

    .comparison-container {
        max-width: 1000px;
        margin: 0 auto;
    }

    .comparison-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-top: 4rem;
    }

    .comparison-box {
        padding: 3rem 2.5rem;
        border-radius: 24px;
        position: relative;
    }

    .comparison-box--old {
        background: #F5F5F5;
        border: 2px solid #E0E0E0;
    }

    .comparison-box--new {
        background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
        color: #FFFFFF;
        box-shadow: 0 12px 40px rgba(208, 143, 168, 0.3);
    }

    .comparison-box__label {
        display: inline-block;
        padding: 0.375rem 1rem;
        background: rgba(0, 0, 0, 0.1);
        border-radius: 50px;
        font-size: 0.875rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
    }

    .comparison-box--old .comparison-box__label {
        background: #E0E0E0;
        color: #666666;
    }

    .comparison-box__title {
        font-size: 1.75rem;
        font-weight: 800;
        margin-bottom: 2rem;
    }

    .comparison-box--old .comparison-box__title {
        color: #1A1A1A;
    }

    .comparison-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .comparison-list__item {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        font-size: 1rem;
        line-height: 1.6;
    }

    .comparison-box--old .comparison-list__item {
        color: #666666;
    }

    .comparison-list__item svg {
        flex-shrink: 0;
        margin-top: 0.25rem;
    }

    /* ── CTA Section ── */
    .cta-section {
        padding: 6rem 2rem;
        background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
        color: #FFFFFF;
        text-align: center;
    }

    .cta-container {
        max-width: 800px;
        margin: 0 auto;
    }

    .cta-title {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
    }

    .cta-text {
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
        opacity: 0.95;
    }

    .cta-buttons {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }

    .cta-button {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        padding: 1.25rem 2.5rem;
        border-radius: 50px;
        font-size: 1.125rem;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .cta-button--primary {
        background: #FFFFFF;
        color: #D08FA8;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    }

    .cta-button--primary:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    }

    .cta-button--secondary {
        background: rgba(255, 255, 255, 0.15);
        color: #FFFFFF;
        border: 2px solid rgba(255, 255, 255, 0.5);
    }

    .cta-button--secondary:hover {
        background: rgba(255, 255, 255, 0.25);
        border-color: rgba(255, 255, 255, 0.8);
    }

    /* ── Responsive ── */
    @media (max-width: 768px) {
        .hero-title {
            font-size: 2.5rem;
        }

        .hero-stats {
            flex-direction: column;
            gap: 1.5rem;
        }

        .problem-grid {
            grid-template-columns: 1fr;
        }

        .features-grid {
            grid-template-columns: 1fr;
        }

        .feature-item {
            flex-direction: column;
            text-align: center;
        }

        .steps-grid {
            grid-template-columns: 1fr;
        }

        .step-card::after {
            content: '↓';
            top: auto;
            bottom: -2rem;
            right: 50%;
            transform: translateX(50%);
        }

        .comparison-grid {
            grid-template-columns: 1fr;
        }

        .cta-title {
            font-size: 2rem;
        }

        .cta-buttons {
            flex-direction: column;
            width: 100%;
        }

        .cta-button {
            width: 100%;
            justify-content: center;
        }
    }