/* ==========================================================
   SOLUTIONS PAGE
   Executive Blue Premium
========================================================== */

.main-nav a[aria-current="page"] {
  color: var(--primary);
}

.main-nav a[aria-current="page"]::after {
  width: 100%;
  background: var(--accent);
}

/* Shared section primitives */
.sol-label {
  display: inline-block;
  position: relative;
  margin-bottom: 18px;
  padding-bottom: 14px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
}

.sol-label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 3px;
  border-radius: 20px;
  background: var(--accent);
}

.sol-label--center {
  display: block;
  text-align: center;
}

.sol-label--center::after {
  left: 50%;
  transform: translateX(-50%);
}

.sol-title {
  margin: 0 0 22px;
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--primary);
}

.sol-intro {
  margin: 0;
  max-width: 780px;
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.85;
  color: var(--text-light);
}

.sol-intro--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.sol-header {
  max-width: 920px;
  margin: 0 auto 56px;
  text-align: center;
}

.sol-overview .sol-header {
  max-width: none;
  width: 100%;
  margin-bottom: 40px;
}

.sol-overview .sol-header .sol-title {
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  white-space: normal;
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}

@media (min-width: 1101px) {
  .sol-overview .sol-header .sol-title {
    white-space: nowrap;
  }
}

.sol-overview .sol-header .sol-intro {
  max-width: none;
  width: 100%;
  font-size: 1rem;
  line-height: 1.7;
}

.sol-header .sol-label {
  display: inline-block;
}

.sol-header .sol-label::after {
  left: 50%;
  transform: translateX(-50%);
}

.sol-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

@media (max-width: 640px) {
  .sol-btn {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.92rem;
    white-space: normal;
    line-height: 1.35;
  }

  .sol-btn-row,
  .sol-panel-cta-actions {
    width: 100%;
  }

  .sol-chip {
    min-height: 64px;
    font-size: 0.82rem;
    padding: 12px 8px;
  }
}

.sol-btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(214, 40, 40, 0.22);
}

.sol-btn--primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  color: #fff;
}

.sol-btn--secondary {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.sol-btn--secondary:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.sol-btn--ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}

.sol-btn--ghost:hover {
  background: #fff;
  color: var(--primary);
}

.sol-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.sol-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.sol-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ==========================================================
   HERO
========================================================== */

.sol-hero {
  position: relative;
  overflow: hidden;
  padding: 118px 0 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.sol-hero::before {
  content: "";
  position: absolute;
  top: -220px;
  right: -260px;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(14, 73, 124, 0.08) 0%, rgba(14, 73, 124, 0.04) 42%, rgba(14, 73, 124, 0) 72%);
  pointer-events: none;
}

.sol-hero::after {
  content: "";
  position: absolute;
  bottom: -250px;
  left: -220px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(214, 40, 40, 0.05) 0%, rgba(214, 40, 40, 0) 70%);
  pointer-events: none;
}

.sol-hero .container {
  position: relative;
  z-index: 2;
}

.sol-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px 36px;
  align-items: stretch;
  margin-bottom: 0;
}

.sol-hero-content {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.sol-hero-title {
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  line-height: 1.18;
  letter-spacing: -0.5px;
  color: var(--primary);
}

.sol-hero-title span {
  color: var(--accent);
}

.sol-hero-copy {
  margin: 0 0 6px;
  max-width: 540px;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-light);
}

.sol-hero .sol-btn-row {
  margin-top: 18px;
}

.sol-hero .sol-btn {
  padding: 11px 22px;
  font-size: 0.92rem;
}

.sol-hero-image {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  min-height: 100%;
  align-self: stretch;
}

.sol-hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center right;
}

.sol-trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 18px 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
}

.sol-trust-item {
  text-align: center;
  padding: 4px 8px;
}

.sol-trust-value {
  margin: 0 0 2px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--primary);
  line-height: 1.1;
}

.sol-trust-text {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.35;
}

.sol-trust-item img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  margin-bottom: 6px;
}

.sol-brand-band {
  margin-top: auto;
  padding-top: 28px;
  text-align: left;
}

.sol-brand-line {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  letter-spacing: 0.02em;
  color: var(--primary);
}

.sol-brand-band p {
  margin: 0;
  max-width: 720px;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-light);
}

/* ==========================================================
   OVERVIEW + STICKY NAV
========================================================== */

.sol-overview {
  position: relative;
  padding: 40px 0 40px;
  background: #fff;
}

.sol-sticky-nav {
  position: sticky;
  top: var(--header-height);
  z-index: 40;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
}

.sol-sticky-nav-inner {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 14px 0;
  scrollbar-width: thin;
}

