/* ── Parallax CTA banner ── */
.swb-parallax {
  position: relative;
  background: url('//smartupworld.com/wp-content/uploads/2024/01/do-what-you-love.webp') center center / cover no-repeat;
  background-attachment: fixed;
  min-height: 480px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.swb-parallax__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,.82) 0%, rgba(21,101,192,.70) 100%);
}
.swb-parallax__body {
  position: relative; z-index: 2;
  max-width: 860px; width: 100%;
  padding: 72px 24px;
  text-align: center;
}
.swb-parallax__eyebrow {
  display: inline-block;
  font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: #FFB74D;
  border: 1px solid rgba(255,183,77,.4);
  padding: 4px 14px; border-radius: var(--swb-pill); margin-bottom: 18px;
}
.swb-parallax__title {
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 800; color: #fff; line-height: 1.2; margin: 0 0 14px;
}
.swb-parallax__title span { color: #FFB74D; }
.swb-parallax__sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.82);
  max-width: 520px; margin: 0 auto 36px; line-height: 1.65;
}
.swb-parallax__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 52px; }
.swb-parallax__btn-primary {
  background: var(--swb-orange); color: #fff;
  font-weight: 700; font-size: .95rem;
  padding: 14px 30px; border-radius: var(--swb-pill);
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(255,109,0,.38);
  transition: var(--swb-ease);
}
.swb-parallax__btn-primary:hover { background: #E65100; transform: translateY(-2px); color: #fff; text-decoration: none; }
.swb-parallax__btn-ghost {
  background: rgba(255,255,255,.12); color: #fff;
  font-weight: 600; font-size: .95rem;
  padding: 14px 30px; border-radius: var(--swb-pill);
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,.3);
  transition: var(--swb-ease);
}
.swb-parallax__btn-ghost:hover { background: rgba(255,255,255,.22); color: #fff; text-decoration: none; }
.swb-parallax__stats {
  display: flex; justify-content: center;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 36px;
}
.swb-parallax__stat {
  text-align: center;
  padding: 0 36px;
  border-right: 1px solid rgba(255,255,255,.15);
}
.swb-parallax__stat:last-child { border-right: none; }
.swb-parallax__stat-num { font-size: 2rem; font-weight: 800; color: #fff; display: block; line-height: 1; margin-bottom: 6px; }
.swb-parallax__stat-num span { color: #FFB74D; }
.swb-parallax__stat-label { font-size: .75rem; color: rgba(255,255,255,.65); letter-spacing: .08em; text-transform: uppercase; }
@media (max-width: 600px) {
  .swb-parallax__stat { padding: 16px 20px; border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
  .swb-parallax__stat:last-child { border-bottom: none; }
}