.sal-cta-section {
  background: var(--sal-white);
  padding: 80px 0;
  font-family: var(--sal-font-family);
}
.sal-cta-container {
  max-width: var(--sal-max-width);
  margin: 0 auto;
  padding: 0 var(--sal-padding-inline);
}
.sal-cta-block {
  background: var(--sal-green);
  border-radius: var(--sal-radius-lg);
  padding: 64px 72px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.sal-cta-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -55deg,
    rgba(255, 255, 255, 0.03) 0px,
    rgba(255, 255, 255, 0.03) 2px,
    transparent 2px,
    transparent 12px
  );
  pointer-events: none;
}
.sal-cta-left {
  position: relative;
  z-index: 1;
}
.sal-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sal-yellow);
  margin-bottom: 16px;
}
.sal-cta-eyebrow-line {
  width: 28px;
  height: 2px;
  background: var(--sal-yellow);
  border-radius: 2px;
  opacity: 0.6;
}
.sal-cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--sal-white);
  letter-spacing: -0.4px;
  line-height: 1.05;
  margin-bottom: 16px;
}
.sal-cta-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 0 32px;
}
.sal-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--sal-yellow);
  color: var(--sal-green-dark);
  font-family: var(--sal-font-family);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: var(--sal-radius-full);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.15s ease;
  position: relative;
  overflow: hidden;
}
.sal-cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -55deg,
    rgba(11, 79, 40, 0.07) 0px,
    rgba(11, 79, 40, 0.07) 2px,
    transparent 2px,
    transparent 10px
  );
  pointer-events: none;
}
.sal-cta-btn:hover {
  background: var(--sal-yellow-light);
  transform: translateY(-1px);
  color: var(--sal-green-dark);
}
.sal-cta-btn-arrow {
  font-size: 18px;
}
.sal-cta-stats {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}
.sal-cta-stat {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--sal-radius-lg);
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 220px;
}
.sal-cta-stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--sal-yellow);
  line-height: 1;
  letter-spacing: -0.04em;
}
.sal-cta-stat-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.3;
}
.sal-cta-stat--you {
  background: var(--sal-yellow);
  border-color: var(--sal-yellow);
}
.sal-cta-stat--you .sal-cta-stat-num {
  color: var(--sal-green-dark);
}
.sal-cta-stat--you .sal-cta-stat-label {
  color: rgba(11, 79, 40, 0.7);
}
@media (max-width: 900px) {
  .sal-cta-block {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 40px;
  }
  .sal-cta-stats {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .sal-cta-stat {
    min-width: 0;
    flex: 1;
  }
}
@media (max-width: 640px) {
  .sal-cta-section {
    padding: 60px 0;
  }
  .sal-cta-container {
    padding: 0 20px;
  }
  .sal-cta-block {
    padding: 36px 24px;
  }
  .sal-cta-stats {
    flex-direction: column;
  }
  .sal-cta-stat {
    min-width: 0;
  }
}

.sal-why-section {
  background: var(--sal-white);
  padding: 80px 0;
  font-family: var(--sal-font-family);
}
.sal-why-container {
  max-width: var(--sal-max-width);
  margin: 0 auto;
  padding: 0 var(--sal-padding-inline);
}
.sal-why-header {
  margin-bottom: 48px;
}
.sal-why-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sal-yellow-dark);
  margin-bottom: 10px;
}
.sal-why-eyebrow-line {
  width: 28px;
  height: 2px;
  background: var(--sal-yellow);
  border-radius: 2px;
}
.sal-why-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--sal-green);
  letter-spacing: -0.3px;
  line-height: 1.1;
  margin-bottom: 14px;
}
.sal-why-intro {
  font-size: 16px;
  color: var(--sal-gray-600);
  line-height: 1.7;
  max-width: 680px;
  margin: 0;
}
.sal-why-card {
  background: var(--sal-white);
  border-radius: var(--sal-radius-lg);
  overflow: hidden;
  border: 1px solid var(--sal-gray-200);
}
.sal-why-card-topbar {
  background: var(--sal-green);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.sal-why-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(231, 159, 15, 0.18);
  border: 1px solid rgba(231, 159, 15, 0.4);
  border-radius: var(--sal-radius-full);
  padding: 4px 14px;
  font-size: 11px;
  font-weight: 700;
  color: var(--sal-yellow);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.sal-why-status-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -55deg,
    rgba(231, 159, 15, 0.18) 0px,
    rgba(231, 159, 15, 0.18) 2px,
    transparent 2px,
    transparent 10px
  );
  pointer-events: none;
}
.sal-why-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sal-yellow);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.sal-why-status-badge span {
  position: relative;
  z-index: 1;
}
.sal-why-card-headline {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 700;
  color: var(--sal-white);
  line-height: 1.35;
}
.sal-why-card-body {
  padding: 36px 32px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}
