/* ── RESPONSIVE — All breakpoints ── */
html,body {
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

@media (max-width: 900px) {
  #hero {
  overflow: hidden;
}

.hero-scroll {
  display: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(
      to right,
      rgba(44, 40, 37, 0.97) 20%,
      rgba(44, 40, 37, 0.05) 100%
    ),
    linear-gradient(
      to top,
      rgba(44, 40, 37, 0.85) 0%,
      rgba(44, 40, 37, 0.2) 55%,
      transparent 100%
    ),
    linear-gradient(
      to bottom,
      rgba(44, 40, 37, 0.7) 0%,
      transparent 25%
    );
}

section {
  overflow-x: hidden;
}
  nav {
    padding: 1.2rem 2rem;
  }
  nav.scrolled {
    padding: 0.9rem 2rem;
  }
  .nav-links {
    display: none;
  }
  .section-inner {
    padding: 0 2rem;
  }
  .hero-content {
    padding: 0 2rem 4rem;
  }
  .hero-scroll {
    display: none;
  }
  .about-grid,
  .solutions-top,
  .focus-cards,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-img-wrap {
    order: -1;
  }
  .about-badge {
    left: 1rem;
  }
  .why-img-wrap {
    position: static;
  }
  footer {
    padding: 2rem;
    flex-direction: column;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
  #contact::before {
    font-size: 7rem;
  bottom: -1rem;
  right: -1rem;
  }
  footer {
  padding: 2rem 1.5rem;
  text-align: center;
}

.footer-top {
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-links {
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.footer-social {
  justify-content: center;
}

.footer-disclaimer {
  text-align: center;
}
}
