/* ===== FTHB Page Styles ===== */
.fthb-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero */
.fthb-hero {
  padding: 8rem 2rem 4rem;
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.fthb-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212,168,67,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.fthb-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
}
.fthb-breadcrumb a { color: var(--fg-muted); }
.fthb-breadcrumb a:hover { color: var(--accent); }
.fthb-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.fthb-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  max-width: 820px;
  margin: 0 auto 1.25rem;
  color: var(--fg);
}
.fthb-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.fthb-cta-primary {
  display: inline-block;
  background: var(--accent);
  color: #0B1628;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 12px;
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
}
.fthb-cta-primary:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}
.fthb-cta-note {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-top: 1rem;
}
.fthb-lead { max-width: 460px; margin: 1.25rem auto 0; }

/* Stats bar */
.fthb-stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}
.fthb-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.fthb-stat {
  text-align: center;
}
.fthb-stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  margin-bottom: 0.35rem;
}
.fthb-stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* Two-column content */
.fthb-content {
  padding: 4rem 0;
  background: var(--bg);
}
.fthb-two-col {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}
.fthb-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.fthb-card h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.fthb-card p {
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.fthb-card ul {
  list-style: none;
  margin-bottom: 1rem;
}
.fthb-card ul li {
  padding: 0.6rem 0;
  color: var(--fg-muted);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}
.fthb-card ul li:last-child { border-bottom: none; }

/* Checklist */
.fthb-checklist { display: flex; flex-direction: column; gap: 0; }
.fthb-check-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.fthb-check-item:last-child { border-bottom: none; }
.check-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(212,168,67,0.15);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}
.fthb-check-item strong {
  display: block;
  color: var(--fg);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}
.fthb-check-item p {
  color: var(--fg-muted);
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.6;
}

/* Table */
.fthb-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.875rem;
}
.fthb-table thead tr {
  background: rgba(212,168,67,0.08);
}
.fthb-table th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  font-weight: 600;
}
.fthb-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--fg-muted);
}
.fthb-table tr:last-child td { border-bottom: none; }

/* Mistakes */
.fthb-mistakes { display: flex; flex-direction: column; gap: 1.25rem; }
.fthb-mistake h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.fthb-mistake p { margin-bottom: 0; }

/* FAQ */
.fthb-faq { }
.fthb-faq h2 { margin-bottom: 1.5rem; }
.fthb-faq-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.fthb-faq-item:last-child { border-bottom: none; }
.fthb-faq-item h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.fthb-faq-item p { margin: 0; }

/* Sidebar */
.fthb-sidebar { position: sticky; top: 80px; }
.fthb-sidebar-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}
.fthb-sidebar-widget h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 0.75rem;
}
.fthb-sidebar-widget p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.fthb-sidebar-widget .fthb-cta-primary {
  display: block;
  text-align: center;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
}

/* Score list */
.fthb-score-list { list-style: none; }
.fthb-score-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.6rem 0;
  font-size: 0.82rem;
  color: var(--fg-muted);
  border-bottom: 1px solid var(--border);
}
.fthb-score-list li:last-child { border-bottom: none; }
.score-badge {
  flex-shrink: 0;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
}
.score-badge.poor { background: rgba(239,68,68,0.15); color: #f87171; }
.score-badge.fair { background: rgba(251,191,36,0.15); color: #fbbf24; }
.score-badge.good { background: rgba(52,211,153,0.15); color: #34d399; }
.score-badge.excellent { background: rgba(212,168,67,0.15); color: var(--accent); }

/* Sidebar table */
.fthb-sidebar-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}
.fthb-sidebar-table td {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--fg-muted);
}
.fthb-sidebar-table tr:last-child td { border-bottom: none; }

/* Responsive */
@media (max-width: 900px) {
  .fthb-two-col { grid-template-columns: 1fr; }
  .fthb-sidebar { position: static; }
  .fthb-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .fthb-lead { max-width: 100%; }
}
@media (max-width: 600px) {
  .fthb-stats-grid { grid-template-columns: 1fr 1fr; }
  .fthb-card { padding: 1.25rem; }
}