/* =============================================================
   NewCombin — Home page styles
   Consumes colors_and_type_ds.css (design system tokens)
   Mirrors structure from /Mejoras-Home/home Figma frame
   ============================================================= */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { overflow-x: hidden; }
body {
  background: var(--nc-seasalt);
  color: var(--nc-dark-gray);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: inherit; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter-desktop);
}
@media (max-width: 960px) { .container { padding-inline: var(--gutter-tablet); } }
@media (max-width: 640px) { .container { padding-inline: var(--gutter-mobile); } }

/* =========================================================
   Pill button (Style Plain — primary CTA)
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  height: 52px; padding: 0 28px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 18px;
  letter-spacing: 1px;
  text-decoration: none; cursor: pointer;
  border: none;
  transition: box-shadow .22s var(--ease-out), background .22s var(--ease-out), transform .22s var(--ease-out);
  white-space: nowrap;
}
.btn--primary {
  background: var(--nc-orange);
  color: var(--nc-seasalt);
}
.btn--primary:hover {
  box-shadow: var(--shadow-glow-orange);
  background: linear-gradient(rgba(255,255,255,.18),rgba(255,255,255,.18)), var(--nc-orange);
}
.btn--ghost {
  background: transparent;
  border: 2px solid var(--nc-orange);
  color: var(--nc-seasalt);
}
.btn--ghost:hover { background: rgba(234,127,10,.12); }

.btn--lg { height: 62px; padding: 0 36px; font-size: 20px; }
.btn--sm { height: 44px; padding: 0 20px; font-size: 16px; }
.btn .icon { width: 20px; height: 20px; }

/* =========================================================
   Promo banner
   ========================================================= */
.banner {
  height: 56px;
  background: var(--nc-orange);
  color: var(--nc-seasalt);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-family: var(--font-body);
  font-size: 18px; line-height: 1;
  padding: 0 16px; gap: 14px;
}
.banner a {
  font-family: var(--font-display);
  font-weight: 700; letter-spacing: 1px;
  text-decoration: underline; text-underline-offset: 4px;
  color: inherit;
}
@media (max-width: 1024px) { .banner { height: 48px; font-size: 15px; } }
@media (max-width: 640px) { .banner { height: 44px; font-size: 13px; padding: 0 12px; } .banner a { font-size: 13px; } }

/* =========================================================
   Hero (full-bleed photo + glass nav)
   ========================================================= */
.hero {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 100px);
  background: var(--nc-dark-gray);
  color: var(--nc-seasalt);
  overflow: hidden;
  padding: 50px 0 140px;
}
/* Large desktop resolutions (~2560px+): reduce the hero so the design
   doesn't grow excessively tall on ultra-wide / 4K monitors. */
@media (min-width: 2200px) {
  .hero { min-height: calc(100vh - 700px); }
}
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  opacity: .85;
  filter: brightness(40%) grayscale(30%);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(34,34,34,.55) 0%, rgba(34,34,34,.35) 40%, rgba(34,34,34,.55) 100%);
  z-index: 0;
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(rgba(0,0,0,.2) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,.85) 100%);
  pointer-events: none;
}

/* =========================================================
   NAV — promoted from Mitchell Martin Case Study (DS glass nav)
   Mirrors LATAM Recruiters Landing / Mitchell Martin Case Study
   ========================================================= */
.cs-nav-wrap{position:fixed;top:56px;left:0;right:0;z-index:60;padding:16px 32px 0;background:transparent;transition:opacity .3s cubic-bezier(.25,.46,.45,.94),transform .3s cubic-bezier(.25,.46,.45,.94)}
.cs-nav-wrap.is-hidden{opacity:0;transform:translateY(-16px);pointer-events:none}
.cs-nav{max-width:var(--container-max);margin-inline:auto;height:94px;border-radius:16px;background:rgba(64,64,64,.75);border:2px solid rgba(250,250,250,.15);backdrop-filter:blur(30px);-webkit-backdrop-filter:blur(30px);display:flex;align-items:center;justify-content:space-between;padding:23px 29px;gap:32px}
.cs-nav__logo-link{display:inline-flex;align-items:center;flex:none}
.cs-nav__logo{height:31px;width:auto;display:block}
.cs-nav__row{display:contents}

.cs-nav__links{display:flex;flex:1;justify-content:flex-end;gap:16px;align-items:center;padding:0 16px;list-style:none;margin:0}
.cs-nav__links a{font-family:var(--font-display);font-weight:700;font-size:16px;letter-spacing:1px;line-height:32px;color:var(--nc-seasalt);padding:8px 16px;border-radius:999px;display:inline-flex;align-items:center;gap:10px;transition:background .22s var(--ease-out);text-decoration:none}
.cs-nav__links a:hover{background:rgba(255,255,255,.10)}
.cs-nav__links a svg{width:14px;height:14px;opacity:.85}

