@media (max-width: 900px) {
  #hero {
    flex-direction: column;
  }

  /* old + new */
  .services-grid,
  .audience-grid,
  .grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile spacing */
@media (max-width: 520px) {
  .price .grid > .card.has-sticker {
    padding-top: 74px;
  }

  .price .sticker {
    font-size: 11px;
    padding: 8px 10px;
  }
}


/* --- Tablet + down --- */
@media (max-width: 900px) {
  /* Hero spacing/type fixes */
  .hero-left {
    margin-top: 24px;      /* was 150px in sections.css */
    max-width: 100%;
  }

  .hero-title {
    font-size: 42px;       /* was 54px */
    line-height: 1.1;
  }

  .hero-sub {
    font-size: 18px;
  }

  /* Make hero image fluid (prevents overflow) */
  .hero-img,
  .hero-right img {
    width: 100%;
    max-width: 520px;
    height: auto;
  }

  /* Contact grid should stack too */
  .contact-box {
    grid-template-columns: 1fr;
  }

  /* Buttons can wrap nicely if needed */
  .btn-row {
    flex-wrap: wrap;
  }
}

/* --- Phone --- */
@media (max-width: 520px) {
  /* Reduce side padding on small screens */
  .hd {
    padding: 10px 16px;   /* was 10px 32px */
  }

  .wrap {
    padding: 0 16px;      /* was 0 32px */
  }

  /* Logo/nav scale down + allow nav to wrap */
  .logo-text {
    font-size: 34px;
  }

  .logo-main {
    font-size: 36px;
  }

  .nav a,
  .nav-link {
    font-size: 14px;
    margin-left: 14px;
  }

  .nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    justify-content: flex-end;
  }

  /* Hero padding a bit tighter */
  #hero {
    padding: 12px 16px 28px;
  }

  /* Make CTA buttons feel better on phones */
  .btn-row .btn {
    width: 100%;
    text-align: center;
  }

  /* Keep your sticker tweaks (already good) */
  .price .grid > .card.has-sticker {
    padding-top: 74px;
  }

  .price .sticker {
    font-size: 11px;
    padding: 8px 10px;
    max-width: 220px; /* helps avoid edge overflow on tiny screens */
  }
}
