/* ================================================================
   Hire Talent — standalone landing page styles
   Scoped entirely under .tc-lp / .tc-hire-landing to avoid theme conflicts.
   Brand colours: navy #14223B, blue #0065E4, white #ffffff.
   Headings: font-weight 400 (regular) throughout.
   ================================================================ */


/* ── Base reset (scoped) ── */
.tc-lp *, .tc-lp *::before, .tc-lp *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body.tc-hire-landing {
  background: #F7F9FC;
  overflow-x: hidden;
}

.tc-lp {
  font-family: 'Oakes Grotesk', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: #14223B;
  --blue:   #0065E4;
  --navy:   #14223B;
  --muted:  #4A586E;
  --slate:  #6B7A90;
  --orange: #F5A623;
  --bg:     #F7F9FC;
  --border: #E2E8F0;
}

.tc-lp ul { list-style: none; }
.tc-lp img { max-width: 100%; display: block; }

/* Hide the "I'm looking for work" search bar in the site nav on this page */
body.tc-hire-landing .jobs_archive_showing_but_not_in_jobpage_shortcode {
  display: none !important;
}


/* ================================================================
   HERO
   ================================================================ */
.tc-hire-hero {
  background: #fff;
  padding: 84px 5% 72px;
}

.tc-hire-hero__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.tc-hire-hero__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.tc-hire-hero h1 {
  font-family: 'Oakes Grotesk', system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(34px, 4.5vw, 50px);
  line-height: 1.2;
  color: var(--navy);
}

/* br tags in H1 are decorative — remove on small screens */
@media (max-width: 639px) {
  .tc-hire-hero h1 br { display: none; }
}

.tc-hire-hero__sub {
  font-size: 18px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 520px;
}

/* ── CTA Buttons ── */
.tc-hire-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 6px;
}

.tc-hire-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oakes Grotesk', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  border-radius: 99px;
  padding: 17px 29px;
  border: 1px solid var(--blue);
  text-decoration: none !important;
  transition: background .2s ease, color .2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.tc-hire-btn--primary {
  background: var(--blue);
  color: #fff !important;
}

.tc-hire-btn--primary:hover,
.tc-hire-btn--primary:focus {
  background: transparent;
  color: var(--blue) !important;
}

.tc-hire-btn--outline {
  background: transparent;
  color: var(--blue) !important;
}

.tc-hire-btn--outline:hover,
.tc-hire-btn--outline:focus {
  background: var(--blue);
  color: #fff !important;
}

/* ── Social proof ── */
.tc-hire-hero__social-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 2px;
}

.tc-hire-hero__stars {
  font-family: 'Oakes Grotesk', system-ui, sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 2px;
  color: var(--orange);
  line-height: 1;
}

.tc-hire-hero__review-text {
  font-family: 'Oakes Grotesk', system-ui, sans-serif !important;
  font-weight: 500;
  font-size: 14px;
  color: var(--slate);
  white-space: nowrap;
}

/* ── Hero image ── */
.tc-hire-hero__image {
  border-radius: 8px;
  overflow: hidden;
  align-self: stretch;
  min-height: 340px;
}

.tc-hire-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}


/* ── Responsive ── */
@media (max-width: 900px) {
  .tc-hire-hero {
    padding: 60px 5% 52px;
  }

  .tc-hire-hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tc-hire-hero__image {
    min-height: 280px;
    align-self: auto;
  }
}

@media (max-width: 480px) {
  .tc-hire-hero {
    padding: 48px 5% 40px;
  }

  .tc-hire-hero__ctas {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ================================================================
   CLIENT LOGO BANNER
   ================================================================ */
.tc-hire-logos {
  background: #fff;
  padding: 0 0 48px;
  overflow: hidden;
}

.tc-hire-logos__heading {
  font-family: 'Oakes Grotesk', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: #132965;
  text-align: center;
  white-space: nowrap;
  margin: 0 auto 32px;
  padding: 0 5%;
}

/* Edge fade mask */
.tc-hire-logos__track-wrap {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );
}

/* Infinite marquee. JS clones the first set, measures its actual rendered width,
   sets --logo-set-w, then starts the animation. Starting paused prevents a flash
   of the wrong distance before JS runs. */
.tc-hire-logos__track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  padding: 8px 0;
  animation: tc-logo-scroll 60s linear infinite;
  animation-play-state: paused;
}

