* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "DM Sans", sans-serif;
}

body {
  background-color: #0d1b2a;
}

h1 {
  font-family: "Instrument Serif", serif;
  font-size: 64px;
  font-weight: 400;
  margin-bottom: 24px;
  color: #f0ede6;
}

h2 {
  font-family: "Instrument Serif", serif;
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 24px;
  color: #f0ede6;
}

p {
  font-size: 20px;
  font-weight: 400;
  color: #8fa3b2;
  margin-bottom: 24px;
}

.container {
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 16px;
}

main {
  max-width: 1290px;
  margin: 124px auto 0px;
  padding: 40px 0px 70px;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #0d1b2a;
  padding-block: 24px;
  z-index: 1000;
  border-bottom: 1px solid #1e2b39;
}

.footer {
  background: #0d1b2a;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 24px;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 75px;
  width: 100%;
}

.nav {
  display: flex;
  gap: 20px;
}

.nav a {
  text-decoration: none;
  color: #8fa3b2;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
}

.btn {
  background: #f5a623;
  color: #04070c;
  padding: 10px 16px;
  border-radius: 24px;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  font-family: "Manrope", sans-serif;
}

.burger {
  display: none;
  font-size: 28px;
  color: #ffffff;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #ffffff;
  transition: 0.3s;
  z-index: 2000;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu__top {
  display: flex;
  background-color: #0d1b2a;
  padding: 24px 16px;
  justify-content: space-between;
  align-items: center;
}

.close {
  color: #ffffff;
  font-size: 28px;
  cursor: pointer;
  width: 40px;
  height: 40px;
}

.mobile-nav {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-inline: 16px;
}

.mobile-nav a {
  font-size: 20px;
  text-decoration: none;
  color: #0d1b2a;
}

.hero-container {
  display: flex;
  gap: 20px;
  margin-bottom: 75px;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.badge {
  background: #51ba8a26;
  color: #4ade80;
  font-size: 12px;
  padding: 8px 16px;
  border-radius: 24px;
  border: 1px solid #51ba8a4d;
  width: fit-content;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Manrope", sans-serif;
}

.badge-dot {
  width: 4px;
  height: 4px;
  background-color: #51ba8a;
  border-radius: 50%;
}

.italic-accent {
  font-style: italic;
  color: #f5a623;
}

.hero-description {
  color: #8fa3b2;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 40px;
}

.hero-description strong {
  color: white;
  font-weight: 600;
}

.btn-group {
  display: flex;
  gap: 20px;
  padding-bottom: 36px;
  flex-wrap: wrap;
  border-bottom: 1px solid #1e2b39;
}

.btn-main {
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 24px;
  font-weight: 400;
  font-size: 16px;
  font-family: "Manrope", sans-serif;
}

.btn-primary {
  background-color: #f5a623;
  color: #000;
}

.btn-secondary {
  border: 1px solid #f5a623;
  background-color: transparent;
  color: #f5a623;
}

.btn-secondary span {
  color: #f5a623;
  margin-left: 8px;
}

.trusted-text {
  margin-top: 40px;
  font-size: 18px;
  color: #ffffff;
  line-height: 30px;
  margin-bottom: 10px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 5px;
}

.stars {
  background: linear-gradient(98.24deg, #fffa6d 0%, #f5a623 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.score {
  font-weight: 400;
  color: white;
  font-size: 16px;
  line-height: 24px;
}

.reviews {
  color: #71717a;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

.hero-image {
  flex: 1;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

.card {
  background-color: #f5a6231a;
  padding: 24px;
  border-radius: 0 24px 24px 0;
  border-left: 2px solid #f5a623;
  margin-bottom: 16px;
}
.sections-title {
  font-weight: 300;
  text-transform: uppercase;
  color: #506f91;
  font-size: 14px;
  margin-bottom: 8px;
}

.quote {
  font-size: 16px;
  font-style: italic;
  margin-bottom: 16px;
  color: #f0ede6;
  font-weight: 400;
}

.author {
  font-size: 16px;
  color: #ffffff;
  font-weight: 600;
}
.stats-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 75px;
}

.stat-card {
  background-color: #8fa3b21a;
  border: 1px solid #8fa3b24f;
  border-radius: 24px;
  padding: 16px 24px;
  flex: 1;
  text-align: center;
  box-sizing: border-box;
}

.stat-value {
  color: #f5a623;
  font-size: 64px;
  font-weight: 900;
  margin-bottom: 8px;
}

.stat-desc {
  color: #8fa3b2;
  font-size: 20px;
  font-weight: 300;
}

 .h2-mob {
    display: none;
  }


@media (max-width: 768px) {
  .stats-container {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .h2-desk {
    display: none;
  }

   .h2-mob {
    display: block;
  }


  .stat-card {
    width: 100%;
  }
  main {
    padding: 40px 16px 70px;
  }
  .nav,
  .btn {
    display: none;
  }

  .burger {
    display: block;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 28px;
  }
  .hero-container {
    flex-direction: column-reverse;
  }

  .hero-image {
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
  }

  .btn-group {
    flex-direction: column;
    text-align: center;
    padding-bottom: 24px;
  }

  .trusted-text {
    margin-top: 16px;
  }
}

@media (max-width: 430px) {
  .footer__inner {
    flex-direction: column;
    align-items: start;
  }
}
