/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Poppins', sans-serif;
  background: #f9fbfd;
  color: #1a202c;
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  max-width: 960px;
  margin: auto;
  padding: 0 20px;
  text-align: center;
}

/* Hero */
.hero {
  background: linear-gradient(rgba(34, 89, 126, 0.6), rgba(34, 89, 126, 0.6)), url('hero.png') center/cover no-repeat;
  padding: 100px 20px 80px;
  color: #fff;
}
.hero .logo {
  height: 50px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.subhead {
  font-size: 1.15rem;
  margin-bottom: 28px;
}

/* CTA Buttons */
.cta-btn {
  display: inline-block;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cta-btn.primary {
  background: #10b981;
  color: #fff;
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.25);
}
.cta-btn.primary:hover {
  background: #0e9e72;
  transform: scale(1.05);
}
.cta-btn.subtle {
  background: #e0f7f1;
  color: #0e9e72;
  margin-top: 24px;
}
.cta-btn.large {
  font-size: 1.4rem;
  padding: 20px 40px;
}

/* Problem Section */
.problem {
  padding: 60px 20px;
  background: #f1f5f9;
}
.problem p {
  font-size: 1.15rem;
  max-width: 720px;
  margin: 0 auto;
}

/* Features */
.features {
  padding: 80px 20px;
}
.features h2 {
  font-size: 2rem;
  margin-bottom: 28px;
  color: #22597e;
}
.features ul {
  list-style: none;
  text-align: left;
  max-width: 700px;
  margin: 0 auto 32px;
}
.features ul li {
  background: #f0fdf4;
  padding: 14px 20px;
  margin-bottom: 12px;
  border-left: 5px solid #10b981;
  border-radius: 6px;
  font-size: 1.05rem;
}

/* Social Proof */
.social-proof {
  padding: 60px 20px;
  background: #f9fafb;
}
.social-proof h2 {
  font-size: 1.8rem;
  color: #1e3d59;
  margin-bottom: 16px;
}

/* Testimonials */
.testimonials {
  padding: 70px 20px;
  background: #eef6fb;
}
.testimonials h2 {
  font-size: 1.9rem;
  color: #22597e;
  margin-bottom: 32px;
}
.testimonial-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.testimonial-card {
  background: #ffffff;
  padding: 20px;
  max-width: 300px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.testimonial-card span {
  display: block;
  margin-top: 12px;
  font-weight: 600;
  color: #22597e;
}

/* Trust Badges */
.trust-badges {
  background: #f9fbff;
  padding: 60px 20px;
  text-align: center;
}
.trust-badges h2 {
  font-size: 1.8rem;
  font-family: 'Inter', sans-serif;
  color: #1e3d59;
  margin-bottom: 30px;
}
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: center;
}
.badge-row img {
  width: 90px;
  height: auto;
  filter: grayscale(100%) brightness(0.9);
  transition: transform 0.2s ease, filter 0.2s ease;
}
.badge-row img:hover {
  transform: scale(1.05);
  filter: none;
}

/* Final CTA */
.final-cta {
  padding: 80px 20px;
  background: #1a202c;
  color: #fff;
}
.final-cta h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}

/* Footer */
footer {
  background: #1a202c;
  color: #ffffff;
  text-align: center;
  padding: 40px 20px 30px;
}
footer p {
  font-size: 0.95rem;
}
.disclaimer {
  display: block;
  margin-top: 10px;
  font-size: 0.85rem;
  color: #94a3b8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .cta-btn {
    font-size: 1rem;
    padding: 14px 28px;
  }
  .testimonial-grid {
    flex-direction: column;
    align-items: center;
  }
  .badge-row {
    flex-direction: row;
    gap: 24px;
  }
  .badge-row img {
    width: 70px;
  }
}
