/* Shared styles for /features /about /contact /blog pages.
   Inherits from /landing/styles.css (loaded in <link>). */

.page-hero {
  padding: 96px 0 64px;
  text-align: center;
  background: linear-gradient(180deg, #0F172A 0%, #0B1220 100%);
  color: #fff;
}
.page-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}
.page-hero p {
  font-size: 18px;
  color: #94A3B8;
  max-width: 720px;
  margin: 0 auto 28px;
  line-height: 1.6;
}
.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(20, 184, 166, 0.15);
  color: #14B8A6;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section {
  padding: 80px 0;
}
.section-alt {
  background: #F8FAFC;
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: #0F172A;
  margin: 8px 0 12px;
  letter-spacing: -0.02em;
}
.section-head p {
  font-size: 16px;
  color: #64748B;
  line-height: 1.6;
}

/* Generic two-column for narrative pages */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split-text h3 {
  font-size: 28px;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 16px;
}
.split-text p {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
  margin: 0 0 16px;
}
.split-text ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.split-text ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 15px;
  color: #334155;
  line-height: 1.5;
}
.split-text ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  width: 20px;
  height: 20px;
  background: rgba(20, 184, 166, 0.15);
  color: #14B8A6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

/* Image / illustration placeholder box */
.visual {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #94A3B8;
  text-align: center;
}

/* Stats row */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin: 48px 0 0;
}
.stat {
  text-align: center;
}
.stat-value {
  font-size: 40px;
  font-weight: 800;
  color: #14B8A6;
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: #64748B;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .stat-row { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .section { padding: 56px 0; }
  .page-hero { padding: 72px 0 40px; }
}
