:root {
  --blue: #263d88;
  --orange: #f55b1f;
  --ink: #142033;
  --muted: #627086;
  --bg: #f6f8fc;
  --surface: #ffffff;
  --line: rgba(20, 32, 51, 0.1);
  --shadow: 0 22px 60px rgba(20, 32, 51, 0.12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.65;
  overflow-x: hidden;
}

html {
  max-width: 100%;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.topbar {
  position: relative;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px max(26px, calc((100vw - 1780px) / 2));
  background: #fff;
  border-bottom: 0;
}

.info-bar {
  display: block;
  background: #f4f5f8;
  color: var(--blue);
  font-size: 15px;
  font-weight: 800;
}

.info-bar > div {
  width: min(calc(100% - 64px), 1780px);
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  padding: 10px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand img {
  width: 210px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 1.8vw, 34px);
  color: var(--blue);
  font-weight: 700;
  font-size: clamp(0.98rem, 1vw, 1.22rem);
}

.main-nav > a,
.nav-item > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 48px;
}

.menu-toggle,
.menu-button {
  display: none;
}

.menu-button {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  cursor: pointer;
}

.menu-button span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.nav-item {
  position: relative;
}

.nav-item > a span {
  color: var(--blue);
  font-size: 1rem;
  line-height: 1;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 150;
  width: 330px;
  padding: 18px 0;
  border-radius: 0;
  background: #fff;
  box-shadow: 0 22px 55px rgba(20, 32, 51, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.dropdown-menu a {
  display: block;
  padding: 15px 32px;
  color: #121826;
  font-size: 1.03rem;
  font-weight: 800;
}

.dropdown-menu a:hover {
  color: var(--orange);
  background: #f8fafc;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-weight: 800;
}

.nav-cta,
.btn.primary {
  background: linear-gradient(135deg, var(--orange), #d94b16);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 14px 30px rgba(245, 91, 31, 0.22);
}

.nav-cta {
  display: none;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.home-hero-exact {
  width: 100%;
  height: clamp(560px, 41.7vw, 835px);
  background: #fff;
  overflow: hidden;
}

.home-hero-exact img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  transform: translateY(clamp(-145px, -7vw, -80px));
}

.wp-page-hero {
  position: relative;
  min-height: 300px;
  display: grid;
  place-items: center;
  padding: 74px 24px;
  text-align: center;
  background: var(--blue);
  background-image: linear-gradient(rgba(38, 61, 136, 0.76), rgba(38, 61, 136, 0.76)), url("/assets/wp-page-banner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.wp-page-hero > div {
  position: relative;
  z-index: 1;
  width: min(100%, 1180px);
}

.wp-page-hero h1 {
  margin: 0;
  max-width: none;
  color: #fff;
  font-size: clamp(2.65rem, 5vw, 4.75rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.12);
}

.wp-service-panel {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  width: 100%;
  margin: 56px 0;
  min-height: 520px;
  background: #171923;
  box-shadow: 0 28px 70px rgba(20, 32, 51, 0.18);
}

.wp-service-panel.service-bg-0 {
  background-image: linear-gradient(rgba(20, 21, 32, 0.61), rgba(20, 21, 32, 0.61)), url("/assets/wp-service-workers.jpg");
}

.wp-service-panel.service-bg-1 {
  background-image: linear-gradient(rgba(20, 21, 32, 0.61), rgba(20, 21, 32, 0.61)), url("/assets/wp-service-temporary.jpg");
}

.wp-service-panel.service-bg-2 {
  background-image: linear-gradient(rgba(20, 21, 32, 0.61), rgba(20, 21, 32, 0.61)), url("/assets/wp-service-permanent.jpg");
}

.wp-service-panel.service-bg-3 {
  background-image: linear-gradient(rgba(20, 21, 32, 0.61), rgba(20, 21, 32, 0.61)), url("/assets/wp-service-outsourcing.jpg");
}

.wp-service-panel.service-bg-4 {
  background-image: linear-gradient(rgba(20, 21, 32, 0.61), rgba(20, 21, 32, 0.61)), url("/assets/wp-service-subcontracting.jpg");
}

.wp-service-panel.service-bg-5 {
  background-image: linear-gradient(rgba(20, 21, 32, 0.61), rgba(20, 21, 32, 0.61)), url("/assets/wp-service-consulting.jpg");
}

.wp-service-tile {
  position: relative;
  min-width: 0;
  background-image: linear-gradient(rgba(17, 21, 33, 0.78), rgba(17, 21, 33, 0.88)), var(--tile-image);
  background-size: cover;
  background-position: center;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
}

.wp-service-tile:last-child {
  border-right: 0;
}

.wp-service-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(245, 91, 31, 0.04), rgba(245, 91, 31, 0.12));
  opacity: 0;
  transition: opacity 0.18s ease;
}

.wp-service-tile:hover::after {
  opacity: 1;
}

.wp-service-tile a {
  position: relative;
  z-index: 1;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 52px 20px 46px;
  color: #fff;
}

.wp-service-number {
  position: absolute;
  top: 46px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.65rem, 2.2vw, 2.45rem);
  font-weight: 900;
  line-height: 1;
}

.wp-service-title {
  display: block;
  margin-bottom: 18px;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.25;
}

.wp-service-summary {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.6;
  max-height: 7.2em;
  overflow: hidden;
}

.wp-service-link {
  display: inline-flex;
  align-items: center;
  margin-top: 28px;
  color: #fff;
  font-weight: 900;
}

.wp-service-detail,
.wp-about-main,
.wp-about-sync,
.wp-statement-cards,
.wp-projects,
.wp-process-card {
  width: min(calc(100% - 72px), 1760px);
  margin: clamp(56px, 7vw, 96px) auto;
}

.wp-service-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(42px, 5vw, 72px);
  align-items: start;
}

.wp-service-main {
  min-width: 0;
}

.wp-service-featured {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 5.8;
  height: auto;
  max-height: 390px;
  object-fit: cover;
  object-position: center;
  margin-bottom: 54px;
}

.wp-service-main h1,
.wp-service-main h2,
.wp-about-main h2,
.wp-about-sync h2,
.wp-process-card h2,
.wp-projects h2 {
  margin: 0 0 24px;
  color: #111827;
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

.wp-service-main h3 {
  margin: 40px 0 18px;
  color: #111827;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.2;
  font-weight: 900;
}

.wp-service-main p,
.wp-about-main p,
.wp-about-sync p,
.wp-process-card p,
.wp-projects p,
.wp-service-main li {
  color: #5f6368;
  font-size: clamp(1rem, 1.15vw, 1.16rem);
  line-height: 1.75;
}

.wp-service-main ul {
  margin: 16px 0 40px 22px;
}

.wp-service-sidebar {
  position: sticky;
  top: 132px;
  padding: 44px 36px;
  background: #f0f2f6;
}

.wp-service-sidebar h2 {
  margin: 0 0 28px;
  color: #111827;
  font-size: 1.65rem;
  font-weight: 900;
}

.wp-service-sidebar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 70px;
  margin-bottom: 20px;
  padding: 0 24px;
  color: #171923;
  background: #fff;
  font-size: 1.08rem;
  font-weight: 800;
}

.wp-service-sidebar a.active {
  color: #fff;
  background: #f4511e;
}

.wp-service-faq {
  margin-top: 54px;
}

.wp-service-faq h2 {
  margin-bottom: 22px;
  font-size: clamp(1.85rem, 2.7vw, 2.8rem);
}

.wp-service-faq details {
  border-bottom: 1px solid #d7dbe2;
}

.wp-service-faq summary {
  position: relative;
  display: block;
  padding: 26px 42px 26px 0;
  color: #111827;
  cursor: pointer;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  font-weight: 900;
}

.wp-service-faq summary::-webkit-details-marker {
  display: none;
}

.wp-service-faq summary::after {
  content: "»";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.35rem;
}

.wp-service-faq details[open] summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.wp-service-faq details p {
  margin: 0;
  padding: 0 0 24px;
}

.wp-about-main,
.wp-about-sync {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(42px, 5vw, 84px);
  align-items: start;
}

.wp-about-main img,
.wp-about-sync img,
.wp-project-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1.35 / 1;
  height: auto;
  max-height: 430px;
  object-fit: cover;
  object-position: center;
}

.wp-about-sync {
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1fr);
}

.wp-statement-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 48px);
}

.wp-statement-cards article {
  min-height: 320px;
  padding: clamp(36px, 4vw, 58px);
  text-align: center;
  background: #fff;
  box-shadow: 0 12px 36px rgba(19, 32, 55, 0.08);
}

.wp-statement-cards img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  margin-bottom: 26px;
}

.wp-statement-cards h2 {
  margin: 0 0 18px;
  color: #111827;
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  font-weight: 900;
}

.wp-values-band {
  padding: clamp(56px, 7vw, 96px) 0;
  background: #f3f4f7;
}

.wp-values-grid {
  width: min(calc(100% - 72px), 1520px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(34px, 4vw, 64px);
}

.wp-value-card {
  position: relative;
  min-height: 260px;
  padding: 74px 48px 42px;
  background: #fff;
}

.wp-value-card span {
  position: absolute;
  top: -52px;
  right: 38px;
  color: transparent;
  -webkit-text-stroke: 1px #f4511e;
  font-size: clamp(4rem, 7vw, 6rem);
  line-height: 1;
  font-weight: 900;
}

.wp-value-card:nth-child(odd) span {
  -webkit-text-stroke-color: #111827;
}

.wp-value-card h3 {
  margin: 0 0 18px;
  color: #111827;
  font-size: clamp(1.25rem, 1.7vw, 1.75rem);
  font-weight: 900;
}

.wp-value-card p {
  margin: 0;
  color: #5f6368;
  line-height: 1.7;
}

.wp-projects {
  text-align: center;
}

.wp-project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 42px);
  margin: 40px 0 52px;
}