/* Dropdown — Solutions */
.cs-nav__dd{position:relative;display:inline-flex;align-items:center}
.cs-nav__dd-trigger{cursor:pointer}
.cs-nav__dd-trigger svg{transition:transform .2s ease}
.cs-nav__dd:hover .cs-nav__dd-trigger,.cs-nav__dd:focus-within .cs-nav__dd-trigger{background:rgba(255,255,255,.10)}
.cs-nav__dd:hover .cs-nav__dd-trigger svg,.cs-nav__dd:focus-within .cs-nav__dd-trigger svg{transform:rotate(180deg)}
.cs-nav__dd-menu{position:absolute;top:calc(100% + 12px);left:50%;transform:translateX(-50%) translateY(-6px);min-width:220px;background:rgba(40,40,40,.92);border:1px solid rgba(250,250,250,.12);border-radius:14px;backdrop-filter:blur(24px);-webkit-backdrop-filter:blur(24px);padding:8px;display:flex;flex-direction:column;gap:2px;opacity:0;pointer-events:none;transition:opacity .18s ease,transform .18s ease;box-shadow:0 16px 48px rgba(0,0,0,.4);z-index:60}
.cs-nav__dd:hover .cs-nav__dd-menu,.cs-nav__dd:focus-within .cs-nav__dd-menu{opacity:1;transform:translateX(-50%) translateY(0);pointer-events:auto}
.cs-nav__dd-menu::before{content:"";position:absolute;left:0;right:0;top:-12px;height:12px}
.cs-nav__dd-menu a{font:600 15px/1.3 var(--font-display);letter-spacing:.5px;color:var(--nc-seasalt);padding:10px 16px;border-radius:8px;text-decoration:none;white-space:nowrap;display:block}
.cs-nav__dd-menu a:hover{background:rgba(234,127,10,.15);color:#fff}

.cs-nav__cta{font-family:var(--font-display);font-weight:600;font-size:16px;letter-spacing:1px;line-height:19px;background:var(--nc-orange);color:var(--nc-seasalt);border:none;border-radius:999px;padding:8px 16px;height:35px;display:inline-flex;align-items:center;gap:8px;flex:none;cursor:pointer;text-decoration:none;transition:box-shadow .22s var(--ease-out)}
.cs-nav__cta:hover{box-shadow:var(--shadow-glow-orange)}

.cs-nav__toggle{display:none;background:transparent;border:none;color:var(--nc-seasalt);padding:8px;cursor:pointer}

.cs-nav__mobile{display:none}

@media (max-width:1024px){
  .cs-nav-wrap{top:48px;padding:8px 16px 0}
  .cs-nav{height:64px;padding:0 16px}
  .cs-nav__logo{height:24px}
  .cs-nav__links{display:none}
  .cs-nav .cs-nav__cta{display:none !important}
  .cs-nav__toggle{display:inline-flex;color:var(--nc-orange);padding:8px}

  /* Mobile collapsible group */
  .cs-nav__mobile-group{display:flex;flex-direction:column;align-items:center;gap:0;width:100%}
  .cs-nav__mobile-trigger{background:transparent;border:none;color:var(--nc-seasalt);font-family:var(--font-display);font-weight:700;font-size:22px;line-height:28px;letter-spacing:.5px;padding:4px 12px;cursor:pointer;display:inline-flex;align-items:center;gap:8px}
  .cs-nav__mobile-trigger svg{width:16px;height:16px;transition:transform .2s ease}
  .cs-nav__mobile-trigger[aria-expanded="true"] svg{transform:rotate(180deg)}
  .cs-nav__mobile-sub{display:none;flex-direction:column;align-items:center;gap:10px;margin:8px 0 4px;padding:10px 0;border-top:1px solid rgba(255,255,255,.10);border-bottom:1px solid rgba(255,255,255,.10);width:100%}
  .cs-nav__mobile-sub a{font-family:var(--font-display);font-weight:600;font-size:18px;line-height:24px;letter-spacing:.5px;color:rgba(250,250,250,.85);text-decoration:none;padding:4px 12px}
  .cs-nav__mobile-sub a:hover{color:var(--nc-orange)}
  .cs-nav__mobile-group.is-open .cs-nav__mobile-sub{display:flex}

  .cs-nav-wrap.is-open{position:fixed;left:0;right:0;top:48px;padding:8px 16px 0;max-height:calc(100vh - 48px);overflow-y:auto}
  .cs-nav-wrap.is-open .cs-nav{height:auto;min-height:64px;flex-direction:column;align-items:stretch;padding:0 16px 24px}
  .cs-nav-wrap.is-open .cs-nav__row{display:flex;align-items:center;justify-content:space-between;width:100%;min-height:56px}
  .cs-nav-wrap.is-open .cs-nav__mobile{display:flex;flex-direction:column;align-items:stretch;width:100%;padding:8px 8px 4px;box-sizing:border-box}
  .cs-nav__mobile-links{display:flex;flex-direction:column;align-items:center;gap:14px;margin:18px 0 6px}
  .cs-nav__mobile-links a{font-family:var(--font-display);font-weight:700;font-size:22px;line-height:28px;letter-spacing:.5px;color:var(--nc-seasalt);text-decoration:none;padding:4px 12px;transition:opacity 180ms ease}
  .cs-nav__mobile-links a:hover{opacity:.8}
  .cs-nav__mobile-cta{display:flex;flex-direction:column;align-items:stretch;gap:12px;margin-top:14px;padding:0 16px}
  .cs-nav__mobile-btn{display:inline-flex;align-items:center;justify-content:center;height:52px;border-radius:999px;font-family:var(--font-display);font-weight:700;font-size:18px;letter-spacing:.5px;text-decoration:none;cursor:pointer;transition:background 180ms ease,box-shadow 180ms ease}
  .cs-nav__mobile-btn--outline{background:transparent;color:var(--nc-seasalt);border:2px solid var(--nc-orange)}
  .cs-nav__mobile-btn--outline:hover{background:rgba(234,127,10,.10)}
  .cs-nav__mobile-btn--filled{background:var(--nc-orange);color:var(--nc-seasalt);border:2px solid var(--nc-orange)}
  .cs-nav__mobile-btn--filled:hover{box-shadow:var(--shadow-glow-orange)}
}
@media (max-width:640px){
  .cs-nav-wrap{top:44px}
  .cs-nav-wrap.is-open{top:44px;max-height:calc(100vh - 44px)}
}

/* Banner sits above the fixed nav */
.banner{position:relative;z-index:70}

/* Hero content — single column, matches Figma frame 41 (911 × 420), centered */
.hero-content {
  position: relative; z-index: 10;
  max-width: 911px;
  margin: 0 auto;
  padding: 200px 32px 0;
  display: flex; flex-direction: column;
  align-items: flex-start;
  gap: 48px;
}
.hero-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 64px; line-height: 1.1;
  letter-spacing: 1px;
  color: var(--nc-seasalt);
  margin: 0;
}
.hero-headline__accent {
  color: var(--nc-orange);
}
.hero-rotator {
  display: block;
  font-family: var(--font-display);
  font-weight: 700; font-size: 64px; line-height: 75px;
  letter-spacing: 1px;
  color: var(--nc-orange);
}
.hero-rotator .rotator-fixed {
  display: inline-block;
  color: var(--nc-orange);
  white-space: nowrap;
}
.hero-rotator .rotator {
  position: relative;
  display: inline-block;
  min-width: 720px;
  height: 75px;
  vertical-align: bottom;
}
.hero-rotator .rotator span {
  position: absolute; left: 0; top: 0;
  color: var(--nc-orange);
  opacity: 0;
  transform: translateY(20px);
  animation: rotator-cycle 12s infinite;
  white-space: nowrap;
}
.hero-rotator .rotator span:nth-child(1) { animation-delay: 0s; }
.hero-rotator .rotator span:nth-child(2) { animation-delay: 4s; }
.hero-rotator .rotator span:nth-child(3) { animation-delay: 8s; }
@keyframes rotator-cycle {
  0%, 4%   { opacity: 0; transform: translateY(20px); }
  8%, 30%  { opacity: 1; transform: translateY(0); }
  34%, 100%{ opacity: 0; transform: translateY(-20px); }
}

.hero-actions {
  display: flex; align-items: center; gap: 24px;
  margin: 0;
}
.hero-actions .hero-btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 52px; padding: 12px 24px; gap: 8px;
  background: var(--nc-orange); color: var(--nc-seasalt);
  border: none; border-radius: 999px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 24px; line-height: 28px; letter-spacing: 1px;
  text-decoration: none; cursor: pointer;
  transition: box-shadow .22s var(--ease-out), transform .22s var(--ease-out);
}
.hero-actions .hero-btn:hover { box-shadow: var(--shadow-glow-orange); transform: translateY(-1px); }
.hero-actions .hero-btn .icon { display: none; }

/* Trust badges row (Figma "Frame 42") */
.hero-trust {
  display: flex; align-items: center; gap: 20px;
  margin: 0;
}
.hero-trust .badge-clutch-hex { width: 54px; height: 93px; display: block; }
.hero-trust .badge-clutch { width: 123px; height: auto; display: block; }
.hero-since {
  display: block;
  margin-top: 9px;
  font-family: var(--font-body); font-weight: 600;
  font-size: 12px; line-height: 1; letter-spacing: .5px;
  color: var(--nc-seasalt);
}

@media (max-width: 1024px) {
  .hero { min-height: 760px; padding-bottom: 48px; }
  .hero-content { padding-top: 160px; gap: 32px; }
  .hero-headline { font-size: 44px; line-height: 1.1; }
  .hero-rotator { font-size: 44px; line-height: 1.1; }
  .hero-rotator .rotator { min-width: 480px; height: 1.1em; }
  .hero-actions .hero-btn { font-size: 20px; height: 48px; padding: 10px 22px; }
}
@media (max-width: 640px) {
  .hero { min-height: 700px; }
  .hero-content { padding: 130px 16px 0; gap: 28px; }
  .hero-headline { font-size: 34px; }
  .hero-rotator { font-size: 34px; }
  .hero-rotator .rotator { min-width: 280px; height: 1.1em; }
  .hero-actions .hero-btn { font-size: 18px; height: 46px; padding: 10px 20px; }
  .hero-trust { flex-wrap: wrap; gap: 16px; }
}

/* =========================================================
   Trusted by — marquee (component from DS)
   ========================================================= */
.section-who {
  position: relative;
  background: var(--nc-dark-gray);
  color: var(--nc-seasalt);
  padding: 1px 0 480px;
  overflow: visible;
  isolation: isolate;
}
/* Top curve removed — strip overlaps the seam directly */
.section-who::before {
  content: none;
}
.section-who__bg {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0; overflow: hidden;
}
.section-who__bg::before {
  content: "";
  position: absolute;
  width: 480px; height: 480px;
  left: -120px; top: 220px;
  background: radial-gradient(closest-side, rgba(234,127,10,.45), transparent 70%);
  filter: blur(80px);
}
.section-who__bg::after {
  content: "";
  position: absolute;
  width: 520px; height: 520px;
  right: -120px; bottom: 60px;
  background: radial-gradient(closest-side, rgba(234,88,24,.45), transparent 70%);
  filter: blur(90px);
}

