/* ═══════════════════════════════════════════════════════════
   SOLUTIONS PAGE — solutions.css
   Design tokens (from site.css):
   --navy:#020733  --navy-2:#182957  --blue:#2f80ed
   --blue-soft:#5b9cff  --muted:#536070  --line:#e3e8ef
   --shadow:0 20px 60px rgba(15,27,45,.10)  --bg:#f6f8fb
   ═══════════════════════════════════════════════════════════ */

/* ── Shared Utilities ──────────────────────────────────── */
.sol-kicker {
  display: block;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .3em;
  text-transform: uppercase;
}

.sol-kicker--light {
  color: #9bc9ff;
}

.sol-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 52px;
}

.sol-section-head h2 {
  margin: 0;
  color: var(--navy-2);
  font-size: clamp(2.25rem, 3.2vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: 1.02;
  text-wrap: balance;
}

.sol-section-head p {
  margin: 0;
  max-width: 52ch;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.sol-section-head--centered {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.sol-section-head--centered p {
  max-width: 66ch;
}

.sol-text-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-weight: 800;
  font-size: 15px;
  transition: gap .2s ease;
}

.sol-text-cta:hover { gap: 10px; }

/* ── Buttons ───────────────────────────────────────────── */
.sol-btn-primary {
  min-height: 52px;
  padding: 0 28px;
  font-size: 15px;
  background: var(--navy);
  color: #ffffff;
}

.sol-btn-primary:hover { background: var(--navy-2); }

.sol-btn-ghost {
  min-height: 52px;
  padding: 0 28px;
  font-size: 15px;
  border-color: rgba(23, 32, 51, .18);
  background: #ffffff;
  color: var(--navy-2);
}

/* ═══════════════════════════════════════════════════════════
   1. HERO
   ═══════════════════════════════════════════════════════════ */
.sol-hero {
  padding: 112px 0 0;
  background:
    radial-gradient(circle at 72% 28%, rgba(91, 156, 255, .16), transparent 30rem),
    linear-gradient(160deg, #ffffff 55%, #eef3fb);
  border-bottom: 1px solid var(--line);
}

.sol-hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 72px;
}

.sol-hero-copy h1 {
  margin: 0 0 22px;
  max-width: 620px;
  color: var(--navy-2);
  font-size: clamp(2.6rem, 4vw, 4.8rem);
  font-weight: 900;
  letter-spacing: -.062em;
  line-height: 1.0;
  text-wrap: balance;
}

.sol-hero-copy > p {
  margin: 0 0 36px;
  max-width: 540px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.2vw, 1.22rem);
  line-height: 1.68;
}

.sol-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.sol-hero-visual { position: relative; }

.sol-hero-img-wrap {
  position: relative;
  z-index: 1;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(15, 27, 45, .18);
  aspect-ratio: 4 / 3;
}

.sol-hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.sol-hero-proof {
  display: flex;
  align-items: center;
  padding: 26px 44px;
  background: rgba(255, 255, 255, .9);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.sol-hero-proof-item {
  flex: 1;
  padding: 0 36px;
  text-align: center;
}

.sol-hero-proof-item:first-child { padding-left: 0; }
.sol-hero-proof-item:last-of-type { padding-right: 0; }

.sol-hero-proof-item strong {
  display: block;
  margin-bottom: 5px;
  color: var(--navy-2);
  font-size: clamp(1.4rem, 1.9vw, 2rem);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1;
}

.sol-hero-proof-item span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}

.sol-hero-proof-divider {
  width: 1px;
  height: 36px;
  flex-shrink: 0;
  background: var(--line);
}

/* ═══════════════════════════════════════════════════════════
   2. WORKFORCE SOLUTIONS OVERVIEW
   ═══════════════════════════════════════════════════════════ */
.sol-overview {
  padding: 100px 0;
  background: #ffffff;
}

.sol-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sol-overview-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.sol-overview-card:hover {
  transform: translateY(-4px);
  border-color: #cdd6e5;
  box-shadow: 0 28px 64px rgba(14, 27, 45, .12);
}

.sol-overview-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 14px;
  background: rgba(47, 128, 237, .10);
  border: 1px solid rgba(47, 128, 237, .12);
  color: var(--blue);
  font-size: 18px;
}