.sal-why-reasons {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sal-why-reason {
  padding: 26px 0;
  border-bottom: 1px solid var(--sal-gray-200);
}
.sal-why-reason:first-child {
  padding-top: 0;
}
.sal-why-reason:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.sal-why-reason-heading {
  font-size: 15px;
  font-weight: 800;
  color: var(--sal-green);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sal-why-reason-heading::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sal-yellow);
  flex-shrink: 0;
}
.sal-why-reason-body {
  font-size: 14px;
  color: var(--sal-gray-600);
  line-height: 1.75;
  margin: 0;
}
.sal-why-quote-col {
  position: sticky;
  top: 32px;
}
.sal-why-quote-card {
  background: var(--sal-green);
  border-radius: var(--sal-radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}
.sal-why-quote-card::before {
  content: "\201C";
  position: absolute;
  top: -10px;
  right: 16px;
  font-size: 120px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.07);
  font-family: Georgia, serif;
  pointer-events: none;
  user-select: none;
}
.sal-why-quote-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sal-yellow);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sal-why-quote-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}
.sal-why-quote-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
  margin: 0 0 24px 0;
  position: relative;
  z-index: 1;
}
.sal-why-quote-attribution {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.sal-why-quote-attr-line {
  width: 20px;
  height: 2px;
  background: var(--sal-yellow);
  border-radius: 2px;
  flex-shrink: 0;
}
.sal-why-quote-attr-text {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.02em;
}
@media (max-width: 960px) {
  .sal-why-card-body {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .sal-why-quote-col {
    position: static;
  }
}
@media (max-width: 640px) {
  .sal-why-section {
    padding: 60px 0;
  }
  .sal-why-container {
    padding: 0 20px;
  }
  .sal-why-card-topbar {
    padding: 16px 20px;
    gap: 10px;
  }
  .sal-why-card-body {
    padding: 24px 20px;
  }
  .sal-why-quote-card {
    padding: 24px 20px;
  }
}

.sal-who-section {
  background: var(--sal-white);
  padding: 80px 0;
  font-family: var(--sal-font-family);
}
.sal-who-container {
  max-width: var(--sal-max-width);
  margin: 0 auto;
  padding: 0 var(--sal-padding-inline);
}
.sal-who-header {
  margin-bottom: 48px;
}
.sal-who-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sal-yellow-dark);
  margin-bottom: 10px;
}
.sal-who-eyebrow-line {
  width: 28px;
  height: 2px;
  background: var(--sal-yellow);
  border-radius: 2px;
}
.sal-who-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--sal-green);
  letter-spacing: -0.3px;
  line-height: 1.1;
}
.sal-who-card {
  background: var(--sal-white);
  border-radius: var(--sal-radius-lg);
  overflow: hidden;
  border: 1px solid var(--sal-gray-200);
}
.sal-who-card-topbar {
  background: var(--sal-green);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.sal-who-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(231, 159, 15, 0.18);
  border: 1px solid rgba(231, 159, 15, 0.4);
  border-radius: var(--sal-radius-full);
  padding: 4px 14px;
  font-size: 11px;
  font-weight: 700;
  color: var(--sal-yellow);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.sal-who-status-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -55deg,
    rgba(231, 159, 15, 0.18) 0px,
    rgba(231, 159, 15, 0.18) 2px,
    transparent 2px,
    transparent 10px
  );
  pointer-events: none;
}
.sal-who-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sal-yellow);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.sal-who-status-badge span {
  position: relative;
  z-index: 1;
}
.sal-who-card-headline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  color: var(--sal-white);
  line-height: 1.35;
  flex: 1;
}
.sal-who-card-body {
  padding: 36px 32px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}
