*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #fafafa;
}

html {
  scroll-behavior: smooth;
}

header {
  position: fixed;
  display: flex;
  width: 100%;
  height: 10vh;
  z-index: 9999;
}

header .navbar {
  background: linear-gradient(90deg, #4b5563, #374151);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
}

header .navbar .navbar-logo {
  width: 30%;
}

header .navbar .navbar-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

header .navbar .navbar-nav a {
  color: #f9fafb;
  font-size: 1.1rem;
  font-weight: 500;
  display: inline-block;
  margin: 0 1rem;
  transition: color 0.3s ease;
}

header .navbar .navbar-nav a::after {
  content: "";
  display: block;
  padding-bottom: 0.5rem;
  border-bottom: 0.1rem solid #f97316;
  transform: scaleX(0);
  transition: 0.2s linear;
}

header .navbar .navbar-nav a:hover:after {
  transform: scaleX(1);
}

header .navbar .navbar-nav a:hover {
  color: #f97316;
}

.navbar .navbar-extra a {
  color: #fff;
  margin: 0 0.5rem;
}

#humberger-menu {
  display: none;
}

/* Hero Section Start*/
.qrcode {
  position: fixed;
  display: flex;
  flex-direction: column;
  z-index: 9999;
  right: 0;
  top: 10vh;
  margin-top: 0.3rem;
  margin-right: 0.3rem;
  width: 10%;
  gap: 0.2rem;
}
.qrcode img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.qrcode a {
  background: linear-gradient(135deg, #ff7e5f, #feb47b);
  text-align: center;
  text-decoration: none;
  color: white;
  font-size: 0.8rem;
  font-weight: bold;
  padding: 12px 24px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.hero {
  width: 100%;
  min-height: 90vh;
  top: 10vh;
  background: url(../public/images/hero.jpg) no-repeat center center/cover;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

/* .hero .hero-video {
  position: absolute;
  width: 100%;
  height: 100%;
}

.hero .hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.2) 35%,
    rgba(0, 0, 0, 0.25) 100%
  );
  z-index: 1;
}

.hero .content {
  position: relative;
  z-index: 2;
  margin-left: 7%;
  max-width: 700px;
  animation: fadeInUp 1.2s ease forwards;
}

.hero .content h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
}

.hero .content p {
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 300;
  opacity: 0.95;
  max-width: 85%;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Section End */

/* About Section Start */
.about {
  display: flex;
  flex-direction: column;
  margin-top: 10vh;
  overflow: hidden;
  padding: 6rem 10% 0;
}

.about > h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

.about > h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #f97316;
  margin: 1rem auto 0;
  border-radius: 2px;
}

.about .row {
  display: flex;
  align-items: center;
  gap: 2rem;
  /* height: auto; */
}

.about .row .about-img {
  flex: 1;
}

.about .row .about-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.about .row .about-img img:hover {
  transform: scale(1.03);
}

.about .row .content {
  flex: 1;
}

.about .row .content h2 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.about .row .content p {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.7;
  font-weight: 300;
  text-align: justify;
}

/* About Section End */

/* Highlight Section Start */
.highlight {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding: 6rem 10% 0;
}

.highlight > h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

.highlight .row {
  display: flex;
  gap: 3rem;
  height: 60vh;
}

.highlight .row .left,
.highlight .row .right {
  flex: 1;
  display: flex;
  justify-content: space-around;
  flex-direction: column;
}

.highlight .row .left .box .box-img,
.highlight .row .right .box .box-img {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}
.highlight .row .left .box .box-img img,
.highlight .row .right .box .box-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.highlight .row .left .box p,
.highlight .row .right .box p {
  color: #666;
  margin-top: 1rem;
  font-size: 1rem;
}

.highlight .row .center {
  flex: 1;
  background: url(../public/images/about2.png) no-repeat center center/cover;
  display: block;
}
/* Highlight Section End */

/* Product Section Start */

.product {
  margin-top: 10vh;
  /* height: auto; */
  display: flex;
  flex-direction: column;
  padding: 6rem 10% 0;
  /* scroll-margin-top: 100px; */
}

.product > h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.product .main-swiper {
  width: 100%;
}

.product .main-swiper .swiper-wrapper .swiper-slide {
  display: grid;
  grid-template-columns: 2fr 3fr 1fr;
  grid-template-rows: 1fr 2fr 2fr;
  grid-template-areas:
    "title slide-img-1 slide-img-2"
    "specs slide-img-1 slide-img-2"
    "specs slide-img-1 slide-img-2";
  gap: 1rem;
  padding: 5rem;
  cursor: pointer;
  background-color: #fff;
  border-radius: 10px;
}

.product .main-swiper .swiper-wrapper .swiper-slide .title {
  grid-area: title;
}

.product .main-swiper .swiper-wrapper .swiper-slide .title h2 {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, #b8860b, #f1c40f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.5px;
}

.product .main-swiper .swiper-wrapper .swiper-slide .title h4 {
  font-size: 1rem;
  font-weight: 500;
  color: #555;
  margin: 6px 0 0;
  letter-spacing: 0.8px;
  font-style: italic;
}

.product .main-swiper .swiper-wrapper .swiper-slide .specs {
  grid-area: specs;
  border-collapse: collapse;
}

.product .main-swiper .swiper-wrapper .swiper-slide .specs tr {
  border-bottom: 1px solid #eee;
  transition: background 0.3s ease;
}

.product .main-swiper .swiper-wrapper .swiper-slide .specs td {
  color: #666;
  padding-top: 2rem;
  padding-right: 1rem;
  font-size: 1rem;
}

.product .main-swiper .swiper-wrapper .swiper-slide .specs td:first-child {
  font-weight: bold;
  width: 100px;
  color: #000;
}

.product .main-swiper .swiper-wrapper .swiper-slide .specs td span {
  display: inline-block;
  font-size: 1rem;
  font-weight: bold;
  color: #2c2c2c;
  background: linear-gradient(135deg, #f9d423, #ffb347);
  padding: 10px 18px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  font-family: "Poppins", sans-serif;
}

.product .main-swiper .swiper-wrapper .swiper-slide .slide-img-1 {
  grid-area: slide-img-1;
}
.product .main-swiper .swiper-wrapper .swiper-slide .slide-img-2 {
  grid-area: slide-img-2;
}
.product .main-swiper .swiper-wrapper .swiper-slide a img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* transition: transform 0.4s ease; */
}

/* .product .main-swiper .swiper-wrapper .swiper-slide img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
} */

.product .main-swiper .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  color: #000;
  opacity: 1;
  background: rgba(0, 0, 0, 0.2);
}

.product .main-swiper .swiper-pagination-bullet-active {
  color: #fff;
  background: #007aff;
}

.product .main-swiper .swiper-button-next,
.product .main-swiper .swiper-button-prev {
  width: 40px;
  height: 40px;
  background-color: brown;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
}

.product .main-swiper .swiper-button-next::after,
.product .main-swiper .swiper-button-prev::after {
  font-size: 16px;
  color: white;
  font-weight: bold;
}
/* Product Section End */

/* Certification Section Start */
.certification {
  margin-top: 10vh;
  height: auto;
  padding: 6rem 10% 0;
}

.certification h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}

