/* Homepage styles — Pure Biokeyz index */

.index-page {
  font-size: var(--text-base);
  line-height: var(--leading-body);
}

.index-page .section p,
.index-page .section li {
  line-height: var(--leading-body);
}

header a.homeNav {
  color: var(--primary);
}

button {
  cursor: pointer;
}

.buyNowBtn {
  background: var(--secondary);
  color: var(--white);
  border: 0;
  border-radius: 25px;
  padding: 2% 20%;
  font-size: var(--text-sm);
  transition: 0.5s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
}

.buyNowBtn:hover {
  background: var(--primary_light);
}

.buyNowBtn:active {
  background: var(--secondary);
}

.sendNowBtn {
  background: var(--secondary);
  color: var(--white);
  border: 0;
  border-radius: 25px;
  padding: 1% 20%;
  font-size: var(--text-sm);
  transition: 0.5s;
  width: 50%;
}

.sendNowBtn:hover {
  background: var(--primary_light);
}

.sendNowBtn:active {
  background: var(--secondary);
}

.floatSelection {
  position: fixed;
  z-index: 999;
  width: 100%;
  bottom: 3%;
}

.floatSelection .selection_div {
  border: 1px solid var(--primary_light);
  background-color: var(--primary_bg);
  border-radius: 15px;
  transition: 1.5s ease;
}

.floatSelection .selection_div .image_logo_div {
  max-width: 80px;
}

.floatSelection .selection_div .selectionButton {
  cursor: pointer;
  background: var(--primary_bg);
  color: var(--font_color);
  border: 0;
  outline: 0;
  border-radius: 8px;
  padding: 5px 20px;
  font-size: var(--text-sm);
  width: 145px;
}

.floatSelection .selection_div .selectionButton:hover {
  background: var(--primary);
  color: var(--white);
  outline: 0;
}

.floatSelection .selection_div .selectionButton.active {
  background: var(--primary);
  color: var(--white);
  outline: 0;
}

.floatSelection .sachets_img {
  width: 100px;
  opacity: 0;
  transition: opacity 2s ease, height 0.5s ease;
  height: 0;
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: var(--primary_bg);
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader .loader-logo {
  width: 110px;
  max-width: 30vw;
  margin-bottom: 18px;
}

.page-loader .loader-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-loader .loader-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--secondary_dark);
  animation: loadingPulse 1.1s infinite ease-in-out;
}

.page-loader .loader-dots span:nth-child(2) {
  animation-delay: 0.15s;
}

.page-loader .loader-dots span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes loadingPulse {
  0%, 80%, 100% {
    transform: scale(0.7);
    opacity: 0.4;
  }

  40% {
    transform: scale(1);
    opacity: 1;
  }
}

.section_1 {
  background: var(--primary_bg);
  height: 85svh;
  min-height: 480px;
  max-height: 760px;
  position: relative;
  overflow: hidden;
}

.section_1 .banner_img {
  width: 70%;
  position: absolute;
  bottom: 0;
  right: 0;
}

.section_1 .banner_img.bannerProduct {
  width: 37%;
  position: absolute;
  bottom: 13%;
  right: 10%;
  animation: moveUpDown 5s ease-in-out infinite;
}

@keyframes moveUpDown {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-40px);
  }
}

.section_1 .text-content {
  position: absolute;
  top: 36%;
  left: 0;
  padding: 0 15%;
}

.section_1 .text-content h3 {
  font-size: clamp(2.5rem, 6.5vw, 4rem);
  line-height: 1.1;
  color: var(--secondary);
  font-weight: 700;
}

.section_2 {
  background: var(--primary_bg);
}

.section_2 .selection_div {
  border: 1px solid var(--primary_light);
  background-color: var(--primary_bg);
  border-radius: 15px;
}

.section_2 .selection_div .image_logo_div {
  max-width: 80px;
}

.section_2 .selection_div .selectionButton {
  background: var(--primary_bg);
  color: var(--font_color);
  border: 0;
  outline: 0;
  border-radius: 8px;
  padding: 5px 20px;
  font-size: var(--text-sm);
  transition: 0.5s;
  width: fit-content;
}

