
.faq-page {
    min-height: 100vh;
    background: var(--cyber-black);
    padding-top: 150px;
}

.faq-hero {
    position: relative;
    padding: 50px 0 80px;
    overflow: hidden;
    margin-bottom: 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    top: 0;
    left: 0;
    transform: translate(0,0);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 184, 0, 0.1);
    border: 1px solid rgba(255, 184, 0, 0.3);
    border-radius: 50px;
    color: var(--honey-primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.faq-search {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.faq-search i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--honey-primary);
    font-size: 20px;
}

.faq-search input {
    width: 100%;
    padding: 18px 20px 18px 56px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 184, 0, 0.2);
    border-radius: 50px;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.faq-search input:focus {
    outline: none;
    border-color: var(--honey-primary);
    box-shadow: 0 0 0 4px rgba(255, 184, 0, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.hex-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(0deg, rgba(255, 184, 0, 0.03) 0px, transparent 1px, transparent 40px),
        repeating-linear-gradient(90deg, rgba(255, 184, 0, 0.03) 0px, transparent 1px, transparent 40px);
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
}

.glow-1 {
    width: 500px;
    height: 500px;
    background: var(--honey-primary);
    top: -100px;
    left: -100px;
    animation: float 8s ease-in-out infinite;
}

.glow-2 {
    width: 400px;
    height: 400px;
    background: var(--honey-secondary);
    bottom: -100px;
    right: -100px;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, 30px); }
}

.faq-categories {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.category-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 184, 0, 0.2);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover {
    background: rgba(255, 184, 0, 0.1);
    border-color: var(--honey-primary);
    color: var(--honey-primary);
    transform: translateY(-2px);
}

.category-btn.active {
    background: var(--gradient-gold);
    border-color: transparent;
    color: var(--cyber-black);
}

.category-btn i {
    font-size: 16px;
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-item {
    background: var(--cyber-dark);
    border: 1px solid rgba(255, 184, 0, 0.2);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 184, 0, 0.4);
    box-shadow: 0 8px 30px rgba(255, 184, 0, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    cursor: pointer;
    user-select: none;
}

.question-text {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.question-text i {
    font-size: 24px;
    color: var(--honey-primary);
    flex-shrink: 0;
}

.question-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.toggle-icon {
    font-size: 20px;
    color: var(--honey-primary);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 2000px;
}

.answer-content {
    padding: 0 28px 28px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.answer-content p {
    margin-bottom: 16px;
}

.styled-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.styled-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 184, 0, 0.1);
}

.styled-list li:last-child {
    border-bottom: none;
}

.styled-list i {
    color: var(--honey-primary);
    margin-top: 4px;
    flex-shrink: 0;
}

.info-box, .warning-box, .highlight-box {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
}

.info-box {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.info-box i {
    color: #3B82F6;
    font-size: 24px;
    flex-shrink: 0;
}

.warning-box {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.warning-box i {
    color: #EF4444;
    font-size: 24px;
    flex-shrink: 0;
}

.highlight-box {
    background: rgba(255, 184, 0, 0.1);
    border: 1px solid rgba(255, 184, 0, 0.3);
    align-items: center;
}

.highlight-box.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.highlight-box.success i {
    color: #22C55E;
}

.highlight-box i {
    color: var(--honey-primary);
    font-size: 32px;
    flex-shrink: 0;
}

.highlight-box h4 {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.large-text {
    font-size: 32px;
    font-weight: 900;
    color: var(--honey-primary);
    margin: 0;
}

.steps {
    margin: 24px 0;
}

.step {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid var(--honey-primary);
    border-radius: 8px;
    margin-bottom: 12px;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--gradient-gold);
    border-radius: 50%;
    color: var(--cyber-black);
    font-weight: 900;
    font-size: 16px;
    flex-shrink: 0;
}

.step p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin: 24px 0;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 184, 0, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-option:hover {
    border-color: var(--honey-primary);
    transform: translateY(-2px);
}

.contact-option i {
    font-size: 32px;
    color: var(--honey-primary);
}

.contact-option h4 {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 6px;
}

.contact-option a {
    font-size: 16px;
    font-weight: 700;
    color: var(--honey-primary);
    text-decoration: none;
}

.faq-cta {
    margin-top: 80px;
    margin-bottom: 60px;
}

.cta-content {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.1), rgba(255, 157, 0, 0.05));
    border: 1px solid rgba(255, 184, 0, 0.3);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.cta-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 184, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 157, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content > * {
    position: relative;
    z-index: 1;
}

.cta-content i {
    font-size: 20px;
    color: var(--honey-primary);
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 900;
    color: white;
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: var(--gradient-gold);
    color: var(--cyber-black);
    border: none;
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 184, 0, 0.4);
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 184, 0, 0.3);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--honey-primary);
    transform: translateY(-3px);
}

.faq-item.hidden {
    display: none;
}

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

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .faq-categories {
        gap: 8px;
    }

    .category-btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    .question-text {
        gap: 12px;
    }

    .question-text i {
        font-size: 20px;
    }

    .question-text h3 {
        font-size: 16px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-options {
        grid-template-columns: 1fr;
    }
}
