* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, sans-serif;
  color: #1a1a1a;
  background: #ffffff;
}

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

.narrow {
  max-width: 720px;
  margin: auto;
  text-align: center;
}

/* NAV */
.nav {
  background: white;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-inner {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #1F3C88;
}

.brand img {
  height: 36px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  text-decoration: none;
  color: #1F3C88;
  font-weight: 600;
}

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

/* HERO */
.hero {
  background: radial-gradient(circle at top, #F0F4FF, #ffffff 70%);
  padding: 140px 0;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(31,60,136,0.1);
  color: #1F3C88;
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: 600;
  margin-bottom: 30px;
}

.hero h1 {
  font-size: 54px;
  color: #1F3C88;
  margin-bottom: 20px;
}

.hero p {
  max-width: 620px;
  margin: auto;
  font-size: 20px;
  color: #444;
}

.hero-actions {
  margin-top: 40px;
}

/* BUTTONS */
.btn-primary {
  background: #1F3C88;
  color: white;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.btn-secondary {
  margin-left: 16px;
  text-decoration: none;
  color: #1F3C88;
  font-weight: 600;
}

/* STATS */
.stats {
  background: #F7F9FC;
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  text-align: center;
  gap: 20px;
}

.stats h3 {
  font-size: 32px;
  color: #1F3C88;
  margin-bottom: 5px;
}

/* SECTIONS */
.section {
  padding: 120px 0;
}

.section h2 {
  text-align: center;
  font-size: 36px;
  color: #1F3C88;
  margin-bottom: 16px;
}

.section-lead {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
  font-size: 18px;
  color: #555;
}

.section.soft {
  background: #F7F9FC;
}

/* FEATURES */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature {
  background: white;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.05);
}

.feature h3 {
  color: #1F3C88;
}

/* EXPERIENCE */
.experience {
  padding: 120px 0;
}

.experience-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.experience-card {
  background: #F7F9FC;
  padding: 50px;
  border-radius: 30px;
}

/* TRUST */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.trust-item {
  background: white;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.trust-item strong {
  display: block;
  color: #1F3C88;
  margin-bottom: 8px;
}

.trust-item span {
  color: #555;
  font-size: 15px;
}

/* APP DOWNLOAD */
.download-section .section-lead {
  margin-bottom: 48px;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 700px;
  margin: 0 auto;
}

.download-card {
  background: #F7F9FC;
  padding: 40px;
  border-radius: 24px;
  text-align: center;
  position: relative;
  border: 2px solid transparent;
}

.download-android {
  border-color: #3DDC84;
  background: linear-gradient(180deg, rgba(61,220,132,0.08) 0%, #F7F9FC 100%);
}

.download-apple {
  border-color: #e5e5e5;
  opacity: 0.95;
}

.download-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.download-icon svg {
  width: 56px;
  height: 56px;
  display: block;
}

.download-icon-android svg {
  color: #3DDC84;
}

.download-icon-apple svg {
  color: #555;
}

.download-card h3 {
  color: #1F3C88;
  margin-bottom: 8px;
}

.download-card p {
  color: #555;
  margin-bottom: 24px;
  font-size: 15px;
}

.download-card .btn-primary {
  display: inline-block;
}

.badge-coming-soon {
  display: inline-block;
  background: #1F3C88;
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
}

/* VISION */
.vision-section .lead {
  font-size: 18px;
  color: #555;
  line-height: 1.7;
}

/* CTA / CONTACT */
.cta a {
  color: rgba(255,255,255,0.95);
  text-decoration: none;
}

.cta a:hover {
  text-decoration: underline;
}

.contact-details {
  margin-top: 24px;
}

.contact-details p {
  margin: 16px 0 4px;
}

.contact-email {
  margin-top: 24px !important;
}

/* CTA */
.cta {
  background: #1F3C88;
  color: white;
  padding: 120px 0;
  text-align: center;
}

.cta h2 {
  font-size: 40px;
  margin-bottom: 10px;
}

.cta p {
  margin-bottom: 40px;
}

/* FOOTER */
.footer {
  background: #0F1E3A;
  color: #ccc;
  padding: 30px 0;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 38px;
  }

  .hero-actions .btn-secondary {
    margin-left: 0;
    margin-top: 12px;
  }

  .nav-links {
    gap: 16px;
  }

  .nav-links a {
    font-size: 14px;
  }

  .experience-inner {
    grid-template-columns: 1fr;
  }

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

  .section h2 {
    font-size: 28px;
  }
}

