/* ========== HOME PAGE — Page-specific styles only ========== */

/* Hero background enhancement */
.ios-hero {
  position: relative;
  overflow: hidden;
}

.ios-hero::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,122,255,0.06), transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.ios-hero::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52,199,89,0.04), transparent 70%);
  bottom: -50px;
  left: -50px;
  pointer-events: none;
}

/* Home-specific CTA card */
.cta-card {
  background: linear-gradient(135deg, rgba(0,122,255,0.03), rgba(52,199,89,0.03));
  border: 0.5px solid rgba(0,122,255,0.1);
}

/* Responsive stat grid */
@media (max-width: 480px) {
  .ios-grid.ios-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2);
  }

  .ios-stat-card .stat-value {
    font-size: 24px;
  }

  .ios-stat-card .stat-label {
    font-size: 11px;
  }
}
