html, body {
  width: 100%;
  overflow-x: hidden;
}
:root {
  --bg-dark: #0b0d12;
  --bg-mid: #101522;
  --text-main: #ffffff;
  --text-muted: #b6bdd8;

  --cta-pink: #ff2a7a;
  --cta-pink-hover: #ff4da0;

  --blue-glow: #2dd4ff;
  --border-soft: rgba(255,255,255,0.08);
}

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

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-dark);
  color: var(--text-main);
}

/* ================= HEADER / LOGO ================= */

.header {
  height: 72px;
  border-bottom: 1px solid var(--border-soft);
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.15)
  );
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-inner img {
  height: 34px;
}

.header-actions {
  display: flex;
  gap: 12px;
}

.header-btn {
  padding: 8px 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.header-btn.signup {
  background: var(--cta-pink);
  color: #fff;
}

.header-btn.login {
  border: 1px solid var(--border-soft);
  color: #fff;
  background: rgba(255,255,255,0.05);
}



/* ================= HERO WITH IMAGE ================= */

.hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0b0d12;
}
.hero,
.hero * {
  max-width: 100vw;
}


/* BACKGROUND IMAGE */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
.hero-bg.desktop {
    display:block;
  }
  .hero-bg.mobile {
    display:none;
  }
@media (max-width: 768px) {
  .hero-bg {
    background-position: center top;
    background-size: cover;
  }
  .hero-bg.desktop {
    display:none;
  }
  .hero-bg.mobile {
    display:block;
  }
}
@media (max-width: 768px) {
  .hero-bg {
    image-rendering: -webkit-optimize-contrast;
  }
}
/* DARK OVERLAY FOR READABILITY */
.hero-overlay {
  background:
    radial-gradient(
      ellipse at center,
      rgba(11,13,18,0.55) 0%,
      rgba(11,13,18,0.75) 35%,
      rgba(11,13,18,0.9) 65%,
      rgba(11,13,18,0.95) 100%
    );
}

/* CONTENT */
.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 920px;
  padding: 34px 20px;
  text-align: center;
}
/* BLACK FOCUS PANEL BEHIND CONTENT */
.hero-inner::before {
 content: "";
  position: absolute;
  inset: -14px -10px;
  background: rgba(0, 0, 0, 0.52);
  border-radius: 16px;
  z-index: -1;
  box-shadow:
    0 28px 70px rgba(0,0,0,0.45),
    inset 0 0 0 1px rgba(255,255,255,0.05);
	backdrop-filter: blur(4px);
}



/* TEXT */
.hero h1 {
  font-size: 54px;
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero h1 span {
  display: block;
  font-size: 26px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 10px;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 31px;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-trust {
    margin-top: 20px;
    font-size: 12px;
    opacity: 0.85;
  }
}


@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .hero-sub {
    margin-bottom: 24px;
  }

  .hero-cta {
   max-width: 252px;
    padding: 12px 0;
    font-size: 14.5px;
    font-weight: 700;
    border-radius: 12px;
    margin: 14px auto 0;
    letter-spacing: 0.4px;
	margin-bottom: 18px;
  }
}
@media (max-width: 768px) {
  body {
    overscroll-behavior-x: none;
  }
}
@media (max-width: 768px) {
  .hero-inner {
    max-width: 90%;
    padding: 48px 16px;
  }

  .hero-inner::before {
    inset: -16px -12px;
    border-radius: 16px;
  }
}


@media (max-width: 768px) {
  .hero {
    min-height: auto;
  padding: 60px 0;

  }

  .hero h1 {
    font-size: 34px;
  }

  .hero h1 span {
    font-size: 18px;
  }

  .hero-sub {
    font-size: 15px;
  }

  .hero-inner {
    padding: 80px 20px;
  }
}

/* TEXT */

