/* StayRule — STR Compliance Landing Page */
/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Hero responsive */
@media (max-width: 768px) {
  section:first-of-type { grid-template-columns: 1fr !important; }
  .hero-left, .hero-right { padding: 48px 24px !important; }
  .cities-grid { grid-template-columns: 1fr !important; }
  .steps-grid { grid-template-columns: 1fr !important; }
  .comparison-grid { grid-template-columns: 1fr !important; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--fg-muted); }

/* Smooth sections */
section { scroll-margin-top: 80px; }
