/* ===================================
   FAQ Page Styles
   =================================== */

/* Hero Section */
.faq-hero {
    padding: 80px 20px;
}

.faq-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.faq-hero__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-hero__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ff006e;
    margin-bottom: 0;
}

.faq-hero__title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin: 0;
}

.faq-hero__subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #b0b0b0;
    margin: 0;
}

.faq-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 16px;
}

.faq-hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.faq-hero__decoration {
    width: 250px;
    height: 250px;
    color: #00d4ff;
    animation: float-soft 4s ease-in-out infinite;
}

/* FAQ Section Headers */
.faq-section {
    padding: 80px 20px;
}

.faq-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.faq-section-lead {
    font-size: 18px;
    color: #b0b0b0;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ Items Container */
.faq-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 212, 255, 0.3);
}

/* FAQ Question */
.faq-question {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
    transition: all 0.2s ease;
}

.faq-question:hover {
    color: #00d4ff;
}

.faq-question__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #ff006e, #ff6b9d);
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
    color: #ffffff;
    flex-shrink: 0;
}

.faq-question__text {
    flex: 1;
    margin: 0;
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #00d4ff;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-toggle svg {
    width: 20px;
    height: 20px;
}

.faq-toggle[aria-expanded="true"] {
    transform: rotate(180deg);
}

.faq-toggle:hover {
    color: #ffd60a;
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    opacity: 0;
}

.faq-answer:not([hidden]) {
    max-height: 1000px;
    opacity: 1;
    padding: 0 20px 20px 20px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.6;
    color: #b0b0b0;
    margin: 0 0 16px 0;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    list-style: none;
    padding: 0;
    margin: 16px 0;
    color: #b0b0b0;
    font-size: 16px;
    line-height: 1.6;
}

.faq-answer li {
    padding: 8px 0 8px 24px;
    position: relative;
    margin: 0;
}

.faq-answer li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: 600;
}

.faq-answer li strong {
    color: #ffffff;
}

.faq-answer a {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.faq-answer a:hover {
    color: #ffd60a;
    text-decoration: underline;
}

.faq-answer .tag {
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 8px;
}

.faq-answer .tag--gray {
    background: rgba(100, 100, 100, 0.3);
    color: #888;
}

.faq-answer .tag--green {
    background: rgba(0, 200, 100, 0.2);
    color: #00c864;
}

.faq-answer .tag--blue {
    background: rgba(0, 150, 255, 0.2);
    color: #0096ff;
}

.faq-answer .tag--purple {
    background: rgba(170, 80, 255, 0.2);
    color: #aa50ff;
}

/* CTA Section */
.faq-cta {
    padding: 80px 20px;
    text-align: center;
}

.cta-card {
    padding: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.cta-card h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px 0;
}

.cta-card p {
    font-size: 18px;
    color: #b0b0b0;
    margin: 0 0 32px 0;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .faq-hero__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-hero__title {
        font-size: 40px;
    }

    .faq-section-title {
        font-size: 28px;
    }

    .faq-question {
        font-size: 16px;
        padding: 16px;
    }

    .cta-card {
        padding: 40px;
    }

    .cta-card h2 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .faq-hero {
        padding: 60px 20px;
    }

    .faq-hero__title {
        font-size: 32px;
    }

    .faq-hero__subtitle {
        font-size: 16px;
    }

    .faq-hero__actions {
        flex-direction: column;
    }

    .faq-hero__actions .button {
        width: 100%;
    }

    .faq-section {
        padding: 60px 20px;
    }

    .faq-section-title {
        font-size: 24px;
    }

    .faq-section-lead {
        font-size: 16px;
    }

    .faq-section-header {
        margin-bottom: 40px;
    }

    .faq-question {
        font-size: 16px;
        gap: 12px;
        padding: 16px;
    }

    .faq-question__number {
        min-width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .faq-toggle {
        width: 28px;
        height: 28px;
    }

    .faq-answer p {
        font-size: 15px;
    }

    .faq-answer ul {
        font-size: 15px;
    }

    .faq-answer li {
        padding: 6px 0 6px 20px;
    }

    .cta-card {
        padding: 30px 20px;
    }

    .cta-card h2 {
        font-size: 20px;
    }

    .cta-card p {
        font-size: 16px;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-actions .button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .faq-hero {
        padding: 40px 16px;
    }

    .faq-hero__title {
        font-size: 24px;
    }

    .faq-hero__subtitle {
        font-size: 14px;
    }

    .faq-hero__visual {
        min-height: 200px;
    }

    .faq-hero__decoration {
        width: 150px;
        height: 150px;
    }

    .faq-section {
        padding: 40px 16px;
    }

    .faq-section-title {
        font-size: 20px;
    }

    .faq-section-lead {
        font-size: 14px;
    }

    .faq-section-header {
        margin-bottom: 30px;
    }

    .faq-items {
        gap: 12px;
    }

    .faq-question {
        font-size: 14px;
        gap: 10px;
        padding: 12px;
    }

    .faq-question__number {
        min-width: 24px;
        height: 24px;
        font-size: 11px;
    }

    .faq-toggle {
        width: 24px;
        height: 24px;
    }

    .faq-answer:not([hidden]) {
        padding: 0 12px 12px 12px;
    }

    .faq-answer p {
        font-size: 14px;
    }

    .faq-answer ul {
        font-size: 14px;
        margin: 12px 0;
    }

    .faq-answer li {
        padding: 4px 0 4px 16px;
    }

    .cta-card {
        padding: 20px 16px;
    }

    .cta-card h2 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .cta-card p {
        font-size: 14px;
        margin-bottom: 20px;
    }
}