.hero h1 {
  font-size: 54px;
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero h1 span {
  display: block;
  font-size: 26px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 10px;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 31px;
}

/* CTA */

.hero-cta {
  display: inline-block;
  background: linear-gradient(135deg,#de006f 0%,#f73736 100%);
  color: #ffffff;
  padding: 16px 44px;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  box-shadow:
    0 18px 36px rgba(255,42,122,0.35),
    0 0 0 1px rgba(255,255,255,0.08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 26px 60px rgba(255,42,122,0.45),
    0 0 0 1px rgba(255,255,255,0.12);
}

/* TRUST LINE */

.hero-trust {
margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.3px;
}
.hero-trust .dot {
  opacity: 0.35;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}


.features {
  max-width: 1200px;
  margin: 64px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
 display: grid;
  grid-template-columns: 96px 1fr;
  gap: 26px;
  padding: 34px 36px;
  border-radius: 22px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.06),
    rgba(255,255,255,0.02)
  );
  box-shadow:
    0 24px 60px rgba(0,0,0,0.55),
    inset 0 0 0 1px rgba(255,255,255,0.06);
}

.feature-text h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 6px;
}

.feature-text p {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
}

/* MOBILE */
@media (max-width: 900px) {
  .features {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  .feature-card {
    grid-template-columns: 1fr;
    text-align: center;
	transition-duration: 0.45s;
  }

  .chip-icon {
    margin: 0 auto 16px;
  }
}

.feature-card {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
  cursor: default;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 28px 70px rgba(0,0,0,0.55),
    inset 0 0 0 1px rgba(255,255,255,0.12);
}

/* Poker chip hover */
.feature-card .chip-icon svg {
  transition: transform 0.35s ease, filter 0.35s ease;
}

.feature-card:hover .chip-icon svg {
  transform: rotate(-6deg) scale(1.03);
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.55));
}

/* Text clarity on hover */
.feature-card:hover .feature-text h3 {
  color: #ffffff;
}

.feature-card:hover .feature-text p {
  color: rgba(255,255,255,0.8);
}
@media (max-width: 900px) {
  .feature-card:hover {
    transform: none;
  }

  .feature-card:hover .chip-icon svg {
    transform: none;
  }
}



/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .hero-trust {
    font-size: 11px;
    line-height: 1.5;
    flex-wrap: wrap;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero-bg {
    background-position: center top;
   
  }
}
@media (max-width: 768px) {
  .hero-inner::before {
    content: "";
  position: absolute;
  inset: -14px -10px;
  background: rgba(0, 0, 0, 0.52);
  border-radius: 16px;
  z-index: -1;
  box-shadow:
    0 28px 70px rgba(0,0,0,0.45),
    inset 0 0 0 1px rgba(255,255,255,0.05);
	backdrop-filter: blur(4px);

  }
  @media (max-width: 768px) {
  .hero {
    align-items: flex-start;
  }

  .hero-inner {
    margin-top: 60px;
  }
}
  
}


@media (max-width: 768px) {
  .hero-inner {
    padding: 70px 20px 80px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero h1 span {
    font-size: 18px;
  }

  .hero-sub {
    font-size: 15px;
  }

  .hero::before,
  .hero::after {
    display: none;
  }
}
/* ================= MOBILE HERO PANEL ================= */

@media (max-width: 768px) {
  .hero-panel {
    background: rgba(0, 0, 0, 0);
    border-radius: 16px;
    padding: 20px 16px 22px;
    max-width: 88%;
    margin: 0 auto;
    box-shadow:
      0 14px 36px rgba(0,0,0,0.45),
      inset 0 0 0 1px rgba(255,255,255,0.04);
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 42px;
    line-height: 1.15;
  }

  .hero h1 span {
    font-size: 16px;
    margin-top: 6px;
  }

  .hero-sub {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.hero-trust span {
  margin: 0 4px;
  opacity: 0.6;
}
@media (max-width: 768px) {
  .hero-sub {
    margin-bottom: 16px;
  }
}
.chip-icon {
  color: #ff2a7a;
  flex-shrink: 0;
}

.chip-withdraw {
  color: #2dd4ff;
}

.chip-secure {
  color: #22c55e;
}
.chip-icon svg {
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.45));
}

.chip-icon {
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}

.chip-icon svg {
  width: 88px;
  height: 88px;
}
@media (max-width: 900px) {

  .feature-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 26px 22px 30px;
	opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  }
/* Activated state */
.feature-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger timing */
.feature-card:nth-child(1) { transition-delay: 0.05s; }
.feature-card:nth-child(2) { transition-delay: 0.15s; }
.feature-card:nth-child(3) { transition-delay: 0.25s; }

/* Mobile: slightly faster */
@media (max-width: 900px) {
  .feature-card {
    transition-duration: 0.45s;
  }
}
  .chip-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .feature-text h3 {
    font-size: 17px;
    margin-bottom: 8px;
  }

  .feature-text p {
    font-size: 14px;
    line-height: 1.5;
  }

}
.chip-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.chip-icon svg {
  display: block;
  margin: 0 auto;
}

