:root {
  --blue: #0677fd;
  --blue-dark: #0455c4;
  --blue-light: #e8f1ff;
  --footer-bg: #242422;
  --white: #ffffff;
  --off-white: #f8f8f8;
  --text: #1a1a1a;
  --text-mid: #555555;
  --text-light: #888888;
  --border: #e5e5e5;
  --section-dark: #1d2327;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: Montserrat, sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
a {
  text-decoration: none;
}

/* ── TOP BAR ── */
.top-bar {
  background: var(--section-dark);
  padding: 10px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 28px;
}
.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.top-bar-contact:hover {
  color: white;
}
.top-bar-contact svg {
  width: 14px;
  height: 14px;
  fill: var(--blue);
  flex-shrink: 0;
}
.top-bar-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.15);
}
.top-bar-social {
  display: flex;
  gap: 8px;
}
.top-bar-social a {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
}
.top-bar-social a:hover {
  background: var(--blue);
  color: white;
}

/* ── MAIN NAV ── */
.main-nav {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 16px;
  transition: box-shadow 0.3s;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  letter-spacing: 0.3px;
}
.nav-logo-text small {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  transition: 0.2s;
  letter-spacing: 0.2px;
}
.nav-link:hover {
  color: var(--blue);
  background: var(--blue-light);
}
.nav-cta {
  background: var(--blue);
  color: white;
  font-size: 13px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 200px;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: 0.2s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--blue-dark);
  box-shadow: rgba(6, 119, 253, 0.35) 0px 6px 20px;
  transform: translateY(-1px);
}

/* ── FOOTER ── */
footer {
  background: var(--footer-bg);
  color: rgba(255, 255, 255, 0.55);
  padding: 70px 50px 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 32px;
}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-brand-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}
.footer-brand-name {
  font-size: 14px;
  font-weight: 700;
  color: white;
}
.footer-brand-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.75;
  max-width: 570px;
}
.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 22px;
}
.footer-social a {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: 0.2s;
}
.footer-social a:hover {
  background: var(--blue);
  color: white;
}
.footer-app-badges {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.app-badge {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.2s;
}
.app-badge:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  color: white;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: white;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 400;
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  margin-left: 18px;
}
.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ═══════════════════════════════════════
   PAGE — Corporate Landing
   Hero: white, two-col — left copy,
   right: inline enquiry form
   ═══════════════════════════════════════ */

.hero {
  background: var(--white);
  padding: 80px 50px;
  border-bottom: 1px solid var(--border);
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-light);
  border: 1px solid rgba(6, 119, 253, 0.2);
  border-radius: 50px;
  padding: 5px 15px;
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 18px;
}
.hero h1 .accent {
  color: var(--blue);
}
.hero-desc {
  font-size: 15px;
  color: var(--text-mid);
  max-width: 500px;
  margin-bottom: 32px;
  line-height: 1.8;
}
.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.ht-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-mid);
}
.ht-item::before {
  content: "✓";
  color: var(--blue);
  font-weight: 800;
}

/* Inline form card */
.form-card {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
}
.form-card-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}
.form-card-sub {
  font-size: 13px;
  color: var(--text-mid);
  margin-bottom: 24px;
  line-height: 1.55;
}
.form-group {
  margin-bottom: 14px;
}
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
  font-family: Montserrat, sans-serif;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
}
.form-group textarea {
  resize: vertical;
  min-height: 80px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-submit {
  width: 100%;
  background: var(--blue);
  color: white;
  border: none;
  padding: 14px;
  border-radius: 200px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: Montserrat, sans-serif;
  letter-spacing: 0.3px;
  transition: 0.2s;
  margin-top: 4px;
}
.form-submit:hover {
  background: var(--blue-dark);
  box-shadow: rgba(6, 119, 253, 0.35) 0px 6px 20px;
  transform: translateY(-1px);
}
.form-note {
  font-size: 11px;
  color: var(--text-light);
  text-align: center;
  margin-top: 10px;
}

/* STATS BAR */
.stats-bar {
  background: var(--section-dark);
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
}
.stat-item {
  flex: 1;
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.stat-item:last-child {
  border-right: none;
}
.stat-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

/* TRUSTED BY */
.trusted-bar {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 14px 50px;
  display: flex;
  align-items: center;
  column-gap: 24px;
  flex-wrap: wrap;
}
.trusted-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  white-space: nowrap;
  padding-right: 16px;
  border-right: 1px solid var(--border);
}
.trusted-items {
  display: flex;
  column-gap: 22px;
  flex-wrap: wrap;
}
.trusted-items span {
  font-size: 12px;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}
.trusted-items span::before {
  content: "✓";
  color: var(--blue);
  font-weight: 700;
}

/* SECTIONS */
.section {
  padding: 80px 0;
}
.si {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
}
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.s-title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}
.s-body {
  font-size: 15px;
  color: var(--text-mid);
  max-width: 520px;
  line-height: 1.75;
}
.s-hdr {
  margin-bottom: 48px;
}
.s-hdr.c {
  text-align: center;
}
.s-hdr.c .s-body {
  margin: 0 auto;
}