.wp-project-grid article {
  min-width: 0;
}

.wp-project-grid img {
  aspect-ratio: 1.42 / 1;
  max-height: 300px;
  margin-bottom: 28px;
}

.wp-project-grid h3 {
  max-width: 420px;
  margin: 0 auto 18px;
  color: #111827;
  font-size: clamp(1.75rem, 2.7vw, 3.1rem);
  line-height: 1.22;
  font-weight: 900;
}

.wp-project-grid p {
  max-width: 470px;
  margin: 0 auto;
}

.wp-process-card {
  padding: clamp(36px, 5vw, 62px);
  border: 1px solid #e3e6ec;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(19, 32, 55, 0.08);
}

.wp-process-card > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 34px;
}

.wp-process-card article {
  min-height: 220px;
  padding: 30px;
  border: 1px solid #dce1ea;
  border-radius: 18px;
  background: #f6f8fb;
}

.wp-process-card h3 {
  margin: 0 0 20px;
  color: #111827;
  font-size: clamp(1.25rem, 1.7vw, 1.75rem);
  font-weight: 900;
}

.wp-process-intro {
  width: min(calc(100% - 72px), 1760px);
  margin: 68px auto 92px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.58fr);
  gap: clamp(44px, 8vw, 150px);
  align-items: center;
}

.wp-process-intro h2 {
  margin: 0 0 28px;
  color: #090b10;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.08;
  font-weight: 900;
}

.wp-process-intro p,
.wp-process-steps p,
.wp-process-steps li {
  color: #696969;
  font-size: clamp(1rem, 1.18vw, 1.18rem);
  line-height: 1.8;
}

.wp-process-intro img {
  display: block;
  width: 100%;
  aspect-ratio: 455 / 300;
  height: auto;
  object-fit: cover;
  border-radius: 18px;
}

.wp-process-steps {
  padding: 80px 28px 96px;
  background: #f4f5f7;
}

.wp-process-steps article {
  position: relative;
  width: min(100%, 1860px);
  margin: 0 auto 108px;
  padding: 84px 54px 52px;
  background: #fff;
}

.wp-process-steps article:last-child {
  margin-bottom: 0;
}

.wp-process-steps article > span {
  position: absolute;
  top: -82px;
  left: 48px;
  color: #fb5117;
  font-size: clamp(5rem, 7vw, 7.2rem);
  line-height: 1;
  font-weight: 500;
}

.wp-process-steps h2 {
  margin: 0 0 24px;
  color: #0b0c10;
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 1.25;
  font-weight: 900;
}

.wp-process-steps p {
  margin: 0 0 24px;
}

.wp-process-steps ul {
  margin: -8px 0 24px 44px;
  padding: 0;
}

.wp-service-link::after {
  content: "→";
  margin-left: 9px;
}

.wp-service-tile:first-child .wp-service-link {
  color: var(--orange);
}

.wp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 20px;
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.wp-kicker::before,
.wp-kicker::after {
  content: "";
  width: 14px;
  height: 8px;
  background: var(--orange);
}

.home-about-exact {
  width: min(calc(100% - 56px), 1760px);
  margin: 72px auto 88px;
  display: grid;
  grid-template-columns: 1.08fr .82fr;
  gap: clamp(46px, 7vw, 118px);
  align-items: center;
}

.home-about-copy h2,
.home-dei-copy h2,
.home-blog-exact h2,
.home-contact-form h2 {
  margin: 0 0 26px;
  color: #11131a;
  font-size: clamp(2.5rem, 4.1vw, 4.8rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.home-about-copy p:not(.wp-kicker) {
  max-width: 820px;
  color: #686f78;
  font-size: clamp(1.05rem, 1.4vw, 1.42rem);
  line-height: 1.72;
}

.home-about-media img {
  width: min(100%, 500px);
  margin-left: auto;
  border-radius: 18px;
  box-shadow: none;
}

.wp-angled-btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 54px;
  padding: 20px 42px;
  min-height: 72px;
  background: var(--orange);
  color: #fff;
  font-size: 1.24rem;
  font-weight: 900;
  font-style: italic;
  transform: skewX(-10deg);
}

.wp-angled-btn span,
.wp-angled-btn {
  transform-origin: center;
}

.wp-angled-btn > * {
  transform: skewX(10deg);
}

.home-dei-exact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  min-height: 480px;
  padding: 0 20px;
  background: #b5b8bf;
}

.home-dei-copy {
  padding: 30px clamp(20px, 3vw, 56px);
}

.home-dei-copy h2 {
  max-width: 760px;
  font-size: clamp(2rem, 2.8vw, 3.55rem);
  line-height: 1.08;
}

.home-dei-copy p {
  color: #fff;
  max-width: 850px;
  font-size: clamp(.82rem, .88vw, .98rem);
  line-height: 1.48;
}

.home-dei-media {
  align-self: center;
  min-height: 0;
}

.home-dei-media img {
  display: block;
  width: min(100%, 700px);
  height: 430px;
  margin: 0 auto;
  object-fit: cover;
  border-radius: 18px;
}

.home-difference-exact {
  display: grid;
  grid-template-columns: 0.58fr 0.42fr;
  min-height: 215px;
  background: var(--orange);
  overflow: hidden;
}

.home-difference-image {
  background:
    linear-gradient(90deg, rgba(20, 32, 51, 0.12), rgba(20, 32, 51, 0.32)),
    url("/assets/colleagues.webp") center / cover;
  clip-path: polygon(0 0, 83% 0, 100% 100%, 0% 100%);
  filter: grayscale(1);
}

.home-difference-copy {
  display: flex;
  align-items: center;
  padding: clamp(28px, 3vw, 48px);
}

.home-difference-copy p {
  margin: 0;
  border-left: 5px solid #fff;
  padding-left: 28px;
  color: #fff;
  font-size: clamp(1rem, 1.15vw, 1.3rem);
  line-height: 1.45;
  font-weight: 900;
  font-style: italic;
}

.home-partners-exact {
  padding: 58px max(28px, calc((100vw - 1760px) / 2)) 70px;
  background: #fff;
  overflow: hidden;
}

.home-partners-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.home-partners-heading h2 {
  flex: 1;
  margin: 0 0 42px;
  color: #11131a;
  font-size: clamp(1.8rem, 2.5vw, 3rem);
}

.home-partners-heading h2::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  margin-top: 34px;
  background: var(--orange);
}

.partner-arrows {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
}

.partner-arrows button {
  width: 60px;
  height: 60px;
  border: 0;
  background: #fff;
  color: #111;
  box-shadow: 0 14px 34px rgba(20, 32, 51, .1);
  cursor: pointer;
  font: inherit;
  font-size: 1.45rem;
  transition: color .2s ease, background .2s ease;
}

.partner-arrows button:hover,
.partner-arrows button:focus-visible {
  color: #fff;
  background: var(--orange);
}

.partner-carousel {
  width: 100%;
  overflow: hidden;
  padding-top: 48px;
}

.partner-track {
  display: flex;
  align-items: center;
  will-change: transform;
}

.partner-slide {
  flex: 0 0 calc(100% / 6);
  min-width: 0;
  display: grid;
  place-items: center;
  padding: 0 24px;
}

.partner-slide img {
  width: auto;
  max-width: 100%;
  max-height: 52px;
  object-fit: contain;
  filter: brightness(0) contrast(1.6);
  transition: filter .3s ease, transform .3s ease;
}

.partner-slide:hover img,
.partner-slide:focus-within img {
  filter: brightness(1) contrast(1) saturate(1);
  transform: translateY(-2px);
}

.home-wingman-exact {
  height: 650px;
  position: relative;
  padding: 0;
  background:
    linear-gradient(90deg, rgba(9, 35, 48, 0.7), rgba(9, 35, 48, 0.28)),
    url("/assets/wp-wingman-bg.jpg") center / cover no-repeat;
  color: #fff;
}

.home-wingman-exact > div {
  position: absolute;
  inset: 0;
}

.home-wingman-exact h2 {
  position: absolute;
  top: 206px;
  left: 255px;
  width: 650px;
  max-width: calc(100% - 510px);
  margin: 0;
  text-transform: uppercase;
  font-size: 60px;
  line-height: 1.1;
}

.home-round-link {
  position: absolute;
  top: 190px;
  right: max(112px, calc((100vw - 1605px) / 2));
  width: clamp(368px, 19.32vw, 386px);
  aspect-ratio: 1;
  border: 2px solid rgba(255, 255, 255, 0.76);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.25);
  text-align: center;
  text-transform: uppercase;
  font-weight: 900;
}

.home-round-link span {
  display: block;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1;
}

.home-round-link em {
  font-style: normal;
  letter-spacing: 0.05em;
}

.home-marquee-exact {
  overflow: hidden;
  padding: 40px 0;
  background: #fff;
}

.home-marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: home-marquee-scroll 25s linear infinite;
}