.tc-hire-logos__track:hover {
  animation-play-state: paused;
}

.tc-hire-logos__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 210px;
}

.tc-hire-logos__item img {
  width: 150px;
  height: 44px;
  object-fit: contain;
  display: block;
  user-select: none;
}

@keyframes tc-logo-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-1 * var(--logo-set-w, 4830px))); }
}

/* Accessibility: respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .tc-hire-logos__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
    padding: 0 5%;
    gap: 0;
  }

  .tc-hire-logos__track .tc-hire-logos__item {
    width: auto;
    padding: 12px 24px;
  }

  .tc-hire-logos__item[aria-hidden="true"] {
    display: none;
  }
}


/* ================================================================
   SERVICES — THE PROBLEM WE SOLVE
   ================================================================ */
.tc-hire-services {
  background: #f3f7fd;
  padding: 88px 5% 96px;
}

.tc-hire-services__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 44px;
}

/* ── Header ── */
.tc-hire-services__header-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tc-hire-services__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.tc-hire-services__header-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 0 0 454px;
  max-width: 454px;
}

.tc-hire-eyebrow {
  font-family: 'Oakes Grotesk', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.517;
  letter-spacing: 0.65px;
  text-transform: uppercase;
  color: #0065E4;
}

.tc-hire-services__header-left h2 {
  font-family: 'Oakes Grotesk', system-ui, sans-serif;
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 400;
  line-height: 1.2;
  color: #132965;
}

.tc-hire-services__header-body {
  font-size: 16px;
  line-height: 1.5;
  color: #696969;
  max-width: 383px;
  flex: 0 0 383px;
  align-self: flex-end;
}

.tc-hire-services__divider {
  border: none;
  border-top: 1px solid #cfe2ff;
  margin: 0;
}

/* ── Cards ── */
.tc-hire-services__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.tc-hire-card {
  background: #fff;
  border-radius: 8px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.tc-hire-card__img {
  border-radius: 8px;
  overflow: hidden;
  height: 289px;
  flex-shrink: 0;
}

.tc-hire-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tc-hire-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tc-hire-card__body h3 {
  font-family: 'Oakes Grotesk', system-ui, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.5;
  color: #14223B;
}

.tc-hire-card__body p {
  font-size: 16px;
  line-height: 1.5;
  color: #4A586E;
}

/* ── Checklist ── */
.tc-hire-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tc-hire-card__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Oakes Grotesk', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #1A202C;
}

.tc-hire-card__list li::before {
  content: '';
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12.5L9.5 17L19 7' stroke='%230065E4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .tc-hire-services {
    padding: 64px 5% 72px;
  }

  .tc-hire-services__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .tc-hire-services__header-left,
  .tc-hire-services__header-body {
    flex: none;
    max-width: 100%;
  }

  .tc-hire-services__header-body {
    align-self: auto;
  }
}

@media (max-width: 700px) {
  .tc-hire-services__cards {
    grid-template-columns: 1fr;
  }

  .tc-hire-card__img {
    height: 220px;
  }
}


/* ================================================================
   WHY TRADECONNEX
   ================================================================ */
.tc-hire-why {
  background: #fff;
  padding: 100px 5%;
}

.tc-hire-why__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 64px;
  align-items: center;
}

.tc-hire-why__content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.tc-hire-why__content h2 {
  font-family: 'Oakes Grotesk', system-ui, sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  line-height: 1.2;
  color: #14223B;
}

.tc-hire-why__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tc-hire-why__body p {
  font-size: 16px;
  line-height: 1.5;
  color: #696969;
}

.tc-hire-why__cta {
  padding-top: 12px;
}

/* ── Image ── */
.tc-hire-why__image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 450px;
}

.tc-hire-why__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .tc-hire-why {
    padding: 72px 5%;
  }

  .tc-hire-why__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .tc-hire-why__image {
    height: 360px;
  }
}

@media (max-width: 480px) {
  .tc-hire-why__image {
    height: 280px;
  }
}


