/* === FAQ PAGE STYLES === */

.faq-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 20% 30%, #052006 0%, #062b0a 40%, #000000 70%), linear-gradient(120deg, #003613, #1c2005, #204125);
  overflow: hidden;
  padding: 110px 0 80px;
}
.faq-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.55) 1px, transparent 3px),
    radial-gradient(circle, rgba(120,160,255,0.45) 2px, transparent 7px);
  background-size: 160px 160px, 260px 260px;
  pointer-events: none;
  opacity: 0.35;
}
.faq-hero::after {
  content: '';
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109,92,255,0.18) 0%, transparent 70%);
  top: -140px; right: -100px;
  pointer-events: none;
}
.faq-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.faq-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.95);
  border: 1px solid #dde3ff;
  color: #3730a3;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.4rem;
  box-shadow: 0 2px 14px rgba(79,92,255,0.13);
  letter-spacing: 0.2px;
}
.faq-hero-badge .dot {
  width: 8px; height: 8px; min-width: 8px;
  background: #22c55e;
  border-radius: 50%;
}
.faq-hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 0.75rem;
}
.faq-hero h1 span { color: #d1ff9b; }
.faq-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.faq-search-wrap {
  max-width: 520px;
  margin: 0 auto;
  position: relative;
}
.faq-search-wrap .search-icon {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  pointer-events: none;
  z-index: 1;
}
.faq-search {
  width: 100%;
  padding: 0.9rem 3rem 0.9rem 2.9rem;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  background: rgba(255,255,255,0.1);
  color: #fff;
  outline: none;
  backdrop-filter: blur(12px);
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.faq-search::placeholder { color: rgba(255,255,255,0.45); }
.faq-search:focus {
  border-color: rgba(109,92,255,0.7);
  background: rgba(255,255,255,0.15);
  box-shadow: 0 0 0 4px rgba(109,92,255,0.2);
}
.faq-search-clear {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 0.85rem;
  width: 26px; height: 26px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}
.faq-search-clear.visible { display: flex; }
.faq-search-clear:hover { background: rgba(255,255,255,0.25); }

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  background: #fff;
  pointer-events: none;
}
.hero-shape-1 { width: 180px; height: 180px; top: 15%; left: 5%; }
.hero-shape-2 { width: 100px; height: 100px; bottom: 20%; right: 8%; }
.hero-shape-3 { width: 60px; height: 60px; top: 60%; left: 20%; }

.faq-categories {
  background: #fafff8;
  padding: 2.5rem 0 0;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-bottom: 0;
}
.cat-card {
  background: #fff;
  border: 1.5px solid #dde3ff;
  border-radius: 14px;
  padding: 1.25rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  position: relative;
  overflow: hidden;
}
.cat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 0 0 12px 12px;
  background: var(--cat-color, #6d5cff);
  transform: scaleX(0);
  transition: transform .25s;
}
.cat-card:hover { border-color: var(--cat-color, #6d5cff); box-shadow: 0 6px 24px rgba(109,92,255,0.1); transform: translateY(-2px); }
.cat-card:hover::after { transform: scaleX(1); }
.cat-card.active { border-color: var(--cat-color, #6d5cff); box-shadow: 0 6px 28px rgba(109,92,255,0.14); }
.cat-card.active::after { transform: scaleX(1); }
.cat-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin: 0 auto 0.6rem;
  background: var(--cat-bg, #ede9fe);
  color: var(--cat-color, #6d5cff);
  transition: transform .2s;
}
.cat-card:hover .cat-icon, .cat-card.active .cat-icon { transform: scale(1.1); }
.cat-label { font-size: 0.78rem; font-weight: 600; color: #000b33; line-height: 1.3; }
.cat-count { font-size: 0.7rem; color: #94a3b8; margin-top: 0.2rem; }
@media (max-width: 860px) { .category-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 540px) { .category-grid { grid-template-columns: repeat(2,1fr); } }

.faq-content-area { background: #f8fbff; padding: 2.5rem 0 5rem; }
.faq-section-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1.5px solid #dde3ff;
}
.faq-section-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  background: var(--cat-bg, #ede9fe);
  color: var(--cat-color, #6d5cff);
  flex-shrink: 0;
}
.faq-section-title { font-size: 1.15rem; font-weight: 700; color: #000b33; margin: 0; }
.faq-section-sub { font-size: 0.8rem; color: #94a3b8; margin: 0; }

.search-result-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.15rem 0.55rem;
  border-radius: 4px;
  margin-bottom: 0.35rem;
}

.faq-accordion-item {
  background: #fff;
  border: 1.5px solid #dde3ff;
  border-radius: 14px;
  margin-bottom: 0.65rem;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-accordion-item:hover { border-color: #b8b0ff; box-shadow: 0 4px 20px rgba(109,92,255,0.07); }
.faq-accordion-item.open { border-color: var(--cat-color, #6d5cff); box-shadow: 0 6px 30px rgba(109,92,255,0.12); }
.faq-acc-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.faq-acc-num {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: #f1f5f9;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700; color: #94a3b8;
  flex-shrink: 0;
  transition: background .2s, color .2s;
}
.faq-accordion-item.open .faq-acc-num { background: var(--cat-color, #6d5cff); color: #fff; }
.faq-acc-q { font-size: 0.93rem; font-weight: 600; color: #000b33; line-height: 1.45; flex: 1; transition: color .2s; }
.faq-accordion-item.open .faq-acc-q { color: var(--cat-color, #6d5cff); }
.faq-acc-chevron {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.78rem; color: #94a3b8;
  transition: transform .3s, background .2s, color .2s;
}
.faq-accordion-item.open .faq-acc-chevron { transform: rotate(180deg); background: var(--cat-bg, #ede9fe); color: var(--cat-color, #6d5cff); }

.faq-acc-body-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-accordion-item.open .faq-acc-body-wrap { grid-template-rows: 1fr; }
.faq-acc-body-inner { overflow: hidden; }
.faq-acc-body { padding: 0 1.25rem 1.25rem 1.25rem; border-top: 1px solid #f1f5f9; padding-top: 0.85rem; }
.faq-acc-body p, .faq-acc-body li { font-size: 0.9rem; color: #4b5563; line-height: 1.8; margin: 0; }
.faq-acc-body ul { padding-left: 1.1rem; margin: 0.5rem 0 0; }
.faq-acc-body ul li { list-style: disc; margin-bottom: 0.25rem; }
.faq-acc-body a { color: var(--cat-color, #6d5cff); }

mark { background: #fef9c3; color: inherit; border-radius: 2px; padding: 0 1px; }

.faq-result-count {
  font-size: 0.82rem; color: #64748b; margin-bottom: 1.25rem; font-weight: 500;
  display: flex; align-items: center; gap: 0.4rem;
}
.no-results-msg { text-align: center; padding: 4rem 1rem; color: #94a3b8; }
.no-results-msg i { font-size: 2.5rem; display: block; margin-bottom: 0.75rem; }

.faq-contact-strip {
  background: #fff;
  border: 1.5px solid #ddffe3;
  border-radius: 18px;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin-top: 3rem;
  box-shadow: 0 2px 14px rgba(79,92,255,0.07);
}
.contact-tile {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 12px;
  background: #f8fbff;
  border: 1.5px solid #dde3ff;
  transition: border-color .2s, box-shadow .2s;
}
.contact-tile:hover { border-color: #6d5cff; box-shadow: 0 4px 16px rgba(109,92,255,0.1); }
.contact-tile-icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-tile-icon.blue { background: #ede9fe; color: #6d5cff; }
.contact-tile-icon.green { background: #f0fdf4; color: #22c55e; }
.contact-tile-icon.orange { background: #fff7ed; color: #f97316; }
.contact-tile-label { font-size: 0.75rem; color: #94a3b8; font-weight: 500; }
.contact-tile-value { font-size: 0.88rem; font-weight: 600; color: #000b33; }
@media (max-width: 700px) { .faq-contact-strip { grid-template-columns: 1fr; } }

section.Fast-apply.container { margin-top: 0 !important; }
.fast-apply-section { margin: 30px auto !important; }

.cta-btn:hover { transform: none !important; box-shadow: 0 15px 40px rgba(0,0,0,.25) !important; }
.cta-btn::after { display: none !important; }
.cta-btn.active { animation: none !important; box-shadow: 0 8px 24px rgba(0,0,0,.2) !important; }