.section_2 .selection_div .selectionButton:hover {
  background: var(--primary);
  color: var(--white);
  outline: 0;
}

.section_2 .selection_div .selectionButton.active {
  background: var(--primary);
  color: var(--white);
  outline: 0;
}

.section_2 .premiumAsp,
.section_2 .pure45 {
  position: relative;
  padding-top: 2%;
}

.section_2 .premiumAsp img,
.section_2 .pure45 img {
  width: 70%;
}

.section_2 .premiumAsp h2,
.section_2 .pure45 h2 {
  font-size: var(--heading-subsection);
  color: var(--font_color);
}

.section_2 .premiumAsp p,
.section_2 .pure45 p {
  font-size: var(--text-base);
  color: var(--secondary);
  font-weight: 500;
}

.section_2 .pure45 {
  display: none;
}

.grid {
  display: flex;
  margin: -10px;
}

.grid-item {
  width: calc(50% - 20px);
  margin: 10px;
}

@media (max-width: 600px) {
  .grid-item {
    width: calc(100% - 20px);
  }
}

.section_3 .bento,
.section_4 .bento {
  border-radius: 25px;
  transition: 0.5s;
}

.section_3 .bento:hover,
.section_4 .bento:hover {
  transform: scale(1.03);
}

.section_3 .bento-content,
.section_4 .bento-content {
  border-radius: 25px;
}

