/* Outsourcea Who We Are + Stats */
.osws-section {
  --osws-bg: #F7F7F6;
  --osws-card: #FFFFFF;
  --osws-accent: #00A651;
  --osws-text: #101010;
  --osws-muted: #373747;
  --osws-width: 1320px;

  width: 100%;
  background: var(--osws-bg);
  color: var(--osws-text);
  font-family: inherit;
  padding: 52px 30px;
  box-sizing: border-box;
}

.osws-section *,
.osws-section *::before,
.osws-section *::after {
  box-sizing: border-box;
}

.osws-wrap {
  max-width: var(--osws-width);
  width: 100%;
  margin: 0 auto;
}

.osws-top {
  display: grid;
  grid-template-columns: 46% 54%;
  align-items: stretch;
  gap: 0;
  background: var(--osws-card);
  border-radius: 18px 18px 0 0;
  overflow: hidden;
}

.osws-copy {
  min-height: 345px;
  padding: 58px 54px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.osws-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 11px;
  color: var(--osws-muted);
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
}

.osws-eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--osws-accent);
  display: inline-block;
}

.osws-copy h2 {
  max-width: 510px;
  margin: 0 0 22px !important;
  color: var(--osws-text);
  font-size: clamp(34px, 3.5vw, 58px);
  line-height: 1.08;
  letter-spacing: -1.8px;
  font-weight: 400;
}

.osws-copy p {
  max-width: 520px;
  margin: 0 0 26px !important;
  color: var(--osws-muted);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
}

.osws-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.osws-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none !important;
  transition: transform .2s ease, opacity .2s ease, background .2s ease;
}

.osws-btn:hover {
  transform: translateY(-2px);
}

.osws-btn-primary {
  background: var(--osws-accent);
  color: #fff !important;
}

.osws-btn-secondary {
  background: transparent;
  color: var(--osws-text) !important;
  padding-left: 4px;
  padding-right: 4px;
}

.osws-image {
  min-height: 345px;
  background: #eef0ef;
  overflow: hidden;
}

.osws-image img {
  width: 100%;
  height: 100%;
  min-height: 345px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.osws-placeholder {
  min-height: 345px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e9eceb, #f7f7f7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #555;
  text-align: center;
  padding: 30px;
}

.osws-placeholder strong {
  font-size: 22px;
}

.osws-placeholder span {
  font-size: 13px;
}

.osws-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.osws-stat-card {
  min-height: 78px;
  background: var(--osws-card);
  border-radius: 10px;
  padding: 22px 36px;
  display: grid;
  grid-template-columns: 155px 1fr;
  align-items: center;
  column-gap: 20px;
}

.osws-stat-number {
  color: var(--osws-text);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1;
  letter-spacing: -1.4px;
  font-weight: 400;
  white-space: nowrap;
}

.osws-stat-label {
  color: var(--osws-muted);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 400;
  text-align: right;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .osws-section {
    padding: 42px 24px;
  }

  .osws-top {
    grid-template-columns: 1fr;
    border-radius: 18px 18px 0 0;
  }

  .osws-copy {
    min-height: auto;
    padding: 44px 36px 36px;
  }

  .osws-copy h2,
  .osws-copy p {
    max-width: 100%;
  }

  .osws-image,
  .osws-image img,
  .osws-placeholder {
    min-height: 360px;
  }

  .osws-stat-card {
    padding: 20px 26px;
    grid-template-columns: 130px 1fr;
  }
}

@media (max-width: 720px) {
  .osws-section {
    padding: 32px 18px;
  }

  .osws-copy {
    padding: 36px 26px 30px;
  }

  .osws-copy h2 {
    font-size: 36px;
    letter-spacing: -1px;
  }

  .osws-copy p {
    font-size: 15px;
  }

  .osws-stats-grid {
    grid-template-columns: 1fr;
  }

  .osws-stat-card {
    min-height: 74px;
    grid-template-columns: 120px 1fr;
    padding: 20px 24px;
  }

  .osws-stat-label {
    white-space: normal;
  }
}

@media (max-width: 460px) {
  .osws-copy h2 {
    font-size: 31px;
  }

  .osws-actions {
    gap: 16px;
  }

  .osws-btn-primary {
    min-height: 44px;
    padding: 0 20px;
  }

  .osws-stat-card {
    grid-template-columns: 100px 1fr;
    padding: 18px 18px;
  }

  .osws-stat-number {
    font-size: 30px;
  }

  .osws-stat-label {
    font-size: 13px;
  }
}
