﻿/* ============================================================
   faq.css — Dedicated stylesheet for faq.html
   Companion to styles.css (global baseline)
   Design tokens (:root) are defined in styles.css
   ============================================================ */

/* ── Page Root Wrapper ──────────────────────────────────── */
.faq-page-root {
  font-family: var(--font-manrope);
  background: var(--white);
  color: var(--ink);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ── Accent Bars ────────────────────────────────────────── */
.faq-accent-bar {
  display: inline-block;
  width: 8px;
  height: 1em;
  background: #FF7A33;
  border-radius: 2px;
  margin-right: 16px;
  vertical-align: -0.14em;
}

.faq-accent-bar--gold {
  background: var(--amber);
}

/* ── FAQ Main Section (Desktop Base) ────────────────────── */
.faq-section {
  position: relative;
  overflow: hidden;
  background: var(--bg-warm);
  padding: 56px 40px 72px;
  display: flex;
  gap: 56px;
  align-items: flex-start;
}

.faq-watermark {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--font-sora);
  font-weight: 800;
  font-size: 150px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(11, 18, 32, 0.07);
  letter-spacing: -5px;
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
}

.faq-sidebar {
  position: relative;
  z-index: 1;
  flex: none;
  width: min(400px, 92vw);
}

.faq-tag {
  font-family: var(--font-sora);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--slate);
  margin-bottom: 14px;
}

.faq-title {
  font-family: var(--font-sora);
  font-weight: 800;
  font-size: 44px;
  line-height: 1.14;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: var(--ink);
  text-transform: uppercase;
}

.faq-title-light {
  font-weight: 300;
  color: var(--slate);
}

.faq-lead {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 28px;
}

/* ── Sidebar Help Card ──────────────────────────────────── */
.faq-card-help {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}

.faq-card-help-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-card-help-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--bg-icon);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D8451F;
  flex: none;
}

.faq-card-help-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}

.faq-card-help-sub {
  font-size: 12.5px;
  color: var(--slate);
}

.faq-card-help-btn {
  background: linear-gradient(135deg, #FF7A33, #FF3B54);
  color: var(--white);
  border: none;
  padding: 10px 18px;
  border-radius: 999px;
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 16px -4px rgba(255, 59, 84, 0.4);
  text-decoration: none;
}

.faq-card-help-btn:hover {
  background: linear-gradient(135deg, #FFFFFF, #FFFFFF);
  color: var(--primary);
}

.faq-card-help-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -4px rgba(255, 59, 84, 0.6);
}

/* ── FAQ List & Accordion Items ─────────────────────────── */
.faq-list-container {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.faq-item {
  border: 1.5px solid var(--border-accent);
  border-radius: 16px;
  padding: 22px 24px;
  background: var(--white);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 20px -6px rgba(11, 18, 32, 0.06);
}

.faq-question-row {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.faq-question-wrap {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.faq-q-prefix {
  color: #D8451F;
  font-weight: 800;
  font-family: var(--font-sora);
  flex-shrink: 0;
}

.faq-question-text {
  font-weight: 700;
  font-size: 15.5px;
  max-width: 480px;
  color: var(--ink);
  line-height: 1.35;
}

.faq-icon-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF7A33, #FF3B54);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  transition: transform 0.2s ease;
}

.faq-answer-wrap {
  display: none;
}

.faq-answer-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 16px 0 0 30px;
}

/* ── CTA Banner Section (Desktop Base) ────────────────── */
/* .cta-banner-section, .cta-banner-card, .cta-banner-title,
   .cta-banner-title-light, .cta-banner-desc, .cta-banner-btns,
   .cta-btn-primary, .cta-btn-secondary are in styles.css */



/* ============================================================
   RESPONSIVE MEDIA QUERIES (Specific to faq.html)
   ============================================================ */

/* ── Tablet & Small Laptops (< 992px) ───────────────────── */
@media (max-width: 991px) {
  .faq-section {
    flex-direction: column;
    gap: 32px;
    padding: 44px 24px 56px;
  }

  .faq-sidebar {
    width: 100%;
  }

  .faq-watermark {
    font-size: 100px;
    top: 30px;
  }

  .faq-title {
    font-size: 36px;
  }
}

/* ── Mobile Devices (< 768px) ───────────────────────────── */
@media (max-width: 767px) {
  .faq-watermark {
    display: none;
  }

  .faq-title {
    font-size: 28px;
    text-align: left;
  }

  .faq-sidebar {
    text-align: left;
  }

  .faq-card-help {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .faq-card-help-btn {
    width: 100%;
    text-align: center;
  }

  .faq-answer-text {
    margin: 12px 0 0 0;
  }
}