/* Trusted-by marquee strip (component) */
.nc-trusted{
  position: relative;
  width: 100%;
  max-width: var(--container-max);
  margin: -70px auto 0;
  z-index: 5;
  height: 139px;
  display: flex; flex-direction: row; align-items: center;
  padding: 24px;
  gap: 66px;
  background: rgba(34,34,34,.8);
  border: 1px solid #222;
  border-radius: 24px;
  backdrop-filter: blur(12.5px);
  -webkit-backdrop-filter: blur(12.5px);
  overflow: hidden; isolation: isolate;
}
.nc-trusted__blur { position: absolute; inset: 0; z-index: 0; pointer-events: none; filter: blur(90px); }
.nc-trusted__blur::before, .nc-trusted__blur::after, .nc-trusted__blur span {
  content: ""; position: absolute; border-radius: 50%;
}
.nc-trusted__blur::before {
  width: 166px; height: 165px;
  left: 164px; top: -6px;
  background: radial-gradient(50% 50% at 50% 50%, #EA7F0A 0%, rgba(234,127,10,0) 100%);
}
.nc-trusted__blur::after {
  width: 142px; height: 142px;
  left: 149px; top: -33px;
  background: radial-gradient(50% 50% at 50% 50%, #EA5818 0%, rgba(234,88,24,0) 100%);
}
.nc-trusted__blur span {
  width: 175px; height: 175px;
  left: 860px; top: 32px;
  background: radial-gradient(50% 50% at 50% 50%, #EA5818 0%, rgba(234,88,24,0) 100%);
}
.nc-trusted__label {
  position: relative; z-index: 1;
  flex: 0 0 auto;
  font-family: var(--font-body);
  font-weight: 700; font-size: 24px; line-height: 1.2;
  white-space: nowrap;
  background: linear-gradient(89.41deg, #EA5818 0.21%, #FABC78 108.41%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  text-shadow: 0 0 30px #FFDDCE;
}
.nc-trusted__viewport {
  position: relative; z-index: 2;
  flex: 1 1 auto; overflow: hidden; height: 91px;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 48px, #000 calc(100% - 64px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 48px, #000 calc(100% - 64px), transparent 100%);
}
.nc-trusted__track {
  list-style: none; margin: 0; padding: 0;
  display: flex; align-items: center; gap: 66px;
  height: 100%; width: max-content;
  animation: nc-marquee 56s linear infinite; will-change: transform;
}
.nc-trusted__viewport:hover .nc-trusted__track,
.nc-trusted__track:focus-within { animation-play-state: paused; }
@keyframes nc-marquee { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }
.nc-trusted__logo { flex: 0 0 auto; display: flex; align-items: center; justify-content: center; height: 91px; padding: 0 4px; }
.nc-trusted__logo img { display: block; height: 50px; width: auto; max-width: 240px; object-fit: contain; filter: brightness(0) invert(1); }
.nc-trusted__logo--tall img { height: 61px; }
.nc-trusted__logo--short img { height: 43px; }
.nc-trusted__logo--wide img { height: 34px; max-width: 220px; }
@media (max-width: 900px) {
  .nc-trusted { height: auto; padding: 16px; gap: 24px; border-radius: 20px; margin-top: 32px; }
  .nc-trusted__label { font-size: 18px; }
  .nc-trusted__viewport { height: 64px; }
  .nc-trusted__track { gap: 48px; animation-duration: 42s; }
  .nc-trusted__logo { height: 64px; }
  .nc-trusted__logo img { height: 36px; max-width: 180px; }
}

/* Section title */
.who-title {
  position: relative; z-index: 2;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-family: var(--font-display);
  font-weight: 700; font-size: 48px; line-height: 1.1;
  color: var(--nc-seasalt);
  margin: 96px auto 56px;
  max-width: 1100px;
  padding: 0 32px;
}

/* Two glass cards (Agencies / Product Teams) */
.who-cards {
  position: relative; z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.who-card {
  position: relative;
  border-radius: 24px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  box-shadow: 0 4px 21.4px rgba(0,0,0,.10);
  overflow: hidden;
  display: flex; flex-direction: column;
  min-height: 600px;
}
.who-card__art {
  position: relative;
  aspect-ratio: 558 / 305;
  height: auto;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.who-card--agencies .who-card__art {
  background: rgba(250,188,120,0.55);
}
.who-card--product .who-card__art {
  background: rgba(234,127,10,0.55);
}
.who-card__art img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
  object-fit: cover;
}
.who-card__body {
  padding: 32px;
  display: flex; flex-direction: column; gap: 24px;
  flex: 1;
}
.who-card__title {
  font-family: var(--font-display);
  font-weight: 700; font-size: 36px; line-height: 1.1;
  color: var(--nc-seasalt);
  margin: 0;
}
.who-card__title span { color: var(--nc-orange, #EA7F0A); }
.who-card__copy {
  display: flex; flex-direction: column; gap: 18px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 20px; line-height: 1.35;
  color: var(--nc-seasalt);
  margin: 0;
}
.who-card__copy p { margin: 0; }
.who-card__cta { margin-top: auto; align-self: flex-end; }

@media (max-width: 960px) {
  .who-title { font-size: 36px; margin: 64px auto 40px; }
  .who-cards { grid-template-columns: 1fr; }
  .who-card { min-height: auto; }
  .who-card__title { font-size: 28px; }
  .who-card__copy { font-size: 18px; gap: 14px; }
}

/* Bottom curve transition into the next light section — full-width bow */
.section-who::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 200vw;
  height: 268px;
  transform: translateX(-50%);
  background: var(--nc-seasalt);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  pointer-events: none;
}

/* =========================================================
   Services for IT Staffing Agencies (light)
   ========================================================= */
.section-services {
  background: var(--nc-seasalt);
  padding: 0 0 240px;
  position: relative; z-index: 1;
}
.services__title {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700; font-size: 48px; line-height: 1.1;
  color: var(--nc-orange);
  margin: 0 auto 64px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.services__tabs {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.services__tabs--three { grid-template-columns: 1fr 1fr 1fr; }
.panel__lead {
  font-family: var(--font-display);
  font-weight: 700; font-size: 28px; line-height: 1.25;
  color: var(--nc-dark-gray);
  margin: 0 0 16px;
}
.panel__intro {
  font-family: var(--font-body);
  font-size: 16px; line-height: 1.5;
  color: var(--nc-ink-600);
  margin: 0 0 32px;
}
.tab {
  position: relative;
  border-radius: 24px;
  background: var(--nc-white);
  border: 2px solid transparent;
  padding: 28px 32px;
  display: flex; gap: 20px; align-items: flex-start;
  cursor: pointer;
  transition: border-color .22s var(--ease-out), background .22s var(--ease-out), box-shadow .22s var(--ease-out), transform .22s var(--ease-out);
}
.tab:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.06); }
.tab.is-active {
  background: #FFE9D5;
  border: 2px solid var(--nc-orange);
}
.tab.is-active::after {
  content: "";
  position: absolute;
  left: 56px;
  bottom: -26px;
  width: 2px;
  height: 26px;
  background: var(--nc-orange);
  z-index: 2;
  transition: height .22s var(--ease-out), bottom .22s var(--ease-out);
}
.tab.is-active::before {
  content: "";
  position: absolute;
  left: 56px;
  bottom: -26px;
  width: 16px;
  height: 16px;
  border-left: 2px solid var(--nc-orange);
  z-index: 2;
  transition: height .22s var(--ease-out), bottom .22s var(--ease-out);
}
/* When hovering the active tab, it lifts -2px — extend the connector DOWN so the top stays glued to the tab and the bottom reaches the panel below. */
.tab.is-active:hover::after { bottom: -28px; height: 28px; }
.tab.is-active:hover::before { bottom: -28px; height: 16px; }

/* Panel show/hide swap */
.services__panel.is-hidden { display: none; }
.tab__icon {
  flex: none;
  width: 40px; height: 40px;
  background: transparent;
  color: var(--nc-dark-gray);
  display: flex; align-items: center; justify-content: center;
  transition: color .2s ease;
}
.tab.is-active .tab__icon { color: var(--nc-orange); }
.tab__icon svg { width: 36px; height: 36px; stroke-width: 3; }
.tab__body { display: flex; flex-direction: column; gap: 8px; }
.tab__title { font-family: var(--font-display); font-weight: 700; font-size: 24px; line-height: 1.2; color: var(--nc-dark-gray); margin: 0; }
.tab__desc { font-family: var(--font-body); font-size: 16px; line-height: 1.4; color: var(--nc-ink-600); margin: 0; }

.services__panel {
  max-width: var(--container-max);
  margin: 24px auto 0;
  padding: 0 32px;
}
.panel {
  border-radius: 24px;
  background: var(--nc-white);
  border: 2px solid var(--nc-orange);
  border: 2px solid var(--nc-deep-orange);
  padding: 52px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: stretch;
}
.panel__col h3 {
  font-family: var(--font-display);
  font-weight: 700; font-size: 24px; line-height: 1.2;
  color: var(--nc-dark-gray);
  margin: 0 0 24px;
}
.panel__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 18px; }
.panel__list li { display: flex; gap: 16px; align-items: flex-start; }
.panel__list li svg { flex: none; width: 28px; height: 28px; color: var(--nc-orange); }
.panel__list li span { font-family: var(--font-body); font-size: 16px; line-height: 1.4; color: var(--nc-dark-gray); padding-top: 2px; }

.panel__benefits {
  border-radius: 24px;
  border: 1px solid rgba(34,34,34,.20);
  padding: 32px;
  display: flex; flex-direction: column; gap: 24px;
}
.panel__benefits h3 { margin: 0; }
.panel__benefits ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 18px; }
.panel__benefits li { display: flex; gap: 16px; align-items: flex-start; }
.panel__benefits li svg { flex: none; width: 28px; height: 28px; color: var(--nc-orange); }
/* Both Staffing & Recruiters: Benefits icons in dark gray (per design spec) */
#for-staffing-agencies .panel__benefits li svg { color: var(--nc-dark-gray); }
.panel__benefits li span { font-family: var(--font-body); font-size: 16px; line-height: 1.4; color: var(--nc-dark-gray); padding-top: 2px; }
.panel__cta { align-self: flex-start; }

@media (max-width: 960px) {
  .section-services { padding: 0 0 96px; }
  .services__title { font-size: 36px; margin-bottom: 40px; }
  .services__tabs { grid-template-columns: 1fr; }
  .panel { grid-template-columns: 1fr; padding: 32px; gap: 24px; }
  .tab { padding: 24px; }
}

/* =========================================================
   Why us — A Zero-Risk way... (dark with glass tiles)
   ========================================================= */
.section-why {
  position: relative;
  background: var(--nc-dark-gray);
  color: var(--nc-seasalt);
  padding: 118px 0;
  overflow: hidden;
  isolation: isolate;
  border-radius: 75px;
}
.section-why::before {
  content: none;
}
.section-why--legacy::after {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  right: -200px; bottom: 80px;
  background: radial-gradient(closest-side, rgba(234,88,24,.4), transparent 70%);
  filter: blur(120px);
  pointer-events: none; z-index: 0;
}
.why__head {
  position: relative; z-index: 2;
  max-width: 900px; margin: 0 auto 64px;
  text-align: center; padding: 0 32px;
}
.why__title {
  font-family: var(--font-display);
  font-weight: 700; font-size: 36px; line-height: 1.15;
  color: var(--nc-seasalt);
  margin: 0 0 16px;
}
.why__sub {
  font-family: var(--font-body);
  font-size: 20px; line-height: 1.4;
  color: rgba(250,250,250,.8);
  margin: 0;
}
.why__grid {
  position: relative; z-index: 2;
  max-width: var(--container-max); margin: 0 auto;
  padding: 0 32px;
  display: grid; grid-template-columns: repeat(8, 1fr); gap: 24px;
}
.why__grid > .why-tile:nth-child(-n+4) { grid-column: span 2; }
.why__grid > .why-tile:nth-child(5) { grid-column: 2 / span 2; }
.why__grid > .why-tile:nth-child(6),
.why__grid > .why-tile:nth-child(7) { grid-column: span 2; }

.why-tile {
  border-radius: 24px;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(50px); -webkit-backdrop-filter: blur(50px);
  box-shadow: 0 4px 21.4px rgba(0,0,0,.10);
  border: 1px solid rgba(255,255,255,.08);
  padding: 28px;
  display: flex; flex-direction: column; gap: 12px;
  min-height: 200px;
}
.why-tile__head { display: flex; gap: 18px; align-items: center; }
.why-tile__head svg { width: 40px; height: 40px; flex: none; color: var(--nc-seasalt); }
.why-tile__head h3 { font-family: var(--font-display); font-weight: 700; font-size: 22px; line-height: 1.2; color: var(--nc-seasalt); margin: 0; }
.why-tile__copy { font-family: var(--font-body); font-size: 17px; line-height: 1.4; color: rgba(250,250,250,.92); margin: 0; }

@media (max-width: 960px) {
  .section-why { padding: 80px 0; }
  .why__title { font-size: 28px; }
  .why__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .why__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Services for Product Teams (light)
   ========================================================= */
.section-product {
  background: var(--nc-seasalt);
  padding: 128px 0 96px;
}

/* =========================================================
   Trusted by — case-study cards marquee (component)
   ========================================================= */
.section-tbc {
  position: relative;
  background: var(--nc-seasalt);
  padding: 56px 0 220px;
  overflow: hidden;
}
.nc-tbc { width: 100%; max-width: none; margin: 0 auto; display: flex; flex-direction: column; gap: 46px; }
.nc-tbc__head {
  width: 100%;
  padding: 0 32px;
  display: flex; align-items: center; gap: 10px;
}
.nc-tbc__title {
  font-family: var(--font-display);
  font-weight: 700; font-size: 36px; line-height: 1.15;
  color: var(--nc-orange);
  margin: 0; letter-spacing: 0.5px;
  text-transform: uppercase;
}
  color: var(--nc-orange);
  margin: 0; letter-spacing: 0;
}
.nc-tbc__rows { width: 100%; display: flex; flex-direction: column; gap: 24px; }
.nc-tbc__row {
  width: 100%; overflow: visible;
  padding: 6px 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 64px, #000 calc(100% - 64px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 64px, #000 calc(100% - 64px), transparent 100%);
}
.nc-tbc__track {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 24px; width: max-content; align-items: center;
  will-change: transform;
}
.nc-tbc__row--ltr .nc-tbc__track { animation: nc-tbc-rtl 60s linear infinite; }
.nc-tbc__row--rtl .nc-tbc__track { animation: nc-tbc-ltr 60s linear infinite; }
@keyframes nc-tbc-rtl { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }
@keyframes nc-tbc-ltr { from { transform: translate3d(-50%,0,0); } to { transform: translate3d(0,0,0); } }
.nc-tbc__row:hover .nc-tbc__track,
.nc-tbc__row:focus-within .nc-tbc__track { animation-play-state: paused; }

.nc-tbc__card {
  flex: 0 0 auto;
  width: 322px; height: 203px;
  padding: 24px 32px;
  background: var(--nc-seasalt);
  border: 2px solid var(--nc-deep-orange);
  border-radius: 24px;
  box-shadow: 0 4px 21.4px rgba(0,0,0,.10);
  display: flex; flex-direction: column; align-items: flex-end; justify-content: flex-end;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.nc-tbc__card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(234,88,24,.22); }
.nc-tbc__btn .chev { width: 22px; height: 22px; display: inline-flex; align-items: center; justify-content: center; color: var(--nc-orange); }
.nc-tbc__logo-wrap { flex: 1 1 auto; width: 100%; display: flex; align-items: center; justify-content: center; }
.nc-tbc__logo {
  max-width: 258px; max-height: 100px; width: auto; height: auto; object-fit: contain;
  filter: grayscale(1); opacity: .85;
  transition: filter .3s ease, opacity .3s ease;
}
.nc-tbc__card:hover .nc-tbc__logo { filter: grayscale(0); opacity: 1; }
.nc-tbc__btn {
  align-self: flex-end;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  height: 40px; padding: 8px 0;
  border: 0; background: transparent; border-radius: 999px;
  font-family: var(--font-display); font-weight: 600; font-size: 16px; line-height: 1.2;
  letter-spacing: 1px;
  color: var(--nc-dark-gray);
  cursor: pointer; text-decoration: none;
  transition: transform .2s ease;
}
.nc-tbc__btn:hover { transform: translateX(2px); }
.nc-tbc__btn .chev { width: 22px; height: 22px; display: inline-flex; align-items: center; justify-content: center; }
.nc-tbc__btn .chev svg { width: 16px; height: 16px; }

@media (max-width: 900px) {
  .section-tbc { padding: 32px 0; }
  .nc-tbc { gap: 24px; }
  .nc-tbc__head { padding: 0 16px; }
  .nc-tbc__title { font-size: 28px; }
  .nc-tbc__rows { gap: 16px; }
  .nc-tbc__track { gap: 16px; }
  .nc-tbc__card { width: 240px; height: 160px; padding: 16px 20px; border-radius: 20px; }
  .nc-tbc__logo { max-width: 180px; max-height: 72px; }
  .nc-tbc__btn { font-size: 14px; height: 32px; }
}

/* =========================================================
   Client Experience — quote cards (light)
   ========================================================= */
.section-quotes {
  background:
    radial-gradient(ellipse 70% 80% at 25% 50%, #6a3414 0%, #3a1f12 30%, var(--nc-dark-gray) 65%),
    var(--nc-dark-gray);
  padding: 200px 0 160px;
  color: var(--nc-seasalt);
  position: relative;
  overflow: visible;
}
.section-quotes::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%);
  width: 200vw;
  height: 140px;
  background: var(--nc-dark-gray);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  pointer-events: none;
  z-index: 1;
}
.quotes__row {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 0 0 48px;
  display: grid; grid-template-columns: minmax(360px, 460px) 1fr;
  gap: 24px; align-items: center;
}
.quotes__intro { display: flex; flex-direction: column; gap: 28px; align-self: center; padding-right: 32px; min-width: 0; }
.quotes__title {
  font-family: var(--font-display);
  font-weight: 400; font-size: 48px; line-height: 1.05;
  color: var(--nc-seasalt);
  margin: 0;
  white-space: nowrap;
}
.quotes__title .quotes__hash { color: var(--nc-orange); }
.quotes__title strong { font-weight: 700; }
.quotes__sub {
  font-family: var(--font-body);
  font-weight: 700; font-size: 20px; line-height: 1.3;
  color: var(--nc-seasalt);
  margin: 0;
}
.quotes__cta { align-self: flex-start; border-radius: 999px; padding: 14px 28px; }

/* Drag carousel */
.quotes__carousel {
  position: relative;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  padding: 24px 0;
  -webkit-mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 80px), transparent 100%);
  mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 80px), transparent 100%);
}
.quotes__carousel.is-dragging { cursor: grabbing; }
.quotes__track {
  display: flex; gap: 28px;
  padding-right: 80px;
  will-change: transform;
}
.quotes__track > .quote-card {
  /* Show 2.5 cards: each card ~ (100% - gap*1.5) / 2.5 of carousel width */
  flex: 0 0 calc((100% - 56px) / 2.5);
  scroll-snap-align: start;
}

