/* Solution Page v2 Layout System */
:root {
  --sol-bg: #ffffff;
  --sol-ink: #0f172a;
  --sol-muted: #475569;
  --sol-line: #e2e8f0;
  --sol-soft: #f8fafc;
  --sol-soft2: #f1f5f9;
  --sol-brand: #15284c;
  --sol-brand2: #0d1a33;
  --sol-accent: #c3bb00;
  --sol-radius: 16px;
  --sol-shadow: 0 10px 30px rgba(2, 6, 23, .08);
  --sol-shadow2: 0 6px 18px rgba(2, 6, 23, .06);
  --sol-max: 1160px;
}

.sol-container { max-width: var(--sol-max); margin: 0 auto; padding: 0 20px; }
.sol-section { padding: 56px 0; }
.sol-section.tight { padding: 36px 0; }
.sol-section.soft { background: var(--sol-soft); }
.sol-section.soft2 { background: var(--sol-soft2); }

.sol-eyebrow {
  display: inline-flex; gap: 10px; align-items: center;
  font-size: 13px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--sol-muted);
}
.sol-pill {
  border: 1px solid var(--sol-line);
  background: #fff;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  color: var(--sol-muted);
}
.sol-h1 { font-size: clamp(28px, 3vw, 44px); line-height: 1.1; margin: 14px 0 12px; color: var(--sol-ink); }
.sol-h2 { font-size: clamp(20px, 2vw, 28px); margin: 0 0 14px; color: var(--sol-ink); }
.sol-h3 { font-size: 18px; margin: 0 0 8px; color: var(--sol-ink); }
.sol-p { margin: 0 0 14px; color: var(--sol-muted); }
.sol-lead { font-size: 18px; color: var(--sol-ink); opacity: .92; }
.sol-kicker { max-width: 70ch; }

/* Hero */
.sol-hero {
  padding: 40px 0 26px;
  background: radial-gradient(1000px 600px at 20% -20%, rgba(21,40,76,.12), transparent 60%),
              radial-gradient(900px 600px at 90% 10%, rgba(195,187,0,.08), transparent 55%);
  border-bottom: 1px solid var(--sol-line);
}
.sol-heroGrid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 30px;
  align-items: center;
}
.sol-heroCard {
  background: #fff;
  border: 1px solid var(--sol-line);
  border-radius: var(--sol-radius);
  padding: 18px;
  box-shadow: var(--sol-shadow2);
  overflow: hidden;
}
.sol-heroMedia {
  border-radius: calc(var(--sol-radius) - 6px);
  overflow: hidden;
  border: 1px solid var(--sol-line);
  background: #fff;
}
.sol-heroMedia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

/* Bridge */
.sol-bridge { background: linear-gradient(180deg, #ffffff, var(--sol-soft)); }
.sol-bridgeInner { display: grid; grid-template-columns: 1fr; gap: 10px; padding: 22px 0 0; }
.sol-bridgeBox {
  border: 1px solid var(--sol-line);
  background: #fff;
  border-radius: var(--sol-radius);
  padding: 18px;
  box-shadow: var(--sol-shadow2);
}
.sol-bridgeBox strong { color: var(--sol-ink); }
.sol-bridgeBox p { margin: 8px 0 0; }

/* Two-column */
.sol-twoCol {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  align-items: start;
}
.sol-sideCard {
  border: 1px solid var(--sol-line);
  border-radius: var(--sol-radius);
  padding: 18px;
  background: #fff;
  box-shadow: var(--sol-shadow2);
}
.sol-sideCard ul { margin: 12px 0 0; padding: 0; list-style: none; color: var(--sol-muted); }
.sol-sideCard li {
  margin: 8px 0;
  padding-left: 18px;
  position: relative;
}
.sol-sideCard li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--sol-brand);
  font-size: 16px;
}

