/* ============================================================
   FAQ PAGE - MATCHING ABOUT US STYLE
   ============================================================ */

/* ===== HIDE WIREFRAME CANVAS ON FAQ PAGE ===== */
#ab-wireframe {
  display: none !important;
}

/* ===== FAQ HERO BACKGROUND EFFECT ===== */
#faq-hero {
  background: 
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(139,92,246,0.15) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 50%, rgba(34,211,238,0.1) 0%, transparent 40%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(249,115,22,0.08) 0%, transparent 40%),
    var(--ab-bg);
}

#faq-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(139,92,246,0.12) 0%, transparent 25%),
    radial-gradient(circle at 80% 70%, rgba(34,211,238,0.1) 0%, transparent 25%),
    radial-gradient(circle at 60% 20%, rgba(249,115,22,0.06) 0%, transparent 20%);
  animation: faqBgShift 15s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes faqBgShift {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* ===== FAQ HERO VISUAL (Unique Q&A Animation) ===== */
.faq-visual-wrap {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-central-bubble {
  position: relative;
  z-index: 10;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(139,92,246,0.15), rgba(34,211,238,0.1));
  border: 2px solid rgba(139,92,246,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  animation: faqPulse 3s ease-in-out infinite;
  box-shadow: 0 0 60px rgba(139,92,246,0.2), inset 0 0 30px rgba(139,92,246,0.1);
}

.faq-q, .faq-a {
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, #8b5cf6, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-ampersand {
  font-size: 1.8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  margin: 0 2px;
}

@keyframes faqPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 60px rgba(139,92,246,0.2), inset 0 0 30px rgba(139,92,246,0.1); }
  50% { transform: scale(1.05); box-shadow: 0 0 80px rgba(139,92,246,0.35), inset 0 0 40px rgba(139,92,246,0.15); }
}

/* Pulsing glow rings */
.faq-glow-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 2px solid transparent;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.faq-glow-ring-1 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, transparent 60%, rgba(139,92,246,0.08) 100%);
  border-color: rgba(139,92,246,0.15);
  animation: glowPulse1 4s ease-in-out infinite;
}

.faq-glow-ring-2 {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, transparent 50%, rgba(34,211,238,0.06) 100%);
  border-color: rgba(34,211,238,0.12);
  animation: glowPulse2 5s ease-in-out infinite 0.5s;
}

.faq-glow-ring-3 {
  width: 170px;
  height: 170px;
  background: radial-gradient(circle, transparent 40%, rgba(249,115,22,0.05) 100%);
  border-color: rgba(249,115,22,0.1);
  animation: glowPulse3 6s ease-in-out infinite 1s;
}

@keyframes glowPulse1 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.08); opacity: 1; }
}

@keyframes glowPulse2 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.9; }
}

@keyframes glowPulse3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
  50% { transform: translate(-50%, -50%) scale(1.12); opacity: 0.8; }
}

/* Floating icons */
.faq-float-icon {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 5;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.faq-float-icon-1 {
  top: 5%;
  left: 10%;
  color: #fbbf24;
  animation: floatIcon1 5s ease-in-out infinite;
}

.faq-float-icon-2 {
  top: 10%;
  right: 8%;
  color: #8b5cf6;
  animation: floatIcon2 6s ease-in-out infinite 0.3s;
}

.faq-float-icon-3 {
  bottom: 15%;
  left: 5%;
  color: #22d3ee;
  animation: floatIcon3 5.5s ease-in-out infinite 0.6s;
}

.faq-float-icon-4 {
  bottom: 8%;
  right: 12%;
  color: #10b981;
  animation: floatIcon4 6.5s ease-in-out infinite 0.9s;
}

@keyframes floatIcon1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(10px, -15px) rotate(5deg); }
}

@keyframes floatIcon2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-12px, 10px) rotate(-8deg); }
}

@keyframes floatIcon3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(8px, -8px) scale(1.1); }
}

@keyframes floatIcon4 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-10px, -12px) rotate(10deg); }
}

/* Particle dots */
.faq-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(139,92,246,0.6);
  z-index: 3;
}

.faq-particle-1 {
  top: 20%;
  left: 30%;
  animation: particleFloat 8s ease-in-out infinite;
}

.faq-particle-2 {
  top: 35%;
  right: 25%;
  background: rgba(34,211,238,0.6);
  animation: particleFloat 9s ease-in-out infinite 1s;
}

.faq-particle-3 {
  bottom: 30%;
  left: 25%;
  background: rgba(249,115,22,0.5);
  animation: particleFloat 7s ease-in-out infinite 2s;
}

.faq-particle-4 {
  bottom: 20%;
  right: 30%;
  animation: particleFloat 10s ease-in-out infinite 0.5s;
}

.faq-particle-5 {
  top: 50%;
  left: 8%;
  background: rgba(16,185,129,0.5);
  width: 4px;
  height: 4px;
  animation: particleFloat 11s ease-in-out infinite 1.5s;
}

.faq-particle-6 {
  top: 45%;
  right: 5%;
  background: rgba(251,191,36,0.5);
  width: 5px;
  height: 5px;
  animation: particleFloat 8.5s ease-in-out infinite 2.5s;
}

