.hero {
  overflow: hidden;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 3rem 5rem;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.hero-text {
  flex: 1;
  text-align: left;
}

.hero-download {
  display: none;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  color: #4b5563;
  margin-bottom: 2rem;
}

.hero-image {
  flex: 1;
  position: relative;
}

img.phone {
  max-width: 250px;
  width: 50%;
}

.footer {
  background: #f9fafb;
}

.footer-content {
  max-width: 1200px;
  padding: 3rem 3rem;
  margin: 0 auto;
}

.footer-bottom {
  padding-top: 0.5rem;
  border-top: 1px solid #e5e7eb;
  text-align: center;
  color: #4b5563;
}

.footer-links {
  margin: 0 auto;
}

.footer-links ul {
  justify-content: center;
  list-style: none;
  display: flex;
  gap: 10px;
  margin-bottom: 0.5rem;
}

.footer-links ul li {
  cursor: pointer;
}

.footer-links ul li a {
  color: #4b5563;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links ul li a:hover {
  color: #11619B;
}

.footer-links ul li:not(:first-child)::before {
  content: "-";
  padding-right: 10px;
}

@media (max-width: 968px) {
  .hero-content {
    padding: 3rem 1.5rem 3rem;
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    .testflight-button, .appstore-button {
      display: none;
    }
  }

  .hero-download {
    display: block;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .hero-image {
    width: 90%;
    max-width: 650px;
  }

  .footer-content {
    padding: 2rem 1.5rem;
  }
  .footer-links ul {
    flex-direction: column;
    align-items: center;
  }
  .footer-links ul li:not(:first-child)::before {
    display: none;
  }
}

@media (max-width: 450px) {
  .nav-content {
    justify-content: center;
    
    .testflight-button, .appstore-button {
      display: none;
    }
  }
}