/* ================================================================
   On-Hire Labour Agreement (OHLA) — standalone services landing page
   Built to the Figma final design (frame 263:2478). Scoped under
   .tc-lp / body.tc-ohla-landing. Brand: navy #132965, blue #0065E4,
   dark navy #0D2747, white. Headings: Oakes Grotesk, weight 400.
   ================================================================ */


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

body.tc-ohla-landing {
  background: #ffffff;
  overflow-x: hidden;
}

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

.tc-lp {
  font-family: 'Oakes Grotesk', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: #14223B;
  --navy:   #132965;
  --blue:   #0065E4;
  --ink:    #14223B;
  --muted:  #4A586E;
  --slate:  #696969;
  --dark:   #0D2747;
  --bg:     #F7F9FC;
  --light:  #f3f7fd;
  --border: #E2E8F0;
}

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


/* ================================================================
   SHARED — eyebrow, buttons
   ================================================================ */
.tc-ohla-eyebrow {
  font-family: 'Oakes Grotesk', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.65px;
  text-transform: uppercase;
  color: #0065E4;
}

.tc-ohla-eyebrow--blue  { color: #1257e0; }
.tc-ohla-eyebrow--light { color: #7FB0FF; }
.tc-ohla-eyebrow--pale  { color: #CFE2FF; }

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

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

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


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

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

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

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

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

.tc-ohla-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 6px;
}

.tc-ohla-hero__points {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 10px;
}

.tc-ohla-hero__points li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
}

.tc-ohla-hero__points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  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.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* Hero media — decorative TC-monogram frame with photo overlaid */
.tc-ohla-hero__media {
  position: relative;
  width: 100%;
  max-width: 530px;
  margin-left: auto;
}

.tc-ohla-hero__frame {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}

.tc-ohla-hero__photo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85.7%;
  aspect-ratio: 454 / 281;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(19, 41, 101, 0.18);
}

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

@media (max-width: 900px) {
  .tc-ohla-hero { padding: 56px 5% 48px; }
  .tc-ohla-hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .tc-ohla-hero__media { margin: 0 auto; }
}

@media (max-width: 480px) {
  .tc-ohla-hero__ctas { flex-direction: column; align-items: stretch; }
  .tc-ohla-hero__ctas .tc-ohla-btn { width: 100%; }
}


/* ================================================================
   SECTION 1 — WHAT IT IS  (blue full-bleed)
   ================================================================ */
.tc-ohla-intro {
  background: #0065E4;
  padding: 88px 5% 72px;
}

.tc-ohla-intro__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 520px;
  gap: 40px;
  align-items: stretch;
}

.tc-ohla-intro__left {
  display: flex;
  flex-direction: column;
}

.tc-ohla-intro__head {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tc-ohla-intro__head h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  line-height: 1.2;
  color: #F3F7FD;
}

.tc-ohla-intro__image {
  margin-top: auto;
  padding-top: 32px;
}

.tc-ohla-intro__image img {
  width: 100%;
  max-width: 460px;
  height: auto;
  display: block;
}

.tc-ohla-intro__right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.tc-ohla-intro__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tc-ohla-intro__body p {
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
}

/* Stat cards — stacked in the right column */
.tc-ohla-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

.tc-ohla-stat {
  background: #F3F7FD;
  border: 1px solid #DFEAFB;
  border-radius: 10px;
  padding: 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tc-ohla-stat__num {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.1;
  color: #0065E4;
}

.tc-ohla-stat__label {
  font-size: 14px;
  line-height: 1.5;
  color: #4A586E;
}

.tc-ohla-stats__note {
  font-size: 14px;
  line-height: 1.5;
  color: #CFE2FF;
}

@media (max-width: 900px) {
  .tc-ohla-intro { padding: 64px 5% 56px; }
  .tc-ohla-intro__inner { grid-template-columns: 1fr; gap: 32px; }
  .tc-ohla-intro__image { margin-top: 8px; padding-top: 0; }
  .tc-ohla-intro__image img { max-width: 380px; }
}


/* ================================================================
   SECTION 2 — WHY USE OUR OHLA  (benefit cards)
   ================================================================ */
.tc-ohla-why {
  background: #fff;
  padding: 96px 5%;
}

.tc-ohla-why__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.tc-ohla-why__head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 620px;
  margin-bottom: 44px;
}

