:root {
  --bg: #e9fffb;
  --bg-soft: #f4fffd;
  --dark: #042f2e;
  --dark2: #063f3b;
  --green: #14b8a6;
  --green2: #2dd4bf;
  --green3: #99f6e4;
  --gold: #f5c542;
  --text: #355452;
  --muted: #6b8582;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, .72);
  --border: rgba(20, 184, 166, .18);
  --shadow: 0 24px 70px rgba(20, 184, 166, .22);
  --shadow2: 0 30px 90px rgba(4, 47, 46, .18);
  --img: url("https://scontent.fhan14-2.fna.fbcdn.net/v/t39.30808-6/665938466_1715453116484875_3437873178713243634_n.jpg?_nc_cat=108&ccb=1-7&_nc_sid=833d8c&_nc_eui2=AeHZVvVuaMRMQMH_rJGMkh63bDrtkj4I1LhsOu2SPgjUuGzqzGabq-PRvxsyNHT0_ziLl6QHiqwE6FoZiE7Ljzk_&_nc_ohc=YEl--FZyADwQ7kNvwGto_EM&_nc_oc=Adr8c-8ZwrXhGMxail-UGqS73dif1WQyjY7TQxoPmCyTVHl9SnFw3vWj1JeQ5NhjUck&_nc_zt=23&_nc_ht=scontent.fhan14-2.fna&_nc_gid=FPF2tH39fPRVu6gq1On-vw&_nc_ss=7b2a8&oh=00_Af-xuyrHyOvGRrEAfI1AkPB_uTQEx2noXIRCiNAfIVbmYA&oe=6A2459D4");
}

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

html {
  width: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  width: 100%;
  min-width: 320px;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 5%, rgba(45, 212, 191, .36), transparent 28%),
    radial-gradient(circle at 92% 2%, rgba(245, 197, 66, .18), transparent 26%),
    linear-gradient(180deg, #f5fffd 0%, #ddfbf6 48%, #f6fffd 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(20, 184, 166, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 184, 166, .045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .9), transparent 80%);
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  width: 520px;
  height: 520px;
  right: -180px;
  top: 120px;
  z-index: -1;
  border-radius: 50%;
  background: rgba(20, 184, 166, .13);
  filter: blur(90px);
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* =========================
   HEADER
========================= */
.header {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(236, 255, 251, .78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(20, 184, 166, .18);
}

.header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  color: var(--dark);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: .3px;
}

.logo span {
  margin-top: 6px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: #0f4f4b;
  font-size: 14px;
  font-weight: 800;
}

.nav a {
  position: relative;
  padding: 8px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  transition: .3s;
}

.nav a:hover {
  color: var(--green);
}

.nav a:hover::after {
  width: 100%;
}

.header__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  color: #003c39;
  background: linear-gradient(135deg, var(--gold), #fff1a8);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 14px 36px rgba(245, 197, 66, .34);
  transition: .3s;
}

.header__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(245, 197, 66, .46);
}

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  padding: 82px 0 98px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  right: -120px;
  bottom: 0;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: rgba(20, 184, 166, .18);
  filter: blur(80px);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 58px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  padding: 9px 16px;
  border-radius: 999px;
  color: #04756e;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(20, 184, 166, .22);
  box-shadow: 0 12px 35px rgba(20, 184, 166, .12);
  font-size: 13px;
  font-weight: 900;
}

.eyebrow::before {
  content: "✦";
  color: var(--gold);
}

.hero h1 {
  max-width: 660px;
  margin-top: 24px;
  color: var(--dark);
  font-size: clamp(48px, 6vw, 80px);
  line-height: .96;
  letter-spacing: -3.5px;
}

.hero h1 span {
  color: var(--green);
  text-shadow: 0 14px 36px rgba(20, 184, 166, .24);
}

.hero p {
  max-width: 620px;
  margin-top: 22px;
  color: #426966;
  font-size: 18px;
  line-height: 1.8;
}

.hero__actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  min-height: 52px;
  padding: 0 25px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 14px;
  font-weight: 900;
  transition: .3s;
  border: 0;
  cursor: pointer;
}

.btn--main {
  color: #fff;
  background: linear-gradient(135deg, #0f766e, var(--green2));
  box-shadow: 0 18px 45px rgba(20, 184, 166, .35);
}

.btn--main:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(20, 184, 166, .45);
}

.btn--ghost {
  color: #064e49;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(20, 184, 166, .25);
  box-shadow: 0 14px 35px rgba(20, 184, 166, .09);
}

.btn--ghost:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 184, 166, .42);
}

