/* 
  Parking Beach - Premium Design System (OPTIMIZED)
  Versione ottimizzata con:
  - Migliore responsività mobile
  - Performance migliorate
  - Animazioni fluide
  - Accessibilità migliorata
*/

:root {
  /* -- Palette Colors -- */
  --primary: #0f172a;
  --primary-light: #1e293b;
  --accent: #2563eb;
  --accent-hover: #1d4ed8;
  --secondary: #64748b;
  --success: #10b981;
  --danger: #ef4444;

  --bg-body: #f8fafc;
  --bg-card: #ffffff;
  --bg-input: #f1f5f9;
  --bg-gray: #f8f9fa;

  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-light: #f8fafc;

  --border: #e2e8f0;
  --border-focus: #93c5fd;

  /* -- Spacing & Radius -- */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;

  --container-width: 1200px;
  --container-padding: 1.5rem;
  --header-height: 80px;

  /* -- Shadows -- */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

  /* -- Typography -- */
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* -- Transitions -- */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
}

/* -- Reset & Base -- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* -- Typography -- */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.025em;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  letter-spacing: -0.025em;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
}

h4 {
  font-size: 1.125rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  color: var(--text-main);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent-hover);
}

.text-large {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.8;
  color: #555;
}

ul {
  list-style: none;
}

/* -- Screen Reader Only -- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* -- Container -- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  width: 100%;
}

/* -- Navigation (OTTIMIZZATA) -- */
.nav {
  background: white;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.95);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary);
  text-decoration: none;
}

.brand-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
}

.brand-logo--icon {
  display: none;
}

/* Navigation Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-main);
  background: transparent;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.pill:hover {
  background: var(--bg-input);
  color: var(--accent);
}

.pill.active {
  background: var(--accent);
  color: white;
}

.pill-cart {
  position: relative;
}

.cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  margin-left: 8px;
  background: var(--danger);
  color: white;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  transition: all var(--transition-base);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}

/* -- Sections -- */
.section {
  padding: 4rem 0;
}

.section-gray {
  background-color: var(--bg-gray);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title-light {
  text-align: center;
  margin-bottom: 3rem;
  color: white;
}

/* -- Hero (OTTIMIZZATO) -- */
.hero {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  color: var(--text-main);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="%230f172a" opacity="0.03"/></svg>');
  pointer-events: none;
}

.hero-about {
  background: linear-gradient(135deg, #f1f5f9 0%, #f8fafc 100%);
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: var(--text-main);
  margin-bottom: 1.5rem;
}

.hero .sub {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
}

.hero p.sub {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 540px;
}

/* -- Animazioni -- */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.8s ease-out;
}

.fade-in-delay {
  animation: fadeIn 0.8s ease-out 0.2s both;
}

/* -- Content with Image -- */
.content-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.content-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

/* -- Values Grid -- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.value-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid var(--border);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.value-card h3 {
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.value-card p {
  color: var(--text-muted);
  margin: 0;
}

/* -- Features Grid (OTTIMIZZATA) -- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition-base);
}

.feature-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}

.feature-content h4 {
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.feature-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

/* -- Stats Section (OTTIMIZZATA) -- */
.section-stats {
  background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  color: white;
  padding: 5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2.5rem;
}

.stat-card {
  text-align: center;
}

.stat-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 0.5rem;
  line-height: 1;
  color: white;
}

.stat-icon {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: rgba(255, 255, 255, 0.9);
}

/* -- Team Content -- */
.team-content {
  max-width: 800px;
  margin: 0 auto;
}

.job-notice {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 2px solid var(--accent);
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin-top: 2rem;
}

.job-notice-text {
  font-size: 1.125rem;
  margin: 0;
  color: var(--text-main);
}

.link-primary {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.link-primary:hover {
  color: var(--accent-hover);
}

/* -- CTA Section (OTTIMIZZATA) -- */
.section-cta {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 5rem 0;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* -- Buttons (OTTIMIZZATI) -- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
  white-space: nowrap;
  text-decoration: none;
  gap: 0.5rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn.primary,
.btn-primary {
  background-color: var(--accent);
  color: white;
  box-shadow: 0 4px 6px rgba(37, 99, 235, 0.3);
}

.btn.primary:hover,
.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 12px -1px rgba(37, 99, 235, 0.4);
  color: white;
}

.btn-secondary {
  background-color: var(--primary);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: white;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-2px);
}

.btn.cta {
  background-color: var(--primary);
  color: white;
}

.btn.cta:hover {
  background-color: var(--primary-light);
}

.btn.danger {
  background-color: #ef4444;
  color: white;
}

.btn.small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* -- Forms -- */
.form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.375rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: inherit;
  background-color: var(--bg-input);
  transition: all 0.2s;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  background-color: white;
}

/* -- Cards -- */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.card-pad {
  padding: 2.5rem;
}

.card.hoverable:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
}

