/* GLOBAL */
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: #FFF4E9;
  color: #603e2b;
  line-height: 1.5;
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 80px 8%;
  background: linear-gradient(180deg, #FFF4E9 0%, #F8E9D8 100%);
}

.hero-content {
  max-width: 450px;
  margin-left: 1%;
}

.hero h1 {
  font-size: 54px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 20px;
}

.hero-sub {
  font-size: 18px;
  color: #6a4b36;
  margin-bottom: 30px;
}

.buttons {
  display: flex;
  gap: 16px;
}

.store-btn {
  padding: 14px 22px;
  background: #e7c5a2;
  border-radius: 10px;
  color: #5d442f;
  font-weight: 600;
  text-decoration: none;
  cursor: default;
}

/* PHONE MOCKUP */
.hero-phone {
  width: 420px;
  max-width: 100%;
  height: auto;
  display: block;
}

/* FEATURES */
.features {
  padding: 60px 6%;
  text-align: center;
}

.features h2 {
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 700;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  background: #fff;
  padding: 18px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  font-size: 16px;
  font-weight: 500;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 40px 0;
  color: #83624c;
  font-size: 15px;
}

footer a {
  color: #7a5944;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 5%;
    gap: 40px;
  }

  .hero-content {
    margin-left: 0;
  }

  .hero-phone {
    width: 320px;
  }

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

@media (max-width: 600px) {
  .hero h1 {
    font-size: 36px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .hero-phone {
    width: 260px;
  }

  .buttons {
    flex-direction: column;
  }

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