.sal-who-subheading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sal-green);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sal-who-subheading::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--sal-gray-200);
}
.sal-who-people {
  display: flex;
  flex-direction: column;
}
.sal-who-person {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--sal-gray-200);
}
.sal-who-person:first-child {
  padding-top: 0;
}
.sal-who-person:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.sal-who-person-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sal-green);
  color: var(--sal-white);
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.sal-who-person-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--sal-green);
  margin-bottom: 4px;
  line-height: 1.3;
}
.sal-who-person-desc {
  font-size: 13px;
  color: var(--sal-gray-600);
  line-height: 1.65;
  margin: 0;
}
.sal-who-right-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 32px;
}
.sal-who-count-card {
  background: var(--sal-green);
  border-radius: var(--sal-radius-md);
  padding: 24px 22px;
}
.sal-who-count-num {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--sal-yellow);
  line-height: 1;
  letter-spacing: -0.04em;
}
.sal-who-count-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--sal-white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 6px;
}
.sal-who-count-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  margin-top: 4px;
}
.sal-who-tags-card {
  background: var(--sal-green-muted);
  border: 1px solid var(--sal-green-border);
  border-radius: var(--sal-radius-md);
  padding: 20px 22px;
}
.sal-who-tags-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sal-green);
  margin-bottom: 14px;
}
.sal-who-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.sal-who-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--sal-white);
  border: 1px solid var(--sal-green-border);
  border-radius: var(--sal-radius-full);
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--sal-green);
}
.sal-who-tag-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sal-yellow);
  flex-shrink: 0;
}
@media (max-width: 960px) {
  .sal-who-card-body {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .sal-who-right-col {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .sal-who-section {
    padding: 60px 0;
  }
  .sal-who-container {
    padding: 0 20px;
  }
  .sal-who-card-topbar {
    padding: 16px 20px;
    gap: 10px;
  }
  .sal-who-card-body {
    padding: 24px 20px;
  }
  .sal-who-right-col {
    grid-template-columns: 1fr;
  }
}

.sal-fit-section {
  background: var(--sal-white);
  padding: 80px 0;
  font-family: var(--sal-font-family);
}
.sal-fit-container {
  max-width: var(--sal-max-width);
  margin: 0 auto;
  padding: 0 var(--sal-padding-inline);
}
.sal-fit-header {
  margin-bottom: 52px;
}
.sal-fit-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sal-yellow-dark);
  margin-bottom: 10px;
}
.sal-fit-eyebrow-line {
  width: 28px;
  height: 2px;
  background: var(--sal-yellow);
  border-radius: 2px;
}
.sal-fit-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--sal-green);
  letter-spacing: -0.3px;
  line-height: 1.1;
  margin-bottom: 10px;
}
.sal-fit-subtitle {
  font-size: 16px;
  color: var(--sal-gray-600);
  font-weight: 400;
  line-height: 1.6;
  max-width: 520px;
  margin: 0;
}
.sal-fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
.sal-fit-card {
  background: var(--sal-white);
  border: 1px solid var(--sal-gray-200);
  border-radius: var(--sal-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.sal-fit-card:hover {
  border-color: rgba(11, 79, 40, 0.22);
  box-shadow: 0 4px 16px rgba(11, 79, 40, 0.07);
}
.sal-fit-card-head {
  padding: 22px 28px 18px;
  border-bottom: 1px solid var(--sal-gray-200);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.sal-fit-card-title {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 900;
  color: var(--sal-green);
  line-height: 1.25;
  letter-spacing: -0.1px;
}
.sal-fit-time {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--sal-green-muted);
  border: 1px solid var(--sal-green-border);
  border-radius: var(--sal-radius-full);
  padding: 3px 11px;
  font-size: 11px;
  font-weight: 700;
  color: var(--sal-green);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.sal-fit-time-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sal-yellow);
  flex-shrink: 0;
}
.sal-fit-card-body {
  padding: 20px 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.sal-fit-card-desc {
  font-size: 14px;
  color: var(--sal-gray-600);
  line-height: 1.7;
  margin: 0;
}
.sal-fit-tasks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.sal-fit-task {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--sal-gray-800);
  line-height: 1.5;
}
.sal-fit-task-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sal-yellow);
  flex-shrink: 0;
  margin-top: 6px;
}
.sal-fit-footer {
  background: var(--sal-green);
  border-radius: var(--sal-radius-lg);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.sal-fit-footer-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  flex: 1;
  min-width: 220px;
}
.sal-fit-footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sal-yellow);
  color: var(--sal-green-dark);
  font-family: var(--sal-font-family);
  font-size: 14px;
  font-weight: 800;
  padding: 13px 28px;
  border-radius: var(--sal-radius-full);
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
  flex-shrink: 0;
}
.sal-fit-footer-btn:hover {
  background: var(--sal-yellow-light);
  transform: translateY(-1px);
  color: var(--sal-green-dark);
}
.sal-fit-footer-btn-arrow {
  font-size: 15px;
  transition: transform 0.3s ease;
}
.sal-fit-footer-btn:hover .sal-fit-footer-btn-arrow {
  transform: translateX(3px);
}
@media (max-width: 860px) {
  .sal-fit-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .sal-fit-section {
    padding: 60px 0;
  }
  .sal-fit-container {
    padding: 0 20px;
  }
  .sal-fit-card-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .sal-fit-card-body,
  .sal-fit-card-head {
    padding-left: 20px;
    padding-right: 20px;
  }
  .sal-fit-footer {
    padding: 24px 22px;
  }
}

