/*--------- MAIN ----------*/
h1 {
  font-weight: 800;
  font-size: clamp(2.1rem, 5.2vw, 3.6rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

h2 {
  font-weight: 700;
  font-size: clamp(1.8rem, 8vw, 2.5rem);
  text-align: center;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

h4 {
  font-weight: 500;
  font-size: clamp(15px, 4vw, 1.125rem);
  line-height: 1.3;
  color: var(--text-grey);
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}

.button a {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  padding: 14px 28px;
  background-color: var(--bg-dark);
  color: var(--white);
  border-radius: 24px;
}
.button a img {
  width: 22px;
  height: 22px;
  padding-bottom: 2px;
}
.button a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 23, 41, 0.2);
}

.green {
  background: rgba(52, 199, 89, 0.12);
  color: #22C55E;
}

.blue {
  background: rgba(74, 158, 247, 0.12);
  color: var(--accent);
}

.purple {
  background: rgba(124, 92, 252, 0.12);
  color: #7C5CFC;
}

.orange {
  background: rgba(255, 149, 0, 0.12);
  color: #F59E0B;
}

@media (max-width: 600px) {
  h4 br {
    display: none;
  }
}
/*--------- STYLE ----------*/
.hero {
  padding: 60px 0 100px;
}
.hero .content {
  display: flex;
  align-items: center;
  gap: 48px;
}
.hero .content .hero_info {
  flex: 1;
}
.hero .content .hero_info .hero_title {
  margin-bottom: 24px;
}
.hero .content .hero_info .hero_title span {
  background: linear-gradient(135deg, var(--accent), #7C5CFC);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .content .hero_info .hero_points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.hero .content .hero_info .hero_points .hero_point {
  display: flex;
  gap: 12px;
}
.hero .content .hero_info .hero_points .hero_point .point_icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero .content .hero_info .hero_points .hero_point .point_icon svg {
  width: 20px;
  height: 20px;
}
.hero .content .hero_info .hero_points .hero_point .point_info .point_title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}
.hero .content .hero_info .hero_points .hero_point .point_info .point_text {
  font-size: 15px;
  color: var(--text-grey);
}
.hero .content .hero_images {
  width: 400px;
  position: relative;
}
.hero .content .hero_images img {
  max-width: 260px;
}
.hero .content .hero_images .image_light {
  position: relative;
  z-index: 2;
}
.hero .content .hero_images .image_dark {
  position: absolute;
  z-index: 1;
  top: 25px;
  left: 100px;
  transform: rotate(12deg);
}

.features {
  padding: 80px 0 80px;
}
.features .content .features_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.features .content .features_list img {
  border-radius: 20px;
}

.care {
  padding: 80px 0 80px;
}
.care .content .care_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.care .content .care_list .care_card {
  flex: 1;
  padding: 34px 28px;
  max-width: 300px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 1px 4px rgba(15, 23, 41, 0.04), 0 8px 28px rgba(15, 23, 41, 0.06);
}
.care .content .care_list .care_card .card_icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0 auto 18px;
}
.care .content .care_list .care_card .card_icon svg {
  width: 24px;
  height: 24px;
}
.care .content .care_list .care_card .card_title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
  text-align: center;
}
.care .content .care_list .care_card .card_description {
  font-size: 15px;
  text-align: center;
  color: var(--text-grey);
}

@media (max-width: 900px) {
  .hero {
    padding: 40px 0 80px;
  }
  .hero .content .hero_images {
    width: 270px;
  }
  .hero .content .hero_images img {
    width: 180px;
  }
  .hero .content .hero_images .image_dark {
    top: 15px;
    left: 60px;
  }
  .features {
    padding: 60px 0 60px;
  }
  .features .content .features_list {
    grid-template-columns: repeat(3, 1fr);
  }
  .care {
    padding: 60px 0 60px;
  }
  .care .content .care_list {
    gap: 20px;
  }
}
@media (max-width: 700px) {
  .hero {
    padding: 40px 0 60px;
  }
  .hero .content {
    flex-direction: column-reverse;
    gap: 60px;
  }
  .hero .content .hero_info .hero_title {
    text-align: center;
  }
  .hero .content .hero_info .button a {
    margin: 0 auto;
  }
  .hero .content .hero_images {
    margin-left: 30px;
  }
  .features .content .features_list {
    grid-template-columns: repeat(2, 1fr);
  }
  .care .content .care_list .care_card {
    min-width: 40%;
  }
}
@media (max-width: 600px) {
  .features .content .features_list {
    gap: 14px;
  }
  .care .content .care_list {
    flex-direction: column;
    align-items: center;
  }
  .care .content .care_list .care_card {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 40px 0 40px;
  }
  .hero .content .hero_info .hero_title {
    text-align: start;
  }
  .hero .content .hero_info .button a {
    margin: 0;
  }
  .hero .content .hero_images {
    margin-left: 10px;
    width: 240px;
  }
  .hero .content .hero_images img {
    width: 160px;
  }
  .hero .content .hero_images .image_dark {
    top: 10px;
    left: 50px;
    transform: rotate(15deg);
  }
  .features {
    padding: 40px 0 40px;
  }
  .care {
    padding: 40px 0 60px;
  }
}
@media (max-width: 400px) {
  .features .content .features_list {
    gap: 10px;
  }
  .features .content .features_list img {
    border-radius: 12px;
  }
}