/**
 * Deferred CSS for Staff Augmentation Page
 * Contains: Below-fold section styles
 * Loaded asynchronously after first paint
 */

/* =====================
   SOLUTIONS SECTION
   ===================== */
.sa-solutions {
  padding: 60px 0;
  background: #fff;
}

.sa-solutions__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 45px;
  align-items: stretch;
}

.sa-solutions__header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 20px;
  align-items: flex-start;
}

.sa-solutions__label {
  font-size: 24px;
  font-weight: 500;
  color: #206dd1;
  margin-bottom: 16px;
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
}

.sa-solutions__label::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 2px;
  background: #206dd1;
}

.sa-solutions__title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-text, #1d1d1f);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.sa-solutions__desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text, #1d1d1f);
  margin-bottom: 32px;
  max-width: 350px;
  letter-spacing: 0.02em;
}

.sa-solutions__card {
  background: #fff;
  box-shadow: 0px 0px 4px 0px #00000040;
  border-radius: 16px;
  padding: 40px 30px;
  transition: all 0.3s ease;
}

.sa-solutions__card:hover {
  box-shadow: 0 8px 30px rgba(32, 109, 209, 0.1);
}

.sa-solutions__card-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sa-solutions__card-icon svg {
  width: 48px;
  height: 48px;
}

.sa-solutions__card-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--color-text, #1d1d1f);
  margin-bottom: 16px;
  line-height: 1.3;
}

.sa-solutions__card-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text, #1d1d1f);
  margin: 0;
}

/* =====================
   SAVINGS SECTION
   ===================== */
.sa-savings {
  padding: 100px 0;
}

.sa-savings__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.sa-savings__visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: end;
}

.sa-savings__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sa-savings__card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: -20px 20px 50px 0px #46464640;
}

.sa-savings__card--deltadot {
  background: #206dd1;
  color: #fff;
  margin-left: -20px;
  box-shadow: 20px -10px 50px 0px #46464640;
}

.sa-savings__card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.sa-savings__dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
}

.sa-savings__dot--red {
  background: #ef4444;
}

.sa-savings__dot--green {
  background: #ffffff;
}

.sa-savings__card-label {
  font-size: 15px;
  font-weight: 500;
}

.sa-savings__card-rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sa-savings__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.sa-savings__card--deltadot .sa-savings__row {
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.sa-savings__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sa-savings__row-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sa-savings__row-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text, #1d1d1f);
}

.sa-savings__card--deltadot .sa-savings__row-title {
  color: #fff;
}

.sa-savings__row-sub {
  font-size: 12px;
  color: #dbdbdb;
}

.sa-savings__card--inhouse .sa-savings__row-sub {
  color: #7d7d7d;
}

.sa-savings__card--deltadot .sa-savings__row-sub {
  color: rgba(255, 255, 255, 0.7);
}

.sa-savings__row-value {
  font-size: 14px;
  font-weight: 700;
}

.sa-savings__row-value--red {
  background-color: #fde4e4;
  padding: 1px 8px;
  border-radius: 50px;
  color: #ef4444;
  font-weight: 500;
  font-size: 12px;
}

.sa-savings__row-value--green {
  color: #74ff28;
}

.sa-savings__card--deltadot .sa-savings__row-value--green {
  color: #74ff28;
}

.sa-savings__total {
  margin-top: 20px;
  background: #2a86ff;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.sa-savings__total-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.sa-savings__total-value {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.sa-savings__badge {
  position: relative;
  background: #fff;
  padding: 20px 24px;
  box-shadow: 20px -10px 50px 0px #46464640;
  border-radius: 12px;
  width: 100%;
}

.sa-savings__badge::before {
  content: "";
  position: absolute;
  height: 15px;
  width: 15px;
  background: transparent;
  right: 58px;
  bottom: 0;
  transform: translateX(-100%);
  border-radius: 15px;
  box-shadow: 3px 3px 0px 0px #efeeee;
}

.sa-savings__badge:after {
  content: "";
  position: absolute;
  height: 15px;
  width: 15px;
  background: transparent;
  bottom: 46px;
  right: 0px;
  transform: translateY(-100%);
  border-radius: 15px;
  box-shadow: 3px 3px 0px -1px #dbdbdb;
}

.sa-savings__badge-label {
  font-size: 16px;
  color: #22c55e;
  font-weight: 500;
  display: block;
}