.certification .row .ct-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
}

.certification .row .ct-row .cert-img {
  width: 180px;
  height: 180px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certification .row .ct-row .cert-img:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.certification .row .ct-row .cert-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
/* Certification Section End */

/* Footer Section Start*/
footer {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: #f8f8f8;
  color: #333;
  font-family: "Inter", sans-serif;
  margin-top: 6rem;
  padding-top: 3rem;
  margin-top: 10vh;
  height: auto;
}

footer .contact {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 3rem;
  padding: 0 7%;
  font-size: 0.95rem;
  line-height: 1.6;
}

footer .contact > div {
  flex: 1 1 250px;
  min-width: 220px;
}

footer .contact h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 1rem;
}

footer .contact p,
footer .contact a {
  font-size: 0.95rem;
  color: #444;
  text-decoration: none;
  transition: color 0.3s ease;
}
footer .contact a:hover {
  color: #007aff;
}

footer .credit {
  border-top: 1px solid #ddd;
  text-align: center;
  font-size: 0.95rem;
  color: #666;
  padding: 1.5rem 1rem;
  margin-top: 2rem;
}
/* Footer Section End */

/* Whatsapp Chat Start */
.wa-chat a {
  background: url(../public/images/wa.png) no-repeat center center/cover;
  width: 62px;
  height: 62px;
  position: fixed;
  right: 0;
  bottom: 0;
  margin: 1.3rem;
  z-index: 9999999990;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  /* animasi berdenyut */
  animation: pulse 1.8s infinite ease-in-out;
}