.features-section {
  padding: 56px 0 20px;
}

.features-header {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.features-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,0.5);
}

.features-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}

.features-header p {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
}

/* MOBILE */
@media (max-width: 768px) {
  .features-section {
    padding: 45px 0 1px;
  }

  .features-header h2 {
    font-size: 26px;
  }

  .features-header p {
    font-size: 14px;
	padding: 0 30px 0 30px;
  }
}
/* ================= PAYMENTS SECTION ================= */

.payments {
  padding: 58px 20px;
  background:
    radial-gradient(
      ellipse at center,
      rgba(255,255,255,0.04),
      rgba(0,0,0,0.9) 70%
    );
}

.payments-inner {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.payments-title {
  font-size: 34px;
  margin-bottom: 12px;
}

.payments-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 48px;
}

.payments-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, max-content));
  justify-content: center;
  align-items: center;
  gap: 24px 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.payments-logos img {
  height: 70px;
  width: auto;
  filter: grayscale(100%) brightness(0.85);
  opacity: 0.75;
  transition: all 0.25s ease;
}

.payments-logos img:hover {
  filter: none;
  opacity: 1;
  transform: translateY(-2px);
}

.payments-note {
 margin-top: 28px;
  display: flex;
  align-items: center;   /* 🔑 THIS FIXES IT */
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  text-align: center;
}
.note-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cta-pink); /* brand accent */
}
.note-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}
@media (max-width: 768px) {
  .payments-note {
  flex-wrap: wrap;  
    font-size: 13px;
    text-align: center;
    padding: 0 10px;
  }
  .note-icon svg {
    width: 20px;
    height: 20px;
  }

}


/* MOBILE */
@media (max-width: 768px) {
  .payments {
    padding: 38px 16px;
  }

  .payments-title {
    font-size: 26px;
  }

  .payments-sub {
    font-size: 14px;
    margin-bottom: 36px;
  }

  .payments-logos img {
    height: 28px;
  }
}
.payment-card {
  width: 150px;
  height: 82px;
 display: flex;
  align-items: center;
  justify-content: center;
  

  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.02)
  );

  border-radius: 14px;
  box-shadow:
    0 14px 36px rgba(0,0,0,0.45),
    inset 0 0 0 1px rgba(255,255,255,0.08);

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.payment-card img {
  height: auto;
  width: auto;

  max-height: 52px;
  max-width: 88%;

  object-fit: contain;
  opacity: 0.85;
  filter: grayscale(100%) brightness(0.9);
  transition: all 0.25s ease;
}

.payment-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 22px 48px rgba(0,0,0,0.6),
    inset 0 0 0 1px rgba(255,255,255,0.15);
}

.payment-card:hover img {
  filter: none;
  opacity: 1;
}
@media (max-width: 768px) {
  .payment-card {
   width: 150px;
    height: 84px;
    border-radius: 12px;
  }

  .payment-card img {
     max-height: 60px;
  }
}

.exit-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.exit-popup.show {
  display: flex;
}

.exit-box {
  position: relative;
  max-width: 420px;
  width: 90%;
  padding: 34px 28px;
  text-align: center;
  background: rgba(15,17,22,0.95);
  border-radius: 18px;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.6),
    inset 0 0 0 1px rgba(255,255,255,0.06);
}

.exit-box h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.exit-box p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

.exit-cta {
  display: inline-block;
  background: linear-gradient(135deg,#de006f 0%,#f73736 100%);
  padding: 14px 34px;
  border-radius: 14px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(255,42,122,0.45);
}

.exit-note {
  display: block;
  margin-top: 14px;
  font-size: 12px;
  opacity: 0.6;
}

.exit-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  opacity: 0.6;
}

.exit-close:hover {
  opacity: 1;
}

.games-section {
  padding: 60px 20px;
  background:
    radial-gradient(circle at top, rgba(255,42,122,0.06), transparent 60%),
    #0b0d12;
}