.section_3 .bento-1 .bento-content {
  background-image: url("/Images/home/asp/Group 496.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
}

.section_3 .bento-1 .card {
  background: transparent;
  border: 0;
}

.section_3 .bento-1 .card img {
  padding-top: 20%;
  width: 100%;
}

.section_3 .bento-1 .card .card-body {
  background: var(--primary);
  color: var(--white);
  padding: 1rem;
  border-radius: 0 0 25px 25px;
}

.section_3 .bento-1 .card .card-body h3 {
  font-size: var(--text-lg);
}

.section_3 .bento-1 .card .card-body p {
  font-size: var(--text-sm);
}

.section_3 .bento-2 .bento-content {
  background-image: url("/Images/home/asp/sand.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  color: var(--white);
}

.section_3 .bento-2 h3 {
  font-size: var(--text-lg);
  color: var(--white);
}

.section_3 .bento-3 img {
  width: 100%;
  object-fit: cover;
  border-radius: 25px;
}

.section_3 .bento-4 h3 {
  font-size: var(--heading-section);
  font-weight: bolder;
  color: var(--primary_light);
}

.section_3 .bento-4 h6 {
  font-size: var(--text-sm);
  color: var(--primary_light);
}

.section_3 .bento-4 p {
  font-size: var(--text-sm);
  color: var(--primary_light);
}

.section_3 .bento-5 video,
.section_3 .bento-6 video,
.section_3 .bento-8 video,
.section_3 .bento-12 video {
  border-radius: 25px;
}

.section_3 .bento-7 .titleDiv {
  background: var(--secondary_dark);
  color: var(--white);
  border-radius: 25px 25px 0 0;
}

.section_3 .bento-7.bento {
  background: var(--primary_bg);
}

.section_3 .bento-7 .contentDiv .card {
  background: none;
}

.section_3 .bento-7 .contentDiv h5 {
  font-size: var(--text-lg);
  color: var(--secondary_dark);
}

.section_3 .bento-7 .contentDiv .bullet-point {
  color: var(--secondary_dark);
  font-size: 1.25rem;
}

.section_3 .bento-7 .contentDiv .card-text {
  font-size: var(--text-sm);
}

.section_3 .bento-9.bento {
  border-radius: 25px;
  background: linear-gradient(180deg, var(--secondary) 0%, var(--primary) 100%);
  color: var(--white);
}

.section_3 .bento-10 {
  background: linear-gradient(45deg, var(--primary_bg) 0%, var(--white) 55%, var(--primary_bg) 61%, var(--white) 75%, var(--primary_bg) 100%);
}

.section_3 .bento-10 .row div {
  border-radius: 25px;
  color: var(--font_color);
}

.section_3 .bento-10 h4 {
  font-size: var(--heading-section);
}

.section_3 .bento-10 p {
  font-size: var(--text-base);
}

.section_3 .bento-11 {
  background: var(--primary_bg);
}

.section_3 .bento-11 .spacing {
  height: 200px;
  background: var(--white);
}

.section_3 .bento-11 .content {
  background-image: url("/Images/home/asp/bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  border-radius: 25px;
  padding: 250px 0 50px;
}

.section_3 .bento-11 .icon img {
  width: 50px;
}

.section_3 .bento-11 .productImg {
  position: absolute;
  top: 0;
  right: 0;
}

.section_3 .bento-11 h2 {
  font-size: var(--heading-section);
}

.section_3 .bento-11 h4,
.section_3 .bento-11 li {
  font-size: var(--text-base);
}

.section_3 .bento-13 h3 {
  font-size: var(--heading-section);
  font-weight: bolder;
  color: var(--primary_light);
}

.section_3 .bento-13 h6,
.section_3 .bento-13 p {
  font-size: var(--text-sm);
  color: var(--primary_light);
}

.section_3 .bento-14 .bg-img {
  border-radius: 25px;
}

.section_3 .bento-14 .contentDiv {
  background: color-mix(in srgb, var(--white) 70%, transparent);
  position: absolute;
  bottom: 0;
  border-radius: 25px;
  margin: 5%;
}

.section_3 .bento-14 .contentDiv .step-text {
  font-weight: bold;
  margin-top: 10px;
  font-size: var(--text-sm);
  color: var(--font_color);
}

.section_3 .bento-14 .contentDiv p,
.section_3 .bento-14 .contentDiv h5 {
  font-size: var(--text-sm);
  color: var(--font_color);
}

.section_3 .bento-14 .contentDiv img {
  width: 60%;
}

.section_4 {
  display: none;
}

.section_4 .card {
  border-radius: 25px;
  border: 0;
}

.section_4 .bento-1 .bento-content .card {
  background-image: url("/Images/home/pure45/background_1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
}

.section_4 .bento-1 .card .card-body {
  padding-bottom: 30%;
}

.section_4 .bento-1 .bento-content .card .half-circle {
  position: absolute;
  bottom: 0;
  right: 0;
}

.section_4 .bento-1 .bento-content .card .text-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 5% 12%;
  color: var(--white);
  font-weight: bold;
  font-size: var(--text-lg);
}

.section_4 .bento-2 .text-content {
  position: absolute;
  top: 0;
  text-align: center;
  padding: 2rem;
  color: var(--white);
}

.section_4 .bento-2 .text-content p {
  font-size: var(--text-lg);
}

.section_4 .bento-2 .text-content h3 {
  font-size: var(--text-lg);
  font-weight: bolder;
}

.section_4 .bento-3 h3 {
  font-size: var(--heading-section);
  font-weight: bolder;
  color: var(--primary_green);
}

.section_4 .bento-3 p {
  font-size: var(--text-sm);
  color: var(--secondary_gree);
}

.section_4 .bento-4 video,
.section_4 .bento-12 video {
  border-radius: 25px;
}

.section_4 .bento-6 .card {
  background: var(--primary_green);
  border: 0;
}

.section_4 .bento-6 .card img {
  border-radius: 25px 25px 0 0;
}

.section_4 .bento-6 .card .card-body {
  background: var(--primary_green);
  color: var(--white);
  padding: 2rem;
  border-radius: 0 0 25px 25px;
}

.section_4 .bento-6 .card .card-body h3 {
  font-size: var(--text-lg);
}

.section_4 .bento-7 .titleDiv {
  background: var(--light_green);
  color: var(--white);
  border-radius: 25px 25px 0 0;
  padding: 3rem;
}

.section_4 .bento-7 .titleDiv h3 {
  font-size: var(--heading-section);
}

.section_4 .bento-7 .titleDiv p {
  font-size: var(--text-base);
  text-align: left;
}

.section_4 .bento-7.bento {
  background: var(--primary_bg);
}

.section_4 .bento-7 .contentDiv {
  padding: 3rem;
}

.section_4 .bento-7 .contentDiv .card {
  background: none;
}

.section_4 .bento-7 .contentDiv h5 {
  font-size: var(--text-lg);
  color: var(--secondary_dark);
}

.section_4 .bento-7 .contentDiv .bullet-point {
  color: var(--secondary_dark);
  font-size: 1.25rem;
}

.section_4 .bento-7 .contentDiv .card-text {
  font-size: var(--text-sm);
}

.section_4 .bento-8 .titleContainer {
  border-radius: 25px;
  background: var(--primary_green);
  color: var(--white);
  padding: 0.4rem 1rem;
}

.section_4 .bento-8 h3 {
  font-size: var(--text-lg);
}

.section_4 .bento-8 ion-icon {
  font-size: var(--text-lg);
}

.section_4 .bento-8 p {
  text-align: left;
}

.section_4 .bento-9 p {
  position: absolute;
  color: var(--dark_green);
}

.section_4 .bento-9 img {
  border-radius: 25px;
}

.section_4 .bento-9 .text-1 {
  top: 15%;
  left: 10%;
  max-width: 22%;
}

.section_4 .bento-9 .text-2 {
  top: 11%;
  left: 36%;
  max-width: 23%;
}

.section_4 .bento-9 .text-3 {
  top: 17%;
  left: 60%;
  max-width: 25%;
}

.section_4 .bento-9 .text-4 {
  top: 30%;
  left: 75%;
}

.section_4 .bento-9 .text-5 {
  top: 45%;
  left: 85%;
}

.section_4 .bento-10.bento {
  background: var(--dark_green);
}

.section_4 .bento-10 .contentDiv {
  padding: 5rem 3rem;
}

.section_4 .bento-10 .contentDiv hr {
  border: 1px solid var(--white);
}

.section_4 .bento-10 .contentDiv h3 {
  font-size: var(--heading-section);
  color: var(--white);
}

.section_4 .bento-10 .contentDiv .card {
  background: none;
}

.section_4 .bento-10 .contentDiv h5 {
  font-size: var(--text-base);
  color: var(--white);
}

.section_4 .bento-10 .contentDiv .bullet-point {
  color: var(--secondary_dark);
  font-size: 1.25rem;
}

.section_4 .bento-10 .contentDiv ul {
  list-style: none;
  padding-left: 0;
}

.section_4 .bento-10 .contentDiv ul li {
  position: relative;
  padding-left: 2rem;
}

.section_4 .bento-10 .contentDiv ul li::before {
  content: "";
  position: absolute;
  left: -0.5rem;
  top: 0;
  width: 2rem;
  height: 2rem;
  background-image: url("/Images/home/pure45/tick.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.section_4 .bento-11 {
  background-color: color-mix(in srgb, var(--light_green) 25%, var(--primary_bg));
  color: var(--dark_green);
}

.section_4 .bento-11 .bento-content .row {
  padding: 2rem;
}

.section_4 .bento-11 .bento-content h2 {
  font-size: var(--heading-section);
}

.section_4 .bento-11 .bento-content h4 {
  font-size: 1.25rem;
}

.section_4 .bento-11 .bento-content p {
  font-size: var(--text-sm);
}

.section_4 .bento-11 img {
  scale: 0.8;
}

.section_4 .bento-15 {
  background: var(--primary_bg);
}

.section_4 .bento-15 .spacing {
  height: 200px;
  background: var(--white);
}

.section_4 .bento-15 .content {
  background: var(--primary_green);
  height: 100%;
  width: 100%;
  border-radius: 25px;
  padding: 130px 0 50px;
}

.section_4 .bento-15 .icon img {
  width: 50px;
}

.section_4 .bento-15 .productImg {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 60%;
}

.section_4 .bento-15 h2 {
  font-size: var(--heading-section);
}

.section_4 .bento-15 h4,
.section_4 .bento-15 li {
  font-size: var(--text-base);
  color: var(--white);
}

.section_4 .bento-13 img {
  border-radius: 25px;
}

.section_4 .bento-13 p {
  font-size: var(--text-lg);
  position: absolute;
  bottom: 5%;
  padding: 0 1.5rem;
}

.section_4 .bento-13 .light {
  color: var(--primary_green);
}

.section_4 .bento-13 .dark {
  color: var(--white);
}

.section_4 .bento-14 .top-content {
  position: absolute;
  top: 7%;
}

.section_4 .bento-14 .bottom-content {
  position: absolute;
  bottom: 0;
  color: var(--white);
}

.section_4 .bento-14 h3 {
  font-size: var(--heading-subsection);
  font-weight: bolder;
  color: var(--white);
}

.section_4 .bento-14 h4 {
  font-size: var(--text-lg);
  padding: 0 3rem;
  color: var(--white);
}

.section_4 .bento-14 .bottom-content img {
  width: 40%;
}

.section_4 .bento-14 .bottom-content .row {
  padding: 0 2rem;
}

.section_4 .bento-16 {
  background: color-mix(in srgb, var(--light_green) 25%, var(--primary_bg));
}

.section_4 .bento-16 .spacing {
  padding: 5rem 2rem;
}

.section_4 .bento-16 h1 {
  font-size: var(--heading-subsection);
  font-weight: bolder;
  color: var(--dark_green);
}

.section_4 .bento-16 h3,
.section_4 .bento-16 p {
  font-size: var(--text-lg);
  color: var(--secondary_gree);
}

.section_4 .bento-16 p {
  padding: 0 2rem;
}

.section_4 .bento-16 .white-bg {
  background: var(--white);
  padding: 1rem 2.5rem;
  margin: 1rem 0;
  border-radius: 15px;
}

.section_5 .cert-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.cert-item {
  flex: 0 1 calc(14.28% - 20px);
  display: flex;
  justify-content: center;
}

.section_5 img {
  width: 60%;
  max-width: 100%;
  transition: 0.5s;
}

.cert-item:hover img {
  transform: scale(1.1);
}

.section_6 h1 {
  font-size: var(--heading-section);
  font-weight: bolder;
}

.section_6 .productContainer {
  border-radius: 25px;
  transition: 0.5s;
}

.section_6 .productContainer:hover {
  transform: scale(1.03);
}

.section_6 .productContainer .textContent {
  background: var(--primary_bg);
  padding-top: 70px;
  border-radius: 0 0 25px 25px;
}

.section_6 .productContainer .productImg {
  margin-top: 50px;
  margin-bottom: -50px;
}

.section_6 .productContainer h2 {
  font-size: var(--heading-section);
  font-weight: bolder;
  min-height: 100px;
}

.section_6 .productContainer h5 {
  font-size: var(--text-lg);
}

.section_6 .productContainer .h5-1 {
  min-height: 45px;
}

.section_6 .productContainer .h5-2 {
  min-height: 55px;
}

.section_6 .productContainer ul {
  min-height: 300px;
}

.section_6 .productContainer li {
  font-size: var(--text-sm);
}

.section_7 .text-content {
  top: 0;
}

.section_7 .text-content h1 {
  font-size: var(--heading-hero);
  color: var(--white);
  font-weight: bolder;
}

.section_8 {
  background: var(--primary_light);
}

.section_8 h1 {
  font-size: var(--heading-section);
  color: var(--white);
  font-weight: bolder;
}

.section_8 .infinite-loop-section {
  overflow: hidden;
  padding: 1rem 0;
  position: relative;
}

.section_8 .loop-container {
  display: flex;
  align-items: stretch;
  gap: 1.25rem;
  width: max-content;
  padding: 0.5rem 0;
  animation: scroll-left 40s linear infinite;
  animation-play-state: running;
}

.section_8 .testimonial-box {
  cursor: default;
  flex: 0 0 auto;
  width: min(360px, 82vw);
  min-height: 176px;
  padding: 1.35rem 1.5rem 1.15rem;
  margin: 0;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(32, 51, 74, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.section_8 .testimonial-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(32, 51, 74, 0.14);
}

.section_8 .testimonial-box__content {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr auto;
  gap: 0.35rem 0.75rem;
  width: 100%;
  height: 100%;
}

.section_8 .testimonial-box__content::before {
  content: "\201C";
  grid-column: 1 / -1;
  grid-row: 1;
  font-size: 2.25rem;
  line-height: 1;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.35;
}

.section_8 .testimonial-box p.text-content {
  grid-column: 1 / -1;
  grid-row: 2;
  margin: 0;
  padding: 0;
  font-size: var(--text-sm);
  line-height: 1.65;
  color: var(--font_color);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.section_8 .testimonial-box br {
  display: none;
}

.section_8 .testimonial-box strong {
  grid-column: 1;
  grid-row: 3;
  align-self: end;
  margin: 0.65rem 0 0;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--secondary_dark);
  text-align: left;
}

.section_8 .testimonial-box strong::before {
  content: "— ";
  color: var(--secondary);
  font-weight: 500;
}

.section_8 .read-more {
  grid-column: 2;
  grid-row: 3;
  align-self: end;
  justify-self: end;
  margin: 0.65rem 0 0;
  padding: 0.35rem 0.75rem;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--secondary_dark);
  background: rgba(98, 172, 169, 0.12);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.section_8 .read-more:hover {
  color: var(--white);
  background: var(--primary);
  text-decoration: none;
}

/* Testimonial modal */
.testimonial-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(32, 51, 74, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.testimonial-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.testimonial-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 1101;
  display: flex;
  flex-direction: column;
  width: calc(100% - 2rem);
  max-width: 560px;
  max-height: min(80vh, 640px);
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(32, 51, 74, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -48%) scale(0.96);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.testimonial-modal.is-open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.testimonial-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid rgba(70, 104, 105, 0.12);
}

.testimonial-modal__eyebrow {
  margin: 0 0 0.35rem;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--secondary);
}

.testimonial-modal__title {
  margin: 0;
  font-size: var(--text-lg);
  font-weight: 700;
  line-height: 1.35;
  color: var(--secondary_dark);
}

.testimonial-modal__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  font-size: 1.35rem;
  color: var(--secondary);
  background: rgba(98, 172, 169, 0.1);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.testimonial-modal__close:hover {
  color: var(--secondary_dark);
  background: rgba(98, 172, 169, 0.2);
}

.testimonial-modal__body {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem 1.5rem;
}

.testimonial-modal__quote {
  margin: 0;
  font-size: var(--text-base);
  line-height: var(--leading-body);
  color: var(--font_color);
  white-space: pre-wrap;
}

.testimonial-modal__footer {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(70, 104, 105, 0.12);
}

.testimonial-modal__note {
  margin: 0;
  font-size: var(--text-xs);
  line-height: 1.5;
  color: var(--secondary);
}

.testimonial-modal__btn {
  align-self: flex-end;
  padding: 0.65rem 1.35rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--white);
  background: var(--secondary);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.testimonial-modal__btn:hover {
  background: var(--primary);
}

@media (max-width: 600px) {
  .testimonial-modal {
    max-height: 85vh;
  }

  .testimonial-modal__header,
  .testimonial-modal__body,
  .testimonial-modal__footer {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.section_9 {
  background: var(--primary_bg);
}

.index-faq__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 4rem 1.25rem;
}

.index-faq__hero {
  text-align: center;
  margin-bottom: 2.5rem;
}

.index-faq__eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.35rem 1rem;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--secondary);
  background: rgba(98, 172, 169, 0.12);
  border-radius: 999px;
}

.index-faq__title {
  margin: 0 0 0.75rem;
  font-size: var(--heading-section);
  font-weight: 700;
  line-height: 1.2;
  color: var(--secondary_dark);
}

.index-faq__lead {
  margin: 0 auto;
  max-width: 32rem;
  font-size: var(--text-base);
  line-height: var(--leading-body);
  color: var(--secondary);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(32, 51, 74, 0.06);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 24px rgba(32, 51, 74, 0.1);
}

.faq-item__panel {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: left;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.faq-item__panel:focus {
  outline: none;
  box-shadow: inset 0 0 0 2px rgba(98, 172, 169, 0.35);
}

.faq-item__trigger {
  width: 100%;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  gap: 1rem;
}

.faq-item__question {
  flex: 1;
  margin: 0;
  font-size: var(--text-base);
  font-weight: 600;
  line-height: 1.45;
  color: var(--secondary_dark);
  white-space: normal;
  text-align: left;
}

.faq-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  color: var(--secondary_dark);
  background: rgba(98, 172, 169, 0.12);
  border-radius: 50%;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.faq-item__icon::before {
  content: "+";
}

.faq-item__panel[aria-expanded="true"] .faq-item__icon {
  transform: rotate(45deg);
  color: var(--white);
  background: var(--primary);
}

.faq-item__answer {
  padding: 0 1.25rem 1.15rem;
  font-size: var(--text-sm);
  line-height: var(--leading-body);
  color: var(--font_color);
  white-space: normal;
}

.faq-item__panel.btn {
  color: inherit;
}

.section_9 .QnA_text {
  white-space: normal;
}

.section_9 .card-body {
  border-bottom: 0;
}

.section_9 .QnA_title {
  font-weight: inherit;
  font-size: inherit;
}

.section_10 {
  background: var(--primary_bg);
}

.index-contact {
  padding: 4rem 1.25rem;
}

.index-contact__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.index-contact .contact-hero {
  margin-bottom: 2.5rem;
}

.index-contact .contact-hero__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

@media (max-width: 768px) {
  .index-contact {
    padding: 3rem 1rem;
  }
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .section_1 {
    height: 78svh;
    min-height: 420px;
    max-height: none;
  }

  .section_1 .banner_img {
    width: 100%;
  }

  .section_1 .banner_img.bannerProduct {
    width: 80%;
    bottom: 3%;
    right: 7%;
  }

  .section_1 .text-content {
    top: 25%;
  }

  .section_1 .text-content h3 {
    font-size: clamp(2.25rem, 9vw, 3.5rem);
    position: absolute;
    left: 10%;
    width: max-content;
  }

  .section_3 .bento-7.bento .row .p-3 {
    padding: 0.5rem 1rem !important;
  }

  .section_3 .bento-11 .spacing {
    height: 150px;
  }

  .section_3 .bento-10 h4 {
    font-size: var(--text-lg);
  }

  .section_3 .bento-11 h2 {
    font-size: var(--heading-subsection);
  }

  .section_3 .bento-11 .content .row {
    padding: 0 !important;
  }

  .section_4 .bento-1 .bento-content .card .text-content {
    font-size: var(--text-sm);
  }

  .section_4 .bento-2 .text-content p {
    font-size: var(--text-base);
  }

  .section_4 .bento-15 .spacing {
    height: 120px;
  }

  .section_4 .bento-6 .card .card-body h3 {
    font-size: var(--text-sm);
  }

  .section_4 .bento-7 .titleDiv p {
    font-size: var(--text-sm);
  }

  .section_4 .bento-9 p {
    font-size: var(--text-sm);
  }

  .section_4 .bento-10 .contentDiv {
    padding: 1rem 3rem;
  }

  .section_4 .bento-14 h3 {
    font-size: var(--text-lg);
  }

  .section_4 .bento-14 h4,
  .section_4 .bento-14 p {
    font-size: var(--text-sm);
  }

  .section_4 .bento-13 p {
    font-size: var(--text-sm);
  }

  .section_4 .bento-2 .text-content h3 {
    font-size: var(--text-lg);
  }

  .section_4 .bento-7 .contentDiv {
    padding: 1rem;
  }

  .section_4 .bento-10 .contentDiv h3 {
    font-size: var(--text-lg);
  }

  .section_5 .cert-grid {
    gap: 5px;
  }

  .section_5 .container.pt-5 {
    padding-top: 0 !important;
  }

  .section_7 .text-content h1 {
    font-size: var(--text-lg);
  }

  .index-faq__inner {
    padding: 3rem 1rem;
  }

  .faq-item__question {
    font-size: var(--text-sm);
  }

  .faq-item__trigger {
    padding: 1rem;
  }

  .faq-item__answer {
    padding: 0 1rem 1rem;
  }

  .cert-item {
    flex: 0 1 calc(24% - 20px);
  }

  .floatSelection .selection_div .image_logo_div,
  .floatSelection p {
    display: none;
  }
}
