/* ── 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%;
        left: -10%;
        width: 40%;
        height: 120%;
        background: radial-gradient(circle, rgba(208, 143, 168, 0.08) 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: 1rem;
        line-height: 1.6;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-highlight {
        font-size: 1.125rem;
        color: #D08FA8;
        font-weight: 600;
        margin-top: 1rem;
    }

    /* ── Plans Section ── */
    .plans-section {
        padding: 6rem 2rem;
        background: #FFFFFF;
    }

    .plans-container {
        max-width: 1100px;
        margin: 0 auto;
    }

    .plans-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-top: 3rem;
    }

    .plan-card {
        background: #FFFFFF;
        border-radius: 24px;
        padding: 3rem 2.5rem;
        position: relative;
        border: 3px solid #F0F0F0;
        transition: all 0.3s ease;
    }

    .plan-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 40px rgba(208, 143, 168, 0.2);
    }

    .plan-card--premium {
        border-color: #D08FA8;
        background: linear-gradient(135deg, rgba(255, 249, 251, 1) 0%, #FFFFFF 100%);
        box-shadow: 0 8px 32px rgba(208, 143, 168, 0.15);
    }

    .plan-card--premium:hover {
        box-shadow: 0 16px 48px rgba(208, 143, 168, 0.3);
    }

    .plan-badge {
        display: inline-block;
        padding: 0.375rem 1rem;
        border-radius: 50px;
        font-size: 0.875rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
    }

    .plan-card--free .plan-badge {
        background: rgba(102, 102, 102, 0.1);
        color: #666666;
    }

    .plan-card--premium .plan-badge {
        background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
        color: #FFFFFF;
    }

    .plan-title {
        font-size: 2rem;
        font-weight: 800;
        color: #1A1A1A;
        margin-bottom: 0.75rem;
    }

    .plan-description {
        font-size: 1rem;
        color: #666666;
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .plan-price {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
        border-bottom: 2px solid #F0F0F0;
    }

    .plan-price__amount {
        font-size: 2.5rem;
        font-weight: 800;
        color: #1A1A1A;
        margin-bottom: 0.5rem;
    }

    .plan-price__note {
        font-size: 0.875rem;
        color: #D08FA8;
        font-weight: 600;
    }

    .plan-features {
        list-style: none;
        padding: 0;
        margin: 0 0 2rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .plan-feature {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        font-size: 1rem;
        color: #1A1A1A;
        line-height: 1.6;
    }

    .plan-feature svg {
        flex-shrink: 0;
        margin-top: 0.25rem;
        color: #4CAF50;
    }

    .plan-card--premium .plan-feature svg {
        color: #D08FA8;
    }

    .plan-button {
        width: 100%;
        padding: 1.25rem 2rem;
        border-radius: 12px;
        font-size: 1.125rem;
        font-weight: 700;
        text-decoration: none;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
    }

    .plan-card--free .plan-button {
        background: #F5F5F5;
        color: #666666;
        border: 2px solid #E0E0E0;
    }

    .plan-card--free .plan-button:hover {
        background: #EBEBEB;
        border-color: #D0D0D0;
    }

    .plan-card--premium .plan-button {
        background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
        color: #FFFFFF;
        box-shadow: 0 4px 16px rgba(208, 143, 168, 0.3);
    }

    .plan-card--premium .plan-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(208, 143, 168, 0.4);
    }

    /* ── Premium Features Section ── */
    .premium-section {
        padding: 6rem 2rem;
        background: linear-gradient(180deg, #FFF9FB 0%, #FFFFFF 100%);
    }

    .premium-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;
    }

    .premium-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .premium-feature {
        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;
    }

    .premium-feature:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(208, 143, 168, 0.2);
    }

    .premium-feature__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;
    }

    .premium-feature__content {
        flex: 1;
    }

    .premium-feature__title {
        font-size: 1.5rem;
        font-weight: 700;
        color: #1A1A1A;
        margin-bottom: 0.75rem;
    }

    .premium-feature__text {
        font-size: 1rem;
        color: #666666;
        line-height: 1.7;
    }

    /* ── FAQ Section ── */
    .faq-section {
        padding: 6rem 2rem;
        background: #FFFFFF;
    }

    .faq-container {
        max-width: 900px;
        margin: 0 auto;
    }

    .faq-item {
        background: #FFFFFF;
        border: 2px solid #F0F0F0;
        border-radius: 16px;
        margin-bottom: 1.5rem;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .faq-item:hover {
        border-color: #D08FA8;
    }

    .faq-question {
        padding: 1.75rem 2rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        user-select: none;
    }

    .faq-question__text {
        font-size: 1.125rem;
        font-weight: 700;
        color: #1A1A1A;
    }

    .faq-question__icon {
        width: 30px;
        height: 30px;
        background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #FFFFFF;
        transition: transform 0.3s ease;
    }

    .faq-item.active .faq-question__icon {
        transform: rotate(180deg);
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .faq-answer__content {
        padding: 0 2rem 1.75rem;
        font-size: 1rem;
        color: #666666;
        line-height: 1.7;
    }

    .faq-item.active .faq-answer {
        max-height: 500px;
    }

    /* ── 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-button {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        padding: 1.25rem 2.5rem;
        background: #FFFFFF;
        color: #D08FA8;
        border-radius: 50px;
        font-size: 1.125rem;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    }

    .cta-button:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    }

    /* ── Responsive ── */
    @media (max-width: 768px) {
        .hero-title {
            font-size: 2.5rem;
        }

        .plans-grid,
        .premium-grid {
            grid-template-columns: 1fr;
        }

        .premium-feature {
            flex-direction: column;
            text-align: center;
        }

        .cta-title {
            font-size: 2rem;
        }
    }