/* assets/css/responsive.css */
@media (max-width: 1023px) {
  header {
    padding: 16px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  section {
    padding: 70px 0;
  }
  
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  section {
    padding: 50px 0;
  }
  
  .btn {
    width: 100%;
    padding: 12px 24px;
  }
  
  .hero-cta {
    gap: 12px;
  }
  
  .comparison-table-wrapper {
    margin-top: 30px;
  }
  
  .comparison-table th, 
  .comparison-table td {
    padding: 14px 16px;
    font-size: 0.85rem;
  }
  
  .pricing-toggle-container {
    margin-bottom: 30px;
  }
  
  .footer-top {
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column-reverse;
    text-align: center;
    gap: 16px;
  }
}

@media (max-width: 576px) {
  /* Hide sidebar and chat list in mockup dashboards on small screens */
  .dashboard-mockup .mock-sidebar,
  .dashboard-mockup .mock-chat-list {
    display: none !important;
  }
  
  .dashboard-mockup .mock-chat-window {
    width: 100% !important;
  }

  .cta-section .card {
    padding: 40px 20px !important;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .card {
    padding: 24px 16px !important;
  }
  
  .newsletter-form {
    flex-direction: column;
    width: 100%;
  }
  
  .newsletter-form .btn {
    width: 100%;
  }
}