/* ================================================================
   POSITIONS WE CAN FILL — accordion
   ================================================================ */
.tc-hire-positions {
  background: #0D2747;
  padding: 88px 5%;
}

.tc-hire-positions__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 56px;
  align-items: start;
}

/* ── Left column ── */
.tc-hire-positions__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 120px;
}

.tc-hire-positions .tc-hire-eyebrow {
  color: #7FA6F0;
}

.tc-hire-positions__left h2 {
  font-family: 'Oakes Grotesk', system-ui, sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
}

.tc-hire-positions__desc {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}

/* ── Accordion ── */
.tc-hire-acc {
  width: 100%;
}

.tc-hire-acc__item {
  border-top: 1px solid #28466F;
}

.tc-hire-acc__item:last-child {
  border-bottom: 1px solid #28466F;
}

body.tc-hire-landing .tc-hire-acc__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 4px !important;
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  appearance: none;
  -webkit-appearance: none;
  font-family: 'Oakes Grotesk', system-ui, sans-serif;
  color: #fff !important;
  letter-spacing: normal;
  text-transform: none;
}

.tc-hire-acc__label {
  font-family: 'Plus Jakarta Sans', 'Oakes Grotesk', system-ui, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.tc-hire-acc__icon {
  flex-shrink: 0;
  font-family: system-ui, sans-serif;
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
  color: #7FA6F0;
  transition: color 0.2s ease;
  min-width: 20px;
  text-align: center;
}

.tc-hire-acc__trigger:hover .tc-hire-acc__icon,
.tc-hire-acc__trigger:focus .tc-hire-acc__icon {
  color: #fff;
}

/* ── Panel ── */
.tc-hire-acc__panel {
  padding: 0 4px 32px;
}

.tc-hire-acc__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tc-hire-acc__list li {
  font-family: 'Oakes Grotesk', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
  padding-left: 14px;
  position: relative;
}

.tc-hire-acc__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #7FA6F0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .tc-hire-positions {
    padding: 64px 5%;
  }

  .tc-hire-positions__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .tc-hire-positions__left {
    position: static;
  }
}

@media (max-width: 480px) {
  .tc-hire-acc__list {
    grid-template-columns: 1fr;
  }
}


/* ================================================================
   LOCATIONS — chips
   ================================================================ */
.tc-hire-locations {
  background: #f3f7fd;
  padding: 88px 5%;
}

.tc-hire-locations__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.tc-hire-locations__heading {
  font-family: 'Oakes Grotesk', system-ui, sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  line-height: 1.2;
  color: #112967;
  text-align: center;
  margin: 0;
}

.tc-hire-locations__sub {
  font-family: 'Oakes Grotesk', system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #696969;
  text-align: center;
  margin: 0;
}

.tc-hire-locations__sub a {
  color: #0256c0;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.tc-hire-locations__sub a:hover {
  color: #112967;
}

.tc-hire-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 8px;
}

.tc-hire-chips__break {
  flex-basis: 100%;
  height: 0;
}

.tc-hire-chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 19px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  font-family: 'Oakes Grotesk', system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: #112967;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.tc-hire-chip:hover {
  background: #112967;
  border-color: #112967;
  color: #fff;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .tc-hire-locations {
    padding: 64px 5%;
  }
}

@media (max-width: 480px) {
  .tc-hire-locations__sub {
    font-size: 16px;
  }
}


/* ================================================================
   RECENT PROJECTS — carousel
   ================================================================ */
.tc-hire-projects {
  background: #fff;
  padding: 96px 5%;
}

.tc-hire-projects__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 38px;
}

.tc-hire-projects__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.tc-hire-projects__heading {
  font-family: 'Oakes Grotesk', system-ui, sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.2;
  color: #14223b;
  margin: 0;
}

.tc-hire-projects__nav {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.tc-hire-projects__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #d6e0f5;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.tc-hire-projects__arrow:hover {
  background: #f3f7fd;
  border-color: #b0c8f0;
}

.tc-hire-projects__arrow svg {
  width: 18px;
  height: 18px;
  display: block;
}

