* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --blue: #0677fd;
  --blue-dark: #0455c4;
  --blue-light: #e8f1ff;
  --dark: #1d2327;
  --text: #1a1a1a;
  --text-mid: #555;
  --text-light: #888;
  --border: #e5e5e5;
  --off-white: #f8f8f8;
  --white: #fff;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* TOP BAR */
.top-bar {
  background: var(--dark);
  padding: 10px 60px;
  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;
}
.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;
}

/* NAV */
.main-nav {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}
.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: all 0.2s;
}
.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;
  white-space: nowrap;
  transition: all 0.2s;
}
.nav-cta:hover {
  background: var(--blue-dark);
}

/* BREADCRUMB */
.breadcrumb {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 12px 60px;
}
.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-light);
}
.breadcrumb-inner a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
}
.breadcrumb-inner span {
  color: var(--text-light);
}

/* HERO */
.hero {
  background: var(--dark);
  min-height: 520px;
  display: grid;
  grid-template-columns: 55% 45%;
  position: relative;
  overflow: hidden;
}
.hero-content {
  padding: 80px 60px 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(6, 119, 253, 0.2);
  color: #7eb3ff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 200px;
  margin-bottom: 24px;
  width: fit-content;
  border: 1px solid rgba(6, 119, 253, 0.3);
}
.hero-tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7eb3ff;
}
.hero h1 {
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 800;
  line-height: 1.12;
  color: white;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero h1 .accent {
  color: var(--blue);
}
.hero-desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.btn-blue {
  background: var(--blue);
  color: white;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 200px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.3px;
  transition: all 0.2s;
}
.btn-blue:hover {
  background: var(--blue-dark);
}
.btn-outline {
  background: transparent;
  color: white;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 32px;
  border-radius: 200px;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  letter-spacing: 0.3px;
  transition: all 0.2s;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}
.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
  white-space: nowrap;
}
.hero-image {
  position: relative;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--dark) 0%, transparent 25%);
  z-index: 1;
  pointer-events: none;
}
.hero-badge {
  position: absolute;
  bottom: 36px;
  right: 28px;
  background: white;
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.badge-icon {
  width: 42px;
  height: 42px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.badge-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.badge-sub {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 2px;
}

/* TRUST STRIP */
.trust-strip {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 16px 60px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.trust-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  white-space: nowrap;
}
.trust-sep {
  width: 1px;
  height: 18px;
  background: var(--border);
}
.trust-items {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 6px;
}
.trust-check {
  width: 18px;
  height: 18px;
  background: var(--blue-light);
  border-radius: 50%;
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ROLE TYPES */
.section {
  padding: 80px 60px;
}
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.3px;
}
.section-body {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 540px;
  margin-top: 12px;
}
.roles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.role-card {
  background: var(--off-white);
  border-radius: 16px;
  padding: 28px 26px;
  border: 1.5px solid transparent;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.role-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.role-card:hover {
  background: var(--blue);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(6, 119, 253, 0.35);
}
.role-card:hover::before {
  transform: scaleX(1);
  background: rgba(255, 255, 255, 0.4);
}
.role-card:hover .role-icon {
  background: rgba(255, 255, 255, 0.2);
}
.role-card:hover .role-title {
  color: white;
}
.role-card:hover .role-body {
  color: rgba(255, 255, 255, 0.75);
}
.role-card:hover .role-badge {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}
.role-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  transition: background 0.3s;
}
.role-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  transition: color 0.3s;
}
.role-body {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  transition: color 0.3s;
}
.role-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 200px;
  margin-top: 14px;
  transition: all 0.3s;
}

/* RATES */
.rates-section {
  background: var(--dark);
  padding: 80px 60px;
}
.rates-section .section-eyebrow {
  color: #7eb3ff;
}
.rates-section .section-title {
  color: white;
}
.rates-section .section-body {
  color: rgba(255, 255, 255, 0.55);
}
.rates-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.rate-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px 26px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.rate-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.rate-card:hover {
  background: var(--blue);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(6, 119, 253, 0.4);
}
.rate-card:hover::after {
  transform: scaleX(1);
  background: rgba(255, 255, 255, 0.4);
}
.rate-card:hover .rate-type {
  color: rgba(255, 255, 255, 0.7);
}
.rate-card:hover .rate-value {
  color: white;
}
.rate-card:hover .rate-label {
  color: rgba(255, 255, 255, 0.55);
}
.rate-type {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
  display: block;
  transition: color 0.3s;
}
.rate-value {
  font-size: 32px;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 6px;
  transition: color 0.3s;
}
.rate-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
}

