/* ════════════════════════════════════════════════════
   CSS VARIABLES — exact from live site
   ════════════════════════════════════════════════════ */
: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 — exact copy from live site
   ════════════════════════════════════════════════════ */
.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 — exact copy from live site
   ════════════════════════════════════════════════════ */
.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;
}
.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 — exact copy from live site
   ════════════════════════════════════════════════════ */
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-SPECIFIC STYLES — Practice Nurse Jobs
   ════════════════════════════════════════════════════ */

/* HERO */
.hero {
  background: linear-gradient(130deg, #0b1628 0%, #0e2560 55%, #0f3080 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 0;
}
.hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -80px;
  width: 640px;
  height: 640px;
  background: radial-gradient(
    circle,
    rgba(6, 119, 253, 0.15) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: end;
}
.hero-left {
  padding-bottom: 64px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(6, 119, 253, 0.18);
  border: 1px solid rgba(91, 154, 255, 0.3);
  border-radius: 50px;
  padding: 6px 15px;
  font-size: 11px;
  font-weight: 700;
  color: #7db8ff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 800;
  color: white;
  line-height: 1.08;
  letter-spacing: -0.8px;
  margin-bottom: 18px;
}
.hero h1 .accent {
  color: var(--blue);
}
.hero-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.8;
}
.hero-search {
  display: flex;
  gap: 0;
  background: white;
  border-radius: 200px;
  padding: 6px 6px 6px 22px;
  align-items: center;
  max-width: 500px;
  margin-bottom: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.hero-search input {
  flex: 1;
  border: none;
  outline: none;
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  color: var(--text);
  background: transparent;
}
.hero-search input::placeholder {
  color: var(--text-light);
}
.hero-search button {
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 200px;
  padding: 11px 22px;
  font-size: 13px;
  font-weight: 700;
  font-family: Montserrat, sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.hero-search button:hover {
  background: var(--blue-dark);
}
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.2s;
}
.chip:hover {
  background: rgba(6, 119, 253, 0.35);
  border-color: rgba(6, 119, 253, 0.5);
  color: white;
}

/* Hero right card */
.hero-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px 20px 0 0;
  padding: 26px;
  backdrop-filter: blur(10px);
}
.hc-title {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
  letter-spacing: 0.2px;
}
.jpc {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 11px;
  padding: 14px 16px;
  margin-bottom: 9px;
  cursor: pointer;
  transition: background 0.2s;
}
.jpc:hover {
  background: rgba(6, 119, 253, 0.22);
}
.jpc:last-child {
  margin-bottom: 0;
}
.jpc-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 5px;
}
.jpc-name {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
}
.jpc-badge {
  font-size: 10px;
  background: rgba(6, 119, 253, 0.4);
  color: #93b4ff;
  padding: 2px 8px;
  border-radius: 50px;
  font-weight: 700;
  white-space: nowrap;
}
.jpc-meta {
  font-size: 12px;
  color: #94a3b8;
  display: flex;
  gap: 12px;
}

/* 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 THE ROLE — explainer */
.explainer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.explainer p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 16px;
}
.exp-list {
  list-style: none;
  margin-bottom: 28px;
}
.exp-list li {
  font-size: 14px;
  color: var(--text);
  padding: 9px 0 9px 26px;
  position: relative;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
}
.exp-list li:last-child {
  border-bottom: none;
}
.exp-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}
.btn-blue {
  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-blue:hover {
  background: var(--blue-dark);
  box-shadow: rgba(6, 119, 253, 0.35) 0px 6px 20px;
  transform: translateY(-1px);
}

/* PN stats cards */
.pn-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.ac {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 22px 18px;
  transition: 0.3s;
}
.ac:hover {
  border-color: var(--blue);
  background: var(--blue-light);
  transform: translateY(-3px);
}
.ac.wide {
  grid-column: 1 / -1;
  display: flex;
  gap: 14px;
  align-items: center;
  background: var(--blue);
  border-color: var(--blue);
}
.ac.wide:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}
.ac-icon {
  font-size: 24px;
  flex-shrink: 0;
}
.ac-lbl {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.ac.wide .ac-lbl {
  color: rgba(255, 255, 255, 0.65);
}
.ac-val {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
}
.ac.wide .ac-val {
  color: #fff;
  font-size: 16px;
}

/* JOBS */
.jobs-bg {
  background: var(--off-white);
}
.jobs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 38px;
}
.jc {
  background: #fff;
  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;
}
.badge-locum {
  background: var(--blue-light);
  color: var(--blue-dark);
}
.badge-salaried {
  background: var(--section-dark);
  color: rgba(255, 255, 255, 0.9);
}
.badge-contract {
  background: #f0f0f0;
  color: #444;
}
.jc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.jc-tag {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 50px;
  background: var(--off-white);
  border: 1px solid var(--border);
  color: var(--text-mid);
}
.jc-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.jc-salary {
  font-size: 15px;
  font-weight: 800;
  color: var(--blue);
}
.jc-type {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 600;
}
.jc-apply {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.jobs-cta {
  text-align: center;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--blue);
  color: var(--blue);
  padding: 13px 32px;
  border-radius: 200px;
  font-size: 13px;
  font-weight: 700;
  font-family: Montserrat, sans-serif;
  letter-spacing: 0.3px;
  transition: 0.2s;
}
.btn-outline:hover {
  background: var(--blue);
  color: white;
}

/* WHY SHR */
.why-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.wc {
  padding: 28px 24px;
  border-radius: 16px;
  border: 1.5px solid var(--border);
  background: #fff;
  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: #5b9aff;
}
.proc-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  margin-top: 56px;
}
.proc-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(16.66% + 28px);
  right: calc(16.66% + 28px);
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
}
.ps {
  text-align: center;
  padding: 0 28px;
}
.ps-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  position: relative;
  z-index: 1;
}
.ps-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.ps-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  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(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-search {
  animation: fadeUp 0.5s 0.3s ease both;
}
.hero-chips {
  animation: fadeUp 0.5s 0.35s ease both;
}
.hero-card {
  animation: fadeUp 0.6s 0.15s ease both;
}

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

@media screen and (min-width: 700px) {
  .why-grid-6,
  .info-cards,
  .roles-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 {
    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;
  }
}
