/* Media Queries */
@media (max-width: 991px) {
  .navbar-toggler {
    display: block;
  }

  .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.98);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
  }

  .navbar-collapse.show {
    transform: translateX(0);
  }

  .navbar-center {
    display: none;
  }

  .navbar-waitlist {
    display: none;
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.98);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
  }

  .mobile-menu.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .navbar-close {
    display: flex;
  }

  .navbar-brand img {
    width: 120px;
  }

  .waitlist-btn {
    margin-left: 0;
    margin-top: 12px;
  }

  .dashboard-mockup {
    padding: 16px 4px;
  }

  .hero-title {
    font-size: 2.5rem;
    padding: 0 15px;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    padding: 0 15px;
  }

  .hero-pill {
    font-size: 0.9rem;
    padding: 8px 20px;
    margin: 0 15px 20px 15px;
  }

  .hero-action-btn {
    font-size: 1rem;
    padding: 16px 24px;
  }

  .dashboard-mockup img {
    width: 95%;
    padding: 0 15px;
  }

  .infra-monitoring-section {
    margin-left: 0;
    padding: 20px 15px;
  }

  .certifications-heading {
    font-size: 1.1rem;
  }

  .certification-carousel {
    padding: 20px 0;
  }

  .certification-item img {
    height: 100px;
  }

  .cta-section {
    margin: 30px 8px;
    padding: 30px 15px;
  }

  .footer-section .container {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 24px;
    text-align: left !important;
    padding: 30px 15px;
  }

  .footer-info,
  .footer-social,
  .footer-legal,
  .footer-logo {
    min-width: 0;
    margin-bottom: 16px;
    flex: unset;
  }

  .footer-logo {
    justify-content: flex-start;
    margin-top: 12px;
  }

  .navbar-center {
    width: 100%;
    margin-bottom: 2rem;
  }

  .navbar-center .navbar-nav {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .navbar-nav .nav-item {
    margin: 0;
  }

  .feature-explanation-stack {
    flex-direction: column !important;
    gap: 40px;
  }

  .feature-explanation-stack .col-12 {
    width: 100%;
    max-width: 100%;
  }

  .feature-explanation-stack .col-md-6:first-child {
    order: -1;
  }

  .feature-explanation-text {
    padding-left: 0;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .features-title {
    font-size: 1.8rem;
  }

  .cta-section h2 {
    font-size: 1.8rem;
  }

  .cta-section .cta-subtitle {
    font-size: 1.1rem;
  }

  .footer-section .container {
    padding: 30px 15px;
  }

  .footer-title {
    font-size: 1.3rem;
  }

  .footer-link a {
    font-size: 1rem;
  }

  .navbar-brand img {
    width: 100px;
  }

  .footer-legal-links {
    justify-content: center;
    gap: 10px;
  }

  .features-title {
    font-size: 2rem;
  }

  .features-subtitle {
    font-size: 1rem;
  }

  .cta-form {
    max-width: 100%;
  }
}
