/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {

  /* Hero Mobile Reorder */
  .hero-inner {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 0;
  }

  .hero-content {
    display: contents;
  }

  .hero-badge {
    order: 1;
  }

  .hero-title {
    order: 2;
  }

  .hero-image-wrap {
    order: 3;
    margin: 16px 0 24px 0;
    width: 100%;
    max-width: 500px;
    aspect-ratio: auto;
  }

  .hero-image-wrap .foto-jamur {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .hero-sub {
    order: 4;
  }

  .hero-btns {
    order: 5;
    justify-content: center;
    margin-bottom: 0;
    width: 100%;
  }

  .hero-stats {
    order: 6;
    justify-content: center;
    width: 100%;
    margin-top: 16px;
  }

  .harga-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Tentang Kami Mobile Reorder */
  .tentang-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .tentang-body {
    display: contents;
  }

  .tentang-body .section-label {
    order: 1;
    align-self: flex-start;
  }

  .tentang-body .section-title {
    order: 2;
    margin-bottom: 8px;
  }

  .tentang-img {
    order: 3;
    margin: 12px 0 20px 0;
  }

  .tentang-body p {
    order: 4;
    margin-bottom: 12px;
  }

  .tentang-facts {
    order: 5;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .tentang-fact:last-child {
    grid-column: 1 / -1;
  }

  .unggulan-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .edukasi-grid {
    grid-template-columns: 1fr;
  }

  .galeri-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Kontak Mobile Reorder */
  .kontak-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .kontak-map {
    margin-top: 0;
    height: 250px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .kalk-wrap {
    padding: 32px 22px;
  }

  section {
    padding: 48px 0;
  }
}

@media (max-width: 480px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .unggulan-grid {
    grid-template-columns: 1fr;
  }

  .galeri-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

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