.sal-ready-section {
  background: var(--sal-white);
  padding: 80px 0;
  font-family: var(--sal-font-family);
}
.sal-ready-container {
  max-width: var(--sal-max-width);
  margin: 0 auto;
  padding: 0 var(--sal-padding-inline);
}
.sal-ready-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sal-ready-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sal-yellow-dark);
  margin-bottom: 10px;
}
.sal-ready-eyebrow-line {
  width: 28px;
  height: 2px;
  background: var(--sal-yellow);
  border-radius: 2px;
}
.sal-ready-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--sal-green);
  letter-spacing: -0.3px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.sal-ready-body {
  font-size: 16px;
  color: var(--sal-gray-600);
  line-height: 1.75;
  margin: 0;
}
.sal-ready-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sal-ready-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
}
.sal-ready-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--sal-gray-200);
  position: relative;
}
.sal-ready-step:first-child {
  padding-top: 0;
}
.sal-ready-step:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.sal-ready-step:not(:last-child) .sal-ready-step-num::after {
  content: "";
  position: absolute;
  left: 17px;
  top: calc(22px + 36px);
  width: 2px;
  height: calc(100% - 36px);
  background: var(--sal-gray-200);
  border-radius: 2px;
}
.sal-ready-step:first-child .sal-ready-step-num::after {
  top: calc(36px);
}
.sal-ready-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--sal-green);
  color: var(--sal-white);
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.sal-ready-step-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--sal-gray-800);
  line-height: 36px;
}
.sal-ready-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--sal-green);
  color: var(--sal-white);
  font-family: var(--sal-font-family);
  font-size: 15px;
  font-weight: 800;
  padding: 15px 32px;
  border-radius: var(--sal-radius-full);
  text-decoration: none;
  align-self: flex-start;
  transition:
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 4px 16px rgba(11, 79, 40, 0.18);
}
.sal-ready-btn:hover {
  background: var(--sal-green-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11, 79, 40, 0.25);
  color: var(--sal-white);
}
.sal-ready-btn-arrow {
  font-size: 16px;
  transition: transform 0.3s ease;
}
.sal-ready-btn:hover .sal-ready-btn-arrow {
  transform: translateX(4px);
}
@media (max-width: 860px) {
  .sal-ready-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
@media (max-width: 640px) {
  .sal-ready-section {
    padding: 60px 0;
  }
  .sal-ready-container {
    padding: 0 20px;
  }
}
