* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: #fff;
  color: #111;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.mob-br {
  display: none;
}

@media(max-width:700px) {
  .mob-br {
    display: inline;
  }
}

nav {
  padding: 16px 6vw;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #f0f0f0;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}

nav img {
  height: 30px;
}

.nav-btn {
  background: linear-gradient(135deg, #F97316, #EC4899);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 11px 24px;
  position: relative;
  overflow: hidden;
}

.nav-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.08) 35%, rgba(255, 255, 255, 0.38) 50%, rgba(255, 255, 255, 0.08) 65%, transparent 80%);
  transform: skewX(-15deg);
  animation: shine 3.2s ease-in-out infinite;
  animation-delay: .6s;
}

/* ── ANNOUNCEMENT BAR ── */
.announce-bar {
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 11px 20px;
}

.announce-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(60, 60, 60, 0.80);
  border-radius: 999px;
  border: 1px solid #333;
  padding: 8px 20px 8px 14px;
}

.announce-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e02020;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(224, 32, 32, .6);
  animation: pulse-dot 1.6s ease-out infinite;
}

@keyframes pulse-dot {
  0% {
    box-shadow: 0 0 0 0 rgba(224, 32, 32, .6);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(224, 32, 32, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(224, 32, 32, 0);
  }
}

.announce-text {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}

/* ── LIVE COUNTER ── */
/* reuse same pattern */

/* ── HERO ── */
.hero {
  max-width: 820px;
  margin: 0 auto;
  padding: 44px 6vw 52px;
  text-align: center;
}

.eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #F97316;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.eyebrow::before,
.eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: #F97316;
}

h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 8.5vw, 96px);
  line-height: .9;
  text-transform: uppercase;
  color: #0a0a0c;
  letter-spacing: -2px;
  margin-bottom: 48px;
  -webkit-font-smoothing: antialiased;
}

h1 .grad {
  background: linear-gradient(135deg, #F97316, #EC4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h1 .accent {
  -webkit-text-fill-color: #22c55e;
  color: #22c55e;
}

/* ── SUBHEADLINE BLOCK ── */
.sub-lead {
  font-size: clamp(15px, 1.6vw, 18px);
  color: #444;
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto 36px;
}

.benefits-list {
  display: inline-flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 auto 48px;
  text-align: left;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #111;
}

.tick {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tick svg {
  width: 13px;
  height: 13px;
}


/* ── CTA SHINE ── */
.cta {
  background: linear-gradient(135deg, #F97316, #EC4899);
  color: #fff;
  border: none;
  cursor: pointer;
  display: inline-block;
  padding: 22px 60px;
  transition: opacity .15s;
  position: relative;
  overflow: hidden;
}

.cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg,
      transparent 20%,
      rgba(255, 255, 255, 0.08) 35%,
      rgba(255, 255, 255, 0.38) 50%,
      rgba(255, 255, 255, 0.08) 65%,
      transparent 80%);
  transform: skewX(-15deg);
  animation: shine 3.2s ease-in-out infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }

  40% {
    left: 160%;
  }

  100% {
    left: 160%;
  }
}

@keyframes pulse-scale {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 4px 20px rgba(249, 115, 22, .3);
  }

  50% {
    transform: scale(1.045);
    box-shadow: 0 8px 32px rgba(249, 115, 22, .55);
  }
}


.cta {
  animation: pulse-scale 2.4s ease-in-out infinite;
}

.cta:hover {
  opacity: .93;
  animation: none;
  transform: scale(1.02);
}

.cta-main {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1.1;
  white-space: nowrap;
}

.cta-note {
  display: block;
  font-size: 12px;
  color: #bbb;
  margin-top: 10px;
}

.rule {
  height: 1px;
  background: #f0f0f0;
  margin: 0 6vw;
}

/* ── NURSE ADVANTAGE STRIP ── */
.advantage-strip {
  background: #0a0a0c;
  padding: 48px 6vw;
}

.advantage-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.adv-card {
  background: #111827;
  padding: 32px 28px;
  border-top: 3px solid #F97316;
}

.adv-icon {
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
}

.adv-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 22px;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: .5px;
  margin-bottom: 10px;
}

.adv-desc {
  font-size: 14px;
  color: #aaa;
  line-height: 1.65;
}

.adv-tag {
  margin-top: 16px;
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #22c55e;
  border: 1px solid #22c55e30;
  padding: 5px 12px;
  border-radius: 2px;
  background: #22c55e10;
}

