/* ============================================================
   stats.css — Why Choose Us / Stats Section
   ============================================================ */

#why-us {
  background-color: var(--background);
}

.why-us-card {
  padding: 4rem 5rem;
  border-radius: 24px;
  display: flex;
  flex-direction: row;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 900px) {
  .why-us-card {
    flex-direction: column;
    padding: 2.5rem;
    gap: 2.5rem;
  }
}

.why-us-left {
  flex: 1;
}

.why-us-left h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--on-surface);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.why-us-left > p {
  font-size: 16px;
  color: var(--on-surface-variant);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.stats-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.why-us-divider {
  width: 1px;
  align-self: stretch;
  background: var(--outline-variant);
  opacity: 0.35;
}

@media (max-width: 900px) {
  .why-us-divider { display: none; }
}

.why-us-right {
  flex: 1;
}

.why-us-right h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary-container);
  margin-bottom: 0.75rem;
}

html.light .why-us-right h4 {
  color: var(--primary-container);
}

.why-us-quote {
  font-style: italic;
  font-size: 15px;
  color: var(--on-surface-variant);
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  border-left: 3px solid var(--secondary-container);
}

html.light .why-us-quote {
  border-color: var(--primary-container);
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}
