/* ── FAQ Section ── */
    .faq {
        width: 100%;
        padding: 6rem 1rem;
        background: #FFFFFF;
        position: relative;
    }

    .faq__container {
        max-width: 1200px;
        margin: 0 auto;
    }

    /* ── Header ── */
    .faq__header {
        text-align: center;
        max-width: 720px;
        margin: 0 auto 5rem;
    }

    .faq__label {
        display: inline-block;
        padding: 0.5rem 1.25rem;
        background: rgba(208, 143, 168, 0.08);
        color: #D08FA8;
        font-family: 'Inter', 'Segoe UI', sans-serif;
        font-size: 0.8125rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        border-radius: 24px;
        margin-bottom: 1.5rem;
    }

    .faq__title {
        font-family: 'Inter', 'Segoe UI', sans-serif;
        font-size: 3rem;
        font-weight: 800;
        line-height: 1.15;
        color: #1A1A1A;
        margin: 0 0 1.25rem;
        letter-spacing: -0.03em;
    }

    .faq__title-accent {
        display: block;
        background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .faq__subtitle {
        font-family: 'Inter', 'Segoe UI', sans-serif;
        font-size: 1.125rem;
        line-height: 1.7;
        color: #666666;
        margin: 0;
    }

    /* ── Grid ── */
    .faq__grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
        margin-bottom: 4rem;
    }

    .faq__category:nth-child(3) {
        grid-column: 1 / -1;
    }

    .faq__category-title {
        font-family: 'Inter', 'Segoe UI', sans-serif;
        font-size: 1.75rem;
        font-weight: 700;
        color: #1A1A1A;
        margin: 0 0 1.5rem;
        letter-spacing: -0.01em;
    }

    .faq__items {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    /* ── FAQ Item ── */
    .faq-item {
        background: #FFFFFF;
        border: 1px solid #E8E8E8;
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .faq-item:hover {
        border-color: #D0D0D0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }

    .faq-item__question {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1.5rem;
        padding: 1.5rem 1.75rem;
        background: transparent;
        border: none;
        font-family: 'Inter', 'Segoe UI', sans-serif;
        font-size: 1.125rem;
        font-weight: 600;
        color: #1A1A1A;
        text-align: left;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .faq-item__question:hover {
        color: #D08FA8;
    }

    .faq-item__icon {
        flex-shrink: 0;
        color: #D08FA8;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .faq-item__question[aria-expanded="true"] .faq-item__icon {
        transform: rotate(180deg);
    }

    .faq-item__answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .faq-item__question[aria-expanded="true"] + .faq-item__answer {
        max-height: 500px;
    }

    .faq-item__answer-content {
        padding: 0 1.75rem 1.75rem;
        font-family: 'Inter', 'Segoe UI', sans-serif;
        font-size: 1rem;
        line-height: 1.7;
        color: #666666;
    }

    .faq-item__answer-content p {
        margin: 0;
    }

    .faq-item__answer-content strong {
        color: #1A1A1A;
        font-weight: 600;
    }

    /* ── Contact Box ── */
    .faq__contact {
        display: flex;
        align-items: center;
        gap: 2rem;
        padding: 2.5rem;
        background: linear-gradient(135deg, #FFF9FB 0%, #FFFFFF 100%);
        border: 1px solid rgba(208, 143, 168, 0.15);
        border-radius: 16px;
    }

    .faq__contact-icon {
        flex-shrink: 0;
        width: 72px;
        height: 72px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, rgba(208, 143, 168, 0.1) 0%, rgba(181, 112, 138, 0.1) 100%);
        border-radius: 16px;
        color: #D08FA8;
    }

    .faq__contact-content {
        flex: 1;
    }

    .faq__contact-title {
        font-family: 'Inter', 'Segoe UI', sans-serif;
        font-size: 1.5rem;
        font-weight: 700;
        color: #1A1A1A;
        margin: 0 0 0.5rem;
        letter-spacing: -0.01em;
    }

    .faq__contact-text {
        font-family: 'Inter', 'Segoe UI', sans-serif;
        font-size: 1rem;
        line-height: 1.6;
        color: #666666;
        margin: 0 0 1.25rem;
    }

    .faq__contact-actions {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .faq__contact-button {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.875rem 1.75rem;
        background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
        color: #FFFFFF;
        font-family: 'Inter', 'Segoe UI', sans-serif;
        font-size: 0.9375rem;
        font-weight: 600;
        text-decoration: none;
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    .faq__contact-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(208, 143, 168, 0.35);
    }

    .faq__contact-button--secondary {
        background: transparent;
        color: #D08FA8;
        border: 2px solid #D08FA8;
    }

    .faq__contact-button--secondary:hover {
        background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
        color: #FFFFFF;
    }

    /* ── Responsive ── */
    @media (max-width: 768px) {
        .faq {
            padding: 4rem 1rem;
        }

        .faq__header {
            margin-bottom: 4rem;
        }

        .faq__title {
            font-size: 2.25rem;
        }

        .faq__subtitle {
            font-size: 1rem;
        }

        .faq__grid {
            grid-template-columns: 1fr;
        }

        .faq__category:nth-child(3) {
            grid-column: 1;
        }

        .faq__category-title {
            font-size: 1.5rem;
        }

        .faq-item__question {
            padding: 1.25rem;
            font-size: 1rem;
        }

        .faq-item__answer-content {
            padding: 0 1.25rem 1.25rem;
            font-size: 0.9375rem;
        }

        .faq__contact {
            flex-direction: column;
            text-align: center;
            padding: 2rem;
        }

        .faq__contact-actions {
            flex-direction: column;
            width: 100%;
        }

        .faq__contact-button {
            width: 100%;
            justify-content: center;
        }
    }

    @media (max-width: 480px) {
        .faq {
            padding: 3rem 0.75rem;
        }

        .faq__title {
            font-size: 1.875rem;
        }

        .faq-item__question {
            padding: 1rem;
            font-size: 0.9375rem;
        }

        .faq__contact-icon {
            width: 64px;
            height: 64px;
        }

        .faq__contact-title {
            font-size: 1.25rem;
        }
    }