.hero__stats {
  max-width: 620px;
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.stat {
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .76);
  border: 1px solid rgba(20, 184, 166, .18);
  box-shadow: 0 16px 45px rgba(20, 184, 166, .12);
}

.stat strong {
  display: block;
  color: var(--dark);
  font-size: 25px;
  line-height: 1;
  margin-bottom: 7px;
}

.stat small {
  color: #5d7775;
  font-size: 12px;
  font-weight: 800;
}

.hero__visual {
  position: relative;
  width: 100%;
}

.hero__image {
  width: 100%;
  min-height: 590px;
  border-radius: 44px;
  background-image:
    linear-gradient(180deg, rgba(4, 47, 46, .03), rgba(4, 47, 46, .38)),
    var(--img);
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, .78);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 24px -18px -24px 24px;
  z-index: -1;
  border-radius: 44px;
  background: linear-gradient(135deg, rgba(20, 184, 166, .35), rgba(245, 197, 66, .18));
  filter: blur(8px);
}

.hero__card {
  position: absolute;
  left: -28px;
  bottom: 38px;
  width: 250px;
  padding: 20px;
  border-radius: 28px;
  background: rgba(255, 255, 255, .84);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .8);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .12);
}

.hero__card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--dark);
  font-size: 20px;
}

.hero__card span {
  color: #51706d;
  font-size: 14px;
  line-height: 1.5;
}

/* =========================
   GENERAL SECTION
========================= */
.section {
  position: relative;
  padding: 88px 0;
}

.section__head {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.section__head span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section__head h2 {
  margin-top: 12px;
  color: var(--dark);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: -2.4px;
}

.section__head p {
  margin-top: 15px;
  color: #58726f;
  font-size: 17px;
  line-height: 1.7;
}

/* =========================
   PRODUCTS
========================= */
.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(20, 184, 166, .15);
  box-shadow: 0 20px 60px rgba(20, 184, 166, .14);
  transition: .35s ease;
}

.product:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 88px rgba(20, 184, 166, .24);
}

.product__img {
  position: relative;
  height: 315px;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.product__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 38%, rgba(4, 47, 46, .54)),
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, .18), transparent 30%);
}

.badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 8px 13px;
  border-radius: 999px;
  color: #04756e;
  background: rgba(255, 255, 255, .88);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 10px 25px rgba(4, 47, 46, .12);
}

.product__body {
  padding: 25px;
}

.product h3 {
  margin-bottom: 10px;
  color: var(--dark);
  font-size: 22px;
  line-height: 1.2;
}

.product p {
  color: #5f7775;
  font-size: 15px;
  line-height: 1.65;
}

.product__bottom {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.price {
  color: #0f766e;
  font-size: 22px;
  font-weight: 900;
}

.zalo {
  flex-shrink: 0;
  padding: 11px 15px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #0f766e, var(--green2));
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(20, 184, 166, .28);
  transition: .3s;
}

.zalo:hover {
  transform: translateY(-3px);
}

/* =========================
   ABOUT
========================= */
.about {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 46px;
  align-items: center;
  padding: 58px;
  border-radius: 48px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(45, 212, 191, .26), transparent 34%),
    linear-gradient(135deg, #022c2b, #064e49);
  box-shadow: 0 34px 100px rgba(4, 47, 46, .3);
}

.about::before {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  right: -90px;
  top: -90px;
  border-radius: 50%;
  background: rgba(45, 212, 191, .2);
  filter: blur(55px);
}

.about__img {
  position: relative;
  z-index: 2;
  height: 460px;
  border-radius: 34px;
  background-image:
    linear-gradient(180deg, transparent 55%, rgba(4, 47, 46, .45)),
    var(--img);
  background-size: cover;
  background-position: center;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .25);
}

.about h2 {
  position: relative;
  z-index: 2;
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -2.4px;
}

.about p {
  position: relative;
  z-index: 2;
  margin-bottom: 24px;
  color: #c9fffa;
  font-size: 16px;
  line-height: 1.8;
}

.about__list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
}

.about__item {
  padding: 16px 18px;
  border-radius: 20px;
  color: #ecfffd;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  font-weight: 800;
}

/* =========================
   BENEFITS
========================= */
.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.benefit {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(20, 184, 166, .16);
  box-shadow: 0 18px 50px rgba(20, 184, 166, .12);
  transition: .3s;
}

.benefit::before {
  content: "";
  position: absolute;
  right: -55px;
  top: -55px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(45, 212, 191, .16);
}

.benefit:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 76px rgba(20, 184, 166, .22);
}