.sol-sticky-nav a {
  flex: 0 0 auto;
  padding: 10px 16px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-light);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.sol-sticky-nav a:hover {
  color: var(--primary);
  background: rgba(14, 73, 124, 0.05);
}

.sol-sticky-nav a.is-active {
  color: var(--primary);
  border-bottom-color: var(--accent);
  background: rgba(14, 73, 124, 0.06);
}

.sol-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sol-overview-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 28px 26px 26px;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(14, 73, 124, 0.04);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
}

.sol-overview-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  background: #f8fbff;
  box-shadow: 0 16px 36px rgba(14, 73, 124, 0.14);
}

.sol-overview-item:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.sol-overview-item img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 16px;
  transition: transform 0.28s ease;
}

.sol-overview-item:hover img {
  transform: scale(1.06);
}

.sol-overview-item h3 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--primary);
  letter-spacing: 0.01em;
}

.sol-overview-item p {
  margin: 0;
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-light);
}

.sol-overview-item .sol-overview-link {
  display: inline-block;
  margin-top: 18px;
  font-weight: 700;
  color: var(--accent);
  font-size: 0.92rem;
  transition: color 0.25s ease, transform 0.25s ease;
}

.sol-overview-item:hover .sol-overview-link {
  color: var(--accent-dark);
  transform: translateX(3px);
}

/* ==========================================================
   CUSTOMIZED E-LEARNING (PDF p.9 layout)
========================================================== */

.sol-panel-header {
  max-width: 920px;
  margin-bottom: 36px;
}

.sol-panel-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: 4px;
  background: rgba(14, 73, 124, 0.08);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
}

.sol-panel-header .sol-title {
  margin-bottom: 14px;
}

.sol-panel-header .sol-intro {
  max-width: 860px;
  font-size: 1rem;
  line-height: 1.7;
}

.sol-panel-body {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 28px 32px;
  align-items: stretch;
  margin-bottom: 24px;
}

.sol-panel-visual {
  position: relative;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sol-panel-visual img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
}

.sol-panel-lists {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 28px 24px;
}

.sol-panel-col-title {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
}

.sol-panel-deliver,
.sol-panel-why {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.sol-panel-deliver li,
.sol-panel-why li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
}

.sol-panel-deliver img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-top: 2px;
}

.sol-panel-deliver strong,
.sol-panel-why strong {
  display: block;
  margin-bottom: 3px;
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.3;
}

.sol-panel-deliver span,
.sol-panel-why span:not(.sol-panel-check) {
  display: block;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-light);
}

.sol-panel-check {
  width: 22px;
  height: 22px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--primary);
  position: relative;
  flex-shrink: 0;
}

.sol-panel-check::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 4px;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.sol-panel-cta {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px 28px;
  align-items: center;
  margin: 0 0 8px;
  padding: 22px 26px;
  border: 1.5px solid #8fa3b8;
  border-radius: 10px;
  background: #eef5fb;
  box-shadow: 0 4px 14px rgba(14, 73, 124, 0.08);
}

.sol-panel-cta-copy {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
}

.sol-panel-cta-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.sol-panel-cta h3 {
  margin: 0 0 6px;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--primary);
}

.sol-panel-cta p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-light);
}

.sol-panel-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}

.sol-panel-cta-actions .sol-btn {
  justify-content: center;
  text-align: center;
}

.sol-panel-caps {
  margin: 0 0 18px;
  padding-bottom: 0;
  border-bottom: none;
}

.sol-panel-framework {
  margin: 8px 0 28px;
}

.sol-panel-impact {
  margin: 8px 0 28px;
  padding: 22px 16px;
  border: 1.5px solid #8fa3b8;
  border-radius: 10px;
  background: #f4f8fc;
}

.sol-chip-row--wrap {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1100px) {
  .sol-chip-row--wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .sol-chip-row--wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1100px) {
  .sol-panel-body {
    grid-template-columns: 1fr;
  }

  .sol-panel-lists {
    grid-template-columns: 1fr 1fr;
  }

  .sol-panel-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .sol-panel-lists {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================
   DETAIL SECTIONS
========================================================== */

.sol-detail {
  position: relative;
  overflow: hidden;
  padding: 72px 0 40px;
}

.sol-detail--white {
  background: #fff;
}

.sol-detail--tint {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.sol-detail::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -180px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 73, 124, 0.05), rgba(14, 73, 124, 0));
  pointer-events: none;
}

.sol-detail .container {
  position: relative;
  z-index: 2;
}

.sol-detail-top {
  max-width: 860px;
  margin-bottom: 48px;
}

.sol-deliver-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 48px;
}

.sol-deliver-item {
  padding: 22px 0 8px;
  border-top: 2px solid var(--border);
}

