/* ── animations.css — fade-in, responsive ────────────────────────────────── */

.fade-in { opacity: 0; transform: translateY(20px); transition: all 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  nav { padding: 1rem; }
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }

  .hero { padding: 5rem 1rem 2rem; }
  .hero h1 { font-size: 2rem; }
  .hero p  { font-size: 0.95rem; }
  .hero-buttons { flex-direction: column; width: 100%; gap: 0.75rem; }
  .primary-btn, .secondary-btn { width: 100%; justify-content: center; padding: 0.875rem 1.5rem; font-size: 0.95rem; }

  .search-container { margin: 1.5rem auto 0; }
  .search-input { padding: 0.875rem 2.5rem 0.875rem 1rem; font-size: 0.95rem; }

  .services-grid { gap: 1rem; padding: 0 1rem 1rem; }
  .service-card  { width: 85vw; max-width: 320px; padding: 1.25rem; }
  .service-logo  { width: 60px; height: 60px; }
  .service-name  { font-size: 1.25rem; }
  .service-description { font-size: 0.9rem; }
  .feature { font-size: 0.85rem; }

  .services-section { padding: 3rem 1rem; }
  .featured-section { padding: 2rem 1rem; }
  .featured-grid    { grid-template-columns: 1fr; gap: 1rem; }
  .featured-title   { font-size: 1.25rem; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stat-card  { padding: 1.25rem; }
  .stat-number { font-size: 1.5rem; }
  .section-title    { font-size: 1.5rem; }
  .section-subtitle { font-size: 0.9rem; }

  .wizard-container, .how-it-works-container, .about-container {
    max-width: 95%; margin: 1rem; padding: 1.5rem; border-radius: 16px;
  }
  .wizard-logo   { width: 70px; height: 70px; }
  .wizard-title  { font-size: 1.5rem; }
  .wizard-input  { padding: 1rem 1.25rem; font-size: 1rem; }
  .wizard-btn    { padding: 1rem; font-size: 1rem; }
  .how-it-works-title, .about-title { font-size: 1.5rem; }
  .step-item     { gap: 0.75rem; }
  .step-number   { width: 32px; height: 32px; font-size: 1rem; }
  .step-content h3 { font-size: 1rem; }
  .step-content p  { font-size: 0.85rem; }
}

@media (max-width: 480px) {
  .logo      { font-size: 1rem; }
  .logo-icon { width: 36px; height: 36px; font-size: 1rem; }
  .cta-button { padding: 0.6rem 1rem; font-size: 0.8rem; }
  .hero-badge { font-size: 0.75rem; padding: 0.4rem 0.8rem; }
  .service-logo  { width: 70px; height: 70px; }
  .service-name  { font-size: 1.1rem; }
  .stats-grid    { grid-template-columns: 1fr; }
}

/* Touch feedback */
@media (hover: none) {
  .service-card:active  { transform: scale(0.98); }
  .cta-button:active    { transform: scale(0.95); }
  .primary-btn:active, .secondary-btn:active { transform: scale(0.95); }
}
