.hero-slider {
  position: relative;
  min-height: 480px;
  height: 70vh;
  overflow: hidden;
  background: var(--color-primary);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 1;
  pointer-events: none;
  transform: translateX(100%);
  transition: transform .7s ease-in-out;
  background-position: center;
  background-size: cover;
  z-index: 0;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, var(--hero-overlay-opacity));
}

.hero-slide.is-active {
  pointer-events: auto;
  transform: translateX(0);
  z-index: 10;
}

.hero-slide.is-leaving {
  transform: translateX(-100%);
  z-index: 5;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: min(838px, calc(100% - 2rem));
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  margin: 0 auto;
  padding-inline: 1rem;
}

.hero-slide:not(:first-child) .hero-content {
  width: min(704px, calc(100% - 2rem));
}

.hero-content h1,
.hero-content .hero-title {
  width: 100%;
  margin: 0 0 1.5rem;
  max-width: 837px;
  font-size: clamp(3rem, 7vw, 4.5rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
}

.hero-slide:first-child .hero-content {
  width: min(960px, calc(100% - 2rem));
}

.hero-slide:first-child .hero-title {
  white-space: nowrap;
}

.hero-kicker {
  margin: 0 0 1rem;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 500;
  line-height: 32px;
}

.hero-content p {
  margin: 0 auto 2rem;
  max-width: 672px;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  line-height: 1.4;
  color: #fff;
}

.hero-content .hero-kicker {
  width: 100%;
  max-width: 805px;
  margin-bottom: 1rem;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  line-height: 32px;
  color: #fff;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.home .hero-actions .btn,
.home .why-roce-section .btn,
.home .cases-section .section-actions .btn,
.home .cta-band .btn {
  display: inline-block;
  min-height: 0;
  padding: 12px 28px;
  white-space: nowrap;
}

.home .hero-actions .btn-white {
  width: 268px;
  height: 48px;
  transform: translateY(1px);
}

.home .hero-actions .btn-outline {
  width: 170px;
  height: 50px;
  padding-right: 24px;
  padding-left: 24px;
}

.slider-arrow,
.slider-dot {
  border: 0;
  color: #fff;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 20;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, .3);
}

.slider-arrow::before {
  font-size: 16px;
  line-height: 1;
}

.slider-arrow.prev::before {
  content: "‹";
}

.slider-arrow.next::before {
  content: "›";
}

.slider-arrow.prev {
  left: 1.5rem;
}

.slider-arrow.next {
  right: 1.5rem;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  z-index: 20;
  display: flex;
  gap: 12px;
  transform: translateX(-50%);
}

.slider-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
}

.slider-dot.is-active {
  background: #fff;
  transform: scale(1.25);
}

.section {
  padding: var(--section-space) 0;
}

.section-compact {
  padding: 3rem 0;
}

.section-muted {
  background: var(--color-soft);
}

.section-primary {
  background: var(--color-primary);
  color: #fff;
}

.section-eyebrow {
  margin: 0 0 .75rem;
  color: var(--color-muted);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.home :where(.logo-strip, .testimonials-section, .why-roce-section, .cases-section, .service-overview-section) .section-eyebrow {
  color: var(--color-muted);
  font-size: .875rem;
  line-height: 1.25rem;
  font-weight: 400;
}

.home .testimonial-benefit {
  font-size: .875rem;
  line-height: 1.25rem;
  font-weight: 500;
}

.home .logo-strip .container {
  padding-right: 2rem;
  padding-left: 2rem;
}

.section-heading {
  max-width: 672px;
  margin: 0 auto 4rem;
  text-align: center;
}

.section-heading h2 {
  margin: 0 0 1rem;
  color: var(--color-text);
  font-size: clamp(1.875rem, 3vw, 2.25rem);
  line-height: 40px;
  font-weight: 600;
}

.section-heading p {
  margin: 0;
  color: hsl(220 6% 15% / .7);
  font-size: 1.125rem;
  line-height: 1.625;
}

.cases-section .section-heading {
  max-width: none;
}

.service-overview-section .section-heading {
  max-width: 768px;
}

.cases-section .section-heading > p:not(.section-eyebrow) {
  max-width: 672px;
  margin-inline: auto;
}

.service-overview-section .section-heading > p:not(.section-eyebrow) {
  max-width: 768px;
  margin-inline: auto;
  line-height: 1.5556;
}

.testimonials-section .section-heading {
  max-width: 672px;
  height: 147px;
  margin-bottom: 61px;
  transform: translateY(1px);
}

.testimonials-section {
  padding-bottom: calc(6rem - 4px);
}

.why-roce-section {
  margin-top: -1px;
  padding-bottom: 6rem;
}

.cases-section {
  margin-top: 1px;
  padding-bottom: 6rem;
}

.service-overview-section {
  padding-bottom: calc(6rem + 2px);
}

.why-roce-section,
.service-overview-section {
  background: var(--color-bg);
}

.logo-strip {
  overflow: hidden;
  padding: 4rem 0;
  background: var(--color-bg);
}

.logo-strip .section-eyebrow {
  margin-bottom: 2.5rem;
  text-align: center;
  color: var(--color-muted);
  line-height: 20px;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: logo-scroll 30s linear infinite;
}

.logo-item {
  width: 180px;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 1rem 2rem;
}

.logo-item a {
  display: block;
  width: auto;
  height: auto;
}

.logo-item img {
  width: auto;
  max-width: var(--logo-max-width, 116px);
  max-height: var(--logo-max-height, 64px);
  object-fit: contain;
  transform: scale(var(--logo-scale, 1));
  transition: all .3s ease;
}

.logo-item img[src*="gogetters"] {
  --logo-max-width: 180px;
  --logo-max-height: 128px;
  --logo-scale: 1.45;
}

.logo-item span {
  color: var(--color-blue);
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
}

@keyframes logo-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-33.333%); }
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 4rem;
  align-items: center;
}