.quote-card {
  position: relative;
  display: flex;
  isolation: isolate; /* contain stacking so __open sits behind __inner cleanly */
}
.quote-card__inner {
  position: relative;
  z-index: 1;
  flex: 1;
  border-radius: 24px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 48px 28px 24px;
  display: flex; flex-direction: column;
  min-height: 300px;
  color: var(--nc-seasalt);
  box-sizing: border-box;
}
.quote-card__open,
.quote-card__close {
  position: absolute;
  width: 61px;
  height: 48px;
  background: url("../images/quotes.svg") no-repeat center / contain;
  pointer-events: none;
}
/* Top quote — sits BEHIND the glass card; the portion overlapping the card gets blurred by backdrop-filter */
.quote-card__open {
  top: -18px;
  left: 28px;
  z-index: 0;
}
/* Bottom quote — sits IN FRONT of the card */
.quote-card__close {
  bottom: -18px;
  right: 28px;
  transform: rotate(180deg);
  z-index: 2;
}
.quote-card blockquote {
  font-family: var(--font-body);
  font-weight: 400; font-size: 24px; line-height: 1.35;
  color: var(--nc-seasalt);
  margin: 0;
}
.quote-card__foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 24px; }
.quote-card__who { display: flex; flex-direction: column; gap: 4px; }
.quote-card__name { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--nc-seasalt); }
.quote-card__role { font-family: var(--font-body); font-size: 16px; color: rgba(250,250,250,.75); }
.quote-card__icons { display: flex; gap: 8px; }
.quote-card__icon {
  width: 36px; height: 36px; border-radius: 999px;
  border: 1.5px solid var(--nc-orange);
  color: var(--nc-orange);
  display: inline-flex; align-items: center; justify-content: center;
}
.quote-card__icon svg { width: 18px; height: 18px; }
.quote-card__cta { display: inline-flex; align-items: center; gap: 7px; align-self: flex-end; flex: none; white-space: nowrap; font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: .4px; color: var(--nc-orange); text-decoration: none; transition: opacity .2s var(--ease-out); }
.quote-card__cta svg { width: 15px; height: 15px; transition: transform .2s var(--ease-out); }
.quote-card__cta:hover { opacity: .82; }
.quote-card__cta:hover svg { transform: translateX(3px); }

