/* ==================================================
     HERO STATS SECTION STYLING (Premium Dark Slate & Gold)
  ================================================== */
.hero-stats-section {
  width: 100vw;
  position: relative;
  z-index: 10;
  margin-top: 80px;
  margin-bottom: 0px;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;

  /* Rich, dark layered gradient - maintains high contrast for gold without washing out */
  background: radial-gradient(
      ellipse at 75% 50%,
      rgba(201, 155, 66, 0.08) 0%,
      transparent 65%
    ),
    linear-gradient(135deg, #0d0d0d 0%, #161514 50%, #111110 100%);

  /* Subtle gold-infused hairline top/bottom borders */
  border-top: 1px solid rgba(201, 155, 66, 0.2);
  border-bottom: 1px solid rgba(201, 155, 66, 0.15);
  box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.45);

  font-family: "Helvetica Neue LT Pro", -apple-system, BlinkMacSystemFont, sans-serif;
  box-sizing: border-box;
}

.stats-container {
  min-height: 84px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  box-sizing: border-box;
}

/* Left Narrative Description */
.stats-left {
  flex: 1.2;
  max-width: 640px;
}

.stats-left p {
  margin: 0;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
  letter-spacing: 0.01em;
  text-align: left;
}

/* Right Metric Figures */
.stats-right {
  flex: 1.8;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 48px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 6px 12px;
}

/* Subtle separator between stats for desktop */
.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -24px;
  top: 15%;
  height: 70%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
}

.stat-item h3 {
  font-size: 40px;
  font-weight: 600;
  color: #c99b42;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 6px 0;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}

.stat-item span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: #b0b0b0;
  font-weight: 400;
  white-space: nowrap;
}

/* ==================================================
   RESPONSIVE MEDIA QUERIES
================================================== */

/* Laptop & Tablets (Max Width: 1024px) */
@media (max-width: 1024px) {
  .stats-container {
    flex-direction: column;
    align-items: center;
    padding: 36px 32px;
    gap: 30px;
  }

  .stats-left {
    max-width: 720px;
  }

  .stats-left p {
    text-align: center;
    font-size: 14.5px;
  }

  .stats-right {
    width: 100%;
    max-width: 680px;
    justify-content: space-around;
    gap: 20px;
  }

  .stat-item:not(:last-child)::after {
    right: -10px;
  }
}

/* Mobile Screens (Max Width: 768px) */
@media (max-width: 768px) {
  .hero-stats-section {
    margin-top: 24px;
    margin-bottom: 28px;
  }

  .stats-container {
    padding: 24px 18px;
    gap: 22px;
  }

  .stats-left p {
    font-size: 13.5px;
    line-height: 1.6;
    text-align: center;
  }

  .stats-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
  }

  /* Remove vertical divider bar on mobile cards */
  .stat-item:not(:last-child)::after {
    display: none;
  }

  .stat-item {
    padding: 14px 6px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(201, 155, 66, 0.15);
    border-radius: 6px;
  }

  .stat-item h3 {
    font-size: 24px;
    margin-bottom: 4px;
  }

  .stat-item span {
    font-size: 9px;
    letter-spacing: 0.8px;
    white-space: normal;
    line-height: 1.3;
  }
}