/*--------------------------------------------------------------
# Solutions pages - page-specific styles
# Additive stylesheet used only by /solutions/*.html
# Reuses the site palette (#5846f9 / #298debe6 / #485664 / #5a5f68)
--------------------------------------------------------------*/

.sol-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.sol-badge {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 6px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
}

.sol-eyebrow {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  margin-bottom: 18px;
}

.sol-eyebrow.light {
  color: rgba(255, 255, 255, 0.75);
}

.sol-lead {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
  color: #5a5f68;
}

.sol-section-purple {
  background: radial-gradient(circle at 85% 30%, rgba(129, 140, 248, 0.25) 0%, rgba(147, 51, 234, 0.16) 25%, rgba(129, 140, 248, 0.08) 55%, transparent 75%),
    linear-gradient(90deg, #ffffff 0%, #f9fafb 35%, #eef2ff 100%);
}

.sol-split {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
}

.sol-split-text {
  flex: 1 1 380px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sol-split-text h2 {
  margin: 0 0 5px 0;
  font-size: 25px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #485664;
  letter-spacing: 1px;
}

.sol-split-text p {
  font-size: 15px;
  line-height: 1.8;
  color: #5a5f68;
}

.sol-split-cards {
  flex: 1.2 1 340px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.sol-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 30px;
  box-shadow: 0 16px 40px rgba(80, 50, 140, 0.12);
}

.sol-card h3 {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 700;
  color: #26282e;
}

.sol-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #5a5f68;
}

.sol-grid-3 {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.sol-tile {
  flex: 1 1 300px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(20, 30, 60, 0.08);
  padding: 34px 30px;
  text-align: center;
}

.sol-tile .bx {
  font-size: 40px;
  color: #5846f9;
  line-height: 1;
  margin-bottom: 14px;
  display: inline-block;
}

.sol-tile h4 {
  font-size: 18px;
  font-weight: 700;
  color: #26282e;
  margin-bottom: 12px;
}

.sol-tile p {
  font-size: 14px;
  line-height: 1.7;
  color: #5a5f68;
  margin-bottom: 10px;
}

.sol-tile .sol-scale {
  display: block;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 600;
  color: #5846f9;
}

.sol-tile-left {
  text-align: left;
}

.sol-tile-left .bx {
  display: block;
  text-align: center;
}

.sol-profile-row {
  margin-top: 14px;
}

.sol-profile-row span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #26282e;
  margin-bottom: 4px;
}

.sol-profile-row p {
  margin: 0;
}

.sol-diagram-frame {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(15, 23, 42, 0.1);
  background: #fff;
  text-align: center;
}

.sol-diagram-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.sol-diagram-frame {
  cursor: zoom-in;
}

.sol-zoom-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 14px;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #5846f9;
  cursor: zoom-in;
}

.sol-zoom-hint:hover {
  color: #8577fb;
}

.sol-zoom-hint i {
  font-size: 16px;
}

.sol-lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
  cursor: zoom-out;
}

.sol-lightbox-overlay img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  background: #ffffff;
  cursor: default;
}

.sol-lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  color: #2c4964;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sol-lightbox-close:hover {
  background: #ffffff;
  color: #5846f9;
}

.sol-two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 34px;
}

.sol-two-col > div {
  flex: 1 1 320px;
  min-width: 260px;
}

.sol-two-col h4 {
  font-size: 16px;
  font-weight: 700;
  color: #26282e;
  margin-bottom: 12px;
}

.sol-two-col p {
  font-size: 14px;
  line-height: 1.7;
  color: #5a5f68;
  margin-bottom: 10px;
}

.sol-two-col p strong {
  color: #26282e;
}

.sol-capabilities {
  margin-top: 34px;
  font-size: 14px;
  line-height: 1.9;
  color: #5a5f68;
  text-align: center;
}

.sol-capabilities strong {
  color: #26282e;
}

.sol-phases {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 34px;
}

.sol-phase {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(80, 50, 140, 0.1);
  padding: 24px 28px;
}

.sol-phase h4 {
  font-size: 14px;
  font-weight: 700;
  color: #26282e;
  margin-bottom: 8px;
}

.sol-phase p {
  font-size: 13px;
  line-height: 1.6;
  color: #5a5f68;
  margin-bottom: 6px;
}

.sol-timeline {
  margin-top: 24px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(80, 50, 140, 0.1);
  padding: 30px 34px;
}

.sol-timeline h4 {
  font-size: 16px;
  font-weight: 700;
  color: #26282e;
  margin-bottom: 14px;
}

.sol-timeline p {
  font-size: 14px;
  line-height: 1.8;
  color: #5a5f68;
  margin-bottom: 6px;
}

.sol-case-results {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.sol-case-card {
  flex: 1;
  min-width: 260px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(20, 30, 60, 0.08);
  padding: 24px 28px;
}

.sol-case-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #26282e;
  margin-bottom: 10px;
}

.sol-case-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #5a5f68;
  margin: 0;
}

.sol-next-steps {
  list-style: none;
  margin: 18px 0 0 0;
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
}

.sol-next-steps li {
  display: flex;
  align-items: flex-start;
  text-align: left;
  gap: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: #5a5f68;
}

.sol-next-steps span {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #f0edff;
  border: 1px solid #5846f9;
  color: #5846f9;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .sol-split, .sol-two-col {
    flex-direction: column;
  }
  .sol-phase {
    flex: 1 1 100%;
  }
}