@keyframes particleFloat {
  0%, 100% { transform: translate(0, 0); opacity: 0.4; }
  25% { transform: translate(15px, -20px); opacity: 0.8; }
  50% { transform: translate(-10px, -30px); opacity: 0.6; }
  75% { transform: translate(20px, -10px); opacity: 0.9; }
}

/* ===== FAQ ITEM ANIMATIONS ===== */
.faq-group {
  animation: fadeSlideUp 0.6s ease-out both;
}

.faq-group:nth-child(1) { animation-delay: 0.1s; }
.faq-group:nth-child(2) { animation-delay: 0.2s; }
.faq-group:nth-child(3) { animation-delay: 0.3s; }
.faq-group:nth-child(4) { animation-delay: 0.4s; }
.faq-group:nth-child(5) { animation-delay: 0.5s; }

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

details.faq-item {
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

details.faq-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, #8b5cf6, #22d3ee);
  border-radius: 3px 0 0 3px;
  transition: height 0.3s ease;
}

details.faq-item:hover::before,
details.faq-item[open]::before {
  height: 100%;
}

details.faq-item summary {
  transition: all 0.3s ease;
}

details.faq-item:hover {
  transform: translateX(8px);
}

details.faq-item[open] {
  transform: translateX(8px);
}

.faq-body {
  animation: expandIn 0.3s ease-out;
}

@keyframes expandIn {
  from { opacity: 0; max-height: 0; }
  to { opacity: 1; max-height: 500px; }
}

/* Category title animation */
.faq-category-title {
  position: relative;
  display: inline-block;
}

.faq-category-title::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #8b5cf6, #22d3ee);
  transition: width 0.4s ease;
}

.faq-group:hover .faq-category-title::after {
  width: 100%;
}

/* ===== FAQ CONTAINER ===== */
.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

/* ===== FAQ CONTROLS (Original Style) ===== */
.faq-controls {
    display: grid;
    gap: 14px;
    margin: 1.25rem 0 2.5rem;
    padding: 1.5rem;
    border: 1px solid var(--ab-border, rgba(255,255,255,0.06));
    border-radius: 16px;
    background: var(--ab-bg-s2, #14141d);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

@media (min-width: 992px) {
    .faq-controls {
        grid-template-columns: 1.2fr 0.8fr 0.6fr;
        align-items: end;
    }
}

.faq-controls hr {
    display: none;
}

.faq-controls .field {
    display: grid;
    gap: 8px;
    position: relative;
}

.faq-controls label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ab-muted, rgba(255,255,255,0.55));
}