/* -- Utilities / Grids -- */
.grid3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.sep {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

.pill-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #eff6ff;
  color: var(--accent);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.small {
  font-size: 0.875rem;
}

/* -- Footer (OTTIMIZZATO) -- */
.footer {
  background-color: var(--primary);
  color: var(--text-light);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 0.5rem;
}

.footer-description {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-title {
  color: white;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: #94a3b8;
  font-size: 0.875rem;
  margin: 0;
}

.footer p,
.footer a {
  color: #94a3b8;
}

.footer a:hover {
  color: white;
}

/* -- Notices & Alerts -- */
.notice {
  background: #f8fafc;
  border: 1px solid var(--border);
  padding: 1rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
}

/* -- Toast -- */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--primary);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  display: none;
  z-index: 9999;
  animation: slideInUp 0.3s ease;
}

@keyframes slideInUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* -- Map Embeds -- */
.map {
  width: 100%;
  display: block;
  border: 0;
}

/* -- Dropdown -- */
.dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 180px;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  z-index: 100;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 0;
  border: 1px solid var(--border);
  margin-top: 0.5rem;
}

.dropdown:hover .dropdown-content {
  display: block;
  animation: fadeInDropdown 0.2s;
}

.dropdown-content a {
  color: var(--text-main);
  padding: 0.75rem 1rem;
  text-decoration: none;
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
}

.dropdown-content a:hover {
  background-color: var(--bg-body);
  color: var(--accent);
}

@keyframes fadeInDropdown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ======================================== */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  :root {
    --container-padding: 1.25rem;
  }

  .section {
    padding: 3rem 0;
  }

  .hero {
    padding: 4rem 0;
  }

  .content-with-image {
    gap: 3rem;
  }

  .features-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }

  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-lg {
    width: 100%;
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  :root {
    --container-padding: 1rem;
    --header-height: 70px;
  }

  /* Navigation Mobile */
  .brand-logo {
    height: 60px;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    flex-direction: column;
    background: white;
    padding: 1.5rem;
    gap: 0.75rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .pill {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
  }

  /* Sections */
  .section {
    padding: 2.5rem 0;
  }

  .section-stats {
    padding: 3rem 0;
  }

  .hero {
    padding: 1.5rem 0 1rem;
  }

  .hero h1 {
    font-size: 2rem !important;
    line-height: 1.15 !important;
    margin-bottom: 12px !important;
  }

  .hero .sub {
    font-size: 1rem !important;
    margin-bottom: 16px !important;
  }

  .hero [style*="margin-bottom:24px"] {
    margin-bottom: 10px !important;
  }

  .hero .pill-badge {
    font-size: 12px !important;
    padding: 0.2rem 0.6rem !important;
  }

  .hero-features {
    gap: 10px !important;
    margin-bottom: 20px !important;
  }

  .hero-features > div {
    padding: 14px !important;
  }

  .hero-features > div > div:first-child {
    font-size: 24px !important;
    margin-bottom: 6px !important;
  }

  .hero-features h3 {
    font-size: 15px !important;
    margin-bottom: 4px !important;
  }

  .hero-features p {
    font-size: 12px !important;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Content Layout */
  .content-with-image {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .content-image {
    order: -1;
  }

  /* Grids */
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .value-card {
    padding: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .feature-item {
    padding: 1.25rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .grid3 {
    grid-template-columns: 1fr;
  }

  .row2 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    padding-top: 1.5rem;
  }

  /* CTA */
  .section-cta {
    padding: 3rem 0;
  }

  .cta-text {
    font-size: 1.125rem;
  }

  /* Toast */
  .toast {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    max-width: calc(100% - 2rem);
  }

  /* Typography Adjustments */
  .text-large {
    font-size: 1rem;
  }

  .job-notice {
    padding: 1.5rem;
  }

  .job-notice-text {
    font-size: 1rem;
  }

  .card-pad {
    padding: 1.5rem;
  }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
  :root {
    --container-padding: 0.875rem;
  }

  .hero {
    padding: 1rem 0 0.5rem;
  }

  .hero h1 {
    font-size: 1.75rem !important;
    margin-bottom: 8px !important;
  }

  .hero .sub {
    font-size: 0.9rem !important;
    margin-bottom: 12px !important;
  }

  .hero-features {
    gap: 8px !important;
    margin-bottom: 16px !important;
  }

  .hero-features > div {
    padding: 10px !important;
  }

  .hero-features > div > div:first-child {
    font-size: 20px !important;
    margin-bottom: 4px !important;
  }

  .hero-features h3 {
    font-size: 14px !important;
    margin-bottom: 2px !important;
  }

  .hero-features p {
    font-size: 11px !important;
    line-height: 1.3 !important;
  }

  .section {
    padding: 2rem 0;
  }

  .value-card {
    padding: 1.5rem;
  }

  .value-icon {
    font-size: 2.5rem;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .feature-icon {
    font-size: 2.5rem;
  }

  .stats-grid {
    gap: 1.25rem;
  }

  .stat-number,
  .stat-icon {
    font-size: 2.25rem;
  }

  .btn-lg {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}

/* High Resolution Screens */
@media (min-width: 1440px) {
  :root {
    --container-width: 1320px;
  }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    padding: 2rem 0;
  }

  .section {
    padding: 2rem 0;
  }
}

/* Print Styles */
@media print {

  .nav,
  .mobile-menu-toggle,
  .toast,
  .cta-buttons {
    display: none !important;
  }

  body {
    background: white;
  }

  .section {
    page-break-inside: avoid;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}