@media (min-width: 1025px) {
  .hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 40px;
    align-items: center;
    text-align: left;
    min-height: 20vh;
    padding-top: 40px;
  }

  .hero-content {
    grid-column: 1;
    grid-row: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 40px;
  }

  .hero-image {
    grid-column: 2;
    grid-row: 1 / 3;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero .download-buttons {
    grid-column: 1;
    grid-row: 2;
    max-width: 600px;
    margin-top: -20px;
    align-self: start;
  }

  .hero .download-buttons .button .store-icon {
    margin-right: 10px;
  }

  .main-screenshot {
    max-width: 340px;
    height: auto;
    aspect-ratio: 340 / 736;
    object-fit: cover;
  }

  .app-screenshots {
    position: relative;
    width: 100%;
    height: 600px;
  }

  .download-buttons {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 15px;
    margin-top: 0;
    width: 100%;
  }

  .hero .download-buttons {
    display: flex;
  }

  .download-buttons.desktop-only {
    display: flex !important;
  }

  .hero .download-buttons.show-desktop {
    display: flex;
  }

  .download-buttons .button {
    padding: 16px 28px;
    font-size: 1rem;
    min-width: 200px;
    justify-content: center;
  }

  .nav-links {
    display: flex;
  }

  .mobile-menu {
    display: none !important;
  }

  .app-screenshots .screenshot-secondary,
  .app-screenshots .screenshot-tertiary {
    display: block;
  }

  .phone-container.animated {
    animation: float 4.5s ease-in-out infinite;
  }

  .hero-particles {
    display: block;
  }

  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-bottom p {
    margin-bottom: 0;
  }

  .social-links {
    margin-top: 0;
  }

  .social-links a {
    width: 30px;
    height: 30px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  @media (min-width: 769px) and (max-width: 1250px) {
    .nav-links li {
      margin-left: 15px;
    }

    .nav-links a {
      font-size: 0.9rem;
    }
  }
}