/* CANDIDATE NETWORK */
.network-bg {
  background: var(--blue);
}
.network-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 50px;
}
.network-inner .eyebrow {
  color: rgba(255, 255, 255, 0.6);
}
.network-inner .s-title {
  color: white;
}
.network-inner .s-body {
  color: rgba(255, 255, 255, 0.65);
}
.network-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.nc {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 30px 22px;
  text-align: center;
  transition: 0.3s;
}
.nc:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-3px);
}
.nc-num {
  font-size: 36px;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 6px;
}
.nc-lbl {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
}

/* WHAT WE OFFER - for clients */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.oc {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 30px 26px;
  transition: 0.3s;
}
.oc:hover {
  border-color: var(--blue);
  box-shadow: rgba(6, 119, 253, 0.1) 0px 8px 32px;
  transform: translateY(-4px);
}
.oc-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.oc-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.oc-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 16px;
}
.oc-link {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ROLES WE COVER */
.roles-bg {
  background: var(--off-white);
}
.roles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.role-pill {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: 0.25s;
  cursor: pointer;
}
.role-pill:hover {
  border-color: var(--blue);
  background: var(--blue-light);
  transform: translateX(3px);
}
.rp-icon {
  font-size: 20px;
  flex-shrink: 0;
}
.rp-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.rp-sub {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 2px;
}

/* WHY SHR */
.why-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-split p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 14px;
}
.why-list {
  list-style: none;
}
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.why-list li:last-child {
  border-bottom: none;
}
.wl-icon {
  width: 36px;
  height: 36px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.wl-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}
.wl-desc {
  font-size: 12.5px;
  color: var(--text-mid);
  line-height: 1.5;
}
.why-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ws {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  transition: 0.3s;
}
.ws:hover {
  border-color: var(--blue);
  background: var(--blue-light);
  transform: translateY(-3px);
}
.ws.blue {
  background: var(--blue);
  border-color: var(--blue);
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}
.ws.blue:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}
.ws-num {
  font-size: 30px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 4px;
}
.ws.blue .ws-num {
  color: white;
  font-size: 28px;
}
.ws-lbl {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.ws.blue .ws-lbl {
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  text-transform: none;
  letter-spacing: 0;
}
.ws-icon {
  font-size: 28px;
  flex-shrink: 0;
}

/* TESTIMONIALS */
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tc {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  border: 1.5px solid rgba(6, 119, 253, 0.12);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}
.tc:hover {
  transform: translateY(-4px);
}
.tc-stars {
  font-size: 13px;
  margin-bottom: 12px;
  color: var(--blue);
}
.tc-text {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 18px;
  font-style: italic;
}
.tc-auth {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tc-av {
  width: 38px;
  height: 38px;
  background: var(--blue-light);
  border: 2px solid rgba(6, 119, 253, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.tc-name {
  font-weight: 700;
  font-size: 13px;
  color: var(--text);
}
.tc-role {
  font-size: 11px;
  color: var(--text-light);
}

/* CTA BAND */
.cta-band {
  background: var(--section-dark);
  padding: 80px 50px;
  text-align: center;
}
.cta-band h2 {
  font-size: 34px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.cta-band p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
}
.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-blue {
  background: var(--blue);
  color: white;
  padding: 14px 32px;
  border-radius: 200px;
  font-size: 13px;
  font-weight: 700;
  font-family: Montserrat, sans-serif;
  letter-spacing: 0.3px;
  transition: 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-blue:hover {
  background: var(--blue-dark);
  box-shadow: rgba(6, 119, 253, 0.35) 0px 6px 20px;
  transform: translateY(-1px);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 200px;
  font-size: 13px;
  font-weight: 700;
  font-family: Montserrat, sans-serif;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  letter-spacing: 0.3px;
  transition: 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-badge {
  animation: fadeUp 0.4s ease both;
}
.hero h1 {
  animation: fadeUp 0.5s 0.1s ease both;
}
.hero-desc {
  animation: fadeUp 0.5s 0.2s ease both;
}
.hero-trust {
  animation: fadeUp 0.5s 0.3s ease both;
}
.form-card {
  animation: fadeUp 0.6s 0.15s ease both;
}

.hero-grid,
.offer-grid,
.network-grid,
.roles-grid,
.rates-grid,
.req-grid,
.faq-grid,
.cta-band {
  grid-template-columns: 1fr;
}
@media screen and (max-width: 699px) {
  .cta-buttons {
    justify-content: center;
    align-items: center;
  }
}

@media screen and (min-width: 700px) {
  .rates-grid,
  .req-grid,
  .faq-grid,
  .cta-band,
  .offer-grid,
  .network-grid,
  .roles-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (min-width: 999px) {
  .hero-grid,
  .offer-grid,
  .network-grid,
  .roles-grid {
    grid-template-columns: 55% 45%;
  }

  .offer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.why-list {
  margin: 0 !important;
}

@media screen and (max-width: 400px) {
  .why-list {
    display: block;
  }

  .why-stat-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 370px) {
  .hero-badge {
    width: 200px !important;
  }
}


.stats-bar {
    background: var(--blue);
    color: white !important;
}

html body .stats-bar .stat-num,
html body .stats-bar *
{
    color: white !important;
}

.wpcf7-form .wpcf7-form-control:not(.wpcf7-acceptance):not(.wpcf7-submit) {
    background: white !important;
    border: 1px solid var(--border) !important 
}