.benefit__icon {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green2));
  box-shadow: 0 14px 34px rgba(20, 184, 166, .28);
  font-size: 24px;
}

.benefit h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 10px;
  color: var(--dark);
  font-size: 19px;
}

.benefit p {
  position: relative;
  z-index: 2;
  color: #5f7775;
  font-size: 14px;
  line-height: 1.6;
}

/* =========================
   PROCESS
========================= */
.processSection {
  position: relative;
}

.processGrid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.processGrid::before {
  content: "";
  position: absolute;
  top: 48px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green2), var(--gold), transparent);
  opacity: .68;
}

.processCard {
  position: relative;
  z-index: 2;
  min-height: 265px;
  padding: 30px 24px;
  border-radius: 32px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(20, 184, 166, .18);
  box-shadow: 0 20px 60px rgba(20, 184, 166, .13);
  overflow: hidden;
  transition: .35s;
}

.processCard::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -60px;
  top: -60px;
  border-radius: 50%;
  background: rgba(45, 212, 191, .18);
  filter: blur(8px);
}

.processCard:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 85px rgba(20, 184, 166, .24);
}

.processCard__num {
  position: relative;
  z-index: 2;
  width: 74px;
  height: 74px;
  margin-bottom: 26px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #0f766e, var(--green2));
  box-shadow: 0 16px 38px rgba(20, 184, 166, .35);
  font-size: 22px;
  font-weight: 900;
}

.processCard h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 12px;
  color: var(--dark);
  font-size: 21px;
}

.processCard p {
  position: relative;
  z-index: 2;
  color: #5f7775;
  font-size: 15px;
  line-height: 1.7;
}

/* =========================
   REVIEWS
========================= */
.reviewSection {
  position: relative;
}

.reviewGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.reviewCard {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(255, 255, 255, .68));
  border: 1px solid rgba(20, 184, 166, .18);
  box-shadow: 0 22px 65px rgba(20, 184, 166, .14);
  transition: .35s;
}

.reviewCard::before {
  content: "“";
  position: absolute;
  right: 20px;
  top: -2px;
  color: rgba(20, 184, 166, .12);
  font-family: Georgia, serif;
  font-size: 112px;
  line-height: 1;
}

.reviewCard:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 90px rgba(20, 184, 166, .24);
}

.reviewCard__top {
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.reviewCard__avatar {
  flex-shrink: 0;
  width: 62px;
  height: 62px;
  border-radius: 22px;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  border: 3px solid rgba(255, 255, 255, .9);
  box-shadow: 0 12px 30px rgba(20, 184, 166, .2);
}

.reviewCard h3 {
  margin-bottom: 5px;
  color: var(--dark);
  font-size: 19px;
}

.reviewCard span {
  color: #6b8582;
  font-size: 13px;
  font-weight: 800;
}

.reviewCard__stars {
  position: relative;
  z-index: 2;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 3px;
}

.reviewCard p {
  position: relative;
  z-index: 2;
  color: #557370;
  font-size: 15px;
  line-height: 1.75;
}

/* =========================
   CONTACT
========================= */
.contact {
  position: relative;
  overflow: hidden;
  padding: 66px;
  border-radius: 46px;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(4, 47, 46, .86), rgba(15, 118, 110, .74)),
    var(--img);
  background-size: cover;
  background-position: center;
  box-shadow: 0 28px 80px rgba(4, 47, 46, .28);
}

.contact::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, .18);
  pointer-events: none;
}

.contact h2 {
  position: relative;
  z-index: 2;
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -2.4px;
}

.contact p {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto 30px;
  color: #ddfffb;
  font-size: 17px;
  line-height: 1.7;
}

