/* ---------- MOBILE-ONLY: isolated cloned accordion ---------- */
.mobile-accordion {
  display: none;
}

/* show only on mobile */
@media (max-width: 768px) {

  /* hide original tab UI (desktop stays intact) */
  .what-we-do-tabs {
    display: none !important;
  }

  /* reveal mobile accordion container */
  .mobile-accordion {
    display: block;
    margin: 20px 0;
  }

  .mobile-accordion .acc-item {
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    margin-bottom: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  }

  .mobile-accordion .acc-header {
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    background: #f7f7f7;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.03rem;
  }

  .mobile-accordion .acc-icon {
    font-size: 1.35rem;
    line-height: 1;
    font-weight: 700;
  }

  .mobile-accordion .acc-body {
    display: none;
    padding: 12px 14px 18px;
    background: #ffffff;
  }

  .mobile-accordion .acc-body.open {
    display: block;
  }

  /* clone uses same .tab-media/.tab-text markup inside .acc-body */
  .mobile-accordion .acc-body .tab-media {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .mobile-accordion .acc-body img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
  }

  /* small spacing inside text block */
  .mobile-accordion .acc-body .tab-text {
    padding: 0;
    margin-top: 6px;
  }
}