@media (max-width: 720px) {
  body::after {
    display: none;
  }

  body {
    padding-bottom: calc(18rem + env(safe-area-inset-bottom, 0px));
  }

  main {
    padding-bottom: clamp(8rem, 22vw, 11rem);
  }

  .sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    background: transparent;
    padding-inline: clamp(0.75rem, 4vw, 1.2rem);
    padding-bottom: calc(0.6rem + env(safe-area-inset-bottom, 0px));
    border-radius: 18px 18px 0 0;
    overflow: hidden;
    box-shadow: 0 -18px 30px rgba(3, 10, 18, 0.45);
    border-top: 1px solid rgba(26, 36, 48, 0.75);
    z-index: 48;
  }

  .sticky-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 18, 28, 0.9), rgba(6, 10, 16, 0.96));
    z-index: -1;
  }

  .theme-light .sticky-cta::before {
    background: linear-gradient(180deg, rgba(247, 250, 255, 0.95), rgba(223, 236, 255, 0.98));
  }

  .theme-light .sticky-cta {
    box-shadow: 0 -18px 30px rgba(162, 192, 236, 0.28);
    border-top: 1px solid rgba(16, 52, 96, 0.16);
  }

  .sticky-cta .inner {
    align-items: stretch;
    gap: 0.5rem;
    padding: 0.5rem 0;
  }

  .pill-row {
    display: none;
  }

  .cta-row {
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
  }

  .cta-row .btn {
    width: 100%;
    justify-content: center;
    min-height: 44px;
    font-size: clamp(0.9rem, 3vw, 0.98rem);
    padding: 0.65rem 0.8rem;
  }

  .footer {
    margin-top: 2.6rem;
    padding: 2.4rem 0 calc(8.4rem + env(safe-area-inset-bottom, 0px));
    background: linear-gradient(180deg, rgba(18, 24, 34, 0.94), rgba(8, 12, 18, 0.98));
    border-top: 1px solid rgba(32, 42, 54, 0.55);
    box-shadow: 0 -18px 40px rgba(6, 10, 16, 0.55);
    position: relative;
    z-index: 30;
  }

  .theme-light .footer {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(229, 239, 255, 0.98));
    border-top: 1px solid rgba(16, 52, 96, 0.18);
    box-shadow: 0 -18px 32px rgba(162, 192, 236, 0.24);
  }

  .footer-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }

  .footer-right {
    text-align: left;
    width: 100%;
  }

  .tractor-logos {
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
  }

  .tractor-logos .t-item {
    flex: 0 1 160px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
  }

  .tractor-logos .t-item img {
    max-width: 120px;
    width: 100%;
  }
}