.contact__buttons {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* =========================
   FOOTER
========================= */
.footer {
  padding: 44px 0;
  color: #557370;
  text-align: center;
  font-weight: 800;
}

/* =========================
   FLOAT CONTACT
========================= */
.float-contact {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-contact a {
  min-width: 58px;
  height: 58px;
  padding: 0 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #0f766e, var(--green2));
  box-shadow: 0 16px 42px rgba(20, 184, 166, .42);
  font-size: 13px;
  font-weight: 900;
  transition: .3s;
}

.float-contact a:hover {
  transform: translateY(-4px);
}

/* =========================
   TABLET
========================= */
@media (max-width: 1100px) {
  .hero__grid {
    gap: 36px;
  }

  .products {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .processGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .processGrid::before {
    display: none;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 900px) {

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .header__inner {
    min-height: 68px;
    padding: 12px 0;
    gap: 10px;
  }

  .logo {
    max-width: 185px;
    font-size: 13px;
    line-height: 1.12;
  }

  .logo span {
    margin-top: 4px;
    font-size: 10px;
    line-height: 1.25;
  }

  .nav {
    display: none !important;
  }

  .header__btn {
    min-height: 38px;
    padding: 0 13px;
    font-size: 11px;
    white-space: nowrap;
  }

  .hero {
    padding: 36px 0 52px;
  }

  .hero::before {
    width: 240px;
    height: 240px;
    right: -90px;
    filter: blur(55px);
  }

  .hero__grid {
    grid-template-columns: 1fr !important;
    gap: 30px;
  }

  .eyebrow {
    padding: 8px 12px;
    font-size: 11px;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: 36px;
    line-height: 1.02;
    letter-spacing: -1.7px;
  }

  .hero p {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.65;
  }

  .hero__actions {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .btn {
    width: 100%;
    min-height: 48px;
    padding: 0 18px;
    font-size: 14px;
  }

  .hero__stats {
    margin-top: 26px;
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  .stat {
    padding: 16px;
    border-radius: 20px;
  }

  .stat strong {
    font-size: 22px;
  }

  .hero__image {
    min-height: 360px;
    border-radius: 28px;
  }

  .hero__visual::before {
    inset: 14px -8px -14px 14px;
    border-radius: 30px;
  }

  .hero__card {
    left: 12px;
    right: 12px;
    bottom: 14px;
    width: auto;
    padding: 16px;
    border-radius: 22px;
  }

  .hero__card strong {
    font-size: 17px;
  }

  .hero__card span {
    font-size: 13px;
  }

  .section {
    padding: 54px 0;
  }

  .section__head {
    margin-bottom: 30px;
  }

  .section__head span {
    font-size: 11px;
    letter-spacing: 1.4px;
  }

  .section__head h2 {
    font-size: 30px;
    line-height: 1.08;
    letter-spacing: -1.4px;
  }

  .section__head p {
    font-size: 14px;
    line-height: 1.65;
  }

  .products,
  .benefits,
  .processGrid,
  .reviewGrid {
    grid-template-columns: 1fr !important;
    gap: 18px;
  }

  .product {
    width: 100%;
    border-radius: 26px;
  }

  .product__img {
    height: 245px;
  }

  .product__body {
    padding: 18px;
  }

  .product h3 {
    font-size: 19px;
  }

  .product p {
    font-size: 14px;
  }

  .product__bottom {
    margin-top: 16px;
    gap: 10px;
  }

  .price {
    font-size: 19px;
  }

  .zalo {
    padding: 10px 13px;
    font-size: 12px;
  }

  .about {
    grid-template-columns: 1fr !important;
    gap: 24px;
    padding: 22px;
    border-radius: 30px;
  }

  .about__img {
    height: 300px;
    border-radius: 24px;
  }

  .about h2 {
    font-size: 30px;
    line-height: 1.08;
    letter-spacing: -1.4px;
  }

  .about p {
    font-size: 14px;
    line-height: 1.65;
  }

  .about__item {
    padding: 14px;
    font-size: 14px;
  }

  .benefit {
    padding: 22px;
    border-radius: 26px;
  }

  .processCard {
    min-height: auto;
    padding: 22px;
    border-radius: 26px;
  }

  .processCard__num {
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    border-radius: 18px;
    font-size: 18px;
  }

  .reviewCard {
    padding: 22px;
    border-radius: 26px;
  }

  .reviewCard__avatar {
    width: 54px;
    height: 54px;
    border-radius: 18px;
  }

  .contact {
    padding: 36px 18px;
    border-radius: 30px;
  }

  .contact::before {
    inset: 10px;
    border-radius: 24px;
  }

  .contact h2 {
    font-size: 31px;
    line-height: 1.08;
    letter-spacing: -1.4px;
  }

  .contact p {
    font-size: 14px;
  }

  .contact__buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer {
    padding: 34px 15px 120px;
    font-size: 13px;
    line-height: 1.6;
  }

  .float-contact {
    left: 15px;
    right: 15px;
    bottom: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .float-contact a {
    width: 100%;
    min-width: 0;
    height: 48px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 12px;
  }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 430px) {
  .hero h1 {
    font-size: 33px;
  }

  .section__head h2,
  .about h2,
  .contact h2 {
    font-size: 28px;
  }

  .hero__image {
    min-height: 330px;
  }

  .product__img {
    height: 225px;
  }

  .product__bottom {
    align-items: center;
  }
}