.sa-savings__badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sa-savings__badge-value {
  font-size: 48px;
  font-weight: 700;
  color: #22c55e;
}

.sa-savings__icon-wrapper {
  position: absolute;
  right: 0;
  bottom: 0;
  background: linear-gradient(206deg, #dbdbdb, #dadada78);
  padding: 8px 0 0px 8px;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.sa-savings__badge-icon {
  width: 65px;
  height: 53px;
  background: #22c55e;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: -20px 20px 50px 0px #46464640;
}

.sa-savings__content {
  max-width: 504px;
  margin-left: clamp(0px, 5vw, 40px);
}

.sa-savings__label {
  font-size: 24px;
  font-weight: 500;
  color: #206dd1;
  margin-bottom: 16px;
  display: block;
  position: relative;
}

.sa-savings__label::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 2px;
  background: #206dd1;
}

.sa-savings__title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.3;
  color: var(--color-text, #1d1d1f);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.sa-savings__desc {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text, #1d1d1f);
  margin-bottom: 32px;
}

/* =====================
   VETTING SECTION
   ===================== */
.sa-vetting {
  padding: 0px 0 0px;
}

.sa-vetting__wrapper {
  background-color: #f5f5f7;
  border-radius: 10px;
  padding: 15px 15px;
}

.sa-vetting__header {
  max-width: 900px;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e0e4e8;
}

.sa-vetting__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  color: var(--color-text, #1d1d1f);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.sa-vetting__subtitle {
  font-size: 18px;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 20px;
}

.sa-vetting__highlight {
  font-size: 18px;
  font-weight: 600;
  color: #206dd1;
}

.sa-vetting__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.sa-vetting__slider {
  background: #fff;
  border-radius: 0 0 16px 16px;
  position: relative;
}

.sa-vetting__slides {
  position: relative;
  min-height: 320px;
  padding: 50px 40px 30px;
  border-left: 1px solid #e0e4e8;
}

.sa-vetting__slide {
  display: none;
}

.sa-vetting__slide--active {
  display: block;
}

.sa-vetting__slide-num {
  font-size: 64px;
  font-weight: 300;
  color: #d0d5dd;
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}

.sa-vetting__slide-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-text, #1d1d1f);
  margin-bottom: 24px;
}

.sa-vetting__slide-list {
  list-style: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sa-vetting__slide-list li {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.6;
}

.sa-vetting__controls {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px 30px;
  border-left: 1px solid #e0e4e8;
}

.sa-vetting__nav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #e0e4e8;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  transition: all 0.3s ease;
}

.sa-vetting__nav:hover {
  border-color: #206dd1;
  color: #206dd1;
}

.sa-vetting__nav--prev {
  color: #ccc;
}

