/* FAQ Page Styles */

.faq-hero {
    margin-bottom: 60px;
}

.faq-container {
    /*max-width: 1088px;*/
    margin: 88px 0 88px 0;
    padding: 0 20px;
}

/* FAQ Title */
.faq-title {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: -0.4492px;
    color: #ffffff;
    margin-bottom: 50px;
}

/* FAQ Category Tabs */
.faq-category-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.faq-tab {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px 10px 10px;
    background: linear-gradient(180deg, #393939 0%, #000000 100%);
    border: 1px solid #000000;
    border-radius: 8px;
    color: #ffffff;
    font-family: 'Red Hat Display', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.3125px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 0;
}

.faq-tab:hover {
    border-color: #ffffff;
}

.faq-tab.active {
    /*background: linear-gradient(180deg, #6081b6 0%, #000000 100%);*/
    border-color: #ffffff;
}

.faq-tab-icon {
    width: 47.998px;
    height: 47.998px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-tab-icon svg {
    width: 28px;
    height: 28px;
}

.faq-tab-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* FAQ Category Info */
.faq-category-info {
    margin-bottom: 50px;
}

.faq-category-title {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: -0.4492px;
    color: #ffffff;
    margin-bottom: 4px;
}

.faq-category-count {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.3125px;
    color: #ffffff;
}

.faq-count-number {
    font-weight: 500;
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 50px;
}

/* FAQ Subtitle */
.faq-subtitle {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #3b82f6;
    margin: 32px 0 16px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

/* FAQ Answer Links */
.faq-answer a {
    color: #60a5fa;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.faq-answer a:hover {
    color: #93c5fd;
    text-decoration: underline;
}

.faq-answer a:visited {
    color: #818cf8;
}

.faq-item {
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    border: 1px solid transparent;
    border-radius: 10px 10px 0 0;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    background-image:
      var(--inner-bg, linear-gradient(180deg, #1a2a4a   0%, #000000 100%)),
      var(--border-gradient, linear-gradient(180deg, #80acf3 0%, #000000 100%))
    ;
}

.faq-item:not(.active) .faq-question {
    /*background: linear-gradient(180deg, #6081b6 0%, #000000 100%);*/
    border-radius: 10px;
}

.faq-question-text {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    color: #ffffff;
    margin: 0;
    flex: 1;
    text-align: left;
}

.faq-arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 24px;
    border-top: 1px solid #efefef;
}

.faq-answer p {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.3125px;
    color: #ffffff;
    margin: 0;
}

/* Load More Button */
.faq-load-more-container {
    display: flex;
    justify-content: center;
    margin-bottom: 80px;
}

.faq-load-more-btn {
    padding: 25px 33px;
    background: linear-gradient(180deg, #6081b6 0%, #000000 100%);
    border: 1px solid #80acf3;
    border-radius: 16px;
    color: #ffffff;
    font-family: 'Red Hat Display', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.4395px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(128, 172, 243, 0.3);
}

/* CTA Section */
.faq-cta-container {
    background: linear-gradient(180deg, #393939 0%, #000000 100%);
    border: 1px solid #efefef;
    border-radius: 16px;
    padding: 53.85px 115px;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.faq-cta-content {
    display: flex;
    align-items: center;
    gap: 180px;
    position: relative;
    z-index: 1;
}

.faq-cta-text {
    flex: 1;
}

.faq-cta-title {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: 0.3516px;
    color: #ffffff;
    margin-bottom: 24px;
}

.faq-cta-title .highlight-fu {
    color: #e76de5;
}

.faq-cta-description {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.4492px;
    color: #ffffff;
    max-width: 451px;
}

.faq-cta-profile {
    width: 290.227px;
    padding: 20px;
    background: linear-gradient(180deg, rgba(57, 57, 57, 0.80) 0%, rgba(0, 0, 0, 0.80) 100%);
    border: 1px solid #efefef;
    border-radius: 17.072px;
    backdrop-filter: blur(6px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 21.34px;
    flex-shrink: 0;
}

.faq-profile-image {
    width: 160px;
    height: 161px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.faq-profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-profile-info {
    text-align: center;
    color: #ffffff;
}

.faq-profile-name {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 20.385px;
    font-weight: 700;
    line-height: 31.71px;
    letter-spacing: -0.4977px;
    color: #ffffff;
    margin: 0 0 4px 0;
}

.faq-profile-role {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 14.938px;
    font-weight: 400;
    line-height: 27.18px;
    letter-spacing: -0.3539px;
    color: #ffffff;
    margin: 0 0 4px 0;
}

.faq-profile-company {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 14.938px;
    font-weight: 500;
    line-height: 27.18px;
    letter-spacing: -0.3539px;
    color: #ffffff;
    margin: 0;
}

.faq-profile-cta {
    width: 100%;
    padding: 17.072px 34.144px;
    background: #ffffff;
    border: none;
    border-radius: 17.072px;
    color: #050505;
    font-family: 'Red Hat Display', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 29.876px;
    letter-spacing: -0.4689px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-profile-cta:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1440px) {
    .faq-container {
        max-width: 100%;
    }
    
    .faq-cta-content {
        gap: 80px;
    }
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 20px;
    }
    
    .faq-category-tabs {
        flex-direction: column;
    }
    
    .faq-tab {
        width: 100%;
    }
    
    .faq-cta-container {
        padding: 40px 20px;
    }
    
    .faq-cta-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .faq-cta-title {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .faq-cta-description {
        font-size: 16px;
    }
    
    .faq-cta-profile {
        width: 100%;
        max-width: 290px;
    }
    
    .faq-container {
        margin: 60px 0;
        padding: 0 20px;
    }
    
    .faq-title {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .faq-category-info {
        margin-bottom: 30px;
    }
    
    .faq-accordion {
        gap: 12px;
        margin-bottom: 40px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question-text {
        font-size: 15px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px;
    }
    
    .faq-answer p {
        font-size: 15px;
        line-height: 24px;
    }
    
    .faq-load-more-container {
        margin-bottom: 60px;
    }
    
    .faq-load-more-btn {
        padding: 20px 28px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .faq-cta-title {
        font-size: 28px;
    }
    
    .faq-cta-description {
        font-size: 14px;
        line-height: 22px;
    }
    
    .faq-profile-image {
        width: 120px;
        height: 120px;
    }
    
    .faq-profile-name {
        font-size: 18px;
    }
    
    .faq-profile-role,
    .faq-profile-company {
        font-size: 13px;
    }
    
    .faq-profile-cta {
        font-size: 16px;
        padding: 14px 24px;
    }
}

