/* ============================================================
   RESPONSIVE — ALL @media QUERIES
============================================================ */
@media (max-width: 768px) {
  /* Navbar */
  .navbar__links,
  .navbar__cta {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  /* Hero */
  .hero__inner {
    grid-template-columns: 1fr;
    padding: 80px 0 60px;
    gap: 40px;
    text-align: center;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__badge {
    margin: 0 auto 24px;
  }

  .hero__subheadline {
    margin: 0 auto 32px;
  }

  .hero__ctas {
    justify-content: center;
  }

  .hero__visual {
    height: 320px;
  }

  .hero__image-main {
    width: 65%;
  }

  .hero__image-secondary {
    right: 5%;
    top: 10px;
  }

  /* Services */
  .services__grid {
    grid-template-columns: 1fr;
  }

  /* Catalog */
  .catalog__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .catalog__item:nth-child(7),
  .catalog__item:nth-child(10) {
    grid-column: span 1;
  }

  /* How to order */
  .how-to__steps {
    flex-direction: column;
    gap: 20px;
  }

  .step {
    margin: 0;
  }

  .step:not(:last-child)::after {
    display: none;
  }

  /* Pricing */
  .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .footer__tagline {
    max-width: 100%;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer__bottom-links {
    justify-content: center;
  }

  .footer__social-link {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .pricing__grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero__image-secondary {
    display: none;
  }

  .catalog__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .catalog__item:nth-child(7),
  .catalog__item:nth-child(10) {
    grid-column: span 1;
  }
}
