/* ==========================================
   WHY US / IMPACT SECTION
   ========================================== */
.impact-section {
  min-height: calc(100vh - 90px); /* Locks perfectly into the viewport */
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--primary-navy);
  padding: 80px 5%;
  color: #ffffff;
}

/* Inherits h2 from global, we just override the color here */
.impact-section .section-header h2 {
  color: #ffffff;
}

.impact-section .section-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem; /* Matched to global paragraph rhythm */
  max-width: 650px;
  margin: 0 auto;
}

.gold-accent {
  color: var(--secondary-gold) !important;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1100px;
  margin: 60px auto 0;
  text-align: center;
}

.impact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* --- The Premium Gold Circles --- */
.impact-circle {
  width: 180px; /* Scaled up from 160px for more presence */
  height: 180px;
  border-radius: 50%;
  /* Removed the fine dotted line, replaced with a clean, structural solid ring */
  border: 3px solid rgba(168, 141, 62, 0.15);
  /* Built-in subtle inner glow that doesn't require extra ::before pseudo-elements */
  background: radial-gradient(
    circle,
    rgba(168, 141, 62, 0.05) 0%,
    rgba(18, 41, 57, 0) 70%
  );

  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 35px;
  transition: all 0.5s ease;
}

.impact-circle:hover {
  border-color: var(--secondary-gold);
  box-shadow: 0 0 40px rgba(168, 141, 62, 0.2); /* Richer external glow */
  background: radial-gradient(
    circle,
    rgba(168, 141, 62, 0.15) 0%,
    rgba(18, 41, 57, 0) 70%
  ); /* Stronger internal glow */
  transform: translateY(-5px);
}

/* --- The Animated Numbers --- */
.counter-wrap {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 3.5rem; /* Scaled up to fit the larger circle */
  font-weight: 700;
  color: var(--secondary-gold);
  /* Flexbox guarantees the number and the suffix sit perfectly on the same vertical baseline */
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.suffix {
  font-size: 2.2rem;
  margin-left: 4px;
}

.impact-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.impact-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 280px;
  margin: 0;
}

/* ==========================================
   MOBILE RESPONSIVENESS
   ========================================== */
@media (max-width: 900px) {
  .impact-section {
    min-height: auto; /* Lets it scroll naturally on mobile */
    padding: 60px 5%;
  }

  .impact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
