
@media (max-width: 768px) {

  /* ─── RESET ─────────────────────────────────────────────────── */
  html, body {
    width: 100%;
    overflow-x: hidden;
    background: #1d1545;
  }

  *,
  *::before,
  *::after { box-sizing: border-box; }

  h1, h2, h3, p { max-width: 100%; word-wrap: break-word; }
  h1 { font-size: 28px; line-height: 1.3; }
  h2 { font-size: 22px; }

  /* ─── SCALE WRAPPER ─────────────────────────────────────────── */
  .scale-wrapper { display: block !important; }
  .design-root   { width: 100% !important; transform: none !important; }

  /* ─── COMMON INNER CONTAINERS ──────────────────────────────── */
  .container,
  .section,
  .wrapper,
  .hero .inner,
  .record .inner,
  .measured .inner,
  .footer .inner {
    max-width: 100% !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* ─── NAV ────────────────────────────────────────────────────  */
  .nav {
    width: 100% !important;
    transform: none !important;
    position: relative !important;
    height: auto !important;
    padding: 12px 16px !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  .nav .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav nav        { display: none !important; }   /* hide desktop links */
  .nav .brand img { height: 32px !important; }
  .btn-contact    { display: none !important; }   /* hide desktop CTA */

  .nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .nav-menu              { display: none; flex-direction: column; }
  .nav-menu.active       { display: flex; }

  .menu-toggle {
    display: block;
    font-size: 22px;
    color: #fff;
    cursor: pointer;
    margin-right: 10px;
  }

  /* ─── MOBILE MENU ───────────────────────────────────────────── */
  .mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--blue);
    padding: 24px 16px 20px;
    gap: 14px;
    position: fixed;
    top: 43px;
    left: 0;
    width: 100%;
    z-index: 2000;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    transform: none !important;
    transform-origin: top left;
  }

  .mobile-menu a        { color: #fff; font-size: 16px; }
  .mobile-menu.is-active{ display: flex !important; }

  .mobile-contact {
    display: block;
    width: 100%;
    background: #d2bd82;
    color: #fff;
    padding: 14px;
    border-radius: 30px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
  }

  /* ─── MOBILE CONTACT DROPDOWN ───────────────────────────────  */
  .mobile-contact-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .mobile-contact-group a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
  }

  .mobile-contact-form {
    background: #d2bd82;
    color: #1F1548 !important;
  }

  .mobile-contact-call {
    background: rgba(255,255,255,0.12);
    color: #fff !important;
    border: 1.5px solid rgba(255,255,255,0.3);
  }

  .mobile-contact-group a .cd-icon {
    font-size: 18px;
    width: 22px;
    text-align: center;
  }

  /* ─── HERO ───────────────────────────────────────────────────  */
  .hero {
    display: flex !important;
    align-items: center !important;
    margin-top: -1px !important;
    padding-top: 0 !important;
    min-height: 100vh;
  }

  .hero .inner  { padding: 0 16px !important; }
  .hero .copy   { width: 100% !important; }
  .hero .title  { font-size: 24px !important; }
  .hero .desc   { width: 100% !important; font-size: 14px !important; line-height: 1.6 !important; }
  .hero .cta    { font-size: 14px !important; padding: 12px 16px !important; }

  /* ─── RECORD / STATS ────────────────────────────────────────── */
  .record { padding: 50px 0 !important; }
  .record h2 { font-size: 22px !important; }
  .record p.top,
  .record p.bottom { width: 100% !important; font-size: 14px !important; }

  .stats { width: 100% !important; grid-template-columns: 1fr 1fr !important; gap: 12px !important; }
  .stat  { border: none !important; text-align: center; }

  /* ─── SLIDER / TESTIMONIALS ─────────────────────────────────── */
  .slider { width: 100% !important; }
  .t-card { flex: 0 0 85% !important; height: auto !important; }

  /* ─── MEASURED ───────────────────────────────────────────────  */
  .measured h2 { font-size: 22px !important; }
  .measured p  { width: 100% !important; font-size: 14px !important; }

  /* ─── AWARDS ─────────────────────────────────────────────────  */
  .awards .row { width: 50% !important; gap: 8px !important; }
  .awards img  { width: 50% !important; }

  /* ─── NEWS GRID ──────────────────────────────────────────────  */
  .news-grid            { width: 100% !important; grid-template-columns: 1fr !important; }
  .news-card            { min-height: auto !important; }
  .news-card h3         { font-size: 18px !important; }

  /* ─── FIRM CHOOSER ───────────────────────────────────────────  */
  .firm-chooser .inner { padding: 0 16px !important; }

  .firm-chooser .switch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    overflow: visible;
    padding: 0 16px;
  }

  .firm-btn {
    width: 100% !important;
    max-width: 420px;
    height: auto !important;
    padding: 20px 16px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: visible !important;
  }

  .firm-btn .firm-logo,
  .firm-btn .brand img.logo { width: 160px !important; height: auto !important; }
  .firm-btn .label          { font-size: 16px !important; text-align: center; }

  .firm-cards,
  .news-grid,
  .selection-container {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .firm-card,
  .news-card,
  .selection-card {
    width: 90% !important;
    max-width: 420px;
    margin: 0 auto;
  }

  .firm-cards { grid-template-columns: 1fr !important; }

  /* ─── SUBSCRIBE / FORMS ──────────────────────────────────────  */
  .subscribe,
  .subscribe-form,
  .stay-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
    margin-top: 16px !important;
  }

  .subscribe input,
  .subscribe-form input,
  .stay-form input {
    width: 100% !important;
    height: 48px !important;
    font-size: 14px !important;
    border-radius: 8px !important;
    padding: 0 14px !important;
  }

  .subscribe button,
  .subscribe-form button,
  .btn-receive,
  .stay-form button {
    width: 100% !important;
    height: 48px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
  }

  /* ─── NEXT STEP / STAY INFORMED ──────────────────────────────  */
  .next-step,
  .about-next-step,
  .stay-informed,
  .next-step-bg .next-step {
    padding: 40px 0 !important;
  }

  .next-step .inner,
  .about-next-step .inner,
  .stay-informed .inner { padding: 0 16px !important; }

  .next-step h3,
  .about-next-step h3,
  .stay-informed h2 {
    font-size: 20px !important;
    line-height: 1.3;
    margin-bottom: 12px !important;
  }

  .next-step p,
  .about-next-step p,
  .stay-informed p {
    width: 100% !important;
    font-size: 14px !important;
    line-height: 1.6;
    margin-bottom: 20px !important;
  }

  .next-step-bg .title {
    padding-left: 16px !important;
    padding-right: 16px !important;
    font-size: 28px;
  }

  .next-step-bg .subtitle {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 16px 0 0 !important;
    padding: 16px 16px 0 !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    text-align: left !important;
    word-wrap: break-word !important;
    white-space: normal !important;
  }

  /* ─── FOOTER ─────────────────────────────────────────────────  */
  .footer .inner {
    flex-direction: column !important;
    gap: 24px !important;
    padding: 30px 16px !important;
  }

  .footer .brand-block,
  .footer .col,
  .footer .col.practice,
  .footer .col.faq {
    width: 100% !important;
    min-width: 0 !important;
  }

  .footer .links.footer-practice-links {
    grid-template-columns: 1fr !important;
    text-align: left !important;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    padding: 16px !important;
    text-align: center;
  }

  /* ─── CONTENT VISIBILITY — skip off-screen paint cost ───────  */
  .record,
  .measured,
  .insight,
  .next-step-bg,
  .footer {
    content-visibility: auto;
    contain-intrinsic-size: 0 400px;
  }

}