/* animasi pulse */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
/* Whatsapp Chat End */

/* Speech Bubble Chat Start */

.speech-bubble {
  position: fixed;
  background: linear-gradient(135deg, #ffffff, #f3f3f3);
  max-width: 220px;
  right: 0;
  bottom: 0;
  margin: 4rem;
  color: #333;
  padding: 14px 18px;
  border-radius: 16px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  font-size: 1rem;
  text-align: center;
  line-height: 1.5;
  z-index: 9999999990;

  /* animasi halus muncul */
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.speech-bubble::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border: 15px solid transparent;
  border-top-color: #f9f9f9;
  border-bottom: 0;
  border-right: 0;
  margin-bottom: -0.6rem;
  transform: rotate(-20deg);
}

.typing {
  border-right: 2px solid #666;
  white-space: nowrap;
  overflow: hidden;
  animation: blinkCursor 0.7s steps(1) infinite;
}

@keyframes blinkCursor {
  50% {
    border-color: transparent;
  }
}

/* Speech Bubble Chat End */

/* Responsive Breakpoints */

/* 
  ##Device = Desktops
  ##Screen = 1281px to 1440px large resolution desktops
*/

@media (min-width: 1281px) and (max-width: 1440px) {
  .about .row .content h2 {
    font-size: 2.8rem;
  }
  .about .row .content p {
    font-size: 1rem;
  }
  .product .main-swiper .swiper-wrapper .swiper-slide {
    padding: 3.5rem;
  }
}

/* 
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/

@media (min-width: 1025px) and (max-width: 1280px) {
  .about > h2,
  .highlight > h2,
  .product > h2,
  .certification h2 {
    font-size: 2rem;
  }
  .about .row .about-img {
    flex: 2;
  }
  .about .row .content h2 {
    font-size: 2rem;
  }
  .about .row .content p {
    font-size: 1rem;
  }
  .highlight .row .left .box p,
  .highlight .row .right .box p {
    font-size: 0.8rem;
  }

  .product .main-swiper .swiper-wrapper .swiper-slide {
    height: 70vh;
  }

  .product .main-swiper .swiper-wrapper .swiper-slide .specs td {
    padding-top: 1.5rem;
    padding-right: 0.3rem;
    font-size: 0.7rem;
  }

  .product .main-swiper .swiper-wrapper .swiper-slide .specs td span {
    font-size: 0.7rem;
  }
}

/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) {
  #humberger-menu {
    display: inline-block;
  }

  header .navbar .navbar-logo {
    width: 70%;
  }

  header .navbar .navbar-nav {
    position: absolute;
    top: 100%; /* nempel di bawah header */
    right: -100%; /* keluar layar */
    width: 50%;
    height: 100vh;

    /* Warna background elegan (semi transparan, nyatu dengan header gradient) */
    background: rgba(55, 65, 81, 0.95);
    backdrop-filter: blur(8px);

    /* Border dan shadow lembut */
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.3);

    /* Animasi halus */
    transition: right 0.3s ease-in-out;
  }
  header .navbar .navbar-nav.active {
    right: 0;
  }
  header .navbar .navbar-nav a {
    color: #f9fafb;
    display: block;
    margin: 1.5rem;
    padding: 0.5rem;
    /* font-size: 2rem; */
    width: fit-content; /* membuat container mengikuti lebar text*/
  }

  .navbar .navbar-nav a::after {
    transform-origin: 0 0; /* memulai pregerakan dari sebelah kiri*/
  }
  .hero {
    background-position: 75%;
  }
  .hero .content h1 {
    font-size: 3rem;
  }
  .about > h2,
  .highlight > h2,
  .product > h2,
  .certification h2 {
    font-size: 2rem;
  }

  .about .row {
    display: grid;
    grid-template-rows: 50% 50%;
    grid-template-columns: 1fr;
  }
  .about .row .content h2 {
    font-size: 3.2rem;
  }
  .about .row .content p {
    font-size: 1rem;
  }

  .highlight .row {
    height: auto;
    display: grid;
    grid-template-rows: 1fr 1.3fr 1fr;
    grid-template-columns: 1fr;
  }

  .product .main-swiper .swiper-wrapper .swiper-slide {
    grid-template-rows: 1fr 2.3fr 4fr;
    grid-template-areas:
      "title title title"
      "slide-img-1 slide-img-1 slide-img-2"
      "specs specs specs";
  }

  .product .main-swiper .swiper-button-next,
  .product .main-swiper .swiper-button-prev {
    margin-top: -25%;
  }

  .qrcode {
    display: none;
  }

  .wa-chat a {
    display: block;
  }

  .typing {
    white-space: normal;
  }
}