/* REQUIREMENTS */
.req-section {
  background: var(--off-white);
  padding: 80px 60px;
}
.req-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 48px;
}
.req-image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}
.req-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.req-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.req-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: white;
  border-radius: 14px;
  border-left: 3px solid var(--blue);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s;
}
.req-item:hover {
  background: var(--blue);
  border-left-color: rgba(255, 255, 255, 0.4);
  transform: translateX(4px);
  box-shadow: 0 12px 40px rgba(6, 119, 253, 0.35);
}
.req-item:hover .req-icon {
  background: rgba(255, 255, 255, 0.2);
}
.req-item:hover .req-text {
  color: white;
}
.req-icon {
  width: 38px;
  height: 38px;
  background: var(--blue-light);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: background 0.3s;
}
.req-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
  transition: color 0.3s;
}

/* FAQ */
.faq-section {
  padding: 80px 60px;
  background: white;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.faq-card {
  background: var(--off-white);
  border-radius: 16px;
  padding: 28px 26px;
  border: 1.5px solid var(--border);
  transition: all 0.3s;
}
.faq-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 30px rgba(6, 119, 253, 0.12);
}
.faq-q {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.faq-q-icon {
  width: 28px;
  height: 28px;
  background: var(--blue-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
.faq-a {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
  padding-left: 40px;
}

/* CTA BAND */
.cta-band {
  background: var(--blue);
  padding: 70px 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.cta-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
}
.cta-title {
  font-size: clamp(26px, 2.5vw, 36px);
  font-weight: 800;
  color: white;
  line-height: 1.2;
}
.cta-body {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 10px;
  max-width: 500px;
  line-height: 1.7;
}
.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.btn-white {
  background: white;
  color: var(--blue);
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 200px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
}
.btn-white:hover {
  background: var(--blue-light);
}
.btn-outline-white {
  background: transparent;
  color: white;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 200px;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  white-space: nowrap;
  text-align: center;
}

/* RELATED */
.related-section {
  padding: 50px 60px;
  background: var(--off-white);
  border-top: 1px solid var(--border);
}
.related-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.related-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
}
.related-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.related-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  padding: 8px 18px;
  background: var(--blue-light);
  border-radius: 200px;
  border: 1px solid rgba(6, 119, 253, 0.2);
  transition: all 0.2s;
}
.related-link:hover {
  background: var(--blue);
  color: white;
}

/* FOOTER */
footer {
  background: #242422;
  color: rgba(255, 255, 255, 0.55);
  padding: 70px 60px 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-col h4 {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 10px;
}
.footer-col a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  margin-left: 18px;
}

ul,
li {
  margin: 0 !important;
  list-style: none !important;
}
ul {
  margin-bottom: 20px !important;
}

.hero-grid,
.explainer,
.why-grid-6,
.split,
.info-cards,
.roles-grid,
.rate-cards,
.settings-grid {
  grid-template-columns: 1fr;
}

@media screen and (min-width: 700px) {
  .why-grid-6,
  .info-cards,
  .roles-grid,
  .rate-cards,
  .settings-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (min-width: 990px) {
  .explainer,
  .split {
    grid-template-columns: 1fr 1fr;
  }
  .hero-grid {
    grid-template-columns: 1fr 420px;
  }
  .why-grid-6,
  .info-cards,
  .roles-grid,
  .settings-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media screen and (max-width: 600px) {
  .stats-bar .stats-inner {
    flex-direction: column;
  }

  .stat-item {
    border-right: unset !important;
  }

  .stats-inner .stat-item .stat-num {
    justify-content: center;
  }
}

.hero-cards,
.salary-cards,
.duties-grid {
  grid-template-columns: 1fr;
}

@media screen and (min-width: 700px) {
  .salary-cards,
  .duties-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-cards {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media screen and (min-width: 900px) {
  .duties-grid {
    grid-template-columns: 1ft 1fr 1fr;
  }
}

.hero,
.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 {
    grid-template-columns: 1fr 1fr;
  }
}

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

@media screen and (max-width: 980px) {
  .hero-badge {
    bottom: 10px;
    right: 10px;
  }

  .badge-sub {
    margin: 0 !important;
  }
  .hero-badge {
    padding: 10px;
  }
}
