/* ═══════════════════════════════════════
   style_index.css — Homepage only
   ═══════════════════════════════════════ */

/* ── HERO ── */
.home-hero h1 { font-size: 3rem; max-width: 700px; }
.home-hero .hero-sub { max-width: 600px; }

/* ── STATS BAR ── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}
.stat-item {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
}
.stat-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

/* ── CONCERN CARDS ── */
.cards-section {
  padding: 5rem 3rem;
  background: var(--white);
}
.cards-section h2 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.cards-section .section-intro {
  color: var(--text-body);
  max-width: 620px;
  margin-bottom: 2.5rem;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.concern-card {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.5rem;
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.concern-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(201,168,76,0.1);
}
.concern-card svg { display: block; margin-bottom: 1rem; }
.concern-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.concern-card p { font-size: 0.88rem; color: var(--text-body); line-height: 1.55; }
.concern-card .card-link {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.concern-card .card-link:hover { text-decoration: underline; }

/* ── AGENCY TABS ── */
.tabs-section {
  background: var(--navy);
  padding: 4rem 3rem;
}
.tabs-section .tabs-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.tab-buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
.tab-btn {
  padding: 0.6rem 1.25rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  border: 1px solid var(--border-gold);
  background: transparent;
  color: var(--gold);
  transition: all 0.2s;
}
.tab-btn.active { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.tab-btn:hover:not(.active) { background: rgba(201,168,76,0.08); }
.tab-panel { display: none; color: var(--text-light); font-size: 0.95rem; line-height: 1.7; max-width: 640px; }
.tab-panel.active { display: block; }

/* ── ORIGIN SECTION ── */
.origin-section {
  padding: 5rem 3rem;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.origin-section h2 {
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  max-width: 600px;
}
.origin-section p {
  color: var(--text-body);
  max-width: 680px;
  margin-bottom: 1rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-section { padding: 4rem 2rem; }
  .tabs-section, .origin-section { padding: 3.5rem 2rem; }
}
@media (max-width: 767px) {
  .home-hero h1 { font-size: 2rem; }
  .stats-bar { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .cards-grid { grid-template-columns: 1fr; }
  .cards-section, .tabs-section, .origin-section { padding: 3rem 1.25rem; }
}
