: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 CONTENT — ENP Jobs
   Hero: white bg with blue hero panel (different layout from ECP)
   ═══════════════════════════════ */

/* HERO — split: left white, right full-blue panel */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.hero-left {
  background: var(--off-white);
  padding: 90px 60px 90px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.hero-left::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  width: 60px;
  height: 100%;
  background: var(--off-white);
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  z-index: 1;
}
.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: 6px 15px;
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  width: fit-content;
}
.hero h1 {
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero h1 .accent {
  color: var(--blue);
}
.hero-desc {
  font-size: 14px;
  color: var(--text-mid);
  max-width: 440px;
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  padding: 13px 28px;
  border-radius: 200px;
  font-size: 13px;
  font-weight: 700;
  font-family: Montserrat, sans-serif;
  letter-spacing: 0.3px;
  transition: 0.2s;
}
.btn-primary:hover {
  background: var(--blue-dark);
  box-shadow: rgba(6, 119, 253, 0.4) 0px 6px 20px;
  transform: translateY(-1px);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--blue);
  color: var(--blue);
  padding: 13px 28px;
  border-radius: 200px;
  font-size: 13px;
  font-weight: 700;
  transition: 0.2s;
}
.btn-secondary:hover {
  background: var(--blue);
  color: white;
}

/* Hero right — blue panel */
.hero-right {
  background: var(--blue);
  padding: 60px 50px 60px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 0;
}
.hero-right::before {
  content: "";
  position: absolute;
  top: 0;
  left: -59px;
  width: 60px;
  height: 100%;
  background: var(--blue);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
.hero-right-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.jpc {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: background 0.2s;
}
.jpc:hover {
  background: rgba(255, 255, 255, 0.18);
}
.jpc:last-child {
  margin-bottom: 0;
}
.jpc-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 6px;
}
.jpc-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.jpc-badge {
  font-size: 10px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 3px 10px;
  border-radius: 50px;
  font-weight: 700;
  white-space: nowrap;
}
.jpc-meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  gap: 14px;
}
.jpc-rate {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-top: 6px;
}

/* STATS BAR */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
}
.stat-item {
  flex: 1;
  padding: 26px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child {
  border-right: none;
}
.stat-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-lbl {
  font-size: 12px;
  color: var(--text-light);
  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;
}

/* ABOUT SECTION — full-width two col */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-grid p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}
.bullet-list {
  list-style: none;
  margin-bottom: 28px;
}
.bullet-list li {
  font-size: 14px;
  color: var(--text);
  padding: 9px 0 9px 26px;
  position: relative;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
}
.bullet-list li:last-child {
  border-bottom: none;
}
.bullet-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

/* Rate cards */
.rate-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.rc {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 24px 20px;
  transition: 0.3s;
}
.rc:hover {
  border-color: var(--blue);
  background: var(--blue-light);
  transform: translateY(-3px);
}
.rc.featured {
  grid-column: 1 / -1;
  background: var(--section-dark);
  border-color: var(--section-dark);
  display: flex;
  align-items: center;
  gap: 18px;
}
.rc.featured:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-2px);
}
.rc-icon {
  font-size: 26px;
  flex-shrink: 0;
}
.rc-lbl {
  font-size: 10px;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.rc.featured .rc-lbl {
  color: rgba(255, 255, 255, 0.5);
}
.rc-val {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
}
.rc.featured .rc-val {
  color: white;
  font-size: 15px;
}

/* JOBS GRID — 2 col */
.jobs-bg {
  background: var(--off-white);
}
.jobs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 38px;
}
.jc {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 26px;
  transition: 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.jc::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: transparent;
  transition: background 0.3s;
}
.jc:hover {
  border-color: var(--blue);
  box-shadow: rgba(6, 119, 253, 0.12) 0px 8px 32px;
  transform: translateY(-3px);
}
.jc:hover::before {
  background: var(--blue);
}
.jc-hdr {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}
.jc-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
}
.jc-loc {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 12px;
}
.badge {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.b-locum {
  background: var(--blue-light);
  color: var(--blue-dark);
}
.b-salaried {
  background: var(--section-dark);
  color: rgba(255, 255, 255, 0.85);
}
.jc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.jtag {
  font-size: 11px;
  background: var(--off-white);
  color: var(--text-mid);
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid var(--border);
  font-weight: 600;
}
.jc-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.jrate {
  font-size: 18px;
  font-weight: 800;
  color: var(--blue);
}
.jrate-lbl {
  font-size: 11px;
  color: var(--text-light);
}
.btn-apply {
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: 200px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  font-family: Montserrat, sans-serif;
  letter-spacing: 0.3px;
  transition: 0.2s;
}
.btn-apply:hover {
  background: var(--blue-dark);
}
.btn-out {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--blue);
  color: var(--blue);
  padding: 13px 28px;
  border-radius: 200px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: 0.2s;
}
.btn-out:hover {
  background: var(--blue);
  color: var(--white);
}

/* WHY GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.wc {
  padding: 28px 24px;
  border-radius: 16px;
  border: 1.5px solid var(--border);
  background: var(--white);
  transition: 0.3s;
}
.wc:hover {
  border-color: var(--blue);
  box-shadow: rgba(6, 119, 253, 0.1) 0px 8px 32px;
  transform: translateY(-4px);
}
.wc-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;
}
.wc-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.wc-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* HOW IT WORKS */
.proc-bg {
  background: var(--section-dark);
}
.proc-bg .s-title {
  color: #fff;
}
.proc-bg .s-body {
  color: rgba(255, 255, 255, 0.55);
}
.proc-bg .eyebrow {
  color: #7db8ff;
}
.proc-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  margin-top: 48px;
}
.proc-steps::before {
  content: "";
  position: absolute;
  top: 25px;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  height: 2px;
  background: rgba(6, 119, 253, 0.35);
  z-index: 0;
}
.ps {
  padding: 0 32px;
  text-align: center;
}
.ps-num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.ps-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.ps-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
}

/* TESTIMONIALS */
.test-bg {
  background: var(--blue-light);
}
.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(--blue);
  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.75);
  margin-bottom: 32px;
}
.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-white {
  background: var(--white);
  color: var(--blue);
  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-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  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.35);
  letter-spacing: 0.3px;
  transition: 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-badge {
  animation: fadeUp 0.5s ease both;
}
.hero h1 {
  animation: fadeUp 0.55s 0.1s ease both;
}
.hero-desc {
  animation: fadeUp 0.55s 0.2s ease both;
}
.hero-actions {
  animation: fadeUp 0.55s 0.3s ease both;
}
.hero-right {
  animation: fadeUp 0.65s 0.15s ease both;
}

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

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

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

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

@media screen and (max-width: 980px) {
  .hero-left::after {
    content: unset !important;
  }
  html body section div.hero-left,
  html body section div.hero-right {
    padding: 50px 20px !important;
  }

  html body section div.hero-left {
    padding-top: 80px !important;
  }

  html body section div.hero-right {
    padding-bottom: 80px !important;
  }
}

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