/* ===================================
   RESPONSIVE STYLES - Media Queries
   =================================== */

/* Mobile First Approach */

/* Small devices (phones, 576px and up) */
@media (min-width: 576px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
  
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .comparison-table {
    overflow-x: visible;
  }
  
  .navbar-menu {
    display: flex !important;
  }
  
  .mobile-menu-button {
    display: none;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero-title {
    font-size: 5.5rem;
  }
  
  .hero-grid {
    grid-template-columns: 7fr 5fr;
    align-items: center;
  }
  
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  
  .feature-section-grid {
    grid-template-columns: 5fr 7fr;
    align-items: start;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .hero-title {
    font-size: 6rem;
  }
  
  .container {
    max-width: 1200px;
  }
}

/* Mobile specific styles */
@media (max-width: 767px) {
  .navbar-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 0 0 1.5rem 1.5rem;
    padding: 1rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  }
  
  .navbar-menu.hidden {
    display: none;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-buttons .btn {
    text-align: center;
    justify-content: center;
  }
  
  .feature-badges {
    justify-content: center;
  }
  
  .steps-connector {
    display: none;
  }
  
  .contact-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

/* Print styles */
@media print {
  .navbar,
  .mobile-menu-button,
  .contact-buttons,
  .cta-buttons {
    display: none !important;
  }
  
  .hero-section {
    page-break-after: always;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
}

/* Dark mode support (when user prefers dark color scheme) */
@media (prefers-color-scheme: dark) {
  :root {
    --text-primary: #f9fafb;
    --text-secondary: #d1d5db;
    --bg-primary: #111827;
    --bg-secondary: #1f2937;
  }
  
  /* Note: Currently the design is light-themed, 
     but this provides foundation for dark mode */
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
  
  .reveal.show {
    transition: none;
  }
  
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}