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

:root {
  --navy: #07192f;
  --dark: #04101f;
  --blue: #0ea5e9;
  --cyan: #67e8f9;
  --text: #102033;
  --muted: #64748b;
  --soft: #f4f8fb;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

html {
  scroll-behavior: smooth;
}

.brand-logo {
  width: 78px;
  height: 78px;
  object-fit: contain;
  display: block;
}

.hero-logo {
  width: 100%;
  max-width: 320px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.logo-preview {
  min-height: 210px;
  background: #95bcf6;
  border-radius: 26px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

body {
  font-family: "Inter", Arial, sans-serif;
  background: #ffffff;
  color: var(--text);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.navbar {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue), #0f3c78);
  color: #ffffff;
  font-weight: 900;
  letter-spacing: -1px;
  box-shadow: 0 12px 30px rgba(14, 165, 233, 0.28);
}

.brand strong {
  display: block;
  font-size: 18px;
  letter-spacing: -0.4px;
}

.brand span {
  display: block;
  color: var(--blue);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 700;
  color: #334155;
}

.nav a:hover {
  color: var(--blue);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: #ffffff !important;
  padding: 13px 20px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(7, 25, 47, 0.18);
}

.menu-btn {
  display: none;
  border: none;
  background: var(--navy);
  color: #ffffff;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  font-size: 24px;
  cursor: pointer;
}

/* HERO */

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(4, 16, 31, 0.78), rgba(4, 16, 31, 0.84)),
    radial-gradient(
      circle at 85% 18%,
      rgba(14, 165, 233, 0.35),
      transparent 35%
    ),
    linear-gradient(135deg, #061529, #0b2d55 55%, #04101f);
  color: #ffffff;
  padding: 95px 0 80px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: #bff3ff;
  background: rgba(103, 232, 249, 0.11);
  border: 1px solid rgba(103, 232, 249, 0.25);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--blue);
  background: #e7f8ff;
  border-color: #c5efff;
}

.hero h1 {
  margin: 22px 0 24px;
  max-width: 760px;
  font-size: clamp(44px, 6.2vw, 76px);
  line-height: 0.98;
  letter-spacing: -3px;
}

.hero p {
  max-width: 650px;
  color: #d8e6f3;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 900;
  transition: 0.25s;
}

.btn-primary {
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(14, 165, 233, 0.28);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.btn:hover {
  transform: translateY(-3px);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
  max-width: 680px;
}

.trust-row div {
  border-left: 3px solid var(--cyan);
  padding-left: 14px;
}

.trust-row strong {
  display: block;
  color: #ffffff;
  font-size: 18px;
}

.trust-row span {
  color: #b8c7d8;
  font-size: 14px;
}

/* HERO RIGHT PANEL */

.hero-panel {
  position: relative;
  overflow: visible;
  min-height: 560px;
}



.cleaning-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  padding: 26px;
  backdrop-filter: blur(18px);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.25);
}

.main-card {
  position: absolute;
  right: 0;
  top: 40px;
  width: min(430px, 100%);
}

.logo-preview {
  background: #ffffff;
  border-radius: 26px;
  padding: 38px 30px;
  text-align: center;
  margin-bottom: 24px;
}

.logo-preview span {
  display: block;
  color: #082b5d;
  font-size: 70px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -6px;
  line-height: 1;
}

.logo-preview small {
  color: var(--blue);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 1px;
}

.cleaning-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.cleaning-card ul {
  display: grid;
  gap: 12px;
  list-style: none;
  color: #e5f5ff;
}

.cleaning-card li::before {
  content: "✓";
  color: var(--cyan);
  font-weight: 900;
  margin-right: 10px;
}

.floating-card {
  position: absolute;
  background: #ffffff;
  color: var(--text);
  border-radius: 22px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
  max-width: 270px;
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card span {
  color: var(--muted);
  font-size: 14px;
}

.card-one {
  left: -100px;
  top: 0px;
}

.card-two {
  left: 500px;
  bottom: -130px;
  width: 150px;
}

/* BUSINESS TYPES STRIP */

.logo-strip {
  background: var(--soft);
  border-bottom: 1px solid var(--border);
}

.strip-grid {
  min-height: 92px;
  display: grid;
  grid-template-columns: 0.8fr repeat(5, 1fr);
  gap: 16px;
  align-items: center;
  text-align: center;
}

.strip-grid p {
  text-align: left;
  color: var(--muted);
  font-weight: 800;
}

.strip-grid span {
  font-weight: 900;
  color: #334155;
}

/* GENERAL SECTIONS */

.section {
  padding: 96px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading span {
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
}

.section-heading h2,
.split-content h2,
.contact-copy h2,
.testimonial-box h2 {
  margin-top: 12px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -2px;
}

.section-heading p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
}

/* SERVICES */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.06);
  transition: 0.25s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.service-card.featured {
  background: var(--navy);
  color: #ffffff;
}

.service-card.featured p {
  color: #cbd5e1;
}