.games-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.games-title {
  font-size: 32px;
  margin-bottom: 10px;
}

.games-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 60px;
}

.games-grid {
 display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

@media (max-width: 1024px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .games-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}


.game-card {
 position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 18px 45px rgba(0,0,0,0.55);
  transition: transform .25s ease, box-shadow .25s ease;
  cursor: pointer;
}

.game-card img {
 width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.game-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 55%,
    rgba(0,0,0,0.85)
  );
  z-index: 1;
}

.game-info {
  position: absolute;
  bottom: 14px;
  left: 16px;
  right: 16px;
  z-index: 2;
}

.game-name {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}

.game-card:hover {
 transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
}

/* CTA */
.games-cta {
  display: inline-block;
  margin-top: 50px;
  padding: 16px 44px;
  background: linear-gradient(135deg,#de006f 0%,#f73736 100%);
  border-radius: 16px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(255,42,122,0.45);
  transition: transform .2s ease, box-shadow .2s ease;
}

.games-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 60px rgba(255,42,122,0.6);
}
@media (max-width: 768px) {
  .games-section {
    padding: 40px 16px;
  }

  .games-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
   .game-card {
    border-radius: 18px;
  }

  .game-name {
    font-size: 15px;
  }

  .games-title {
    font-size: 26px;
  }

  .games-sub {
    font-size: 15px;
    margin-bottom: 42px;
  }
}

.final-cta {
  padding: 110px 20px;
  background:
    radial-gradient(circle at top, rgba(255,42,122,0.08), transparent 60%),
    linear-gradient(180deg, #0b0d12, #07090e);
  text-align: center;
}

.final-cta-inner {
  max-width: 720px;
  margin: 0 auto;
}

.final-cta-title {
  font-size: 34px;
  margin-bottom: 14px;
}

.final-cta-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 38px;
}

.final-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg,#de006f 0%,#f73736 100%);
  padding: 18px 52px;
  border-radius: 18px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  box-shadow:
    0 20px 40px rgba(255,42,122,0.45),
    0 0 0 1px rgba(255,255,255,0.08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.final-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 28px 70px rgba(255,42,122,0.6),
    0 0 0 1px rgba(255,255,255,0.12);
}

.final-cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 49px;
  font-size: 14.5px;
  color: rgba(255,255,255,0.8);
}

.final-cta-trust .trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.final-cta-trust svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.final-cta-trust .dot {
  opacity: 0.4;
  font-size: 18px;
  margin: 0 2px;
}

.trust-label {
  font-weight: 500;
  letter-spacing: 0.2px;
}




@media (max-width: 768px) {
  .final-cta {
    padding: 43px 16px;
  }

  .final-cta-title {
    font-size: 26px;
  }

  .final-cta-sub {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .final-cta-btn {
    width: 100%;
    max-width: 320px;
    padding: 16px 0;
    border-radius: 16px;
  }

  .trust-item svg {
    width: 20px;
    height: 20px;
  }
  .trust-item {
    font-size: 11.5px;
  }
  
  .final-cta-trust {gap: 10px;
  
  margin-top: 38px;}
}

.cta-decline {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.cta-decline:hover {
  color: rgba(255,255,255,0.8);
  text-decoration: underline;
}
@media (max-width: 768px) {
  .cta-decline {
    font-size: 12px;
    margin-top: 12px;
  }
}

@media (max-width: 768px) {
  .header-btn.login {
    display: none;
  }
  .header-actions {
    justify-content: flex-end;
  }
}

/* hide extras on mobile */
@media (max-width: 768px) {
  .payment-card.extra {
    display: none;
  }

  .payments-more {
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    cursor: pointer;
    user-select: none;
    transition: background 0.2s ease, transform 0.15s ease;
  }

  .payments-more:hover {
  color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.14);
    transform: translateY(-1px);
  }
  .payments-more .plus {
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
  }
}

/* desktop: show everything */
@media (min-width: 769px) {
  .payments-more {
    display: none;
  }
}

.hero-urgency {
  margin-top: 10px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.hero-urgency .dot {
  opacity: 0.4;
}
@media (max-width: 768px) {
  .hero-urgency {
    font-size: 11.5px;
    margin-top: 8px;
  }
}