/* ========================================
   FAQ — DEDICATED PAGE
   TidalShine — Wilmington NC
   ======================================== */

/* ---- HERO ---- */
.faq-hero {
  background: var(--navy);
  padding: 80px 48px 72px;
  position: relative;
  overflow: hidden;
}

.faq-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, #071A2E 0%, #0D2540 60%, #0A2A3A 100%);
  z-index: 0;
}

.faq-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,194,184,0.1) 0%, transparent 70%);
  z-index: 0;
}

.faq-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.faq-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(0,194,184,0.3);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.faq-hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 56px);
  color: var(--sand);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 16px;
}

.faq-hero-sub {
  font-size: 18px;
  color: rgba(244,238,224,0.65);
  max-width: 540px;
}

/* ---- FAQ SECTIONS ---- */
.faq-body {
  background: var(--bg);
  padding: 80px 48px;
}

.faq-body-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.faq-category {
  margin-bottom: 64px;
}

.faq-category:last-child {
  margin-bottom: 0;
}

.faq-section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}

.faq-section-heading {
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: -8px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 0;
}

.faq-item {
  padding: 28px 0;
  border-bottom: 1px solid rgba(7, 26, 46, 0.08);
  padding-right: 48px;
}

.faq-item:nth-child(odd) {
  padding-right: 48px;
  border-right: 1px solid rgba(7, 26, 46, 0.08);
}

.faq-item:nth-child(even) {
  padding-left: 48px;
}

.faq-item:nth-last-child(-n+2) {
  border-bottom: none;
}

.faq-item h3 {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.35;
}

.faq-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---- CTA STRIP ---- */
.faq-cta {
  background: var(--bg-alt);
  padding: 72px 48px;
  text-align: center;
}

.faq-cta-inner {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.faq-cta-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.faq-cta-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
}

.faq-cta-link {
  display: inline-block;
  background: var(--teal);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
  margin-top: 8px;
}

.faq-cta-link:hover {
  background: #00e2ce;
  transform: translateY(-2px);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-item {
    padding-right: 0;
    border-right: none;
    padding-left: 0;
  }

  .faq-item:nth-child(even) {
    padding-left: 0;
  }

  .faq-item:nth-last-child(-n+2) {
    border-bottom: 1px solid rgba(7, 26, 46, 0.08);
  }

  .faq-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 640px) {
  .faq-hero {
    padding: 60px 24px 56px;
  }

  .faq-body {
    padding: 56px 24px;
  }

  .faq-cta {
    padding: 56px 24px;
  }

  .faq-category {
    margin-bottom: 48px;
  }
}