/* ── Track ── */
.tc-hire-projects__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.tc-hire-projects__track::-webkit-scrollbar {
  display: none;
}

/* ── Card ── */
.tc-hire-proj-card {
  flex-shrink: 0;
  width: 260px;
  border: 1px solid #cfe2ff;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.15s ease;
}

.tc-hire-proj-card:hover {
  box-shadow: 0 4px 20px rgba(18, 87, 224, 0.12);
}

.tc-hire-proj-card__img {
  height: 167px;
  overflow: hidden;
  flex-shrink: 0;
}

.tc-hire-proj-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.tc-hire-proj-card:hover .tc-hire-proj-card__img img {
  transform: scale(1.04);
}

.tc-hire-proj-card__body {
  background: #f3f7fd;
  padding: 18px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.tc-hire-proj-card__title {
  font-family: 'Oakes Grotesk', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: #14223b;
  margin: 0;
}

.tc-hire-proj-card__sub {
  font-family: 'Oakes Grotesk', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #6b7a90;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .tc-hire-projects {
    padding: 64px 5%;
  }
}

@media (max-width: 600px) {
  .tc-hire-proj-card {
    width: 220px;
  }

  .tc-hire-proj-card__img {
    height: 140px;
  }
}


/* ================================================================
   PROCESS — Our approach
   ================================================================ */
.tc-hire-process {
  background: #eef3fc;
  padding: 96px 5%;
}

.tc-hire-process__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: center;
}

/* ── Left column ── */
.tc-hire-process__left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tc-hire-eyebrow--blue {
  color: #1257e0;
  letter-spacing: 0.65px;
}

.tc-hire-process__left h2 {
  font-family: 'Oakes Grotesk', system-ui, sans-serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.2;
  color: #14223b;
  margin: 0;
}

.tc-hire-process__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 4px;
}

.tc-hire-process__body p {
  font-family: 'Oakes Grotesk', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #4a586e;
  margin: 0;
}

/* ── Right column — steps ── */
.tc-hire-process__steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Vertical connecting line — runs centre-of-first-badge to centre-of-last-badge */
.tc-hire-process__steps::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 15px;
  bottom: 15px;
  width: 2px;
  background: #cdd9ef;
}

.tc-hire-process__step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
}

.tc-hire-process__badge {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #1257e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oakes Grotesk', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  position: relative;
  z-index: 1;
}

.tc-hire-process__step-title {
  font-family: 'Oakes Grotesk', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: #14223b;
  margin: 0;
}

.tc-hire-process__step-desc {
  font-family: 'Oakes Grotesk', system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #5a6a82;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .tc-hire-process {
    padding: 72px 5%;
  }

  .tc-hire-process__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 480px) {
  .tc-hire-process__steps {
    gap: 28px;
  }
}


/* ================================================================
   CONTACT / FORM
   ================================================================ */
.tc-hire-contact {
  background: #fff;
  padding: 64px 5%;
}

.tc-hire-contact__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

/* ── Left column ── */
.tc-hire-contact__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 100px;
}

.tc-hire-contact__heading {
  font-family: 'Oakes Grotesk', system-ui, sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  line-height: 1.2;
  color: #14223b;
  margin: 0;
}

.tc-hire-contact__body {
  font-family: 'Oakes Grotesk', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #4a586e;
  margin: 0;
}

.tc-hire-contact__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 12px;
}

.tc-hire-contact__item {
  display: flex;
  align-items: center;
  gap: 13px;
}

.tc-hire-contact__icon-wrap {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #eef3fc;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tc-hire-contact__label {
  font-family: 'Oakes Grotesk', system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #6b7a90;
  margin: 0;
}

.tc-hire-contact__value {
  font-family: 'Oakes Grotesk', system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #14223b;
  text-decoration: none;
}

.tc-hire-contact__value:hover {
  color: #1257e0;
  text-decoration: underline;
}

/* ── Right column — form card ── */
.tc-hire-contact__form-wrap {
  flex-shrink: 0;
  width: 480px;
  background: #eef3fc;
  border-radius: 8px;
  padding: 8px;
  min-height: 400px;
}

