.faq-page {
    min-height: 100vh;
    padding: 140px 0 80px;
    position: relative;
}

.faq-page-bg {
    position: fixed;
    inset: 0;
    background-image: radial-gradient(circle, var(--border) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.faq-page .container {
    position: relative;
    z-index: 1;
}

.faq-header {
    text-align: center;
    margin-bottom: 64px;
}

.faq-meta {
    font-size: 14px;
    color: var(--text-subtle);
    margin-bottom: 16px;
}

.faq-page-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 16px;
}

.faq-page-subtitle {
    font-size: 18px;
    color: var(--text-muted);
}

.faq-search {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto 48px;
    padding: 16px 24px;
    background: white;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.faq-search:focus-within {
    box-shadow: var(--shadow-medium);
    border-color: var(--coral);
}

.faq-search-icon {
    font-size: 24px;
    color: var(--text-muted);
}

.faq-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-primary);
    background: transparent;
}

.faq-search-input::placeholder {
    color: var(--text-muted);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-section {
    margin-bottom: 56px;
    animation: fadeInUp 0.6s ease-out both;
}

.faq-section:nth-child(1) { animation-delay: 0.05s; }
.faq-section:nth-child(2) { animation-delay: 0.1s; }
.faq-section:nth-child(3) { animation-delay: 0.15s; }
.faq-section:nth-child(4) { animation-delay: 0.2s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-section-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.faq-item {
    margin-bottom: 16px;
    padding: 24px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    cursor: pointer;
    overflow: hidden;
}

.faq-item:hover {
    box-shadow: var(--shadow-medium);
}

.faq-item.active {
    box-shadow: var(--shadow-medium);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 0;
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
}

.faq-question {
    position: relative;
}

.faq-question::after {
    content: '';
    position: absolute;
    right: 0;
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: var(--warm-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23F4714A' stroke-width='2'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    max-height: 0;
    overflow: hidden;
    padding: 0 16px;
    margin-top: 0;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease, margin 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 12px 16px;
    margin-top: 12px;
    opacity: 1;
}

.faq-cta {
    text-align: center;
    margin-top: 64px;
    padding: 48px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.faq-cta-text {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .faq-page {
        padding: 120px 0 60px;
    }

    .faq-header {
        margin-bottom: 32px;
    }

    .faq-page-title {
        font-size: 36px;
    }

    .faq-page-subtitle {
        font-size: 16px;
    }

    .faq-search {
        margin-bottom: 32px;
        padding: 14px 20px;
    }

    .faq-search-input {
        font-size: 15px;
    }

    .faq-section-title {
        font-size: 22px;
    }

    .faq-item {
        padding: 20px;
    }

    .faq-question {
        font-size: 16px;
    }

    .faq-item.active .faq-answer {
        padding: 12px 0;
    }

    .faq-cta {
        margin-top: 48px;
        padding: 32px;
    }

    .faq-cta-text {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .faq-page {
        padding: 100px 0 48px;
    }

    .faq-header {
        margin-bottom: 32px;
    }

    .faq-page-title {
        font-size: 28px;
    }

    .faq-item {
        padding: 16px;
    }

    .faq-question {
        font-size: 15px;
    }

    .faq-cta {
        padding: 24px;
    }
}