.faq-controls input[type="search"],
.faq-controls select {
    width: 100%;
    height: 50px;
    padding: 0 1rem;
    border-radius: 12px;
    border: 1px solid var(--ab-border, rgba(255,255,255,0.06));
    background: var(--ab-bg-s1, #0f0f16);
    color: var(--ab-text, #f0f0f5);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.faq-controls input[type="search"] {
    padding-right: 54px;
}

.faq-controls input[type="search"]::placeholder {
    color: rgba(255,255,255,0.35);
}

.faq-controls input[type="search"]:focus,
.faq-controls select:focus {
    border-color: var(--ab-accent, #8b5cf6);
    box-shadow: 0 0 0 4px rgba(139,92,246,0.15);
}

.faq-refresh {
    position: absolute;
    right: 10px;
    top: 32px;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid var(--ab-border, rgba(255,255,255,0.06));
    background: var(--ab-bg-s2, #14141d);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ab-muted, rgba(255,255,255,0.55));
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-refresh:hover {
    border-color: var(--ab-accent, #8b5cf6);
    color: var(--ab-accent, #8b5cf6);
}

/* ===== FAQ ITEMS (Original Style) ===== */
.faq-group {
    margin: 2rem 0 2.5rem;
}

.faq-category-title {
    margin: 0 0 1rem;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ab-accent, #8b5cf6);
}

.faq-group .faq {
    display: grid;
    gap: 12px;
}

details.faq-item {
    border: 1px solid var(--ab-border, rgba(255,255,255,0.06));
    border-radius: 14px;
    background: var(--ab-bg-s2, #14141d);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    overflow: clip;
    transition: all 0.3s ease;
}

details.faq-item:hover {
    border-color: rgba(139,92,246,0.3);
}

details.faq-item[open] {
    border-color: var(--ab-accent, #8b5cf6);
    box-shadow: 0 12px 30px rgba(139,92,246,0.15);
}

details.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1rem 1.25rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--ab-text, #f0f0f5);
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
    transition: background 0.3s ease;
}

details.faq-item summary::-webkit-details-marker {
    display: none;
}

details.faq-item summary::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.85rem;
    color: var(--ab-muted, rgba(255,255,255,0.55));
    transition: transform 0.2s ease, color 0.2s ease;
}

details.faq-item[open] summary::after {
    transform: rotate(180deg);
    color: var(--ab-accent, #8b5cf6);
}

details.faq-item summary:hover {
    background: rgba(139,92,246,0.08);
}

details.faq-item summary:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(139,92,246,0.2);
}

.faq-body {
    padding: 0 1.25rem 1.25rem;
    border-top: 1px solid var(--ab-border, rgba(255,255,255,0.06));
}

.faq-body p.muted {
    margin: 1rem 0 0;
    color: var(--ab-muted, rgba(255,255,255,0.55));
    line-height: 1.75;
}

.faq-link {
    display: inline-flex;
    margin-top: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--ab-accent, #8b5cf6);
    transition: color 0.3s ease;
}

.faq-link:hover {
    color: var(--ab-accent2, #22d3ee);
    text-decoration: underline;
}

/* Loading state */
#faq-root .muted {
    color: var(--ab-muted, rgba(255,255,255,0.55));
    text-align: center;
    padding: 3rem;
    font-size: 1rem;
}

/* ===== VIDEO PLAYER STYLING ===== */
.faq-video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Search & Filter Controls */
.faq-controls-modern {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

@media (min-width: 768px) {
    .faq-controls-modern {
        grid-template-columns: 1.5fr 1fr 0.8fr;
        align-items: end;
    }
}

.faq-control-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-control-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.faq-search-wrap {
    position: relative;
}

.faq-search-input {
    width: 100%;
    height: 54px;
    padding: 0 54px 0 1.25rem;
    background: var(--bg-s2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.faq-search-input:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 0 4px rgba(139,92,246,0.15);
}

.faq-search-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-dim);
    font-size: 1.1rem;
}

.faq-select {
    width: 100%;
    height: 54px;
    padding: 0 1.25rem;
    background: var(--bg-s2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-select:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 0 4px rgba(139,92,246,0.15);
}

/* FAQ Category Groups */
.faq-category-group {
    margin-bottom: 3rem;
}

.faq-category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.faq-category-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(34,211,238,0.1));
    border-radius: 12px;
    font-size: 1.25rem;
    color: var(--purple);
}

.faq-category-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
}

/* FAQ Accordion Items */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--border-h);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.faq-item[open] {
    border-color: var(--purple);
    box-shadow: 0 12px 40px rgba(139,92,246,0.15);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    color: var(--text);
    transition: background 0.3s ease;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question:hover {
    background: var(--bg-card-h);
}

.faq-question-text {
    flex: 1;
    font-size: 1.05rem;
    line-height: 1.4;
}

.faq-question-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139,92,246,0.1);
    border-radius: 50%;
    color: var(--purple);
    font-size: 0.85rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item[open] .faq-question-icon {
    background: var(--purple);
    color: #fff;
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
    border-top: 1px solid var(--border);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.faq-answer a {
    color: var(--purple);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.faq-answer a:hover {
    color: var(--cyan);
}

/* ===== VIDEO SECTIONS ===== */
.faq-video-section {
    padding: 80px 0;
    background: var(--bg-s1);
    position: relative;
    overflow: hidden;
}

.faq-video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--purple), var(--cyan), transparent);
}

.faq-video-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.faq-video-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-video-chip {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    border: 1px solid var(--border-h);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.faq-video-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.faq-video-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.faq-video-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .faq-video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.faq-video-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-video-card:hover {
    transform: translateY(-8px);
    border-color: var(--purple);
    box-shadow: 0 20px 60px rgba(139,92,246,0.2);
}

.faq-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.faq-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.faq-video-info {
    padding: 1.5rem;
}

.faq-video-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.faq-video-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.faq-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-s2) 0%, var(--bg) 100%);
    position: relative;
}

.faq-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2.5rem;
    text-align: center;
}

.faq-cta-card {
    background: linear-gradient(135deg, rgba(139,92,246,0.1), rgba(34,211,238,0.05));
    border: 1px solid var(--border-h);
    border-radius: var(--radius-lg);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.faq-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--purple), var(--cyan), var(--orange));
}

.faq-cta-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1rem;
}

.faq-cta-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* ===== FOOTER ===== */
.faq-footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
}

.faq-footer-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.faq-footer-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .faq-footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    }
}

.faq-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-footer-logo {
    height: 45px;
    width: auto;
}

.faq-footer-tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.faq-footer-title {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 1.25rem;
}

.faq-footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-footer-links a {
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.faq-footer-links a:hover {
    color: var(--purple);
}

.faq-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.faq-footer-contact-item i {
    color: var(--purple);
    margin-top: 4px;
}

.faq-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.faq-footer-copyright {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.faq-footer-legal {
    display: flex;
    gap: 1.5rem;
}

.faq-footer-legal a {
    font-size: 0.85rem;
    color: var(--text-dim);
    transition: color 0.3s ease;
}

.faq-footer-legal a:hover {
    color: var(--purple);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .faq-hero {
        padding: 120px 1.5rem 60px;
        min-height: 60vh;
    }
    
    .faq-container,
    .faq-video-container,
    .faq-cta-container,
    .faq-footer-container {
        padding: 0 1.5rem;
    }
    
    .faq-controls-modern {
        padding: 1.5rem;
    }
    
    .faq-cta-card {
        padding: 2rem 1.5rem;
    }
    
    .faq-float-icon {
        font-size: 1.8rem;
    }
}
