/* =========================================
   FAQ & TESTIMONIAL PAGE STYLES
========================================= */

/* --- 1. Hero Section --- */
.faqHero {
    width: 100%;
    min-height: 110vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #010008;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: -120px;
    padding: 200px 0 100px 0;
}

#heroCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-spotlight {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(69, 63, 255, 0.15) 0%, rgba(1, 0, 8, 0) 70%);
    pointer-events: none;
    z-index: 0; /* Behind canvas */
}

.faqHeroContainer {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #00F0FF;
    margin-bottom: 30px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.2);
    padding: 10px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    font-weight: 600;
}

.faqHero h1 {
    font-size: 5rem;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 800;
}

.faqHero p {
    font-size: 1.3rem;
    color: #aaa;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.grad-text-cyan {
    background: linear-gradient(135deg, #fff 30%, #00F0FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    z-index: 5;
}

.scroll-indicator span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, #fff, transparent);
    animation: scrollLineAnim 1s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

@keyframes scrollLineAnim {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }
    50% {
        transform: scaleY(1);
        transform-origin: top;
    }
    50.1% {
        transform-origin: bottom;
    }
    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* --- 2. Trust Protocol Section --- */
.trustSection {
    width: 100%;
    background: #f8f9ff; /* Light Theme for Separation */
    padding: 120px 0;
    position: relative;
}

.trustContainer {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
}

.trust-Intro {
    width: 40%;
    position: sticky;
    top: 150px;
}

.trust-Tag {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #453fff;
    margin-bottom: 20px;
    font-weight: 600;
}

.trust-Intro h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: #010008;
    margin-bottom: 20px;
}

/* Fix: Darker gradient for light background in Trust Section */
.trust-Intro .grad-text-violet {
    background: linear-gradient(135deg, #453fff 0%, #7000FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.trust-Intro p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.6;
}

.trust-Grid {
    width: 55%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.trustCard {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    display: flex;
    align-items: flex-start;
    gap: 25px;
    transition: 0.3s ease;
}

.trustCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(69, 63, 255, 0.1);
    border-color: rgba(69, 63, 255, 0.2);
}

.trust-IconBox {
    min-width: 60px;
    height: 60px;
    background: rgba(69, 63, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #453fff;
}

.trust-Content h3 {
    font-size: 1.5rem;
    color: #010008;
    margin-bottom: 10px;
}

.trust-Content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* --- 3. Intelligent FAQ System --- */
.faqSystemSection {
    width: 100%;
    padding: 100px 0;
    background: #010008; /* Dark Theme Revamp */
    position: relative;
}

.faqSysContainer {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-Header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-Label {
    color: #453fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: block;
    font-weight: 600;
}

.faq-Header h2 {
    font-size: 3rem;
    color: #fff;
}

.faq-Tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.03);
    padding: 8px;
    border-radius: 60px;
    border-radius: 16px; /* Better for stacking on mobile */
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.faq-Tab {
    background: transparent;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    color: #888;
    font-weight: 500;
}

.faq-Tab.active, .faq-Tab:hover {
    background: #453fff;
    color: #fff;
    box-shadow: 0 5px 20px rgba(69, 63, 255, 0.3);
}

.faq-Content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-Item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
    border-left: 3px solid transparent;
}

.faq-Item.open {
    border-left-color: #00F0FF;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-color: rgba(255, 255, 255, 0.1);
}

.faq-Question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 500;
    color: #fff;
}

.faq-Icon {
    font-size: 1.2rem;
    color: #453fff;
    transition: transform 0.3s;
}

.faq-Item.open .faq-Icon {
    transform: rotate(45deg);
}

.faq-Answer {
    height: 0;
    overflow: hidden;
    padding: 0 25px;
    color: #aaa;
    line-height: 1.6;
    transition: height 0.3s ease;
}

.faq-Item.open .faq-Answer {
    padding-bottom: 25px;
}

/* --- 4. Wall of Love (Testimonials) --- */
.testimonialSection {
    width: 100%;
    padding: 120px 0;
    background: #fff; /* Light Theme */
    color: #010008;
    position: relative;
}

/* Subtle Background Pattern */
.testimonialSection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#e5e7ff 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
    pointer-events: none;
}

.testiContainer {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.testi-Header {
    text-align: center;
    margin-bottom: 80px;
}

.testi-Header h2 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    color: #010008;
}