@media (max-width: 1200px) {
  .quotes__row { grid-template-columns: 1fr; padding: 0 32px; }
  .quotes__intro { padding-right: 0; }
  .quotes__track > .quote-card { flex: 0 0 calc((100% - 28px) / 1.5); }
}
@media (max-width: 640px) {
  .quotes__title { font-size: 36px; white-space: normal; }
  .quotes__track > .quote-card { flex: 0 0 85%; min-height: 380px; }
}

/* =========================================================
   AI is in our DNA (dark)
   ========================================================= */
.section-ai {
  position: relative;
  background: var(--nc-dark-gray);
  margin-top: 0;
  color: var(--nc-seasalt);
  padding: 96px 0 64px;
  overflow: hidden;
  isolation: isolate;
}
.section-ai::before {
  content: none;
}

.ai__title-wrap {
  position: relative; z-index: 2;
  max-width: var(--container-max); margin: 0 auto 80px;
  padding: 0 32px;
  display: flex; justify-content: center;
}
.ai__title-tag {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  height: 83px; min-width: 552px;
  padding: 10px 60px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 48px; line-height: 1;
  letter-spacing: 1px;
  color: var(--nc-seasalt);
  background: var(--nc-orange);
  /* Parallelogram shape via clip-path matching figma */
  clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%);
}
.ai__body {
  position: relative; z-index: 2;
  max-width: var(--container-max); margin: 0 auto;
  padding: 0 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.ai__col h3 {
  font-family: var(--font-display);
  font-weight: 700; font-size: 32px; line-height: 1.15;
  color: var(--nc-seasalt);
  margin: 0 0 20px;
  display: flex; gap: 18px; align-items: center;
}
.ai__col h3 svg { width: 40px; height: 40px; color: var(--nc-orange); flex: none; }
.ai__col p {
  font-family: var(--font-body);
  font-size: 17px; line-height: 1.55;
  color: rgba(250,250,250,.92);
  margin: 0 0 32px;
}
.ai__group { margin-bottom: 40px; }
.ai__visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.ai__visual #particle-effect-container {
  width: 100%;
  max-width: 640px;
  aspect-ratio: 5 / 4;
  filter: drop-shadow(0 0 60px rgba(234,88,24,.25));
}
.ai__visual #particle-effect-container canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}
.ai__visual .nc-mark {
  font-family: var(--font-display);
  font-weight: 800; font-size: 280px; line-height: .85;
  color: var(--nc-orange);
  letter-spacing: -8px;
  text-align: center;
  filter: drop-shadow(0 0 60px rgba(234,127,10,.45));
}

/* CTA bridge — full-bleed orange band straddling section-ai → section-reco
   Figma spec: 1440×150, padding 32, gradient 88.36deg, radius 24 */
