/* Sapphire product suite page layout and styles */
.page-layout {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 28px;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-layout__main {
  min-width: 0;
}

.page-layout__sidebar {
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 32px;
}

.stat-box {
  background: var(--navy-50);
  border: 0.5px solid var(--navy-100);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}

.stat-box__number {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--navy-900);
}

.stat-box__label {
  font-size: 12.5px;
  color: var(--text-primary);
  line-height: 1.45;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .page-layout {
    grid-template-columns: 1fr;
  }
  .page-layout__sidebar {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    padding-top: 0;
  }
  .stat-box {
    flex: 1;
    min-width: 160px;
  }
}

/* ── Consulting hero (compact) ── */
.c-hero {
  background: var(--teal-700);
  padding: 28px 24px 26px;
}

.c-hero__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.c-hero h1 {
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.15;
}

.c-hero__sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  max-width: 700px;
}

/* ── Index homepage layout ── */
.index-lite {
  scroll-snap-type: y mandatory;
}

.snap-block {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.hero-snap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 24px;
}

.hero-snap h1 {
  font-size: clamp(36px, 8vw, 72px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 24px;
  max-width: 1000px;
}

.hero-snap p {
  font-size: clamp(16px, 2vw, 24px);
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 700px;
  margin-bottom: 32px;
}

.section-snap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 24px;
}

.section-snap__inner {
  max-width: 1080px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .page-layout { padding: 0 20px; }
  .c-hero { padding: 24px 20px 22px; }
  .c-hero h1 { font-size: 24px; }
  .c-hero__sub { font-size: 14px; }
  .hero-snap { padding: 40px 20px; }
  .section-snap { padding: 60px 20px; }
}