/* Cards */
.sol-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.sol-card {
  border: 1px solid var(--sol-line);
  border-radius: var(--sol-radius);
  padding: 16px;
  background: #fff;
  box-shadow: var(--sol-shadow2);
  transition: transform .18s ease, box-shadow .18s ease;
}
.sol-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--sol-shadow);
}
.sol-icon {
  width: 36px; height: 36px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(21,40,76,.10);
  border: 1px solid rgba(21,40,76,.18);
  margin-bottom: 10px;
}
.sol-icon svg { width: 18px; height: 18px; fill: var(--sol-brand); }
.sol-card p { margin: 0; font-size: 14.5px; }

/* Emphasis */
.sol-emphasis {
  border-radius: var(--sol-radius);
  background: linear-gradient(135deg, var(--sol-brand2), var(--sol-brand));
  color: #fff;
  padding: 22px;
  box-shadow: var(--sol-shadow);
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.18);
}
.sol-emphasis p { color: rgba(255,255,255,.88); margin: 0; }
.sol-emphasis ul { margin: 0; padding: 0; list-style: none; }
.sol-emphasis li {
  margin: 8px 0;
  color: rgba(255,255,255,.92);
  padding-left: 20px;
  position: relative;
}
.sol-emphasis li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: rgba(255,255,255,.7);
  font-size: 18px;
  line-height: 1.4;
}

/* Coverage */
.sol-coverage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.sol-chip {
  border: 1px solid var(--sol-line);
  border-radius: 14px;
  padding: 12px 14px;
  background: #fff;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  box-shadow: var(--sol-shadow2);
}
.sol-dot {
  width: 10px; height: 10px; border-radius: 999px;
  background: rgba(21,40,76,.20);
  border: 1px solid rgba(21,40,76,.35);
  margin-top: 6px;
  flex: 0 0 auto;
}
.sol-chip strong { display: block; margin-bottom: 2px; color: var(--sol-ink); }
.sol-chip span { color: var(--sol-muted); font-size: 14px; }

/* CTA */
.sol-cta {
  border: 1px solid var(--sol-line);
  border-radius: var(--sol-radius);
  background: #fff;
  padding: 22px;
  box-shadow: var(--sol-shadow);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.sol-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--sol-brand);
  color: #fff;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 650;
  border: 1px solid rgba(0,0,0,.05);
  white-space: nowrap;
}
.sol-btn:hover { background: var(--sol-brand2); }
.sol-subcta { font-size: 14px; color: var(--sol-muted); margin: 6px 0 0; }

/* Solutions Nav */
.sol-solutions-nav {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.sol-solution-link {
  border: 1px solid var(--sol-line);
  background: #fff;
  border-radius: var(--sol-radius);
  padding: 18px;
  text-decoration: none;
  box-shadow: var(--sol-shadow2);
  transition: transform .18s ease, box-shadow .18s ease;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sol-solution-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--sol-shadow);
}
.sol-solution-link__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--sol-muted);
}
.sol-solution-link__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--sol-ink);
}
.sol-solution-link--center {
  text-align: center;
  align-items: center;
  background: var(--sol-soft);
}
.sol-solution-link--next {
  text-align: right;
  align-items: flex-end;
}

/* Accent Button (matching page-hero__cta style) */
.sol-btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background-color: #c3bb00;
  color: var(--sol-brand);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border-radius: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}
.sol-btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(195, 187, 0, 0.4);
}
.sol-btn-accent svg {
  width: 20px;
  height: 20px;
}

/* Responsive */
@media (max-width: 980px) {
  .sol-heroGrid, .sol-twoCol, .sol-emphasis { grid-template-columns: 1fr; }
  .sol-cards { grid-template-columns: repeat(2, 1fr); }
  .sol-coverage { grid-template-columns: 1fr; }
  .sol-cta { flex-direction: column; align-items: flex-start; }
  .sol-solutions-nav { grid-template-columns: 1fr; }
  .sol-solution-link--center { order: -1; }
  .sol-solution-link--next { text-align: left; align-items: flex-start; }
}
@media (max-width: 640px) {
  .sol-cards { grid-template-columns: 1fr; }
  .sol-section { padding: 44px 0; }
  .sol-hero { padding: 28px 0 18px; }
}
