/* ============================================================
   AKARSH DIGITAL — About page specific styles
   ============================================================ */

/* Why I Only Work With HVAC section */
.why-hvac-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: start;
}

.why-hvac-copy p {
  margin-bottom: 18px;
  font-size: 1.02rem;
  line-height: 1.76;
}

.why-hvac-stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.why-stat-card {
  background: var(--charcoal);
  border: 1px solid var(--gold-border);
  border-left: 4px solid var(--gold-mid);
  border-radius: 8px;
  padding: 26px 28px;
}

.why-stat-card__num {
  font-family: var(--font-display);
  font-size: 48px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}

.why-stat-card__label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242,237,228,0.52);
  margin-bottom: 4px;
}

.why-stat-card__desc {
  font-size: 0.84rem;
  color: rgba(242,237,228,0.6);
  line-height: 1.55;
  margin: 0;
}

@media(max-width:860px){
  .why-hvac-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}