.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: #e7f8ff;
  border-radius: 18px;
  font-size: 26px;
  margin-bottom: 24px;
}

.service-card.featured .service-icon {
  background: rgba(255, 255, 255, 0.12);
}

.service-card h3 {
  font-size: 23px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--muted);
}

.service-card a {
  display: inline-flex;
  margin-top: auto;
  padding-top: 24px;
  color: var(--blue);
  font-weight: 900;
}

.service-card.featured a {
  color: var(--cyan);
}

/* WHY AMS */

.split-section {
  background: var(--soft);
}

.split-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 58px;
  align-items: center;
}

.image-block {
  min-height: 560px;
  border-radius: 36px;
  background:
    linear-gradient(
      rgba(7, 25, 47, 0.18),
      rgba(7, 25, 47, 0.45)
    ),
    linear-gradient(135deg, #e0f7ff, #3bbff0 46%, #07264a);
  position: relative;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.image-block::before,
.image-block::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.image-block::before {
  width: 220px;
  height: 220px;
  top: 70px;
  left: 60px;
}

.image-block::after {
  width: 320px;
  height: 320px;
  right: -80px;
  bottom: -70px;
}

.image-overlay {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
}

.image-overlay strong,
.image-overlay span {
  display: block;
}

.image-overlay strong {
  font-size: 22px;
}

.image-overlay span {
  color: var(--muted);
}

.split-content p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 17px;
}

.feature-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.feature-list div {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 20px;
}

.feature-list strong {
  color: var(--blue);
  font-size: 22px;
}

.feature-list p {
  margin: 0;
}

/* INDUSTRIES */

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.industry-grid div {
  padding: 26px;
  border-radius: 24px;
  background: var(--soft);
  border: 1px solid var(--border);
  font-weight: 900;
  font-size: 18px;
}

/* PROCESS */

.process {
  background: var(--navy);
  color: #ffffff;
}

.process .section-heading p,
.process-card p {
  color: #cbd5e1;
}

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

.process-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 26px;
}

.process-card span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  background: var(--blue);
  border-radius: 16px;
  font-weight: 900;
  margin-bottom: 24px;
}

.process-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

/* CLIENT-FOCUSED SECTION */

.testimonial-section {
  padding: 70px 0;
  background: linear-gradient(135deg, #e8fbff, #ffffff);
}

.testimonial-box {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 42px;
  box-shadow: var(--shadow);
}

.testimonial-box p {
  color: #334155;
  font-size: 22px;
  line-height: 1.55;
  font-weight: 700;
}

/* CONTACT */

.contact-section {
  padding: 96px 0;
  background: var(--soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 50px;
  align-items: start;
}

.contact-copy p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
}

.contact-methods {
  margin-top: 34px;
  display: grid;
  gap: 14px;
}

.contact-methods a {
  display: grid;
  gap: 4px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px;
  transition: 0.25s;
}

.contact-methods a:hover {
  transform: translateX(6px);
  border-color: var(--blue);
}

.contact-methods strong {
  color: var(--blue);
}

.contact-methods span {
  color: #334155;
  font-weight: 800;
  word-break: break-word;
}

/* QUOTE FORM */

.quote-form {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.quote-form h3 {
  font-size: 30px;
  margin-bottom: 8px;
}

.quote-form p {
  color: var(--muted);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid #dbe4ef;
  border-radius: 16px;
  padding: 0 16px;
  margin-bottom: 14px;
  font: inherit;
  outline: none;
  background: #ffffff;
}

textarea {
  min-height: 140px;
  padding-top: 16px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.13);
}

.quote-form button {
  width: 100%;
  min-height: 56px;
  border: none;
  border-radius: 999px;
  background: var(--navy);
  color: #ffffff;
  font-weight: 900;
  font-size: 16px;
  cursor: pointer;
  transition: 0.25s;
}

.quote-form button:hover {
  background: #0b2d55;
  transform: translateY(-2px);
}

.form-message {
  display: none;
  margin-top: 14px;
  padding: 14px;
  border-radius: 16px;
  background: #e7f8ff;
  color: #075985;
  font-weight: 900;
  text-align: center;
}


/* PROFESSIONAL FOOTER */

.footer {
  position: relative;
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(14, 165, 233, 0.12),
      transparent 30%
    ),
    linear-gradient(135deg, #04101f, #07192f);
  color: #cbd5e1;
  padding: 75px 0 0;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1.1fr 1.1fr;
  gap: 48px;
  padding-bottom: 55px;
}

.footer-column h3 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-brand p {
  max-width: 340px;
  margin-top: 20px;
  color: #aebfd0;
  line-height: 1.8;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: linear-gradient(135deg, var(--blue), #0f3c78);
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 14px 35px rgba(14, 165, 233, 0.22);
}

.footer-logo strong {
  display: block;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.25;
}

.footer-logo span {
  display: block;
  margin-top: 4px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-column ul {
  display: grid;
  gap: 12px;
  list-style: none;
}

.footer-column li,
.footer-column a {
  color: #cbd5e1;
  font-size: 14px;
  transition: 0.25s ease;
}

.footer-column ul a:hover {
  color: var(--cyan);
  padding-left: 5px;
}

.footer-contact {
  display: grid;
  gap: 16px;
}

.footer-contact a {
  display: block;
  line-height: 1.5;
  word-break: break-word;
}

.footer-contact a:hover {
  color: var(--cyan);
}

.footer-contact span {
  display: block;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-checks li {
  position: relative;
  padding-left: 24px;
}

.footer-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cyan);
  font-weight: 900;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-weight: 900;
}

.footer-socials a:hover {
  background: var(--blue);
  color: #ffffff;
  transform: translateY(-3px);
}

.footer-quote-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
  padding: 13px 18px;
  border-radius: 999px;
  background: var(--blue);
  color: #ffffff !important;
  font-weight: 900;
  box-shadow: 0 14px 35px rgba(14, 165, 233, 0.2);
}

.footer-quote-btn:hover {
  background: #38bdf8;
  transform: translateY(-2px);
}

.footer-bottom {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  font-size: 13px;
}

.footer-bottom div {
  display: flex;
  gap: 22px;
}

.footer-bottom a:hover {
  color: var(--cyan);
}

.back-to-top {
  position: absolute;
  right: 28px;
  bottom: 20px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--blue);
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 15px 35px rgba(14, 165, 233, 0.25);
}

