/* responsive.css - Custom Media Queries and Layout Tweaks */

/* Large screens (min-width: 1440px) */
@media (min-width: 1440px) {
  .container {
    max-width: 1280px;
  }
}

/* Medium to small viewports (max-width: 1024px) */
@media (max-width: 1024px) {
  .section-padding {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
  
  /* Disable hover lift on touch devices to avoid double-tap issues */
  .hover-lift:hover {
    transform: none;
  }
}

/* Tablets (max-width: 768px) */
@media (max-width: 768px) {
  /* Pricing layout tweaks */
  .pricing-toggle-container {
    transform: scale(0.9);
  }
  
  /* Hero mockup adjustments */
  .hero-mockup-wrapper {
    margin-top: 2rem;
    transform: scale(0.95);
  }
  
  /* Timeline connectors */
  .timeline-connector {
    display: none;
  }
}

/* Mobiles (max-width: 480px) */
@media (max-width: 480px) {
  h1 {
    font-size: 2.25rem !important;
    line-height: 2.75rem !important;
  }
  
  h2 {
    font-size: 1.75rem !important;
    line-height: 2.25rem !important;
  }
  
  .section-padding {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
  
  /* Float items on hero mockup on mobile */
  .floating-card-item {
    position: static !important;
    margin-bottom: 1rem;
    width: 100% !important;
  }
}

/* Print Styles */
@media print {
  #preloader, #backToTop, header, footer, .pricing-toggle-container, button {
    display: none !important;
  }
  
  html {
    background: #FFFFFF;
    color: #000000;
  }
  
  body {
    font-size: 12pt;
  }
}