.split h2 {
  margin: 0 0 1.25rem;
  font-size: 2.25rem;
  line-height: 1.08;
  color: var(--color-heading);
}

.split p {
  color: var(--color-muted);
  font-size: 1.08rem;
}

.check-list {
  display: grid;
  gap: .85rem;
  margin: 2rem 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  color: var(--color-heading);
}

.check-list li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 1.5px solid var(--color-icon-neutral);
  background: transparent;
  color: var(--color-icon-neutral);
  font-size: .82rem;
  font-weight: 800;
}

.narrow {
  max-width: 768px;
}

.narrow h2 {
  margin: 0 0 1.5rem;
  color: var(--color-text);
  font-size: 2.25rem;
  line-height: 1.15;
  font-weight: 600;
}

.narrow p {
  color: hsl(220 6% 15% / .8);
  font-size: 1.125rem;
  line-height: 1.625;
}

.home .why-roce-section .btn {
  width: 335px;
  margin-top: 0;
}

.home .why-roce-section .container.narrow {
  transform: none;
}

.home .why-roce-section .section-eyebrow {
  margin: 0 0 12px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 20px;
}

.home .why-roce-section h2 {
  margin: 0 0 24px;
  font-size: 36px;
  line-height: 40px;
}

.home .why-roce-section .container.narrow > p:not(.section-eyebrow) {
  margin: 0 0 40px;
  font-size: 18px;
  line-height: 29.25px;
}

.home .why-roce-section .check-list {
  gap: 16px;
  margin: 0 0 40px;
}

.home .why-roce-section .check-list li {
  align-items: center;
}

.home .why-roce-section .check-list li::before {
  content: none;
}

.home .why-roce-section .check-list .roce-icon,
.home .why-roce-section .check-list .roce-icon svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.home .cases-section .section-actions .btn {
  width: 152px;
}

.home .cta-band > .container {
  max-width: 768px;
  color: var(--color-text);
}

.home .cta-band h2 {
  color: #fff;
  line-height: 40px;
}

.home .cta-band .cta-actions {
  transform: translateY(1px);
}

.home .cta-band .btn-white {
  width: 235px;
}

.home .cta-band .btn-outline {
  width: 303px;
  padding-right: 24px;
  padding-left: 24px;
  color: #fff;
}

.home .cta-band {
  padding-bottom: 6rem;
  color: var(--color-text);
}

.home .cases-section .section-heading {
  transform: translateY(-1px);
}

.home .cases-section .cards-grid {
  transform: translateY(-9px);
}

.home .cases-section .case-card {
  position: relative;
  overflow: hidden;
  height: 424px;
  padding: 34px 28px 28px;
}

.home .cases-section .case-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--color-primary), rgba(60, 62, 68, .6));
}

.home .cases-section .case-card .badge {
  width: 100%;
  height: 16px;
  margin: 0 0 16px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  font-size: 12px;
  line-height: 16px;
}

.home .cases-section .case-card .badge .roce-icon {
  width: 14px;
  height: 14px;
}

.home .cases-section .case-card h3 {
  margin: 0 0 12px;
  line-height: 27.5px;
}

.home .cases-section .case-card p {
  flex: 1;
  margin: 0 0 24px;
  color: rgba(36, 37, 41, .7);
  line-height: 26px;
}

.home .cases-section .section-heading > p:not(.section-eyebrow) {
  line-height: 28px;
}

.home .cases-section .case-card .tags {
  gap: 6px;
  margin: 0 0 24px;
  transform: translateY(1px);
}

.home .cases-section .case-card .tags span {
  padding: 4px 10px;
  font-size: 12px;
  line-height: 16px;
}

.home .cases-section .case-card .case-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: 100%;
  height: 37px;
  min-height: 0;
  margin-top: auto;
  padding: 16px 0 0;
  border: 0;
  border-top: 1px solid var(--color-border);
  border-radius: 0;
  background: transparent;
  color: var(--color-blue);
  font-size: 14px;
  line-height: 20px;
  transform: translateY(1px);
}

.home .cases-section .case-card .case-card__link .roce-icon,
.home .cases-section .case-card .case-card__link .roce-icon svg {
  width: 16px;
  height: 16px;
}

.home .service-overview-grid .vpb-scaled-icon > .service-icon,
.home .service-overview-grid .vpb-scaled-icon > .service-icon svg {
  width: 100% !important;
  height: 100% !important;
}

.center {
  text-align: center;
}

.two-col-list {
  grid-template-columns: 1fr;
}

.centered-list {
  width: min(620px, 100%);
  margin-inline: auto;
  text-align: left;
}