/* Placeholder shown until HubSpot embed is added */
.tc-hire-contact__form-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  border: 2px dashed #cdd9ef;
  border-radius: 6px;
  padding: 24px;
}

.tc-hire-contact__form-placeholder p {
  font-size: 14px;
  color: #6b7a90;
  text-align: center;
  margin: 0;
}

/* HubSpot form overrides — applied once the embed is live */
.tc-hire-contact__form-wrap .hs-form fieldset {
  max-width: 100% !important;
}

.tc-hire-contact__form-wrap .hs-form .hs-input {
  width: 100% !important;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .tc-hire-contact__inner {
    flex-direction: column;
  }

  .tc-hire-contact__left {
    position: static;
  }

  .tc-hire-contact__form-wrap {
    width: 100%;
  }
}


/* ================================================================
   SHARED CONTAINER — used by team section
   ================================================================ */
.tc-container {
  max-width: 1100px;
  margin: 0 auto;
}


/* ================================================================
   TEAM
   ================================================================ */
.tc-team {
  background: #f3f7fd;
  padding: 64px 5%;
}

.tc-team__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 20px;
}

.tc-team__header-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
}

.tc-team__eyebrow {
  font-size: 12px;
  font-weight: 400;
  color: #0065e4;
  text-transform: uppercase;
  letter-spacing: 0.65px;
  line-height: 1.5;
}

.tc-team__heading {
  font-family: 'Oakes Grotesk', system-ui, sans-serif;
  font-size: clamp(32px, 5vw, 50px);
  font-weight: 400;
  line-height: 1.2;
  color: #132965;
  margin: 0;
}

.tc-team__sub {
  font-size: 18px;
  color: #696969;
  line-height: 1.5;
  max-width: 393px;
  margin: 0;
  flex-shrink: 0;
}

.tc-team__divider {
  height: 1px;
  background: #cfe2ff;
  width: 100%;
  margin-bottom: 40px;
}

.tc-team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 600px) {
  .tc-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .tc-team-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .tc-team-grid .tc-team-card:nth-child(1) { grid-column: span 2; }
  .tc-team-grid .tc-team-card:nth-child(2) { grid-column: span 2; }
  .tc-team-grid .tc-team-card:nth-child(3) { grid-column: span 2; }
  .tc-team-grid .tc-team-card:nth-child(4) { grid-column: 2 / span 2; }
  .tc-team-grid .tc-team-card:nth-child(5) { grid-column: 4 / span 2; }
}

.tc-team-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.tc-team-card:hover {
  border-color: #0065e4;
  box-shadow: 0 14px 40px rgba(17, 41, 103, 0.12);
}

.tc-team-card:hover .tc-team-card__icon path {
  stroke: #0065e4;
}

.tc-team-card__icon {
  position: absolute;
  top: 24px;
  right: 24px;
  flex-shrink: 0;
}

.tc-team-card__avatar {
  width: 60px;
  height: 60px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  background: #0065e4;
  flex-shrink: 0;
  overflow: hidden;
}

.tc-team-card__avatar--photo {
  background: none;
}

.tc-team-card__avatar--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tc-team-card__name {
  font-family: 'Oakes Grotesk', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #112967;
  line-height: 1.5;
  margin: 0 0 4px;
}

.tc-team-card__role {
  font-size: 12px;
  font-weight: 400;
  color: #0065e4;
  text-transform: uppercase;
  letter-spacing: 0.65px;
  line-height: 1.5;
  margin: 0 0 8px;
}

.tc-team-card__spec {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
  flex: 1;
}

.tc-team-card__phone-wrap {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed #e2e8f0;
}

.tc-team-card__phone {
  font-size: 16px;
  font-weight: 400;
  color: #112967;
  line-height: 1.5;
}

@media (max-width: 699px) {
  .tc-team__header {
    flex-direction: column;
    align-items: flex-start;
  }
  .tc-team__sub {
    max-width: 100%;
  }
}


/* ================================================================
   FAQ — scoped to hire landing to avoid conflicts with register page
   ================================================================ */
body.tc-hire-landing .tc-faq {
  background: #fff;
  padding: 112px 5%;
  overflow-x: clip;
}

