@font-face {
  font-family: sfpro;
  src: url(../fonts/SFPRODISPLAYREGULAR.OTF);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: sfpro, sans-serif;
}

body {
  background: #fff;
  color: #222;
  line-height: 1.6;
  margin-bottom: 10rem;
}

/* Top Bar */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
}

.branding {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-text {
  font-weight: 700;
  font-size: 16px;
  color: #000;
}

.logo {
  height: 28px;
}

.contact-btn {
  background: #25d366;
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
}

/* Section Layouts */
.hero,
.feature,
.contact {
  padding: 1.2rem 1rem;
}

.hero + .feature,
.feature + .feature,
.feature + .contact {
  margin-top: 1rem;
}

/* Hero */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  max-width: 500px;
  margin-bottom: 1.5rem;
}

.hero-content .app-icon {
  width: 90px;
  margin-bottom: 1rem;
}

.hero-content h1 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.hero-content p {
  margin-bottom: 1rem;
  color: #444;
}

.app-store {
  width: 140px;
}

.hero-image {
  position: relative;
  max-width: 400px;
}

.hero-image img {
  width: 100%;
  transform: translate(10%, 5%);
}

/* Feature Section */
.feature {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}

.feature.reverse {
  flex-direction: row-reverse;
}

.feature-img {
  flex: 1 1 300px;
  max-width: 300px;
}

.feature-text {
  flex: 1 1 400px;
  max-width: 500px;
}

.feature-text h2 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.feature-text p {
  color: #444;
}

.download-btn {
    text-decoration: none;
}

/* Contact Section */
.contact {
  text-align: center;
  background: #fff;
}

.contact h2 {
  margin-bottom: 0.5rem;
}

.contact-subtitle {
  margin-bottom: 1.5rem;
  color: #444;
  font-size: 14px;
}

.contact form {
  display: flex;
  flex-direction: column;
  max-width: 350px;
  margin: 0 auto;
}

.contact input,
.contact textarea {
  padding: 0.8rem 0;
  margin-bottom: 1.2rem;
  border: none;
  border-bottom: 2px solid #000;
  background: transparent;
  outline: none;
  font-size: 16px;
}

.contact textarea {
  min-height: 150px;
}

.contact button {
  background: #25d366;
  color: #fff;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
  margin: 2rem auto 0;
  display: block;
  width: auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero,
  .feature {
    flex-direction: column;
    padding: 1rem 1rem;
  }

  .feature.reverse {
    flex-direction: column;
  }

  .hero-content,
  .feature-text {
    text-align: center;
    max-width: 100%;
  }

  .hero-image,
  .feature-img {
    max-width: 90%;
    margin-top: 1rem;
  }

  .contact {
    padding: 1rem;
  }

  .contact button {
    margin-top: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero,
  .feature,
  .contact {
    padding: 0.8rem;
  }

  .feature-img {
    max-width: 95%;
  }

  .hero-image {
    transform: none;
  }

  .contact button {
    margin-top: 1.2rem;
  }

  .feature-text {
    flex: 1 1 0px;
    max-width: 500px;
    }
}