/* 
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  header .navbar .navbar-logo {
    width: 40%;
  }

  .about .row {
    display: flex;
  }
  .about > h2,
  .highlight > h2,
  .product > h2,
  .certification h2 {
    font-size: 2rem;
  }
  .about .row .about-img {
    flex: 2;
  }
  .about .row .content h2 {
    font-size: 2rem;
  }
  .about .row .content p {
    font-size: 0.8rem;
  }

  .highlight .row {
    display: flex;
  }
  .highlight,
  .product,
  .certification {
    margin-top: 0;
  }
  .product .main-swiper .swiper-wrapper .swiper-slide {
    grid-template-columns: 2.2fr 3fr 1.3fr;
    grid-template-rows: 1fr 3fr 1fr;
    grid-template-areas:
      "title slide-img-1 slide-img-2"
      "specs slide-img-1 slide-img-2"
      "specs slide-img-1 slide-img-2";
    height: 70vh;
  }
  .product .main-swiper .swiper-wrapper .swiper-slide .specs td {
    padding-top: 1.5rem;
    padding-right: 0.3rem;
    font-size: 0.7rem;
  }

  .product .main-swiper .swiper-wrapper .swiper-slide .specs td span {
    font-size: 0.7rem;
  }
  .product .main-swiper .swiper-button-next,
  .product .main-swiper .swiper-button-prev {
    margin-top: -10%;
  }

  .speech-bubble {
    font-size: 0.8rem;
  }
}

/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/

@media (min-width: 481px) and (max-width: 767px) {
  header .navbar .navbar-logo {
    width: 50%;
  }
  #humberger-menu {
    display: inline-block;
  }
  header .navbar .navbar-nav {
    position: absolute;
    top: 100%; /* nempel di bawah header */
    right: -100%; /* keluar layar */
    width: 50%;
    height: 100vh;

    /* Warna background elegan (semi transparan, nyatu dengan header gradient) */
    background: rgba(55, 65, 81, 0.95);
    backdrop-filter: blur(8px);

    /* Border dan shadow lembut */
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.3);

    /* Animasi halus */
    transition: right 0.3s ease-in-out;
  }
  header .navbar .navbar-nav.active {
    right: 0;
  }
  header .navbar .navbar-nav a {
    color: #f9fafb;
    display: block;
    margin: 1.5rem;
    padding: 0.5rem;
    /* font-size: 2rem; */
    width: fit-content; /* membuat container mengikuti lebar text*/
  }

  .navbar .navbar-nav a::after {
    transform-origin: 0 0; /* memulai pregerakan dari sebelah kiri*/
  }
  .hero {
    background-position: 90%;
  }
  .hero .content h1 {
    font-size: 2rem;
  }
  .hero .content p {
    font-size: 1rem;
  }
  .about > h2,
  .highlight > h2,
  .product > h2,
  .certification h2 {
    font-size: 1.8rem;
  }
  .about .row {
    display: grid;
    grid-template-rows: 50% 50%;
    grid-template-columns: 1fr;
  }
  .about .row .content h2 {
    font-size: 2.2rem;
  }
  .about .row .content p {
    font-size: 1rem;
  }
  .highlight .row {
    height: auto;
    display: grid;
    grid-template-rows: 1fr 1.3fr 1fr;
    grid-template-columns: 1fr;
  }

  .product .main-swiper {
    height: 130vh;
  }

  .product .main-swiper .swiper-wrapper .swiper-slide {
    grid-template-columns: auto;
    grid-template-rows: 8% 20% 20% auto;
    grid-template-areas:
      "title"
      "slide-img-1"
      "slide-img-2"
      "specs";
    padding: 3rem;
  }
  .product .main-swiper .swiper-wrapper .swiper-slide a:nth-child(4) img {
    object-fit: contain;
  }

  .product .main-swiper .swiper-wrapper .swiper-slide .specs {
    height: 50vh;
  }

  .product .main-swiper .swiper-wrapper .swiper-slide .specs td {
    padding-top: 1.5rem;
    padding-right: 0.3rem;
    font-size: 0.8rem;
  }

  .product .main-swiper .swiper-wrapper .swiper-slide .specs td span {
    font-size: 0.8rem;
  }

  .product .main-swiper .swiper-button-next,
  .product .main-swiper .swiper-button-prev {
    top: 40%;
    width: 25px;
    height: 25px;
  }

  .qrcode {
    display: none;
  }

  .wa-chat a {
    display: block;
  }

  .typing {
    white-space: normal;
  }
  .speech-bubble {
    font-size: 0.7rem;
    max-width: 150px;
  }
}

