/* ============================================================
   CONTACT PAGE — STATS MOBILE FIX (CLEAN VERSION)
   Paste at the very bottom of your style.css
   ============================================================ */

@media (max-width: 820px) {

  /* Complete reset then rebuild cleanly */
  .vach__stats {
    all: unset !important;
    display: flex !important;
    flex-wrap: wrap !important;
    width: 100% !important;
    margin-top: 24px !important;
    box-sizing: border-box !important;
  }

  /* Each stat takes exactly 50% width = 2 per row, always */
  .vach__stat {
    all: unset !important;
    display: flex !important;
    flex-direction: column !important;
    width: 50% !important;
    box-sizing: border-box !important;
    padding: 16px 16px 16px 0 !important;
    border-bottom: 1px solid rgba(255,255,255,.1) !important;
  }

  /* Remove bottom border from last 2 stats */
  .vach__stat:nth-child(3),
  .vach__stat:nth-child(4) {
    border-bottom: none !important;
  }

  /* Right column: add left padding */
  .vach__stat:nth-child(even) {
    padding-left: 16px !important;
    border-left: 1px solid rgba(255,255,255,.1) !important;
  }

  /* Stat number */
  .vach__stat-num {
    display: block !important;
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 32px !important;
    font-weight: 700 !important;
    color: #d4a843 !important;
    line-height: 1.1 !important;
  }

  /* Stat label */
  .vach__stat-label {
    display: block !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: .18em !important;
    text-transform: uppercase !important;
    color: rgba(255,255,255,.45) !important;
    margin-top: 5px !important;
  }

  /* Move floating buttons to right so they never cover stats */
  .floating-cta-stack {
    left: auto !important;
    right: 14px !important;
    bottom: 14px !important;
  }

  .vach__deco-line {
    display: none !important;
  }
}