/* ── HOW IT WORKS ── */
.how-wrap {
  padding: 32px 6vw;
  max-width: 960px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #bbb;
  text-align: center;
  margin-bottom: 20px;
}

.steps {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr;
  gap: 0;
  align-items: stretch;
}

.step {
  border: 1.5px solid #e8e8e8;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
}

.step.final {
  background: #0a0a0c;
  border-color: #F97316;
  box-shadow: 0 4px 24px rgba(249, 115, 22, .2);
}

.step-bar {
  height: 3px;
  background: linear-gradient(90deg, #F97316, #EC4899);
}

.step-body {
  padding: 16px 16px 14px;
}

.step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 900;
  background: linear-gradient(135deg, #F97316, #EC4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}

.step.final .step-num {
  background: linear-gradient(135deg, #F97316, #EC4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: #0a0a0c;
  margin-bottom: 6px;
  line-height: 1.2;
}

.step.final .step-title {
  color: #fff;
}

.step-desc {
  font-size: 12px;
  color: #666;
  line-height: 1.55;
}

.step.final .step-desc {
  color: #888;
}

.step-outcome {
  margin: 10px 0 0;
  padding: 5px 10px;
  background: linear-gradient(135deg, #FFF4EE, #FFF0E8);
  border: 1px solid #F9731630;
  font-family: 'Oswald', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #F97316;
  border-radius: 2px;
  display: inline-block;
}

.step.final .step-outcome {
  background: linear-gradient(135deg, #1C1D24, #232430);
  border-color: #F9731640;
  color: #F97316;
}

.step-arr {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-arr-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.step-arr-text {
  font-family: 'Oswald', sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #F97316;
  line-height: 1.3;
  text-align: center;
}

.step-arr-icon {
  font-size: 18px;
  color: #F97316;
  line-height: 1;
  filter: drop-shadow(0 0 4px rgba(249, 115, 22, .3));
}

/* ── SOCIAL PROOF ── */
.proof {
  background: #fafafa;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  padding: 32px 6vw;
}

.proof-row {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proof-item {
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid #ebebeb;
}

.proof-item:last-child {
  border-right: none;
}

.pn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 44px;
  font-weight: 900;
  background: linear-gradient(135deg, #F97316, #EC4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block;
}

.pl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #bbb;
  display: block;
  margin-top: 6px;
}

/* ── REVIEWS ── */
.reviews-wrap {
  background: #0a0a0c;
  padding: 52px 6vw 44px;
  text-align: center;
}

.reviews-label {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.stars-row {
  color: #F97316;
  font-size: 16px;
  letter-spacing: 2px;
}

/* Slider */
.slider-outer {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto 20px;
}

.slider-track-wrap {
  flex: 1;
  overflow: hidden;
}

.slider-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  opacity: 1;
}

.review-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  padding: 22px 20px;
  text-align: left;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .3);
}

.review-stars {
  color: #F97316;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 13px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviewer-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, #F97316, #EC4899);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 12px;
  color: #fff;
  letter-spacing: .5px;
}

.reviewer-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #111;
}

.reviewer-role {
  font-size: 11px;
  color: #aaa;
  margin-top: 2px;
}

/* Slider buttons */
.slider-btn {
  background: none;
  border: 1.5px solid #374151;
  color: #9ca3af;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, color .2s;
}

.slider-btn:hover {
  border-color: #F97316;
  color: #F97316;
}

/* Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 24px;
}

.slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #374151;
  cursor: pointer;
  transition: background .2s, transform .2s;
  border: none;
}

.slider-dot.active {
  background: #F97316;
  transform: scale(1.3);
}

.reviews-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  color: #555;
}

.reviews-rating {
  font-size: 20px;
  color: #F97316;
  letter-spacing: 3px;
}

.reviews-count {
  font-size: 12px;
  color: #555;
}

/* ── FINAL CTA ── */
.final {
  max-width: 680px;
  margin: 0 auto;
  padding: 80px 6vw;
  text-align: center;
}

.final h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5.5vw, 64px);
  text-transform: uppercase;
  color: #0a0a0c;
  line-height: .95;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.final h2 .grad {
  background: linear-gradient(135deg, #F97316, #EC4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.final p {
  font-size: 17px;
  color: #888;
  line-height: 1.65;
  margin-bottom: 36px;
}

footer {
  border-top: 1px solid #f0f0f0;
  padding: 24px 6vw;
  text-align: center;
  background: #fafafa;
}

footer img {
  height: 20px;
  opacity: .25;
  display: block;
  margin: 0 auto 10px;
}

footer p {
  font-size: 11px;
  color: #ccc;
  line-height: 1.9;
  max-width: 600px;
  margin: 0 auto;
}

footer a {
  color: #ccc;
  text-decoration: none;
}

/* ── MODAL ── */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mbox {
  background: #fff;
  max-width: 440px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .2);
  border-top: 5px solid #F97316;
  transform: translateY(16px);
  transition: transform .3s;
}

.overlay.open .mbox {
  transform: translateY(0);
}

.mclose {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #ccc;
  line-height: 1;
}

.mclose:hover {
  color: #111;
}

.mhead {
  padding: 26px 26px 18px;
  border-bottom: 1px solid #f5f5f5;
}

.mtag {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #F97316;
  margin-bottom: 8px;
}

.mhead h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 26px;
  text-transform: uppercase;
  color: #0a0a0c;
  line-height: 1.05;
}

.mbody {
  padding: 20px 26px 26px;
}

.flbl {
  font-family: 'Oswald', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #aaa;
  display: block;
  margin-bottom: 5px;
  margin-top: 14px;
}

.flbl:first-of-type {
  margin-top: 0;
}

.finp {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #e8e8e8;
  font-size: 14px;
  color: #111;
  outline: none;
  transition: border-color .2s;
  font-family: 'DM Sans', sans-serif;
}

.finp:focus {
  border-color: #F97316;
}

.finp::placeholder {
  color: #ccc;
}

.orow {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: end;
}

.obtn {
  padding: 12px 14px;
  background: #111;
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.over {
  display: none;
  margin-top: 12px;
}

.odigs {
  display: flex;
  gap: 6px;
  margin-bottom: 6px;
}

.od {
  width: 38px;
  height: 44px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  border: 2px solid #e8e8e8;
  font-family: 'Barlow Condensed', sans-serif;
  color: #111;
  outline: none;
  transition: border-color .2s;
}

.od:focus {
  border-color: #F97316;
}

.omsg {
  font-size: 11px;
  color: #aaa;
  display: block;
  margin-top: 2px;
}

.sbtn {
  display: block;
  width: 100%;
  margin-top: 20px;
  padding: 16px;
  background: #F97316;
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: .4;
  pointer-events: none;
  transition: opacity .2s;
  position: relative;
  overflow: hidden;
}

.sbtn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.08) 35%, rgba(255, 255, 255, 0.38) 50%, rgba(255, 255, 255, 0.08) 65%, transparent 80%);
  transform: skewX(-15deg);
  animation: shine 3.2s ease-in-out infinite;
  animation-delay: 1.2s;
}