/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/

@media (min-width: 320px) and (max-width: 480px) {
  header .navbar .navbar-logo {
    width: auto;
  }
  #humberger-menu {
    display: inline-block;
  }
  header .navbar .navbar-nav {
    position: absolute;
    top: 100%; /* nempel di bawah header */
    right: -100%; /* keluar layar */
    width: 50%;
    height: 100vh;

    /* Warna background elegan (semi transparan, nyatu dengan header gradient) */
    background: rgba(55, 65, 81, 0.95);
    backdrop-filter: blur(8px);

    /* Border dan shadow lembut */
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.3);

    /* Animasi halus */
    transition: right 0.3s ease-in-out;
  }
  header .navbar .navbar-nav.active {
    right: 0;
  }
  header .navbar .navbar-nav a {
    color: #f9fafb;
    display: block;
    margin: 1.5rem;
    padding: 0.5rem;
    /* font-size: 2rem; */
    width: fit-content; /* membuat container mengikuti lebar text*/
  }

  .navbar .navbar-nav a::after {
    transform-origin: 0 0; /* memulai pregerakan dari sebelah kiri*/
  }
  .hero {
    background-position: 90%;
  }
  .hero .content h1 {
    font-size: 2rem;
  }
  .hero .content p {
    font-size: 1rem;
  }
  .about > h2,
  .highlight > h2,
  .product > h2,
  .certification h2 {
    font-size: 1.2rem;
  }
  .about .row {
    flex-direction: column;
  }
  .about .row .content h2 {
    font-size: 1.5rem;
  }
  .about .row .content p {
    font-size: 0.8rem;
  }
  .highlight .row {
    /* height: 150%; */
    height: auto;
    display: grid;
    grid-template-rows: 1fr 1.3fr 1fr;
    grid-template-columns: 1fr;
  }

  .highlight .row .left,
  .highlight .row .right {
    gap: 1rem;
  }

  .highlight .row .left .box h3,
  .highlight .row .right .box h3 {
    font-size: 0.9rem;
  }

  .highlight .row .left .box p,
  .highlight .row .right .box p {
    font-size: 0.8rem;
  }
  .product .main-swiper {
    height: 130vh;
  }

  .product .main-swiper .swiper-wrapper .swiper-slide {
    grid-template-columns: auto;
    grid-template-rows: 8% 20% 20% auto;
    grid-template-areas:
      "title"
      "slide-img-1"
      "slide-img-2"
      "specs";
    padding: 1.3rem;
  }
  .product .main-swiper .swiper-wrapper .swiper-slide a:nth-child(4) img {
    object-fit: contain;
  }

  .product .main-swiper .swiper-wrapper .swiper-slide .specs {
    height: 50vh;
  }

  .product .main-swiper .swiper-wrapper .swiper-slide .specs td {
    padding-top: 1.5rem;
    padding-right: 0.3rem;
    font-size: 0.9rem;
  }

  .product .main-swiper .swiper-wrapper .swiper-slide .specs td span {
    font-size: 0.9rem;
  }

  .product .main-swiper .swiper-button-next,
  .product .main-swiper .swiper-button-prev {
    top: 35%;
    width: 25px;
    height: 25px;
  }
  .qrcode {
    display: none;
  }

  .wa-chat a {
    display: block;
  }

  .typing {
    white-space: normal;
  }
  .speech-bubble {
    font-size: 0.7rem;
    max-width: 150px;
  }
}
