:root {
  --pink: #c52e5b;
  --purple: #662766;
  --ink: #201d1f;
  --muted: #aaa8a9;
}

.whatsapp-float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 1100;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  background: linear-gradient(145deg, #2ee66f, #18b957);
  color: #fff;
  box-shadow: 0 10px 28px rgba(20, 160, 76, .34), 0 4px 12px rgba(0, 0, 0, .16);
  font-size: 2.15rem;
  isolation: isolate;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.whatsapp-float::before {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(37, 211, 102, .48);
  border-radius: inherit;
  content: "";
  animation: whatsapp-pulse 2.2s ease-out infinite;
}

.whatsapp-float::after {
  position: absolute;
  right: calc(100% + 12px);
  padding: 8px 13px;
  border-radius: 9px;
  background: #fff;
  color: var(--purple);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .14);
  content: "Chat with us";
  font-size: .72rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: opacity .2s ease, transform .2s ease;
}

.whatsapp-float i { line-height: 1; }

.whatsapp-float:hover {
  background: linear-gradient(145deg, #31ea73, #149e49);
  color: #fff;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 14px 32px rgba(20, 160, 76, .4), 0 6px 14px rgba(0, 0, 0, .18);
}

.whatsapp-float:hover::after,
.whatsapp-float:focus-visible::after { opacity: 1; transform: translateX(0); }

.whatsapp-float:focus-visible {
  outline: 3px solid rgba(37, 211, 102, .4);
  outline-offset: 3px;
}

@keyframes whatsapp-pulse {
  0% { opacity: .75; transform: scale(.9); }
  75%, 100% { opacity: 0; transform: scale(1.42); }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float::before { animation: none; }
  .main-nav.is-floating { animation: none; }
}

@media (max-width: 539px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
    font-size: 1.9rem;
  }

  .whatsapp-float::after { display: none; }
}