.sa-vetting__counter {
  margin-left: auto;
  font-size: 14px;
  color: var(--color-text-muted, #666);
}

.sa-vetting__current {
  color: var(--color-text, #1d1d1f);
  font-weight: 500;
}

/* Layers Stack */
.sa-vetting__layers {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  perspective: 1000px;
}

.sa-vetting__layer-stack {
  position: relative;
  width: 100%;
  max-width: 450px;
  height: 380px;
}

.sa-vetting__layer {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 60px;
  background: #e8ecf0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.sa-vetting__layer[data-layer="5"] {
  bottom: 0;
  width: 200px;
  z-index: 1;
}

.sa-vetting__layer[data-layer="4"] {
  bottom: 70px;
  width: 210px;
  z-index: 2;
}

.sa-vetting__layer[data-layer="3"] {
  bottom: 140px;
  width: 220px;
  z-index: 3;
}

.sa-vetting__layer[data-layer="2"] {
  bottom: 210px;
  width: 230px;
  z-index: 4;
}

.sa-vetting__layer[data-layer="1"] {
  bottom: 280px;
  width: 240px;
  z-index: 5;
}

.sa-vetting__layer--active {
  background: linear-gradient(135deg, #206dd1 0%, #1a5bb0 100%);
  transform: translateX(-50%) translateY(-10px) rotateX(-15deg);
  box-shadow: 0 20px 40px rgba(32, 109, 209, 0.3);
}

.sa-vetting__layer--active .sa-vetting__layer-label {
  color: #fff;
}




.sa-vetting__layer-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted, #666);
  white-space: nowrap;
  padding: 0 20px;
  border: 1px dashed #ccc;
  border-radius: 20px;
  height: 32px;
  display: flex;
  align-items: center;
  background: #fff;
  transition: all 0.3s ease;
}

.sa-vetting__layer--active .sa-vetting__layer-label {
  border-color: transparent;
  background: transparent;
}

.sa-vetting__layer:hover:not(.sa-vetting__layer--active) {
  transform: translateX(-50%) translateY(-5px);
}

.wd-steps-swiper {
    height: 100%;
}

.wd-steps-left span.stage-title {
  font-size: 32px;
  font-weight: 500;
  color: #bebebe;
      margin-bottom: 30px !important;
    display: block;
}
.wd-steps-left h3 {
  font-size: 24px;
  color: var(--color-text, #1d1d1f);
  font-weight: 500;
  margin-bottom: 10px;
}

.wd-steps-left ul {
    padding-left: 25px;
    text-indent: -24px;
}

.wd-steps-left ul li {
    font-size: 16px;
    color: var(--color-text, #1d1d1f);
    line-height: normal;
    list-style: disc;
    list-style-position: inside;
    margin-bottom: 5px;
}

/* =====================
   MILESTONES SECTION
   ===================== */
.sa-milestones {
  padding: 100px 0;
  background: #fff;
}

.sa-milestones__box {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 0;
  background: linear-gradient(135deg, #0a0a14 0%, #1a1a2e 50%, #0a0a14 100%);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.sa-milestones__header {
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.sa-milestones__label {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
  display: inline-block;
  position: relative;
  padding-bottom: 12px;
}

.sa-milestones__label::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #ffffff;
}

.sa-milestones__title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 20px;
  background: linear-gradient(to right, #206dd1, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sa-milestones__desc {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 32px;
  max-width: 390px;
}

.sa-milestones__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.sa-milestones__stat {
  padding: 40px 35px;
}

.sa-milestones__stat:nth-child(2),
.sa-milestones__stat:nth-child(4) {
  border-right: none;
}

.sa-milestones__stat:nth-child(3),
.sa-milestones__stat:nth-child(4) {
  border-bottom: none;
}

.sa-milestones__stat-title {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.3;
  position: relative;
}

.sa-milestones__stat-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 2px;
  margin-top: 10px;
  background-color: #206dd1;
}

.sa-milestones__stat-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #ffffff;
  margin: 0;
  max-width: 322px;
  letter-spacing: 0.02rem;
}

/* =====================
   TEAMS SECTION
   ===================== */
.sa-teams__box {
  background: #f5f5f7;
  border-radius: 24px;
  padding: 50px 60px;
}

.sa-teams__header {
  margin-bottom: 40px;
}

.sa-teams__title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  color: var(--color-text, #1d1d1f);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.sa-teams__subtitle {
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.6;
  max-width: 700px;
}

.sa-teams__content {
  display: grid;
  grid-template-columns: 372px 1fr;
  gap: 30px;
  align-items: start;
}

.sa-teams__tabs {
  display: flex;
  flex-direction: column;
  position: relative;
}

.sa-teams__tab {
  padding: 25px 30px;
  font-size: 20px;
  font-weight: 400;
  color: var(--color-text, #1d1d1f);
  background: transparent;
  border: none;
  border-left: 5px solid transparent;
  border-bottom: 1px solid #eaeaea;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.sa-teams__tab:not(.sa-teams__tab--active):hover {
  color: #206dd1;
  background: rgba(32, 109, 209, 0.04);
}

.sa-teams__tab--active {
  color: #206dd1;
  border-left-color: #206dd1;
  font-weight: 600;
  box-shadow: 0px 0px 10px 0px #84848440;
  background: #ffffff;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.sa-teams__tab--active::after {
  content: "";
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid #206dd1;
}

.sa-teams__panels {
  padding: 50px;
  min-height: 400px;
  background-color: #ffffff;
  box-shadow: 0px 0px 10px 0px #84848440;
  border-radius: 10px;
}

.sa-teams__panel {
  display: none;
}

.sa-teams__panel--active {
  display: block;
}

.sa-teams__panel-title {
  font-size: 40px;
  font-weight: 500;
  color: var(--color-text, #1d1d1f);
  margin-bottom: 20px;
}

.sa-teams__panel-desc {
  font-size: 15px;
  color: var(--color-text, #1d1d1f);
  line-height: 1.7;
  margin-bottom: 28px;
}

.sa-teams__panel-label {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text, #1d1d1f);
  margin-bottom: 16px;
}

.sa-teams__panel-list {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sa-teams__panel-list li {
  font-size: 15px;
  color: var(--color-text, #1d1d1f);
  line-height: 1.5;
}

.sa-teams__panel-icons {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.sa-teams__icon {
  width: 77px;
  height: 77px;
  background: #f8f9fb;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e8ecf0;
  transition: all 0.3s ease;
}

.sa-teams__icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.sa-teams__icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* =====================
   WHY CHOOSE / COMPARE SECTION
   ===================== */
.sa-compare {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.sa-compare::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 60%;
  background: radial-gradient(
    ellipse at top right,
    rgba(32, 109, 209, 0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.sa-compare__header {
  margin-bottom: 50px;
}

.sa-compare__title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  color: #206dd1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.sa-compare__subtitle {
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.6;
}

.sa-compare__table {
  display: grid;
  grid-template-columns: 1fr 200px 200px 200px;
  gap: 75px;
  align-items: stretch;
}

.sa-compare__col {
  display: grid;
  grid-template-rows: 80px repeat(7, 60px);
}

.sa-compare__col--features {
  padding-right: 20px;
}

.sa-compare__col--deltadots {
  background: linear-gradient(174.62deg, #206dd1 59.03%, #090909 98.04%);
  border-radius: 50px;
  overflow: hidden;
  padding-inline: 18px;
}

.sa-compare__col--agency,
.sa-compare__col--inhouse {
  background: #f6f6f6;
  border-radius: 50px;
  overflow: hidden;
  padding-inline: 18px;
}

.sa-compare__head {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sa-compare__col--features .sa-compare__head {
  justify-content: flex-start;
  padding-left: 0;
}

.sa-compare__head-label {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text, #1d1d1f);
}

.sa-compare__head-title {
  font-size: 18.69px;
  font-weight: 600;
  color: #fff;
}

.sa-compare__col--agency .sa-compare__head-title,
.sa-compare__col--inhouse .sa-compare__head-title {
  color: var(--color-text, #1d1d1f);
}

.sa-compare__row {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sa-compare__col--features .sa-compare__row {
  justify-content: flex-start;
  gap: 14px;
  padding-left: 0;
  border-top: 1px solid #e8ecf0;
}

.sa-compare__col--agency .sa-compare__row,
.sa-compare__col--inhouse .sa-compare__row {
  border-top-color: #e8ecf0;
}

.sa-compare__icon {
  width: 36px;
  height: 36px;
  background: rgba(32, 109, 209, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sa-compare__feature {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text, #1d1d1f);
}

.sa-compare__value {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-align: center;
}

.sa-compare__col--agency .sa-compare__value,
.sa-compare__col--inhouse .sa-compare__value {
  color: var(--color-text);
}

/* =====================
   INDUSTRIES SECTION
   ===================== */
.sa-industries {
  padding: 0px 0 100px;
}

.sa-industries__header {
  max-width: 800px;
  margin-bottom: 60px;
}

.sa-industries__title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  color: var(--color-text, #1d1d1f);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.sa-industries__subtitle {
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.7;
}

.sa-industries__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.sa-industries__card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0px 0px 3px 0px #00000040;
  transition: all 0.3s ease;
}

.sa-industries__card:hover {
  box-shadow: 0 8px 30px rgba(32, 109, 209, 0.1);
  transform: translateY(-4px);
}

.sa-industries__card-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.sa-industries__icon {
  width: 44px;
  height: 44px;
  background: #eef4fc;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sa-industries__card-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text, #1d1d1f);
  line-height: 1.3;
  margin-bottom: 8px;
}

.sa-industries__card-desc {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.7;
  margin: 0;
}

/* =====================
   PROCESS SECTION
   ===================== */
.sa-process {
  padding: 100px 0;
  background: #fff;
}

.sa-process__header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 80px;
}

.sa-process__title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  color: var(--color-text, #1d1d1f);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.sa-process__subtitle {
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.7;
}

.sa-process__timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0px 0 40px;
}

/* Vertical dotted line */
.sa-process__line {
  position: absolute;
  left: 50%;
  top: 0;
  height: 0;
  width: 2px;
  background-image: linear-gradient(to bottom, #206dd1 50%, transparent 50%);
  background-size: 2px 10px;
  transform: translateX(-50%);
  transition: height 0.1s ease-out;
}

/* End dot */
.sa-process__line::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scale(0);
  width: 10px;
  height: 10px;
  background: #206dd1;
  border-radius: 50%;
  transition: transform 0.3s ease-out;
}

.sa-process__line.sa-process__line--complete::after {
  transform: translateX(-50%) scale(1);
}

.sa-process__step {
  display: flex;
  align-items: flex-start;
  position: relative;
  margin-bottom: 60px;
}

.sa-process__step:last-of-type {
  margin-bottom: 0;
}

/* Left aligned step */
.sa-process__step--left {
  justify-content: flex-end;
  padding-right: calc(50% + 40px);
}

.sa-process__step--left .sa-process__content {
  text-align: right;
}

.sa-process__step--left .sa-process__list {
  padding-left: 0;
  padding-right: 20px;
}

.sa-process__step--left .sa-process__list li {
  text-align: right;
}

.sa-process__step--left .sa-process__list li::before {
  display: none;
}

.sa-process__step--left .sa-process__list li::after {
  content: "•";
  color: var(--color-text, #1d1d1f);
  margin-left: 12px;
}

.sa-process__step--left .sa-process__icon {
  position: absolute;
  right: calc(50% - 28px);
}

/* Right aligned step */
.sa-process__step--right {
  justify-content: flex-start;
  padding-left: calc(50% + 40px);
}

.sa-process__step--right .sa-process__content {
  text-align: left;
}

.sa-process__step--right .sa-process__icon {
  position: absolute;
  left: calc(50% - 28px);
}

.sa-process__icon {
  width: 56px;
  height: 56px;
  background: #eef4fc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 2;
}

.sa-process__content {
  max-width: 400px;
}

.sa-process__week {
  font-size: 14px;
  font-weight: 500;
  color: #206dd1;
  display: block;
  margin-bottom: 8px;
}

.sa-process__step-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--color-text, #1d1d1f);
  margin-bottom: 20px;
  line-height: 1.3;
}

.sa-process__list {
  list-style: none;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sa-process__list li {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.5;
  position: relative;
}

.sa-process__step--right .sa-process__list li::before {
  content: "•";
  color: var(--color-text, #1d1d1f);
  margin-right: 12px;
}

/* =====================
   CTA BANNER SECTION
   ===================== */
.cta-banner {
  padding: 0;
  background: transparent;
}

.cta-banner__inner {
  background-image: url("https://deltadots.com/wp-content/uploads/2025/12/Frame-39768-2-scaled.webp");
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  padding: 60px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  min-height: 290px;
}

.cta-banner__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.cta-banner__title {
  font-size: clamp(1.75rem, 4vw, 3.45rem);
  font-weight: 500;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
}

.cta-banner__subtitle {
  font-size: 1.44rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.02rem;
}

.cta-banner__btn {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: var(--btn-gap);
  padding: var(--btn-md-padding);
  height: var(--btn-md-height);
  font-size: var(--btn-md-font-size);
  white-space: nowrap;
  font-weight: var(--btn-font-weight);
  letter-spacing: var(--btn-letter-spacing);
  line-height: 100%;
  box-sizing: border-box;
}

.cta-banner__btn svg {
  transition: transform 0.3s;
}

.cta-banner__btn:hover svg {
  transform: translateX(4px);
}

/* Decorative wave lines */
.cta-banner__lines {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: repeating-linear-gradient(
      -30deg,
      transparent,
      transparent 2px,
      rgba(32, 109, 209, 0.15) 2px,
      rgba(32, 109, 209, 0.15) 3px
    ),
    repeating-linear-gradient(
      30deg,
      transparent,
      transparent 2px,
      rgba(139, 92, 246, 0.12) 2px,
      rgba(139, 92, 246, 0.12) 3px
    );
  background-size: 20px 20px, 25px 25px;
  mask-image: linear-gradient(
    to left,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-mask-image: linear-gradient(
    to left,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
}

/* =====================
   DEFERRED RESPONSIVE
   ===================== */
@media (max-width: 1023px) {
  .sa-solutions {
    padding: 60px 0;
  }

  .sa-solutions__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .sa-solutions__header {
    grid-column: 1 / -1;
    padding-right: 0;
    margin-bottom: 16px;
  }

  .sa-solutions__desc {
    max-width: 500px;
  }

  .sa-savings {
    padding: 80px 0;
  }

  .sa-savings__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sa-savings__visual {
    max-width: 500px;
    margin: 0 auto;
  }

  .sa-vetting {
    padding: 80px 0;
  }

  .sa-vetting__content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sa-vetting__layers {
    order: -1;
  }

  .sa-vetting__layer-stack {
    height: 320px;
  }

  .sa-milestones {
    padding: 80px 0;
  }

  .sa-milestones__box {
    grid-template-columns: 1fr;
  }

  .sa-milestones__header {
    padding: 40px 40px 30px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .sa-milestones__desc {
    max-width: 400px;
  }

  .sa-teams {
    padding: 80px 0;
  }

  .sa-teams__box {
    padding: 40px 30px;
  }

  .sa-teams__content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sa-teams__tabs {
    flex-direction: row;
    flex-wrap: nowrap;
    border-right: none;
    border-bottom: 1px solid #e8ecf0;
    padding-bottom: 20px;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .sa-teams__tabs::-webkit-scrollbar {
    display: none;
  }

  .sa-teams__tab {
    padding: 12px 18px;
    border-left: none;
    border-bottom: 2px solid transparent;
    border-radius: 8px;
    font-size: 14px;
    flex-shrink: 0;
    white-space: nowrap;
  }

  .sa-teams__tab--active {
    border-left-color: transparent;
    border-bottom-color: #206dd1;
    border-radius: 8px;
  }

  .sa-teams__tab--active::after {
    display: none;
  }

  .sa-teams__panels {
    padding: 15px;
    min-height: auto;
  }

  .sa-teams__panel-title {
    font-size: 26px;
  }

  .sa-compare {
    padding: 80px 0;
  }

  .sa-compare__table {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 12px;
    min-width: 525px;
  }

  .sa-compare__col {
    grid-template-rows: 60px repeat(7, 50px);
  }

  /* .sa-compare__col--features {
    display: none;
  } */

  .sa-compare__col--deltadots,
  .sa-compare__col--agency,
  .sa-compare__col--inhouse {
    border-radius: 16px;
  }

  .sa-compare__head {
    padding: 0 16px;
  }

  .sa-compare__head-title {
    font-size: 14px;
  }

  .sa-compare__row {
    padding: 0 12px;
  }

  .sa-compare__value {
    font-size: 13px;
  }

  .sa-savings__content {
    max-width: 100%;
    margin-left: 0;
  }

  .sa-savings__content .btn {
    display: inline-flex;
  }

  .cta-banner__inner {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
  }

  .cta-banner__lines {
    width: 100%;
    opacity: 0.5;
  }

  /* Industries Section - Tablet */
  .sa-industries {
    padding: 80px 0;
  }

  .sa-industries__header {
    margin-bottom: 50px;
  }

  .sa-industries__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Process Section - Tablet */
  .sa-process {
    padding: 80px 0;
  }

  .sa-process__header {
    margin-bottom: 60px;
  }

  .sa-process__timeline {
    max-width: 100%;
    padding-left: 0px;
  }

  .sa-process__line {
    left: 28px;
  }

  .sa-process__step--left,
  .sa-process__step--right {
    padding-left: 80px;
    padding-right: 0;
    justify-content: flex-start;
  }

  .sa-process__step--left .sa-process__content,
  .sa-process__step--right .sa-process__content {
    text-align: left;
    max-width: 100%;
  }

  .sa-process__step--left .sa-process__list,
  .sa-process__step--right .sa-process__list {
    padding-left: 20px;
    padding-right: 0;
  }

  .sa-process__step--left .sa-process__list li,
  .sa-process__step--right .sa-process__list li {
    text-align: left;
    text-indent: -20px;
  }

  .sa-process__step--left .sa-process__list li::after {
    display: none;
  }

  .sa-process__step--left .sa-process__list li::before,
  .sa-process__step--right .sa-process__list li::before {
    content: "•";
    color: var(--color-text, #1d1d1f);
    margin-right: 12px;
    display: inline;
  }

  .sa-process__step--left .sa-process__icon,
  .sa-process__step--right .sa-process__icon {
    position: absolute;
    left: 0;
    right: auto;
  }
}

@media (max-width: 768px) {
    
    .wd-steps-left ul {
        margin-bottom: 25px;
    }
    
  .sa-solutions {
    padding: 0px 0;
  }

  .sa-solutions__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sa-solutions__header {
    margin-bottom: 12px;
  }

  .sa-solutions__title {
    font-size: 28px;
  }

  .sa-solutions__desc {
    font-size: 15px;
    max-width: 100%;
  }

  .sa-solutions__card {
    padding: 28px 24px;
  }

  .sa-solutions__card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
  }

  .sa-solutions__card-icon svg {
    width: 40px;
    height: 40px;
  }

  .sa-solutions__card-title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .sa-solutions__card-desc {
    font-size: 14px;
  }

  .sa-savings {
    padding: 60px 0;
  }

  .sa-savings__visual {
    grid-template-columns: 1fr 1fr;
    /* max-width: 320px; */
  }

  .sa-savings__title {
    font-size: 28px;
  }

  .sa-savings__desc {
    font-size: 15px;
  }

  .sa-vetting {
    padding: 20px 0;
  }

  .sa-vetting__title {
    font-size: 28px;
  }

  .sa-vetting__subtitle {
    font-size: 16px;
  }

  .sa-vetting__slides {
    padding: 40px 30px 20px;
    min-height: 280px;
  }

  .sa-vetting__slide-num {
    font-size: 48px;
  }

  .sa-vetting__slide-title {
    font-size: 20px;
  }

  .sa-vetting__controls {
    padding: 15px 30px 25px;
  }

  .sa-vetting__layer-stack {
    height: 280px;
  }

  .sa-vetting__layer {
    height: 50px;
  }

  .sa-vetting__layer[data-layer="5"] {
    bottom: 0;
  }

  .sa-vetting__layer[data-layer="4"] {
    bottom: 55px;
  }

  .sa-vetting__layer[data-layer="3"] {
    bottom: 110px;
  }

  .sa-vetting__layer[data-layer="2"] {
    bottom: 165px;
  }

  .sa-vetting__layer[data-layer="1"] {
    bottom: 220px;
  }

  .sa-milestones {
    padding: 20px 0;
  }

  .sa-milestones__header {
    padding: 30px 24px 24px;
  }

  .sa-milestones__title {
    font-size: 24px;
  }

  .sa-milestones__desc {
    font-size: 14px;
  }

  .sa-milestones__stats {
    grid-template-columns: 1fr;
  }

  .sa-milestones__stat {
    padding: 30px 24px;
    border-right: none;
  }

  .sa-milestones__stat:nth-child(3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .sa-milestones__stat-title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .sa-milestones__stat-desc {
    font-size: 13px;
  }

  .sa-teams {
    padding: 20px 0;
  }

  .sa-teams__box {
    padding: 30px 20px;
  }

  .sa-teams__title {
    font-size: 24px;
  }

  .sa-teams__subtitle {
    font-size: 14px;
  }

  .sa-teams__tabs {
    gap: 6px;
    padding-bottom: 16px;
  }

  .sa-teams__tab {
    padding: 10px 14px;
    font-size: 13px;
  }

  .sa-teams__panel-title {
    font-size: 22px;
  }

  .sa-teams__panel-desc {
    font-size: 14px;
  }

  .sa-teams__icon {
    width: 44px;
    height: 44px;
  }

  .sa-teams__icon img {
    width: 22px;
    height: 22px;
  }

  .sa-compare {
    padding: 20px 0;
  }

  .sa-compare__title {
    font-size: 24px;
  }

  .sa-compare__subtitle {
    font-size: 14px;
  }

  .sa-compare__table-wrapper {
    width: calc(100vw - 30px);
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .sa-compare__table {
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 6px;
    min-width: 525px;
  }

  .sa-compare__col {
    grid-template-rows: 50px repeat(7, 44px);
  }

  /* .sa-compare__col--features {
    display: none;
  } */

  .sa-compare__head {
    padding: 0 10px;
  }

  .sa-compare__head-title {
    font-size: 12px;
  }

  .sa-compare__head-label {
    font-size: 12px;
    line-height: 1.2;
  }

  .sa-compare__row {
    padding: 0 8px;
    gap: 8px;
  }

  .sa-compare__feature-icon {
    width: 27px;
    height: 27px;
  }

  .sa-compare__value {
    font-size: 11px;
  }

  .cta-banner__subtitle {
    font-size: 1.125rem;
  }

  .sa-industries {
    padding: 60px 0;
  }

  .sa-industries__header {
    margin-bottom: 40px;
  }

  .sa-industries__title {
    font-size: 24px;
  }

  .sa-industries__subtitle {
    font-size: 15px;
  }

  .sa-industries__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sa-industries__card {
    padding: 24px 20px;
  }

  .sa-industries__icon {
    width: 40px;
    height: 40px;
  }

  .sa-industries__card-title {
    font-size: 18px;
  }

  .sa-industries__card-desc {
    font-size: 14px;
  }

  .sa-process {
    padding: 60px 0;
  }

  .sa-process__header {
    margin-bottom: 50px;
  }

  .sa-process__title {
    font-size: 24px;
  }

  .sa-process__subtitle {
    font-size: 15px;
  }

  .sa-process__timeline {
    padding-left: 0px;
  }

  .sa-process__line {
    left: 22px;
  }

  .sa-process__step {
    margin-bottom: 50px;
  }

  .sa-process__step--left,
  .sa-process__step--right {
    padding-left: 70px;
  }

  .sa-process__icon {
    width: 44px;
    height: 44px;
  }

  .sa-process__icon svg {
    width: 22px;
    height: 22px;
  }

  .sa-process__step-title {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .sa-process__list li {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .cta-banner {
    padding: 20px 0;
  }
  .sa-solutions {
    padding: 20px 0;
  }

  .sa-solutions__grid {
    gap: 16px;
  }

  .sa-solutions__title {
    font-size: 24px;
  }

  .sa-solutions__card {
    padding: 24px 20px;
    border-radius: 12px;
  }

  .sa-solutions__card-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
  }

  .sa-solutions__card-icon svg {
    width: 36px;
    height: 36px;
  }

  .sa-solutions__card-title {
    font-size: 17px;
  }

  .sa-solutions__card-desc {
    font-size: 14px;
    line-height: 1.6;
  }

  .sa-savings {
    padding: 20px 0;
  }

  .sa-savings__card {
    padding: 20px;
  }

  .sa-savings__row-title {
    font-size: 13px;
  }

  .sa-savings__row-sub {
    font-size: 11px;
  }

  .sa-savings__badge-value {
    font-size: 28px;
  }

  .sa-savings__badge-icon {
    width: 36px;
    height: 36px;
  }

  .sa-savings__title {
    font-size: 24px;
  }

  .cta-banner__inner {
    padding: 32px 20px;
    min-height: auto;
  }

  .cta-banner__title {
    font-size: 1.25rem;
  }

  .cta-banner__subtitle {
    font-size: 0.875rem;
  }

  .cta-banner__btn {
    padding: var(--btn-sm-padding);
    height: var(--btn-sm-height);
    font-size: var(--btn-sm-font-size);
    margin-top: 25px;
  }

  .sa-industries {
    padding: 20px 0;
  }

  .sa-industries__header {
    margin-bottom: 32px;
  }

  .sa-industries__title {
    font-size: 22px;
  }

  .sa-industries__subtitle {
    font-size: 14px;
  }

  .sa-industries__card {
    padding: 20px 16px;
  }

  .sa-industries__icon {
    width: 36px;
    height: 36px;
  }

  .sa-industries__icon svg {
    width: 20px;
    height: 20px;
  }

  .sa-industries__card-title {
    font-size: 16px;
  }

  .sa-industries__card-desc {
    font-size: 13px;
  }

  .sa-process {
    padding: 20px 0;
  }

  .sa-process__header {
    margin-bottom: 40px;
    text-align: left;
  }

  .sa-process__title {
    font-size: 22px;
  }

  .sa-process__subtitle {
    font-size: 14px;
  }

  .sa-process__timeline {
    padding-left: 0;
  }

  .sa-process__line {
    left: 18px;
  }

  .sa-process__step {
    margin-bottom: 40px;
  }

  .sa-process__step--left,
  .sa-process__step--right {
    padding-left: 60px;
  }

  .sa-process__icon {
    width: 36px;
    height: 36px;
  }

  .sa-process__icon svg {
    width: 18px;
    height: 18px;
  }

  .sa-process__week {
    font-size: 13px;
  }

  .sa-process__step-title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .sa-process__list {
    gap: 8px;
  }

  .sa-process__list li {
    font-size: 13px;
  }

  .sa-savings__card-rows {
    gap: 5px;
  }
}