.home-marquee-group {
  flex: none;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.home-marquee-group span {
  color: transparent;
  -webkit-text-stroke: 1px #000;
  text-transform: uppercase;
  font-size: clamp(2.8rem, 4.15vw, 5rem);
  line-height: .9;
  font-weight: 700;
}

.home-marquee-group img {
  width: 50px;
  height: auto;
  margin: 0 24px;
}

@keyframes home-marquee-scroll {
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-marquee-track {
    animation-play-state: paused;
  }
}

.home-testimonial-exact {
  padding: 80px 20px;
  background:
    linear-gradient(rgba(0, 0, 0, .59), rgba(0, 0, 0, .59)),
    url("/assets/wp-client-testimonials.jpg") top center / cover no-repeat;
  color: #fff;
}

.home-testimonial-inner {
  width: min(100%, 1940px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .58fr .42fr;
  gap: 60px;
  align-items: center;
}

.home-testimonial-heading h2 {
  max-width: 650px;
  margin: 0;
  text-transform: uppercase;
  font-size: clamp(2.5rem, 3.2vw, 3.75rem);
  line-height: 1.15;
}

.home-testimonial-slider {
  position: relative;
  isolation: isolate;
  padding-bottom: 72px;
}

.home-testimonial-slider::before,
.home-testimonial-slider::after {
  content: "";
  position: absolute;
  height: 450px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(31, 65, 78, .72);
  z-index: 0;
  pointer-events: none;
}

.home-testimonial-slider::before {
  top: 32px;
  left: 15%;
  width: 92%;
}

.home-testimonial-slider::after {
  top: 64px;
  left: 27%;
  width: 80%;
  opacity: .72;
}

.home-testimonial-card {
  margin-bottom: 73px;
  padding: 30px;
  background: linear-gradient(21.15deg, #132a36 -31%, #3e5864 117%);
  border: 1px solid rgba(255, 255, 255, .3);
  box-shadow: none;
  position: relative;
  height: 450px;
  z-index: 2;
  overflow: hidden;
}

.home-testimonial-card::before,
.home-testimonial-card::after {
  display: none;
}

.testimonial-quote {
  position: absolute;
  right: 42px;
  bottom: 24px;
  color: var(--orange);
  font-size: 4.5rem;
  line-height: 1;
}

.testimonial-controls {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 32px;
}

.testimonial-controls button {
  border: 0;
  background: transparent;
  color: #fff;
  min-width: 64px;
  font-size: 1.7rem;
  cursor: pointer;
}

.testimonial-controls span {
  font-weight: 800;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}

.testimonial-person img {
  width: 68px;
  height: 68px;
  padding: 5px;
  border: 1px solid var(--orange);
  border-radius: 50%;
  object-fit: cover;
}

.portfolio-hero {
  min-height: 530px;
  display: grid;
  place-items: center;
  padding: 60px 24px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(rgba(4, 51, 62, .78), rgba(4, 51, 62, .78)), url("/assets/wp-page-banner.jpg") center / cover no-repeat;
}

.portfolio-hero > div {
  width: min(100%, 1240px);
}

.portfolio-hero h1 {
  width: 100%;
  max-width: none;
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(3rem, 4.7vw, 60px);
  line-height: 1.15;
  white-space: normal;
  text-align: center;
}

.portfolio-hero p {
  display: inline-flex;
  gap: 16px;
  margin: 0;
  padding: 10px 18px;
  background: rgba(4, 51, 62, .76);
  font-weight: 700;
}

.portfolio-hero a { color: #fff; }

.portfolio-gallery {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  width: min(calc(100% - 40px), 1430px);
  margin: 0 auto;
  padding: 120px 0 40px;
}

.portfolio-thumbs {
  display: grid;
  grid-template-rows: repeat(3, 200px);
  gap: 30px;
  height: 660px;
  align-self: start;
  align-content: start;
}

.portfolio-thumbs button {
  width: 200px;
  height: 200px;
  padding: 0;
  border: 3px solid transparent;
  background: none;
  overflow: hidden;
  cursor: pointer;
}

.portfolio-thumbs button.active { border-color: var(--orange); }

.portfolio-thumbs img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-main {
  align-self: start;
}

.portfolio-main img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1180 / 660;
  object-fit: cover;
}

.portfolio-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 386px;
  gap: 70px;
  width: min(calc(100% - 40px), 1430px);
  margin: 0 auto;
  padding: 20px 0 70px;
}

.portfolio-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 2.4vw, 2.7rem);
}

.portfolio-copy p,
.portfolio-closing {
  color: #6b6b6b;
  font-size: 1.12rem;
  line-height: 1.75;
}

.portfolio-copy-main ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 44px;
  padding: 14px 0 0;
  list-style: none;
  font-weight: 800;
}

.portfolio-copy-main li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  margin-right: 14px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
}

.portfolio-info {
  align-self: start;
  padding: 38px 42px;
  background: var(--orange);
  color: #fff;
}

.portfolio-info h2 { color: #fff; }
.portfolio-info dl { margin: 0; }
.portfolio-info dl > div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, .28);
}
.portfolio-info dt { font-weight: 800; }
.portfolio-info dd { margin: 0; text-align: right; text-transform: capitalize; }

.portfolio-image-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 0 max(28px, calc((100vw - 1940px) / 2));
}

.portfolio-image-row img {
  width: 100%;
  height: min(27vw, 510px);
  object-fit: cover;
}

.portfolio-closing {
  margin: 0;
  padding: 52px max(28px, calc((100vw - 1940px) / 2)) 80px;
}

.stars {
  color: var(--orange);
  font-size: 1.7rem;
  letter-spacing: 0.08em;
}

.home-testimonial-card blockquote {
  margin: 28px 0;
  font-size: 20px;
  line-height: 32px;
  font-weight: 500;
  font-style: italic;
}

.home-testimonial-card strong,
.home-testimonial-card span {
  display: block;
}

.home-testimonial-card strong {
  font-size: 1.34rem;
}

.home-blog-exact {
  padding: clamp(58px, 7vw, 92px) max(28px, calc((100vw - 1760px) / 2));
  background: #68717f;
  color: #fff;
}

.home-blog-exact h2 {
  margin-bottom: 42px;
  color: #fff;
  text-transform: uppercase;
}

.home-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 46px);
}

.home-blog-card {
  position: relative;
  background: #fff;
  color: #161b25;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.home-blog-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
}

.home-blog-cat {
  position: relative;
  left: 32px;
  top: 0;
  transform: translateY(-50%);
  display: inline-flex;
  margin-bottom: -18px;
  max-width: calc(100% - 64px);
  padding: 10px 20px;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  border-radius: 2px;
  line-height: 1.15;
}

.home-blog-body {
  padding: 34px 32px 36px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.home-blog-meta {
  color: #67707c;
  font-size: 1.05rem;
}

.home-blog-meta span {
  color: var(--orange);
  margin: 0 12px;
}

.home-blog-card h3 {
  margin: 18px 0 14px;
  font-size: clamp(1.35rem, 1.45vw, 1.72rem);
  line-height: 1.28;
}

.home-blog-card p:last-child {
  color: #68717f;
  font-size: 1rem;
  line-height: 1.62;
}

.home-contact-exact {
  background: #fff;
  padding: 70px max(28px, calc((100vw - 1480px) / 2)) 86px;
  border-top: 6px solid var(--orange);
}

.home-contact-tab {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 0;
  margin-bottom: 42px;
  min-width: 310px;
  padding: 20px 28px;
  background: linear-gradient(90deg, #f2f4f6, #fff);
  color: #142033;
  font-weight: 900;
  font-size: 1.18rem;
}

.home-contact-tab span {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  background: var(--orange);
}

.home-contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.42fr);
  gap: clamp(38px, 5vw, 72px);
  align-items: stretch;
  max-width: 1480px;
  margin: 0 auto;
}

.home-contact-form,
.home-contact-image {
  min-width: 0;
}

.home-contact-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 28px;
}

.home-contact-fields label,
.home-contact-fields span {
  display: block;
}

.home-contact-fields label.full {
  grid-column: 1 / -1;
}

.home-contact-fields span {
  margin-bottom: 12px;
  color: #171b24;
  font-weight: 900;
  font-size: 1.04rem;
}

.home-contact-fields input,
.home-contact-fields select,
.home-contact-fields textarea {
  width: 100%;
  min-height: 58px;
  border: 1px solid #c9cdd4;
  border-radius: 2px;
  padding: 14px 16px;
  font: inherit;
  background: #fff;
}

.home-contact-fields textarea {
  min-height: 170px;
  resize: vertical;
}

.home-contact-form button {
  margin-top: 28px;
  min-height: 58px;
  padding: 0 28px;
  border: 0;
  border-radius: 4px;
  background: var(--orange);
  color: #fff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.home-contact-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  min-height: 0;
  max-height: 560px;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
}

.wp-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: #142033;
  overflow: hidden;
}

.wp-hero-video,
.wp-hero-image {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: 100vw;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%) scale(1.04);
}

.wp-hero-image {
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
}

.wp-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(38, 61, 136, 0.48);
}

.wp-hero-content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 32px), 1000px);
}

.wp-hero-content p {
  max-width: 820px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.45vw, 1.25rem);
}

.wp-hero h1 {
  max-width: none;
  margin: 0 auto;
  font-size: clamp(2.7rem, 5.2vw, 4.9rem);
  line-height: 1.18;
  text-transform: uppercase;
  font-weight: 900;
}

.wp-hero h1 span {
  color: var(--blue);
  font-style: normal;
}

.wp-hero h1 em {
  color: var(--orange);
  font-style: normal;
}

.wp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-top: 28px;
  padding: 0 26px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 16px 35px rgba(245, 91, 31, 0.28);
}

.wp-about,
.wp-testimonials,
.wp-contact-strip {
  width: min(calc(100% - 32px), var(--max));
  margin: 80px auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 52px;
  align-items: center;
}

.wp-about-media {
  position: relative;
}