.sol-deliver-item h3 {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--primary);
}

.sol-deliver-item p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-light);
}

.sol-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 40px;
  margin: 40px 0;
}

.sol-why-item h4 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--primary);
}

.sol-why-item p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-light);
}

.sol-chip-heading {
  font-size: 1.5rem;
  margin: 36px 0 4px;
}

.sol-chip-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin: 32px 0 12px;
}

@media (max-width: 1200px) {
  .sol-chip-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sol-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 16px 12px;
  text-align: center;
  border: 1.5px solid #8fa3b8;
  border-radius: 8px;
  background: #f4f8fc;
  box-shadow: 0 4px 12px rgba(14, 73, 124, 0.1);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--primary);
  letter-spacing: 0.01em;
}

@media (max-width: 1100px) {
  .sol-chip-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .sol-chip-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.sol-industries {
  margin: 20px 0 0;
  font-size: 0.98rem;
  color: var(--text-light);
  line-height: 1.7;
}

.sol-industries strong {
  color: var(--primary);
}

.sol-close {
  margin-top: 36px;
  margin-bottom: 0;
  padding-top: 28px;
  padding-bottom: 28px;
  border-top: 1px solid var(--border);
  border-bottom: 1.5px solid #8fa3b8;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px 28px;
  align-items: center;
}

.sol-close .sol-btn-row {
  margin-top: 0;
  flex-direction: column;
  align-items: stretch;
}

.sol-close .sol-btn {
  justify-content: center;
  text-align: center;
}

.sol-close h3 {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--primary);
}

.sol-close p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text-light);
}

.sol-featured {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  margin: 48px 0;
  padding: 36px 40px;
  background: linear-gradient(135deg, #0e497c 0%, #0a355a 100%);
  color: #fff;
}

.sol-featured--light {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
  border: 1px solid var(--border);
  color: var(--text);
}

.sol-featured-eyebrow {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.sol-featured--light .sol-featured-eyebrow {
  color: var(--accent);
}

.sol-featured h3 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.2;
}

.sol-featured--light h3 {
  color: var(--primary);
}

.sol-featured-sub {
  margin: 0 0 16px;
  font-weight: 700;
  opacity: 0.9;
}

.sol-featured--light .sol-featured-sub {
  color: var(--primary-light);
}

.sol-featured p {
  margin: 0 0 18px;
  line-height: 1.75;
  opacity: 0.92;
}

.sol-featured--light p {
  color: var(--text-light);
  opacity: 1;
}

.sol-featured ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.sol-featured li {
  position: relative;
  padding-left: 18px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.sol-featured li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.sol-featured-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.sol-featured--light .sol-featured-media img {
  box-shadow: 0 16px 40px rgba(14, 73, 124, 0.12);
}

.sol-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 40px 0;
}

.sol-step {
  padding: 22px 18px;
  border-top: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.7);
}

.sol-step-num {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
}

.sol-step h4 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--primary);
}

.sol-step p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-light);
}

.sol-apps {
  margin: 28px 0 0;
}

.sol-apps h4 {
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--primary);
}

.sol-apps ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.sol-apps li {
  font-size: 0.95rem;
  color: var(--text-light);
  padding-left: 14px;
  position: relative;
}

.sol-apps li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.sol-tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.sol-tech-card {
  padding: 28px 24px;
  border-top: 3px solid var(--primary);
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--primary);
}

.sol-tech-card h3 {
  margin: 0 0 6px;
  font-family: var(--font-heading);
  font-size: 1.45rem;
  color: var(--primary);
}

.sol-tech-card .sol-tech-role {
  margin: 0 0 14px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
}

.sol-tech-card p {
  margin: 0 0 16px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-light);
}

.sol-tech-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sol-tech-card li {
  padding: 6px 0 6px 14px;
  position: relative;
  font-size: 0.92rem;
  color: var(--text-light);
}

.sol-tech-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.sol-ecosystem {
  margin: 48px 0 20px;
  padding: 36px 32px;
  background: #0e497c;
  color: #fff;
  text-align: center;
}

.sol-ecosystem h3 {
  margin: 0 0 28px;
  font-family: var(--font-heading);
  font-size: 1.6rem;
}

.sol-eco-flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 12px;
}

.sol-eco-node {
  min-width: 160px;
  padding: 18px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.sol-eco-node strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
}

.sol-eco-node span {
  font-size: 0.88rem;
  opacity: 0.85;
}

.sol-eco-arrow {
  align-self: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  opacity: 0.7;
}

/* ==========================================================
   WHY CHOOSE
========================================================== */

.sol-why {
  position: relative;
  overflow: hidden;
  padding: 72px 0 40px;
  background: #fff;
}