.sol-overview-card h3 {
  margin: 0 0 12px;
  color: var(--navy-2);
  font-size: clamp(1.15rem, 1.35vw, 1.5rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.1;
}

.sol-overview-card p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.sol-overview-cta {
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -.01em;
}

/* ═══════════════════════════════════════════════════════════
   3. FEATURED SOLUTION
   ═══════════════════════════════════════════════════════════ */
.sol-featured {
  padding: 104px 0;
  background: #eef3fb;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.sol-featured-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sol-featured-visual { position: relative; }

.sol-featured-img-wrap {
  position: relative;
  z-index: 2;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 72px rgba(15, 27, 45, .16);
  aspect-ratio: 5 / 4;
}

.sol-featured-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.2, .8, .2, 1);
}

.sol-featured-img-wrap:hover img { transform: scale(1.04); }

.sol-featured-img-accent {
  position: absolute;
  bottom: -22px;
  right: -22px;
  width: 72%;
  height: 72%;
  border-radius: 24px;
  background: rgba(47, 128, 237, .10);
  border: 1px solid rgba(47, 128, 237, .14);
  z-index: 1;
}

.sol-featured-copy h2 {
  margin: 0 0 20px;
  color: var(--navy-2);
  font-size: clamp(2.2rem, 3vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: 1.04;
  text-wrap: balance;
}

.sol-featured-copy > p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

.sol-featured-list {
  list-style: none;
  margin: 0 0 34px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.sol-featured-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-2);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.sol-featured-list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

/* ═══════════════════════════════════════════════════════════
   4. COMPARE STAFFING MODELS
   ═══════════════════════════════════════════════════════════ */
.sol-compare {
  padding: 100px 0;
  background: #ffffff;
}

.sol-compare-wrap {
  overflow-x: auto;
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.sol-compare-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.sol-compare-th {
  padding: 22px 26px;
  text-align: left;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--navy-2);
  border-bottom: 1px solid var(--line);
  background: #f8fafc;
}

.sol-compare-th--label {
  width: 190px;
  background: #f8fafc;
}

.sol-compare-th--featured {
  background: var(--navy);
  color: #ffffff;
}

.sol-compare-badge {
  display: block;
  width: fit-content;
  margin-bottom: 8px;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(91, 156, 255, .22);
  color: #9bc9ff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.sol-compare-label {
  padding: 18px 26px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-2);
  background: #f8fafc;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.sol-compare-cell {
  padding: 18px 26px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

.sol-compare-cell--featured {
  background: rgba(2, 7, 51, .03);
  color: var(--navy-2);
  font-weight: 600;
}

tbody tr:last-child .sol-compare-label,
tbody tr:last-child .sol-compare-cell {
  border-bottom: none;
}

.sol-compare-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(47, 128, 237, .12);
  color: var(--blue);
  font-size: 12px;
}

.sol-compare-dash {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .05);
  color: var(--muted);
  font-size: 12px;
}

/* ═══════════════════════════════════════════════════════════
   5. HOW AGILE BUILDS THE RIGHT SOLUTION
   ═══════════════════════════════════════════════════════════ */
.sol-process {
  padding: 100px 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.sol-process-layout {
  display: grid;
  grid-template-columns: minmax(0, .72fr) 1fr;
  gap: 80px;
  align-items: start;
}

.sol-process-copy h2 {
  margin: 0 0 18px;
  color: var(--navy-2);
  font-size: clamp(2.2rem, 3.2vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: 1.04;
  text-wrap: balance;
}

.sol-process-copy > p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

.sol-process-steps {
  display: grid;
  gap: 14px;
}

.sol-process-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(15, 27, 45, .04);
}

.sol-process-num {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 14px;
  background: rgba(47, 128, 237, .10);
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
}

.sol-process-step h3 {
  margin: 0 0 8px;
  color: var(--navy-2);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.2;
}

.sol-process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════
   6. MANUFACTURING ROLES SUPPORTED
   ═══════════════════════════════════════════════════════════ */
.sol-roles {
  padding: 100px 0;
  background: #ffffff;
}

.sol-roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.sol-roles-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.sol-roles-card:hover {
  transform: translateY(-3px);
  border-color: #cdd6e5;
  box-shadow: 0 16px 40px rgba(14, 27, 45, .08);
}

.sol-roles-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 12px;
  background: rgba(47, 128, 237, .08);
  color: var(--blue);
  font-size: 16px;
}

