
/* /src/styles/bpo.css */
.bpo-root {
  --orange: #ff861f;
  --black: #000;
  --dark: #4f4f53;
  --grey: #8d8e91;
  --light: #f5f5f5;
  --green: #16a34a;
  color: #000;
  background: #fff;
  font-family: Montserrat, Arial, sans-serif;
  overflow-x: hidden;
}

.bpo-root * {
  box-sizing: border-box;
}

.bpo-root a {
  color: inherit;
  text-decoration: none;
}

.bpo-root button {
  font-family: inherit;
}

.bpo-root .container {
  width: min(1200px, 100% - 40px);
  margin: auto;
}

.bpo-root .btn {
  background: var(--orange);
  color: #000;
  cursor: pointer;
  border: 0;
  justify-content: center;
  align-items: center;
  padding: 17px 24px;
  font-weight: 900;
  display: inline-flex;
  box-shadow: 0 8px 20px #ff861f38;
}

.bpo-root .btn.secondary {
  color: #fff;
  box-shadow: none;
  background: #ffffff14;
  border: 1px solid #ffffff57;
}

.bpo-root .btn.black {
  color: #fff;
  box-shadow: none;
  background: #000;
}

.bpo-root .site-header {
  z-index: 70;
  background: #fff;
  border-bottom: 1px solid #0000001a;
  position: sticky;
  top: 0;
}

.bpo-root .nav {
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 12px 0;
  display: flex;
}

.bpo-root .header-logo {
  object-fit: contain;
  width: auto;
  max-width: 235px;
  height: 60px;
  display: block;
}

.bpo-root .menu-btn {
  color: #0f172a;
  cursor: pointer;
  background: #f5f6f8;
  border: 1px solid #00000014;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  font-size: 20px;
  transition: background .2s, color .2s;
  display: flex;
}

.bpo-root .menu-btn:hover {
  color: #000;
  background: #eceef2;
}

.bpo-root .menu-overlay {
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  background: #0f172a52;
  transition: opacity .25s;
  position: fixed;
  inset: 0;
}

.bpo-root .menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.bpo-root .drawer {
  color: #0f172a;
  z-index: 100;
  background: #fff;
  border: 1px solid #eef0f3;
  border-radius: 18px;
  flex-direction: column;
  width: min(340px, 100vw - 28px);
  font-family: Plus Jakarta Sans, Montserrat, Arial, sans-serif;
  transition: transform .32s cubic-bezier(.22, .61, .36, 1);
  display: flex;
  position: fixed;
  top: 14px;
  bottom: 14px;
  right: 14px;
  overflow: hidden;
  transform: translateX(calc(100% + 24px));
  box-shadow: 0 30px 80px -20px #0f172a40, 0 10px 30px -10px #0f172a1f;
}

.bpo-root .drawer.open {
  transform: translateX(0);
}

.bpo-root .drawer-top {
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px 10px;
  display: flex;
}

.bpo-root .drawer-brand {
  flex-direction: column;
  line-height: 1;
  display: flex;
}

.bpo-root .drawer-brand-mark {
  letter-spacing: -.04em;
  color: #0f172a;
  font-size: 20px;
  font-weight: 800;
}

.bpo-root .drawer-brand-sub {
  letter-spacing: .22em;
  color: var(--orange);
  text-transform: uppercase;
  margin-top: 3px;
  font-size: 9px;
  font-weight: 700;
}

.bpo-root .drawer-links {
  flex-direction: column;
  flex: 1;
  gap: 0;
  padding: 8px 14px;
  display: flex;
  overflow-y: auto;
}

.bpo-root .drawer-link {
  letter-spacing: -.01em;
  color: #0f172a;
  cursor: pointer;
  border-radius: 8px;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  font-size: 15px;
  font-weight: 500;
  transition: color .25s, background .25s;
  display: flex;
}

.bpo-root .drawer-link:hover {
  color: var(--orange);
  background: #fafafa;
}

.bpo-root .drawer-link-rule {
  background: var(--orange);
  width: 0;
  height: 1px;
  transition: width .4s;
  display: block;
}

.bpo-root .drawer-link:hover .drawer-link-rule {
  width: 20px;
}

.bpo-root .drawer-foot {
  padding: 12px 20px 18px;
}

.bpo-root .drawer-divider {
  background: #eef0f3;
  height: 1px;
  margin-bottom: 12px;
}

.bpo-root .drawer-cta {
  text-align: center;
  background: var(--orange);
  color: #fff;
  letter-spacing: .01em;
  border-radius: 10px;
  width: 100%;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 12px 28px -10px #ff861f80;
}