.sol-diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 36px;
  margin: 48px 0;
}

.sol-diff-item {
  padding-top: 18px;
  border-top: 2px solid var(--border);
}

.sol-diff-item h3 {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--primary);
}

.sol-diff-item p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-light);
}

.sol-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 48px 0;
}

.sol-compare-panel {
  padding: 32px 28px;
  border: 1px solid var(--border);
  background: var(--off-white);
}

.sol-compare-panel--accent {
  background: linear-gradient(160deg, #0e497c 0%, #0a355a 100%);
  border-color: transparent;
  color: #fff;
}

.sol-compare-panel h3 {
  margin: 0 0 22px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--primary);
}

.sol-compare-panel--accent h3 {
  color: #fff;
}

.sol-compare-flow {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sol-compare-flow span {
  display: block;
  padding: 10px 14px;
  background: rgba(14, 73, 124, 0.06);
  font-weight: 700;
  color: var(--text);
  text-align: center;
}

.sol-compare-panel--accent .sol-compare-flow span {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.sol-compare-flow em {
  display: block;
  text-align: center;
  font-style: normal;
  opacity: 0.55;
  font-family: var(--font-heading);
}

.sol-impact-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin: 40px 0 36px;
  text-align: center;
}

.sol-impact-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 6px;
}

.sol-impact-item span {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.4;
}

.sol-trust-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: 20px;
}

.sol-trust-cols h4 {
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--primary);
}

.sol-trust-cols ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.sol-trust-cols li {
  padding-left: 14px;
  position: relative;
  color: var(--text-light);
  line-height: 1.5;
}

.sol-trust-cols li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ==========================================================
   FINAL CTA
========================================================== */

.sol-final-cta {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: linear-gradient(135deg, #0e497c 0%, #0a355a 55%, #17304f 100%);
  color: #fff;
  text-align: center;
}

.sol-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(214, 40, 40, 0.18), transparent 40%);
  pointer-events: none;
}

.sol-final-cta .container {
  position: relative;
  z-index: 2;
}

.sol-final-cta h2 {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.2;
}

.sol-final-cta > .container > p {
  margin: 0 auto 28px;
  max-width: 760px;
  font-size: 1.08rem;
  line-height: 1.8;
  opacity: 0.92;
}

.sol-final-cta .sol-btn-row {
  justify-content: center;
}

.sol-final-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 36px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.sol-final-trust span {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  opacity: 0.9;
}

.sol-final-brand {
  margin: 28px 0 0;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}

.sol-detail,
#elearning,
#simulations,
#leadership,
#assessments,
#od-consulting,
#learning-technology,
#solutions-overview,
#customized-elearning,
#innsim,
#ene-compass,
#ene-masterclass {
  scroll-margin-top: calc(var(--header-height) + 72px);
}

.site-footer .footer-column a {
  color: inherit;
  text-decoration: none;
}

.site-footer .footer-column a:hover {
  color: #fff;
  text-decoration: underline;
}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 1100px) {
  .sol-hero-grid,
  .sol-featured,
  .sol-close,
  .sol-compare,
  .sol-trust-cols {
    grid-template-columns: 1fr;
  }

  .sol-overview-grid,
  .sol-deliver-grid,
  .sol-tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sol-trust-bar,
  .sol-impact-grid,
  .sol-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .sol-eco-arrow {
    display: none;
  }
}

@media (max-width: 768px) {
  .sol-hero {
    padding: 108px 0 16px;
  }

  .sol-hero-grid {
    gap: 20px;
    margin-bottom: 0;
  }

  .sol-hero-image {
    min-height: 240px;
    justify-content: center;
  }

  .sol-hero-image img {
    max-height: 280px;
    width: auto;
    height: auto;
    margin: 0 auto;
  }

  .sol-brand-band {
    margin-top: 24px;
    padding-top: 20px;
  }

  .sol-overview,
  .sol-detail,
  .sol-why,
  .sol-final-cta {
    padding-top: 56px;
    padding-bottom: 32px;
  }

  .sol-overview {
    padding-top: 28px;
  }

  .sol-close {
    padding-bottom: 22px;
  }

  .sol-overview .sol-header .sol-title {
    font-size: 1.25rem;
  }

  .sol-overview-grid,
  .sol-deliver-grid,
  .sol-tech-grid,
  .sol-why-grid,
  .sol-diff-grid,
  .sol-trust-bar,
  .sol-impact-grid,
  .sol-steps {
    grid-template-columns: 1fr;
  }

  .sol-featured {
    padding: 28px 22px;
  }

  .sol-sticky-nav-inner {
    padding-left: 4px;
    padding-right: 4px;
  }

  .header-container {
    padding: 0 20px;
  }
}