.sol-roles-card h3 {
  margin: 0 0 8px;
  color: var(--navy-2);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.03em;
}

.sol-roles-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   7. CLIENT RESULTS / PROOF
   ═══════════════════════════════════════════════════════════ */
.sol-proof {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy), #18315e);
}

.sol-proof-inner {
  display: grid;
  gap: 52px;
}

.sol-proof-head {
  text-align: center;
}

.sol-proof-head h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.2rem, 3.2vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: 1.04;
}

.sol-proof-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
}

.sol-proof-metric {
  padding: 36px 28px;
  background: rgba(255, 255, 255, .055);
  text-align: center;
}

.sol-proof-metric strong {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: clamp(2.2rem, 3.2vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: 1;
}

.sol-proof-metric span {
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
  line-height: 1.45;
}

.sol-proof-quote {
  margin: 0;
  padding: 40px 48px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
}

.sol-proof-quote p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(1.12rem, 1.5vw, 1.42rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.6;
  letter-spacing: -.015em;
}

.sol-proof-quote footer {
  margin-top: 24px;
  padding: 0;
  background: transparent;
}

.sol-proof-quote footer strong {
  display: block;
  margin-bottom: 4px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  font-style: normal;
}

.sol-proof-quote footer span {
  color: rgba(255, 255, 255, .52);
  font-size: 14px;
  font-style: normal;
}

/* ═══════════════════════════════════════════════════════════
   8. FAQ
   ═══════════════════════════════════════════════════════════ */
.sol-faq {
  padding: 100px 0;
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.sol-faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: 84px;
  align-items: start;
}

.sol-faq-copy h2 {
  margin: 0 0 14px;
  color: var(--navy-2);
  font-size: clamp(2rem, 2.8vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: 1.06;
  text-wrap: balance;
}

.sol-faq-copy > p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.sol-faq-list {
  display: grid;
  gap: 6px;
}

.sol-faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
}

.sol-faq-q {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  color: var(--navy-2);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.02em;
  cursor: pointer;
  user-select: none;
  transition: color .15s ease;
}

.sol-faq-q::-webkit-details-marker { display: none; }
.sol-faq-q::marker { content: ''; }

.sol-faq-q::after {
  content: '+';
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(47, 128, 237, .10);
  color: var(--blue);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}

.sol-faq-item[open] .sol-faq-q {
  border-bottom: 1px solid var(--line);
}

.sol-faq-item[open] .sol-faq-q::after {
  content: '−';
  background: rgba(47, 128, 237, .15);
}

.sol-faq-a {
  padding: 18px 24px 22px;
}

.sol-faq-a p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   9. FINAL CTA
   ═══════════════════════════════════════════════════════════ */
.sol-cta {
  padding: 80px 0;
  background: var(--bg);
}

.sol-cta-inner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr .44fr;
  align-items: stretch;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--navy) 40%, #1a3363);
  box-shadow: 0 20px 64px rgba(2, 7, 51, .20);
}

/* Left content column — copy + proof + buttons grouped tight */
.sol-cta-left {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 52px 56px;
}

.sol-cta-copy {
  display: flex;
  flex-direction: column;
}

.sol-cta-copy h2 {
  margin: 6px 0 10px;
  max-width: 20ch;
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: 1.05;
  text-wrap: balance;
}

.sol-cta-copy > p {
  margin: 0 0 14px;
  max-width: 52ch;
  color: rgba(255, 255, 255, .66);
  font-size: 16px;
  line-height: 1.65;
}

