@charset "utf-8";

#features_wrap {
  min-height: 100vh;
  background: #f7f8fb;
  color: #111;
}

.features_hero {
  max-width: 920px;
  margin: 0 auto;
  padding: 200px 24px 56px;
  text-align: center;
}

.features_badge {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: #eef2ff;
  color: #3949ab;
  font-size: 13px;
  font-weight: 900;
}

.features_hero h1 {
  margin: 26px 0 20px;
  color: #111;
  font-size: 58px;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.05em;
}

.features_hero p {
  max-width: 720px;
  margin: 0 auto;
  color: #666;
  font-size: 17px;
  line-height: 1.8;
}

.features_overview_section,
.features_section,
.features_cta_section {
  max-width: 1200px;
  margin: 0 auto;
  padding-right: 24px;
  padding-left: 24px;
}

.features_overview_section {
  padding-top: 26px;
  padding-bottom: 70px;
}

.features_overview_grid,
.features_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.features_overview_grid {
  gap: 18px;
}

.features_grid {
  gap: 22px;
}

.features_overview_card,
.features_card {
  border: 1px solid rgba(17, 17, 17, .06);
  background: #fff;
  box-shadow: 0 18px 50px rgba(17, 17, 17, .04);
  box-sizing: border-box;
}

.features_overview_card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 26px;
  border-radius: 26px;
}

.features_overview_card strong {
  color: #111;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.features_overview_card span {
  color: #777;
  font-size: 14px;
  font-weight: 800;
}

.features_section {
  padding-top: 34px;
  padding-bottom: 80px;
}

.features_section_head {
  max-width: 760px;
  margin-bottom: 30px;
}

.features_section_head span {
  display: inline-flex;
  align-items: center;
  height: 30px;
  margin-bottom: 16px;
  padding: 0 12px;
  border-radius: 999px;
  background: #f0f2f5;
  color: #555;
  font-size: 12px;
  font-weight: 900;
}

.features_section_head h2 {
  margin: 0 0 14px;
  color: #111;
  font-size: 38px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.features_section_head p {
  margin: 0;
  color: #666;
  font-size: 16px;
  line-height: 1.8;

}

.features_card {
  padding: 30px;
  border-radius: 28px;
}

.features_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  border-radius: 18px;
  background: #111827;
  color: #fff;
  font-size: 21px;
}

.features_app_name {
  display: inline-flex;
  margin-bottom: 12px;
  color: #777;
  font-size: 12px;
  font-weight: 900;
}

.features_card h3 {
  margin: 0 0 14px;
  color: #111;
  font-size: 23px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.features_card p {
  margin: 0;
  color: #666;
  font-size: 15px;
  line-height: 1.8;

}

.features_cta_section {
  padding-top: 34px;
  padding-bottom: 120px;
}

.features_cta {
  padding: 54px;
  border-radius: 34px;
  background: #111827;
  color: #fff;
  text-align: center;
  box-shadow: 0 24px 70px rgba(17, 17, 17, .14);
}

.features_cta span {
  display: inline-flex;
  align-items: center;
  height: 32px;
  margin-bottom: 18px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 900;
}

.features_cta h2 {
  margin: 0 0 14px;
  font-size: 38px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.features_cta p {
  max-width: 660px;
  margin: 0 auto;
  color: rgba(255, 255, 255, .68);
  font-size: 16px;
  line-height: 1.8;

}

.features_cta_actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.features_cta_actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 20px;
  border-radius: 16px;
  background: #fff;
  color: #111827;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.features_cta_actions a.is_secondary {
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

@media (max-width: 1199px) and (min-width: 768px) {

  .features_overview_grid,
  .features_grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 767px) {

  .features_hero {
    padding: 142px 18px 36px;
  }

  .features_hero h1 {
    font-size: 38px;
  }

  .features_hero p {
    font-size: 15px;
  }

  .features_overview_section,
  .features_section,
  .features_cta_section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .features_overview_grid,
  .features_grid {
    grid-template-columns: 1fr;
  }

  .features_section_head h2,
  .features_cta h2 {
    font-size: 29px;
  }

  .features_card {
    padding: 26px;
    border-radius: 24px;
  }

  .features_cta {
    padding: 36px 24px;
    border-radius: 26px;
  }

  .features_cta_actions {
    flex-direction: column;
  }

  .features_cta_actions a {
    width: 100%;
    box-sizing: border-box;
  }

}