.cards-hd {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }

.cardbox {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    overflow: visible;
  }

#nextSection,
#nextSection .cardbox,
#nextSection .grid {
  overflow: visible;
  overscroll-behavior: auto;
}

@media (max-width: 600px) {
.hd-lg {
      margin: 2.5rem 0 3rem;
      font-size: 1.375rem;
    }
}

.menu button,
  .menu a,
  .menu button:focus,
  .menu a:focus,
  .menu button:active,
  .menu a:active,
  .menu button:focus-visible,
  .menu a:focus-visible {
    outline: none !important;
    box-shadow: none !important;
  }

.tab2-pill .seg,
  .tab2-pill .seg:focus,
  .tab2-pill .seg:active,
  .tab2-pill .seg:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent;
  }

.tab2-pill .seg::-moz-focus-inner {
    border: 0;
    padding: 0;
  }

.tab2-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(18px);
    transition:
      opacity 0.75s cubic-bezier(0.22, 0.9, 0.32, 1),
      transform 0.75s cubic-bezier(0.22, 0.9, 0.32, 1);
  }

.tab2-wrap.visible {
    opacity: 1;
    transform: translateY(0);
  }

.tab2-pill {
    position: relative;
    display: flex;
    width: 220px;
    background: #fcfcfc;
    color: #1b29b3;
    padding: 4px;
    border-radius: 50px;
  }

.seg {
    flex: 1;
    text-align: center;
    padding: 14px 14px;
    border-radius: 50px;
    border: none;
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 500;
    color: #1b29b3;
    cursor: pointer;
    z-index: 2;
    transition: color .25s;
    background: transparent;
  }

.seg.active {
    color: #1b29b3;
  }

.tab2-knob {
    position: absolute;
    top: 7px;
    bottom: 7px;
    left: 7px;
    width: calc(50% - 7px);
    background: #FFDE21;
    border-radius: 50px;
    z-index: 1;
    transition: transform 0.2s ease-in-out;
    transform: translateX(100%);
  }

.grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

@media (max-width: 780px) {
.grid {
      grid-template-columns: 1fr;
    }
}

.card {
    background: #fcfcfc;
    border-radius: 26px;
    padding: 28px 38px;
    display: block;
    width: 100%;
    box-sizing: border-box;
    color: #1b29b3;
    text-decoration: none;
    cursor: pointer;
    text-align: right;
    opacity: 0;
    transform: translateY(20px);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    transition:
      opacity .75s cubic-bezier(.22, 1, .36, 1),
      transform .75s cubic-bezier(.22, 1, .36, 1),
      background .28s cubic-bezier(.2, .9, .2, 1),
      box-shadow .28s cubic-bezier(.2, .9, .2, 1);
  }

button.card {
  border: 0;
  font: inherit;
  -webkit-appearance: none;
  appearance: none;
}

.card-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
  }

@media (max-width: 600px) {
.card {
    transition:
      opacity .85s cubic-bezier(.22, 1, .36, 1),
      transform .85s cubic-bezier(.22, 1, .36, 1),
      background .28s cubic-bezier(.2, .9, .2, 1),
      box-shadow .28s cubic-bezier(.2, .9, .2, 1);
  }
}

.card:hover {
    background: #1b29b3;
    color: #fcfcfc;
  }

.icon-wrap {
    flex-shrink: 0;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    position: relative;
    margin-left: 8px;
  }

.icon-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

.card:hover .icon-img {
    opacity: 0;
    transform: scale(0.7);
  }

.card .icon-img.hover-img {
    position: absolute;
    opacity: 0;
    transform: scale(0.7);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

.card:hover .icon-img.hover-img {
    opacity: 1;
    transform: scale(1);
  }

.card-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
  }

.title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 6px 0;
  }

.desc {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.7;
    color: inherit;
  }

.tab-content {
    display: none;
  }

.tab-content.active {
    display: grid;
  }

.lbl.animate {
    animation: badge-soft-pulse 1.15s cubic-bezier(.25, .8, .35, 1) both;
    opacity: 1;
  }

@keyframes badge-soft-pulse {
    0% {
      transform: scale(1);
      opacity: 0;
    }

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

    100% {
      transform: scale(1);
    }
  }