.bpo-root .drawer-cta:hover {
  background: #ee6f10;
}

.bpo-root .drawer-tag {
  text-align: center;
  color: #94a3b8;
  letter-spacing: .01em;
  margin: 10px 0 0;
  font-size: 11px;
  font-weight: 500;
}

.bpo-root .hero {
  color: #fff;
  background: #000;
  align-items: center;
  min-height: calc(100vh - 85px);
  padding: 82px 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.bpo-root .hero-bg {
  background: linear-gradient(90deg, #000000f7 0%, #000000e8 38%, #000000a8 72%, #4f4f5357 100%), linear-gradient(135deg, #111 0%, #4f4f53 100%);
  position: absolute;
  inset: 0;
}

.bpo-root .hero:after {
  content: "BPO";
  letter-spacing: -.1em;
  color: #fff;
  opacity: .04;
  pointer-events: none;
  font-size: 330px;
  font-weight: 900;
  line-height: .8;
  position: absolute;
  top: 42px;
  right: -95px;
}

.bpo-root .hero-grid-overlay {
  opacity: .28;
  background-image: linear-gradient(#ffffff0b 1px, #0000 1px), linear-gradient(90deg, #ffffff0b 1px, #0000 1px);
  background-size: 46px 46px;
  position: absolute;
  inset: 0;
}

.bpo-root .hero-layout {
  z-index: 2;
  width: 100%;
  position: relative;
}

.bpo-root .hero-inner {
  flex-direction: column;
  gap: clamp(40px, 6vw, 72px);
  width: min(1200px, 100% - 40px);
  margin: 0 auto;
  display: flex;
}

.bpo-root .hero-content {
  max-width: 100%;
}

.bpo-root .hero-content h1 {
  letter-spacing: -.025em;
  max-width: 22ch;
  margin: 18px 0 22px;
  font-size: clamp(40px, 5.2vw, 76px);
  font-weight: 900;
  line-height: 1.04;
}

.bpo-root .hero-content .sub {
  color: #ffffffeb;
  max-width: 40ch;
  margin: 0 0 22px;
  font-size: clamp(20px, 1.9vw, 28px);
  font-weight: 700;
}

.bpo-root .hero-lead {
  color: #ffffffbf;
  max-width: 60ch;
  margin: 0 0 36px;
  font-size: clamp(16px, 1.25vw, 19px);
  font-weight: 500;
  line-height: 1.65;
}

.bpo-root .hero-content .ctas {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
  display: flex;
}

.bpo-root .hero-trust {
  border-top: 1px solid #ffffff1f;
  width: 100%;
  padding-top: clamp(32px, 5vw, 56px);
}

.bpo-root .hero-trust-label {
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #ffffff8c;
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 700;
}

.bpo-root .hero-trust-items {
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 28px;
  display: flex;
}

.bpo-root .hero-trust-item {
  color: #ffffffd9;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: #ffffff0a;
  border: 1px solid #ffffff24;
  border-radius: 999px;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 600;
  transition: border-color .2s, color .2s;
  display: inline-flex;
}

.bpo-root .hero-trust-item:hover {
  color: #fff;
  border-color: #ff8c2873;
}

.bpo-root .hero-trust-item span {
  color: var(--orange, #ff8c28);
  font-weight: 900;
}

.bpo-root .rule {
  background: var(--orange);
  width: 72px;
  height: 5px;
  margin-bottom: 28px;
  box-shadow: 36px 0 #ffffff3d, 72px 0 #8d8e9159;
}

.bpo-root .eyebrow {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .25em;
  font-size: 12px;
  font-weight: 900;
}

.bpo-root .muted {
  color: #8d8e91 !important;
}

.bpo-root .orange-label {
  color: var(--orange) !important;
}

.bpo-root h1 {
  letter-spacing: -.07em;
  margin: 20px 0 26px;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 900;
  line-height: .88;
}

.bpo-root h2 {
  letter-spacing: -.055em;
  margin: 16px 0;
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 900;
  line-height: .95;
}

.bpo-root h3 {
  letter-spacing: -.035em;
  margin: 0;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.05;
}

.bpo-root p {
  line-height: 1.65;
}

.bpo-root .sub {
  max-width: 940px;
  margin-bottom: 12px;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  line-height: 1.15;
}

.bpo-root .copy {
  color: #ffffffd6;
  max-width: 820px;
  margin: 0;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.65;
}

.bpo-root .hero-operating-line {
  color: #ffffffe0;
  max-width: 760px;
  margin: -2px 0 14px;
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 800;
  line-height: 1.45;
}

.bpo-root .secondary-hero-line {
  color: #ffffffd1 !important;
  margin-top: 14px !important;
  font-weight: 800 !important;
}

.bpo-root .hero-support {
  gap: 12px;
  max-width: 820px;
  margin-top: 18px;
  display: grid;
}

.bpo-root .hero-support p {
  color: #ffffffb8;
  margin: 0;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.7;
}

.bpo-root .ctas {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
  display: flex;
}

.bpo-root .hero-econ-panel {
  z-index: 3;
  color: #fff;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  background: linear-gradient(#ffffff26, #fff1);
  border: 1px solid #ffffff38;
  border-radius: 28px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 35px 90px #0000007a;
}

.bpo-root .hero-econ-panel:before {
  content: "";
  opacity: .85;
  background: radial-gradient(circle, #ffffff29 0 2px, #0000 3px) 0 0 / 18px 18px;
  width: 230px;
  height: 230px;
  position: absolute;
  top: -80px;
  right: -80px;
  transform: rotate(18deg);
}

.bpo-root .hero-econ-panel > * {
  z-index: 2;
  position: relative;
}

.bpo-root .panel-kicker {
  color: var(--orange);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 900;
}

.bpo-root .panel-title {
  letter-spacing: -.05em;
  margin-bottom: 22px;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.bpo-root .panel-title span {
  display: block;
}

.bpo-root .savings-feature {
  color: #000;
  background: #fff;
  border-radius: 20px;
  margin-bottom: 14px;
  padding: 22px;
}

.bpo-root .savings-feature small {
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #777;
  font-size: 11px;
  font-weight: 900;
  display: block;
}

.bpo-root .savings-feature b {
  letter-spacing: -.06em;
  margin: 8px 0;
  font-size: 48px;
  line-height: 1;
  display: block;
}

.bpo-root .savings-feature span {
  color: #555;
  font-size: 13px;
  font-weight: 800;
  display: block;
}

.bpo-root .mini-savings-row {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
  display: grid;
}

.bpo-root .mini-saving {
  background: #ffffff14;
  border: 1px solid #ffffff24;
  border-radius: 16px;
  padding: 15px;
}

.bpo-root .mini-saving small {
  color: #ffffff9e;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 900;
  display: block;
}

.bpo-root .mini-saving b {
  color: var(--orange);
  letter-spacing: -.04em;
  margin-top: 4px;
  font-size: 26px;
  display: block;
}

.bpo-root .hero-note {
  color: #ffffff94;
  margin-top: 10px;
  font-size: 11px;
  font-weight: 800;
}

.bpo-root .hero-benefits {
  gap: 10px;
  margin-top: 14px;
  display: grid;
}

.bpo-root .hero-benefit {
  background: #0000006b;
  border: 1px solid #ffffff26;
  border-radius: 14px;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 15px;
  font-size: 14px;
  font-weight: 800;
  display: flex;
}

.bpo-root .hero-benefit span {
  color: var(--orange);
  font-weight: 900;
}

.bpo-root .trust-bar {
  background: #fff;
  border-bottom: 1px solid #0000001a;
  padding: 22px 0;
}

.bpo-root .trust-grid {
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  display: grid;
}

.bpo-root .trust-item {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #4f4f53;
  background: #f7f7f7;
  border: 1px solid #00000014;
  padding: 14px 12px;
  font-size: 12px;
  font-weight: 900;
}

.bpo-root .trust-item span {
  color: var(--orange);
  margin-right: 6px;
}

.bpo-root section {
  background: #fff;
  padding: 92px 0;
}

.bpo-root .light {
  background: #f2f3f5;
}

.bpo-root .dark-section {
  color: #fff;
  background: linear-gradient(#15161a 0%, #1d1e22 100%);
  border-top: 1px solid #ffffff0a;
  border-bottom: 1px solid #0006;
}

.bpo-root .split {
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: 60px;
  display: grid;
}

.bpo-root .body-copy {
  color: #555;
  font-size: 18px;
}

.bpo-root .body-copy.wide {
  max-width: 850px;
}

.bpo-root .dark-copy {
  color: #ffffffb3;
  max-width: 880px;
  font-size: 18px;
}

.bpo-root .cards-2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  display: grid;
}

.bpo-root .cards-4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  display: grid;
}

.bpo-root .with-margin {
  margin-top: 34px;
}

.bpo-root .box {
  background: #fff;
  border: 1px solid #0000001a;
  padding: 28px;
  box-shadow: 0 8px 22px #0000000a;
}

.bpo-root .savings-strip {
  background: #fafafa;
  border-bottom: 1px solid #0000000f;
  padding: 78px 0;
}

.bpo-root .savings-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 30px;
  display: grid;
}

.bpo-root .save-card {
  background: #fff;
  border: 1px solid #0000001a;
  padding: 26px;
  box-shadow: 0 10px 30px #0000000d;
}

.bpo-root .save-card small {
  text-transform: uppercase;
  letter-spacing: .16em;
  color: #777;
  font-size: 11px;
  font-weight: 900;
}

.bpo-root .save-card b {
  letter-spacing: -.06em;
  color: #000;
  margin: 8px 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  display: block;
}

.bpo-root .save-card span {
  color: #555;
  font-size: 13px;
  font-weight: 800;
}

.bpo-root .save-card.accent {
  color: #fff;
  background: #000;
  border-color: #000;
}

.bpo-root .save-card.accent b {
  color: var(--orange);
}

.bpo-root .compare {
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 34px;
  display: grid;
}

.bpo-root .dark-box {
  color: #fff !important;
  background: #111 !important;
  border-color: #ffffff1f !important;
}

.bpo-root .compare ul {
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.bpo-root .compare li {
  color: #d9d9d9;
  font-weight: 800;
}

.bpo-root .compare .after li {
  color: #333;
}

.bpo-root .compare li:before {
  content: "• ";
  color: var(--orange);
  font-weight: 900;
}

.bpo-root .process-graphic {
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  gap: 56px 28px;
  margin-top: 44px;
  display: grid;
}

.bpo-root .process-step {
  color: #000;
  border: 1px solid #00000014;
  border-top: 4px solid var(--orange);
  background: #fff;
  flex-direction: column;
  min-height: 280px;
  padding: 32px 26px 28px;
  display: flex;
  position: relative;
  box-shadow: 0 18px 40px -18px #0000008c, 0 4px 12px #0000002e;
}

.bpo-root .step-num {
  letter-spacing: -.05em;
  color: #000;
  margin-bottom: 14px;
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  display: block;
}

.bpo-root .day {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .12em;
  background: #000;
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 900;
  display: inline-block;
}

.bpo-root .process-step h3 {
  letter-spacing: -.01em;
  color: #000;
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 900;
}

.bpo-root .process-step p {
  color: #555;
  margin: 0;
  font-weight: 700;
}

.bpo-root .process-arrow {
  color: var(--orange);
  z-index: 2;
  pointer-events: none;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  position: absolute;
  top: 50%;
  right: -32px;
  transform: translateY(-50%);
}

.bpo-root .process-footer {
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .18em;
  margin-top: 40px;
  font-size: 13px;
  font-weight: 900;
}

.bpo-root .process-footer span {
  color: var(--orange);
  margin: 0 10px;
}

.bpo-root .how-work-intro {
  color: #ffffffb8;
  max-width: 860px;
  margin: 8px 0 0;
  font-size: 18px;
  font-weight: 800;
}

@media (max-width: 900px) {
  .bpo-root .process-graphic {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bpo-root .process-arrow {
    top: auto;
    bottom: -34px;
    right: 50%;
    transform: translateX(50%) rotate(90deg);
  }
}

.bpo-root .table-wrap {
  background: #fff;
  border: 1px solid #0000001a;
  margin-top: 38px;
  overflow: auto;
  box-shadow: 0 12px 28px #0000000d;
}

.bpo-root table {
  border-collapse: collapse;
  width: 100%;
  min-width: 980px;
}

.bpo-root th {
  color: #fff;
  text-align: left;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: #000;
  padding: 18px;
  font-size: 12px;
}

.bpo-root td {
  color: #3f3f43;
  border-bottom: 1px solid #00000014;
  padding: 18px;
  font-size: 14px;
  font-weight: 700;
}

.bpo-root td:first-child {
  color: #000;
  font-weight: 900;
}

.bpo-root .savings {
  color: var(--green);
  font-size: 16px;
  font-weight: 900;
}

.bpo-root .role-cards {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 38px;
  display: grid;
}

.bpo-root .role-card {
  color: #0a0a0a;
  background: #e2e2e5;
  border: 1px solid #0000001a;
  min-height: 260px;
  padding: 24px;
  box-shadow: 0 8px 24px #0000000f;
}

.bpo-root .role-card .solution-roles li {
  color: #0a0a0a;
  background: #fff;
  border-color: #0000002e;
}

.bpo-root .role-title {
  letter-spacing: -.04em;
  color: #0a0a0a;
  font-size: 22px;
  font-weight: 900;
}

.bpo-root .meta {
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #777;
  margin: 12px 0;
  font-size: 12px;
  font-weight: 900;
}

.bpo-root .cost-row {
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
  display: grid;
}

.bpo-root .cost-box {
  background: #f7f7f7;
  padding: 14px;
}

.bpo-root .cost-box small {
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #777;
  font-size: 10px;
  font-weight: 900;
  display: block;
}

.bpo-root .cost-box b {
  letter-spacing: -.04em;
  font-size: 24px;
}

.bpo-root .saved {
  color: #fff;
  background: #000;
  margin-top: 12px;
  padding: 16px;
  font-weight: 900;
}

.bpo-root .saved b {
  color: var(--orange);
  font-size: 26px;
}

.bpo-root .timeline {
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 38px;
  display: grid;
}

.bpo-root .time-box {
  background: #fff;
  border: 1px solid #0000001a;
  padding: 26px;
}

.bpo-root .time-box.darkbox {
  color: #fff;
  background: #000;
}

.bpo-root .time-list {
  gap: 12px;
  margin-top: 20px;
  display: grid;
}

.bpo-root .time-step {
  border-left: 5px solid var(--orange);
  background: #f7f7f7;
  padding: 14px;
  font-weight: 800;
}

.bpo-root .darkbox .time-step {
  color: #fff;
  background: #ffffff14;
}

.bpo-root .roles-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 34px;
  display: grid;
}

.bpo-root .role {
  color: #4f4f53;
  background: #fff;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  font-weight: 800;
  display: flex;
  box-shadow: 0 8px 18px #0000000a;
}

.bpo-root .role:before {
  content: "✓";
  color: var(--orange);
  font-weight: 900;
}

.bpo-root .ideal-fit {
  color: #fff;
  background: #000;
}

.bpo-root .ideal-fit h2 {
  color: #fff;
}

.bpo-root .ideal-fit .eyebrow {
  color: var(--orange);
}

.bpo-root .ideal-fit .rule {
  background: #ffffff26;
}

.bpo-root .ideal-fit .role {
  color: #fff;
  box-shadow: none;
  background: #0f0f0f;
  border: 1px solid #ffffff1f;
}

.bpo-root .ideal-fit .role:before {
  color: var(--orange);
}

.bpo-root .bio-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
  display: grid;
}

.bpo-root .bio {
  color: #000;
  background: #fff;
  border: 1px solid #0000001a;
  flex-direction: column;
  min-height: 250px;
  padding: 18px;
  display: flex;
}

.bpo-root .avatar {
  width: 46px;
  height: 46px;
  color: var(--orange);
  background: #000;
  border-radius: 50%;
  place-items: center;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 900;
  display: grid;
}

.bpo-root .bio h3 {
  min-height: 2.5em;
  margin: 0;
}

.bpo-root .bio-title {
  color: #555;
  min-height: 1.35em;
  margin: 2px 0 12px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.bpo-root .bio-preview {
  border-top: 1px solid #0000001f;
  flex-direction: column;
  margin-top: auto;
  padding-top: 10px;
  display: flex;
}

.bpo-root .bio-text {
  color: #444;
  min-height: 104px;
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}

.bpo-root .bio-toggle-row {
  justify-content: flex-end;
  margin-top: 10px;
  display: flex;
}

.bpo-root .bio-toggle {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .12em;
  cursor: pointer;
  background: #000;
  border: none;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  font-family: inherit;
  font-size: 11px;
  font-weight: 900;
  display: inline-flex;
}

.bpo-root .bio-toggle:hover {
  background: #333;
}

.bpo-root .testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
  display: grid;
}

.bpo-root .testimonial-card {
  color: #000;
  background: #fff;
  border: 1px solid #0000001a;
  overflow: hidden;
  box-shadow: 0 10px 28px #0000000d;
}

.bpo-root .video-embed {
  aspect-ratio: 16 / 9;
  background: #000;
  width: 100%;
  position: relative;
}

.bpo-root .video-embed iframe {
  border: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.bpo-root .testimonial-card .case-content {
  padding: 24px;
}

.bpo-root .testimonial-card .case-content p {
  color: #4f4f53;
  margin-bottom: 0;
}

.bpo-root .faq-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
  display: grid;
}

.bpo-root .faq {
  border-top: 3px solid var(--orange);
  background: #fff;
  padding: 24px;
  box-shadow: 0 8px 22px #0000000a;
}

.bpo-root .final-cta {
  color: #0a0a0a;
  text-align: center;
  background: linear-gradient(135deg, #ff8c28 0%, #ff6f0a 100%);
  padding: 120px 0;
}

.bpo-root .final-cta h2 {
  letter-spacing: -.025em;
  text-wrap: balance;
  max-width: 22ch;
  margin: 0 auto clamp(28px, 3vw, 40px);
  font-size: clamp(36px, 4.4vw, 64px);
  font-weight: 900;
  line-height: 1.08;
}

.bpo-root .final-cta p {
  max-width: 60ch;
  margin: 0 auto clamp(40px, 4vw, 56px);
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: 600;
  line-height: 1.6;
}

.bpo-root .cta-benefits {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 960px;
  margin: 42px auto 48px;
  display: grid;
}

.bpo-root .cta-benefit {
  color: #000;
  background: #fff;
  padding: 26px 18px;
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 12px 30px #0000001f;
}

.bpo-root .site-footer {
  color: #fff;
  border-top: 4px solid var(--orange);
  background: #1d1e22;
  padding: 64px 0 28px;
}

.bpo-root .footer-grid {
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  padding-bottom: 40px;
  display: grid;
}

.bpo-root .footer-logo {
  object-fit: contain;
  background: #fff;
  width: auto;
  max-width: 190px;
  height: 48px;
  margin-bottom: 18px;
  padding: 6px;
}

.bpo-root .footer-title {
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #000;
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 900;
}

.bpo-root .site-footer p {
  color: #000;
  max-width: 560px;
  margin: 0;
  line-height: 1.6;
}

.bpo-root .footer-contact {
  flex-direction: column;
  align-content: start;
  gap: 12px;
  display: flex;
}

.bpo-root .footer-heading {
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 800;
}

.bpo-root .footer-link {
  color: #000;
  font-weight: 700;
  text-decoration: none;
}

.bpo-root .footer-link:hover {
  color: #000;
  text-decoration: underline;
}

.bpo-root .footer-note {
  color: #000;
  margin-top: 6px;
  font-size: 13px;
}

.bpo-root .footer-bottom {
  color: #000;
  border-top: 1px solid #0000001a;
  padding-top: 22px;
  font-size: 13px;
}

@media (max-width: 1100px) {
  .bpo-root .cards-4, .bpo-root .process-graphic, .bpo-root .savings-grid, .bpo-root .trust-grid, .bpo-root .bio-grid, .bpo-root .role-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .bpo-root .hero-callouts {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .bpo-root .testimonial-grid, .bpo-root .split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .bpo-root .cards-4, .bpo-root .cards-2, .bpo-root .process-graphic, .bpo-root .savings-grid, .bpo-root .trust-grid, .bpo-root .bio-grid, .bpo-root .role-cards, .bpo-root .faq-grid, .bpo-root .cta-benefits, .bpo-root .mini-savings-row, .bpo-root .footer-grid, .bpo-root .timeline, .bpo-root .compare {
    grid-template-columns: 1fr;
  }
}

.bpo-root .roles-chip-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 32px;
  display: grid;
}

.bpo-root .role-chip {
  letter-spacing: -.01em;
  background: #fff;
  border: 1px solid #0000001a;
  padding: 22px;
  font-weight: 900;
  box-shadow: 0 1px 2px #0000000a;
}

.bpo-root .ebitda-grid {
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 36px;
  display: grid;
}

@media (min-width: 900px) {
  .bpo-root .ebitda-grid {
    grid-template-columns: 1.4fr 1fr;
  }
}

.bpo-root .ebitda-list {
  background: #ffffff0d;
  padding: 28px;
}

.bpo-root .ebitda-row {
  color: #ffffffc7;
  border-bottom: 1px solid #ffffff26;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  font-weight: 700;
  display: flex;
}

.bpo-root .ebitda-row strong {
  color: #fff;
}

.bpo-root .ebitda-row:last-child {
  border-bottom: 0;
}

.bpo-root .ebitda-callout {
  background: var(--orange);
  color: #000;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
  display: flex;
}

.bpo-root .ebitda-callout small {
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #0009;
  font-size: 11px;
  font-weight: 900;
}

.bpo-root .ebitda-callout b {
  letter-spacing: -.03em;
  margin-top: 14px;
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  display: block;
}

.bpo-root .ebitda-callout p {
  margin-top: 14px;
  font-weight: 900;
}

.bpo-root main > section {
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 85px);
  padding-top: clamp(56px, 7vh, 96px);
  padding-bottom: clamp(56px, 7vh, 96px);
  display: flex;
}

.bpo-root main > section.hero {
  min-height: calc(100vh - 85px);
  padding-top: 0;
  padding-bottom: 0;
}

@media (max-width: 980px) {
  .bpo-root main > section {
    min-height: auto;
  }
}

.bpo-root h1, .bpo-root h2, .bpo-root h3 {
  text-wrap: balance;
  overflow-wrap: break-word;
  -webkit-hyphens: none;
  hyphens: none;
}

.bpo-root .hero-content h1 {
  text-wrap: balance;
}

.bpo-root .container {
  width: min(1180px, 100% - 56px);
}

.bpo-root main > section {
  padding-top: clamp(96px, 12vh, 160px);
  padding-bottom: clamp(96px, 12vh, 160px);
}

.bpo-root section + section {
  border-top: 1px solid #0000000f;
}

.bpo-root .dark-section + section, .bpo-root section + .dark-section {
  border-top: 0;
}

.bpo-root .dark-section {
  border-top: 1px solid #ffffff0f;
}

.bpo-root .rule {
  background: var(--orange);
  width: 40px;
  height: 2px;
  box-shadow: none;
  margin-bottom: 22px;
}

.bpo-root .dark-section .rule {
  background: var(--orange);
}

.bpo-root .eyebrow {
  letter-spacing: .28em;
  font-size: 11px;
  font-weight: 700;
}

.bpo-root .box, .bpo-root .save-card, .bpo-root .role-card, .bpo-root .bio, .bpo-root .testimonial-card, .bpo-root .faq, .bpo-root .time-box, .bpo-root .process-step, .bpo-root .role, .bpo-root .cta-benefit, .bpo-root .role-chip {
  background: #fff;
  border: 1px solid #00000014;
  border-radius: 0;
  padding: 32px;
  box-shadow: none !important;
}

.bpo-root .dark-section .box, .bpo-root .dark-section .save-card, .bpo-root .dark-section .time-box, .bpo-root .dark-box {
  color: #fff !important;
  background: none !important;
  border-color: #ffffff1f !important;
}

.bpo-root .process-step {
  border-top: 1px solid #00000014;
  min-height: 0;
  padding-top: 36px;
  position: relative;
}

.bpo-root .process-step .day {
  color: var(--orange);
  letter-spacing: .22em;
  background: none;
  margin-bottom: 14px;
  padding: 0;
  font-size: 11px;
}

.bpo-root .process-step:before {
  content: "";
  background: var(--orange);
  width: 40px;
  height: 2px;
  position: absolute;
  top: -1px;
  left: 0;
}

.bpo-root .compare {
  gap: 32px;
  margin-top: 48px;
}

.bpo-root .compare .box {
  padding: 36px;
}

.bpo-root .compare ul {
  gap: 14px;
}

.bpo-root .compare li {
  font-weight: 600;
}

.bpo-root .save-card {
  padding: 36px 28px;
}

.bpo-root .save-card.accent {
  background: #000 !important;
  border-color: #000 !important;
}

.bpo-root .save-card.accent small, .bpo-root .save-card.accent span {
  color: #ffffffb3;
}

.bpo-root .role-card {
  min-height: 0;
  padding: 32px;
}

.bpo-root .bio {
  min-height: 0;
  padding: 28px;
}

.bpo-root .role-cards, .bpo-root .bio-grid, .bpo-root .cards-4, .bpo-root .testimonial-grid, .bpo-root .cards-2 {
  gap: 24px;
}

.bpo-root .savings-grid {
  gap: 20px;
  margin-top: 48px;
}

.bpo-root .role {
  border-radius: 999px;
  padding: 18px 22px;
  font-weight: 600;
}

.bpo-root .roles-grid {
  gap: 14px;
  margin-top: 44px;
}

.bpo-root .time-step {
  border: 1px solid #00000014;
  border-left: 2px solid var(--orange);
  background: none;
  padding: 16px 18px;
  font-weight: 600;
}

.bpo-root .darkbox .time-step {
  border-color: #ffffff1f;
  border-left-color: var(--orange);
  background: none;
}

.bpo-root .faq {
  border-top: 1px solid #00000014;
  position: relative;
}

.bpo-root .faq:before {
  content: "";
  background: var(--orange);
  width: 32px;
  height: 2px;
  position: absolute;
  top: -1px;
  left: 0;
}

.bpo-root .faq-grid {
  gap: 24px;
  margin-top: 48px;
}

.bpo-root .cta-benefit {
  color: #000;
  box-shadow: none;
  background: none;
  border: 1px solid #0000002e;
  padding: 22px 18px;
  font-size: 16px;
  font-weight: 700;
}

.bpo-root .cta-benefits {
  gap: 16px;
}

.bpo-root .table-wrap {
  box-shadow: none;
  border-color: #00000014;
  margin-top: 48px;
}

.bpo-root td {
  font-weight: 500;
}

.bpo-root .hero-trust-item {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  background: none;
  border-color: #ffffff1f;
  font-weight: 500;
}

.bpo-root .cards-4.with-margin, .bpo-root .cards-2 {
  margin-top: 48px;
}

.bpo-root .body-copy {
  margin-top: 8px;
}

.bpo-root section:not(.dark-section):not(.final-cta) .container > .rule {
  position: relative;
}

.bpo-root .site-footer {
  color: #4f4f53;
  background: #fff;
  border-top: 1px solid #00000014;
  padding: 64px 0;
}

.bpo-root .site-footer p {
  color: #000;
}

.bpo-root .footer-logo {
  background: none;
  padding: 0;
}

@media (max-width: 720px) {
  .bpo-root .container {
    width: min(1180px, 100% - 40px);
  }

  .bpo-root section {
    padding: 80px 0;
  }

  .bpo-root .box, .bpo-root .save-card, .bpo-root .role-card, .bpo-root .bio, .bpo-root .faq, .bpo-root .time-box, .bpo-root .process-step {
    padding: 24px;
  }
}

.bpo-root .cta-benefit {
  font-weight: 400 !important;
}

.bpo-root section {
  padding: 88px 0;
}

.bpo-root main > section {
  min-height: 0;
  padding-top: clamp(72px, 9vh, 120px);
  padding-bottom: clamp(72px, 9vh, 120px);
}

.bpo-root .final-cta {
  padding: 104px 0;
}

.bpo-root .box h3, .bpo-root .role-card .role-title, .bpo-root .faq h3 {
  margin-bottom: 14px;
}

.bpo-root .box h3 + p, .bpo-root .faq h3 + p {
  margin-top: 0;
}

.bpo-root .btn, .bpo-root .cta-benefit, .bpo-root .role, .bpo-root .role-chip, .bpo-root .hero-trust-item {
  transition: background-color .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s;
}

.bpo-root .btn:hover {
  background: #ee6f10;
  transform: translateY(-1px);
}

.bpo-root .btn.secondary:hover {
  background: #ffffff24;
  border-color: #fff9;
  transform: translateY(-1px);
}

.bpo-root .btn.black:hover {
  background: #1a1a1a;
  transform: translateY(-1px);
}

.bpo-root .btn:focus-visible, .bpo-root .btn.secondary:focus-visible, .bpo-root .btn.black:focus-visible {
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--orange);
  outline: none;
}

.bpo-root .cta-benefit:hover {
  background: #0000000a;
  border-color: #000;
}

.bpo-root .cta-benefit:focus-within {
  border-color: #000;
  outline: none;
  box-shadow: 0 0 0 2px #0000001f;
}

.bpo-root .role:hover {
  border-color: var(--orange);
  color: #000;
}

.bpo-root .role-chip:hover {
  border-color: var(--orange);
}

.bpo-root .hero-trust-item:focus-visible {
  border-color: var(--orange);
  outline: none;
}

.bpo-root .solutions-subhead {
  letter-spacing: -.01em;
  color: #4f4f53;
  max-width: 55ch;
  margin: 8px 0 28px;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
}

.bpo-root .solution-card {
  flex-direction: column;
  display: flex;
}

.bpo-root .solution-label {
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 16px;
  font-size: 10px;
  font-weight: 700;
}

.bpo-root .solution-roles {
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.bpo-root .solution-roles li {
  color: #1a1a1a;
  text-align: center;
  background: #fff;
  border: 1px solid #0000001f;
  border-radius: 10px;
  flex: auto;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  transition: border-color .2s, color .2s;
}

.bpo-root .solution-roles li:hover {
  border-color: var(--orange);
  color: #000;
}

.bio-linkedin {
  color: #fff;
  background: #0a66c2;
  border-radius: 999px;
  align-self: flex-start;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  margin-bottom: 16px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s;
  display: inline-flex;
}

.bio-linkedin:hover {
  background: #084c92;
}