.tc-ohla-why__head h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
}

.tc-ohla-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tc-ohla-benefit {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tc-ohla-benefit__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #EAF2FE;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tc-ohla-benefit__title {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--navy);
  margin: 0;
}

.tc-ohla-benefit__desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 900px) {
  .tc-ohla-why { padding: 64px 5%; }
  .tc-ohla-why__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .tc-ohla-why__grid { grid-template-columns: 1fr; }
}


/* ================================================================
   SECTION 3 — HOW IT WORKS  (numbered steps + 3-image collage)
   ================================================================ */
.tc-ohla-process {
  background: #f3f7fd;
  padding: 120px 5%;
}

.tc-ohla-process__inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.tc-ohla-process__left {
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tc-ohla-process__left h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
}

.tc-ohla-process__lead {
  font-size: 17px;
  line-height: 1.5;
  color: var(--muted);
  margin-top: 4px;
}

.tc-ohla-process__steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 20px;
}

/* Vertical connector — one segment per step, joining badge to badge and
   stopping at the last badge (no tail past step 4). */
.tc-ohla-process__step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 34px;
  bottom: -32px;
  width: 2px;
  background: #CDD9EF;
}

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

.tc-ohla-process__badge {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  position: relative;
  z-index: 1;
}

.tc-ohla-process__content { padding-top: 3px; }

.tc-ohla-process__step-title {
  font-size: clamp(20px, 2.4vw, 22px);
  font-weight: 400;
  line-height: 1.35;
  color: var(--ink);
  margin: 0 0 4px;
}

.tc-ohla-process__step-desc {
  font-size: 16px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}

/* Collage — base (mobile / tablet): simple grid below the steps */
.tc-ohla-process__media {
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.tc-ohla-process__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 14px 34px rgba(19, 41, 101, 0.14);
}

.tc-ohla-process__img--3 { grid-column: 1 / -1; height: 260px; }

/* Collage — desktop: a single right-hand container holding the 3 images
   stacked vertically at the same width. Pulled up so the stack covers the
   section above and continues down into How it works. Kept clear of the
   left column so it never overlaps the steps. */
@media (min-width: 1024px) {
  .tc-ohla-process__inner { min-height: 720px; }

  .tc-ohla-process__media {
    position: absolute;
    top: -260px;
    right: 0;
    width: 440px;
    height: auto;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .tc-ohla-process__img {
    position: static;
    width: 100%;
    height: 300px;
    border-radius: 12px;
    box-shadow: 0 20px 46px rgba(19, 41, 101, 0.18);
  }

  .tc-ohla-process__img--3 { grid-column: auto; height: 300px; }
}

@media (max-width: 1023px) {
  .tc-ohla-process { padding: 64px 5%; }
}


/* ================================================================
   SECTION 4 — WHAT WE HANDLE  (dark checklist)
   ================================================================ */
.tc-ohla-handle {
  background: var(--dark);
  padding: 88px 5%;
}

.tc-ohla-handle__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 64px;
  align-items: center;
}

.tc-ohla-handle__left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tc-ohla-handle__left h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
}

.tc-ohla-handle__note {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.tc-ohla-handle__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tc-ohla-handle__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(127, 176, 255, 0.22);
  border-radius: 10px;
  font-size: 16px;
  line-height: 1.5;
  color: #EAF1FB;
}

.tc-ohla-handle__list li svg { flex-shrink: 0; margin-top: 1px; }

@media (max-width: 900px) {
  .tc-ohla-handle { padding: 64px 5%; }
  .tc-ohla-handle__inner { grid-template-columns: 1fr; gap: 36px; }
}


/* ================================================================
   SECTION 5 — ROLES WE CAN SPONSOR
   ================================================================ */
.tc-ohla-roles {
  background: #f3f7fd;
  padding: 96px 5%;
}

.tc-ohla-roles__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.tc-ohla-roles__head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 680px;
  margin-bottom: 36px;
}

.tc-ohla-roles__head h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
}

.tc-ohla-roles__lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
}

.tc-ohla-roles__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 40px;
  margin-bottom: 36px;
}