.sol-cta-proof {
  margin: 0;
  color: rgba(255, 255, 255, .30);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  line-height: 1.5;
}

.sol-cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Right decorative panel — industrial grid lines + brandmark */
.sol-cta-visual {
  position: relative;
  overflow: hidden;
  border-left: 1px solid rgba(255, 255, 255, .06);
}

.sol-cta-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 7, 51, .52) 0%, transparent 28%),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, .036) 0px,
      rgba(255, 255, 255, .036) 1px,
      transparent 1px,
      transparent 26px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, .018) 0px,
      rgba(255, 255, 255, .018) 1px,
      transparent 1px,
      transparent 26px
    );
}

.sol-cta-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 62% 32%, rgba(91, 156, 255, .13), transparent 62%);
}

.sol-cta-visual img {
  position: absolute;
  bottom: 24px;
  right: 22px;
  width: 40%;
  opacity: .07;
  z-index: 1;
}

/* Small depth accent circle */
.sol-cta-accent {
  position: absolute;
  top: -44px;
  right: 41%;
  width: 148px;
  height: 148px;
  border-radius: 50%;
  background: rgba(91, 156, 255, .07);
  pointer-events: none;
}

/* Buttons */
.sol-btn-cta-primary {
  min-height: 48px;
  padding: 0 26px;
  font-size: 14px;
  font-weight: 800;
  background: #ffffff;
  color: var(--navy);
  white-space: nowrap;
}

.sol-btn-cta-primary:hover {
  background: rgba(255, 255, 255, .92);
}

.sol-btn-cta-ghost {
  min-height: 48px;
  padding: 0 26px;
  font-size: 14px;
  font-weight: 800;
  border-color: rgba(255, 255, 255, .22);
  background: transparent;
  color: rgba(255, 255, 255, .80);
  white-space: nowrap;
}

.sol-btn-cta-ghost:hover {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .34);
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .sol-overview-grid { grid-template-columns: repeat(2, 1fr); }
  .sol-roles-grid { grid-template-columns: repeat(2, 1fr); }
  .sol-proof-metrics { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .sol-hero-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 56px;
  }

  .sol-featured-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .sol-featured-visual { max-width: 560px; }

  .sol-process-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .sol-faq-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .sol-cta-inner { grid-template-columns: 1fr; }

  .sol-cta-visual {
    min-height: 100px;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, .06);
  }
}

@media (max-width: 760px) {
  .sol-hero { padding-top: 88px; }

  .sol-hero-proof {
    flex-wrap: wrap;
    padding: 22px 28px;
    gap: 18px 0;
  }

  .sol-hero-proof-divider { display: none; }

  .sol-hero-proof-item {
    flex: 1 1 45%;
    padding: 0;
    text-align: center;
  }

  .sol-section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .sol-section-head p { max-width: 100%; }

  .sol-overview-grid { grid-template-columns: 1fr; }
  .sol-roles-grid { grid-template-columns: 1fr; }

  .sol-cta-left { padding: 38px 32px; gap: 20px; }

  .sol-cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .sol-btn-cta-primary,
  .sol-btn-cta-ghost { width: 100%; }
}

@media (max-width: 560px) {
  .sol-proof-metrics { grid-template-columns: repeat(2, 1fr); }
  .sol-proof-quote { padding: 28px; }
  .sol-faq-layout { gap: 32px; }
}

@media (max-width: 560px) {
  .sol-proof-metrics { grid-template-columns: repeat(2, 1fr); }

  .sol-proof-quote { padding: 28px 28px; }

  .sol-faq-layout { gap: 32px; }
}

/* ════════════════════════════════════════════════════════════
   HERO REFINEMENTS
   ════════════════════════════════════════════════════════════ */