.testi-Header p {
    font-size: 1.2rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

.grad-text-violet {
    background: linear-gradient(135deg, #453fff 0%, #7000FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.masonry-Grid {
    column-count: 3;
    column-gap: 30px;
}

.masonry-Item {
    break-inside: avoid;
    margin-bottom: 30px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.masonry-Item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border-color: rgba(69, 63, 255, 0.2);
}

/* Quote Card */
.quote-card {
    padding: 40px;
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: #f1f3ff;
    margin-bottom: 20px;
    display: block;
}

.quote-card p {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #333;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.verified-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 0.75rem;
    color: #453fff;
    background: rgba(69, 63, 255, 0.08);
    padding: 8px 14px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, #040053, #453fff);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(69, 63, 255, 0.2);
}

.user-profile div h5 {
    font-size: 1.1rem;
    color: #010008;
    margin-bottom: 2px;
    font-weight: 700;
}

.user-profile div small {
    color: #888;
    font-size: 0.9rem;
}

/* Result Card */
.result-card {
    padding: 50px 30px;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
    border: 1px solid rgba(69, 63, 255, 0.1);
}

.result-card h3 { 
    font-size: 4.5rem; 
    color: #453fff; 
    line-height: 1; 
    margin-bottom: 10px;
    font-weight: 800;
    letter-spacing: -2px;
}

.result-card p { 
    font-size: 1.3rem; 
    font-weight: 700; 
    margin-bottom: 8px; 
    color: #010008; 
}

.result-card small { 
    color: #666; 
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* --- 5. Unsure CTA (Revamped) --- */
.unsureCtaSection {
    width: 100%;
    padding: 120px 0;
    background: #010008;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.unsure-Glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(69, 63, 255, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.unsureContainer {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.unsureContainer h2 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.1;
}

.unsureContainer p {
    font-size: 1.2rem;
    color: #aaa;
    margin-bottom: 40px;
    line-height: 1.6;
}

.unsure-Actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.cta-whatsapp {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: 0.3s ease;
}

.cta-whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
    transform: translateY(-3px);
}

.cta-audit {
    background: #fff;
    color: #010008;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.cta-audit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 992px) {
    .masonry-Grid { column-count: 2; }
    .trustContainer {
        flex-direction: column;
    }
    .trust-Intro {
        width: 100%;
        position: relative;
        top: 0;
        margin-bottom: 40px;
    }
    .trust-Grid {
        width: 100%;
    }
    .faq-Tabs {
        width: 100%;
        border-radius: 16px;
    }
    .faq-Tab { flex: 1; text-align: center; padding: 12px 10px; font-size: 0.9rem; }
    .faq-Header h2 { font-size: 2.5rem; }
    .faqHero h1 { font-size: 3.5rem; }
}

@media (max-width: 768px) {
    .faqHero { 
        padding: 120px 0 80px 0; 
        min-height: 90vh; 
        margin-top: 0; /* Reset negative margin for mobile */
    }
    .faqHero h1 { font-size: 2.5rem; margin-bottom: 20px; }
    .faqHero p { font-size: 1.1rem; }
    
    /* Trust Section Mobile */
    .trustSection { padding: 60px 0; }
    .trust-Intro h2 { font-size: 2.5rem; }
    .trustCard { padding: 25px; gap: 20px; }
    
    /* Testimonial Section Mobile */
    .testimonialSection { padding: 60px 0; }
    .testi-Header h2 { font-size: 2.5rem; }
    .masonry-Grid { column-count: 1; }
    .quote-card { padding: 25px; }
    .result-card { padding: 30px 20px; }
    .result-card h3 { font-size: 3rem; }
    .quote-icon { font-size: 2.5rem; margin-bottom: 15px; }
    .verified-badge { top: 20px; right: 20px; }
    
    /* Unsure CTA Mobile */
    .unsureCtaSection { padding: 80px 0; }
    .unsureContainer h2 { font-size: 2.5rem; }
    .unsure-Actions { flex-direction: column; width: 100%; }
    .cta-whatsapp, .cta-audit { width: 100%; justify-content: center; }

    /* FAQ Mobile */
    .faqSystemSection { padding: 60px 0; }
    .faq-Tabs { gap: 10px; padding: 5px; }
    .faq-Tab { padding: 10px 15px; font-size: 0.9rem; width: 100%; }
    .faq-Question { padding: 15px 20px; font-size: 1rem; }
    .faq-Answer { padding: 0 20px; font-size: 0.95rem; }
    .faq-Item.open .faq-Answer { padding-bottom: 20px; }
}