/* ===== RESPONSIVE BREAKPOINTS ===== */

@media (max-width: 767px) {
  .hero {
    min-height: 85svh;
    padding-bottom: var(--space-6);
  }

  .hero-content h1 {
    font-size: var(--text-3xl);
  }

  .hero-content p {
    font-size: var(--text-base);
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .service-card {
    flex-direction: column;
    gap: var(--space-2);
  }

  .service-number {
    width: auto;
  }

  .trust-stat {
    padding: var(--space-4) var(--space-3);
  }

  .trust-stat__number {
    font-size: var(--text-2xl);
  }

  .info-table td:first-child {
    width: 45%;
  }
}

@media (max-width: 359px) {
  .hero-content h1 {
    font-size: var(--text-2xl);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero-content h1 {
    font-size: var(--text-4xl);
  }
}

@media (min-width: 1024px) {
  .hero {
    min-height: 90svh;
  }
}

@media (min-width: 1440px) {
  .container {
    padding-inline: 0;
  }

  .container-sm {
    padding-inline: 0;
  }

  .container-md {
    padding-inline: 0;
  }
}

@media (max-width: 1023px) {
  .site-header {
    height: 4.5rem;
  }

  .site-header.scrolled {
    height: 4rem;
  }

  .header-logo {
    font-size: var(--text-sm);
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    padding: var(--space-1) 0;
    box-shadow: none;
    display: none;
  }

  .has-dropdown.active .dropdown-menu {
    display: block;
  }

  .has-dropdown .nav-link {
    color: var(--color-ink);
  }
}
