
/* Reset + font */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #f4f7fc;
  color: #1a1a1a;
  line-height: 1.6;
}

/* Container */
.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}

/* Hero section */
.hero {
  background: linear-gradient(145deg, #f4f7fc, #e3edf7);
  padding: 60px 20px;
  border-bottom: 1px solid #e0e0e0;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.tagline {
  font-size: 1.25rem;
  color: #5b6b8b;
  margin-bottom: 1.5rem;
}

.app-store-btn img {
  height: 56px;
  transition: transform 0.2s ease;
}

.app-store-btn img:hover {
  transform: scale(1.05);
}

/* App Preview Section */
.app-preview {
  background: #ffffff;
  padding: 40px 20px;
  border-bottom: 1px solid #e0e0e0;
}

.screenshot {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  margin: 0 auto;
}

/* Benefits section */
.benefits {
  background: #f9fbfe;
  padding: 40px 20px;
}

.benefits h2 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

.benefits ul {
  list-style: none;
  padding: 0;
}

.benefits li {
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  color: #2d3a4f;
}

/* Call to Action Section */
.cta {
  background: #e8f1fd;
  padding: 60px 20px;
  border-top: 1px solid #d4e1f4;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.cta p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #3a4b63;
}

/* Footer */
.footer {
  background: #f0f4fa;
  padding: 20px;
  font-size: 0.9rem;
  color: #7a8da1;
}

.footer-links {
  margin-bottom: 8px;
}

.footer-links a {
  color: #5b6b8b;
  text-decoration: none;
  margin: 0 6px;
}

.footer-links a:hover {
  text-decoration: underline;
}