.sbtn.on {
  opacity: 1;
  pointer-events: auto;
}

.trust {
  text-align: center;
  font-size: 11px;
  color: #ccc;
  margin-top: 10px;
}

.ty {
  display: none;
  padding: 32px 26px;
  text-align: center;
}

.ty .ck {
  font-size: 52px;
  display: block;
  margin-bottom: 12px;
}

.ty h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
  color: #0a0a0c;
  margin-bottom: 8px;
}

.ty p {
  font-size: 13px;
  color: #888;
  line-height: 1.65;
  margin-bottom: 16px;
}

.dlbtn {
  display: block;
  padding: 14px;
  background: #F97316;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
}

.bkbtn {
  display: block;
  font-size: 13px;
  color: #F97316;
  font-weight: 600;
  text-decoration: none;
  margin-top: 10px;
}

@media(max-width:700px) {

  /* Layout */
  .stat-pills {
    gap: 8px;
  }

  .advantage-inner {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .step-arr {
    transform: rotate(90deg);
    padding: 16px 0;
  }

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

  .proof-row {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .proof-item {
    border-right: none;
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 16px;
  }

  /* Nav */
  nav {
    padding: 12px 4vw;
  }

  nav img {
    height: 24px;
  }

  .nav-btn {
    font-size: 10px;
    padding: 9px 14px;
    letter-spacing: 1px;
  }

  /* Announce bar — wrap text, no truncation */
  .announce-bar {
    padding: 10px 4vw;
  }

  .announce-pill {
    border-radius: 8px;
    padding: 8px 14px 8px 12px;
    flex-wrap: wrap;
    gap: 8px;
  }

  .announce-text {
    font-size: 10px;
    letter-spacing: 1px;
    white-space: normal;
    text-align: center;
    line-height: 1.6;
  }

  /* Hero */
  .hero {
    padding: 40px 5vw 32px;
  }

  h1 {
    font-size: clamp(48px, 13vw, 68px);
    letter-spacing: -1px;
    line-height: .92;
    font-weight: 900 !important;
    -webkit-text-stroke: 0.3px currentColor;
  }

  .sub-lead {
    font-size: 14px;
    white-space: normal;
    margin-bottom: 14px;
  }

  .benefit-item {
    font-size: 15px;
    font-weight: 600;
  }

  /* CTA */
  .cta {
    padding: 18px 20px;
    width: 100%;
    display: block;
  }

  .cta-main {
    font-size: 14px;
    white-space: normal;
    letter-spacing: 1px;
    font-weight: 900 !important;
  }

  /* Checklist section */
  .how-wrap {
    padding: 36px 5vw 32px;
  }

  /* Reviews */
  .reviews-wrap {
    padding: 36px 4vw 32px;
  }

  .slider-outer {
    gap: 8px;
  }

  .slider-btn {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }

  .slider-track {
    grid-template-columns: 1fr;
  }

  .review-card {
    padding: 18px 16px;
  }

  .review-text {
    font-size: 12px;
  }

  /* Final CTA */
  .final {
    padding: 48px 5vw;
  }

  .final h2 {
    font-size: clamp(30px, 9vw, 46px);
    letter-spacing: -.5px;
    font-weight: 900 !important;
    -webkit-text-stroke: 0.3px currentColor;
  }

  .final p {
    font-size: 15px;
  }

  /* Footer */
  footer {
    padding: 20px 5vw;
  }

  footer p {
    font-size: 10px;
  }
}

#fhb_otp-row {
  display: none;
}

.err {
  color: #dc2626;
  font-size: 12px;
  margin-top: 6px;
  /* min-height:18px; */
  font-family: 'DM Sans', sans-serif;
}

.finp.error {
  border: 1px solid #dc2626 !important;
  background: #fff5f5;
}

/* Full width */
.iti {
  width: 100% !important;
  position: relative !important;
}

/* Move flag container to right */
.iti__flag-container {
  left: auto !important;
  right: 0 !important;
  width: 40px !important;
}

/* Flag area */
.iti__selected-flag {
  padding: 0 12px !important;
  background: transparent !important;
  border-left: 1px solid #e5e5e5 !important;
}

/* Hide country code if you only want flag */
.iti__selected-dial-code {
  display: none !important;
}

/* Input spacing */
#fhb_phone {
  padding-left: 15px !important;
  padding-right: 60px !important;
}

