: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 — Nurse Practitioner Jobs
   Hero: off-white, large type left,
   right has a stacked role-type panel
   ═══════════════════════════════════════ */

.hero {
  background: var(--off-white);
  padding: 80px 50px 0;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: block;
  max-width: 720px;
}
.hero-left {
  padding-bottom: 60px;
  text-align: center;
}
.hero-left .hero-badge {
  margin-left: auto;
  margin-right: auto;
}
.hero-left .hero-desc {
  margin-left: auto;
  margin-right: auto;
}
.hero-left .hero-actions {
  justify-content: 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(34px, 4.5vw, 56px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.05;
  letter-spacing: -1.2px;
  margin-bottom: 18px;
}
.hero h1 .accent {
  color: var(--blue);
}
.hero-desc {
  font-size: 15px;
  color: var(--text-mid);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 12px;
  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.35) 0px 6px 20px;
  transform: translateY(-1px);
}
.btn-outline {
  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-outline:hover {
  background: var(--blue);
  color: white;
}

/* Hero right — role sub-type stacked cards */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.role-stack {
  border: 1.5px solid var(--border);
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  background: var(--white);
}
.rs-header {
  background: var(--blue);
  padding: 14px 20px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.rs-item {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.2s;
  cursor: pointer;
}
.rs-item:last-child {
  border-bottom: none;
}
.rs-item:hover {
  background: var(--blue-light);
}
.rs-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
}
.rs-sub {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 2px;
}
.rs-count {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-light);
  padding: 3px 10px;
  border-radius: 50px;
  white-space: nowrap;
}
.rs-item:hover .rs-count {
  background: var(--blue);
  color: white;
}

/* 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 ANP/NP */
.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: 14px;
}
.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: 14px;
  padding: 22px 18px;
  transition: 0.3s;
}
.rc:hover {
  border-color: var(--blue);
  background: var(--blue-light);
  transform: translateY(-3px);
}
.rc.wide {
  grid-column: 1 / -1;
  background: var(--blue);
  border-color: var(--blue);
  display: flex;
  align-items: center;
  gap: 14px;
}
.rc.wide:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}
.rc-icon {
  font-size: 24px;
  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.wide .rc-lbl {
  color: rgba(255, 255, 255, 0.6);
}
.rc-val {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
}
.rc.wide .rc-val {
  color: white;
  font-size: 15px;
}

/* ANP vs NP — difference explainer */
.diff-bg {
  background: var(--section-dark);
}
.diff-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 50px;
}
.diff-inner .eyebrow {
  color: rgba(255, 255, 255, 0.5);
}
.diff-inner .s-title {
  color: white;
}
.diff-inner .s-body {
  color: rgba(255, 255, 255, 0.55);
}
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.diff-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px 28px;
  transition: 0.3s;
}
.diff-card:hover {
  background: rgba(6, 119, 253, 0.15);
  border-color: rgba(6, 119, 253, 0.35);
}
.diff-card.featured {
  background: var(--blue);
  border-color: var(--blue);
}
.diff-card.featured:hover {
  background: var(--blue-dark);
}
.diff-title {
  font-size: 20px;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.diff-abbr {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.diff-list {
  list-style: none;
}
.diff-list li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  padding: 7px 0 7px 20px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.diff-list li:last-child {
  border-bottom: none;
}
.diff-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 700;
}
.diff-card.featured .diff-list li::before {
  color: rgba(255, 255, 255, 0.6);
}

/* JOBS GRID */
.jobs-bg {
  background: var(--off-white);
}
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 38px;
}
.jc {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  transition: 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.jc::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  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-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}
.jc-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.jc-area {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 10px;
}
.badge {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  white-space: nowrap;
}
.b-locum {
  background: var(--blue-light);
  color: var(--blue-dark);
}
.b-salaried {
  background: var(--section-dark);
  color: rgba(255, 255, 255, 0.85);
}
.b-arrs {
  background: var(--blue);
  color: white;
}
.jc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 14px;
}
.jtag {
  font-size: 10.5px;
  background: var(--off-white);
  color: var(--text-mid);
  padding: 3px 9px;
  border-radius: 50px;
  border: 1px solid var(--border);
  font-weight: 600;
}
.jc-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.jrate {
  font-size: 17px;
  font-weight: 800;
  color: var(--blue);
}
.jrate-lbl {
  font-size: 10.5px;
  color: var(--text-light);
}
.btn-apply {
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: 9px 18px;
  border-radius: 200px;
  font-size: 11.5px;
  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 SHR */
.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(--blue);
}
.proc-bg .eyebrow {
  color: rgba(255, 255, 255, 0.6);
}
.proc-bg .s-title {
  color: white;
}
.proc-bg .s-body {
  color: rgba(255, 255, 255, 0.65);
}
.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(255, 255, 255, 0.2);
  z-index: 0;
}
.ps {
  padding: 0 32px;
  text-align: center;
}
.ps-num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  color: var(--blue);
  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: white;
  margin-bottom: 8px;
}
.ps-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  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-actions {
  animation: fadeUp 0.5s 0.3s ease both;
}
.hero-right {
  animation: fadeUp 0.6s 0.15s ease both;
}

ul,
li {
  list-style: none !important;
  margin-left: 0 !important;
}

@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;
  }
}