.wp-about-media img,
.wp-contact-strip img {
  width: 100%;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.wp-about-card {
  position: absolute;
  right: -18px;
  bottom: 28px;
  padding: 24px 28px;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.wp-about-card strong,
.wp-about-card span {
  display: block;
}

.wp-about-card strong {
  color: var(--orange);
}

.wp-about-card span {
  color: var(--blue);
  font-size: 1.5rem;
  font-weight: 900;
}

.wp-about-copy h2,
.wp-wingman h2,
.wp-testimonials h2,
.wp-blog h2,
.wp-contact-strip h2 {
  color: var(--ink);
  text-transform: uppercase;
}

.wp-about-copy h3 {
  margin-top: 28px;
  color: var(--blue);
}

.wp-note {
  margin-top: 28px;
  padding: 22px;
  border-left: 5px solid var(--orange);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(20, 32, 51, 0.08);
  font-weight: 800;
}

.wp-partners,
.wp-wingman,
.wp-blog {
  width: min(calc(100% - 32px), var(--max));
  margin: 80px auto;
}

.wp-partners {
  text-align: center;
  padding: 50px;
  border-radius: 34px;
  background: #fff;
  box-shadow: var(--shadow);
}

.partner-static {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 26px;
  align-items: center;
  margin-top: 28px;
}

.wp-partners img {
  max-height: 70px;
  margin: 0 auto;
  object-fit: contain;
  filter: grayscale(0.2);
}

.wp-wingman {
  padding: 62px 0;
}

.wp-wingman > h2,
.wp-blog > h2 {
  max-width: 820px;
}

.wp-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.wp-service-grid article {
  padding: 34px;
  min-height: 265px;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
  border-bottom: 5px solid var(--orange);
}

.wp-service-grid span {
  color: var(--orange);
  font-weight: 900;
}

.wp-service-grid a {
  color: var(--blue);
  font-weight: 900;
}

.wp-testimonials {
  padding: 54px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 88% 12%, rgba(245, 91, 31, 0.28), transparent 26%),
    linear-gradient(135deg, #0c1730, #263d88);
  color: #fff;
  grid-template-columns: 0.9fr 1.1fr;
}

.wp-testimonials h2,
.wp-testimonials p,
.wp-testimonials blockquote {
  color: #fff;
}

.testimonial-copy p:not(.eyebrow) {
  font-weight: 900;
  color: rgba(255, 255, 255, 0.78);
}

.testimonial-panel {
  padding: 34px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.wp-testimonials blockquote {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.45;
  font-weight: 800;
}

.testimonial-meta {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.testimonial-meta span,
.testimonial-meta strong {
  display: block;
}

.testimonial-meta span {
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
}

.testimonial-meta strong {
  margin-top: 4px;
  font-size: 1.1rem;
}

.testimonial-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.testimonial-points span {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  font-size: 0.88rem;
}

.wp-contact-strip {
  padding: 42px;
  border-radius: 36px;
  background: #fff;
  box-shadow: var(--shadow);
}

.hero {
  width: min(calc(100% - 32px), var(--max));
  margin: 34px auto 0;
  min-height: 520px;
  display: grid;
  align-items: center;
  border-radius: 36px;
  padding: clamp(34px, 6vw, 76px);
  background:
    linear-gradient(90deg, rgba(20, 32, 51, 0.9), rgba(38, 61, 136, 0.76)),
    url("/assets/social-card.webp") center / cover;
  color: #fff;
  box-shadow: var(--shadow);
}

.wp-page-title {
  width: min(calc(100% - 32px), var(--max));
  margin: clamp(42px, 7vw, 86px) auto 20px;
  padding-bottom: 18px;
  border-bottom: 8px solid var(--orange);
}

.wp-page-title h1 {
  margin: 0;
  color: #151922;
  font-size: clamp(2.5rem, 5.4vw, 5rem);
  line-height: 1.04;
}

.wp-page-title p:not(.eyebrow) {
  max-width: 850px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.inner-hero {
  min-height: clamp(340px, 46vh, 480px);
  margin-top: 0;
  border-radius: 0;
  width: 100%;
  padding-top: clamp(44px, 6vh, 72px);
  padding-bottom: clamp(42px, 6vh, 70px);
  padding-left: max(20px, calc((100vw - var(--max)) / 2));
  padding-right: max(20px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(90deg, rgba(20, 32, 51, 0.88), rgba(38, 61, 136, 0.72)),
    url("/assets/hero-wp.webp") center / cover;
}

.inner-hero h1 {
  max-width: 820px;
  text-transform: uppercase;
  font-size: clamp(2.45rem, 4.25vw, 4.55rem);
}

.inner-hero {
  position: relative;
  overflow: hidden;
}

.inner-hero::after {
  content: none;
  position: absolute;
  inset: auto max(20px, calc((100vw - var(--max)) / 2)) 34px auto;
  width: min(26vw, 300px);
  height: min(26vw, 300px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  transform: rotate(8deg);
  pointer-events: none;
}

.inner-hero > div {
  position: relative;
  z-index: 1;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.hero-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
}

.knowledge-hero,
.blog-hub-hero,
.article-hub-hero {
  min-height: clamp(430px, 58vh, 590px);
}

.knowledge-hero h1,
.blog-hub-hero h1,
.article-hub-hero h1 {
  max-width: 820px;
  font-size: clamp(2.45rem, 4.25vw, 4.55rem);
}

.blog-hub-hero .hero-pills,
.article-hub-hero .hero-pills {
  max-width: 820px;
}

.wp-page-hero.blog-hub-hero h1,
.wp-page-hero.article-hub-hero h1 {
  max-width: none;
  margin-inline: auto;
  text-align: center;
}

.services-hero {
  background:
    linear-gradient(110deg, rgba(20, 32, 51, 0.92), rgba(38, 61, 136, 0.76)),
    url("/assets/colleagues.webp") center / cover;
}

.service-hero {
  background:
    linear-gradient(100deg, rgba(20, 32, 51, 0.9) 0%, rgba(38, 61, 136, 0.72) 54%, rgba(245, 91, 31, 0.48) 100%),
    var(--hero-image, url("/assets/social-card.webp")) center / cover;
}

.service-hero h1 {
  max-width: 760px;
  font-size: clamp(2.1rem, 3.45vw, 3.7rem);
}

.service-hero .hero-pills {
  max-width: 760px;
}

.blog-hub-hero,
.article-hub-hero,
.post-hero {
  background:
    linear-gradient(110deg, rgba(20, 32, 51, 0.92), rgba(38, 61, 136, 0.76)),
    url("/assets/colleagues.webp") center / cover;
}

.landing-hero {
  background:
    linear-gradient(105deg, rgba(20, 32, 51, 0.9), rgba(245, 91, 31, 0.52)),
    url("/assets/workers.webp") center / cover;
}

.about-hero,
.team-hero {
  background:
    linear-gradient(105deg, rgba(20, 32, 51, 0.88), rgba(38, 61, 136, 0.68)),
    url("/assets/whoweare.webp") center / cover;
}

.client-hero,
.quote-hero,
.contact-hero {
  background:
    linear-gradient(105deg, rgba(20, 32, 51, 0.92), rgba(245, 91, 31, 0.56)),
    url("/assets/homecontact.webp") center / cover;
}

.candidate-hero,
.application-hero {
  background:
    linear-gradient(105deg, rgba(38, 61, 136, 0.92), rgba(20, 32, 51, 0.62)),
    url("/assets/temporary.webp") center / cover;
}

.industries-hero,
.process-hero,
.projects-hero,
.faq-hero,
.pricing-hero {
  background:
    linear-gradient(105deg, rgba(20, 32, 51, 0.9), rgba(38, 61, 136, 0.72)),
    url("/assets/social-card.webp") center / cover;
}

.wp-page-hero.services-hero,
.wp-page-hero.service-hero,
.wp-page-hero.knowledge-hero,
.wp-page-hero.blog-hub-hero,
.wp-page-hero.article-hub-hero,
.wp-page-hero.post-hero,
.wp-page-hero.landing-hero,
.wp-page-hero.about-hero,
.wp-page-hero.team-hero,
.wp-page-hero.client-hero,
.wp-page-hero.quote-hero,
.wp-page-hero.contact-hero,
.wp-page-hero.candidate-hero,
.wp-page-hero.application-hero,
.wp-page-hero.industries-hero,
.wp-page-hero.process-hero,
.wp-page-hero.projects-hero,
.wp-page-hero.faq-hero,
.wp-page-hero.pricing-hero {
  background:
    linear-gradient(rgba(38, 61, 136, 0.76), rgba(38, 61, 136, 0.76)),
    url("/assets/wp-page-banner.jpg?v=20260617-wp-pages") center / cover no-repeat !important;
}

.hero > div {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.06;
}

h1 {
  font-size: clamp(2.35rem, 5vw, 5rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 3.25rem);
}

h3 {
  font-size: 1.35rem;
}

.hero p:not(.eyebrow) {
  max-width: 66ch;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.06rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.section,
.split,
.grid,
.article,
.faq {
  width: min(calc(100% - 32px), var(--max));
  margin: 34px auto;
}

.section {
  padding: 44px;
  border-radius: 32px;
  background: var(--surface);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.section.dark {
  background: linear-gradient(135deg, var(--blue), #142033);
  color: #fff;
}

.section.dark p {
  color: rgba(255, 255, 255, 0.82);
}

.section-head {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.section-intro {
  max-width: 820px;
  margin-bottom: 26px;
}

.service-depth .mini-grid article,
.proof-section .mini-grid article {
  min-height: 190px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.mini-grid article {
  padding: 22px;
  border-radius: 22px;
  background: #f8fafc;
  border: 1px solid var(--line);
}

.card,
.panel,
.article,
.faq article {
  padding: 26px;
  border-radius: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(20, 32, 51, 0.08);
}

.card img {
  height: 180px;
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 18px;
}

.card p,
.panel p,
.section p,
.article p,
.faq p {
  color: var(--muted);
}

.card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 22px;
  align-items: stretch;
}

.split > div:first-child {
  padding: 38px;
  border-radius: 32px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.support-panel {
  width: min(calc(100% - 32px), var(--max));
  margin: 50px auto;
  padding: clamp(30px, 4vw, 52px);
  border-radius: 34px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.support-copy {
  max-width: 880px;
}

.support-form {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.support-form textarea,
.support-form button {
  grid-column: 1 / -1;
}

.cta-panel {
  width: min(calc(100% - 32px), var(--max));
  margin: 70px auto;
  padding: clamp(30px, 4vw, 52px);
  border-radius: 34px;
  background: linear-gradient(135deg, #203d88, #f15a24);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  box-shadow: var(--shadow);
}

.cta-panel h2,
.cta-panel p,
.cta-panel .eyebrow {
  color: #fff;
}

.cta-panel .btn {
  background: #fff;
  color: var(--blue);
  flex: 0 0 auto;
}

ul {
  padding-left: 20px;
}

li + li {
  margin-top: 8px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.steps article {
  padding: 24px;
  border-radius: 24px;
  background: #f8fafc;
  border: 1px solid var(--line);
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(245, 91, 31, 0.12);
  color: var(--orange);
  font-weight: 900;
  margin-bottom: 12px;
}

.article {
  max-width: 900px;
}

.article h2 {
  margin-top: 26px;
}

.author-box {
  margin-top: 34px;
  padding: 24px;
  border-radius: 22px;
  background: #f8fafc;
  border: 1px solid var(--line);
}

.author-box strong {
  display: block;
  color: var(--blue);
  font-size: 1.1rem;
}

.author-box p {
  margin-bottom: 0;
}

.article.legal h2 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.article.legal a {
  color: var(--blue);
  font-weight: 900;
}

.form {
  display: grid;
  gap: 12px;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  font: inherit;
  background: #fff;
}

textarea {
  min-height: 130px;
}


.application-wrap {
  width: min(calc(100% - 32px), var(--max));
  margin: 60px auto;
}

.application-form {
  display: grid;
  gap: 24px;
  margin-top: 28px;
}

.application-progress {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(20, 32, 51, 0.08);
}

.application-progress span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
}

.application-progress strong {
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.86rem;
}

.application-section {
  padding: clamp(24px, 4vw, 38px);
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(20, 32, 51, 0.08);
}

.application-section h2 {
  margin-bottom: 22px;
  color: var(--blue);
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.application-section h3 {
  margin: 4px 0 8px;
  color: var(--ink);
  font-size: 1.08rem;
}

.application-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.application-fields .full,
.repeat-block {
  grid-column: 1 / -1;
}

.application-fields label span,
.form-choice legend {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-weight: 800;
}

.form-choice {
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f8fafc;
}

.form-choice div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.form-choice label,
.form-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
}

.form-choice input,
.form-check input {
  width: auto;
  flex: 0 0 auto;
}

.repeat-block {
  padding: 18px;
  border-radius: 20px;
  background: #f8fafc;
  border: 1px solid var(--line);
}

.repeat-block + .repeat-block {
  margin-top: 4px;
}

.application-copy {
  padding: 18px;
  border-radius: 20px;
  background: #f8fafc;
  border: 1px solid var(--line);
}

.application-copy p {
  margin-top: 0;
  color: var(--muted);
}

.application-copy p:last-child {
  margin-bottom: 0;
}

.application-submit {
  display: flex;
  justify-content: flex-end;
  padding: 10px 0 0;
}

.wordpress-form-section {
  padding-top: 24px;
}

.candidate-focus-form {
  width: min(calc(100% - 72px), 1760px);
  margin-top: 58px;
}

.candidate-focus-form > .section-intro h2 {
  margin-bottom: 28px;
  color: #0b0c10;
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 900;
}

.candidate-focus-form .application-progress {
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0 0 14px;
  border: 0;
  border-top: 7px solid #f4511e;
  border-radius: 0;
  box-shadow: none;
}

.candidate-focus-form .application-progress span {
  display: none;
}

.candidate-focus-form .application-progress strong {
  padding-top: 14px;
  color: #333;
  text-align: center;
  letter-spacing: 0;
  font-size: 1rem;
  font-weight: 500;
}

.candidate-focus-form .application-section {
  padding: 32px 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.candidate-focus-form .application-section h2 {
  color: #111;
}

.wp-client-trust {
  width: min(calc(100% - 72px), 1760px);
  margin: 68px auto 0;
  padding-bottom: 72px;
  border-bottom: 1px solid #e4e5e8;
}

.wp-client-trust > h2,
.wp-client-inquiry h2 {
  margin: 0 0 36px;
  color: #090b10;
  font-size: clamp(2.5rem, 4.5vw, 4.2rem);
  line-height: 1.08;
  font-weight: 900;
}

.wp-client-trust > p,
.wp-client-trust article p {
  color: #696969;
  font-size: clamp(1rem, 1.18vw, 1.18rem);
  line-height: 1.75;
}

.wp-client-trust-body {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(380px, .65fr);
  gap: clamp(48px, 6vw, 92px);
  align-items: center;
  margin-top: 34px;
}

.wp-client-trust article {
  position: relative;
  padding-left: 38px;
  margin-bottom: 28px;
}

.wp-client-trust article::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  color: #fff;
  background: #fb5117;
  font-size: 14px;
  font-weight: 900;
}

.wp-client-trust article h3 {
  margin: 0 0 3px;
  color: #111;
  font-size: 1.25rem;
  font-weight: 900;
}

.wp-client-trust article p {
  margin: 0;
}

.wp-client-trust img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.wp-client-inquiry {
  width: min(calc(100% - 72px), 1760px);
  margin-top: 68px;
  padding: 0;
  border: 0;
}

.wp-client-inquiry .client-form-media {
  border-radius: 0;
  align-self: start;
  height: clamp(520px, 38vw, 640px);
  min-height: 0;
}

.wp-client-inquiry .client-form-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.wp-contact-hero p {
  margin: 8px 0 0;
  color: #fff;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.2;
  font-style: italic;
  font-weight: 900;
}

.wp-contact-cards {
  width: min(calc(100% - 56px), 1880px);
  margin: 52px auto 64px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.wp-contact-cards article {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 34px 26px;
  text-align: center;
  background: #f5f6f8;
}

.wp-contact-cards article > span {
  color: #fb5117;
  font-size: 4rem;
  line-height: 1;
}

.wp-contact-cards h2 {
  margin: 32px 0 10px;
  color: #111;
  font-size: clamp(1.15rem, 1.65vw, 1.65rem);
  line-height: 1.35;
  font-weight: 900;
}

.wp-contact-cards p {
  margin: 0 0 12px;
  color: #696969;
  font-size: 1.05rem;
}

.wp-contact-form-section {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(380px, .55fr);
  gap: clamp(42px, 5vw, 72px);
  align-items: stretch;
  padding: 70px max(36px, calc((100vw - 1840px) / 2));
  border-top: 10px solid #fb5117;
  background: #fff;
}

.wp-contact-form-section form h2 {
  margin: 0 0 58px;
  color: #090b10;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  font-weight: 900;
}

.wp-contact-form-section form > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.wp-contact-form-section label.full {
  grid-column: 1 / -1;
}

.wp-contact-form-section label span {
  display: block;
  margin-bottom: 12px;
  color: #222;
  font-weight: 800;
}

.wp-contact-form-section input,
.wp-contact-form-section select,
.wp-contact-form-section textarea {
  border-radius: 0;
  min-height: 58px;
}

.wp-contact-form-section textarea {
  min-height: 166px;
}

.wp-contact-form-section button {
  margin-top: 28px;
  padding: 14px 24px;
  border: 0;
  color: #fff;
  background: #fb5117;
  font: inherit;
  font-weight: 900;
}

.wp-contact-form-section > img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.wp-contact-map {
  display: block;
  width: 100%;
  height: 560px;
  border: 0;
}

.client-form-section {
  width: min(calc(100% - 32px), var(--max));
  margin: 34px auto 70px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: stretch;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 0;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: none;
}

.client-form-copy h2 {
  margin-top: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.05;
}

.client-form-copy > p:not(.eyebrow) {
  color: var(--muted);
  max-width: 680px;
}

.client-inquiry-form {
  margin-top: 28px;
}

.client-form-media {
  min-height: 560px;
  border-radius: 28px;
  overflow: hidden;
  background: #e8edf5;
}

.client-form-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.category-pills,
.blog-meta,
.article-meta,
.blog-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-pills {
  margin-top: 18px;
}

.category-pills span,
.blog-meta span,
.article-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(38, 61, 136, 0.08);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
}

.blog-card {
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card img {
  width: 100%;
  height: 240px;
  margin: 0;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
}

.blog-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}

.blog-card h3 {
  margin-top: 14px;
  font-size: clamp(1.35rem, 1.6vw, 1.8rem);
  line-height: 1.25;
}

.blog-card-body p {
  margin-bottom: 18px;
}

.blog-card-body a:last-child {
  margin-top: auto;
}

.blog-updated {
  margin: 8px 0 0;
  font-size: 0.86rem;
}

.article-meta {
  margin-bottom: 22px;
}

.article-featured {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 22px;
  margin-bottom: 24px;
}

.related-articles .blog-list {
  margin-top: 22px;
}

.blog-cta {
  width: min(calc(100% - 32px), var(--max));
  margin: 70px auto;
  padding: clamp(30px, 4vw, 52px);
  border-radius: 34px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
}

.blog-cta-actions {
  justify-content: flex-end;
}

.site-footer {
  position: relative;
  overflow: hidden;
  margin-top: 60px;
  background:
    radial-gradient(rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.06) 100%),
    url("/assets/footer-bg-1.jpg") center / cover no-repeat;
  color: #fff;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgb(38, 61, 136);
  opacity: 0.9;
  pointer-events: none;
}

.footer-main {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2px), 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.12fr 1fr 1fr;
  gap: 20px;
  min-height: 484px;
  padding: 60px 20px 42px;
}

.footer-logo {
  box-sizing: border-box;
  width: 241px;
  max-width: 70vw;
  height: auto;
  padding: 10px 20px;
  margin-bottom: 28px;
}

.footer-member {
  box-sizing: border-box;
  width: 241px;
  height: 65px;
  max-width: 72vw;
  padding: 10px 20px;
  object-fit: contain;
}

.footer-col h3 {
  margin: 0 0 22px;
  color: #fff;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
}

.footer-contact p,
.footer-col li {
  color: #fff;
}

.footer-contact p {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 28px;
}

.footer-contact span {
  display: block;
  color: #fff;
  font-weight: 700;
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col li + li {
  margin-top: 8px;
}

.footer-col a {
  color: #fff;
  transition: color 0.18s ease, transform 0.18s ease;
}

.footer-col a:hover {
  color: #fff;
}

.footer-col li a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  font-size: 16px;
  line-height: 28px;
}

.footer-col li .footer-chevron {
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -5px;
  transform: translateX(-2px);
}

.follow-title {
  margin-top: 25px !important;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.socials a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #69727d;
  box-shadow: none;
}

.socials svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 70px;
  min-height: 70px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 0;
  align-items: center;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
}

.footer-bottom > * {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  min-width: 0;
  padding: 0 20px;
  color: #fff;
}

.footer-bottom > :nth-child(2),
.footer-bottom > :nth-child(3) {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.footer-bottom a:last-child {
  justify-self: stretch;
}

.footer-to-top {
  position: absolute;
  right: 38px;
  bottom: 18px;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #ff5a1f;
  color: #fff;
  font-size: 25px;
  line-height: 1;
  box-shadow: 0 0 0 2px #ff5a1f;
}

.wp-single-post-hero {
  min-height: 555px;
  display: grid;
  place-items: center;
  padding: 70px 24px;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(rgba(38, 61, 136, 0.78), rgba(38, 61, 136, 0.78)),
    url("/assets/wp-page-banner.jpg") center / cover no-repeat;
}

.wp-single-post-hero > div {
  width: min(100%, 1540px);
}

.wp-single-post-hero h1 {
  max-width: 1540px;
  margin: 0 auto 32px;
  color: #fff;
  font-size: clamp(3.2rem, 4.65vw, 5.25rem);
  line-height: 1.13;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.wp-single-post-meta {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 12px 24px;
  background: rgba(45, 67, 137, 0.82);
  font-size: 1rem;
}

.wp-single-post-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.wp-single-post-meta span::first-letter {
  color: var(--orange);
}

.wp-single-post-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
  gap: 48px;
  width: min(calc(100% - 48px), 1760px);
  margin: 0 auto;
  padding: 115px 0 165px;
  font-family: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, sans-serif;
}

.wp-single-post-main {
  min-width: 0;
}

.wp-single-post-article {
  color: #696969;
}

.wp-single-post-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1.6 / 1;
  margin-bottom: 58px;
  object-fit: cover;
}

.wp-single-post-content {
  font-size: clamp(1rem, 1.12vw, 1.22rem);
  line-height: 1.78;
}

.wp-single-post-content p {
  margin: 0 0 32px;
}

.wp-single-post-content a {
  color: #656565;
  font-weight: 800;
}

.wp-single-post-content strong {
  color: #606060;
  font-weight: 800;
}

.wp-single-post-content ul {
  margin: 0 0 32px 42px;
}

.wp-post-numbered {
  margin: 0 0 30px 42px;
  padding: 0;
}

.wp-post-numbered li {
  padding-left: 2px;
}

.wp-post-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin-top: 48px;
  padding-top: 26px;
  border-top: 1px solid #e5e5e5;
}

.wp-post-tags a {
  font-size: 0.92rem;
}

.wp-comment-form {
  margin-top: 72px;
}

.wp-comment-form h3 {
  margin: 0 0 22px;
  color: #111;
  font-size: 1.7rem;
}

.wp-comment-form > p {
  color: #666;
  font-size: 1rem;
}

.wp-comment-form form > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin: 34px 0;
}

.wp-comment-form input,
.wp-comment-form textarea,
.wp-sidebar-search input {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 0;
  background: #fff;
  color: #333;
  font: inherit;
}

.wp-comment-form input {
  min-height: 70px;
  padding: 0 28px;
}

.wp-comment-form textarea {
  min-height: 220px;
  padding: 24px 28px;
  resize: vertical;
}

.wp-comment-form button {
  min-height: 70px;
  margin-top: 34px;
  padding: 0 36px;
  border: 0;
  background: #ff571f;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
}

.wp-post-sidebar {
  min-width: 0;
}

.wp-post-sidebar > section {
  margin-bottom: 46px;
  padding: 42px 40px;
  background: #f5f6f8;
}

.wp-post-sidebar h2 {
  position: relative;
  margin: 0 0 38px;
  padding-bottom: 20px;
  color: #111;
  font-size: 1.65rem;
}

.wp-post-sidebar h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 88px;
  height: 3px;
  background: linear-gradient(90deg, #171717 0 28%, transparent 28% 38%, var(--orange) 38%);
}

.wp-sidebar-search {
  position: relative;
}

.wp-sidebar-search input {
  min-height: 72px;
  padding: 0 58px 0 24px;
}

.wp-sidebar-search span {
  position: absolute;
  right: 22px;
  top: 50%;
  color: var(--orange);
  font-size: 1.8rem;
  transform: translateY(-50%);
}

.wp-sidebar-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wp-sidebar-list li + li {
  margin-top: 7px;
}

.wp-sidebar-list a {
  color: #626262;
  font-size: 1.05rem;
}

.wp-recent-posts article {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 0 0 28px;
}

.wp-recent-posts article + article {
  padding-top: 28px;
  border-top: 1px solid #ddd;
}

.wp-recent-posts img {
  width: 90px;
  height: 70px;
  object-fit: cover;
}

.wp-recent-posts p {
  margin: 0 0 10px;
  color: #777;
  font-size: 0.82rem;
}

.wp-recent-posts a {
  color: #111;
  font-size: 1rem;
  line-height: 1.42;
  font-weight: 900;
}

.wp-post-sidebar > section > p {
  color: #6f6f6f;
}

.wp-sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wp-sidebar-tags a {
  padding: 8px 14px;
  border: 1px solid #e4e4e4;
  background: #fff;
  color: #191919;
  font-size: 0.88rem;
  font-weight: 700;
}

@media (max-width: 900px) {
  .wp-single-post-hero {
    min-height: 420px;
    padding: 55px 20px;
  }

  .wp-single-post-hero h1 {
    font-size: clamp(2.45rem, 8vw, 4rem);
  }

  .wp-single-post-layout {
    grid-template-columns: 1fr;
    width: min(calc(100% - 32px), 760px);
    padding: 70px 0 90px;
  }

  .wp-post-sidebar {
    position: static;
  }

  .topbar {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 12px 16px;
  }

  .brand img {
    width: 112px;
  }

  .menu-button {
    display: inline-flex;
    justify-self: end;
  }

  .nav-cta {
    display: none;
  }

  .main-nav {
    grid-column: 1 / -1;
    display: none;
    width: 100%;
    padding: 14px;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(20, 32, 51, 0.12);
    border: 1px solid var(--line);
  }

  .menu-toggle:checked ~ .main-nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .menu-toggle:checked + .menu-button span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle:checked + .menu-button span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle:checked + .menu-button span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav > a,
  .nav-item > a {
    min-height: 44px;
    justify-content: space-between;
    padding: 0 10px;
    border-radius: 12px;
    color: var(--blue);
  }

  .main-nav > a:hover,
  .nav-item > a:hover {
    background: #f8fafc;
  }

  .nav-item {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
    box-shadow: none;
    border-radius: 14px;
    background: #f8fafc;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height 0.2s ease, padding 0.2s ease, margin 0.2s ease;
  }

  .has-dropdown:hover .dropdown-menu,
  .has-dropdown:focus-within .dropdown-menu {
    max-height: 520px;
    padding: 8px 0;
    margin: 4px 0 8px;
    transform: none;
  }

  .dropdown-menu a {
    padding: 11px 20px;
    font-size: 0.96rem;
  }

  .info-bar > div {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.82rem;
  }

  .wp-page-hero {
    min-height: 230px;
    padding: 56px 18px;
  }

  .wp-service-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    min-height: 0;
    margin: 44px 0 30px;
  }

  .wp-service-tile {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .wp-service-tile a {
    min-height: 310px;
    padding: 72px 22px 32px;
  }

  .wp-hero {
    min-height: 470px;
  }

  .hero {
    min-height: auto;
  }

  .inner-hero {
    padding-top: 36px;
    padding-bottom: 36px;
    border-radius: 0 0 22px 22px;
  }

  .inner-hero h1,
  .service-hero h1,
  .blog-hub-hero h1,
  .article-hub-hero h1 {
    max-width: 100%;
    font-size: clamp(2rem, 10vw, 3.15rem);
    line-height: 1.08;
  }

  .hero p:not(.eyebrow) {
    font-size: 0.98rem;
  }

  .inner-hero::after {
    width: 190px;
    height: 190px;
    right: -40px;
    bottom: 18px;
  }

  .hero-pills {
    gap: 8px;
  }

  .hero-pills span {
    min-height: 32px;
    font-size: 0.8rem;
  }

  .section-head,
  .grid,
  .split,
  .steps,
  .mini-grid,
  .wp-about,
  .wp-testimonials,
  .wp-contact-strip,
  .wp-service-grid,
  .partner-static,
  .wp-testimonial-images,
  .footer-main,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .support-form {
    grid-template-columns: 1fr;
  }

  .application-progress,
  .application-fields {
    grid-template-columns: 1fr;
  }

  .application-progress {
    align-items: start;
  }

  .form-choice div {
    display: grid;
    grid-template-columns: 1fr;
  }

  .application-submit {
    justify-content: stretch;
  }

  .application-submit .btn {
    width: 100%;
  }

  .blog-cta {
    grid-template-columns: 1fr;
  }

  .blog-cta-actions {
    justify-content: stretch;
  }

  .blog-cta-actions .btn {
    width: 100%;
  }



  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-logo {
    width: 210px;
    max-width: 62vw;
  }

  .footer-member {
    width: 220px;
    max-width: 70vw;
  }

  .footer-main {
    min-height: 0;
    padding: 48px 10px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-bottom > :nth-child(2),
  .footer-bottom > :nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    border-left: 0;
  }

  .footer-bottom,
  .footer-bottom a:last-child {
    justify-items: start;
    justify-self: start;
    text-align: left;
  }

  .footer-bottom > * {
    width: 100%;
    justify-content: flex-start;
  }

  .footer-to-top {
    right: 20px;
    bottom: 22px;
  }
}


@media (max-width: 820px) {
  .client-form-section {
    grid-template-columns: 1fr;
    padding: 22px;
    margin: 44px auto;
  }

  .client-form-media {
    min-height: 300px;
    order: -1;
  }

  .client-form-copy h2 {
    font-size: clamp(2rem, 12vw, 3rem);
  }
}

@media (max-width: 1366px) and (min-width: 1101px) {
  .home-wingman-exact h2 {
    top: 136px;
    left: 20px;
    width: 484px;
    max-width: 47%;
    font-size: 46px;
  }

  .home-round-link {
    top: 120px;
    right: 112px;
    width: 368px;
  }
}

@media (max-width: 1100px) {
  .wp-service-detail,
  .wp-about-main,
  .wp-about-sync {
    grid-template-columns: 1fr;
  }

  .wp-service-sidebar {
    position: static;
    top: auto;
  }

  .wp-statement-cards,
  .wp-project-grid,
  .wp-process-card > div {
    grid-template-columns: 1fr;
  }

  .wp-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wp-service-featured,
  .wp-about-main img,
  .wp-about-sync img,
  .wp-project-grid img {
    aspect-ratio: 16 / 9;
    max-height: 360px;
  }

  .wp-project-grid img {
    max-height: 300px;
  }

  .home-about-exact,
  .home-dei-exact,
  .home-testimonial-inner,
  .home-contact-inner {
    grid-template-columns: 1fr;
  }

  .home-dei-exact {
    padding: 0 20px 20px;
  }

  .home-dei-media img {
    height: 420px;
    max-height: 420px;
  }

  .home-wingman-exact {
    height: 560px;
    min-height: 0;
    background-position: 58% center;
  }

  .home-wingman-exact h2 {
    top: 80px;
    left: 20px;
    width: 47%;
    max-width: 470px;
    font-size: 36px;
  }

  .home-round-link {
    top: 80px;
    right: 20px;
    width: 250px;
  }

  .portfolio-gallery,
  .portfolio-copy {
    grid-template-columns: 1fr;
  }

  .portfolio-thumbs {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: none;
    grid-row: 2;
    width: 100%;
    height: auto;
  }

  .portfolio-thumbs button {
    width: 100%;
    height: auto;
    aspect-ratio: 1180 / 660;
  }

  .portfolio-info {
    width: 100%;
  }

  .home-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-blog-card img {
    height: 240px;
  }

  .home-contact-image img {
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 0;
    max-height: 360px;
  }

  .home-testimonial-card {
    margin-bottom: 0;
    height: auto;
    min-height: 420px;
    box-shadow: none;
  }

  .home-testimonial-slider::before,
  .home-testimonial-slider::after {
    display: none;
  }

  .testimonial-controls {
    position: static;
    justify-content: flex-end;
    margin-top: 22px;
  }
}

@media (max-width: 1199px) {
  .partner-slide {
    flex-basis: 20%;
  }
}

@media (max-width: 991px) {
  .partner-slide {
    flex-basis: 25%;
  }
}

@media (max-width: 760px) {
  .home-dei-exact {
    padding: 0 14px 14px;
  }

  .home-dei-copy {
    padding: 36px 6px 28px;
  }

  .home-dei-media img {
    height: 300px;
    max-height: 320px;
    border-radius: 12px;
  }

  .home-wingman-exact {
    height: 755px;
    min-height: 0;
    padding: 0;
    background-position: 58% center;
  }

  .home-wingman-exact h2 {
    top: 86px;
    left: 20px;
    width: 220px;
    max-width: 220px;
    font-size: 30px;
  }

  .home-round-link {
    top: 205px;
    right: -20px;
    bottom: auto;
    width: 200px;
  }

  .home-testimonial-exact {
    padding: 54px 20px;
  }

  .home-testimonial-inner {
    gap: 34px;
  }

  .portfolio-hero {
    min-height: 360px;
  }

  .portfolio-hero h1 {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
    white-space: normal;
  }

  .portfolio-gallery,
  .portfolio-copy {
    gap: 24px;
    padding: 42px 14px 24px;
  }

  .portfolio-copy {
    padding-top: 10px;
    padding-bottom: 42px;
  }

  .portfolio-thumbs {
    gap: 10px;
  }

  .portfolio-copy-main ul,
  .portfolio-image-row {
    grid-template-columns: 1fr;
  }

  .portfolio-info {
    padding: 28px 22px;
  }

  .portfolio-image-row {
    padding: 0 14px;
    gap: 14px;
  }

  .portfolio-image-row img {
    height: auto;
    aspect-ratio: 1.22;
  }

  .portfolio-closing {
    padding: 34px 14px 54px;
  }

  .wp-service-detail,
  .wp-about-main,
  .wp-about-sync,
  .wp-statement-cards,
  .wp-projects,
  .wp-process-card {
    width: min(calc(100% - 28px), 430px);
    margin: 44px auto;
  }

  .wp-service-featured,
  .wp-about-main img,
  .wp-about-sync img,
  .wp-project-grid img {
    aspect-ratio: 16 / 9;
    max-height: 240px;
  }

  .wp-project-grid img {
    max-height: 220px;
  }

  .wp-service-sidebar {
    padding: 28px 20px;
  }

  .wp-service-sidebar a {
    min-height: 58px;
    padding: 0 18px;
  }

  .wp-values-grid {
    width: min(calc(100% - 28px), 430px);
    grid-template-columns: 1fr;
  }

  .wp-value-card {
    min-height: 220px;
    padding: 64px 28px 32px;
  }

  .wp-process-card {
    border-radius: 18px;
    padding: 28px 20px;
  }

  .topbar {
    position: sticky;
    width: 100%;
    max-width: 100vw;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 14px 18px;
  }

  .menu-button {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
  }

  .brand img {
    width: 154px;
  }

  .home-hero-exact img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: 58% top;
    transform: none;
  }

  .info-bar {
    font-size: 12px;
  }

  .info-bar > div {
    width: min(calc(100% - 28px), 100%);
  }

  .wp-page-hero {
    min-height: 200px;
    padding: 46px 18px;
  }

  .wp-page-hero h1 {
    font-size: clamp(2.15rem, 10vw, 3.15rem);
  }

  .wp-service-panel {
    grid-template-columns: 1fr;
    width: min(calc(100% - 28px), 430px);
    margin-left: auto;
    margin-right: auto;
  }

  .wp-service-tile {
    border-right: 0;
  }

  .wp-service-tile:last-child {
    border-bottom: 0;
  }

  .wp-service-tile a {
    min-height: 260px;
  }

  .home-about-exact,
  .home-partners-exact,
  .home-blog-exact,
  .home-contact-exact {
    width: 100vw;
    max-width: 100vw;
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
    overflow: hidden;
  }

  .home-about-exact {
    display: block;
    margin-top: 44px;
    margin-bottom: 56px;
  }

  .home-about-copy,
  .home-about-media,
  .home-dei-copy,
  .home-dei-media,
  .home-contact-form,
  .home-contact-image {
    min-width: 0;
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
  }

  .home-about-copy p,
  .home-dei-copy p,
  .home-difference-copy p,
  .home-contact-form p {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .home-about-media {
    margin-top: 36px;
  }

  .home-dei-exact,
  .home-testimonial-exact {
    padding: 44px 20px;
  }

  .home-difference-exact {
    grid-template-columns: 1fr;
  }

  .home-difference-image {
    min-height: 180px;
    clip-path: none;
  }

  .home-difference-copy {
    padding: 30px 20px;
  }

  .home-wingman-exact {
    height: 755px;
    min-height: 755px;
    padding: 0;
  }

  .home-round-link {
    width: 200px;
  }

  .home-blog-grid {
    grid-template-columns: 1fr;
  }

  .home-blog-body {
    padding: 30px 24px;
  }

  .home-blog-card img,
  .blog-card img {
    height: 220px;
  }

  .home-blog-cat {
    left: 24px;
    max-width: calc(100% - 48px);
  }

  .home-contact-tab {
    min-width: 0;
    width: 100%;
    margin-top: 0;
    margin-bottom: 38px;
  }

  .home-contact-fields {
    grid-template-columns: 1fr;
  }

  .home-contact-image {
    order: -1;
  }

  .home-contact-image img {
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 0;
    max-height: 260px;
  }

  .home-contact-form h2 {
    font-size: clamp(2.15rem, 11vw, 3rem);
  }
}

/* WordPress parity pages */
.wp-service-panel {
  position: relative;
  isolation: isolate;
  margin: 40px 0 0;
  min-height: 480px;
  background-color: #151724;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.wp-service-panel::before,
.wp-service-panel::after {
  content: none;
}

.wp-service-panel::before {
  content: none;
}

.wp-service-panel::after {
  content: none;
}

.wp-page-hero.blog-hub-hero,
.wp-page-hero.article-hub-hero {
  min-height: 300px;
}

.wp-service-tile {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 480px;
  padding: 40px 15px 28px;
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.wp-page-hero.services-hero {
  min-height: 270px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.wp-service-tile::after {
  background: rgba(20, 23, 38, 0.28);
}

.wp-service-tile.active::after {
  opacity: 1;
}

.wp-service-number {
  position: static;
  align-self: flex-end;
  transform: none;
}

.wp-service-tile-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.wp-service-summary {
  max-height: 0;
  opacity: 0;
  transition: max-height 0.2s ease, opacity 0.2s ease, margin 0.2s ease;
}

.wp-service-tile.active .wp-service-summary {
  max-height: 9em;
  margin-top: 8px;
  opacity: 1;
}

.wp-service-tile.active .wp-service-link {
  color: var(--orange);
}

.wp-service-tile .wp-service-link {
  min-height: 0;
  margin-top: 28px;
  padding: 0;
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
}

.wp-page-hero.service-hero h1 {
  max-width: none;
  margin-inline: auto;
}

.wp-about-main {
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
}

.wp-about-sync {
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
}

.wp-about-main img {
  aspect-ratio: 435 / 570;
  max-height: 570px;
}

.wp-about-sync img {
  aspect-ratio: 553 / 525;
  max-height: 525px;
}

.wp-statement-cards article {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.wp-statement-cards img {
  width: 100px;
  height: 100px;
}

.wp-statement-cards p {
  max-width: 650px;
  margin: 0 auto;
  color: #696969;
  font-size: 1.05rem;
  line-height: 1.8;
}

.wp-values-band > h2 {
  margin: 0 auto 88px;
  color: #111;
  text-align: center;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 900;
}

.wp-industries-accent {
  height: 40px;
  background:
    linear-gradient(45deg, transparent 0 19%, rgba(255,255,255,.12) 19% 21%, transparent 21%),
    #263d88;
}

.wp-industries-intro {
  width: min(calc(100% - 72px), 1760px);
  margin: 68px auto 70px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  gap: clamp(42px, 6vw, 90px);
  align-items: center;
}

.wp-industries-intro h1,
.wp-industry-sectors h2 {
  margin: 0 0 24px;
  color: #090b10;
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 1.08;
  font-weight: 900;
}

.wp-industries-intro p,
.wp-industry-sectors p {
  color: #666;
  font-size: clamp(1rem, 1.18vw, 1.18rem);
  line-height: 1.8;
}

.wp-industries-intro img {
  width: 100%;
  aspect-ratio: 553 / 525;
  height: auto;
  object-fit: cover;
  border-radius: 18px;
}

.wp-industry-sectors {
  padding-top: 56px;
  border-top: 64px solid #f3f4f7;
}

.wp-industry-sectors article {
  display: flow-root;
  width: min(calc(100% - 72px), 1760px);
  margin: 0 auto;
  padding: 0 0 72px;
  border-bottom: 64px solid #f3f4f7;
}

.wp-industry-sectors article + article {
  padding-top: 56px;
}

.wp-industry-sectors img {
  width: min(49%, 900px);
  height: auto;
  max-height: 610px;
  object-fit: cover;
}

.wp-industry-sectors .image-right img {
  float: right;
  margin: 0 0 22px clamp(34px, 4vw, 68px);
}

.wp-industry-sectors .image-left img {
  float: left;
  margin: 0 clamp(34px, 4vw, 68px) 22px 0;
}

.wp-faq-page {
  width: min(calc(100% - 72px), 1420px);
  margin: 78px auto 100px;
}

.wp-faq-page > h2 {
  margin: 0 0 44px;
  color: #0b0d13;
  text-align: center;
  font-size: clamp(2.4rem, 4.5vw, 4.5rem);
  font-weight: 900;
}

.wp-faq-page details {
  border-bottom: 1px solid #d8dde5;
}

.wp-faq-page summary {
  position: relative;
  padding: 24px 54px 24px 24px;
  color: #10131b;
  cursor: pointer;
  list-style: none;
  font-size: 1.1rem;
  font-weight: 800;
}

.wp-faq-page summary::-webkit-details-marker {
  display: none;
}

.wp-faq-page summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  color: var(--orange);
  font-size: 1.6rem;
}

.wp-faq-page details[open] summary {
  color: #fff;
  background: var(--blue);
}

.wp-faq-page details[open] summary::after {
  content: "−";
  color: #fff;
}

.wp-faq-page details p {
  margin: 0;
  padding: 25px 28px 30px;
  color: #666;
  background: #f7f8fa;
}

.wp-archive-grid {
  width: min(calc(100% - 54px), 1385px);
  margin: 80px auto 100px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 58px 32px;
}

.wp-archive-image {
  position: relative;
  display: block;
  overflow: hidden;
}

.wp-archive-image img {
  width: 100%;
  aspect-ratio: 416 / 340;
  object-fit: cover;
}

.wp-archive-image span {
  position: absolute;
  left: 20px;
  bottom: 0;
  padding: 8px 20px;
  color: #fff;
  background: var(--orange);
}

.wp-archive-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 22px 0 14px;
  color: #707070;
}

.wp-archive-meta i {
  width: 9px;
  height: 9px;
  margin: 0 5px;
  background: var(--orange);
}

.wp-archive-grid article > h2 {
  min-height: 104px;
  padding-bottom: 18px;
  border-bottom: 1px solid #dedfe3;
  color: #080a0f;
  font-size: clamp(1.45rem, 2.15vw, 2rem);
  line-height: 1.4;
}

.wp-archive-grid article > p:last-child {
  color: #696969;
  font-size: 1.02rem;
  line-height: 1.7;
}

@media (max-width: 1100px) {
  .wp-client-trust-body,
  .wp-contact-form-section {
    grid-template-columns: 1fr;
  }

  .wp-client-trust img,
  .wp-contact-form-section > img {
    width: min(100%, 680px);
  }

  .wp-contact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wp-process-intro {
    grid-template-columns: 1fr;
  }

  .wp-process-intro img {
    width: min(100%, 680px);
  }

  .wp-industries-intro,
  .wp-industry-sectors article {
    grid-template-columns: 1fr;
  }

  .wp-industry-sectors article:nth-child(even) > div {
    order: 0;
  }

  .wp-archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .wp-page-hero.services-hero {
    min-height: 200px;
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .partner-slide {
    flex-basis: calc(100% / 3);
  }

  .partner-arrows {
    display: none;
  }

  .home-partners-heading h2 {
    margin-bottom: 20px;
  }

  .wp-service-panel {
    width: 100%;
    grid-template-columns: 1fr;
    margin: 30px 0 0;
  }

  .wp-service-tile {
    min-height: 270px;
    padding: 30px 22px;
  }

  .wp-service-summary {
    max-height: 9em;
    margin-top: 8px;
    opacity: 1;
  }

  .wp-about-main,
  .wp-about-sync,
  .wp-statement-cards,
  .wp-projects,
  .wp-process-intro,
  .wp-industries-intro,
  .wp-industry-sectors article,
  .wp-faq-page {
    width: min(calc(100% - 28px), 520px);
  }

  .wp-about-main,
  .wp-about-sync {
    grid-template-columns: 1fr;
  }

  .wp-about-main img,
  .wp-about-sync img {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 280px;
    object-fit: cover;
  }

  .wp-statement-cards article {
    min-height: 360px;
  }

  .wp-process-intro {
    margin: 44px auto 64px;
  }

  .candidate-focus-form,
  .wp-client-trust,
  .wp-client-inquiry {
    width: min(calc(100% - 28px), 520px);
  }

  .wp-client-trust {
    margin-top: 44px;
  }

  .wp-client-trust-body {
    grid-template-columns: 1fr;
  }

  .wp-client-trust img {
    order: -1;
  }

  .wp-client-inquiry .client-form-media {
    order: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    max-height: 380px;
  }

  .wp-contact-cards {
    width: min(calc(100% - 28px), 520px);
    grid-template-columns: 1fr;
    margin: 28px auto 42px;
  }

  .wp-contact-cards article {
    min-height: 240px;
  }

  .wp-contact-form-section {
    grid-template-columns: 1fr;
    padding: 42px 14px;
  }

  .wp-contact-form-section form > div {
    grid-template-columns: 1fr;
  }

  .wp-contact-form-section label.full {
    grid-column: auto;
  }

  .wp-contact-form-section > img {
    min-height: 0;
    max-height: 520px;
  }

  .wp-contact-map {
    height: 420px;
  }

  .wp-process-steps {
    padding: 64px 14px 70px;
  }

  .wp-process-steps article {
    margin-bottom: 86px;
    padding: 64px 22px 32px;
  }

  .wp-process-steps article > span {
    top: -56px;
    left: 20px;
    font-size: 4.6rem;
  }

  .wp-process-steps ul {
    margin-left: 24px;
  }

  .wp-industries-intro {
    grid-template-columns: 1fr;
    margin: 44px auto 64px;
  }

  .wp-industry-sectors {
    padding-top: 28px;
    border-top-width: 28px;
  }

  .wp-industry-sectors article {
    padding: 20px 0 44px;
    border-bottom-width: 28px;
  }

  .wp-industry-sectors article + article {
    padding-top: 36px;
  }

  .wp-industry-sectors img {
    float: none !important;
    width: 100%;
    margin: 0 0 26px !important;
    min-height: 260px;
  }

  .wp-faq-page {
    margin: 48px auto 64px;
  }

  .wp-faq-page summary {
    padding-left: 16px;
  }

  .wp-archive-grid {
    width: min(calc(100% - 28px), 520px);
    grid-template-columns: 1fr;
    margin: 48px auto 70px;
  }

  .wp-archive-grid article > h2 {
    min-height: 0;
  }
}

@media (max-width: 575px) {
  .partner-slide {
    flex-basis: 50%;
    padding-inline: 14px;
  }

  .home-marquee-group img {
    width: 40px;
  }
}
