* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, Arial, sans-serif;
}

body {
  background: linear-gradient(180deg,#f4f6fb,#ffffff);
  color: #111827;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 70px 20px;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 18px;
}

.hero span {
  color: #6366f1;
}

.hero p {
  color: #6b7280;
  margin-bottom: 28px;
}

.phone-mock {
  width: 260px;
  height: 520px;
  background: white;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0,0,0,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
}

/* STORE BUTTONS */
.store-buttons {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}

.store-buttons.center {
  justify-content: center;
}

.store-btn {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 16px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
}

.store-btn img {
  width: 24px;
}

.apple {
  background: black;
  color: white;
}

.google {
  border: 1px solid #ddd;
  color: black;
}

/* SOCIAL PROOF */
.social-proof {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.pill {
  background: rgba(34,197,94,.07);
  border: 1px solid rgba(34,197,94,.2);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 14px;
  color: #6b7280;
}

.pill span {
  color: #22c55e;
  margin-right: 6px;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 5px 15px rgba(0,0,0,.05);
}

.title {
  text-align: center;
  margin-bottom: 40px;
}

/* CTA */
.cta {
  text-align: center;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 50px 20px;
  border-top: 1px solid #eee;
  color: #6b7280;
}

footer .support {
  display: block;
  margin: 10px 0;
  color: #6366f1;
  text-decoration: none;
}

@media(max-width:900px){
  .hero { grid-template-columns:1fr; text-align:center; }
  .cards { grid-template-columns:1fr 1fr; }
}