body.tc-hire-landing .tc-faq__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 6.5fr;
  gap: 80px;
  align-items: start;
}

body.tc-hire-landing .tc-faq__left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 100px;
}

body.tc-hire-landing .tc-faq__eyebrow {
  font-size: 12px;
  font-weight: 400;
  color: #0065e4;
  text-transform: uppercase;
  letter-spacing: 0.65px;
  line-height: 1.5;
}

body.tc-hire-landing .tc-faq__heading {
  font-family: 'Oakes Grotesk', system-ui, sans-serif;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 400;
  color: #132965;
  line-height: 1.2;
  margin: 0;
}

body.tc-hire-landing .tc-faq__sub {
  font-family: 'Oakes Grotesk', system-ui, sans-serif;
  font-size: 18px;
  color: #696969;
  line-height: 1.5;
  margin: 0;
}

body.tc-hire-landing .tc-faq__item {
  border-bottom: 1px solid #0065e4;
}

body.tc-hire-landing .tc-faq__item:first-child {
  border-top: 1px solid #0065e4;
}

body.tc-hire-landing .tc-faq__q {
  -webkit-appearance: none;
  appearance: none;
  display: grid;
  grid-template-columns: 1fr 24px;
  align-items: center;
  gap: 16px;
  width: 100%;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 20px 0 !important;
  margin: 0;
  font-family: 'Oakes Grotesk', sans-serif !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  color: #132965 !important;
  text-align: left !important;
  cursor: pointer;
  line-height: 1.5 !important;
  text-decoration: none !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  white-space: normal !important;
}

body.tc-hire-landing .tc-faq__q-text {
  overflow-wrap: break-word;
  word-break: break-word;
  white-space: normal;
  min-width: 0;
}

body.tc-hire-landing .tc-faq__chevron {
  flex-shrink: 0;
  transform: rotate(180deg);
  transition: transform 0.35s ease;
}

body.tc-hire-landing .tc-faq__item--open .tc-faq__chevron {
  transform: rotate(0deg);
}

body.tc-hire-landing .tc-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

body.tc-hire-landing .tc-faq__item--open .tc-faq__a {
  max-height: 500px;
}

body.tc-hire-landing .tc-faq__a-inner {
  padding-bottom: 24px;
}

body.tc-hire-landing .tc-faq__a p {
  font-family: 'Oakes Grotesk', system-ui, sans-serif;
  font-size: 16px;
  color: #132965;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 899px) {
  body.tc-hire-landing .tc-faq {
    padding: 64px 5%;
  }

  body.tc-hire-landing .tc-faq__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  body.tc-hire-landing .tc-faq__left {
    position: static;
  }
}


/* ================================================================
   RECENT PROJECTS — [location_projects] shortcode overrides
   Fixes: section has no horizontal padding outside an Elementor
   container (--section-padding-sides defaults to 0), and content
   needs a max-width to match the rest of the page.
   ================================================================ */
body.tc-hire-landing .location-projects-section {
  padding: 88px 5%;
}

body.tc-hire-landing .location-projects-section .location-projects-header,
body.tc-hire-landing .location-projects-section .projects_list_wrapper {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* Override the height:0 + padding-bottom% trick used by the shared card component.
   Use an explicit height so the image area is stable whether or not a thumbnail is set. */
body.tc-hire-landing .location-projects-section .content_recent_image {
  height: 220px !important;
  padding-bottom: 0 !important;
}

body.tc-hire-landing .location-projects-section .content_recent_image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Section heading — matches .tc-hire-process__left h2 size */
body.tc-hire-landing .location-projects-section .location-projects-heading {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
  color: #14223B;
}

/* Restore card info padding — .tc-lp * reset strips it */
body.tc-hire-landing .location-projects-section .content_recent_info {
  padding: 20px 24px !important;
  min-height: auto !important;
}

@media (max-width: 900px) {
  body.tc-hire-landing .location-projects-section {
    padding: 64px 5%;
  }

  /* Stack heading + button vertically on mobile */
  body.tc-hire-landing .location-projects-section .location-projects-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 639px) {
  /* Allow logo banner heading to wrap on mobile */
  .tc-hire-logos__heading {
    white-space: normal;
  }
}
