/* ── Hero Section ── */
    .hero-section {
        background: linear-gradient(135deg, #FFF9FB 0%, #FFFFFF 50%, #FFF9FB 100%);
        padding: 8rem 2rem 4rem;
        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;
    }

    /* ── Search Box ── */
    .search-box {
        max-width: 600px;
        margin: 0 auto;
        position: relative;
    }

    .search-box__input {
        width: 100%;
        padding: 1.25rem 3.5rem 1.25rem 1.5rem;
        border: 2px solid #E0E0E0;
        border-radius: 50px;
        font-size: 1rem;
        transition: all 0.3s ease;
        outline: none;
    }

    .search-box__input:focus {
        border-color: #D08FA8;
        box-shadow: 0 4px 16px rgba(208, 143, 168, 0.2);
    }

    .search-box__icon {
        position: absolute;
        right: 1.5rem;
        top: 50%;
        transform: translateY(-50%);
        color: #999999;
        pointer-events: none;
    }

    /* ── FAQ Section ── */
    .faq-section {
        padding: 6rem 2rem;
        background: #FFFFFF;
    }

    .faq-container {
        max-width: 1000px;
        margin: 0 auto;
    }

    .faq-category {
        margin-bottom: 5rem;
    }

    .faq-category:last-child {
        margin-bottom: 0;
    }

    .category-header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2.5rem;
        padding-bottom: 1rem;
        border-bottom: 3px solid #F0F0F0;
    }

    .category-header__icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #FFFFFF;
        flex-shrink: 0;
    }

    .category-header__title {
        font-size: 1.75rem;
        font-weight: 800;
        color: #1A1A1A;
    }

    .faq-item {
        background: #FFFFFF;
        border: 2px solid #F0F0F0;
        border-radius: 16px;
        margin-bottom: 1rem;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .faq-item:hover {
        border-color: #D08FA8;
    }

    .faq-item.active {
        border-color: #D08FA8;
        box-shadow: 0 4px 16px rgba(208, 143, 168, 0.15);
    }

    .faq-question {
        padding: 1.75rem 2rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        user-select: none;
        gap: 1.5rem;
    }

    .faq-question__text {
        font-size: 1.125rem;
        font-weight: 700;
        color: #1A1A1A;
        flex: 1;
    }

    .faq-question__icon {
        width: 32px;
        height: 32px;
        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;
        flex-shrink: 0;
    }

    .faq-item.active .faq-question__icon {
        transform: rotate(180deg);
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .faq-answer__content {
        padding: 0 2rem 1.75rem;
        font-size: 1rem;
        color: #666666;
        line-height: 1.8;
    }

    .faq-answer__content p {
        margin-bottom: 1rem;
    }

    .faq-answer__content p:last-child {
        margin-bottom: 0;
    }

    .faq-answer__content ul {
        margin: 1rem 0 1rem 1.5rem;
        list-style: disc;
    }

    .faq-answer__content li {
        margin-bottom: 0.5rem;
    }

    .faq-answer__content a {
        color: #D08FA8;
        text-decoration: underline;
        font-weight: 600;
    }

    .faq-answer__content a:hover {
        color: #B5708A;
    }

    .faq-item.active .faq-answer {
        max-height: 800px;
    }

    /* ── No Results ── */
    .no-results {
        display: none;
        text-align: center;
        padding: 4rem 2rem;
        color: #999999;
    }

    .no-results.show {
        display: block;
    }

    .no-results__icon {
        font-size: 4rem;
        margin-bottom: 1rem;
    }

    .no-results__text {
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .no-results__hint {
        font-size: 1rem;
    }

    /* ── CTA Section ── */
    .cta-section {
        padding: 6rem 2rem;
        background: linear-gradient(135deg, #FFF9FB 0%, #FFFFFF 100%);
        text-align: center;
    }

    .cta-container {
        max-width: 800px;
        margin: 0 auto;
    }

    .cta-title {
        font-size: 2rem;
        font-weight: 800;
        color: #1A1A1A;
        margin-bottom: 1rem;
    }

    .cta-text {
        font-size: 1.125rem;
        color: #666666;
        margin-bottom: 2rem;
    }

    .cta-buttons {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .cta-button {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        padding: 1rem 2rem;
        border-radius: 50px;
        font-size: 1rem;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .cta-button--primary {
        background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
        color: #FFFFFF;
        box-shadow: 0 4px 16px rgba(208, 143, 168, 0.3);
    }

    .cta-button--primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(208, 143, 168, 0.4);
    }

    .cta-button--secondary {
        background: #FFFFFF;
        color: #D08FA8;
        border: 2px solid #D08FA8;
    }

    .cta-button--secondary:hover {
        background: #FFF9FB;
    }

    /* ── Responsive ── */
    @media (max-width: 768px) {
        .hero-title {
            font-size: 2.5rem;
        }

        .category-header__title {
            font-size: 1.5rem;
        }

        .faq-question {
            padding: 1.25rem 1.5rem;
        }

        .faq-question__text {
            font-size: 1rem;
        }

        .faq-answer__content {
            padding: 0 1.5rem 1.5rem;
        }

        .cta-buttons {
            flex-direction: column;
            width: 100%;
        }

        .cta-button {
            width: 100%;
            justify-content: center;
        }
    }