.main-nav.is-floating {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 1001;
  width: min(calc(100% - 48px), 1100px);
  margin: 0;
  padding: 14px 24px;
  border: 1px solid rgba(105, 39, 103, .1);
  border-radius: 999px;
  background: rgba(255, 255, 255, .96);
  color: var(--purple);
  box-shadow: 0 14px 38px rgba(44, 22, 43, .16);
  transform: translateX(-50%);
  animation: floating-nav-enter .68s cubic-bezier(.16, 1, .3, 1) both;
  will-change: opacity, transform;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.main-nav.is-floating .main-nav__links > a::after,
.main-nav.is-floating .main-nav__item--dropdown > a::after { background: var(--pink); }
.main-nav.is-floating .main-nav__cta { color: #fff; }
.main-nav.is-floating .main-nav__cta:hover { background: var(--purple); color: #fff; }

@keyframes floating-nav-enter {
  from { opacity: 0; transform: translate(-50%, -42px) scale(.97); }
  65% { opacity: 1; }
  to { opacity: 1; transform: translate(-50%, 0) scale(1); }
}

@media (max-width: 539px) {
  .main-nav.is-floating {
    top: 10px;
    grid-template-columns: 1fr auto;
    width: calc(100% - 24px);
    padding: 9px 14px;
    border-radius: 22px;
  }

  .main-nav.is-floating .main-nav__logo { margin-left: 0; }
  .main-nav.is-floating .main-nav__logo img { width: 118px; }
  .main-nav.is-floating .main-nav__toggle { color: var(--purple); }
}

* { box-sizing: border-box; }

html, body { margin: 0; min-height: 100%; }
html { width: 100%; max-width: 100%; scroll-behavior: smooth; overflow-x: hidden; }

body {
  position: relative;
  width: 100%;
  max-width: 100%;
  background: #fff;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
.mobile-copy-break { display: none; }

.site-hero { color: #fff; background: #fff; }
.candidates-hero .hero-shell { min-height: 500px; }
.companies-hero .hero-shell { min-height: 500px; }
.utility-bar { height: 30px; background: #c72e5b; font-size: .7rem; }
.utility-bar__inner { display: flex; width: min(100% - 40px, 1080px); height: 100%; margin: auto; align-items: center; justify-content: space-between; }
.utility-bar__inner div { display: flex; gap: 25px; }
.utility-bar__inner div:last-child { gap: 12px; }

.hero-shell {
  position: relative;
  min-height: 875px;
  overflow: visible;
  border-radius: 0 0 53px 53px;
  background: linear-gradient(180deg, #642663 0%, #86285f 54%, #c0305b 100%);
}

.main-nav { position: relative; z-index: 5; display: grid; grid-template-columns: 175px 1fr 110px; width: min(100% - 48px, 1100px); margin: auto; padding-top: 35px; align-items: center; }
.main-nav__logo img { display: block; width: 155px; height: auto; }
.main-nav__links { display: flex; justify-content: center; gap: 18px; font-size: .76rem; }
.main-nav__links a, .main-nav__cta { transition: opacity .35s ease, transform .35s cubic-bezier(.22, 1, .36, 1), background-color .35s ease, color .35s ease, box-shadow .35s ease; }
.main-nav__links a:hover { opacity: .68; }
.main-nav__links > a,
.main-nav__item--dropdown > a { position: relative; display: inline-flex; align-items: center; gap: 5px; white-space: nowrap; }
.main-nav__links > a::after,
.main-nav__item--dropdown > a::after { position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; border-radius: 2px; background: #fff; content: ""; opacity: 0; transform: scaleX(.35); transition: opacity .2s ease, transform .2s ease; }
.main-nav__links > a:hover::after,
.main-nav__links > a:focus-visible::after,
.main-nav__links > a.is-current::after,
.main-nav__item--dropdown > a:hover::after,
.main-nav__item--dropdown > a:focus-visible::after,
.main-nav__item--dropdown > a.is-current::after { opacity: 1; transform: scaleX(1); }
.main-nav__item--dropdown { position: relative; }
.main-nav__item--dropdown > a i { font-size: .55rem; transition: transform .2s ease; }
.main-nav__submenu { position: absolute; top: calc(100% + 17px); left: 50%; display: grid; width: max-content; min-width: 170px; padding: 8px; border: 1px solid rgba(102, 39, 102, .13); border-radius: 14px; background: #fff; color: var(--purple); opacity: 0; visibility: hidden; transform: translate(-50%, -8px); box-shadow: 0 16px 35px rgba(37, 12, 36, .18); transition: opacity .2s ease, visibility .2s ease, transform .2s ease; }
.main-nav__submenu::before { position: absolute; right: 0; bottom: 100%; left: 0; height: 18px; content: ""; }
.main-nav__submenu a { padding: 10px 12px; border-radius: 9px; font-size: .72rem; }
.main-nav__submenu a:hover,
.main-nav__submenu a:focus-visible { background: #f8edf2; opacity: 1; }
.main-nav__item--dropdown:hover .main-nav__submenu,
.main-nav__item--dropdown:focus-within .main-nav__submenu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.main-nav__item--dropdown:hover > a i,
.main-nav__item--dropdown:focus-within > a i { transform: rotate(180deg); }
.main-nav__cta { border-radius: 999px; background: #ce3861; padding: 11px 21px; text-align: center; font-size: .74rem; }
.main-nav__cta:hover { background: #fff; color: var(--purple); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(0, 0, 0, .16); }
.main-nav__toggle, .main-nav__mobile { display: none; }

.hero-copy { position: relative; z-index: 3; margin: 95px auto 0; padding: 0 20px; text-align: center; }
.hero-copy .hero-copy__eyebrow { display: flex; margin: 0 0 9px; align-items: center; justify-content: center; gap: 12px; color: rgba(255, 255, 255, .78); font-size: 1rem; font-weight: 500; letter-spacing: 0; }
.hero-copy .hero-copy__eyebrow::before,
.hero-copy .hero-copy__eyebrow::after { width: 6px; height: 6px; border-radius: 50%; background: #c7335d; content: ""; }
.hero-copy h1 { margin: 0; font-size: clamp(2.5rem, 4.3vw, 3.25rem); line-height: 1.03; letter-spacing: -.035em; }
.hero-copy h1 span { color: #ce315d; }
.hero-copy > p:last-child { margin-top: 9px; color: rgba(255, 255, 255, .76); font-size: 1rem; font-weight: 400; line-height: 1.15; }
.hero-team { position: absolute; z-index: 2; bottom: -118px; left: 50%; width: 1650px; height: auto; transform: translateX(-50%); pointer-events: none; }
.hero-badge {
  position: absolute;
  z-index: 5;
  bottom: -90px;
  left: 50%;
  display: block;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  transform: translateX(-50%);
  animation: hero-badge-spin 12s linear infinite;
  pointer-events: none;
}

@keyframes hero-badge-spin {
  to { transform: translateX(-50%) rotate(360deg); }
}

.hero-proof { position: absolute; z-index: 4; top: 402px; display: flex; align-items: center; }
.hero-proof--award { top: 502px; left: max(calc(50% - 535px), 0px); gap: 10px; font-size: .84rem; }
.hero-proof--award strong { font-size: .95rem; }
.award-icon { display: grid; flex: 0 0 175px; width: 175px; height: 175px; place-items: center; color: #fff; }
.award-icon::before { content: "\f5a2"; font-family: "Font Awesome 6 Free"; font-size: 160px; font-style: normal; font-weight: 900; line-height: 1; }
.award-icon svg { display: none; }
.hero-proof--award .fa-medal {
  display: grid;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  place-items: center;
  font-size: 30px;
  line-height: 1;
}
.hero-proof--award .fa-medal svg { display: none; }
.award-star, .award-laurel ellipse { fill: currentColor; }
.award-shield { fill: none; stroke: currentColor; stroke-width: 10; stroke-linejoin: miter; }
.award-laurel path { fill: none; stroke: currentColor; stroke-width: 2.8; stroke-linecap: round; }
.hero-proof--companies { top: 517px; right: max(calc(50% - 535px), 20px); flex-direction: column; align-items: center; }
.company-count-row { display: flex; align-items: center; }
.hero-proof--companies strong { display: block; margin-left: 7px; font-size: 43px; font-weight: 500; line-height: .95; }
.hero-proof--companies > p { margin-top: 6px; font-size: 18px; font-weight: 400; line-height: 1; }
.avatar-stack { display: flex; }
.avatar-stack img { display: block; width: 108px; height: auto; border: 0; background: transparent; object-fit: contain; }

.placements {
  width: min(100% - 40px, 1100px);
  margin: 0 auto;
  padding: 100px 0 26px;
}

.placements__intro {
  display: grid;
  grid-template-columns: 1fr 1.18fr;
  gap: 62px;
  align-items: start;
  margin-bottom: 27px;
}

.placement-updates-intro { margin-top: 75px; }

h1, h2, h3, p { margin: 0; }

.placements h1 {
  color: var(--pink);
  font-size: clamp(2.7rem, 4.25vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: .92;
}

.placements h1 span { display: block; color: var(--purple); }
.candidates-page .placements h1 .placement-title-primary { color: var(--pink); white-space: nowrap; }

.placements__copy { padding-top: 10px; }
.placements__copy h2 { font-size: 1.18rem; font-weight: 500; margin-bottom: 5px; }
.placements__copy p { max-width: 500px; color: #b4b2b3; font-size: .83rem; line-height: 1.18; }

.success-stories {
  overflow: hidden;
}

.candidate-story-feature { padding: 10px 0 100px; }
.candidate-story-feature__intro { max-width: 760px; margin: 0 auto 42px; text-align: center; }
.candidate-story-feature__eyebrow { margin-bottom: 9px; color: var(--purple); font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.candidate-story-feature__intro h2 { margin-bottom: 18px; color: var(--purple); font-size: clamp(2.2rem, 4.5vw, 3.65rem); line-height: .94; letter-spacing: -.045em; }
.candidate-story-feature__intro h2 span { color: var(--pink); }
.candidate-story-feature__intro > p:not(.candidate-story-feature__eyebrow) { max-width: 690px; margin: 0 auto 10px; color: #8f8b8e; font-size: .94rem; line-height: 1.55; }
.candidate-story-feature__intro strong { color: var(--ink); }
.candidate-story-feature__card { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(280px, .92fr); max-width: 920px; min-height: 420px; margin: 0 auto; overflow: hidden; border-radius: 30px; background: #fbf0f4; box-shadow: 0 20px 55px rgba(77, 35, 74, .1); }
.candidate-story-feature__image { min-height: 420px; background: #f2e5eb; }
.candidate-story-feature__image img { display: block; width: 100%; height: 100%; object-fit: cover; }
.candidate-story-feature__content { display: flex; padding: clamp(34px, 5vw, 62px); flex-direction: column; justify-content: center; }
.candidate-story-feature__label { margin-bottom: 16px; color: var(--pink); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.candidate-story-feature__content h3 { color: var(--purple); font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1; letter-spacing: -.04em; }
.candidate-story-feature__role { margin-top: 10px; color: var(--ink); font-size: 1rem; font-weight: 700; }
.candidate-story-feature__location { margin-top: 8px; color: var(--pink); font-size: .86rem; font-weight: 700; }
.candidate-story-feature__location i { margin-right: 4px; }
.candidate-story-feature blockquote { margin: 28px 0 0; padding-left: 20px; border-left: 3px solid var(--pink); color: #716b6f; font-size: 1rem; font-style: italic; line-height: 1.55; }

@media (max-width: 700px) {
  .placement-updates-intro { margin-top: 45px; }
  .candidate-story-feature { padding: 0 0 70px; }
  .candidate-story-feature__intro { margin-bottom: 30px; }
  .candidate-story-feature__intro > p:not(.candidate-story-feature__eyebrow) { font-size: .84rem; line-height: 1.5; }
  .candidate-story-feature__card { grid-template-columns: 1fr; width: min(100%, 520px); min-height: 0; border-radius: 24px; }
  .candidate-story-feature__image { min-height: 280px; aspect-ratio: 4 / 3; }
  .candidate-story-feature__content { padding: 32px 26px 38px; }
  .candidate-story-feature blockquote { margin-top: 22px; font-size: .9rem; }
}

.success-stories__track {
  --story-gap: 19px;
  display: flex;
  width: 100%;
  gap: var(--story-gap);
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  will-change: transform;
}

.success-stories__track.is-dragging { cursor: grabbing; }
.success-stories__track img { -webkit-user-drag: none; }

/* Candidates page: show every placement card in a responsive grid. */
.candidates-page .success-stories { overflow: visible; }
.candidates-page .success-stories__track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  cursor: default;
  touch-action: auto;
}
.candidates-page .student-card { min-width: 0; }
.candidates-page .placements { padding-top: 80px; }
.candidates-page .why-placedex { padding-top: 80px; }
.candidates-page .success-stories__track > .student-card { display: none; }
.candidates-page .success-stories__track > .student-card.is-page-visible { display: block; }
.placement-pagination { display: none; }
.candidates-page .placement-pagination { display: grid; margin: 52px 0 18px; justify-items: center; gap: 8px; }
.placement-pagination__controls { display: flex; align-items: center; gap: 14px; }
.placement-pagination button { display: grid; width: 32px; height: 32px; padding: 0; place-items: center; border: 0; border-radius: 50%; background: transparent; color: var(--purple); font: inherit; font-size: .9rem; cursor: pointer; }
.placement-pagination button.is-active { background: var(--pink); color: #fff; }
.placement-pagination button:not(:disabled):hover { background: rgba(105, 39, 103, .1); color: var(--pink); }
.placement-pagination button:disabled { color: rgba(197, 46, 91, .28); cursor: default; }
.placement-pagination__status { color: var(--purple); font-size: .8rem; }

@media (min-width: 540px) and (max-width: 1024px) {
  .candidates-page .student-card img {
    aspect-ratio: 4 / 5;
    margin-bottom: 9px;
  }
}

@media (max-width: 539px) {
  .candidates-page .success-stories__track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 16px;
  }
  .candidates-page .student-card h3,
  .candidates-page .student-card strong,
  .candidates-page .student-card p {
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .candidates-page .student-card h3 { font-size: .9rem; }
  .candidates-page .student-card strong { font-size: .65rem; }
  .candidates-page .student-card p { font-size: .62rem; }
  .candidates-page .placement-pagination__controls { max-width: 100%; gap: 5px; overflow-x: auto; }
  .candidates-page .placement-pagination button { flex: 0 0 28px; width: 28px; height: 28px; font-size: .75rem; }
}


.student-card { flex: 0 0 calc((100% - 76px) / 5); min-width: 0; text-align: center; }

.student-card img {
  display: block;
  width: 100%;
  aspect-ratio: 164 / 250;
  margin-bottom: 13px;
  border-radius: 999px 999px 44% 44%;
  object-fit: cover;
  object-position: center;
}

.student-card h3 { font-size: 1.06rem; line-height: 1; white-space: nowrap; }
.student-card strong { display: block; margin-top: 5px; font-size: .72rem; line-height: 1.1; white-space: nowrap; opacity: .62; }
.student-card p { margin-top: 3px; color: #aaa7a8; font-size: .7rem; line-height: 1.1; white-space: nowrap; }

.brands {
  position: relative;
  margin: 95px 0 50px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.brands__track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: logo-scroll 55s linear infinite;
}

.brands:hover .brands__track { animation-play-state: paused; }

.company-partners { width: min(calc(100% - 80px), 1080px); margin: 0 auto; padding: 76px 0 86px; }
.company-partners__header { max-width: 650px; margin: 0 auto 38px; text-align: center; }
.company-partners__header > p:first-child { margin-bottom: 4px; color: var(--purple); font-size: 1rem; }
.company-partners__header h1 { margin: 0 0 10px; color: var(--purple); font-size: clamp(2.25rem, 4.2vw, 3.3rem); line-height: .9; letter-spacing: -.035em; }
.company-partners__header h1 span { display: block; color: var(--pink); }
.company-partners__header > p:last-child { color: #888487; font-size: .76rem; line-height: 1.25; }
.company-partners__grid { display: grid; grid-template-columns: repeat(6, 1fr); margin: 0; padding: 0; gap: 12px; list-style: none; }
.company-partners__grid li { display: grid; min-height: 68px; padding: 10px; place-items: center; border: 1px solid rgba(67, 59, 63, .34); border-radius: 11px; }
.company-partners__grid img { display: block; width: 100%; max-width: 110px; max-height: 35px; object-fit: contain; filter: grayscale(1); opacity: .66; transition: filter .25s ease, opacity .25s ease, transform .25s ease; }
.company-partners__grid li:hover img { filter: grayscale(0); opacity: 1; transform: scale(1.08); }
.company-partners__mobile-slider { display: none; }

.companies-benefits { width: min(calc(100% - 80px), 1080px); margin: 0 auto; padding: 86px 0 70px; }
.companies-benefits__header { max-width: 720px; margin: 0 auto 42px; text-align: center; }
.companies-benefits__header > p:first-child { margin: 0 0 8px; color: var(--purple); font-size: .95rem; }
.companies-benefits__header h2 { margin: 0 0 14px; color: var(--purple); font-size: clamp(2.35rem, 4.5vw, 3.55rem); line-height: .94; letter-spacing: -.04em; }
.companies-benefits__header h2 span { display: block; color: var(--pink); }
.companies-benefits__header > p:last-child { max-width: 590px; margin: 0 auto; color: #8e898d; font-size: .82rem; line-height: 1.4; }
.companies-benefits__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 0; padding: 0; gap: 14px; list-style: none; }
.companies-benefits__grid li { min-height: 170px; padding: 25px 22px; border: 1px solid #ebe4e8; border-radius: 18px; background: #fff; box-shadow: 0 12px 30px rgba(57, 38, 54, .055); transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease; }
.companies-benefits__grid li:hover { border-color: rgba(197, 46, 91, .24); box-shadow: 0 16px 34px rgba(57, 38, 54, .085); transform: translateY(-4px); }
.companies-benefits__grid li > span { display: grid; width: 42px; height: 42px; margin-bottom: 28px; place-items: center; border-radius: 11px; background: #f9edf2; color: var(--pink); font-size: 1rem; }
.companies-benefits__grid h3 { margin: 0; color: var(--purple); font-size: 1rem; line-height: 1.15; }

@media (max-width: 900px) {
  .companies-benefits { width: min(calc(100% - 48px), 720px); padding: 72px 0 82px; }
  .companies-benefits__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 539px) {
  .companies-benefits { width: min(calc(100% - 32px), 420px); padding: 60px 0 70px; }
  .companies-benefits__header { margin-bottom: 30px; }
  .companies-benefits__header h2 { font-size: clamp(2rem, 10vw, 2.7rem); }
  .companies-benefits__grid { grid-template-columns: 1fr; gap: 12px; }
  .companies-benefits__grid li { display: grid; grid-template-columns: 44px 1fr; min-height: 84px; padding: 19px; align-items: center; gap: 14px; }
  .companies-benefits__grid li > span { width: 40px; height: 40px; margin: 0; }
}

.staffing-solutions { width: min(calc(100% - 80px), 1080px); margin: 0 auto; padding: 88px 0 104px; }
.specialists + .staffing-solutions { padding-top: 140px; }
.staffing-solutions__header { max-width: 700px; margin: 0 auto 44px; text-align: center; }
.staffing-solutions__header > p { margin: 0 0 8px; color: var(--purple); font-size: .95rem; }
.staffing-solutions__header h2 { margin: 0; color: var(--purple); font-size: clamp(2.35rem, 4.5vw, 3.55rem); line-height: .94; letter-spacing: -.04em; }
.staffing-solutions__header h2 span { display: block; color: var(--pink); }
.staffing-solutions__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.staffing-solution-card { position: relative; min-height: 290px; overflow: hidden; padding: 30px; border: 1px solid #e9e2e7; border-radius: 22px; background: #fff; box-shadow: 0 14px 34px rgba(57, 38, 54, .06); transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease; }
.staffing-solution-card:hover { border-color: rgba(102, 39, 102, .22); box-shadow: 0 18px 38px rgba(57, 38, 54, .09); transform: translateY(-5px); }
.staffing-solution-card__number { position: absolute; top: 24px; right: 26px; color: rgba(102, 39, 102, .16); font-size: 2.4rem; font-weight: 700; line-height: 1; }
.staffing-solution-card__icon { display: grid; width: 48px; height: 48px; margin-bottom: 62px; place-items: center; border-radius: 13px; background: #f9edf2; color: var(--pink); font-size: 1.05rem; }
.staffing-solution-card h3 { max-width: 240px; margin: 0 0 12px; color: var(--purple); font-size: 1.25rem; line-height: 1.05; }
.staffing-solution-card p { margin: 0; color: #858084; font-size: .78rem; line-height: 1.45; }
.staffing-solution-card--featured { border-color: transparent; background: var(--purple); }
.staffing-solution-card--featured .staffing-solution-card__number { color: rgba(255, 255, 255, .15); }
.staffing-solution-card--featured .staffing-solution-card__icon { background: var(--pink); color: #fff; }
.staffing-solution-card--featured h3 { color: #fff; }
.staffing-solution-card--featured p { color: rgba(255, 255, 255, .68); }

@media (max-width: 900px) {
  .staffing-solutions { width: min(calc(100% - 48px), 720px); padding: 72px 0 86px; }
  .staffing-solutions__grid { grid-template-columns: 1fr; }
  .staffing-solution-card { min-height: 220px; }
  .staffing-solution-card__icon { margin-bottom: 38px; }
}

@media (max-width: 539px) {
  .staffing-solutions { width: min(calc(100% - 32px), 420px); padding: 60px 0 72px; }
  .staffing-solutions__header { margin-bottom: 30px; }
  .staffing-solutions__header h2 { font-size: clamp(2rem, 10vw, 2.7rem); }
  .staffing-solution-card { min-height: 210px; padding: 24px; }
  .staffing-solution-card__number { top: 21px; right: 22px; font-size: 2rem; }
  .staffing-solution-card__icon { width: 44px; height: 44px; margin-bottom: 32px; }
}

.employer-story { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(240px, .65fr); width: min(calc(100% - 32px), 1080px); margin: 90px auto; padding: clamp(48px, 6vw, 78px); align-items: center; gap: clamp(38px, 5vw, 68px); border-radius: 34px; background: var(--purple); color: #fff; }
.employer-story__video { position: relative; overflow: hidden; border-radius: 18px; background: #40183f; aspect-ratio: 16 / 9; }
.employer-story__video iframe { display: block; width: 100%; height: 100%; border: 0; }
.employer-story__video-arrow { position: absolute; z-index: 2; top: 50%; display: grid; width: 34px; height: 34px; padding: 0; place-items: center; border: 0; border-radius: 50%; background: rgba(255, 255, 255, .9); color: var(--purple); box-shadow: 0 4px 14px rgba(0, 0, 0, .2); cursor: pointer; transform: translateY(-50%); transition: background .2s ease, transform .2s ease; }
.employer-story__video-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.employer-story__video-arrow--previous { left: 12px; }
.employer-story__video-arrow--next { right: 12px; }
.employer-story__video-dots { position: absolute; z-index: 2; right: 0; bottom: 10px; left: 0; display: flex; justify-content: center; gap: 7px; pointer-events: none; }
.employer-story__video-dots button { width: 8px; height: 8px; padding: 0; border: 1px solid #fff; border-radius: 50%; background: rgba(255, 255, 255, .35); cursor: pointer; pointer-events: auto; }
.employer-story__video-dots button.is-active { background: #fff; }
.employer-story__content > p:first-child { margin: 0 0 8px; color: rgba(255, 255, 255, .82); font-size: .78rem; }
.employer-story__content h2 { margin: 0 0 15px; font-size: clamp(2rem, 3.4vw, 3rem); font-weight: 500; line-height: .92; letter-spacing: -.035em; }
.employer-story__content h2 span { display: block; color: var(--pink); }
.employer-story__content > p:last-child { max-width: 310px; margin: 0; color: rgba(255, 255, 255, .75); font-size: .8rem; line-height: 1.35; }

@media (max-width: 767px) {
  .employer-story { grid-template-columns: 1fr; width: min(calc(100% - 32px), 600px); margin: 68px auto; padding: 28px; gap: 30px; border-radius: 26px; }
  .employer-story__content { text-align: center; }
  .employer-story__content > p:last-child { margin-right: auto; margin-left: auto; }
}

@media (max-width: 420px) {
  .employer-story { width: calc(100% - 24px); padding: 20px 20px 28px; border-radius: 22px; }
  .employer-story__video { border-radius: 14px; }
  .employer-story__content h2 { font-size: 2rem; }
}

.journey { width: min(calc(100% - 48px), 1100px); margin: 0 auto; padding: 72px 0 86px; }
.journey__header { margin-bottom: 46px; text-align: center; }
.journey__header > p:first-child { margin-bottom: 5px; color: var(--purple); font-size: 1.35rem; }
.journey__header h2 { margin: 0 0 10px; color: var(--pink); font-size: clamp(2.8rem, 5vw, 4rem); line-height: .95; letter-spacing: -.035em; }
.journey__header > p:last-child { color: #aaa7a8; font-size: 1rem; line-height: 1.2; }
.journey__paths { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(38px, 6vw, 76px); }
.journey-card { display: grid; grid-template-columns: .95fr 1.05fr; min-width: 0; align-items: center; gap: 10px; }
.journey--text-only .journey-card { grid-template-columns: 1fr; }
.journey-card__eyebrow { display: inline-block; min-width: 150px; margin-bottom: 20px; padding: 7px 18px; border-radius: 999px; background: #fceff3; color: var(--pink); font-size: .85rem; text-align: center; }
.journey-card h3 { margin: 0 0 10px; color: var(--ink); font-size: 1.42rem; font-weight: 500; line-height: .98; }
.journey-card__title--two-lines { white-space: nowrap; }
.journey-card__content > p:not(.journey-card__eyebrow) { margin-bottom: 24px; color: #b4b2b3; font-size: .82rem; line-height: 1.18; }
.journey-card img { display: block; width: 95%; max-width: none; height: auto; justify-self: center; }
.journey-card__button { display: inline-block; min-width: 116px; padding: 9px 18px; border-radius: 999px; color: #fff; font-size: .72rem; text-align: center; }
.journey-card__button--companies { background: var(--purple); }
.journey-card__button--candidates { background: var(--pink); }
.journey-card__button { transition: background-color .25s ease, transform .25s ease, box-shadow .25s ease; }
.journey-card__button--companies:hover { background: var(--pink); transform: translateY(-2px); box-shadow: 0 8px 18px rgba(197, 46, 91, .2); }
.journey-card__button--candidates:hover { background: var(--purple); transform: translateY(-2px); box-shadow: 0 8px 18px rgba(105, 39, 103, .2); }
.journey__assurances { display: grid; grid-template-columns: repeat(4, 1fr); margin: 58px 0 0; padding: 22px 28px; border: 1px solid rgba(197, 46, 91, .08); border-radius: 18px; background: #fff5f7; list-style: none; }
.journey__assurances li { display: grid; grid-template-columns: 46px 1fr; min-width: 0; padding: 0 20px; align-items: center; gap: 10px; border-right: 1px solid rgba(105, 39, 103, .12); }
.journey__assurances li:first-child { padding-left: 0; }

.difference { width: min(calc(100% - 48px), 1120px); margin: 0 auto; padding: 80px 0; }
.difference__header { max-width: 680px; margin: 0 auto 38px; text-align: center; }
.difference__header > p:first-child { margin: 0 0 8px; color: var(--pink); font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.difference__header h2 { margin: 0 0 12px; color: var(--purple); font-size: clamp(2.2rem, 4.5vw, 3.5rem); line-height: .95; letter-spacing: -.04em; }
.difference__header h2 span { color: #c42f59; }
.difference__header > p:last-child { max-width: 620px; margin: 0 auto; color: var(--muted); font-size: .84rem; line-height: 1.35; }
.difference__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.difference-card { grid-column: span 2; min-height: 178px; padding: 24px; border-radius: 16px; background: #f1f3f5; }
.difference-card:nth-child(4), .difference-card:nth-child(5) { grid-column: span 3; }
.difference-card i { display: grid; width: 38px; height: 38px; margin-bottom: 20px; place-items: center; border-radius: 9px; background: var(--purple); color: #fff; font-size: .9rem; }
.difference-card h3 { margin: 0 0 8px; color: var(--ink); font-size: .9rem; }
.difference-card p { max-width: 320px; margin: 0; color: #777478; font-size: .72rem; line-height: 1.35; }

@media (max-width: 767px) {
  .difference { width: min(calc(100% - 32px), 600px); padding: 64px 0; }
  .difference__header { margin-bottom: 28px; }
  .difference__header h2 { font-size: clamp(2rem, 10vw, 2.8rem); }
  .difference__grid { grid-template-columns: 1fr; gap: 12px; }
  .difference-card,
  .difference-card:nth-child(4),
  .difference-card:nth-child(5) { grid-column: auto; min-height: 0; }
}
.journey__assurances li:last-child { padding-right: 0; border-right: 0; }
.journey__assurances i { color: var(--pink); font-size: 2.15rem; text-align: center; }
.journey__assurances div { display: grid; gap: 4px; }
.journey__assurances strong { color: #c42f59; font-size: .72rem; }
.journey__assurances span { color: #746d70; font-size: .66rem; line-height: 1.25; }

.process-section { width: min(calc(100% - 48px), 1040px); margin: 0 auto; padding: 120px 0; }
.process-section__header { margin: 0 auto 45px; text-align: center; }
.process-section__header > p:first-child { margin: 0 0 6px; color: var(--purple); font-size: 1.15rem; }
.process-section__header h2 { margin: 0 0 10px; color: var(--purple); font-size: clamp(2.7rem, 5vw, 4rem); line-height: .82; letter-spacing: -.04em; }
.process-section__header h2 span { display: block; color: var(--pink); }
.process-section--about .process-section__header h2 span { display: inline; }
.process-section__header > p:last-child { margin: 0; color: #9d9a9c; font-size: .84rem; line-height: 1.15; }
.process-lane { position: relative; margin-top: 36px; padding: 56px 34px 34px; background: transparent; }
.process-lane__label { position: absolute; top: -14px; left: 50%; margin: 0; padding: 7px 22px; border-radius: 999px; background: #fce9ef; color: #c72e5b; font-size: .75rem; transform: translateX(-50%); white-space: nowrap; }
.process-steps { display: grid; margin: 0; padding: 0; list-style: none; counter-reset: process-step; }
.process-steps--companies { grid-template-columns: repeat(4, 1fr); }
.process-steps--candidates { grid-template-columns: repeat(5, 1fr); }
.process-steps li { position: relative; min-width: 0; text-align: center; counter-increment: process-step; }
.process-steps li:not(:last-child)::before { position: absolute; z-index: 0; top: 26px; left: calc(50% + 34px); width: calc(100% - 68px); border-top: 1px dashed rgba(199, 46, 91, .65); content: ""; }
.process-steps li:not(:last-child)::after { position: absolute; z-index: 2; top: 18px; right: -9px; display: grid; width: 18px; height: 18px; place-items: center; border: 3px solid #fff; border-radius: 50%; background: #c72e5b; color: #fff; content: counter(process-step); font-size: .55rem; font-weight: 700; }
.process-steps i { position: relative; z-index: 1; display: grid; width: 54px; height: 54px; margin: 0 auto 20px; place-items: center; border: 7px solid #fff; border-radius: 50%; outline: 1px solid #fce9ef; background: #fce9ef; color: #c72e5b; box-shadow: 0 0 0 3px #fff; font-size: 1.05rem; }
.process-steps h3 { min-height: 0; margin: 0 0 4px; color: #171426; font-size: 1rem; font-weight: 700; line-height: 1.12; }
.process-steps li > p { margin: 0; color: #88848d; font-size: .7rem; line-height: 1.35; }

@media (max-width: 767px) {
  .process-section { width: min(calc(100% - 28px), 600px); padding: 120px 0; }
  .process-section__header h2 { font-size: clamp(2.35rem, 11vw, 3.25rem); line-height: .86; }
  .process-section__header > p:last-child br { display: none; }
  .process-lane { padding: 54px 22px 28px; }
  .process-steps--companies,
  .process-steps--candidates { grid-template-columns: 1fr 1fr; gap: 28px 12px; }
  .process-steps li:not(:last-child)::before,
  .process-steps li:not(:last-child)::after { display: none; }
  .process-steps li:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .process-steps h3 { font-size: .9rem; }
  .process-steps li > p { font-size: .72rem; }
}

@media (max-width: 380px) {
  .process-steps--companies,
  .process-steps--candidates { grid-template-columns: 1fr; }
  .process-steps li:last-child:nth-child(odd) { grid-column: auto; }
}

.talent-success { display: grid; grid-template-columns: 1.05fr .95fr; width: min(calc(100% - 48px), 960px); margin: 0 auto; padding: 88px 0 96px; align-items: center; gap: clamp(42px, 7vw, 88px); }
.talent-success__visual { position: relative; min-width: 0; }
.talent-success__visual > img { display: block; width: 110%; height: auto; margin-left: -5%; }
.talent-success__visual > img[src$="amal-sinan-placedex-best-placement-agency-in-calicut.webp"] { width: 125%; margin-left: -6%; }
.talent-success__metric { position: absolute; display: flex; padding: 8px 10px; align-items: center; gap: 8px; border-radius: 4px; background: rgba(255, 255, 255, .96); box-shadow: 0 5px 16px rgba(56, 38, 48, .1); color: #252126; }
.talent-success__metric--analytics { top: 26%; left: 2%; }
.talent-success__metric--seo { top: 21%; right: 1%; }
.talent-success__metric i { display: grid; width: 29px; height: 29px; place-items: center; border-radius: 4px; background: var(--pink); color: #fff; font-size: .85rem; }
.talent-success__metric span { display: grid; }
.talent-success__metric strong { font-size: .46rem; line-height: 1.05; }
.talent-success__metric small { margin-top: 3px; color: #aaa5a8; font-size: .38rem; line-height: 1.15; }
.talent-success__eyebrow { margin: 0 0 5px; color: var(--purple); font-size: 1.1rem; }
.talent-success__content h2 { margin: 0 0 16px; color: var(--purple); font-size: clamp(2.75rem, 4.8vw, 4rem); line-height: .96; letter-spacing: -.045em; }
.talent-success__content h2 span { display: block; white-space: nowrap; }
.talent-success__title-accent { color: var(--pink); }
.talent-success__content h2 .talent-success__title-primary { display: inline; color: #642663; }
.talent-success__content > p:not(.talent-success__eyebrow) { max-width: 430px; margin: 0 0 22px; color: #aaa7a8; font-size: .83rem; line-height: 1.14; }
.talent-success__content > p:not(.talent-success__eyebrow) + p { margin-top: -10px; }
.talent-success__content > a { display: inline-flex; min-height: 38px; padding: 9px 22px; align-items: center; border-radius: 999px; background: var(--pink); color: #fff; font-size: .74rem; transition: transform .25s ease, background-color .25s ease, box-shadow .25s ease; }
.talent-success__content > a:hover { background: var(--purple); box-shadow: 0 8px 20px rgba(102, 39, 102, .18); transform: translateY(-2px); }

@media (max-width: 767px) {
  .talent-success { grid-template-columns: 1fr; width: min(calc(100% - 36px), 560px); padding: 64px 0 72px; gap: 34px; text-align: center; }
  .talent-success__visual { width: min(100%, 470px); margin: 0 auto; }
  .talent-success__content { order: -1; }
  .talent-success__eyebrow { font-size: .95rem; }
  .talent-success__content h2 { font-size: clamp(2.65rem, 12vw, 3.5rem); }
  .talent-success__content > p:not(.talent-success__eyebrow) { margin-right: auto; margin-left: auto; }
}

@media (max-width: 420px) {
  .talent-success__metric { transform: scale(.8); }
  .talent-success__metric--analytics { left: -4%; transform-origin: left center; }
  .talent-success__metric--seo { right: -4%; transform-origin: right center; }
}

.team-section { width: min(calc(100% - 48px), 1080px); margin: 0 auto; padding: 88px 0 100px; }
.team-section__header { margin: 0 auto 48px; text-align: center; }
.team-section__header > p:first-child { margin: 0 0 6px; color: var(--purple); font-size: 1.2rem; }
.team-section__header h2 { margin: 0 0 9px; color: var(--pink); font-size: clamp(2.8rem, 5vw, 4rem); line-height: .9; letter-spacing: -.04em; }
.team-section__header > p:last-child { margin: 0; color: #999596; font-size: .86rem; line-height: 1.12; }
.team-section__grid { display: grid; grid-template-columns: repeat(5, 1fr); align-items: start; gap: 18px; }
.team-member { min-width: 0; text-align: center; }
.team-member__portrait { position: relative; overflow: hidden; width: 100%; aspect-ratio: .66; border-radius: 999px; background: var(--pink); }
.team-member--purple .team-member__portrait { background: var(--purple); }
.team-member__portrait img { position: absolute; right: -8%; bottom: 0; left: -8%; display: block; width: 116%; max-width: none; height: 92%; object-fit: contain; object-position: center bottom; }
.team-member__portrait img[src$="shafeel-zainco-operations-manager-of-at-placedex.png"],
.team-member__portrait img[src$="mubashir-ali-shaheer-creative-&-marketing-head-at-placedex.webp"] { bottom: -5%; }
.team-member h3 { margin: 14px 0 3px; color: #161416; font-size: 1rem; line-height: 1.05; }
.team-member > p { margin: 0; color: #aaa6a8; font-size: .72rem; line-height: 1.15; }

@media (max-width: 900px) {
  .team-section__grid { grid-template-columns: repeat(3, 1fr); max-width: 700px; margin: 0 auto; gap: 34px 22px; }
  .team-member__portrait { max-height: 310px; }
}

@media (max-width: 600px) {
  .team-section { width: min(calc(100% - 16px), 520px); padding: 68px 0 78px; }
  .team-section__header > p:last-child br { display: none; }
  .team-section__grid { grid-template-columns: 1fr 1fr; gap: 30px 16px; }
  .team-member:last-child { grid-column: 1 / -1; width: calc(50% - 8px); justify-self: center; }
  .team-member h3 { font-size: .9rem; }

  .team-section { overflow: hidden; }
  .team-section__grid { display: flex; width: max-content; margin: 0 auto; gap: 16px; transition: transform .7s cubic-bezier(.25, .8, .25, 1); }
  .team-section__grid .team-member { flex: 0 0 calc((min(100vw - 48px, 480px) - 16px) / 2); width: auto; }
  .team-section__grid .team-member:last-child { grid-column: auto; width: auto; justify-self: auto; }
}

@media (max-width: 360px) {
  .team-section__grid { grid-template-columns: 1fr; max-width: 230px; }
  .team-member:last-child { grid-column: auto; width: 100%; }
}

.reviews-section { width: min(calc(100% - 48px), 1120px); margin: 0 auto; padding: 68px 42px 120px; overflow: hidden; background: transparent; }
.reviews-section__header { display: grid; grid-template-columns: minmax(0, 1fr) auto; margin: 0 auto 58px; align-items: end; gap: 70px; }
.reviews-section__heading > p:first-child { margin: 0 0 5px; color: var(--purple); font-size: 1.05rem; font-weight: 400; }
.reviews-section__header h2 { max-width: 600px; margin: 0 0 12px; color: var(--purple); font-size: clamp(2.55rem, 4.5vw, 3.8rem); font-weight: 700; line-height: .82; letter-spacing: -.04em; }
.reviews-section__header h2 span { display: block; color: var(--pink); }
.reviews-section__heading > p:last-child { margin: 0; color: #999596; font-size: .72rem; line-height: 1.15; }
.reviews-section__stats { display: grid; grid-template-columns: 1fr 1fr; margin: 0 0 2px; gap: 48px; }
.reviews-section__stats div { min-width: 104px; }
.reviews-section__stats dt { color: var(--pink); font-size: 2.8rem; font-weight: 700; line-height: 1; }
.reviews-section__stats dd { margin: 7px 0 0; color: #999596; font-size: .72rem; line-height: 1.05; }
.reviews-section__body { display: grid; grid-template-columns: 165px minmax(0, 1fr); align-items: end; gap: 34px; }
.reviews-section__intro { padding-bottom: 18px; }
.reviews-section__quote { display: block; height: 70px; color: #bdbabc; font-family: Georgia, serif; font-size: 6rem; font-weight: 700; line-height: 1; }
.reviews-section__intro h3 { margin: 8px 0 32px; color: #181518; font-size: 1.45rem; font-weight: 500; line-height: 1.12; }
.reviews-section__controls { display: grid; grid-template-columns: 26px 1fr 26px; width: 150px; align-items: center; gap: 7px; }
.reviews-section__controls span { height: 2px; background: linear-gradient(90deg, var(--pink) 28%, #ccc 28%); }
.reviews-section__controls button { display: grid; width: 26px; height: 26px; padding: 0; place-items: center; border: 0; background: transparent; color: #242024; font-size: .7rem; cursor: pointer; }
.reviews-section__viewport { min-width: 0; overflow: hidden; padding: 8px 0; }
.reviews-section__track { display: flex; gap: 18px; overflow-x: auto; scroll-behavior: smooth; scrollbar-width: none; scroll-snap-type: x mandatory; }
.reviews-section__track::-webkit-scrollbar { display: none; }
.review-card { flex: 0 0 calc((100% - 36px) / 3); min-width: 0; scroll-snap-align: start; }
.review-card__content { position: relative; display: flex; min-height: 215px; padding: 24px 22px 20px; flex-direction: column; justify-content: space-between; border-radius: 12px; background: #fff; box-shadow: 0 7px 22px rgba(32, 24, 29, .07); }
.review-card__content::after { position: absolute; bottom: -14px; left: 24px; border-width: 14px 14px 0 0; border-style: solid; border-color: #fff transparent transparent; content: ""; }
.review-card__content > p { margin: 0; color: #4e494c; font-size: .76rem; line-height: 1.48; }
.review-card__stars { color: var(--pink); font-size: .78rem; letter-spacing: 2px; }
.review-card footer { display: flex; padding: 13px 15px 0; align-items: center; gap: 9px; }
.review-card footer img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; object-position: top center; }
.review-card footer h3 { margin: 0 0 2px; color: #1b181a; font-size: .84rem; }
.review-card footer p { margin: 0; color: #aaa6a8; font-size: .58rem; }
.reviews-section__trust { display: flex; width: min(100%, 790px); min-height: 58px; margin: 54px auto 0; padding: 11px 20px; align-items: center; justify-content: center; gap: 11px; color: #2d2830; }
.reviews-section__trust span { font-size: .94rem; }
.reviews-section__trust span strong { text-decoration: underline; }
.reviews-section__trust > i { margin-left: 8px; color: var(--pink); font-size: 1.8rem; }
.reviews-section__trust > b { color: var(--purple); font-size: 1.2rem; }
.reviews-section__trust > em { padding: 6px 14px; border-radius: 999px; background: var(--pink); color: #fff; font-size: .68rem; font-style: normal; letter-spacing: 1px; }
.reviews-section__trust > small { color: #4f494d; font-size: .56rem; font-weight: 700; }

@media (max-width: 767px) {
  .reviews-section { width: min(calc(100% - 24px), 600px); padding: 50px 18px 60px; }
  .reviews-section__header { margin-bottom: 30px; }
  .reviews-section__header { grid-template-columns: 1fr; gap: 18px; text-align: center; }
  .reviews-section__heading > p:first-child { font-size: .78rem; }
  .reviews-section__header h2 { margin-bottom: 8px; font-size: clamp(1.8rem, 8vw, 2.3rem); }
  .reviews-section__heading > p:last-child { max-width: 280px; margin: 0 auto; font-size: .62rem; }
  .reviews-section__heading > p:last-child br { display: none; }
  .reviews-section__stats { display: none; }
  .reviews-section__stats dt { font-size: 2rem; }
  .reviews-section__stats dd { font-size: .58rem; }
  .reviews-section__body { grid-template-columns: 1fr; gap: 0; }
  .reviews-section__intro { display: contents; }
  .reviews-section__quote, .reviews-section__intro h3 { display: none; }
  .reviews-section__viewport { order: 1; }
  .reviews-section__controls { order: 2; width: 132px; margin: 28px auto 0; }
  .review-card { flex-basis: min(84vw, 340px); }
  .review-card__content { min-height: 190px; padding: 22px; }
  .review-card__content > p { font-size: .8rem; line-height: 1.45; }
  .review-card footer { padding-top: 16px; }
  .review-card footer img { width: 48px; height: 48px; }
  .review-card footer h3 { font-size: 1.02rem; }
  .review-card footer p { font-size: .7rem; }
  .reviews-section__trust { flex-wrap: wrap; margin-top: 38px; gap: 7px; text-align: center; }
  .reviews-section__trust span { flex-basis: 100%; }
}

.specialists { width: min(calc(100% - 48px), 1100px); margin: 0 auto; padding: 82px 0 0; }
.companies-benefits + .specialists { padding-top: 70px; }
.candidates-page .why-placedex { padding-bottom: 50px; }
.candidates-page .why-placedex__intro h2 { font-size: clamp(2.15rem, 3.3vw, 2.65rem); }
.candidates-page .why-placedex__visual { min-height: 190px; }
.candidates-page .why-placedex + .specialists { padding-top: 50px; }
.candidates-page .specialists + .process-section--about { padding-top: 140px; }
.candidates-page .process-section--about + .placements__intro { margin-top: 140px; }
.specialists__header { max-width: 720px; margin: 0 auto 46px; text-align: center; }
.specialists__header > p:first-child { margin-bottom: 7px; color: var(--purple); font-size: 1.25rem; }
.specialists__header h2 { margin: 0 0 13px; color: var(--purple); font-size: clamp(2.7rem, 4.5vw, 3.8rem); line-height: .88; letter-spacing: -.035em; }
.specialists__header h2 span { display: block; color: var(--pink); }
.specialists__header > p:last-child { color: #999; font-size: .88rem; line-height: 1.2; }
.specialists__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.specialist-card { display: flex; min-width: 0; padding: 24px 20px 22px; align-items: center; flex-direction: column; border: 1px solid #e7e3e5; border-radius: 18px; text-align: center; }
.specialist-card img { display: block; width: 110%; max-width: 245px; aspect-ratio: 1.35; object-fit: contain; }
.specialist-card h3 { margin: 14px 0 9px; color: var(--ink); font-size: 1.2rem; font-weight: 500; }
.specialist-card > p { margin-bottom: 0; color: #b4b2b3; font-size: .7rem; line-height: 1.15; }
.specialist-card ul { display: grid; grid-template-columns: repeat(6, 1fr); width: 100%; margin: 10px 0 0; padding: 0; gap: 6px; list-style: none; }
.specialist-card li { grid-column: span 2; padding: 4px 5px; border-radius: 999px; background: #f1f1f1; color: var(--purple); font-size: .5rem; font-weight: 600; white-space: nowrap; }
.specialist-card li:nth-child(4) { grid-column: 2 / span 2; }
.specialist-card li:nth-child(5) { grid-column: 4 / span 2; }
.specialist-card__read-more { position: relative; display: inline-flex; width: auto; min-height: 24px; margin-top: 18px; padding: 0 32px 0 0; align-items: center; border: 0; background: transparent; color: var(--pink); font-size: .72rem; font-weight: 600; white-space: nowrap; transition: color .25s ease; }
.specialist-card__read-more::before { position: absolute; right: 0; display: block; color: var(--pink); content: "\f061"; font-family: "Font Awesome 6 Free"; font-size: 1rem; font-weight: 900; line-height: 1; transition: transform .25s ease, color .25s ease; }
.specialist-card__read-more:hover { color: var(--purple); }
.specialist-card__read-more:hover::before { color: var(--purple); transform: translateX(5px); }
.specialist-card__read-more:focus-visible { outline: 3px solid rgba(197, 46, 91, .25); outline-offset: 3px; }

.why-placedex {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(250px, .92fr) minmax(300px, 1.05fr);
  width: min(100%, 1100px);
  margin: 0 auto;
  padding: 92px 0;
  align-items: start;
  gap: clamp(24px, 2.8vw, 32px);
}
.why-placedex > * { min-width: 0; }
.why-placedex__intro > p:first-child { margin: 0 0 6px; color: var(--purple); font-size: .9rem; }
.why-placedex__intro h2 { margin: 0 0 18px; color: var(--purple); font-size: clamp(2.1rem, 3.7vw, 3rem); line-height: .9; letter-spacing: -.035em; }
.why-placedex__intro h2 span { display: block; color: var(--pink); }
.why-placedex__intro h2 .why-title-line { color: var(--purple); }
.why-placedex__intro h2 .why-title-line--accent { color: var(--pink); }
.why-placedex__intro h2.why-title--three-lines .why-title-line { display: block; margin-right: 0; }
.why-placedex__intro h2.why-title--three-lines { font-size: clamp(2.4rem, 4.2vw, 3.55rem); }

@media (min-width: 768px) {
  .why-placedex__intro h2 .why-title-line { white-space: nowrap; }
}

@media (max-width: 767px) {
  .why-placedex__intro h2 { max-width: 100%; font-size: clamp(1.45rem, 6.5vw, 1.75rem); line-height: 1.02; overflow-wrap: anywhere; }
  .why-placedex__intro h2 .why-title-line { display: inline; white-space: normal; }
  .why-placedex__intro h2 .why-title-line:not(:last-child) { margin-right: .22em; }
}
.why-placedex__intro > p:last-child { max-width: 440px; color: #aaa7a8; font-size: .75rem; line-height: 1.2; }
.why-placedex__subtitle { margin: 0 0 14px; color: var(--purple); font-size: 1.05rem; line-height: 1.35; }
.why-placedex__benefits { display: grid; gap: 8px; padding-top: 0; }
.why-placedex__benefits button { min-height: 56px; padding: 13px 26px; border: 1px solid rgba(102, 39, 102, .04); border-radius: 999px; background: #fff; color: var(--ink); box-shadow: 0 5px 14px rgba(44, 31, 43, .06); font: inherit; font-size: .82rem; font-weight: 700; text-align: left; cursor: pointer; transition: color .2s ease, transform .2s ease, box-shadow .2s ease; }
.why-placedex__benefits button:hover,
.why-placedex__benefits button.is-active { color: var(--pink); transform: translateX(4px); box-shadow: 0 7px 18px rgba(44, 31, 43, .08); }
.why-placedex__visual { display: flex; width: 100%; min-height: 250px; padding: 34px; align-items: center; border-radius: 20px; background: #c42f59; }
.why-placedex--services .why-placedex__visual { min-height: 360px; }
.why-placedex--tall-card .why-placedex__visual { min-height: 360px; }
@media (max-width: 767px) {
  .companies-page .why-placedex--services { padding-bottom: 0; }
  .why-placedex--services + #business-process { padding-top: 48px; }
}
.why-placedex__visual i { display: grid; width: 44px; height: 44px; margin-bottom: 18px; place-items: center; border-radius: 12px; background: rgba(255, 255, 255, .14); color: #fff; font-size: 1.15rem; }
.why-placedex__visual h3 { margin: 0 0 12px; color: #fff; font-size: 1.05rem; font-weight: 500; }
.why-placedex__visual p { max-width: 300px; margin: 0; color: rgba(255, 255, 255, .32); font-size: .78rem; line-height: 1.25; }

@media (min-width: 768px) and (max-width: 1024px) {
  .why-placedex { grid-template-columns: .8fr 1.2fr; }
  .why-placedex__visual { grid-column: 1 / -1; min-height: 300px; }
}

@media (max-width: 767px) {
  .why-placedex__visual { min-height: 260px; }
}

.influencer-community { position: relative; min-height: 570px; overflow: hidden; padding: 238px 24px 54px; background: #fff; isolation: isolate; }
.influencer-community::before,
.influencer-community::after { display: none; content: none; }
.influencer-community__orbit { position: absolute; z-index: 0; top: 12px; left: 50%; width: 1100px; height: 500px; transform: translateX(-50%) scale(.72); transform-origin: top center; }
.influencer-community__arcs { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.orbit-path { fill: none; stroke: #ff7da4; stroke-width: 2; vector-effect: non-scaling-stroke; }
.orbit-path--outer { opacity: .5; }
.orbit-path--middle { opacity: .85; stroke-width: 3; }
.orbit-path--inner { opacity: .65; stroke-dasharray: 10 10; }
.orbit-chip,
.orbit-icon,
.orbit-avatar { position: absolute; z-index: 2; }
.orbit-chip { display: flex; min-height: 48px; padding: 9px 18px; align-items: center; gap: 10px; border: 1px solid #ece7e9; border-radius: 999px; background: #fff; color: #10111b; box-shadow: 0 8px 20px rgba(28, 21, 24, .1); font-size: .9rem; }
.orbit-chip strong,
.orbit-chip i { color: var(--pink); font-size: 1.15rem; }
.orbit-chip img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.orbit-chip--posts { top: 0; left: 42%; border-radius: 16px; }
.orbit-chip--likes { top: 196px; left: 23%; }
.orbit-chip--hearts { top: 74px; right: 17%; }
.orbit-chip--comments { top: 286px; right: 1%; }
.orbit-chip--vote { top: 184px; left: 0; border: 0; background: linear-gradient(90deg, #6a0d63, var(--pink)); color: #fff; }
.orbit-chip--vote i { color: #fff; }
.orbit-icon { display: grid; width: 72px; height: 72px; place-items: center; border: 1px solid #ece7e9; border-radius: 16px; background: #fff; color: var(--pink); box-shadow: 0 8px 20px rgba(28, 21, 24, .1); font-size: 1.8rem; }
.orbit-icon--analytics { top: 54px; left: 20%; }
.orbit-icon--people { top: 174px; right: 25%; }
.orbit-icon--security { top: 330px; right: 15%; border-radius: 50%; background: var(--pink); color: #fff; }
.orbit-avatar { width: 78px; height: 78px; padding: 4px; border: 2px solid #ff7da4; border-radius: 50%; background: #fff; object-fit: cover; }
.orbit-avatar--one { top: 302px; left: 12%; }
.orbit-avatar--two { top: 126px; left: 47%; }
.orbit-avatar--three { top: 146px; right: 8%; }
@keyframes orbit-float { 0%, 100% { translate: 0 -8px; } 50% { translate: 0 8px; } }
.orbit-chip,
.orbit-icon,
.orbit-avatar { animation: orbit-float 4s ease-in-out infinite; transition: transform .25s ease, box-shadow .25s ease; }
.orbit-chip--likes, .orbit-icon--people, .orbit-avatar--two { animation-delay: -.8s; }
.orbit-chip--hearts, .orbit-icon--security, .orbit-avatar--three { animation-delay: -1.6s; }
.orbit-chip--comments, .orbit-icon--analytics, .orbit-avatar--one { animation-delay: -2.4s; }
.orbit-chip:hover,
.orbit-icon:hover,
.orbit-avatar:hover { z-index: 5; transform: scale(1.05); box-shadow: 0 14px 30px rgba(28, 21, 24, .14); }
.influencer-community__content { position: relative; z-index: 1; top: 28px; width: min(100%, 760px); margin: 0 auto; text-align: center; }
.influencer-community__stats { position: relative; top: 42px; display: grid; grid-template-columns: repeat(4, 1fr); max-width: 440px; margin: 0 auto 60px; }
.influencer-community__stats div { position: relative; display: grid; justify-items: center; text-align: center; }
.influencer-community__stats div::after { display: none; content: none; }
.influencer-community__stats dt { color: var(--pink); font-size: clamp(1.7rem, 2.8vw, 2.4rem); font-weight: 800; line-height: 1; }
.influencer-community__stats dd { margin: 4px 0 0; color: #11131c; font-size: .64rem; }
.influencer-community h2 { position: relative; top: 20px; max-width: 650px; margin: 0 auto 12px; color: #642663; font-size: clamp(1.8rem, 3.2vw, 2.65rem); line-height: 1.04; letter-spacing: -.025em; }
.influencer-community h2 span { display: block; }
.influencer-community__title-accent { color: var(--pink); }
.influencer-community__title-primary,
.influencer-community__title-accent,
.influencer-community__copy { transition: opacity .2s ease, transform .2s ease; }
.influencer-community__content.is-changing .influencer-community__title-primary,
.influencer-community__content.is-changing .influencer-community__title-accent,
.influencer-community__content.is-changing .influencer-community__copy { opacity: 0; transform: translateY(6px); }
.influencer-community__copy { position: relative; top: 20px; max-width: 440px; margin: 0 auto 62px; color: #aaa7a8; font-size: .76rem; line-height: 1.25; }
.influencer-community__features { display: grid; grid-template-columns: repeat(4, 1fr); max-width: 400px; margin: 0 auto; gap: 8px; }
.influencer-community__features button { display: flex; min-height: 34px; padding: 3px 8px 3px 4px; align-items: center; gap: 6px; border: 1px solid #d9d9d9; border-radius: 999px; background: #fff; box-shadow: 0 3px 9px rgba(28, 21, 24, .04); font-family: inherit; text-align: left; cursor: pointer; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.influencer-community__features button:hover { transform: scale(1.05); box-shadow: 0 14px 30px rgba(28, 21, 24, .13); }
.influencer-community__features button.is-active { border-color: rgba(197, 46, 91, .5); box-shadow: 0 6px 16px rgba(197, 46, 91, .13); }
.influencer-community__features i { display: grid; flex: 0 0 24px; width: 24px; height: 24px; place-items: center; border-radius: 50%; background: var(--pink); color: #fff; font-size: .55rem; }
.influencer-community__features button > span { color: #69676a; font-size: .48rem; font-weight: 500; }

.brand-logo {
  width: 120px;
  height: 44px;
  margin-right: 28px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .24;
  transition: filter .25s ease, opacity .25s ease, transform .25s ease;
}

.brand-logo:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.08);
}

.global-presence {
  position: relative;
  left: 50%;
  width: min(calc(100vw - 40px), 1100px);
  padding: 110px 0 82px;
  transform: translateX(-50%);
}

.companies-page .why-placedex { padding-bottom: 70px; }
.companies-page .why-placedex + .global-presence { padding-top: 70px; }

.global-presence__intro {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: end;
}

.global-presence__eyebrow {
  margin-bottom: 5px;
  color: var(--purple);
  font-size: 1.4rem;
}

.global-presence h2 {
  color: var(--pink);
  font-size: clamp(2.8rem, 4.3vw, 3.35rem);
  line-height: .92;
  letter-spacing: -.04em;
}

.global-presence h2 span { display: block; color: var(--purple); }
.global-presence__copy {
  padding-bottom: 5px;
  transition: opacity .18s ease, transform .18s ease;
}
.global-presence__copy.is-changing { opacity: 0; transform: translateY(8px); }
.global-presence__copy h3 { margin-bottom: 6px; font-size: 1.25rem; font-weight: 500; }
.global-presence__copy p { max-width: 500px; color: #b4b2b3; font-size: .88rem; line-height: 1.18; }

.global-presence__visual {
  display: grid;
  grid-template-columns: 185px minmax(0, 1fr);
  gap: 44px;
  align-items: center;
  margin-top: 40px;
}

.global-presence__markets {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.global-presence__markets button {
  width: 100%;
  border: 0;
  padding: 13px 26px;
  border-radius: 999px;
  background: #e8e8e8;
  color: var(--ink);
  cursor: pointer;
  font-family: inherit;
  font-size: .76rem;
  text-align: left;
  white-space: nowrap;
  transition: background-color .32s ease, color .32s ease, transform .25s ease, box-shadow .32s ease;
}

.global-presence__markets button:hover { transform: translateX(4px); }
.global-presence__markets button:focus-visible { outline: 3px solid rgba(197, 46, 91, .28); outline-offset: 2px; }
.global-presence__markets button.is-featured {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 7px 18px rgba(197, 46, 91, .2);
}
.global-presence__map { position: relative; }
.global-presence__map img { display: block; width: 100%; height: auto; }

.map-glow {
  position: absolute;
  width: 20px;
  aspect-ratio: 1;
  border: 2px solid rgba(197, 46, 91, .8);
  border-radius: 50%;
  background: rgba(197, 46, 91, .34);
  box-shadow: 0 0 10px 4px rgba(197, 46, 91, .38), 0 0 28px 12px rgba(197, 46, 91, .16);
  transform: translate(-50%, -50%);
  animation: map-pulse 2.4s ease-out infinite;
  pointer-events: none;
}

.map-glow--one { top: 42%; left: 65%; }
.map-glow--two { top: 48%; left: 19%; animation-delay: .8s; }
.map-glow--three { top: 76%; left: 91%; animation-delay: 1.6s; }

@keyframes map-pulse {
  0%, 100% { opacity: .55; transform: translate(-50%, -50%) scale(.72); }
  45% { opacity: 1; transform: translate(-50%, -50%) scale(1.25); }
}

.staffing-partner {
  position: relative;
  left: 50%;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  width: min(calc(100vw - 48px), 1100px);
  padding: 82px 0 60px;
  align-items: center;
  gap: clamp(34px, 5vw, 70px);
  transform: translateX(-50%);
}
.staffing-partner__eyebrow { margin-bottom: 8px; color: var(--purple); font-size: 1.15rem; }
.staffing-partner h2 { margin: 0 0 22px; color: var(--purple); font-size: clamp(2.2rem, 3.8vw, 3.2rem); line-height: .92; letter-spacing: -.035em; }
.staffing-partner__title-line { display: block; white-space: nowrap; }
.staffing-partner__title-accent,
.staffing-partner__title-line em { color: var(--pink); font-style: normal; }
.staffing-partner__content > p:not(.staffing-partner__eyebrow) { max-width: 500px; margin: 0 0 18px; color: #b4b2b3; font-size: .86rem; line-height: 1.2; }
.staffing-partner__actions { display: flex; margin-top: 24px; gap: 7px; }
.staffing-partner__button { min-width: 112px; padding: 9px 20px; border-radius: 999px; color: #fff; font-size: .78rem; text-align: center; transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease; }
.staffing-partner__button:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0, 0, 0, .12); }
.staffing-partner__button--hire { background: var(--purple); }
.staffing-partner__button--apply { background: var(--pink); }
.staffing-partner__button--hire:hover { background: var(--pink); }
.staffing-partner__button--apply:hover { background: var(--purple); }
.staffing-partner__visual img { display: block; width: 100%; height: auto; }
.company-services .company-services__heading { grid-column: 1 / -1; margin: 0; text-align: center; line-height: 1.1; }
.placements > .company-services:first-child { padding-top: 0; }
.company-services__areas { color: var(--purple); font-size: .9rem; line-height: 1.6; }
.company-services__areas p { margin: 0 0 8px; }
.company-services__areas ul { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr)); gap: 8px 24px; margin: 0; padding-left: 20px; text-align: left; }
.company-services__areas li::marker { color: var(--pink); }
@media (max-width: 767px) {
  .company-services .company-services__heading { order: -2; }
  .company-services .staffing-partner__visual { order: -1; }
  .company-services__areas ul { grid-template-columns: 1fr; padding-left: 0; list-style-position: inside; text-align: center; }
}
@media (min-width: 768px) {
  #marketing-training { grid-template-columns: 1.08fr .92fr; }
  #marketing-training .staffing-partner__visual { grid-column: 1; grid-row: 1; }
  #marketing-training .staffing-partner__content { grid-column: 2; grid-row: 1; }
}

.founder-message {
  position: relative;
  left: 50%;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  width: min(calc(100vw - 32px), 1180px);
  min-height: 550px;
  padding: 130px 34px 72px;
  align-items: center;
  gap: 68px;
  transform: translateX(-50%);
}

.founder-message__portrait { align-self: end; }
.founder-message__portrait img { display: block; width: 100%; height: auto; }
.founder-message__eyebrow { margin-bottom: 10px; color: var(--purple); font-size: 1rem; font-weight: 400; }

.founder-message h2 {
  margin: 0;
  color: var(--pink);
  font-size: clamp(2.35rem, 3.6vw, 3.15rem);
  line-height: .95;
  letter-spacing: -.04em;
}

.founder-message h2 span { display: block; color: var(--purple); }

.founder-message blockquote {
  position: relative;
  margin: 34px 0 31px;
  padding: 36px 38px;
  border-radius: 28px;
  background: #f2f2f2;
  color: #a6a3a5;
  font-size: .9rem;
  line-height: 1.4;
}

.founder-message blockquote::after {
  position: absolute;
  bottom: -20px;
  left: 34px;
  border-width: 22px 24px 0 0;
  border-style: solid;
  border-color: #f2f2f2 transparent transparent;
  content: "";
}

.founder-message__signature { display: grid; margin-left: 4px; }
.founder-message__signature strong { color: var(--pink); font-size: 1.65rem; line-height: 1; }
.founder-message__signature span { margin-top: 5px; color: var(--purple); font-size: .76rem; font-weight: 700; }

.faq-section {
  position: relative;
  left: 50%;
  width: min(calc(100vw - 32px), 1100px);
  padding: 82px 36px 94px;
  transform: translateX(-50%);
}

.faq-section__header { max-width: 570px; margin: 0 auto 42px; text-align: center; }
.faq-section__header > p:first-child { color: var(--purple); font-size: .9rem; font-weight: 700; }
.faq-section__header h2 { margin: 5px 0 9px; color: var(--purple); font-size: clamp(2.4rem, 4vw, 3.25rem); line-height: .9; letter-spacing: -.04em; }
.faq-section__header h2 span { display: block; color: var(--pink); }
.faq-section__header > p:last-child { color: #454145; font-size: .82rem; line-height: 1.25; }

.faq-section__body { display: grid; grid-template-columns: 1fr; width: min(100%, 1000px); margin: auto; align-items: end; }
.faq-section__portrait { position: relative; }
.faq-section__portrait img { display: block; width: 100%; height: auto; }
.faq-section__badge { position: absolute; right: 6%; bottom: 16%; display: flex; padding: 10px 17px; align-items: center; gap: 10px; border-radius: 8px; background: var(--pink); color: #fff; box-shadow: 0 9px 24px rgba(197, 46, 91, .24); }
.faq-section__badge > span { font-size: 1.35rem; }
.faq-section__badge strong { font-size: .72rem; line-height: 1; }
.faq-section__badge small { display: block; margin-top: 3px; font-size: .62rem; font-weight: 500; }

.faq-list { display: grid; gap: 9px; }
.faq-item { overflow: hidden; border-radius: 12px; background: #f2f2f2; color: #a6a3a5; transition: background-color .28s ease, color .28s ease, box-shadow .28s ease; }
.faq-item:not(.is-open),
.faq-item:not(.is-open) button { background-color: #f2f2f2; color: #a6a3a5; }
.faq-item.is-open { background: var(--pink); color: #fff; box-shadow: 0 9px 24px rgba(197, 46, 91, .16); }
.faq-item button { display: flex; width: 100%; padding: 16px 20px; border: 0; align-items: center; justify-content: space-between; background: transparent; color: inherit; cursor: pointer; font-family: inherit; font-size: 1rem; text-align: left; }
.faq-item button i { display: grid; flex: 0 0 20px; width: 20px; height: 20px; margin-left: 14px; place-items: center; border-radius: 50%; background: var(--purple); color: #fff; font-size: .72rem; font-style: normal; transition: transform .3s ease, background-color .3s ease; }
.faq-item button i { font-size: 0; }
.faq-item button i::before { content: "\2193"; font-size: .72rem; }
.faq-item.is-open button i { background: var(--purple); transform: none; }
.faq-item.is-open button i::before { content: "\2191"; }
.faq-item__answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s cubic-bezier(.22, 1, .36, 1); }
.faq-item__answer p { min-height: 0; overflow: hidden; padding: 0 20px; color: rgba(255, 255, 255, .72); font-size: .76rem; line-height: 1.3; transition: padding .35s ease; }
.faq-item.is-open .faq-item__answer { grid-template-rows: 1fr; }
.faq-item.is-open .faq-item__answer p { padding-bottom: 18px; }

.contact-cta {
  position: relative;
  left: 50%;
  width: 100vw;
  padding: 82px 24px 92px;
  text-align: center;
  transform: translateX(-50%);
}
.contact-cta__eyebrow { margin: 0 0 7px; color: var(--purple); font-size: 1.15rem; font-weight: 500; }
.contact-cta h2 { margin: 0; color: var(--pink); font-size: clamp(2.5rem, 4vw, 3.25rem); line-height: .90; letter-spacing: -.035em; }
.contact-cta h2 span { display: block; color: var(--purple); }
.contact-cta__copy { margin: 12px auto 0; color: var(--ink); font-size: .9rem; line-height: 1.2; opacity: .7; }
.contact-cta--business .contact-cta__copy { max-width: 720px; line-height: 1.5; }
.contact-cta__subheading { margin: 26px 0 0; color: var(--purple); font-size: clamp(1.2rem, 2.5vw, 1.65rem); line-height: 1.2; }
.contact-cta__actions { display: flex; margin-top: 21px; justify-content: center; gap: 6px; }
.contact-cta__button { min-width: 111px; padding: 8px 20px; border-radius: 999px; color: #fff; font-size: .78rem; transition: background-color .25s ease, transform .25s ease, box-shadow .25s ease; }
.contact-cta__button:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0, 0, 0, .12); }
.contact-cta__button--hire { background: var(--purple); }
.contact-cta__button--apply { background: var(--pink); }
.contact-cta__button--hire:hover { background: var(--pink); }
.contact-cta__button--apply:hover { background: var(--purple); }

.contact-help { width: min(calc(100% - 48px), 1040px); margin: 0 auto; padding: 110px 0 130px; }
.contact-help__header { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.contact-help__header > p:first-child { margin-bottom: 7px; color: var(--purple); font-size: 1.05rem; }
.contact-help__header h2 { margin: 0 0 15px; color: var(--purple); font-size: clamp(2.6rem, 4.6vw, 3.6rem); line-height: .9; letter-spacing: -.04em; }
.contact-help__header h2 span { color: var(--pink); }
.contact-help__header > p:last-child { max-width: 610px; margin: 0 auto; color: #8e898d; font-size: .86rem; line-height: 1.4; }
.contact-help__options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-bottom: 30px; overflow: visible; gap: 26px; border-radius: 0; box-shadow: none; }
.contact-help-card { position: relative; display: block; min-height: 320px; overflow: hidden; padding: 38px; border: 0; border-radius: 28px; background: #fbf0f4; box-shadow: none; }
.contact-help-card::before { display: none; }
.contact-help-card::after { position: absolute; z-index: 0; top: 16px; right: 25px; color: rgba(102, 39, 102, .07); content: "01"; font-size: 7rem; font-weight: 800; line-height: 1; }
.contact-help-card--candidates { background: #f4eef6; transform: translateY(30px); }
.contact-help-card--candidates::after { color: rgba(197, 46, 91, .08); content: "02"; }
.contact-help-card__icon { position: relative; z-index: 1; display: grid; width: 52px; height: 52px; margin: 0 0 64px; place-items: center; border-radius: 15px; background: var(--purple); color: #fff; font-size: 1.05rem; }
.contact-help-card--candidates .contact-help-card__icon { background: var(--pink); }
.contact-help-card > p { position: relative; z-index: 1; margin-bottom: 7px; color: var(--pink); font-size: .78rem; font-weight: 700; }
.contact-help-card h3 { position: relative; z-index: 1; max-width: 390px; margin: 0 0 24px; color: var(--purple); font-size: 1.35rem; font-weight: 400; line-height: 1.2; }
.contact-help-card h3 strong { font-weight: 700; }
.contact-help-card a { position: relative; z-index: 1; display: inline-flex; width: fit-content; min-width: 112px; min-height: 38px; padding: 9px 21px; align-items: center; justify-content: center; border-radius: 999px; background: var(--purple); color: #fff; font-size: .75rem; font-weight: 700; transition: background .25s ease, transform .25s ease, box-shadow .25s ease; }
.contact-help-card a::after { display: none; }
.contact-help-card--candidates a { background: var(--pink); color: #fff; }
.contact-help-card a:hover,
.contact-help-card--candidates a:hover { background: var(--pink); color: #fff; box-shadow: 0 8px 18px rgba(57, 38, 54, .14); transform: translateY(-2px); }
.contact-help-card--candidates a:hover { background: var(--purple); }

@media (max-width: 767px) {
  .contact-help { width: min(calc(100% - 32px), 560px); padding: 76px 0 90px; }
  .contact-help__header { margin-bottom: 34px; text-align: center; }
  .contact-help__header h2 { font-size: clamp(2.3rem, 11vw, 3rem); }
  .contact-help__header > p:last-child { margin: 0 auto; font-size: .78rem; }
  .contact-help__options { grid-template-columns: 1fr; margin-bottom: 0; gap: 14px; }
  .contact-help-card,
  .contact-help-card--candidates { min-height: 285px; padding: 30px 26px; transform: none; }
  .contact-help-card__icon { margin-bottom: 50px; }
  .contact-help-card h3 { font-size: 1.15rem; }
}

.quick-inquiry { width: min(calc(100% - 48px), 1040px); margin: 0 auto; padding: 20px 0 130px; }
.quick-inquiry__header { margin: 0 auto 46px; text-align: center; }
.quick-inquiry__header > p { margin-bottom: 7px; color: var(--purple); font-size: 1.05rem; }
.quick-inquiry__header h2 { margin: 0; color: var(--purple); font-size: clamp(2.6rem, 4.6vw, 3.6rem); line-height: .9; letter-spacing: -.04em; }
.quick-inquiry__header h2 span { color: var(--pink); }
.quick-inquiry__forms { display: grid; grid-template-columns: minmax(0, 760px); align-items: start; justify-content: center; gap: 18px; }
.inquiry-form { padding: 34px; border: 1px solid #ebe4e8; border-radius: 24px; background: #fff; box-shadow: 0 14px 36px rgba(57, 38, 54, .07); }
.inquiry-form__heading { display: flex; margin-bottom: 28px; align-items: center; gap: 12px; }
.inquiry-form__heading > span { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 12px; background: #f9edf2; color: var(--pink); }
.inquiry-form__heading h3 { margin: 0; color: var(--purple); font-size: 1.3rem; }
.inquiry-form__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 12px; }
.inquiry-form label { display: grid; min-width: 0; gap: 7px; }
.inquiry-form label > span { color: var(--purple); font-size: .72rem; font-weight: 700; }
.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea { width: 100%; min-width: 0; border: 1px solid #e5dfe3; border-radius: 11px; background: #fbfafb; color: var(--ink); font: inherit; font-size: .78rem; outline: none; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.inquiry-form input,
.inquiry-form select { min-height: 43px; padding: 9px 12px; }
.inquiry-form textarea { min-height: 100px; padding: 11px 12px; resize: vertical; }
.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus { border-color: rgba(197, 46, 91, .7); background: #fff; box-shadow: 0 0 0 3px rgba(197, 46, 91, .1); }
.inquiry-form label small { color: #9b9498; font-size: .62rem; font-weight: 400; }
.inquiry-form__full { grid-column: 1 / -1; }
.inquiry-form__file input { padding: 8px; color: #817a7f; }
.inquiry-form__file input::file-selector-button { margin-right: 8px; padding: 6px 9px; border: 0; border-radius: 7px; background: #f4e5eb; color: var(--pink); font: inherit; font-size: .68rem; font-weight: 700; cursor: pointer; }
.inquiry-form > button { min-width: 128px; min-height: 40px; margin-top: 22px; padding: 10px 22px; border: 0; border-radius: 999px; background: var(--purple); color: #fff; font: inherit; font-size: .75rem; font-weight: 700; cursor: pointer; transition: background .25s ease, transform .25s ease, box-shadow .25s ease; }
.inquiry-form--candidates > button { background: var(--pink); }
.inquiry-form > button:hover { background: var(--pink); box-shadow: 0 8px 20px rgba(102, 39, 102, .16); transform: translateY(-2px); }
.inquiry-form--candidates > button:hover { background: var(--purple); }

@media (max-width: 900px) {
  .quick-inquiry__forms { grid-template-columns: 1fr; }
}

@media (max-width: 539px) {
  .quick-inquiry { width: min(calc(100% - 32px), 480px); padding: 10px 0 90px; }
  .quick-inquiry__header { margin-bottom: 32px; }
  .quick-inquiry__header h2 { font-size: clamp(2.3rem, 11vw, 3rem); }
  .inquiry-form { padding: 25px 20px; border-radius: 20px; }
  .inquiry-form__grid { grid-template-columns: 1fr; }
  .inquiry-form__full { grid-column: auto; }
  .inquiry-form > button { width: 100%; }
}

.contact-information { display: grid; grid-template-columns: minmax(220px, .7fr) minmax(0, 1.3fr); width: min(calc(100% - 48px), 1040px); margin: 0 auto 140px; padding: 58px; align-items: center; gap: clamp(38px, 6vw, 72px); border-radius: 32px; background: #fbf5f7; }
.contact-information__header { margin: 0; text-align: left; }
.contact-information__header > p { margin-bottom: 7px; color: var(--purple); font-size: 1.05rem; }
.contact-information__header h2 { margin: 0; color: var(--purple); font-size: clamp(2.6rem, 4.6vw, 3.6rem); line-height: .9; letter-spacing: -.04em; }
.contact-information__header h2 span { color: var(--pink); }
.contact-information__header > p:last-child { max-width: 270px; margin: 18px 0 0; color: #8a8387; font-size: .8rem; line-height: 1.45; }
.contact-information__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.contact-information-card { min-height: 165px; padding: 24px; border: 1px solid #ebe4e8; border-radius: 19px; background: #fff; box-shadow: 0 10px 28px rgba(57, 38, 54, .055); }
.contact-information-card__icon { display: grid; width: 40px; height: 40px; margin-bottom: 22px; place-items: center; border-radius: 11px; background: #f9edf2; color: var(--pink); font-size: .9rem; }
.contact-information-card h3 { margin: 0 0 12px; color: var(--purple); font-size: 1.18rem; }
.contact-information-card a { display: block; width: fit-content; margin-top: 7px; color: #777176; font-size: .84rem; transition: color .2s ease; }
.contact-information-card a:hover { color: var(--pink); }
.contact-information-card address { color: #777176; font-size: .84rem; font-style: normal; line-height: 1.55; }
.contact-information-card address strong { color: var(--purple); font-weight: 700; }
.contact-information-card--office { grid-column: 1 / -1; min-height: 180px; background: var(--purple); }
.contact-information-card--office .contact-information-card__icon { background: rgba(255, 255, 255, .12); color: #fff; }
.contact-information-card--office h3,
.contact-information-card--office address strong { color: #fff; }
.contact-information-card--office address { color: rgba(255, 255, 255, .7); }

@media (max-width: 767px) {
  .contact-information { grid-template-columns: 1fr; width: min(calc(100% - 32px), 560px); margin-bottom: 90px; padding: 38px 24px; gap: 32px; border-radius: 25px; }
  .contact-information__header { text-align: center; }
  .contact-information__header h2 { font-size: clamp(2.3rem, 11vw, 3rem); }
  .contact-information__header > p:last-child { margin: 15px auto 0; }
  .contact-information__grid { grid-template-columns: 1fr; gap: 13px; }
  .contact-information-card { min-height: 190px; padding: 26px; }
  .contact-information-card__icon { margin-bottom: 28px; }
  .contact-information-card--office { grid-column: auto; }
}

.office-map { position: relative; width: min(calc(100% - 48px), 1040px); height: 440px; margin: 0 auto 140px; overflow: hidden; border: 1px solid #ebe4e8; border-radius: 30px; background: #eef0f1; box-shadow: 0 16px 40px rgba(57, 38, 54, .09); }
.office-map iframe { display: block; width: 100%; height: 100%; border: 0; }
.office-map__location { position: absolute; z-index: 2; bottom: 18px; left: 50%; display: flex; min-width: min(360px, calc(100% - 32px)); padding: 4px; align-items: center; border-radius: 999px; background: var(--purple); box-shadow: 0 8px 24px rgba(31, 16, 31, .25); color: #fff; transform: translateX(-50%); }
.office-map__location a,
.office-map__location span { display: flex; flex: 1; min-height: 42px; padding: 10px 17px; align-items: center; justify-content: center; gap: 7px; border-radius: 999px; color: #fff; font-size: .72rem; font-weight: 700; text-align: center; }
.office-map__location a.is-active { background: var(--pink); }
.office-map__location a:hover { background: #dd3a69; }
.office-map__location span { font-size: .65rem; }

@media (max-width: 767px) {
  .office-map { width: min(calc(100% - 32px), 560px); height: 360px; margin-bottom: 90px; border-radius: 24px; }
  .office-map__location { bottom: 12px; min-width: calc(100% - 24px); }
  .office-map__location a,
  .office-map__location span { padding: 9px 10px; font-size: .63rem; }
}

@media (max-width: 420px) {
  .office-map { height: 320px; }
  .office-map__location span { display: none; }
}

.whatsapp-cta { display: grid; grid-template-columns: 70px minmax(0, 1fr) auto; width: min(calc(100% - 48px), 1040px); margin: 0 auto 140px; padding: 42px 46px; align-items: center; gap: 26px; border-radius: 28px; background: var(--purple); box-shadow: 0 18px 42px rgba(61, 24, 61, .14); }
.whatsapp-cta__icon { display: grid; width: 64px; height: 64px; place-items: center; border-radius: 18px; background: #25d366; color: #fff; font-size: 2rem; }
.whatsapp-cta__content > p:first-child { margin-bottom: 5px; color: rgba(255, 255, 255, .68); font-size: .75rem; }
.whatsapp-cta__content h2 { margin: 0 0 10px; color: #fff; font-size: clamp(2rem, 3.6vw, 2.8rem); line-height: .92; letter-spacing: -.035em; }
.whatsapp-cta__content h2 span { color: var(--pink); }
.whatsapp-cta__content > p:last-child { max-width: 570px; color: rgba(255, 255, 255, .7); font-size: .82rem; line-height: 1.4; }
.whatsapp-cta__content strong { color: #fff; }
.whatsapp-cta > a { display: inline-flex; min-height: 44px; padding: 11px 22px; align-items: center; justify-content: center; gap: 9px; border-radius: 999px; background: #25d366; color: #fff; font-size: .76rem; font-weight: 700; white-space: nowrap; transition: background .25s ease, transform .25s ease, box-shadow .25s ease; }
.whatsapp-cta > a i { font-size: 1rem; }
.whatsapp-cta > a:hover { background: #1ebc59; box-shadow: 0 9px 22px rgba(0, 0, 0, .18); transform: translateY(-2px); }

@media (max-width: 767px) {
  .whatsapp-cta { grid-template-columns: 1fr; width: min(calc(100% - 32px), 560px); margin-bottom: 90px; padding: 32px 26px; justify-items: center; gap: 20px; text-align: center; }
  .whatsapp-cta__icon { width: 58px; height: 58px; font-size: 1.8rem; }
  .whatsapp-cta__content h2 { font-size: clamp(2rem, 9vw, 2.55rem); }
  .whatsapp-cta > a { width: 100%; max-width: 240px; }
}

.quick-response { display: grid; grid-template-columns: .95fr .85fr 1fr; width: min(calc(100% - 48px), 1040px); margin: 0 auto 140px; padding: 52px 18px; align-items: center; gap: clamp(30px, 4vw, 58px); background: transparent; }
.quick-response__intro > p:first-child { margin-bottom: 6px; color: var(--purple); font-size: .9rem; }
.quick-response__intro h2 { margin: 0 0 16px; color: var(--purple); font-size: clamp(2.2rem, 3.8vw, 3rem); line-height: .86; letter-spacing: -.04em; }
.quick-response__intro h2 span { display: block; color: var(--pink); }
.quick-response__intro > p:last-child { max-width: 290px; color: #575256; font-size: .72rem; line-height: 1.45; }
.quick-response__contact { display: grid; gap: 24px; }
.quick-response__item { display: grid; grid-template-columns: 46px minmax(0, 1fr); align-items: center; gap: 12px; }
.quick-response__item > span { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 11px; background: var(--purple); color: #fff; font-size: .85rem; }
.quick-response__contact .quick-response__item:nth-child(2) > span,
.quick-response__details .quick-response__item:nth-child(2) > span { background: var(--pink); }
.quick-response__item p,
.quick-response__details > div > p:first-child { margin-bottom: 3px; color: #4f494d; font-size: .66rem; }
.quick-response__item a { display: block; width: fit-content; color: #201d20; font-size: 1.02rem; font-weight: 700; line-height: 1.05; }
.quick-response__item a:hover { color: var(--pink); }
.quick-response__item a.quick-response__email { font-size: .83rem; font-weight: 500; }
.quick-response__details { display: grid; gap: 22px; }
.quick-response__details address,
.quick-response__details > div > p:last-child { margin: 0; color: #272327; font-size: .72rem; font-style: normal; line-height: 1.3; }
.quick-response__details .quick-response__item > div > p:last-child { margin: 0; color: #272327; font-size: .72rem; line-height: 1.3; }
.quick-response__details strong { font-weight: 700; }

@media (max-width: 767px) {
  .quick-response { grid-template-columns: 1fr; width: min(calc(100% - 32px), 560px); margin-bottom: 90px; padding: 38px 8px; gap: 34px; }
  .quick-response__intro { text-align: center; }
  .quick-response__intro > p:last-child { margin: 0 auto; }
  .quick-response__contact,
  .quick-response__details { width: min(100%, 320px); margin: 0 auto; }
}

.contact-final-cta { width: min(calc(100% - 48px), 1040px); margin: 0 auto 140px; padding: 76px 40px; border-radius: 30px; background: linear-gradient(135deg, var(--pink), #a92756); color: #fff; text-align: center; }
.contact-final-cta > p:first-child { margin-bottom: 7px; color: rgba(255, 255, 255, .72); font-size: .82rem; }
.contact-final-cta h2 { max-width: 720px; margin: 0 auto 15px; font-size: clamp(2.5rem, 4.6vw, 3.6rem); line-height: .9; letter-spacing: -.04em; }
.contact-final-cta h2 span { display: block; color: #fff; }
.contact-final-cta > p:not(:first-child) { color: rgba(255, 255, 255, .78); font-size: .9rem; }
.contact-final-cta__actions { display: flex; margin-top: 25px; justify-content: center; gap: 8px; }
.contact-final-cta__actions a { display: inline-flex; min-width: 124px; min-height: 42px; padding: 10px 23px; align-items: center; justify-content: center; border: 1px solid #fff; border-radius: 999px; background: #fff; color: var(--pink); font-size: .76rem; font-weight: 700; transition: background .25s ease, color .25s ease, transform .25s ease; }
.contact-final-cta__actions a:last-child { background: transparent; color: #fff; }

/* Blog listing */
.blog-listing { width: min(calc(100% - 48px), 1040px); margin: 0 auto; padding: 110px 0 130px; }
.blog-listing__header { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.blog-listing__header > p:first-child { margin-bottom: 7px; color: var(--purple); font-size: 1.05rem; }
.blog-listing__header h2 { margin: 0 0 14px; color: var(--purple); font-size: clamp(2.5rem, 4.5vw, 3.5rem); line-height: .92; letter-spacing: -.04em; }
.blog-listing__header h2 span { color: var(--pink); }
.blog-listing__header > p:last-child { max-width: 590px; margin: 0 auto; color: #8e898d; font-size: .84rem; line-height: 1.4; }
.blog-listing__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px 16px; }
.blog-card { min-width: 0; }
.blog-card__image { position: relative; display: block; overflow: hidden; border-radius: 17px; background: #f5e9e3; aspect-ratio: 1.52; }
.blog-card__image img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .4s cubic-bezier(.22, 1, .36, 1); }
.blog-card:hover .blog-card__image img { transform: scale(1.035); }
.blog-card__image > span { position: absolute; top: 10px; left: 10px; padding: 5px 13px; border-radius: 999px; background: #fff; color: var(--pink); font-size: .58rem; }
.blog-card__meta { display: flex; margin: 14px 0 13px; align-items: center; gap: 6px; }
.blog-card__meta time,
.blog-card__meta span { display: inline-flex; min-height: 18px; padding: 4px 12px; align-items: center; border-radius: 999px; background: var(--pink); color: #fff; font-size: .55rem; font-weight: 700; }
.blog-card__meta span { background: var(--purple); }
.blog-card h3 { margin: 0 0 10px; color: var(--purple); font-size: 1.18rem; font-weight: 600; line-height: 1.05; }
.blog-card h3 a { color: inherit; }
.blog-card > p { min-height: 0; margin: 0; color: #373035; font-size: .78rem; line-height: 1.2; }
.blog-card__read-more { display: inline-flex; margin-top: 14px; align-items: center; gap: 9px; color: var(--pink); font-size: .78rem; font-weight: 500; transition: color .2s ease, gap .2s ease; }
.blog-card__read-more:hover { gap: 13px; color: var(--pink); }
.blog-card__read-more i { font-size: .7rem; }
.blog-page .blog-card { display: none; }
.blog-page .blog-card.is-page-visible { display: block; }
.blog-pagination { display: grid; width: fit-content; margin: 48px auto 0; justify-items: center; gap: 8px; }
.blog-pagination__controls { display: flex; align-items: center; gap: 8px; }
.blog-pagination__controls button { display: grid; width: 34px; height: 34px; padding: 0; place-items: center; border: 0; border-radius: 50%; background: transparent; color: var(--purple); font: inherit; font-size: .9rem; cursor: pointer; transition: background .2s ease, color .2s ease; }
.blog-pagination__controls button.is-active { background: var(--pink); color: #fff; }
.blog-pagination__controls button:not(:disabled):not(.is-active):hover { background: rgba(197, 46, 91, .1); color: var(--pink); }
.blog-pagination__controls button:disabled { color: rgba(197, 46, 91, .3); cursor: default; }
.blog-pagination__status { margin: 0; color: var(--purple); font-size: .78rem; }

@media (max-width: 900px) {
  .blog-listing { width: min(calc(100% - 40px), 760px); padding: 90px 0 110px; }
  .blog-listing__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 768px) and (max-width: 900px) {
  .blog-listing { width: calc(100% - 48px); max-width: 1040px; }
  .blog-listing__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 42px 16px; }
  .blog-card h3 { font-size: 1rem; }
  .blog-card > p,
  .blog-card__read-more { font-size: .68rem; }
}

@media (min-width: 540px) and (max-width: 1024px) {
  .blog-page .blog-listing { padding-top: 35px; }
}

@media (max-width: 539px) {
  .blog-listing { width: min(calc(100% - 32px), 420px); padding: 76px 0 90px; }
  .blog-page .placements { padding-top: 60px; }
  .blog-page .blog-listing { padding-top: 20px; }
  .blog-listing__header { margin-bottom: 36px; }
  .blog-listing__header h2 { font-size: clamp(2.2rem, 10vw, 2.8rem); }
  .blog-listing__header > p:last-child { font-size: .76rem; }
  .blog-listing__grid { grid-template-columns: 1fr; gap: 46px; }
  .blog-card h3 { font-size: 1.25rem; }
  .blog-card > p { min-height: 0; }
}
.contact-final-cta__actions a:hover { background: var(--purple); border-color: var(--purple); color: #fff; transform: translateY(-2px); }

@media (max-width: 539px) {
  .contact-final-cta { width: min(calc(100% - 32px), 480px); margin-bottom: 90px; padding: 58px 22px; border-radius: 24px; }
  .contact-final-cta h2 { font-size: clamp(2.2rem, 10vw, 2.75rem); }
  .contact-final-cta > p:not(:first-child) { font-size: .78rem; }
  .contact-final-cta__actions { flex-direction: column; align-items: center; }
  .contact-final-cta__actions a { width: 100%; max-width: 230px; }
}

/* Contact page source order: details + form, map, then final CTA. */
.contact-page .about-hero + .placements { padding-top: 140px; }
.contact-form-section {
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
  width: 100%;
  margin: 0 0 100px;
  align-items: stretch;
  gap: clamp(22px, 2.5vw, 34px);
}
.contact-form-section .quick-response { display: block; width: min(100%, 350px); margin: 0; padding: 10px 0; justify-self: center; }
.contact-form-section .quick-response__intro { margin-bottom: 48px; }
.contact-form-section .quick-response__intro h2 { font-size: clamp(2.7rem, 4.2vw, 3.45rem); }
.contact-form-section .quick-response__contact,
.contact-form-section .quick-response__details { gap: 28px; }
.contact-form-section .quick-response__details { margin-top: 28px; }
.contact-form-section .quick-response__item { grid-template-columns: 52px minmax(0, 1fr); gap: 16px; }
.contact-form-section .quick-response__item > span { width: 50px; height: 50px; border-radius: 13px; }
.contact-form-section .inquiry-form { width: min(100%, 580px); height: 100%; padding: 32px; justify-self: center; }

@media (max-width: 767px) {
  .contact-page .about-hero + .placements { padding-top: 100px; }
  .contact-form-section { grid-template-columns: 1fr; width: min(100%, 600px); margin-right: auto; margin-left: auto; gap: 60px; }
  .contact-form-section .quick-response { padding: 0 8px; }
  .contact-form-section .quick-response__intro { text-align: center; }
  .contact-form-section .quick-response__intro > p:last-child { margin-right: auto; margin-left: auto; }
  .contact-form-section .quick-response__contact,
  .contact-form-section .quick-response__details { width: min(100%, 340px); margin-right: auto; margin-left: auto; }
  .contact-form-section .inquiry-form { justify-self: center; }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .contact-page .office-map { margin-bottom: 60px; }
  .contact-page .office-map + .contact-cta { padding-top: 0; }
}

@media (min-width: 1025px) {
  .contact-page .office-map { margin-bottom: 80px; }
  .contact-page .office-map + .contact-cta { padding-top: 10px; padding-bottom: 0; }
  .contact-page .placements { padding-bottom: 0; }
}

.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
.site-footer { position: relative; min-height: 560px; overflow: hidden; background: linear-gradient(180deg, #fff 0, #fff 132px, #68206b 132px, #68206b 100%); color: #fff; }
.footer-ribbons { position: absolute; z-index: 2; top: 73px; left: 50%; width: 120vw; height: 108px; transform: translateX(-50%); pointer-events: none; }
.footer-ribbon { position: absolute; left: -5%; display: flex; width: 110%; height: 24px; align-items: center; overflow: hidden; box-shadow: 0 -2px 0 #fff, 0 2px 0 #fff; color: #fff; font-size: clamp(9px, .7vw, 11px); font-weight: 700; line-height: 1; text-transform: uppercase; white-space: nowrap; }
.footer-ribbon__track { display: flex; width: max-content; min-width: 100%; align-items: center; }
.footer-ribbon__track::before,
.footer-ribbon__track::after { flex: 0 0 auto; content: "Dubai | Oman | UK | Bahrain | Saudi Arabia | Europe | Dubai | Oman | UK | Bahrain | Saudi Arabia | Europe | Dubai | Oman | UK | Bahrain | Saudi Arabia | Europe | "; }
.footer-ribbon__track span { display: block; flex: 0 0 auto; padding-right: .45em; }
.footer-ribbon--pink { top: 7px; background: #c72d5b; transform: rotate(4.8deg); }
.footer-ribbon--purple { top: 43px; background: #68206b; transform: rotate(-2.8deg); }
.site-footer__inner { position: relative; z-index: 1; width: min(calc(100% - 32px), 1000px); margin: auto; padding: 230px 0 48px; }
.site-footer__brand-row { display: grid; grid-template-columns: 1fr auto 110px; align-items: center; gap: 28px; }
.site-footer__logo { display: block; width: 180px; }
.site-footer__summary { display: none; }
.site-footer__socials { display: flex; align-items: center; gap: 8px; }
.site-footer__socials strong { margin-right: 4px; font-size: .62rem; text-transform: none; }
.site-footer__socials a { display: grid; width: 20px; height: 20px; place-items: center; border-radius: 50%; background: #fff; color: var(--purple); font-size: .65rem; transition: background-color .2s ease, color .2s ease; }
.site-footer__socials a:hover { background: var(--pink); color: #fff; }
.site-footer__badge { width: 92px; height: 92px; animation: footer-badge-spin 12s linear infinite; }
@keyframes footer-badge-spin { to { transform: rotate(360deg); } }

@media (min-width: 768px) {
  .site-footer__socials { transform: translateX(24px); }
}
.site-footer__grid { display: grid; grid-template-columns: .75fr .9fr 1.35fr 1.25fr; margin-top: 34px; gap: 28px; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; }
.footer-column h3 { margin: 0 0 7px; color: #c42f59; font-size: .75rem; text-transform: none; }
.footer-column a, .footer-column p { margin: 0 0 4px; font-size: .72rem; line-height: 1.1; }
.footer-column a { transition: color .2s ease; }
.footer-column a:hover { color: var(--pink); }
.footer-contact a, .footer-contact p { display: flex; align-items: center; gap: 8px; font-size: .82rem; }
.footer-contact i { display: grid; flex: 0 0 20px; width: 20px; height: 20px; border: 0; place-items: center; border-radius: 0; color: #fff; font-size: .85rem; }
.footer-subscribe p { margin: 8px 0 14px; text-transform: none; }
.footer-subscribe form { position: relative; display: grid; width: 85%; gap: 7px; }
.footer-subscribe input { width: 100%; height: 34px; padding: 0 15px; border: 0; border-radius: 999px; color: var(--purple); font: inherit; font-size: .7rem; }
.footer-subscribe button { width: 72px; height: 28px; border: 0; border-radius: 999px; background: var(--pink); color: #fff; font-size: .62rem; cursor: pointer; transition: background-color .2s ease, color .2s ease; }
.footer-subscribe button:hover { background: #fff; color: var(--pink); }
.site-footer__copyright { margin: 58px 0 0; font-size: .68rem; text-align: center; text-transform: none; }

@media (max-width: 767px) {
  .site-footer__inner { width: min(calc(100% - 36px), 600px); padding-top: 224px; }
  .site-footer__brand-row { grid-template-columns: 1fr auto; }
  .site-footer__socials { justify-self: end; }
  .site-footer__badge { display: none; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; row-gap: 30px; }
  .footer-contact, .footer-subscribe { grid-column: span 2; }
  .staffing-partner { grid-template-columns: 1fr; width: min(calc(100% - 36px), 600px); padding: 72px 0 62px; gap: 34px; text-align: center; }
  .staffing-partner__content > p:not(.staffing-partner__eyebrow) { margin-right: auto; margin-left: auto; }
  .staffing-partner__actions { justify-content: center; }
  .staffing-partner__visual { width: min(100%, 520px); margin: 0 auto; }
  .staffing-partner h2 { font-size: clamp(1.35rem, 6.5vw, 2.6rem); }
  .brands { margin-bottom: 30px; }
  .journey { width: min(calc(100% - 36px), 600px); padding: 62px 0 70px; }
  .journey__header { margin-bottom: 38px; }
  .journey__header h2 { font-size: clamp(2.25rem, 8vw, 3.2rem); }
  .journey__header > p:last-child br { display: none; }
  .journey__paths { grid-template-columns: 1fr; gap: 42px; }
  .journey-card { grid-template-columns: 1fr 1fr; }
  .journey__assurances { grid-template-columns: 1fr 1fr; padding: 20px; gap: 24px 0; }
  .journey__assurances li:nth-child(2) { border-right: 0; }
  .specialists { width: min(calc(100% - 36px), 700px); padding: 68px 0 0; }
  .specialists__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .why-placedex { grid-template-columns: 1fr; width: min(calc(100% - 48px), 600px); padding: 72px 0; gap: 48px; }
  .why-placedex__intro { text-align: center; }
  .why-placedex__intro > p:last-child { margin: 0 auto; }
}

@media (min-width: 540px) and (max-width: 1024px) {
  .journey { width: calc(100% - 32px); padding: 62px 0 70px; }
  .journey__header h2 { font-size: clamp(2.5rem, 7vw, 3.3rem); }
  .journey__paths { grid-template-columns: 1fr 1fr; gap: 22px; }
  .journey-card { grid-template-columns: .95fr 1.05fr; gap: 6px; text-align: left; }
  .journey-card__eyebrow { min-width: 120px; margin-bottom: 14px; padding: 6px 12px; font-size: .72rem; }
  .journey-card h3 { font-size: 1.05rem; }
  .journey-card__title--two-lines { white-space: normal; }
  .journey-card__content > p:not(.journey-card__eyebrow) { margin-bottom: 16px; font-size: .66rem; }
  .journey-card img { width: 98%; }
  .journey-card__button { min-width: 88px; padding: 7px 12px; font-size: .62rem; }
  .journey__assurances { grid-template-columns: repeat(4, 1fr); margin-top: 46px; padding: 16px 10px; gap: 0; }
  .journey__assurances li { grid-template-columns: 28px 1fr; padding: 0 8px; gap: 6px; border-right: 1px solid rgba(105, 39, 103, .12); }
  .journey__assurances li:nth-child(2) { border-right: 1px solid rgba(105, 39, 103, .12); }
  .journey__assurances li:last-child { border-right: 0; }
  .journey__assurances i { font-size: 1.55rem; }
  .journey__assurances strong { font-size: .58rem; }
  .journey__assurances span { font-size: .52rem; }
  .specialists { width: calc(100% - 40px); padding-top: 70px; }
  .specialists__grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .process-section { padding-top: 120px; }
}

@media (max-width: 539px) {
  .journey { width: min(calc(100% - 36px), 420px); }
  .journey__header > p:first-child { font-size: 1rem; }
  .journey__header h2 { font-size: clamp(2rem, 10vw, 2.7rem); }
  .journey__header > p:last-child { font-size: .8rem; }
  .journey__paths { gap: 60px; }
  .journey-card { grid-template-columns: 1fr; gap: 26px; text-align: center; }
  .journey-card__content > p:not(.journey-card__eyebrow) { max-width: 310px; margin-right: auto; margin-left: auto; }
  .journey-card img { grid-row: 1; width: min(90%, 330px); margin: 0 auto; transform: none; }
  .journey__assurances { grid-template-columns: 1fr; }
  .journey__assurances li { padding: 0 0 18px; border-right: 0; border-bottom: 1px solid rgba(105, 39, 103, .12); }
  .journey__assurances li:last-child { padding-bottom: 0; border-bottom: 0; }
  .specialists { width: min(calc(100% - 36px), 380px); }
  .specialists__header > p:first-child { font-size: .95rem; }
  .specialists__header h2 { font-size: clamp(2rem, 10vw, 2.75rem); }
  .specialists__header > p:last-child { font-size: .76rem; }
  .specialists__header > p:last-child br { display: none; }
  .specialists__grid { grid-template-columns: 1fr; }
  .specialist-card { padding: 24px; }
  .specialist-card img { width: 120%; max-width: 320px; }
  .specialist-card h3 { font-size: 1.8rem; }
  .specialist-card > p { min-height: 0; max-width: 280px; }
  .specialist-card ul { gap: 8px; }
  .specialist-card li { font-size: .65rem; }
  .specialist-card__read-more { width: auto; font-size: .72rem; }
  .why-placedex { width: min(calc(100% - 48px), 380px); gap: 38px; }
  .why-placedex__intro h2 { font-size: clamp(2rem, 10vw, 2.7rem); }
  .why-placedex__benefits { gap: 24px; text-align: center; }
  .why-placedex__benefits h3 { font-size: 1rem; }
}

@media (max-width: 420px) {
  .footer-ribbons { top: 73px; width: 160vw; }
  .site-footer__brand-row { grid-template-columns: 1fr; justify-items: center; }
  .site-footer__socials { justify-self: center; }
  .site-footer__grid { margin-top: 30px; }
  .site-footer__logo { width: 155px; }
}

@media (max-width: 539px) {
  .contact-cta { padding: 68px 18px 76px; }
  .contact-cta__eyebrow { font-size: .9rem; }
  .contact-cta h2 { font-size: clamp(2rem, 9vw, 2.55rem); line-height: .88; }
  .contact-cta__copy { max-width: 340px; font-size: .76rem; }
  .contact-cta__copy br { display: none; }
  .contact-cta__actions { margin-top: 20px; }
}

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

@media (min-width: 768px) {
  .faq-list {
    display: block;
    column-count: 2;
    column-gap: 10px;
  }
  .faq-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 9px;
    break-inside: avoid;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brands__track, .hero-badge { animation: none; }
}

@media (prefers-reduced-motion: reduce) {
  .global-presence__copy,
  .global-presence__markets button { transition: none; }
  .map-glow { animation: none; }
}

@media (min-width: 540px) and (max-width: 1024px) {
  html,
  body { width: 100%; max-width: 100%; }
  .site-hero,
  .utility-bar,
  .hero-shell { width: 100%; max-width: 100%; }
  .site-hero { overflow-x: clip; }
  .hero-shell { overflow-x: clip; overflow-y: visible; }

  .utility-bar__inner { width: min(calc(100% - 32px), 900px); }

  .main-nav {
    grid-template-columns: clamp(105px, 14vw, 135px) minmax(0, 1fr) clamp(82px, 10vw, 95px);
    width: min(calc(100% - 40px), 900px);
    padding-top: clamp(18px, 2.2vw, 23px);
  }
  .main-nav > *,
  .main-nav__links { min-width: 0; }
  .main-nav__links a { white-space: nowrap; }
  .main-nav__logo img { width: clamp(100px, 12vw, 124px); }
  .main-nav__links { gap: clamp(6px, 1.4vw, 15px); font-size: clamp(.54rem, 1vw, .67rem); }
  .main-nav__cta { padding: 9px 10px; font-size: clamp(.6rem, 1vw, .7rem); }

  .hero-shell { min-height: clamp(520px, 74vw, 760px); border-radius: 0 0 42px 42px; }
  .hero-copy { width: calc(100% - 40px); margin-top: clamp(52px, 8vw, 80px); padding: 0; }
  .hero-copy h1 { font-size: clamp(2rem, 4.5vw, 2.9rem); }
  .hero-copy .hero-copy__eyebrow { font-size: clamp(.72rem, 1.5vw, .95rem); }
  .hero-copy > p:last-child { max-width: 540px; margin-right: auto; margin-left: auto; font-size: clamp(.72rem, 1.4vw, .92rem); line-height: 1.25; }
  .hero-team { bottom: -80px; width: min(145vw, 1450px); max-width: none; }
  .hero-proof { top: auto; bottom: clamp(115px, 19vw, 195px); }
  .hero-proof--award { left: clamp(12px, 4vw, 42px); transform: scale(.62); transform-origin: left center; }
  .hero-proof--companies { right: clamp(12px, 4vw, 42px); transform: scale(.62); transform-origin: right center; }
  .hero-badge { bottom: calc(clamp(110px, 14vw, 150px) / -2); width: clamp(110px, 14vw, 150px); height: clamp(110px, 14vw, 150px); }
  .about-hero .hero-shell { min-height: 350px; }

  .placements { width: min(calc(100% - 48px), 940px); padding: 70px 0 24px; }
  .staffing-partner { padding: 55px 0 100px; }
  .about-hero + .placements .staffing-partner { padding-bottom: 40px; }
  .placements__intro { grid-template-columns: .95fr 1.05fr; gap: clamp(28px, 5vw, 52px); margin-bottom: 24px; }
  .placements h1 { font-size: clamp(1.75rem, 4vw, 3rem); }
  .placements__copy h2 { font-size: clamp(.9rem, 1.7vw, 1.1rem); }
  .placements__copy p { font-size: clamp(.66rem, 1.2vw, .79rem); line-height: 1.2; }
  .student-card h3 { font-size: clamp(.72rem, 1.5vw, 1rem); white-space: normal; }
  .student-card strong,
  .student-card p { font-size: clamp(.5rem, 1vw, .68rem); white-space: normal; overflow-wrap: anywhere; }

  .brands { margin-top: clamp(52px, 7vw, 72px); }
  .brand-logo { width: clamp(92px, 12vw, 118px); height: 42px; margin-right: clamp(20px, 3vw, 28px); }

  /* 78px from .process-section plus 22px here gives a 100px section gap. */
  .global-presence { width: min(calc(100vw - 56px), 940px); padding: 22px 0 60px; }
  .global-presence__intro { grid-template-columns: .95fr 1.05fr; gap: clamp(32px, 5vw, 58px); }
  .global-presence__eyebrow { font-size: clamp(1rem, 2vw, 1.3rem); }
  .global-presence h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
  .global-presence__copy h3 { font-size: clamp(.95rem, 1.8vw, 1.2rem); }
  .global-presence__copy p { font-size: clamp(.68rem, 1.25vw, .84rem); }
  .global-presence__visual { grid-template-columns: clamp(140px, 19vw, 180px) minmax(0, 1fr); gap: clamp(24px, 4vw, 40px); margin-top: 32px; }
  .global-presence__markets button { min-height: 36px; padding: 9px 15px; font-size: clamp(.62rem, 1.1vw, .74rem); white-space: normal; }

  /* 60px from .global-presence plus 40px here gives a 100px section gap. */
  .why-placedex { padding-top: 40px; }
  /* 92px from .why-placedex plus 8px here gives a 100px section gap. */
  .talent-success { padding-top: 8px; }
  /* 96px from .talent-success plus 4px here gives a 100px section gap. */
  .team-section { padding-top: 4px; }
  /* 100px from .team-section plus 0px here gives a 100px section gap. */
  .reviews-section { padding-top: 0; }

  .founder-message { grid-template-columns: .9fr 1.1fr; width: min(calc(100vw - 56px), 940px); min-height: 0; padding: 90px 20px 52px; gap: clamp(30px, 5vw, 55px); }
  .founder-message h2 { font-size: clamp(1.7rem, 3.6vw, 2.8rem); }
  .founder-message blockquote { margin: 26px 0 27px; padding: clamp(22px, 3.5vw, 32px); font-size: clamp(.72rem, 1.2vw, .86rem); }
  .founder-message__signature strong { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }

  /* 52px from .founder-message plus 48px here gives a 100px section gap. */
  .faq-section { width: min(calc(100vw - 56px), 940px); padding: 48px 20px 42px; }
  .faq-section__header { margin-bottom: 34px; }
  .faq-section__header h2 { font-size: clamp(2rem, 4.3vw, 2.9rem); }
  .faq-section__body { grid-template-columns: .72fr 1.28fr; gap: clamp(28px, 5vw, 46px); }
  .faq-item button { min-height: 50px; padding: 13px 17px; font-size: clamp(.7rem, 1.2vw, .82rem); }
  /* Keep the contact area compact between the FAQ and footer. */
  .contact-cta { padding-top: 8px; padding-bottom: 0; }
  .site-footer { background: linear-gradient(180deg, #fff 0, #fff 50px, #68206b 50px, #68206b 100%); }
}

@media (min-width: 768px) {
  .site-footer__inner {
    display: grid;
    grid-template-columns: 205px minmax(0, 1fr);
    column-gap: 42px;
  }
  .site-footer__brand-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .site-footer__logo { width: 150px; }
  .site-footer__summary {
    display: block;
    max-width: 195px;
    margin: 26px 0 30px;
    font-size: .70rem;
    line-height: 1.18;
  }
  .site-footer__socials { flex-wrap: wrap; transform: none; }
  .site-footer__socials strong { flex-basis: 100%; margin-bottom: 2px; }
  .site-footer__badge { display: none; }
  .site-footer__grid {
    grid-template-columns: .8fr .9fr 1.35fr 1.05fr;
    margin-top: 58px;
    gap: 24px;
  }
  .site-footer__copyright { grid-column: 1 / -1; }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .site-footer__inner {
    grid-template-columns: 180px minmax(0, 1fr);
    column-gap: 18px;
  }
  .site-footer__grid { gap: 14px; }
}

@media (min-width: 540px) and (max-width: 767px) {
  .utility-bar { height: 18px; font-size: .52rem; }
  .main-nav { grid-template-columns: 96px minmax(0, 1fr) 76px; width: calc(100% - 24px); }
  .main-nav__logo img { width: 90px; }
  .main-nav__links { gap: clamp(4px, .8vw, 7px); font-size: clamp(.46rem, 1vw, .56rem); }
  .main-nav__cta { padding: 8px 7px; font-size: .56rem; }
  .hero-shell { min-height: clamp(450px, 70vw, 540px); }
  .hero-copy { width: calc(100% - 32px); margin-top: 36px; }
  .hero-copy h1 { font-size: clamp(1.7rem, 4.5vw, 2.1rem); }
  .hero-copy .hero-copy__eyebrow { font-size: .7rem; }
  .hero-copy > p:last-child { max-width: 440px; font-size: .7rem; }
  .hero-team { width: 125vw; max-width: none; }
  .hero-proof--award,
  .hero-proof--companies { transform: scale(.54); }
  .hero-badge { width: 108px; height: 108px; bottom: -54px; }
  /* Keep the first section closer to the hero on tablet-sized screens. */
  .placements { padding-top: 52px; }
  .staffing-partner { padding-top: 38px; }
}

@media (max-width: 539px) {
  .placements { padding-top: 70px; }
  .staffing-partner { padding: 35px 0 100px; }

  .site-footer { background: linear-gradient(180deg, #fff 0, #fff 64px, #68206b 64px, #68206b 100%); }
  .footer-ribbons { top: 15px; width: 160vw; }
  .site-footer__inner { width: min(calc(100% - 72px), 360px); padding-top: 86px; }
  .site-footer__brand-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .site-footer__brand-row > a { margin-top: 60px; align-self: center; }
  .site-footer__logo { align-self: center; }
  .site-footer__summary {
    display: block;
    max-width: 100%;
    margin: 28px 0 16px;
    font-size: .78rem;
    line-height: 1.25;
    text-align: center;
  }
  .site-footer__socials {
    width: fit-content;
    align-self: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
  }
  .site-footer__socials strong {
    flex-basis: 100%;
    margin: 0 0 4px;
    font-size: .9rem;
    text-align: center;
  }
  .site-footer__socials a {
    width: 20px;
    height: 20px;
    font-size: .65rem;
  }
  .site-footer__grid { width: 92%; margin: 38px auto 0; column-gap: 4px; row-gap: 30px; }
  .site-footer__grid > .footer-column { align-items: center; text-align: center; }
  .footer-contact, .footer-subscribe { grid-column: 1 / -1; }
  .footer-contact { align-items: center; text-align: center; }
  .footer-contact a,
  .footer-contact p { width: fit-content; justify-content: center; }
  .footer-subscribe { align-items: center; text-align: center; }
  .footer-subscribe form { width: min(100%, 180px); justify-items: center; }
  .site-footer__copyright { margin-top: 44px; }
  .utility-bar { height: auto; padding: 8px 0; }
  .utility-bar__inner { width: calc(100% - 24px); justify-content: center; }
  .utility-bar__inner, .utility-bar__inner div { gap: 7px; }
  .utility-bar__inner > div:first-child { width: 92%; justify-content: space-between; }
  .utility-bar__inner > div { min-width: 0; }
  .utility-bar__inner div:last-child { display: none; }
  .utility-bar__inner div:last-child span { display: none; }
  .utility-bar__inner a { font-size: clamp(.74rem, 2.3vw, .82rem); white-space: nowrap; }
  .hero-shell { min-height: 700px; border-radius: 0 0 34px 34px; }
  .about-hero .hero-shell { min-height: 400px; }
  .main-nav { grid-template-columns: 1fr auto; width: calc(100% - 34px); padding-top: 20px; }
  .main-nav__logo img { width: 140px; }
  .main-nav__logo { margin-left: 8px; }
  .main-nav__links, .main-nav__cta { display: none; }
  .main-nav__toggle { position: relative !important; z-index: 1003 !important; top: auto; right: auto; display: grid !important; visibility: visible !important; width: 44px; height: 44px; padding: 11px; border: 0; place-content: center; justify-self: end; gap: 5px; border-radius: 0; background: transparent; color: #fff; opacity: 1 !important; cursor: pointer; }
  .main-nav__toggle span { display: block; width: 20px; height: 2px; border-radius: 2px; background: currentColor; transition: transform .25s, opacity .25s; }
  .main-nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .main-nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .main-nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav__toggle[aria-expanded="true"] { position: fixed !important; top: 38px; right: 18px; color: var(--purple); }
  .main-nav__mobile { position: fixed; z-index: 1002; top: 0; right: 0; left: auto; display: grid; align-content: start; width: min(84vw, 360px); height: 100dvh; max-height: none; padding: 100px 38px 42px; overflow-x: hidden; overflow-y: auto; border-radius: 0; background: #fff; color: var(--purple); opacity: 0; visibility: hidden; transform: translateX(105%); box-shadow: -20px 0 55px rgba(24, 9, 25, .22); transition: opacity .25s ease, visibility .25s ease, transform .35s cubic-bezier(.22, 1, .36, 1); }
  .main-nav__mobile.is-open { max-height: none; padding: 100px 38px 42px; opacity: 1; visibility: visible; transform: translateX(0); }
  .main-nav__mobile > a:not(.main-nav__mobile-logo):not(.main-nav__mobile-cta) { padding: 12px 4px; border-radius: 7px; font-size: .98rem; line-height: 1.2; }
  .main-nav__mobile > a:hover, .main-nav__mobile > a:focus-visible { background: #f9edf2; }
  .main-nav__mobile > a.is-current { color: var(--pink); font-weight: 700; }
  .main-nav__mobile-logo { display: block; width: 175px; margin: 0 0 32px; padding: 0 !important; }
  .main-nav__mobile-logo:hover, .main-nav__mobile-logo:focus-visible { background: transparent !important; }
  .main-nav__mobile-logo img { display: block; width: 100%; }
  .main-nav__mobile-submenu { display: grid; margin: -3px 0 4px 7px; padding-left: 10px; border-left: 1px solid rgba(102,39,102,.18); }
  .main-nav__mobile-submenu a { padding: 8px; border-radius: 7px; color: #8d688b; font-size: .8rem; }
  .main-nav__mobile-submenu a:hover, .main-nav__mobile-submenu a:focus-visible { background: #f9edf2; }
  .main-nav__mobile-cta { justify-self: start; margin-top: 26px; padding: 12px 24px !important; border-radius: 999px !important; background: var(--pink); color: #fff; font-size: .8rem !important; }
  .main-nav__mobile-cta:hover, .main-nav__mobile-cta:focus-visible { background: var(--purple) !important; }
  body.mobile-nav-open { overflow: hidden; }
  body.mobile-nav-open .main-nav { z-index: 1001; }
  body.mobile-nav-open::before { position: fixed; z-index: 1000; inset: 0; background: rgba(20, 11, 20, .5); content: ""; }
  .hero-copy { margin-top: 64px; }
  .hero-copy h1 { font-size: clamp(1.65rem, 6.8vw, 2.05rem); }
  .hero-copy br { display: none; }
  .hero-copy .mobile-copy-break { display: inline; }
  .hero-copy .mobile-copy-break br { display: block; }
  .hero-copy .desktop-copy-break { display: none; }
  .hero-copy .hero-copy__eyebrow { max-width: 420px; margin: 0 auto 10px; font-size: .82rem; }
  .hero-copy > p:last-child { max-width: 340px; margin: 14px auto 0; font-size: .78rem; line-height: 1.35; }
  .hero-team { bottom: -59px; width: 820px; max-width: none; height: auto; }
  .hero-proof { top: auto; bottom: 285px; }
  .hero-proof--award { left: 62px; bottom: 291px; transform: scale(.6); transform-origin: left; }
  .hero-proof--companies { right: 56px; bottom: 277px; transform: scale(.48); transform-origin: right; }
  .hero-badge { bottom: -50px; width: 100px; height: 100px; }
  .placements { width: min(100% - 28px, 600px); padding-top: 104px; }
  .placements__intro { grid-template-columns: 1fr; gap: 18px; margin-bottom: 28px; text-align: center; }
  .placements__copy { padding-top: 0; }
  .placements__copy p { margin-right: auto; margin-left: auto; }
  .success-stories__track { --story-gap: 18px; }
  .student-card { flex-basis: calc((100% - 18px) / 2); }
  .brands { margin-top: 65px; }
  .global-presence { left: auto; width: 100%; padding: 76px 0 50px; transform: none; }
  .global-presence__intro { grid-template-columns: 1fr; gap: 18px; }
  .global-presence__copy { padding-bottom: 0; }
  .global-presence__visual { grid-template-columns: 145px minmax(0, 1fr); gap: 18px; margin-top: 28px; }
  .global-presence__markets button { padding: 9px 16px; }
  .founder-message { left: auto; grid-template-columns: 1fr; width: 100%; padding: 70px 0 50px; gap: 28px; transform: none; }
  .founder-message__portrait { width: min(100%, 430px); margin: auto; }
  .founder-message__content { order: -1; }
  .founder-message blockquote { padding: 22px; }
  .faq-section { left: auto; width: 100%; padding: 70px 0; transform: none; }
  .faq-section__body { grid-template-columns: 1fr; gap: 32px; }
  .faq-section__portrait { width: min(100%, 430px); margin: auto; }
}

@media (max-width: 420px) {
  .utility-bar__inner { width: calc(100% - 24px); justify-content: center; }
  .hero-shell { min-height: 640px; }
  .hero-copy { margin-top: 46px; padding: 0 14px; }
  .hero-copy h1 { font-size: clamp(2rem, 10vw, 2.6rem); }
  .hero-team { bottom: -59px; width: 790px; }
  .hero-proof { bottom: 260px; }
  .hero-proof--award { left: 58px; bottom: 266px; transform: scale(.54); }
  .hero-proof--companies { right: 28px; bottom: 252px; transform: scale(.54); }
  .placements h1 { font-size: 2.6rem; }
  .success-stories__track { --story-gap: 14px; }
  .student-card { flex-basis: 100%; }
  .student-card h3 { font-size: 1.1rem; }
  .student-card strong, .student-card p { font-size: .7rem; }
  .global-presence h2 { font-size: 2.6rem; }
  .global-presence__visual { grid-template-columns: 1fr; }
  .global-presence__markets { grid-template-columns: 1fr 1fr; order: 2; }
  .global-presence__markets button { overflow: hidden; text-align: center; text-overflow: ellipsis; }
  .founder-message { grid-template-columns: 1fr; padding-top: 58px; }
  .founder-message__portrait { width: min(100%, 380px); margin: auto; }
  .founder-message__content { order: -1; }
  .founder-message h2 { font-size: 2.35rem; }
  .faq-section__body { grid-template-columns: 1fr; }
  .faq-section__portrait { width: min(100%, 380px); margin: auto; }
  .faq-section__header h2 { font-size: 2.55rem; }
  .faq-item button { min-height: 54px; padding: 14px 16px; }
}

@media (max-width: 340px) {
  .main-nav__logo img { width: 122px; }
  .hero-copy .hero-copy__eyebrow { font-size: .72rem; }
  .hero-proof--award, .hero-proof--companies { transform: scale(.5); }
  .global-presence__markets { grid-template-columns: 1fr; }
}

@media (max-width: 539px) {
  .hero-proof--companies { transform: scale(.68); }
  .hero-proof--award { transform: scale(.80); }
}

@media (max-width: 340px) {
  .hero-proof--companies { transform: scale(.64); }
  .hero-proof--award { transform: scale(.76); }
}

@media (max-width: 539px) {
  .global-presence {
    width: 100%;
    padding: 72px 0 56px;
  }
  .global-presence__intro {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: center;
  }
  .global-presence__eyebrow {
    margin-bottom: 4px;
    font-size: .86rem;
  }
  .global-presence h2 {
    font-size: clamp(2rem, 9vw, 2.5rem);
    line-height: .94;
  }
  .global-presence__copy {
    max-width: 310px;
    margin: 0 auto;
  }
  .global-presence__copy h3 {
    margin-bottom: 5px;
    font-size: 1.02rem;
  }
  .global-presence__copy .mobile-copy-break { display: inline; }
  .global-presence__copy .mobile-copy-break br { display: block; }
  .global-presence__copy p {
    margin: 0 auto;
    font-size: .76rem;
    line-height: 1.15;
  }
  .global-presence__visual {
    display: flex;
    flex-direction: column;
    gap: 36px;
    margin-top: 34px;
  }
  .global-presence__map {
    order: 1;
    width: 100%;
  }
  .global-presence__markets {
    order: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 86%;
    margin: 0 auto;
    gap: 7px;
  }
  .global-presence__markets li:nth-child(1) { order: 1; }
  .global-presence__markets li:nth-child(5) { order: 2; }
  .global-presence__markets li:nth-child(2) { order: 3; }
  .global-presence__markets li:nth-child(6) { order: 4; }
  .global-presence__markets li:nth-child(3) { order: 5; }
  .global-presence__markets li:nth-child(7) { order: 6; }
  .global-presence__markets li:nth-child(4) { order: 7; }
  .global-presence__markets li:nth-child(8) { order: 8; }
  .global-presence__markets button {
    min-height: 34px;
    padding: 8px 18px;
    font-size: .66rem;
    text-align: center;
  }
  .global-presence__markets button:hover { transform: none; }
}

@media (max-width: 539px) {
  .founder-message {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 72px 6px 58px;
    gap: 0;
    text-align: center;
  }
  .founder-message__content { display: contents; }
  .founder-message__eyebrow {
    order: 1;
    margin-bottom: 10px;
    font-size: .82rem;
  }
  .founder-message h2 {
    order: 2;
    font-size: clamp(1.75rem, 8vw, 2.15rem);
    line-height: .94;
  }
  .founder-message__portrait {
    order: 3;
    align-self: center;
    width: min(88%, 350px);
    margin-top: 25px;
  }
  .founder-message blockquote {
    z-index: 2;
    order: 4;
    width: calc(100% - 12px);
    margin: -2px auto 0;
    padding: 25px 28px;
    border-radius: 22px;
    font-size: .84rem;
    line-height: 1.22;
    text-align: center;
  }
  .founder-message blockquote::after {
    bottom: -18px;
    left: 30px;
    border-width: 20px 22px 0 0;
  }
  .founder-message__signature {
    order: 5;
    margin: 34px 0 0;
    justify-items: center;
  }
  .founder-message__signature strong { font-size: 1.55rem; }
  .founder-message__signature span { font-size: .62rem; }
  .faq-section__portrait {
    width: 112%;
    max-width: none;
    margin-right: -6%;
    margin-left: -6%;
  }
  .faq-list {
    width: 90%;
    margin-right: auto;
    margin-left: auto;
  }
}

/* Three-column Why Placedex layout for tablet screens. */
@media (min-width: 540px) and (max-width: 1024px) {
  .site-footer { min-height: 0; }
  .site-footer__inner { padding-top: 100px; padding-bottom: 24px; }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .staffing-partner { padding-bottom: 38px; }
  .company-services { grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: 28px; text-align: left; }
  .company-services > div { min-width: 0; }
  .company-services h2 { font-size: clamp(1.65rem, 3.5vw, 2.25rem); }
  .company-services__areas ul { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 20px; }
  .company-services__areas { font-size: .8rem; }
  .process-section { padding-bottom: 100px; }

  .why-placedex {
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.08fr) minmax(0, 1.15fr);
    width: calc(100% - 48px);
    max-width: 960px;
    padding: 72px 0;
    align-items: stretch;
    gap: clamp(18px, 2.5vw, 28px);
  }

  .why-placedex__intro { text-align: left; }
  .why-placedex__intro > p:last-child { margin: 0; }
  .why-placedex__intro h2 { font-size: clamp(2.25rem, 4.8vw, 3rem); }
  .why-placedex__benefits { gap: 10px; }
  .why-placedex__benefits button { min-height: 54px; padding: 11px 20px; font-size: clamp(.68rem, 1.25vw, .82rem); }
  .why-placedex__visual { grid-column: auto; min-height: 100%; padding: clamp(24px, 3vw, 34px); }
}

/* About page milestone timeline. */
.milestone-journey {
  position: relative;
  left: 50%;
  width: min(calc(100vw - 48px), 1120px);
  padding: 110px 0 120px;
  transform: translateX(-50%);
}

.milestone-journey__header { max-width: 700px; margin: 0 auto 72px; text-align: center; }
.milestone-journey__header > p:first-child { margin-bottom: 7px; color: var(--purple); font-size: 1.15rem; }
.milestone-journey__header h2 { margin: 0 0 15px; color: var(--purple); font-size: clamp(2.2rem, 4.4vw, 3.5rem); line-height: .92; letter-spacing: -.04em; }
.milestone-journey__header h2 span { display: block; color: var(--pink); }
.milestone-journey__header > p:last-child { max-width: 570px; margin: 0 auto; color: #aaa7a8; font-size: .86rem; line-height: 1.3; }

.milestone-journey__timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  padding: 0;
  gap: 14px;
  list-style: none;
}

.milestone-journey__timeline::before {
  position: absolute;
  top: 48px;
  right: 8%;
  left: 8%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  content: "";
}

.milestone-journey__timeline li { position: relative; min-width: 0; padding-top: 79px; }
.milestone-journey__timeline li::before {
  position: absolute;
  z-index: 2;
  top: 39px;
  left: 50%;
  width: 16px;
  height: 16px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 2px rgba(197, 46, 91, .2);
  content: "";
  transform: translateX(-50%);
}

.milestone-journey__timeline article {
  min-height: 125px;
  padding: 16px 19px;
  border: 1px solid rgba(102, 39, 102, .08);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(54, 34, 52, .07);
  transition: transform .3s cubic-bezier(.22, 1, .36, 1), box-shadow .3s ease;
}

.milestone-journey__timeline li:nth-child(even) article { transform: translateY(24px); }
.milestone-journey__timeline article:hover { transform: translateY(-7px); box-shadow: 0 18px 42px rgba(101, 39, 101, .13); }
.milestone-journey__timeline li:nth-child(even) article:hover { transform: translateY(17px); }
.milestone-journey__timeline time { display: block; margin-bottom: 18px; color: var(--pink); font-size: 1.65rem; font-weight: 800; line-height: 1; }
.milestone-journey__timeline article p { color: #807a7e; font-size: .76rem; line-height: 1.35; }

@media (max-width: 767px) {
  .milestone-journey { width: min(calc(100vw - 36px), 500px); padding: 82px 0 92px; }
  .milestone-journey__header { margin-bottom: 48px; }
  .milestone-journey__header > p:first-child { font-size: .9rem; }
  .milestone-journey__header h2 { font-size: clamp(2rem, 9vw, 2.7rem); }
  .milestone-journey__header > p:last-child { font-size: .76rem; }
  .milestone-journey__timeline { grid-template-columns: 1fr; padding-left: 38px; gap: 16px; }
  .milestone-journey__timeline::before { top: 8px; bottom: 8px; left: 9px; width: 3px; height: auto; }
  .milestone-journey__timeline li { padding-top: 0; }
  .milestone-journey__timeline li::before { top: 30px; left: -29px; }
  .milestone-journey__timeline article,
  .milestone-journey__timeline li:nth-child(even) article { min-height: 0; transform: none; }
  .milestone-journey__timeline article:hover,
  .milestone-journey__timeline li:nth-child(even) article:hover { transform: translateY(-4px); }
}

/* About page values. */
.about-values {
  position: relative;
  left: 50%;
  width: min(calc(100vw - 48px), 1100px);
  padding: 100px 0 112px;
  transform: translateX(-50%);
}

.about-values__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 48px;
  align-items: end;
  gap: 60px;
}

.about-values__header > div > p { margin-bottom: 7px; color: var(--purple); font-size: 1.15rem; }
.about-values__header h2 { margin: 0; color: var(--purple); font-size: clamp(1.7rem, 4.4vw, 3.5rem); line-height: .92; letter-spacing: -.04em; white-space: nowrap; }
.about-values__header h2 span { display: inline; color: var(--pink); }
.about-values__header > p { max-width: 470px; padding-bottom: 4px; color: #aaa7a8; font-size: .86rem; line-height: 1.3; }

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  gap: 14px;
  list-style: none;
}

.about-values__card {
  position: relative;
  min-height: 170px;
  overflow: hidden;
  padding: 30px 26px;
  border: 1px solid #ebe6e9;
  border-radius: 22px;
  background: #fff;
  transition: border-color .3s ease, transform .3s cubic-bezier(.22, 1, .36, 1), box-shadow .3s ease;
}

.about-values__card--featured { grid-row: span 2; min-height: 354px; background: linear-gradient(155deg, var(--purple), #852762); color: #fff; }
.about-values__card--wide { grid-column: span 3; background: #fbf1f5; }
.about-values__card:hover { z-index: 1; border-color: rgba(197, 46, 91, .2); transform: translateY(-6px); box-shadow: 0 18px 42px rgba(67, 38, 63, .1); }
.about-values__icon { position: absolute; top: 22px; right: 22px; display: grid; width: 36px; height: 36px; place-items: center; border-radius: 11px; background: #f8edf3; color: var(--pink); font-size: .9rem; }
.about-values__card--featured .about-values__icon { background: rgba(255, 255, 255, .13); color: #fff; }
.about-values__card h3 { margin: 0 0 12px; color: var(--purple); font-size: 1.35rem; font-weight: 700; }
.about-values__card--featured h3 { margin-top: 95px; color: #fff; font-size: 2rem; }
.about-values__card p { max-width: 330px; color: #918b8f; font-size: .78rem; line-height: 1.4; }
.about-values__card--featured p { color: rgba(255, 255, 255, .68); }

@media (min-width: 768px) and (max-width: 1024px) {
  .about-values { width: calc(100vw - 56px); padding: 88px 0 100px; }
  .about-values__header { gap: 36px; }
  .about-values__grid { grid-template-columns: repeat(3, 1fr); }
  .about-values__card--featured { grid-row: span 2; }
  .about-values__card--wide { grid-column: span 2; }
}

@media (max-width: 767px) {
  .about-values { width: min(calc(100vw - 36px), 500px); padding: 78px 0 88px; }
  .about-values__header { grid-template-columns: 1fr; margin-bottom: 36px; gap: 16px; text-align: center; }
  .about-values__header > div > p { font-size: .9rem; }
  .about-values__header h2 { font-size: clamp(1.7rem, 7.4vw, 2.7rem); }
  .about-values__header > p { margin: 0 auto; font-size: .76rem; }
  .about-values__grid { grid-template-columns: 1fr; }
  .about-values__card,
  .about-values__card--featured,
  .about-values__card--wide { grid-column: auto; grid-row: auto; min-height: 0; padding: 26px 24px; }
  .about-values__card--featured h3 { margin-top: 30px; font-size: 1.55rem; }
}

/* About page company and candidate services. */
.about-services {
  position: relative;
  left: 50%;
  width: min(calc(100vw - 48px), 1100px);
  padding: 106px 0 118px;
  transform: translateX(-50%);
}

.about-services__header { max-width: 760px; margin: 0 auto 50px; text-align: center; }
.about-services__header > p:first-child { margin-bottom: 7px; color: var(--purple); font-size: 1.15rem; }
.about-services__header h2 { margin: 0 0 15px; color: var(--purple); font-size: clamp(2.2rem, 4.4vw, 3.5rem); line-height: .92; letter-spacing: -.04em; }
.about-services__header h2 span { display: block; color: var(--pink); }
.about-services__header > p:last-child { max-width: 560px; margin: 0 auto; color: #aaa7a8; font-size: .86rem; line-height: 1.3; }

.about-services__panels { border-top: 1px solid #e7e1e5; }
.about-services__panel { position: relative; display: grid; grid-template-columns: .82fr 1.18fr; min-height: 0; overflow: visible; padding: 42px 18px; align-items: center; border-bottom: 1px solid #e7e1e5; border-radius: 0; column-gap: clamp(50px, 8vw, 110px); }
.about-services__panel--companies,
.about-services__panel--candidates { background: transparent; color: var(--ink); }
.about-services__label { grid-column: 1; grid-row: 1; justify-self: start; display: inline-flex; margin-bottom: 18px; padding: 7px 16px; border: 0; border-radius: 999px; background: #f8edf3; color: var(--purple); font-size: .72rem; font-weight: 700; }
.about-services__panel--candidates .about-services__label { grid-column: 2; background: #fceef2; color: var(--pink); }
.about-services__panel h3 { grid-column: 1; grid-row: 2; max-width: 390px; margin: 0 0 13px; color: var(--purple); font-size: clamp(1.45rem, 2.5vw, 2.05rem); line-height: 1; letter-spacing: -.03em; }
.about-services__panel--candidates h3 { grid-column: 2; color: var(--pink); }
.about-services__panel > p:not(.about-services__label) { grid-column: 1; grid-row: 3; max-width: 390px; margin: 0; color: #918b8f; font-size: .8rem; line-height: 1.3; }
.about-services__panel--candidates > p:not(.about-services__label) { grid-column: 2; }
.about-services__panel ul { position: relative; z-index: 1; grid-column: 2; grid-row: 1 / span 3; display: grid; grid-template-columns: 1fr 1fr; margin: 0; padding: 0; gap: 10px; list-style: none; }
.about-services__panel--candidates ul { grid-column: 1; }
.about-services__panel li { position: relative; padding: 13px 15px; border: 1px solid #eee8ec; border-radius: 12px; background: #faf8fa; color: var(--purple); font-size: .76rem; font-weight: 600; }
.about-services__panel--candidates li { background: #fff8fa; color: var(--pink); }

@media (min-width: 768px) and (max-width: 1024px) {
  .about-services { width: calc(100vw - 56px); padding: 90px 0 102px; }
  .about-services__panel { grid-template-columns: .9fr 1.1fr; min-height: 0; padding: 36px 10px; column-gap: 34px; }
  .about-services__label { margin-bottom: 18px; }
  .about-services__panel ul { grid-template-columns: 1fr; gap: 8px; }
  .about-services__panel li { padding-top: 10px; padding-bottom: 10px; }
}

@media (max-width: 767px) {
  .about-services { width: min(calc(100vw - 36px), 500px); padding: 80px 0 92px; }
  .about-services__header { margin-bottom: 36px; }
  .about-services__header > p:first-child { font-size: .9rem; }
  .about-services__header h2 { font-size: clamp(2rem, 9vw, 2.7rem); }
  .about-services__header > p:last-child { font-size: .76rem; }
  .about-services__panels { display: block; }
  .about-services__panel,
  .about-services__panel--companies,
  .about-services__panel--candidates { display: grid; grid-template-columns: 1fr; min-height: 0; padding: 32px 4px; border-radius: 0; gap: 0; }
  .about-services__label,
  .about-services__panel--candidates .about-services__label { grid-column: 1; grid-row: 1; margin-bottom: 18px; }
  .about-services__panel h3,
  .about-services__panel--candidates h3 { grid-column: 1; grid-row: 2; }
  .about-services__panel > p:not(.about-services__label),
  .about-services__panel--candidates > p:not(.about-services__label) { grid-column: 1; grid-row: 3; margin-bottom: 24px; }
  .about-services__panel ul,
  .about-services__panel--candidates ul { grid-column: 1; grid-row: 4; grid-template-columns: 1fr; }
}

/* About page vision and mission feature. */
.purpose-section {
  position: relative;
  left: 50%;
  width: min(calc(100vw - 48px), 1100px);
  padding: 104px 0 116px;
  transform: translateX(-50%);
}

.purpose-section__header { margin: 0 auto 46px; text-align: center; }
.purpose-section__header > p { margin-bottom: 7px; color: var(--purple); font-size: 1.05rem; }
.purpose-section__header h2 { margin: 0; color: var(--purple); font-size: clamp(2.2rem, 4.2vw, 3.4rem); line-height: .92; letter-spacing: -.04em; }
.purpose-section__header h2 span { color: var(--pink); }
.purpose-section__grid { display: grid; grid-template-columns: 1fr; gap: 0; border-bottom: 1px solid #e8e2e6; }

.purpose-card {
  position: relative;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  min-height: 0;
  padding: 42px 0;
  align-items: center;
  border-top: 1px solid #e8e2e6;
  gap: 42px;
}

.purpose-card--vision,
.purpose-card--mission { background: transparent; }
.purpose-card__topline { display: flex; align-items: flex-start; justify-content: space-between; }
.purpose-card__topline > span { position: relative; padding-left: 28px; color: var(--purple); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.purpose-card__topline > span::before { position: absolute; top: 50%; left: 0; width: 18px; height: 2px; background: currentColor; content: ""; transform: translateY(-50%); }
.purpose-card--mission .purpose-card__topline > span { color: var(--pink); }
.purpose-card__content { position: relative; z-index: 1; display: grid; grid-template-columns: .95fr 1.05fr; max-width: none; align-items: center; gap: clamp(28px, 5vw, 70px); }
.purpose-card h3 { max-width: 430px; margin: 0; color: var(--purple); font-size: clamp(1.55rem, 2.5vw, 2.15rem); font-weight: 500; line-height: 1.12; letter-spacing: -.035em; }
.purpose-card--mission h3 { color: var(--pink); }
.purpose-card p { max-width: 430px; margin: 0; color: #918b8f; font-size: .82rem; line-height: 1.4; }
.purpose-card--mission h3 { order: 2; }
.purpose-card--mission p { order: 1; }

@media (min-width: 768px) and (max-width: 1024px) {
  .purpose-section { width: calc(100vw - 56px); padding: 90px 0 102px; }
  .purpose-card { grid-template-columns: 120px minmax(0, 1fr); min-height: 0; padding: 34px 0; gap: 24px; }
  .purpose-card__content { gap: 24px; }
  .purpose-card h3 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
}

@media (max-width: 767px) {
  .purpose-section { width: min(calc(100vw - 36px), 500px); padding: 80px 0 92px; }
  .purpose-section__header { margin-bottom: 34px; }
  .purpose-section__header > p { font-size: .88rem; }
  .purpose-section__header h2 { font-size: clamp(2rem, 9vw, 2.7rem); }
  .purpose-section__header h2 span { display: block; }
  .purpose-section__grid { grid-template-columns: 1fr; gap: 0; }
  .purpose-card,
  .purpose-card--vision,
  .purpose-card--mission { grid-template-columns: 1fr; min-height: 0; padding: 30px 0; border-right: 0; border-bottom: 0; border-left: 0; border-radius: 0; gap: 22px; }
  .purpose-card__content { grid-template-columns: 1fr; margin-top: 0; gap: 14px; }
  .purpose-card--mission h3,
  .purpose-card--mission p { order: initial; }
  .purpose-card h3 { font-size: clamp(1.65rem, 7vw, 2.15rem); }
}

/* Interactive About services switcher. */
.about-services__tabs {
  display: flex;
  width: fit-content;
  margin: 0 auto 24px;
  padding: 5px;
  border: 1px solid #e8e2e6;
  border-radius: 999px;
  background: #faf8f9;
  gap: 4px;
}

.about-services__tabs button {
  min-width: 150px;
  padding: 11px 22px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #8e878b;
  font: inherit;
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color .25s ease, color .25s ease, box-shadow .25s ease;
}

.about-services__tabs button.is-active { background: var(--purple); color: #fff; box-shadow: 0 6px 16px rgba(102, 39, 102, .16); }
.about-services__tabs button:last-child.is-active { background: var(--pink); box-shadow: 0 6px 16px rgba(197, 46, 91, .16); }
.about-services__tabs button:focus-visible { outline: 3px solid rgba(197, 46, 91, .22); outline-offset: 2px; }

.about-services.is-interactive .about-services__panels { max-width: 920px; margin: 0 auto; border: 0; }
.about-services.is-interactive .about-services__panel { display: none; }
.about-services.is-interactive .about-services__panel.is-active {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  padding: 42px;
  border: 1px solid #e9e3e7;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(57, 38, 54, .07);
  animation: services-panel-in .35s cubic-bezier(.22, 1, .36, 1);
}

.about-services.is-interactive .about-services__panel .about-services__label,
.about-services.is-interactive .about-services__panel h3,
.about-services.is-interactive .about-services__panel > p:not(.about-services__label) { grid-column: 1; }
.about-services.is-interactive .about-services__panel ul { grid-column: 2; }

@keyframes services-panel-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 767px) {
  .about-services__tabs { width: 100%; }
  .about-services__tabs button { min-width: 0; flex: 1; padding: 10px 12px; }
  .about-services.is-interactive .about-services__panel.is-active { grid-template-columns: 1fr; padding: 26px 22px; }
  .about-services.is-interactive .about-services__panel ul { grid-column: 1; grid-row: 4; }
}

@media (prefers-reduced-motion: reduce) {
  .about-services.is-interactive .about-services__panel.is-active { animation: none; }
}

@media (max-width: 539px) {
  .company-partners { width: min(calc(100% - 32px), 380px); }
  .company-partners__grid { grid-template-columns: 1fr 1fr; gap: 11px; }
  .company-partners__grid li { min-height: 68px; padding: 9px; border-color: rgba(67, 59, 63, .3); }
  .company-partners__grid li:nth-child(n + 17) { display: none; }
  .company-partners__grid img { max-width: 112px; max-height: 38px; }
  .company-partners__grid { transition: opacity .16s ease, transform .16s ease; }
  .company-partners__grid.is-changing { opacity: 0; transform: translateY(5px); }
  .company-partners__mobile-slider { display: block; margin-top: 16px; }
  .company-partners__mobile-controls { display: grid; grid-template-columns: 24px 84px 24px; width: 148px; margin: 28px auto 0; align-items: center; justify-content: center; gap: 8px; }
  .company-partners__mobile-controls button { display: grid; width: 24px; height: 24px; padding: 0; place-items: center; border: 0; background: transparent; color: #171317; font-size: .65rem; cursor: pointer; }
  .company-partners__mobile-controls > span { position: relative; display: block; height: 2px; overflow: hidden; background: #cbc7c9; }
  .company-partners__mobile-controls > span i { position: absolute; inset: 0 auto 0 0; width: 4%; background: var(--pink); transition: width .35s ease; }
}

@media (max-width: 539px) and (prefers-reduced-motion: reduce) {
  .company-partners__grid { transition: none; }
}

@media (min-width: 1025px) {
  .about-hero + .placements { padding-top: 60px; }
  .about-hero + .placements .staffing-partner { padding-top: 50px; }
  .about-hero + .placements .talent-success { padding-bottom: 0; }
  .milestone-journey { padding-top: 120px; }
  .milestone-journey { padding-bottom: 0; }
  .purpose-section { padding-top: 120px; padding-bottom: 0; }
  .about-values { padding-top: 160px; padding-bottom: 0; }
  .about-services { padding-top: 160px; padding-bottom: 0; }
  .about-services + .specialists { padding-top: 160px; }
  .specialists + .why-placedex { padding-top: 160px; }
  .reviews-section + .company-partners { padding-top: 120px; }
  .process-section--about { padding-top: 68px; padding-bottom: 0; }
  .process-section--about + .global-presence { padding-top: 160px; padding-bottom: 148px; }
  .process-section--about + .why-placedex { padding-top: 140px; }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .about-hero + .placements .talent-success { padding-bottom: 0; }
  .purpose-section { padding-top: 100px; padding-bottom: 0; }
  .milestone-journey { padding-top: 100px; padding-bottom: 0; }
  .milestone-journey__header { margin-bottom: 40px; }
  .about-values { width: calc(100vw - 48px); padding-top: 100px; padding-bottom: 0; }
  .about-values__header { grid-template-columns: 1fr 1fr; align-items: end; text-align: left; }
  .about-values__header h2 { font-size: clamp(2.5rem, 5vw, 3.2rem); }
  .about-values__header > p { margin: 0; }
  .about-values__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
  .about-values__card { min-height: 170px; padding: 26px 22px; }
  .about-values__card--featured { grid-row: span 2; min-height: 352px; }
  .about-values__card--wide { grid-column: span 3; }
  .about-values__card--featured h3 { margin-top: 95px; }
  .founder-message { padding-top: 100px; }
  .why-placedex { padding-bottom: 0; }
  .process-section--about { padding-top: 100px; }
  .about-services { padding-top: 100px; }
}

@media (min-width: 540px) and (max-width: 1024px) {
  .faq-section {
    width: min(calc(100vw - 56px), 1000px);
    padding: 78px 0 86px;
  }
  .faq-section__header {
    max-width: 680px;
    margin-bottom: 44px;
  }
  .faq-section__header > p:first-child { font-size: .9rem; }
  .faq-section__header h2 {
    margin: 8px 0 13px;
    font-size: clamp(2.8rem, 6vw, 3.45rem);
    line-height: .90;
  }
  .faq-section__header > p:last-child { font-size: .82rem; }
  .faq-section__body {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .faq-list {
    display: block;
    width: 100%;
    column-count: 2;
    column-gap: 10px;
  }
  .faq-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 12px;
    break-inside: avoid;
  }
  .faq-item button {
    min-height: 52px;
    padding: 14px 20px;
    font-size: clamp(.82rem, 1.55vw, 1rem);
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .reviews-section { box-sizing: border-box; width: calc(100% - 56px); padding: 64px 0 120px; }
  .reviews-section__header { margin-bottom: 42px; gap: 34px; }
  .reviews-section__header h2 { max-width: 440px; font-size: clamp(2.25rem, 5vw, 3.1rem); }
  .reviews-section__heading > p:last-child { max-width: 370px; font-size: .68rem; }
  .reviews-section__stats { gap: clamp(26px, 5vw, 48px); }
  .reviews-section__stats dt { font-size: clamp(2.2rem, 5vw, 2.8rem); }
  .reviews-section__body { grid-template-columns: 150px minmax(0, 1fr); gap: 24px; }
  .reviews-section__intro h3 { font-size: 1.25rem; }
  .reviews-section__controls { width: 135px; }
  .review-card { flex-basis: calc((100% - 28px) / 3); }
  .review-card__content { min-height: 190px; padding: 20px 18px 17px; }
  .review-card__content > p { font-size: .67rem; line-height: 1.38; }
  .review-card footer { padding: 12px 10px 0; }
  .review-card footer img { width: 34px; height: 34px; }
  .review-card footer h3 { font-size: .7rem; }
  .review-card footer p { font-size: .5rem; }
  .reviews-section__trust { margin-top: 44px; }

  .team-section { width: min(calc(100% - 48px), 940px); padding-bottom: 50px; }
  .team-section__header { margin-bottom: 34px; }
  .team-section__grid { grid-template-columns: repeat(5, minmax(0, 1fr)); max-width: none; gap: clamp(10px, 1.8vw, 18px); }
  .team-member h3 { margin-top: 10px; font-size: clamp(.7rem, 1.45vw, 1rem); }
  .team-member > p { font-size: clamp(.46rem, .85vw, .63rem); }

  .influencer-community { min-height: 560px; padding-top: 225px; }
  .influencer-community__orbit { width: 1050px; transform: translateX(-50%) scale(.64); transform-origin: top center; }
  .influencer-community__features { grid-template-columns: repeat(4, 1fr); max-width: 400px; margin: 0 auto; }
}

@media (max-width: 767px) {
  .influencer-community { min-height: 0; padding: 238px 18px 62px; }
  .influencer-community__orbit { top: 18px; width: 720px; height: 390px; transform: translateX(-50%) scale(.54); transform-origin: top center; }
  .influencer-community__stats { max-width: 480px; margin-bottom: 42px; gap: 8px; }
  .influencer-community__stats dt { font-size: clamp(2rem, 9vw, 3rem); }
  .influencer-community__stats dd { font-size: clamp(.7rem, 2.8vw, 1rem); }
  .influencer-community h2 { margin-bottom: 36px; font-size: clamp(1.45rem, 6.4vw, 1.7rem); }
  .influencer-community h2 span { white-space: nowrap; }
  .influencer-community__copy br { display: none; }
  .influencer-community__features { grid-template-columns: 1fr 1fr; gap: 12px; }
  .influencer-community__features button { min-height: 68px; padding: 10px 12px; gap: 10px; }
  .influencer-community__features i { flex-basis: 38px; width: 38px; height: 38px; font-size: 1rem; }
  .influencer-community__features button > span { font-size: .72rem; }
}

@media (max-width: 420px) {
  .influencer-community { padding-top: 215px; }
  .influencer-community__orbit { width: 650px; transform: translateX(-50%) scale(.48); }
  .orbit-chip--comments,
  .orbit-icon--analytics { display: none; }
  .influencer-community__features { grid-template-columns: 1fr; }
}

@keyframes orbit-marquee { to { transform: translateX(-35%); } }

@media (max-width: 767px) {
  .influencer-community { min-height: 0; padding: 70px 18px 62px; }
  .influencer-community__orbit { display: none; }
  .influencer-community__content { top: 0; }
  .influencer-community__stats { top: 0; grid-template-columns: 1fr 1fr; max-width: 280px; margin: 0 auto 42px; gap: 28px 42px; }
  .influencer-community__stats dt { font-size: clamp(2rem, 10vw, 2.55rem); }
  .influencer-community__stats dd { margin-top: 3px; font-size: .65rem; }
  .influencer-community h2 { top: 0; margin-bottom: 28px; }
  .influencer-community__copy { top: 0; max-width: 320px; margin-bottom: 46px; font-size: .75rem; }
  .influencer-community__features { max-width: 300px; gap: 10px; }
  .influencer-community__features button { min-height: 52px; padding: 7px 10px 7px 5px; gap: 7px; }
  .influencer-community__features i { flex-basis: 30px; width: 30px; height: 30px; font-size: .7rem; }
  .influencer-community__features button > span { font-size: .56rem; }
}

@media (max-width: 767px) {
  .influencer-community { padding-top: 150px; }
  .influencer-community__orbit { top: 18px; left: 0; display: flex; width: max-content; height: 104px; padding: 10px 18px; align-items: center; gap: 12px; transform: none; animation: orbit-marquee 18s linear infinite alternate; }
  .influencer-community__arcs { display: none; }
  .influencer-community__orbit > :not(.influencer-community__arcs) { position: relative; inset: auto; flex: 0 0 auto; }
  .orbit-chip--comments,
  .orbit-icon--analytics { display: flex; }
  .orbit-icon { display: grid; }
}

/* Keep primary section headings at one consistent responsive scale. */
.journey__header h2,
.process-section__header h2,
.talent-success__content h2,
.team-section__header h2,
.reviews-section__header h2,
.specialists__header h2,
.why-placedex__intro h2,
.founder-message h2,
.faq-section__header h2,
.contact-cta h2 {
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
}
/* Full-page Inkbleed cursor layer; visual only, so page controls remain interactive. */
#inkbleed-cursor-root {
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
}

#inkbleed-cursor-root > div > div > div {
  background-color: #c72e5b !important;
}

@media (pointer: coarse), (prefers-reduced-motion: reduce) {
  #inkbleed-cursor-root { display: none; }
}

@media (min-width: 540px) and (max-width: 1024px) {
  .candidates-hero .hero-shell,
  .companies-hero .hero-shell {
    min-height: clamp(350px, 45vw, 420px);
  }
}

@media (max-width: 539px) {
  .candidates-hero .hero-shell,
  .companies-hero .hero-shell {
    min-height: 380px;
  }
  .candidates-hero .hero-copy { margin-top: 32px; }
}

/* Leave room for the community buttons while keeping the following gap at 140px. */
.influencer-community { padding-bottom: 48px; }
.reviews-section { padding-top: 92px; padding-bottom: 0; }
.team-section { padding-top: 120px; padding-bottom: 0; }
.founder-message { padding-top: 140px; }

/* Smooth, compositor-friendly motion for animated and draggable elements. */
.hero-badge,
.brands__track,
.success-stories__track,
.team-section__grid,
.orbit-avatar,
.map-glow,
.footer-ribbon__track {
  backface-visibility: hidden;
  will-change: transform;
}

.success-stories__track,
.reviews-section__track {
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}

.success-stories__track.is-dragging {
  cursor: grabbing;
  user-select: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .hero-badge,
  .brands__track,
  .team-section__grid,
  .orbit-avatar,
  .orbit-chip,
  .orbit-icon,
  .map-glow,
  .footer-ribbon__track {
    animation: none !important;
  }

  .success-stories__track,
  .reviews-section__track,
  .main-nav__mobile,
  .faq-item,
  .faq-item__answer,
  .faq-item__answer p {
    scroll-behavior: auto;
    transition: none !important;
  }
}
/* Single blog article model */
html.single-blog-root,
body.single-blog-page { overflow-x: clip; }

.single-blog-page .hero-copy h1 span {
  color: #c42f59;
  background: none;
  -webkit-text-fill-color: #c42f59;
}

.single-blog-page .placements {
  width: 100%;
  max-width: none;
  padding: 0;
}

.single-blog-page .single-blog {
  margin-top: -45px;
  padding: 0 0 110px;
  background: #fff;
}

.single-blog-page .single-blog__layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 0.92fr);
  gap: 26px;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  align-items: start;
  height: auto;
  overflow: visible;
}

.single-blog-page .single-blog__article {
  min-width: 0;
  height: auto;
  padding-right: 0;
  overflow: visible;
}

.single-blog-page .single-blog__cover {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 3 / 2;
  background: #faf5f8;
}

.single-blog-page .single-blog__cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-blog-page .single-blog__cover > span {
  position: absolute;
  top: 24px;
  left: 24px;
  min-width: 108px;
  padding: 11px 20px;
  border-radius: 999px;
  background: #fff;
  color: #cf2d5e;
  font-size: 13px;
  line-height: 1;
  text-align: center;
}

.single-blog-page .single-blog__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 34px 8px 14px;
}

.single-blog-page .single-blog__meta time,
.single-blog-page .single-blog__meta > span {
  padding: 7px 17px;
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
}

.single-blog-page .single-blog__meta time {
  background: #cf2d5e;
}

.single-blog-page .single-blog__meta > span {
  background: #70236f;
}

.single-blog-page .single-blog__article > h2 {
  margin: 0 8px 26px;
  color: #70236f;
  font-size: clamp(35px, 4vw, 49px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.single-blog-page .single-blog__article > h2 span {
  color: #c42f59;
}

.single-blog-page .single-blog__copy {
  padding: 0 8px;
}

.single-blog-page .single-blog__copy > h3,
.single-blog-page .single-blog__copy > p,
.single-blog-page .single-blog__copy > ul,
.single-blog-page .single-blog__inline-image {
  content-visibility: auto;
  contain-intrinsic-size: auto 120px;
}

.single-blog-page .single-blog__copy h3 {
  margin: 38px 0 18px;
  color: #cf2d5e;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
}

.single-blog-page .single-blog__copy > h3:first-child {
  margin-top: 8px;
}

.single-blog-page .single-blog__copy p,
.single-blog-page .single-blog__copy li {
  color: #211b22;
  font-size: 16px;
  line-height: 1.48;
}

.single-blog-page .single-blog__copy p {
  margin: 0 0 22px;
}

.single-blog-page .single-blog__copy ul {
  margin: 2px 0 26px;
  padding-left: 26px;
}

.single-blog-page .single-blog__copy li {
  margin-bottom: 7px;
  padding-left: 6px;
}

.single-blog-page .single-blog__copy li::marker {
  color: #cf2d5e;
}

.single-blog-page .single-blog__inline-image {
  margin: 34px 0 44px;
}

.single-blog-page .single-blog__inline-image img {
  display: block;
  width: 100%;
  border-radius: 18px;
}

.single-blog-page .single-blog__content-cta {
  color: #cf2d5e;
  font-weight: 600;
}

.single-blog-page .single-blog__sidebar {
  position: static;
  min-width: 0;
  height: auto;
  padding-right: 0;
  overflow: visible;
}

.single-blog-page .single-blog__ad {
  display: block;
  width: 100%;
  margin-top: 78px;
  margin-bottom: 34px;
  border-radius: 14px;
}

.single-blog-page .single-blog__latest {
  margin-bottom: 40px;
}

.single-blog-page .single-blog__latest > h2 {
  margin: 0 0 18px;
  color: #70236f;
  font-size: 31px;
  font-weight: 600;
  line-height: 1.1;
}

.single-blog-page .single-blog__latest-list {
  display: grid;
  gap: 14px;
}

.single-blog-page .single-blog__latest-item {
  display: grid;
  grid-template-columns: 44% minmax(0, 1fr);
  gap: 13px;
  color: inherit;
  text-decoration: none;
}

.single-blog-page .single-blog__latest-item > img {
  width: 100%;
  height: 112px;
  border-radius: 13px;
  object-fit: cover;
}

.single-blog-page .single-blog__latest-item > span {
  min-width: 0;
}

.single-blog-page .single-blog__latest-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 5px;
}

.single-blog-page .single-blog__latest-meta small {
  padding: 4px 6px;
  border-radius: 999px;
  background: #cf2d5e;
  color: #fff;
  font-size: 7px;
  font-weight: 600;
  line-height: 1;
}

.single-blog-page .single-blog__latest-meta small:last-child {
  background: #70236f;
}

.single-blog-page .single-blog__latest-item strong,
.single-blog-page .single-blog__latest-item em,
.single-blog-page .single-blog__latest-item b {
  display: block;
}

.single-blog-page .single-blog__latest-item strong {
  color: #70236f;
  font-size: 17px;
  line-height: 1.05;
}

.single-blog-page .single-blog__latest-item em {
  overflow: hidden;
  margin-top: 6px;
  color: #393239;
  font-size: 12px;
  font-style: normal;
  line-height: 1.12;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.single-blog-page .single-blog__latest-item b {
  margin-top: 6px;
  color: #cf2d5e;
  font-size: 11px;
  font-weight: 500;
  transition: color .25s ease;
}

.single-blog-page .single-blog__latest-item:hover b,
.single-blog-page .single-blog__latest-item:focus-visible b { color: #70236f; }

.single-blog-page .single-blog__pitch h2 {
  margin: 0 0 28px;
  color: #70236f;
  font-size: clamp(44px, 5vw, 66px);
  font-weight: 500;
  line-height: 0.82;
  letter-spacing: -0.05em;
}

.single-blog-page .single-blog__pitch h2 span {
  color: #cf2d5e;
}

.single-blog-page .single-blog__pitch > a {
  display: inline-block;
  margin-bottom: 35px;
  padding: 15px 25px;
  border-radius: 999px;
  background: #cf2d5e;
  color: #fff;
  text-decoration: none;
}

.single-blog-page .single-blog__pitch h3 {
  margin: 0 0 10px;
  color: #70236f;
  font-size: 27px;
}

.single-blog-page .single-blog__pitch p {
  margin: 0 0 30px;
  color: #393239;
  font-size: 14px;
  line-height: 1.25;
}

.single-blog-page .single-blog__social {
  display: flex;
  gap: 9px;
}

.single-blog-page .single-blog__social a {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  background: #70236f;
  color: #fff;
  font-size: 12px;
  transition: background-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.single-blog-page .single-blog__social a:hover,
.single-blog-page .single-blog__social a:focus-visible {
  background: #cf2d5e;
  transform: translateY(-3px);
  box-shadow: 0 7px 16px rgba(207, 45, 94, .28);
}

.single-blog-page .single-blog__pitch {
  position: static;
  padding-top: 8px;
}

.single-blog-page .single-blog__sticky-top {
  position: static;
}

.single-blog-page .single-blog__pitch .single-blog__contact-label {
  margin: 0 0 3px;
  color: #70236f;
  font-size: 15px;
  line-height: 1.2;
}

.single-blog-page .single-blog__pitch > h2 {
  margin: 0 0 12px;
  color: #c42f59;
  font-size: 29px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.single-blog-page .single-blog__pitch .single-blog__contact-copy {
  margin: 0 0 26px;
  color: #302a31;
  font-size: 14px;
  line-height: 1.32;
}

.single-blog-page .single-blog__contact-cards {
  display: grid;
  gap: 16px;
  margin-bottom: 34px;
}

.single-blog-page .single-blog__contact-card {
  padding: 25px 22px 23px;
  border-radius: 17px;
  color: #fff;
}

.single-blog-page .single-blog__contact-card--companies {
  background: #c42f59;
}

.single-blog-page .single-blog__contact-card--candidates {
  background: #70236f;
}

.single-blog-page .single-blog__contact-card h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 23px;
  line-height: 1.1;
}

.single-blog-page .single-blog__contact-card p {
  margin: 0 0 17px;
  color: #fff;
  font-size: 12px;
  line-height: 1.25;
}

.single-blog-page .single-blog__contact-card a {
  display: inline-block;
  margin: 0;
  padding: 8px 16px;
  border-radius: 999px;
  background: #fff;
  color: #70236f;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: background-color .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.single-blog-page .single-blog__contact-card--companies a:hover,
.single-blog-page .single-blog__contact-card--companies a:focus-visible {
  background: #70236f;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 7px 16px rgba(72, 22, 71, .24);
}

.single-blog-page .single-blog__contact-card--candidates a:hover,
.single-blog-page .single-blog__contact-card--candidates a:focus-visible {
  background: #cf2d5e;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 7px 16px rgba(207, 45, 94, .26);
}

.single-blog-page .single-blog__pitch > h3 {
  margin: 0 0 10px;
  color: #c42f59;
  font-size: 27px;
  line-height: 1.1;
}

.single-blog-page .single-blog__pitch > p:not(.single-blog__contact-label):not(.single-blog__contact-copy) {
  margin: 0 0 31px;
  color: #302a31;
  font-size: 14px;
  line-height: 1.3;
}

.single-blog-page .single-blog__pitch .single-blog__social {
  margin: 0 0 44px;
}

.single-blog-page .single-blog__map {
  display: block;
  width: 100%;
  height: 250px;
  border: 0;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(74, 35, 63, 0.12);
}

@media (min-width: 901px) {
  .single-blog-page .single-blog__layout {
    align-items: stretch;
    height: auto;
    max-height: none;
    overflow: visible;
  }

  .single-blog-page .single-blog__article {
    position: static;
    height: auto;
    padding-right: 0;
    align-self: start;
    overflow: visible;
  }

  .single-blog-page .single-blog__copy {
    overflow: visible;
  }

  .single-blog-page .single-blog__sidebar {
    position: relative;
    height: auto;
    align-self: stretch;
    overflow: visible;
  }

  .single-blog-page .single-blog__pitch {
    position: static;
    height: fit-content;
  }

  .single-blog-page .single-blog__sticky-panel {
    position: -webkit-sticky;
    position: sticky;
    top: 20px;
    height: fit-content;
    align-self: start;
  }

  .single-blog-page .single-blog__pitch .single-blog__contact-copy {
    margin-bottom: 18px;
  }

  .single-blog-page .single-blog__contact-cards {
    gap: 12px;
    margin-bottom: 24px;
  }

  .single-blog-page .single-blog__contact-card {
    padding: 20px 22px;
  }

  .single-blog-page .single-blog__contact-card p {
    margin-bottom: 12px;
  }

  .single-blog-page .single-blog__pitch > p:not(.single-blog__contact-label):not(.single-blog__contact-copy) {
    margin-bottom: 22px;
  }

  .single-blog-page .single-blog__pitch .single-blog__social {
    margin-bottom: 0;
  }
}

@media (max-width: 900px) {
  .single-blog-page .single-blog {
    margin-top: -30px;
    padding: 0 0 80px;
  }

  .single-blog-page .single-blog__layout {
    grid-template-columns: 1fr;
    gap: 26px;
    width: min(100% - 34px, 700px);
    height: auto;
    max-height: none;
    overflow: visible;
  }

  .single-blog-page .single-blog__article,
  .single-blog-page .single-blog__sidebar {
    position: static;
    height: auto;
    max-height: none;
    overflow: visible;
  }

  .single-blog-page .single-blog__copy p,
  .single-blog-page .single-blog__copy li {
    font-size: 16px;
  }

  .single-blog-page .single-blog__latest-item {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .single-blog-page .single-blog {
    margin-top: -20px;
    padding: 0 0 60px;
  }

  .single-blog-page .single-blog__layout {
    grid-template-columns: 1fr;
    width: min(100% - 28px, 620px);
    height: auto;
    overflow: visible;
  }

  .single-blog-page .single-blog__article {
    height: auto;
    padding-right: 0;
    overflow: visible;
  }

  .single-blog-page .single-blog__sidebar {
    position: static;
    height: auto;
    padding-right: 0;
    overflow: visible;
  }

  .single-blog-page .single-blog__pitch {
    position: static;
  }

  .single-blog-page .single-blog__sticky-panel {
    position: static;
  }

  .single-blog-page .single-blog__sticky-top {
    position: static;
  }

  .single-blog-page .single-blog__ad {
    margin-top: 40px;
  }

  .single-blog-page .single-blog__latest-item {
    grid-template-columns: 145px minmax(0, 1fr);
  }

  .single-blog-page .single-blog__latest-item > img {
    height: 100px;
  }
}