.cta-bridge {
  position: relative;
  background: linear-gradient(to bottom,
    var(--nc-dark-gray) 0%,
    var(--nc-dark-gray) 50%,
    var(--nc-seasalt) 50%,
    var(--nc-seasalt) 100%);
  padding: 0;
}
.cta-bridge__band {
  margin: 0;
  padding: 32px;
  border-radius: 24px;
  background: linear-gradient(88.36deg, #EA5818 -4.84%, #EA7F0A 96.3%, #FABC78 100.7%);
  display: flex; flex-direction: row; align-items: center; justify-content: space-between; gap: 32px;
  min-height: 150px;
  box-sizing: border-box;
}
.cta-bridge__title {
  flex: 1;
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 38px;
  color: var(--nc-seasalt);
  margin: 0;
}
.cta-bridge__btn {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 24px;
  height: 86px;
  background: linear-gradient(55.07deg, rgba(250,250,250,0.52) -10.03%, rgba(250,250,250,0) 81.04%);
  border: 1px solid rgba(250,250,250,0.68);
  border-radius: 999px;
  color: var(--nc-seasalt);
  font-family: var(--font-display);
  font-weight: 700; font-size: 32px; line-height: 38px;
  text-decoration: none;
  box-sizing: border-box;
  transition: background .2s ease, border-color .2s ease;
}
.cta-bridge__btn svg { width: 24px; height: 24px; flex: 0 0 24px; }
.cta-bridge__btn:hover { background: linear-gradient(55.07deg, rgba(250,250,250,0.7) -10.03%, rgba(250,250,250,0.15) 81.04%); border-color: #fff; }

@media (max-width: 1024px) {
  .cta-bridge__band { flex-direction: column; align-items: stretch; padding: 24px; gap: 20px; min-height: 0; }
  .cta-bridge__title { font-size: 22px; line-height: 28px; }
  .cta-bridge__btn { align-self: flex-start; height: 64px; padding: 16px 24px; font-size: 20px; line-height: 24px; }
}

@media (max-width: 1024px) {
  .ai__title-tag { font-size: 36px; min-width: 0; height: 70px; padding: 0 40px; }
  .ai__body { grid-template-columns: 1fr; gap: 32px; }
  .ai__visual .nc-mark { font-size: 200px; }
}
@media (max-width: 640px) {
  .ai__title-tag { font-size: 28px; height: 56px; padding: 0 24px; }
}

/* =========================================================
   Recognitions (light)
   ========================================================= */
.section-reco {
  background: var(--nc-seasalt);
  padding: 96px 0 64px;
}
.reco__grid {
  max-width: var(--container-max); margin: 0 auto;
  padding: 0 32px;
  display: grid; grid-template-columns: 536px 1fr; gap: 32px; align-items: stretch;
}
.reco__photo {
  border-radius: 16px; overflow: hidden;
  background:
    linear-gradient(0deg, rgba(255,255,255,.14), rgba(255,255,255,.14)),
    url("../images/home-team.jpg") center/cover no-repeat;
  min-height: 656px;
  width: 536px;
  position: relative;
}
.reco__right { display: flex; flex-direction: column; gap: 48px; padding-top: 0; align-self: center; }
.reco__title {
  font-family: var(--font-display);
  font-weight: 700; font-size: 48px; line-height: 56px;
  text-transform: uppercase;
  color: var(--nc-orange);
  margin: 0;
  max-width: 559px;
  color: var(--nc-orange);
  margin: 0;
  max-width: 600px;
}
.reco__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; padding-top: 56px; margin-left: -80px; position: relative; z-index: 2; }
.reco-card {
  position: relative;
  border-radius: 24px;
  background: #FFFFFF;
  box-shadow: 0px 1px 17px rgba(0, 0, 0, 0.2), inset -84px 86px 250px -33px rgba(255, 255, 255, 0.26);
  padding: 32px 72px 48px 32px;
  display: flex; flex-direction: column; gap: 24px;
  min-height: 332px;
  background: var(--nc-white);
  box-shadow: 0 1px 17px rgba(0,0,0,.18), inset -84px 86px 250px -33px rgba(255,255,255,.26);
  padding: 32px 32px 48px;
  min-height: 320px;
  display: flex; flex-direction: column; gap: 20px;
}
.reco-card__badge {
  position: absolute;
  width: auto;
  z-index: 2;
}
.reco-card__badge--clutch { width: 105px; height: 113px; right: 20px; top: -43px; }
.reco-card__badge--gptw { width: 81px; height: 139px; right: 17px; top: -24px; }
.reco-card h3 {
  font-family: var(--font-display);
  font-weight: 700; font-size: 32px; line-height: 38px;
  letter-spacing: 1px;
  color: var(--nc-gray, #404040);
  margin: 0;
  color: var(--nc-gray);
  margin: 0;
  letter-spacing: .5px;
  max-width: 240px;
}
.reco-card p {
  font-family: var(--font-body);
  font-weight: 400; font-size: 16px; line-height: 19px;
  letter-spacing: 1px;
  color: var(--nc-gray, #404040);
  margin: 0;
  color: var(--nc-ink-600);
  margin: 0;
}

@media (max-width: 1024px) {
  .reco__grid { grid-template-columns: 1fr; }
  .reco__photo { min-height: 320px; width: 100%; }
  .reco__title { font-size: 36px; line-height: 1.1; }
  .reco-card h3 { font-size: 24px; line-height: 1.2; }
}
@media (max-width: 640px) {
  .reco__cards { grid-template-columns: 1fr; }
}

/* =========================================================
   Easy to get started — process steps (light)
   ========================================================= */
.section-process {
  background: var(--nc-seasalt);
  padding: 96px 0;
}
.process__row {
  max-width: var(--container-max); margin: 0 auto;
  padding: 0 32px;
  display: grid; grid-template-columns: 559px 1fr; gap: 78px;
}
.process__title {
  font-family: var(--font-display);
  font-weight: 700; font-size: 48px; line-height: 56px;
  text-transform: uppercase;
  color: var(--nc-orange);
  max-width: 559px;
  letter-spacing: 0;
  color: var(--nc-orange);
  margin: 0;
}
.process__steps {
  display: flex; flex-direction: column;
}
.step {
  display: flex; gap: 24px; align-items: flex-start;
  padding-bottom: 32px;
  position: relative;
}
.step { padding-bottom: 48px; }
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 19.5px; top: 40px; bottom: -8px;
  width: 0;
  border-left: 1px dashed rgba(64,64,64,.6);
  z-index: 0;
}
.step:last-child::after {
  content: "";
  position: absolute;
  left: 19.5px; top: 40px; height: 150px;
  width: 70px;
  border-left: 1px dashed rgba(64,64,64,.6);
  border-bottom: 1px dashed rgba(64,64,64,.6);
  border-bottom-left-radius: 16px;
  z-index: 0;
}
.step:not(:last-child)::before { display: none; }
.step__icon { position: relative; z-index: 1; background: var(--nc-seasalt); }
._dummy_ {
  left: 19px; top: 48px; bottom: -12px;
  width: 0;
  border-left: 1.5px dashed rgba(64,64,64,.55);
}
.step__icon {
  flex: none;
  width: 40px; height: 40px;
  border: 2px solid var(--nc-orange);
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  color: var(--nc-orange);
  box-sizing: border-box;
  border-radius: 999px;
  border: 2px solid var(--nc-orange);
  display: flex; align-items: center; justify-content: center;
  background: var(--nc-seasalt);
  color: var(--nc-orange);
  z-index: 1;
}
.step__icon svg { width: 24px; height: 24px; stroke: var(--nc-orange); }
.step__body { padding-top: 4px; flex: 1; }
.step__label {
  font-family: var(--font-body);
  font-weight: 400; font-size: 12px; line-height: 14px; letter-spacing: 0;
  text-transform: uppercase;
  color: #404040;
  text-transform: uppercase;
  color: var(--nc-orange);
  margin: 0 0 6px;
}
.step__title {
  font-family: var(--font-display);
  font-weight: 700; font-size: 24px; line-height: 28px;
  color: #222222;
  color: var(--nc-dark-gray);
  margin: 0 0 8px;
}
.step__desc {
  font-family: var(--font-body);
  font-weight: 400; font-size: 16px; line-height: 19px;
  color: #222222;
  opacity: 0.6;
  margin: 0;
  color: var(--nc-ink-600);
  margin: 0;
  max-width: 540px;
}
.process__cta { padding-left: 100px; position: relative; }
.process__cta::before { display: none; }
.process__btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 24px;
  background: var(--nc-orange);
  border-radius: 999px;
  color: var(--nc-seasalt);
  font-family: var(--font-display);
  font-weight: 600; font-size: 24px; line-height: 28px;
  letter-spacing: 1px;
  text-decoration: none;
  height: 52px;
  transition: background .2s ease, transform .2s ease;
}
.process__btn:hover { background: var(--nc-deep-orange); transform: translateY(-1px); }

@media (max-width: 1024px) {
  .process__row { grid-template-columns: 1fr; gap: 32px; }
  .process__title { font-size: 36px; }
}

/* =========================================================
   Proud member of (dark band)
   ========================================================= */
.section-members {
  background: var(--nc-dark-gray);
  color: var(--nc-seasalt);
  padding: 32px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.members__title {
  font-family: var(--font-display);
  font-weight: 500; font-size: 32px; line-height: 1.2;
  color: var(--nc-seasalt);
  letter-spacing: 1px;
  margin: 0;
}
.members__row {
  display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap;
}
.members__row img { height: 60px; width: auto; opacity: .9; }
.members__row img.bureau { height: 36px; }

@media (max-width: 640px) {
  .members__title { font-size: 22px; }
  .members__row { gap: 24px; }
  .members__row img { height: 40px; }
  .members__row img.bureau { height: 24px; }
}

/* =========================================================
   Footer (component from DS)
   ========================================================= */
.nc-footer {
  background: var(--nc-gray);
  color: var(--nc-seasalt);
  padding: 64px 32px 40px;
}
.nc-footer__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 48px;
  align-items: flex-start;
  max-width: var(--container-max);
  margin: 0 auto;
}
.nc-footer__brand { display: flex; flex-direction: column; gap: 18px; }
.nc-footer__brand img.wordmark { height: 46px; width: auto; }
.nc-footer__badges { display: flex; align-items: center; gap: 16px; margin-top: 6px; flex-wrap: wrap; }
.nc-footer__badges img { display: block; }
.nc-footer__badges .badge-clutch-hex { width: 78px; }
.nc-footer__badges .badge-gptw { width: 54px; }
.nc-footer__badges .badge-reviewed { width: 200px; }

.nc-footer__links { display: flex; flex-direction: column; gap: 14px; padding-top: 6px; }
.nc-footer__links a {
  font-family: var(--font-display);
  font-weight: 600; font-size: 16px; line-height: 1.2;
  letter-spacing: 1px;
  color: var(--nc-seasalt);
  text-decoration: none;
  transition: opacity .2s ease;
}
.nc-footer__links a:hover { opacity: .78; }

.nc-footer__actions { display: flex; flex-direction: column; gap: 12px; padding-top: 6px; }
.nc-footer__actions a {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 400; font-size: 16px; line-height: 1.2;
  letter-spacing: 1px;
  color: var(--nc-seasalt);
  text-decoration: none;
  transition: opacity .2s ease;
}
.nc-footer__actions a:hover { opacity: .78; }
.nc-footer__actions svg { flex: none; color: var(--nc-seasalt); }

@media (max-width: 960px) {
  .nc-footer { padding: 48px 24px 28px; }
  .nc-footer__row { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nc-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .nc-footer__row { grid-template-columns: 1fr; }
}

/* =========================================================
   FOOTER — promoted from Mitchell Martin Case Study (DS spec)
   ========================================================= */
.cs-wrap{width:100%;max-width:var(--container-max);margin-inline:auto;padding-inline:32px}
@media (max-width:960px){.cs-wrap{padding-inline:24px}}
@media (max-width:640px){.cs-wrap{padding-inline:16px}}

.cs-footer{background:var(--nc-gray);color:var(--nc-seasalt);padding:70px 0px}
.cs-footer__row{display:grid;grid-template-columns:minmax(0,1fr) auto auto;gap:48px;align-items:flex-start}
.cs-footer__links + .cs-footer__actions{margin-left:-16px}
.cs-footer__brand{display:flex;flex-direction:column;gap:18px}
.cs-footer__brand img.wordmark{height:46px;width:209px;object-fit:contain}
.cs-footer__badges{display:flex;align-items:center;gap:16px;flex-wrap:wrap;margin-top:6px}
.cs-footer__badges .b-clutch{width:78px;height:auto}
.cs-footer__badges .b-gptw{width:54px;height:auto}
.cs-footer__badges .b-rev{width:200px;height:auto}
.cs-footer__links{display:flex;flex-direction:column;gap:14px;padding-top:6px}
.cs-footer__links a{font:600 16px/19px var(--font-display);letter-spacing:1px;color:var(--nc-seasalt);text-decoration:none;transition:opacity var(--dur-base) ease}
.cs-footer__links a:hover{opacity:.78}
.cs-footer__nav{display:flex;gap:48px}
.cs-footer__nav + .cs-footer__actions{margin-left:-16px}
.cs-footer__col{display:flex;flex-direction:column;gap:14px;padding-top:6px;min-width:0;max-width:248px}
.cs-footer__col-title{font:700 13px/1 var(--font-display);letter-spacing:1.5px;text-transform:uppercase;color:rgba(255,255,255,.55);margin:0 0 6px}
.cs-footer__col a{font:600 16px/1.35 var(--font-display);letter-spacing:1px;color:var(--nc-seasalt);text-decoration:none;transition:opacity var(--dur-base) ease;text-wrap:pretty}
.cs-footer__col a:hover{opacity:.78}
.cs-footer__actions{display:flex;flex-direction:column;gap:12px;padding-top:6px}
.cs-footer__actions a{display:inline-flex;align-items:center;gap:10px;font:400 16px/19px var(--font-display);letter-spacing:1px;color:var(--nc-seasalt);text-decoration:none;padding:4px;transition:opacity var(--dur-base) ease}
.cs-footer__actions a:hover{opacity:.78}
.cs-footer__actions svg{flex:none;color:var(--nc-seasalt)}
.cs-footer__copy{margin-top:48px;padding-top:24px;border-top:1px solid rgba(255,255,255,.12);font:400 13px/1.5 var(--font-body);color:rgba(255,255,255,.6);display:flex;justify-content:space-between;gap:24px;flex-wrap:wrap}
@media (max-width:960px){.cs-footer{padding:48px 0 28px}.cs-footer__row{grid-template-columns:1fr 1fr;gap:32px}.cs-footer__brand{grid-column:1/-1}.cs-footer__nav{gap:32px}}
@media (max-width:640px){.cs-footer__row{grid-template-columns:1fr}.cs-footer__badges{flex-wrap:wrap}.cs-footer__links+.cs-footer__actions{margin-left:0}.cs-footer__nav+.cs-footer__actions{margin-left:0}.cs-footer__nav{flex-direction:column;gap:28px}.cs-footer__col{max-width:none}.cs-footer__actions a{padding-left:0;padding-right:0}}

/* =============================================================
   MOBILE / TABLET REFINEMENTS — applies at ≤1024px (incl. iPad)
   and an ultra-narrow pass at ≤480px.
   Desktop layout (>1024px) is intentionally untouched.

   Rationale: iPad portrait (768–820px) and landscape (1024px) sit
   in the gap between the legacy 960/1024 tweaks and the mobile
   block. Applying the mobile refinements through 1024px keeps the
   page coherent across tablets and matches the mobile nav, which
   already takes over at ≤1024px.
   ============================================================= */
@media (max-width: 1024px) {

  /* Promo banner — single line, ellipsis if needed */
  .banner { padding: 0 16px; gap: 8px; }
  .banner span { font-size: 12.5px; line-height: 1.25; max-width: 70%; }
  .banner a { font-size: 12.5px; white-space: nowrap; }

  /* Nav — tighten logo + hamburger row */
  .cs-nav__logo { height: 28px; }
  .cs-nav { padding: 0 14px; }

  /* HERO — clear nav+banner safely, tighten rhythm */
  .hero { min-height: 620px; padding-bottom: 56px; }
  .hero-content { padding: 144px 20px 0; gap: 24px; max-width: 100%; }
  .hero-headline { font-size: 44px; line-height: 1.1; letter-spacing: .3px; text-wrap: balance; }
  .hero-headline br { display: none; }
  .hero-headline__accent { display: inline; }
  .hero-headline__accent::before { content: " "; }
  .hero-actions { width: 100%; }
  .hero-actions .hero-btn { width: auto; max-width: none; height: 44px; padding: 0 22px; font-size: 16px; }
  .hero-trust { gap: 14px; }
  .hero-trust .badge-clutch-hex { width: 46px; height: 80px; }
  .hero-trust .badge-clutch { width: 110px; }

  /* Trusted-by marquee — vertical stack so logos breathe */
  .nc-trusted { flex-direction: column; align-items: stretch; gap: 12px; padding: 18px 16px; margin-top: -50px; border-radius: 18px; }
  .nc-trusted__label { text-align: center; font-size: 16px; }
  .nc-trusted__viewport { height: 56px; -webkit-mask-image: linear-gradient(to right, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%); mask-image: linear-gradient(to right, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%); }
  .nc-trusted__track { gap: 36px; animation-duration: 38s; }
  .nc-trusted__logo { height: 56px; }
  .nc-trusted__logo img { height: 30px; max-width: 140px; }
  .nc-trusted__logo--tall img { height: 40px; }
  .nc-trusted__logo--short img { height: 24px; }
  .nc-trusted__logo--wide img { height: 24px; max-width: 150px; }

  /* Section-who — reduce overscroll & curve */
  .section-who { padding: 1px 0 360px; }
  .section-who::after { height: 180px; }
  .who-title { font-size: 30px; line-height: 1.15; margin: 56px auto 32px; padding: 0 20px; }
  .who-cards { padding: 0 16px; gap: 20px; }
  .who-card { border-radius: 20px; }
  .who-card__art { aspect-ratio: 558 / 305; height: auto; }
  .who-card__body { padding: 24px; gap: 18px; }
  .who-card__title { font-size: 24px; }
  .who-card__copy { font-size: 16px; line-height: 1.4; gap: 12px; }
  .who-card__cta { align-self: stretch; justify-content: center; }

  /* Services — both blocks (Agencies + Product Teams) */
  .section-services { padding: 0 0 80px; }
  .section-product { padding: 96px 0 72px; }
  .services__title { font-size: 28px; line-height: 1.15; margin: 0 16px 32px; padding: 0; }
  .services__tabs { padding: 0 16px; gap: 14px; }
  .tab { padding: 20px; gap: 14px; border-radius: 18px; }
  .tab__icon { width: 36px; height: 36px; }
  .tab__icon svg { width: 30px; height: 30px; }
  .tab__title { font-size: 19px; line-height: 1.2; }
  .tab__desc { font-size: 14.5px; line-height: 1.4; }
  /* Hide the active tab connector arrow on mobile (panel sits right below in column flow) */
  .tab.is-active::before, .tab.is-active::after { display: none; }
  .services__panel { padding: 0 16px; margin-top: 20px; }
  .panel { padding: 24px; gap: 20px; border-radius: 20px; }
  .panel__lead { font-size: 22px; line-height: 1.25; margin: 0 0 12px; }
  .panel__intro { font-size: 15px; line-height: 1.5; margin: 0 0 24px; }
  .panel__col h3 { font-size: 19px; margin: 0 0 16px; }
  .panel__list { gap: 14px; }
  .panel__list li svg, .panel__benefits li svg { width: 24px; height: 24px; }
  .panel__list li span, .panel__benefits li span { font-size: 15px; }
  .panel__benefits { padding: 24px; gap: 18px; border-radius: 20px; }
  .panel__cta { align-self: stretch; justify-content: center; }

  /* Why-us */
  .section-why { padding: 64px 0; border-radius: 40px; }
  .why__head { margin: 0 auto 40px; padding: 0 20px; }
  .why__title { font-size: 26px; line-height: 1.2; }
  .why__sub { font-size: 16px; }
  .why__grid { padding: 0 16px; gap: 14px; grid-template-columns: 1fr !important; }
  .why__grid > .why-tile { grid-column: 1 / -1 !important; }
  .why-tile { padding: 22px; min-height: 0; gap: 8px; border-radius: 18px; }
  .why-tile__head { gap: 14px; }
  .why-tile__head svg { width: 32px; height: 32px; }
  .why-tile__head h3 { font-size: 19px; line-height: 1.2; }
  .why-tile__copy { font-size: 15px; }

  /* Trusted-by case-study cards (marquee) */
  .section-tbc { padding: 24px 0 120px; }
  .nc-tbc { gap: 18px; }
  .nc-tbc__head { padding: 0 16px; }
  .nc-tbc__title { font-size: 22px; }
  .nc-tbc__rows { gap: 12px; width: 100%; max-width: 100vw; min-width: 0; overflow: hidden; }
  .nc-tbc__row { width: 100%; max-width: 100%; min-width: 0; overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(to right, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%); mask-image: linear-gradient(to right, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%); }
  .section-tbc { overflow-x: clip; max-width: 100vw; width: 100%; }
  .nc-tbc { overflow-x: clip; max-width: 100vw; width: 100%; min-width: 0; }
  .nc-tbc__track { width: max-content; min-width: 0; flex-shrink: 0; }
  .nc-tbc__track { gap: 12px; }
  .nc-tbc__card { width: 200px; height: 140px; padding: 14px 16px; border-radius: 16px; }
  .nc-tbc__logo { max-width: 150px; max-height: 60px; }
  .nc-tbc__btn { font-size: 13px; height: 28px; }
  .nc-tbc__btn .chev { width: 18px; height: 18px; }
  .nc-tbc__btn .chev svg { width: 14px; height: 14px; }

  /* Quotes section */
  .section-quotes { padding: 100px 0 100px; background: radial-gradient(ellipse 110% 55% at 50% 65%, #6a3414 0%, #3a1f12 30%, var(--nc-dark-gray) 70%), var(--nc-dark-gray); overflow-x: clip; overflow-y: visible; }
  .section-quotes::before { height: 80px; width: 200vw; border-radius: 50% 50% 0 0 / 100% 100% 0 0; }
  .section-tbc { overflow: hidden; }
  .quotes__row { padding: 0 16px; gap: 28px; }
  .quotes__intro { gap: 20px; padding-right: 0; align-items: flex-start; text-align: left; }
  .quotes__title { font-size: 32px; white-space: normal; line-height: 1.1; }
  .quotes__sub { font-size: 17px; }
  .quotes__cta { padding: 12px 22px; font-size: 16px; }
  .quotes__row { width: 100%; max-width: 100vw; min-width: 0; overflow: hidden; }
  .quotes__carousel { width: 100%; max-width: 100%; min-width: 0; overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: 16px 0; -webkit-mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 40px), transparent 100%); mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 40px), transparent 100%); }
  .quotes__carousel::-webkit-scrollbar { display: none; }
  .quotes__track { gap: 16px; padding-left: 16px; padding-right: 40px; width: max-content; }
  .quotes__track > .quote-card { flex: 0 0 calc(100vw - 64px); max-width: calc(100vw - 64px); min-height: 360px; box-sizing: border-box; }
  .quote-card__inner { padding: 44px 22px 22px; border-radius: 20px; min-height: 360px; }
  .quote-card__open { width: 58px; height: 46px; top: -14px; left: 18px; }
  .quote-card__close { width: 58px; height: 46px; bottom: -14px; right: 18px; }
  .quote-card blockquote { font-size: 14.5px; line-height: 1.5; }
  .quote-card__name { font-size: 16px; }
  .quote-card__role { font-size: 13px; }
  .quote-card__icon { width: 32px; height: 32px; }

  /* AI section */
  .section-ai { padding: 64px 0 40px; }
  .ai__title-wrap { padding: 0 16px; margin: 0 auto 48px; }
  .ai__title-tag { font-size: 22px; height: 56px; min-width: 0; padding: 0 28px; max-width: 100%; clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%); letter-spacing: .5px; }
  .ai__body { padding: 0 16px; gap: 32px; }
  .ai__col h3 { font-size: 22px; gap: 12px; margin: 0 0 14px; }
  .ai__col h3 svg { width: 32px; height: 32px; }
  .ai__col p { font-size: 15.5px; line-height: 1.55; margin: 0 0 22px; }
  .ai__group { margin-bottom: 28px; }
  .ai__visual #particle-effect-container { max-width: 100%; aspect-ratio: 1 / 1; }

  /* CTA bridge */
  .cta-bridge { padding: 0 16px; background: linear-gradient(to bottom, var(--nc-dark-gray) 0%, var(--nc-dark-gray) 50%, var(--nc-seasalt) 50%, var(--nc-seasalt) 100%); }
  .cta-bridge__band { padding: 22px; gap: 16px; border-radius: 20px; }
  .cta-bridge__title { font-size: 19px; line-height: 1.3; }
  .cta-bridge__btn { height: 56px; padding: 14px 22px; font-size: 17px; line-height: 1.2; gap: 8px; align-self: stretch; justify-content: center; }
  .cta-bridge__btn svg { width: 20px; height: 20px; flex: 0 0 20px; }

  /* Recognitions */
  .section-reco { padding: 72px 0 56px; }
  .reco__grid { padding: 0 16px; gap: 28px; }
  .reco__photo { min-height: 240px; border-radius: 18px; }
  .reco__right { gap: 32px; }
  .reco__title { font-size: 28px; line-height: 1.15; letter-spacing: .5px; }
  .reco__cards { grid-template-columns: 1fr; gap: 56px; padding-top: 48px; margin-left: 0; }
  .reco-card { padding: 28px 24px 32px; border-radius: 20px; min-height: 0; gap: 16px; }
  .reco-card h3 { font-size: 22px; line-height: 1.2; max-width: none; padding-right: 80px; letter-spacing: .5px; }
  .reco-card p { font-size: 15px; line-height: 1.45; letter-spacing: .3px; }
  .reco-card__badge--clutch { width: 78px; height: 84px; right: 16px; top: -34px; }
  .reco-card__badge--gptw { width: 60px; height: 102px; right: 14px; top: -20px; }

  /* Process */
  .section-process { padding: 64px 0; }
  .process__row { padding: 0 20px; gap: 32px; }
  .process__title { font-size: 28px; line-height: 1.15; letter-spacing: .5px; }
  .process__steps { gap: 0; }
  .step { padding-bottom: 28px; gap: 18px; }
  .step__icon { width: 36px; height: 36px; }
  .step__icon svg { width: 22px; height: 22px; }
  .step:not(:last-child)::after { left: 17.5px; top: 36px; }
  /* Mobile: drop the curve flourish — just run the dashed line straight to the button */
  .step:last-child::after { width: 0; height: 180px; border-bottom: 0; border-bottom-left-radius: 0; left: 17.5px; top: 36px; }
  .step__label { font-size: 11px; }
  .step__title { font-size: 19px; line-height: 1.2; }
  .step__desc { font-size: 15px; line-height: 1.45; }
  .process__cta { padding-left: 54px; margin-top: 0; }
  .process__btn { font-size: 18px; height: 48px; padding: 10px 22px; }

  /* Members */
  .section-members { padding: 28px 16px; gap: 14px; }
  .members__title { font-size: 18px; }
  .members__row { gap: 28px; }
  .members__row img { height: 32px; }
  .members__row img.bureau { height: 22px; }

  /* Footer — same as staffing-latam (use base + 640px overrides only) */
}

/* Ultra-narrow refinements */
@media (max-width: 480px) {
  .hero-headline { font-size: 36px; }
  .who-title { font-size: 26px; }
  .services__title { font-size: 24px; }
  .why__title { font-size: 22px; }
  .nc-tbc__title { font-size: 20px; }
  .quotes__title { font-size: 28px; }
  .reco__title { font-size: 24px; }
  .process__title { font-size: 24px; }
  .ai__title-tag { font-size: 19px; height: 50px; padding: 0 22px; }
  .cta-bridge__title { font-size: 17px; }
  .quotes__track > .quote-card { flex: 0 0 90%; }
  .nc-tbc__card { width: 180px; height: 130px; }
  .nc-tbc__logo { max-width: 130px; max-height: 50px; }
}

/* iPad-only refinement: shorten the dashed line after the last process step
   so it doesn't run past the "Book a Call" button. Phones keep 180px. */
@media (min-width: 769px) and (max-width: 1024px) {
  .step:last-child::after { height: 140px; }
}
