/* RC7 — Homepage conversion (mobile hierarchy & scanability) */

@media (max-width: 991px) {
  main {
    display: flex;
    flex-direction: column;
  }

  /* Hero → Service Area → Services → Trust → Booking */
  #hero { order: 1; }

  .services--maintenance .services__feature {
    order: 2;
  }

  #ceramic-coating { order: 3; }
  #paint-correction { order: 4; }

  .services--maintenance .services__content {
    order: 5;
  }

  #trust-strip {
    display: block !important;
    order: 6;
  }

  #trust { order: 7; }

  #book-online {
    display: block !important;
    order: 8;
    margin-top: 0;
  }

  #about { order: 9; }
  #contact { order: 10; }
  #faq { order: 11; }
  #local-seo { order: 12; }

  .copy--desktop-only {
    display: none !important;
  }

  .copy--mobile-only {
    display: block;
  }

  #mobile-detailing .services__list li:nth-child(2) {
    display: none;
  }

  #products-we-use .product-brands__note {
    display: none;
  }

  #ceramic-coating,
  #paint-correction {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .hero__actions {
    gap: 12px;
  }

  .hero__actions-secondary {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .hero__actions-secondary .btn--outline {
    width: 100%;
    text-align: center;
  }

  .hero__actions .btn--outline {
    width: 100%;
    text-align: center;
  }
}

@media (min-width: 992px) {
  .copy--mobile-only {
    display: none !important;
  }

  .hero__actions-secondary {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
}

/* Why Choose Us — equal card heights */
.trust__grid {
  align-items: stretch;
}

.trust-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 232px;
}

.trust-card p {
  margin: 0;
  flex: 1;
}
