/* ============ FAQ PAGE ============ */

/* Hero */
.fq-head {
  text-align: center;
  padding: var(--s-9) var(--s-7) var(--s-7);
  background: #fff;
}

.fq-title {
  font-family: var(--font-display);
  font-size: var(--fs-56);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: var(--s-4);
}

.fq-sub {
  color: var(--text-muted);
  font-size: var(--fs-18);
  line-height: 1.55;
  max-width: 580px;
  margin: 0 auto var(--s-7);
}

.fq-sub a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Pill tabs */
.fq-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.fq-tab {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  padding: 10px 22px;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: var(--fs-14);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.fq-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.fq-tab.active {
  background: var(--text);
  border-color: var(--text);
  color: #fff;
}

/* List */
.fq-list-wrap {
  background: var(--surface-soft);
  padding: var(--s-8) var(--s-7) var(--s-9);
  border-top: 1px solid var(--border);
}

.fq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.fq-item:hover {
  border-color: rgba(26,164,232,0.4);
}

.fq-item[open] {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.fq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  display: grid;
  grid-template-columns: 40px 1fr 24px;
  gap: var(--s-3);
  align-items: center;
}

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

.fq-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fq-q {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-16);
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.fq-chev {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, color 0.2s;
}

.fq-item[open] .fq-chev {
  transform: rotate(180deg);
  color: var(--primary);
}

.fq-a {
  padding: 0 22px 22px 76px;
  color: var(--text-muted);
  line-height: 1.65;
  font-size: var(--fs-14);
}

/* Bottom contact prompt */
.fq-bottom {
  max-width: 820px;
  margin: var(--s-8) auto 0;
  text-align: center;
  padding: var(--s-7) var(--s-6);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}

.fq-bottom h3 {
  font-family: var(--font-display);
  font-size: var(--fs-24);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}

.fq-bottom p {
  color: var(--text-muted);
  margin-bottom: var(--s-4);
}