.iti__country-container {
  inset: 0 0 0 auto !important;
  width: 40px !important;
}

.iti__selected-dial-code {
  display: none !important;
}

#fhb_phone {
  padding-left: 12px !important;
  padding-right: 20px !important;
}

.iti__country-container {
  left: auto !important;
  right: 0px !important;
  pointer-events: none !important;
}

.iti__arrow {
  display: none !important;
}

#fhb_phone {
  padding-right: 45px !important;
}

.lead-loader {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, .96);
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
}

.lead-loader.show {
  display: flex;
}

.lead-loader-box {
  text-align: center;
  max-width: 320px;
  padding: 30px;
}

.lead-spinner {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border: 4px solid #eee;
  border-top: 4px solid #F97316;
  border-radius: 50%;
  animation: spin .8s linear infinite;
}

.lead-loader h3 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 700;
}

.lead-loader p {
  margin: 0;
  color: #666;
  font-size: 14px;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

/* ── STAT PILLS ── */
.stat-pills {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  margin-top: 36px;
}

.stat-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f7f7f7;
  border: 1px solid #ebebeb;
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
}

.stat-pill span.stick {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sub {
  font-size: clamp(16px, 1.9vw, 20px);
  color: #555;
  line-height: 1.65;
  max-width: 620px;
  margin: 0 auto 36px;
}



@media all and (max-width: 480px) {
  #liveCounter {
    right: 5px !important;
  }

  .mbody {
    padding: 20px 16px 26px;
  }

  .od {
    width: 40px;
    height: 40px;
    border: 1px solid #e8e8e8;
  }

  .sbtn {
    padding: 14px 12px;
    letter-spacing: 1px;
  }

  .obtn {
    padding: 12px 14px;
  }

  .tick {
    width: 23px;
    height: 23px;
    top: -6px;
    left: 5px;
    position: relative;
  }

  .otp-msg,
  .timer {
    font-size: 13px;
  }

}