.tc-ohla-roles__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 16px;
  line-height: 1.4;
  color: var(--navy);
}

.tc-ohla-roles__list li svg { flex-shrink: 0; }

.tc-ohla-roles__callout {
  background: #fff;
  border: 1px solid #dfeafb;
  border-left: 4px solid var(--blue);
  border-radius: 10px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tc-ohla-roles__callout p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate);
  margin: 0;
}

.tc-lp .tc-ohla-roles__callout a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
  white-space: nowrap;
}

.tc-lp .tc-ohla-roles__callout a:hover { color: var(--navy); }

.tc-ohla-roles__prompt { color: var(--navy) !important; }
.tc-ohla-roles__prompt strong { font-weight: 600; }

@media (max-width: 900px) {
  .tc-ohla-roles { padding: 64px 5%; }
  .tc-ohla-roles__list { grid-template-columns: 1fr; gap: 12px; }
}


/* ================================================================
   SECTION 6 — FAQ  (scoped to body.tc-ohla-landing)
   ================================================================ */
body.tc-ohla-landing .tc-faq {
  background: #fff;
  padding: 104px 5%;
  overflow-x: clip;
}

body.tc-ohla-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-ohla-landing .tc-faq__left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 100px;
}

body.tc-ohla-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-ohla-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-ohla-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-ohla-landing .tc-faq__item { border-bottom: 1px solid #0065e4; }
body.tc-ohla-landing .tc-faq__item:first-child { border-top: 1px solid #0065e4; }

body.tc-ohla-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-ohla-landing .tc-faq__q-text {
  overflow-wrap: break-word;
  word-break: break-word;
  white-space: normal;
  min-width: 0;
}

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

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

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

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

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

body.tc-ohla-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-ohla-landing .tc-faq { padding: 64px 5%; }
  body.tc-ohla-landing .tc-faq__inner { grid-template-columns: 1fr; gap: 40px; }
  body.tc-ohla-landing .tc-faq__left { position: static; }
}


/* ================================================================
   SECTION 7 — TEAM  ([tc_team] on the light section bg)
   ================================================================ */
body.tc-ohla-landing .tc-team { background: #f3f7fd; }


/* ================================================================
   SECTION 8 — CALL TO ACTION / CONTACT
   ================================================================ */
.tc-ohla-contact {
  background: #f3f7fd;
  padding: 88px 5%;
}

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

.tc-ohla-contact__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tc-ohla-contact__heading {
  font-size: clamp(28px, 3.5vw, 45px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
  margin: 0;
}

.tc-ohla-contact__body {
  font-size: 17px;
  line-height: 1.5;
  color: var(--muted);
  margin: 4px 0 0;
}

.tc-ohla-contact__checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 6px 0 4px;
}

.tc-ohla-contact__checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
}

.tc-ohla-contact__checklist li svg { flex-shrink: 0; margin-top: 1px; }

.tc-ohla-contact__reassure {
  font-size: 16px;
  line-height: 1.5;
  color: var(--muted);
  margin: 4px 0 0;
}

.tc-ohla-contact__details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  margin-top: 18px;
}

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

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

.tc-ohla-contact__label {
  font-size: 14px;
  line-height: 1.5;
  color: var(--slate);
  margin: 0;
}

.tc-lp .tc-ohla-contact__value {
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink);
  text-decoration: none;
}

.tc-lp .tc-ohla-contact__value:hover { color: var(--blue); text-decoration: underline; }

.tc-ohla-contact__form-wrap {
  flex-shrink: 0;
  width: 480px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  min-height: 420px;
}

/* HubSpot embed — same enquiry form as the Find Talent page */
.tc-ohla-contact__form-wrap .hs-form-frame { min-height: 380px; }
.tc-ohla-contact__form-wrap .hs-form fieldset { max-width: 100% !important; }
.tc-ohla-contact__form-wrap .hs-form .hs-input { width: 100% !important; }

@media (max-width: 900px) {
  .tc-ohla-contact { padding: 64px 5%; }
  .tc-ohla-contact__inner { flex-direction: column; gap: 36px; }
  .tc-ohla-contact__form-wrap { width: 100%; }
}