.note-btm {
    margin-top: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.6;
    text-align: center;
    color: #cbcbcb;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(14px);
    transition:
      opacity 0.65s cubic-bezier(0.22, 0.9, 0.32, 1),
      transform 0.65s cubic-bezier(0.22, 0.9, 0.32, 1);
  }

.note-btm.visible {
    opacity: 1;
    transform: translateY(0);
  }

.note-btm__icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
margin-left: 2px;
    display: block;
  }

@media (max-width: 600px) {
.note-btm {
      font-size: 0.7rem;
      line-height: 1.55;

      padding: 0 10px;
    }

.note-btm__icon {
      width: 16px;
      height: 16px;
margin-left: 0px;
    }
}

@media (max-width: 768px) {
.seg {
      padding: 15px 15px;
      font-size: 0.75rem;
    }

.tab2-wrap {
      justify-content: center;

      width: 100%;
      max-width: 100%;
    }

.tab2-pill {
      width: 100% !important;

      max-width: 220px;

      margin: 0 auto;

    }
}

:root {
    --bg: #f4f4f4;

    --primary: #1b29b3;
    --light-bg: #ededed;
    --text-light: #f4f4f4;
    --text-dark: #333;
  }

.stats-title {
    opacity: 0;
    transform: translateY(20px);
  }

.stats-title.stat-on {
    opacity: 1;
    transform: translateY(0);
    transition:
      opacity 0.95s cubic-bezier(0.22, 0.9, 0.32, 1),
      transform 0.95s cubic-bezier(0.22, 0.9, 0.32, 1);
  }

.stat {
    opacity: 0;
    transform: translateY(28px);
  }

.stat.stat-on {
    opacity: 1;
    transform: translateY(0);
    transition:
      opacity 1.05s cubic-bezier(0.22, 0.9, 0.32, 1),
      transform 1.05s cubic-bezier(0.22, 0.9, 0.32, 1);
  }

.stat .label {
    opacity: 0;
    transform: translateY(14px);
  }

.stat.stat-on .label {
    opacity: 1;
    transform: translateY(0);
    transition:
      opacity 0.85s cubic-bezier(0.22, 0.9, 0.32, 1),
      transform 0.85s cubic-bezier(0.22, 0.9, 0.32, 1);
    transition-delay: 0.25s;
  }

#kalaha .carousel,
  #kalaha .flickity-viewport,
  #kalaha .flickity-slider {
    background: transparent;
  }

.slide-veil {
  position: relative;
  overflow: visible;
  width: 100%;
}

.slide-veil::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--bg, #f4f4f4);
    transform: translateX(0);
    z-index: 5;
    pointer-events: none;
  }

.slide-veil.in::before {
    transform: translateX(100%);
    transition: transform 1.2s cubic-bezier(0.7, 0, 0.9, 0.2);
  }

.carousel-cell,
  .carousel-cell img,
  .carousel-cell:focus,
  .carousel-cell:focus-visible,
  .carousel-cell:active {
    -webkit-tap-highlight-color: transparent !important;
    outline: none !important;
    box-shadow: none !important;
  }

.carousel:focus,
  .carousel-cell:focus-within {
    outline: none !important;
  }

html.no-scroll,
  body.no-scroll {
    height: 100%;
    overflow: hidden;
  }

#warrantyOverlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    touch-action: none;
  }

#warrantyPanel {
    position: fixed;
    z-index: 9999;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

@keyframes warranty-shake {
    0% {
      transform: translateX(0);
    }

    15% {
      transform: translateX(-4px);
    }

    30% {
      transform: translateX(4px);
    }

    45% {
      transform: translateX(-3px);
    }

    60% {
      transform: translateX(3px);
    }

    75% {
      transform: translateX(-2px);
    }

    90% {
      transform: translateX(2px);
    }

    100% {
      transform: translateX(0);
    }
  }

.btn.warranty-shake {
    animation: warranty-shake 0.45s ease;
  }

.inner-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

.lbl {
    color: var(--primary);
    padding: 10px 24px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 999px;
    border: 1px solid var(--primary);
    width: fit-content;
    margin-bottom: 16px;
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: scale(1);
  }

.lbl.animate {
    animation: badge-soft-pulse 1.15s cubic-bezier(0.25, 0.8, 0.35, 1) both;
    opacity: 1;
  }

@media (max-width: 600px) {
.lbl {
      margin-bottom: 30px;
      font-size: 0.75rem;
      font-weight: 700;
      padding: 8px 16px;
    }
}

