/* -------------------------------------------------------
   Commercial Page Overrides
   (Works alongside css/modern.css)
-------------------------------------------------------- */

.page-hero {
  padding: 38px 0 10px;
  background:
    radial-gradient(900px 420px at 15% 15%, rgba(10, 62, 86, 0.10), rgba(0, 0, 0, 0) 55%),
    radial-gradient(900px 420px at 85% 20%, rgba(16, 185, 129, 0.10), rgba(0, 0, 0, 0) 60%);
}

.page-hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: start;
}

.page-hero-content .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #0b2a3a;
  background: rgba(16, 185, 129, 0.10);
  border: 1px solid rgba(16, 185, 129, 0.22);
  padding: 10px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.page-hero-content h1 {
  margin: 0 0 10px;
}

.page-hero-content .lead {
  margin: 0 0 16px;
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 14px 0 18px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 6px;
}

.hero-metrics .metric {
  background: #ffffff;
  border: 1px solid rgba(11, 42, 58, 0.10);
  border-radius: 16px;
  padding: 14px 14px;
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.06);
}

.hero-metrics .metric-title {
  font-weight: 800;
  color: #0b2a3a;
  margin-bottom: 4px;
}

.hero-metrics .metric-text {
  color: rgba(11, 42, 58, 0.78);
  font-size: 0.95rem;
  line-height: 1.35;
}

.page-hero-aside .aside-card {
  background: #ffffff;
  border: 1px solid rgba(11, 42, 58, 0.10);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 20px 50px rgba(2, 6, 23, 0.10);
}

.page-hero-aside .aside-title {
  font-weight: 900;
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: #0b2a3a;
}

.page-hero-aside .aside-text {
  color: rgba(11, 42, 58, 0.80);
  line-height: 1.55;
  margin-bottom: 14px;
}

.checklist {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(11, 42, 58, 0.035);
  border: 1px solid rgba(11, 42, 58, 0.08);
  color: rgba(11, 42, 58, 0.90);
  line-height: 1.35;
}

.checklist i {
  color: #10b981;
  margin-top: 2px;
  font-size: 1.05rem;
}

.media-wide {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(11, 42, 58, 0.10);
  box-shadow: 0 22px 55px rgba(2, 6, 23, 0.10);
  background: #fff;
}

.media-wide img {
  width: 100%;
  height: auto;
  display: block;
}

.pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.pill-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(11, 42, 58, 0.10);
  color: #0b2a3a;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(2, 6, 23, 0.06);
}

.pill-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(2, 6, 23, 0.09);
}

/* Responsive */
@media (max-width: 980px) {
  .page-hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 26px 0 6px;
  }
}