.back-to-top:hover {
  background: #38bdf8;
  transform: translateY(-3px);
}



/* TABLET AND MOBILE */

@media (max-width: 960px) {
  .menu-btn {
    display: inline-grid;
    place-items: center;
  }

 .stats-strip-wrap {
  grid-template-columns: 1fr;
}

.stats-items {
  grid-template-columns: repeat(2, 1fr);
}

  .nav ul {
    position: absolute;
    top: 82px;
    left: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 4%;
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .nav ul.active {
    display: flex;
  }

  .nav li a {
    display: block;
    padding: 15px 0;
  }

  .nav-cta {
    text-align: center;
    margin-top: 10px;
  }

  .hero-grid,
  .split-grid,
  .contact-grid,
  .testimonial-box {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: auto;
  }

  .main-card,
  .floating-card {
    position: static;
    margin-top: 18px;
    width: 100%;
  }

  .trust-row,
  .strip-grid,
  .services-grid,
  .industry-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .strip-grid {
    padding: 24px 0;
    text-align: left;
  }

  .section,
  .contact-section {
    padding: 72px 0;
  }

  .image-block {
    min-height: 420px;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .stats-row {
  grid-template-columns: 1fr;
  max-width: 520px;
}

.stats-top {
  margin-bottom: 26px;
}
}

/* SMALL MOBILE */

@media (max-width: 560px) {
  .brand strong {
    font-size: 15px;
  }

 .stats-strip {
  padding: 36px 0;
}

.stats-strip-wrap {
  padding: 22px 18px;
}

.stats-intro h3 {
  font-size: 22px;
}

.stats-items {
  grid-template-columns: 1fr;
}

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .hero {
    padding: 70px 0 62px;
  }

  .hero h1 {
    letter-spacing: -1.5px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

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

  .quote-form,
  .testimonial-box {
    padding: 24px;
  }
}

/* PREMIUM FULL-WIDTH STATS STRIP */

.stats-strip {
  background: linear-gradient(135deg, #04101f, #07264a 55%, #04101f);
  padding: 45px 0;
  position: relative;
  overflow: hidden;
}

.stats-strip::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  top: -100px;
  right: -60px;
  background: rgba(14, 165, 233, 0.12);
  border-radius: 50%;
  filter: blur(20px);
}

.stats-strip::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  bottom: -90px;
  left: -50px;
  background: rgba(103, 232, 249, 0.08);
  border-radius: 50%;
  filter: blur(20px);
}

/* Make this section use more horizontal space */
.stats-strip .container {
  width: 96%;
  max-width: 1500px;
  margin: 0 auto;
}

.stats-top {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 26px;
}

.stats-top span {
  display: inline-block;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.stats-top h2 {
  color: #ffffff;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
  letter-spacing: -1px;
}

.stats-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  width: 100%;
}

.stat-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 3px solid var(--cyan);
  border-radius: 24px;
  padding: 22px 18px;
  text-align: center;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
  transition: 0.25s ease;
}

.stat-box:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.12);
}

.stat-box h3 {
  color: #ffffff;
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1;
  margin-bottom: 10px;
  font-weight: 900;
  letter-spacing: -1px;
}

.stat-box p {
  color: #d8e6f3;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-number-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 10px;
}

.stat-number-line h3 {
  margin: 0;
}

.stat-image {
  width: 65px;
  height: 65px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.stat-image-hand {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.stat-svg {
  width: 44px;
  height: 44px;
  fill: #ffffff;
  flex-shrink: 0;
}