@media (max-width: 1080px) {
  .services-grid,
  .reason-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow-steps {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .flow-steps::before {
    top: 0;
    bottom: 0;
    left: 50%;
    right: auto;
    width: 2px;
    height: auto;
    transform: translateX(-50%) scaleY(0);
    transform-origin: top;
  }

  .flow-steps.is-visible::before {
    transform: translateX(-50%) scaleY(1);
  }

  .flow-steps div {
    min-height: 118px;
    padding: 3.1rem 1rem 1rem;
  }

  .flow-steps div::before {
    top: 1rem;
    left: 50%;
  }

  .flow-steps div:not(:last-child)::after {
    top: auto;
    left: 50%;
    bottom: -1.28rem;
    width: 0.74rem;
    height: 0.74rem;
    transform: translateX(-50%) rotate(135deg);
  }

  .flow-steps.is-visible div:not(:last-child)::after {
    animation-name: success-arrow-down;
  }
}

@media (max-width: 860px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 2.4rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .menu-toggle {
    position: fixed;
    top: 1rem;
    right: max(1rem, env(safe-area-inset-right));
    z-index: 45;
    display: block;
    justify-self: end;
    border-color: rgba(25, 185, 255, 0.42);
    background: rgba(13, 19, 28, 0.94);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32);
  }

  .nav-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
  }

  .nav-panel {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    display: grid;
    max-height: calc(100svh - 76px);
    overflow-y: auto;
    padding: 1rem;
    border-bottom: 1px solid var(--color-border);
    background: rgba(7, 10, 15, 0.97);
    transform: translateY(-120%);
    visibility: hidden;
    transition: transform 220ms ease, visibility 220ms ease;
  }

  .nav-panel.is-open {
    transform: translateY(0);
    visibility: visible;
  }

  .nav-links,
  .nav-actions {
    display: grid;
    justify-content: stretch;
  }

  .nav-links a,
  .nav-actions .btn {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-section,
  .split-section,
  .local-section,
  .contact-section,
  .footer-grid,
  .charts-grid,
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .media-frame {
    aspect-ratio: auto;
    min-height: 220px;
  }

  .media-scan {
    inset-inline: 0;
    transform: translateX(0);
    animation: none;
  }

  .hero-section {
    min-height: auto;
    padding-top: 2.75rem;
    overflow: hidden;
  }

  .setup-fees {
    grid-template-columns: repeat(2, 1fr);
  }

  .conversion-block,
  .footer-bottom {
    display: grid;
    justify-items: start;
  }

  .footer-bottom span:last-child {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1.22rem;
  }

  .section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .page-hero {
    padding-top: 8rem;
  }

  .brand-link img {
    width: 154px;
  }

  .hero-copy,
  .section-head,
  .page-hero {
    width: 100%;
    max-width: 100%;
  }

  .hero-copy h1,
  .hero-copy h2,
  .section-head h2,
  .page-hero h1 {
    max-width: 100%;
  }

  .hero-copy p,
  .section-head p,
  .page-hero p {
    max-width: 34ch;
  }

  .footer-brand img {
    width: 146px;
  }

  .conversion-block {
    padding: 1.25rem;
  }

  .hero-actions,
  .conversion-block > div {
    display: grid;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .intro-explore {
    width: max-content;
    max-width: calc(100% - 2rem);
    min-width: 132px;
  }

  .services-grid,
  .reason-grid,
  .setup-fees {
    grid-template-columns: 1fr;
  }

  .dash-grid {
    grid-template-columns: 1fr;
  }

  .intro-content {
    transform: translateY(-1rem);
  }

  .intro-content .eyebrow,
  .intro-content h1,
  .intro-content p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    overflow-wrap: anywhere;
  }

  .intro-content .eyebrow {
    max-width: 30ch;
  }

  .intro-content h1 {
    max-width: 18ch;
  }

  .intro-content p:not(.eyebrow) {
    max-width: 320px;
  }

  .intro-logo {
    width: 300px;
  }

  .intro-explore {
    bottom: 4.2rem;
  }

}

@media (max-width: 400px) {
  .intro-logo {
    width: 268px;
  }

  .intro-content p:not(.eyebrow) {
    max-width: 292px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-track {
    animation: none;
  }
}
