* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f7f9fc;
  color: #172033;
  line-height: 1.6;
}

.navbar {
  height: 70px;
  padding: 0 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border-bottom: 1px solid #e8ebf0;
}

.logo {
  font-size: 25px;
  font-weight: 800;
  color: #111827;
}

.logo span {
  color: #00aeec;
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

nav a {
  text-decoration: none;
  color: #263247;
  font-weight: 600;
}

.nav-button,
.primary-button {
  display: inline-block;
  background: #00aeec;
  color: #ffffff !important;
  padding: 11px 20px;
  border-radius: 10px;
}

.hero {
  min-height: 560px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 70px 20px;
  background: linear-gradient(
    135deg,
    #eefaff,
    #ffffff
  );
}

.hero-content {
  max-width: 800px;
}

.badge {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 30px;
  background: #e3f7ff;
  color: #008fc5;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.1;
  margin-bottom: 25px;
}

.hero h1 span {
  color: #00aeec;
}

.hero p {
  max-width: 650px;
  margin: auto;
  font-size: 18px;
  color: #637083;
}

.hero-buttons {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.primary-button,
.secondary-button {
  text-decoration: none;
  font-weight: 700;
}

.secondary-button {
  padding: 11px 20px;
  border: 1px solid #d9e0e8;
  border-radius: 10px;
  background: #ffffff;
  color: #263247;
}

.how-it-works {
  padding: 80px 7%;
  text-align: center;
}

.how-it-works h2,
.cta h2 {
  font-size: 38px;
  margin-bottom: 12px;
}

.section-text {
  color: #6b7280;
  margin-bottom: 40px;
}

.steps {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.step-card {
  padding: 35px 25px;
  background: #ffffff;
  border: 1px solid #e7ebf0;
  border-radius: 18px;
}

.step-icon {
  font-size: 42px;
  margin-bottom: 15px;
}

.step-card h3 {
  margin-bottom: 10px;
}

.step-card p {
  color: #6b7280;
}

.stats {
  padding: 55px 7%;
  background: #ffffff;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  border-top: 1px solid #e8ebf0;
  border-bottom: 1px solid #e8ebf0;
}

.stats strong {
  display: block;
  font-size: 36px;
  color: #00aeec;
}

.stats span {
  color: #6b7280;
}

.cta {
  text-align: center;
  padding: 90px 20px;
}

.cta p {
  margin-bottom: 25px;
  color: #6b7280;
}

footer {
  padding: 35px 7%;
  text-align: center;
  background: #111827;
  color: #ffffff;
}

footer .logo {
  color: #ffffff;
  margin-bottom: 10px;
}

footer p {
  color: #b7c0ce;
}

footer .small {
  margin-top: 10px;
  font-size: 12px;
}

@media (max-width: 700px) {

  .navbar {
    padding: 0 5%;
  }

  nav a:first-child {
    display: none;
  }

  .hero {
    min-height: 500px;
    padding: 50px 18px;
  }

  .hero h1 {
    font-size: 45px;
  }

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

  .stats {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .how-it-works h2,
  .cta h2 {
    font-size: 30px;
  }
}