/* Richer background — stronger radial depth, richer base gradient */
.sol-hero {
  padding: 120px 0 80px;
  background:
    radial-gradient(ellipse 65% 55% at 80% 12%, rgba(47, 128, 237, .13), transparent 52%),
    radial-gradient(ellipse 35% 45% at 4% 88%, rgba(30, 60, 115, .06), transparent 40%),
    linear-gradient(162deg, #f8fafc 35%, #eaeff9 100%);
  border-bottom: none;
}

/* Remove internal bottom padding — section padding now handles spacing */
.sol-hero-layout { padding-bottom: 0; }

/* Deeper, more dimensional image shadow */
.sol-hero-img-wrap {
  border-radius: 32px;
  box-shadow: 0 40px 100px rgba(15, 27, 45, .20), 0 8px 24px rgba(15, 27, 45, .08);
}

/* Accent panel — soft blue-gray tile behind the image for depth */
.sol-hero-img-accent {
  position: absolute;
  bottom: -18px;
  right: -18px;
  width: 76%;
  height: 76%;
  border-radius: 32px;
  background: linear-gradient(145deg, #dde6f5, #c6d1eb);
  z-index: 0;
}

@media (max-width: 960px) {
  .sol-hero-layout { padding-bottom: 0; }
  .sol-hero-img-accent { display: none; }
}

/* ── Proof band: standalone strip beneath the hero ────────── */
.sol-proof-band {
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.sol-proof-band-inner {
  display: flex;
  align-items: center;
  padding: 26px 0;
}

.sol-proof-band-item {
  flex: 1;
  padding: 0 36px;
  text-align: center;
}

.sol-proof-band-item:first-child { padding-left: 0; }
.sol-proof-band-item:last-child  { padding-right: 0; }

.sol-proof-band-item strong {
  display: block;
  margin-bottom: 5px;
  color: var(--navy-2);
  font-size: clamp(1.35rem, 1.8vw, 1.95rem);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1;
}

.sol-proof-band-item span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}

.sol-proof-band-div {
  width: 1px;
  height: 36px;
  flex-shrink: 0;
  background: var(--line);
}

@media (max-width: 760px) {
  .sol-proof-band-inner {
    flex-wrap: wrap;
    padding: 20px 0;
  }

  .sol-proof-band-div { display: none; }

  .sol-proof-band-item {
    flex: 1 1 45%;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .sol-proof-band-item:nth-child(3),
  .sol-proof-band-item:last-child { border-bottom: none; }
}

/* ════════════════════════════════════════════════════════════
   VISUAL RHYTHM REFINEMENTS
   Section-to-section transitions, pacing, CTA-to-footer
   ════════════════════════════════════════════════════════════ */

/* ── Featured: richer editorial panel — breaks the white monotony */
.sol-featured {
  background: #e8edf6;
  border-color: #dde3ee;
}
.sol-featured-img-accent {
  background: rgba(28, 52, 110, .08);
  border-color: rgba(28, 52, 110, .11);
}

/* ── Roles: cooler, slightly deeper tone — visual runway before dark proof */
.sol-roles { background: #f0f4f9; }

/* ── Proof: clean dark section, no bleeds */
.sol-proof {
  padding: 100px 0;
  background:
    radial-gradient(ellipse 55% 60% at 8% 28%, rgba(47, 128, 237, .09), transparent),
    linear-gradient(145deg, #020733 0%, #182957 50%, #18315e 100%);
}

/* ── FAQ: hard border restores clean separation from Proof */
.sol-faq { border-top: 1px solid var(--line); }

/* ── CTA: dark section, hard edges */
.sol-cta {
  background:
    radial-gradient(ellipse 58% 50% at 8% 38%, rgba(47, 128, 237, .07), transparent),
    linear-gradient(155deg, #020733 0%, #182957 55%, #18315e 100%);
}

/* Inner card: glass panel on the dark section */
.sol-cta-inner {
  z-index: 1;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07), 0 24px 60px rgba(0, 0, 0, .22);
}

/* ── Footer: scoped blue-ambient glow */
.solutions-page > footer {
  background:
    radial-gradient(ellipse 72% 38% at 50% 0%, rgba(47, 128, 237, .12), transparent),
    radial-gradient(circle at 14% 44%, rgba(47, 128, 237, .10), transparent 22rem),
    linear-gradient(160deg, #020733 0%, #18315e 100%);
}