.hd-lg {
    font-weight: 800;
    margin: 0;
    text-align: center;
    color: var(--primary);
  }

.tit-clip::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--light-bg);
    transform: translateY(100%);
    transition: transform 1.1s cubic-bezier(0.22, 0.9, 0.32, 1);
    z-index: 1;
  }

.carousel {
    width: 100%;
    overflow: visible;
  }

.carousel-cell {
  position: relative;
  width: 66%;
  height: 70vh;
  margin-right: 10px;
  border-radius: 20px;
  overflow: hidden;
  line-height: 0;
  padding: 0;
  background: transparent;
}

.carousel-cell img {
    position: absolute;
    inset: -3px;
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    max-width: none;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
    border: none;
  }

#kalaha .carousel-cell {
    box-shadow: none;
    border: none;
  }

#kalaha .slide-veil {
  padding-bottom: 36px;
  min-height: 70vh;
}

#kalaha .flickity-viewport {
    overflow: visible !important;
  }

#kalaha .flickity-page-dots {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

@media (max-width: 768px) {
.carousel-cell {
      width: 80%;
      height: 65vh;
    }

.hd-lg {
      font-size: 1.125rem;
      padding: 0 20px;
    }
}

.service-sheet-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 9998;
  display: none;
  touch-action: none;
}

.service-sheet-overlay.active {
  display: block;
}

.service-sheet-close {
  position: absolute;
  top: 35px;
  left: 30px;
  z-index: 10;
  width: auto;
  height: auto;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 0.2s ease;
}

.service-sheet-close.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.service-sheet-close img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  pointer-events: none;
  transition: transform 0.25s ease;
  transform-origin: center;
}

.service-sheet-close:hover img {
  transform: rotate(90deg);
}

.service-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 96%;
  color: #1b29b3;
  background: #f7f7f8;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transform: translate3d(0, 100%, 0);
  visibility: hidden;
  pointer-events: none;
  transition:
    transform .32s cubic-bezier(.32, .72, 0, 1),
    visibility 0s linear .32s;
  overflow: hidden;
  overscroll-behavior: contain;
}

.service-sheet.active {
  transform: translate3d(0, 0, 0);
  visibility: visible;
  pointer-events: auto;
  transition:
    transform .32s cubic-bezier(.32, .72, 0, 1),
    visibility 0s linear 0s;
  will-change: transform;
}

.service-sheet.dragging {
  transition: none;
  will-change: transform;
}

.service-sheet-handle-zone {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 10px 0 12px;
  cursor: grab;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  position: relative;
  z-index: 3;
  background: #f7f7f8;
  border: none;
  outline: none;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
}

.service-sheet-handle-zone:focus,
.service-sheet-handle-zone:focus-visible {
  outline: none;
  box-shadow: none;
}

.service-sheet-handle-zone:active {
  cursor: grabbing;
}

.service-sheet-handle-bar {
  display: block;
  width: 38px;
  height: 5px;
  border: none;
  outline: none;
  box-shadow: none;
  border-radius: 999px;
  background: #d0d0d5;
  -webkit-tap-highlight-color: transparent;
}

.service-sheet-body {
  flex: 1;
  min-height: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  box-sizing: border-box;
  position: relative;
  isolation: isolate;
}

.service-sheet-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 18px;
  background: linear-gradient(
    to bottom,
    #f7f7f8 0%,
    rgba(247, 247, 248, 0.78) 55%,
    rgba(247, 247, 248, 0) 100%
  );
  pointer-events: none;
  z-index: 2;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.service-sheet-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0;
  background: #f7f7f8;
}

@media (max-width: 600px) {
  .service-sheet {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100dvh;
    max-height: none;
    border: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .service-sheet-handle-zone {
    min-height: 36px;
    padding: max(8px, env(safe-area-inset-top, 0px)) 0 12px;
  }

  .service-sheet-close {
    top: calc(35px + env(safe-area-inset-top, 0px));
    left: 30px;
  }

  .service-sheet-handle-bar {
    width: 40px;
    height: 5px;
  }

  .service-sheet-body::before {
    display: none;
  }
}

html.service-sheet-open {
  background: #f7f7f8;
}

html.service-sheet-open .nav,
html.service-sheet-open .wa-fix {
  visibility: hidden !important;
  pointer-events: none !important;
}
