/* =========================================
   RESET & BASE
   ========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

body {
  font-family: "Gilroy", sans-serif;
  line-height: 1.6;
  color: #000;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

/* ===============================
   HEADER
=================================*/
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1200;
  background: transparent;
  display: flex;
  justify-content: center;
  padding: 1rem 0;
}

.header .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  max-width: 1200px;
  padding: 0.8rem 2rem;

  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-radius: 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.nav-brand .logo {
  height: 40px;
}


@supports (-webkit-backdrop-filter: blur(0)) {
  .header .container {
    -webkit-mask-image: -webkit-radial-gradient(white, black);
  }
}


/* ===============================
   NAV MENU (Desktop)
=================================*/
.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.8rem;

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  margin: 0;
  padding: 0;
}

.nav-menu a {
  text-decoration: none;
  font-weight: 500;
  color: #222;
  transition: color 0.3s;
}

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

.nav-menu li.dropdown {
  position: relative;
}

.nav-menu .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;

  list-style: none;
  margin: 0;
  padding: 0.5rem 0;

  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);

  z-index: 999;
}

.nav-menu li.dropdown:hover .dropdown-menu {
  display: block;
}

.nav-menu .dropdown-menu a {
  display: block;
  padding: 0.6rem 1rem;
  color: #222;
  white-space: nowrap;
  text-decoration: none;
  transition: background-color 0.3s;
}

.nav-menu .dropdown-menu a:hover {
  background: #fce8ec;
  color: var(--maroon);
}

/* Tambahin arrow ke link dropdown */
.nav-menu li.dropdown>a {
  position: relative;
  padding-right: 16px;
  /* kasih ruang buat arrow */
}

.nav-menu li.dropdown>a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 70%;
  transform: translateY(-50%);

  /* segitiga ke bawah */
  border: 5px solid transparent;
  border-top-color: #222;
  /* warna arrow */
}

/* pas hover, ganti warna arrow */
.nav-menu li.dropdown:hover>a::after {
  border-top-color: var(--maroon);
}

/* ===============================
   HAMBURGER + DRAWER (Mobile)
=================================*/
.hamburger {
  display: none;
  width: 38px;
  height: 34px;
  gap: 6px;
  flex-direction: column;
  justify-content: center;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.hamburger span {
  height: 2px;
  background: #222;
  width: 100%;
  display: block;
}

.nav-drawer {
  text-align: left;
  position: fixed;
  inset: 0 0 0 auto;
  width: 78%;
  max-width: 320px;
  padding: 80px 20px 20px;

  background: #fff;
  box-shadow: 12px 0 24px rgba(0, 0, 0, 0.08);

  transform: translateX(100%);
  transition: transform 0.2s ease;

  z-index: 1001;
}

.nav-drawer.open {
  transform: translateX(0);
}

.nav-drawer ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.nav-drawer a {
  color: #222;
  text-decoration: none;
  font-weight: 600;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

/* ===============================
   TKB Tooltip
=================================*/
.tkb-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  position: relative;
}

.tkb-icon img {
  height: 32px;
  width: auto;
}

.tkb-tooltip {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);

  background: rgba(255, 255, 255, 0.939);
  padding: 8px 12px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  color: #373737;

  visibility: hidden;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.tkb-icon:hover .tkb-tooltip {
  visibility: visible;
  opacity: 1;
}


@media (max-width: 900px) {
  .header {
    max-height: fit-content;
    padding: 1rem 1rem;
    background: transparent;
  }

  .hamburger {
    display: flex;
  }

  .navigation {
    display: none;
  }

  .tkb-icon {
    display: none;
  }



  .nav-drawer {
    position: fixed;
    inset: 0 0 0 auto;
    width: 78%;
    max-width: 400px;
    background: #ffffff;
    box-shadow: -12px 0 24px rgba(0, 0, 0, .08);
    transform: translateX(100%);


    transition: transform .25s ease;
    z-index: 1001;
    padding: 16px 20px 24px;

    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-drawer.open {
    transform: translateX(0);
  }

  /* Backdrop tampil halus */
  .drawer-backdrop {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 1000;
    opacity: 0;
    transition: opacity .2s ease;
  }

  .drawer-backdrop.show {
    opacity: .4;
  }

  .nav-drawer .drawer-header {
    position: sticky;
    top: 0;
    background: #070707;
    margin: -16px -20px 12px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    z-index: 1;
  }

  .nav-drawer .drawer-close {
    color: #ffffff;
    background: none;
    border: none;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    padding: 6px 8px;
    position: relative;
    z-index: 11;
  }

  .drawer-header .drawer-button {
    color: #000;
  }


  /* List menu di dalam drawer: kolom + rata kiri */
  .nav-drawer .nav-menu {
    font-size: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    margin: 0;
    list-style: none;
    text-align: left;

    position: static;
    transform: none;
    left: auto;
    top: auto;
    padding-top: 60px;

  }

  .nav-drawer .nav-menu>li {
    list-style: none;
  }

  .nav-drawer .nav-menu a {
    display: inline-flex;
    justify-content: flex-start;
    text-align: left;
    text-decoration: none;
    color: #111;
    font-weight: 600;
  }

  /* Dropdown jadi akordeon */
  .nav-drawer .nav-menu li.dropdown>a {
    position: relative;
    padding-right: 24px;
  }

  .nav-drawer .nav-menu li.dropdown>a::after {
    content: "";
    position: center;
    right: 5px;
    translate: 0 -20%;
    border: 6px solid transparent;
    border-top-color: #111;
    transition: transform .2s ease;
  }

  .nav-drawer .nav-menu li.dropdown .dropdown-menu {
    position: static;
    display: none;
    background: transparent;
    box-shadow: none;
    padding: 6px 0 0 10px;
  }

  .nav-drawer .nav-menu li.dropdown.open>a::after {
    translate: 0 -150%;
    transform: rotate(180deg);
  }

  .nav-drawer .nav-menu li.dropdown.open>.dropdown-menu {
    display: block;
  }

  .nav-drawer .nav-menu .dropdown-menu a {
    padding: 10px 6px;
    font-weight: 500;
    color: #333;
  }

  /* “Periksa TKB” sebagai item akordeon */
  .nav-drawer .nav-menu li.tkb-mobile>a.tkb-toggle {
    position: relative;
    padding-right: 24px;
  }

  .nav-drawer .nav-menu li.tkb-mobile>a.tkb-toggle::after {
    content: "";
    position: absolute;
    right: 5px;
    top: 50%;
    translate: 0 -40%;
    border: 6px solid transparent;
    border-top-color: #333;
    transition: transform .2s ease;
  }

  .nav-drawer .nav-menu li.tkb-mobile .tkb-sub {
    display: none;
    padding: 6px 0 0 10px;
    color: #333;
    font-weight: 500;
  }

  .nav-drawer .nav-menu li.tkb-mobile.open .tkb-sub {
    display: block;
  }

  .nav-drawer .nav-menu li.tkb-mobile.open>a.tkb-toggle::after {
    translate: 0 -100%;
    transform: rotate(180deg);
  }
}


/* =========================================
   HERO
   ========================================= */
.section-hp-wrapper {
  background: linear-gradient(135deg, #ffe4e1 0%, #ffe2e7 50%, #ffdbe0 100%);
  padding-top: clamp(24px, 4vw, 48px);
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}

.hero {
  min-height: auto;
  display: flex;
  align-items: flex-start;
  background: transparent;
  margin-bottom: 0;
  padding-top: 40px;
}


.hero-content {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 440px);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-text {
  padding-top: 135px;
  width: 100%;
  margin-left: -30px;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #000;
  line-height: 1.2;
  white-space: pre-line;
}

.hero-text .highlight {
  color: #dc143c;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #555;
  line-height: 1.6;
  max-width: 100%;
  word-wrap: break-word;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.store-btn img {
  height: 50px;
  transition: transform .2s ease;
}

.store-btn:hover img {
  transform: scale(.96);
}

.store-btn:active img {
  transform: scale(.92);
}

/* Mockup: sticky (bukan fixed) + transform yang halus (GPU) */
.hero-image {
  position: sticky;
  top: clamp(16px, 2.5vw, 32px);
  justify-self: end;
  width: min(440px, 36vw);
  z-index: 2;
  will-change: transform;
  transition: transform .1s ease;
}


.hero-image img {
  display: block;
  width: 100%;
  height: auto;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: opacity .1s ease;
}

/* Saat shrink (di-toggle dari JS Observer) */
.hero-image.shrink {
  transform: translateY(20px) scale(.8);
}

.hero-image .mockup.is-visible {
  opacity: 1;
}


.hero-image .mockup {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity .2s ease;
  display: block;
  will-change: opacity;
}

/* <= 1024px: kecilkan heading */
@media (max-width:1024px) {
  .hero-text h1 {
    font-size: 3rem;
  }
}

/* <= 900px: satu kolom, gambar di bawah teks, tanpa sticky */
@media (max-width:1200px) {
  .section-hp-wrapper {
    padding: 36px 0 48px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: clamp(16px, 5vw, 28px);
  }

  .hero-text {
    padding-top: 80px;
    margin-left: 0;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text p {
    margin-inline: auto;
    font-size: 1rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .store-btn img {
    height: 46px;
  }

  .hero-image {
    position: static;
    transform: none !important;
    width: min(420px, 90vw);
    margin: 8px auto 0;
  }

  .hero-image .mockup {
    position: static;
    inset: auto;
    display: block;
    opacity: 1 !important;
  }

  #mockup-a {
    max-width: 500px;
    justify-content: center;
  }

  #mockup-b {
    display: none !important;
  }

}

@media (max-width:640px) {
  .hero .container {
    padding: 0 1rem;
  }

  .hero-text h1 {
    font-size: 2.4rem;
  }

  /* fix typo 2,4 -> 2.4 */

  .store-btn img {
    height: 40px;
  }
}

@media (max-width:900px) {
  .section-hp-wrapper {
    padding: 36px 0 48px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: clamp(16px, 5vw, 28px);
  }

  .hero-text {
    padding-top: 80px;
    margin-left: 0;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text p {
    margin-inline: auto;
    font-size: 1rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .store-btn img {
    height: 46px;
  }

  .hero-image {
    position: static;
    transform: none !important;
    width: min(420px, 90vw);
    margin: 8px auto 0;
  }

  .hero-image .mockup {
    position: static;
    inset: auto;
    display: block;
    opacity: 1 !important;
  }

  #mockup-a {
    max-width: 500px;
    justify-content: center;
  }

  #mockup-b {
    display: none !important;
  }

}

@media (prefers-reduced-motion: reduce) {

  .store-btn img,
  .hero-image {
    transition: none;
  }
}

@media (max-height: 700px) {
  .hero {
    min-height: auto;
    padding-bottom: 24px;
  }
}


/* =========================================
   WHY UATAS
   ========================================= */
.why-uatas {
  background: transparent;
  text-align: left;
}

.why-uatas .container {
  padding-top: 40px;
  padding-bottom: 120px;
}

.why-uatas h2 {
  font-size: 2.5rem;
  color: #000;
  margin-bottom: 2rem;
  font-weight: 700;
}

.why-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  width: 100%;
  max-width: 600px;
  margin-inline: 0;
}

.feature-card {
  background: #fff;
  border-radius: 30px;
  padding: 1.5rem;
  box-shadow: 0 6px 25px rgba(0, 0, 0, .08);
  transition: transform .3s ease, box-shadow .3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, .12);
}

.feature-icon {
  width: 120px;
  height: 120px;
  margin-top: -20px;
  margin-left: -30px;
  display: flex;
  align-items: flex-start;
  flex-shrink: 0;
}

.feature-icon img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.feature-card p {
  color: #666;
  line-height: 1.5;
  font-size: .85rem;
}

@media (max-width:1200px) {
  .why-features-grid {
    grid-template-columns: (2, 1fr);
    gap: 1rem;
    max-width: none;
  }

  .why-uatas h2 {
    font-size: 2rem;
    text-align: center;

  }

  .feature-card {
    text-align: left;
  }

  .feature-card .feature-icon {
    justify-content: left;
  }
}

/* Why → 1 kolom di mobile */
@media (max-width:900px) {
  .why-features-grid {
    grid-template-columns: (2, 1fr);
    gap: 1rem;
    max-width: none;
  }

  .why-uatas h2 {
    font-size: 2rem;
    text-align: center;

  }

  .feature-card {
    text-align: left;
  }

  .feature-card .feature-icon {
    justify-content: left;
  }
}

/* =========================================
   MELAYANI
   ========================================= */
.melayani-section {
  background: #fff5f5;
  padding-top: 120px;
  padding-bottom: 120px;
}

.melayani-container {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.melayani-video {
  flex: 1 1 45%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.melayani-video img {
  width: 100%;
  display: block;
  border-radius: 30px;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.167);
  color: #fff;
  font-size: 2rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.melayani-text {
  flex: 1 1 45%;
}

.melayani-text img {
  width: 100px;
  height: auto;
}

.melayani-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  align-items: left;
  gap: 0.5rem;
}

.melayani-text p {
  color: #444;
  font-size: 1rem;
  margin-top: 1rem;
  line-height: 1.5;
}

/* Stats */
.melayani-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.771);
  border-radius: 30px;
  text-align: left;
  padding: 1.5rem;
  align-items: flex-start;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.057);
}

.stat-card img {
  width: 80px;
  height: auto;
  margin-left: -20px;
  margin-top: -10px;
}

.stat-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #000;
}

.stat-card h3 span {
  font-size: 2.5rem;
  font-weight: 700;
  color: #b01415;
}

.stat-card p {
  font-size: 0.9rem;
  color: #666;
  margin-top: -10px;
}


.melayani-video {
  aspect-ratio: 16/9;
}

.melayani-video img {
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.warning-banner {
    background-color: rgb(111, 14, 21);
    color: white;
    padding: 15px;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.warning-banner.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.warning-banner .close-btn {
    background: none;
    border: none;
    color: white;
    font-weight: bold;
    font-size: 20px;
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}


.warning-banner .inner{ max-width: 1100px; margin: 0 auto; line-height: 1.45; }
.warning-banner .close-btn{
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  background: none; border: 0; color: #fff; font-weight: 700;
  font-size: clamp(18px, 4vw, 22px); cursor: pointer;
}
.warning-banner.hidden{ transform: translateY(-100%); opacity: 0; pointer-events: none; }

@media (max-width: 480px){
  .warning-banner{ padding-right: 38px; }
  .warning-banner .inner{ padding: 0 6px; text-align: left; }
}

.header {
    transition: margin-top 0.3s ease;
}

.popup {
        display: none;
        position: fixed;
        z-index: 9999;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
    }

    .popup-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
        max-width: 80%;
        overflow: hidden; 
    }

    .popup-content img {
        width: 100%;
        height: auto;
        max-width: 100%; 
        max-height: 100%; 
        display: block; 
        margin: 0 auto; 
    }

    .close {
        position: absolute;
        top: 10px;
        right: 20px;
        font-size: 30px;
        font-weight: bold;
        cursor: pointer;
        color: #ffffff;
    }

    .close:hover {
        color: #000;
    }

    :root {
      --cs-color: rgb(245, 92, 103);
      --cs-color-ghost: rgba(245, 92, 103, .55);
    }

    .cs-float {
      position: fixed;
      right: 20px;
      bottom: 20px;
      z-index: 2000;
      display: inline-block;
      line-height: 0;
      border-radius: 16px;
      box-shadow: 0 6px 18px rgba(0,0,0,.18);
      transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
      animation: cs-pulse 2.2s infinite;
    }

    .cs-float img {
      display: block;
      width: 200px;
      height: auto;
      border-radius: 16px;
    }

    @media (max-width: 480px) {
      .cs-float { right: 14px; bottom: 14px; }
      .cs-float img { width: 200px; }
    }

    .cs-float:hover,
    .cs-float:focus-visible {
      transform: translateY(-2px) scale(1.02);
      box-shadow: 0 10px 24px rgba(0,0,0,.24);
      animation: none;
      filter: saturate(1.05);
    }

    @keyframes cs-pulse {
      0%   { box-shadow: 0 0 0 0 var(--cs-color-ghost); }
      60%  { box-shadow: 0 0 0 18px rgba(245, 92, 103, 0); }
      100% { box-shadow: 0 0 0 0 rgba(245, 92, 103, 0); }
    }

    @media (prefers-reduced-motion: reduce) {
      .cs-float { animation: none; }
    }


/* =========================================
   MELAYANI - Responsive
========================================= */

/* <= 1024px: tablet landscape */
@media (max-width: 1024px) {
  .melayani-container {
    gap: 1.5rem;
    align-items: center;
  }

  .melayani-text h2 {
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .melayani-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .stat-card {
    padding: 1.25rem;
  }

  .stat-card h3 span {
    font-size: 2.1rem;
  }

  .stat-card img {
    width: 84px;
    margin: 0px 0 0 -10px;
  }
}

@media (max-width: 926px) {
      .popup-content {
        width: 90%; 
        max-width: 100%; 
      }

      .popup-content img {
          max-width: 100%;
      }
  }

/* <= 900px: tablet portrait / small tablet */
@media (max-width: 900px) {
  .melayani-container {
    gap: 40px;
    flex-direction: column;
  }

  .melayani-text {

    text-align: center;
    max-width: 720px;
    margin-inline: auto;
  }

  .melayani-text img {
    margin-inline: auto;
    margin-bottom: 20px;
  }

  .melayani-text h2 {
    text-align: center;
    font-size: 1.6rem;
    line-height: 1;
  }

  .melayani-text p {
    font-size: 0.95rem;
  }

  .play-button {
    width: 54px;
    height: 54px;
    font-size: 1.6rem;
  }

  .stat-card img {
    width: 80px;
    margin-left: -20px;
  }
}

/* <= 640px: mobile */
@media (max-width: 640px) {
  .melayani-section .container {
    padding-inline: 1rem;
  }

  .melayani-text h2 {
    text-align: center;
    font-size: 1.5rem;
    line-height: 1;
  }

  .melayani-text p {
    font-size: 0.9rem;
  }

  .melayani-stats {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 1.75rem;
  }

  .stat-card {
    border-radius: 20px;
    padding: 1rem;
  }

  .stat-card h3 {
    font-size: 1.05rem;
  }

  .stat-card h3 span {
    font-size: 2rem;
  }

  .stat-card p {
    margin: auto;
    font-size: 0.8rem;
  }

  .stat-card img {
    width: 80px;
    margin-left: -20px;
    margin-top: -10px;
  }
}

/* Aksesibilitas: nonaktifkan transisi animasi di device dengan prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .play-button {
    transition: none;
  }
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonial-section {
  text-align: center;
  padding: 50px 20px;
  background: linear-gradient(180deg, #ff6b6b, #ff8e8e);
  color: #fff;
}

.testimonial-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.testimonial-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.arrow {
  background-color: hsla(0, 0%, 90%, 0.745);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.3s;
}

.arrow:hover {
  background: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  .testimonial-section .arrow {
    display: none;
  }
}


.testimonial-card {
  background: linear-gradient(180deg, #fff, #fff5f5);
  color: #3d0f0f;
  padding: 30px;
  max-width: 600px;
  border-radius: 30px;
  text-align: left;
  height: 250px;
  /* fixed height kartu */
  display: none;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.057);
}

.testimonial-card.active {
  display: flex;
}

.quote-icon {
  width: 40px;
  margin-bottom: 15px;
}

.testimonial-card p {
  font-size: 1rem;
  margin-bottom: 15px;
  line-height: 1.5;
}

.rating {
  position: absolute;
  top: 20px;
  right: 20px;
}

.rating img {
  margin-top: 10px;
  width: 100px;
}

.profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.profile-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.profile strong {
  font-size: 1rem;
}

.profile span {
  display: block;
  font-size: 0.85rem;
  color: #555;
}

.dots {
  margin-top: 20px;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  opacity: 0.5;
}

.dot.active {
  opacity: 1;
}

/* Fade In util */
.fade-in {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .testimonial-card {
    max-width: 90%;
    height: auto;
    padding: 20px;
    text-align: center;
  }

  .testimonial-card p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  .profile {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }

  .profile-img {
    width: 40px;
    height: 40px;
  }

  .rating {
    position: static;
    max-width: 90%;
    align-self: center;
    margin-bottom: 20px;
  }
}

@media (max-width: 600px) {
  .testimonial-section {
    padding: 40px 16px;
  }

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

  .testimonial-card p {
    font-size: 0.9rem;
  }
}


/* =========================================
   ACTIVITIES
   ========================================= */
.activities {
  padding-top: 120px;
  padding-bottom: 120px;
  background: #fff;
}

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

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.activity-card {
  background: #ffecec;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(167, 167, 167, 0.1);
  transition: transform 0.3s ease;
}

.activity-card:hover {
  transform: translateY(-5px);
}

.activity-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.activity-content {
  padding: 1.5rem;
  background: transparent;
}

.activity-date {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.activity-content h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #000;
  font-weight: 700;
}

.watch-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ff6d6d, #ff4747);
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: 700;
}

.watch-btn:hover {
  opacity: 0.9;
}

.more-wrapper {
  text-align: center;
  margin-top: 3rem;
}

.more-btn {
  position: relative;
  display: inline-block;
  padding: 0.4rem 1.2rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  background-color: transparent;
  color: transparent;
  background-image: linear-gradient(90deg, #b31217, #ff6b6b);
  -webkit-background-clip: text;
  background-clip: text;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.more-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(90deg, #b31217, #ff6b6b);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.more-btn:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* =========================================
   WASPADA (OTP)
   ========================================= */
.otp-section {
  background: linear-gradient(180deg, #fff3f4 0%, #ffd8da 100%);
  padding: 120px 0;
}

.otp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  position: relative;
}

.otp-mascot {
  position: absolute;
  left: 00;
  top: -10px;
  width: 90px;
  margin-left: 20px;
  transform: translateY(-30%);
}

@media (max-width: 900px) {
  .otp-mascot {
    display: none;
  }
}

.otp-slider {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.otp-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.otp-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 30px;
}

.otp-left {
  text-align: left;
}

@media (max-width: 900px) {
  .otp-left {
    text-align: center;
  }

  .otp-left h2 {
    margin-left: auto;
    margin-right: auto;
  }

  .otp-left p {
    margin-left: auto;
    margin-right: auto;
  }
}

.otp-left h2 {
  font-size: 44px;
  line-height: 1.1;
  margin: 0 0 16px;
  font-weight: 800;
}

.otp-left p {
  color: #2e2e2e;
  max-width: 560px;
  line-height: 1.6;
  margin: 0;
}

.otp-right .otp-image-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: transparent;
  aspect-ratio: 16/9;
}

.otp-right .otp-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dots */
.otp-dots {
  display: flex;
  gap: 16px;
  justify-content: center;
  padding: 20px 0 0;
}

.otp-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.otp-dots button[aria-selected="true"] {
  background: #fff;
}

@media (max-width: 900px) {
  .otp-slide {
    grid-template-columns: 1fr;
    padding: 28px 20px 40px;
  }

  .otp-left h2 {
    font-size: 32px;
  }
}

/* =========================================
   PARTNERS & REGULATORS
   ========================================= */
.partners-sec {
  background: #fff;
  padding-top: 120px;
  padding-bottom: 120px;
}

.sec-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 28px;
  color: #111;
}

.mt-60 {
  margin-top: 60px;
}

/* Logo carousel */
.logo-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: transparent;
  padding: 18px 0;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 40px;
  will-change: transform;
}

.logo-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
}

.logo-item img {
  display: block;
  height: 100px;
  max-width: auto;
  width: auto;
  filter: none;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.logo-item img:hover {
  transform: translateY(-2px);
}

/* Regulators */
.reg-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-top: 20px;
}

@media (max-width: 1024px) {
  .reg-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .reg-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.reg-card {
  background: #ffefef;
  border-radius: 20px;
  padding: 28px 16px;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.reg-card .reg-label {
  font-size: 13px;
  color: #666;
  margin: 0;
}

.reg-card img {
  display: block;
  margin: 0 auto;
  block-size: 56px;
  width: auto;
  object-fit: contain;
}

.reg-card small {
  display: block;
  margin-top: 6px;
  color: #333;
}


/* =========================================================
   FOOTER
   ========================================================= */
.uatas-footer {
  background: #6b0d0d;
  padding: 64px 0 28px;
}

.uatas-footer .container {
  padding-block: 0;
}

.uatas-footer-card {
  background: linear-gradient(180deg, #fffbfbe1 100%, #ffe1e2 50%);
  border-radius: 30px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.06);
  padding: 24px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
}

@media (max-width: 1024px) {
  .uatas-footer-card {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}

.uf-mascot {
  width: 150px;
  margin: 20px 0 0 30px;
  object-fit: contain;
}

/* Office */
.uf-office {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 30px;
  align-items: start;
  margin: 30px 0 10px 30px;
}

@media (max-width: 1024px) {
  .uf-office {
    grid-template-columns: 1fr;
    margin-left: 0;
  }
}

.uf-map iframe,
.uf-map img {
  width: 100%;
  height: 140px;
  border: 1px solid #f1cfd3;
  border-radius: 14px;
  background: #f2f2f2;
}

@media (max-width: 1024px) {
  .uf-map iframe {
    height: 180px;
  }
}

.uf-info h4 {
  font-size: 1rem;
  margin: 0 0 6px;
  font-weight: 600;
}

.uf-info address {
  font-size: 0.8rem;
  font-style: normal;
  color: #333;
  line-height: 1.45;
}

.uf-meta {
  list-style: none;
  font-size: 0.8rem;
  margin: 8px 0 0;
  padding: 0;
  color: #444;
}

.uf-meta li {
  margin: 4px 0;
}

.uf-meta a {
  color: #513127;
  text-decoration: none;
}

/* Right column */
.uf-right {
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: flex-start;
  margin-top: 95px;
  margin-left: -80px;
}

@media (max-width: 1024px) {
  .uf-right {
    margin: 0;
  }
}

.uf-right h5 {
  font-size: 1rem;
  margin: 0 0 6px;
  font-weight: 600;
}

.uf-download .store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.uf-download .store-badge {
  display: flex;
  justify-content: center;
}

.uf-download .store-badge img {
  height: 40px;
  width: auto;
}

.uf-social .social-row {
  display: flex;
  gap: 16px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #513127;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s;
}

.social-icon:hover {
  background: #ac2931;
}

.uf-notice-title {
  text-align: center;
  letter-spacing: 0.08em;
  font-weight: 800;
  font-size: 1.4rem;
  margin: 100px 0 18px;
  color: #fff;
}

.uf-notice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  color: #ffe9ea;
  font-size: 0.85rem;
}

.uf-notice-grid ul {
  margin: 0;
  padding-left: 20px;
}

.uf-notice-grid li {
  margin: 8px 0;
}

@media (max-width: 900px) {
  .uatas-footer {
    padding: 48px 0 24px;
  }

  .uatas-footer-card {
    gap: 20px;
  }

  .uf-notice-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .store-badge img {
    height: 20px;
  }

  .uf-brand {
   transform: translateX(-30px);
  }
}

.uf-copy {
  margin-top: 10px;
  text-align: center;
  font-size: 0.9rem;
  color: #ffe9ea;
  opacity: 0.9;
}

@media (max-width: 640px) {
  .uatas-footer {
    padding: 48px 0 24px;
  }

  .uatas-footer-card {
    gap: 20px;
  }

  .uf-notice-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.uf-pdf {
  margin-top: 20px;
}

.uf-pdf .pdf-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
  margin: 0;
  justify-content: center;
}

.uf-pdf .pdf-links a {
  font-weight: 400;
  color: #ffe9ea;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-size: 14px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(255, 255, 255, 0.7);
  transition: opacity 0.2s ease;
}

.uf-pdf .pdf-links a:hover {
  opacity: 0.8;
}

@media (max-width: 640px) {
  .uf-pdf .pdf-links {
    gap: 16px;
  }
}

/* ===== Zoom-safe baseline ===== */
:root {
  --container-max: 1200px;
  --gutter: clamp(16px, 4vw, 32px);
  --section-y: clamp(40px, 8vw, 96px);
}

/* Tipografi & unit relatif: rem supaya skala ikut zoom */
html {
  font-size: 16px;
}

h1 {
  font-size: clamp(2rem, 6vw, 3.2rem);
  line-height: 1.15;
}

h2 {
  font-size: clamp(1.6rem, 4.5vw, 2.2rem);
}

p {
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.card,
.feature-card,
.activity-card,
.reg-card {
  min-height: auto;
}

body {
  overflow-x: hidden;
}

@font-face {
  font-display: swap;
}

.nav-menu .dropdown>a {
  position: relative;
  padding-right: 16px;
}

.nav-menu .dropdown>a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 70%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-top-color: #222;
}

.nav-menu li.dropdown:hover>a::after {
  border-top-color: #e2475b;
}

.nav-menu li.tkb-mobile:hover>a.tkb-toggle::after {
  border-top-color: #e2475b;
}

.faq-q .faq-icon {
  inline-size: 22px;
  block-size: 22px;
  aspect-ratio: 1 / 1;
  flex: 0 0 22px;
}

.faq-q .faq-icon::before,
.faq-q .faq-icon::after {
  inline-size: 10px;
  block-size: 2px;
}

/* --- Reset & baseline --- */
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
}

@media (max-width: 900px) {

  html,
  body {
    overflow-x: clip;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}


img,
video,
canvas,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

.full-width,
.section,
.wrapper {
  width: 100%;
  max-width: 100%;
}

.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}


pre,
code,
table {
  overflow-x: auto;
  max-width: 100%;
}

.swiper,
.swiper-container {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.swiper-wrapper {
  box-sizing: content-box;
}

.swiper-slide {
  min-width: 0;
}


ul,
ol {
  margin-block: 0;
  padding-left: 1.25rem;
}


@media (max-width: 900px) {
  .bleed-guard {
    overflow-x: clip;
  }
}

@media (min-width: 901px) {

  .hero,
  .hero-image {
    overflow: visible;
  }
}

@media (max-width: 1200px) {

  /* standar-kan gutter di hero */
  .hero {
    --hero-gutter: clamp(16px, 4vw, 32px);
  }

  .hero .container {
    padding-left: var(--hero-gutter) !important;
    padding-right: var(--hero-gutter) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: clamp(16px, 5vw, 28px) !important;

    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;

    width: calc(100vw - (var(--hero-gutter) * 2)) !important;
    max-width: calc(1200px - (var(--hero-gutter) * 2)) !important;
    margin: 0 auto !important;
  }

  .hero-text,
  .hero-image {
    min-width: 0 !important;
    margin: 0 auto !important;
  }

  .hero-image {
    position: static !important;
    transform: none !important;
    width: min(420px, 90vw) !important;
    max-width: 100% !important;
    margin-top: 8px !important;
  }

  .hero-image img,
  .hero-image .mockup {
    display: block !important;
    max-width: 100% !important;
    height: auto !important;
  }
}

:root {
  --site-gutter: clamp(36px, 4vw, 40px);
}



:root {
  --container-max: 1200px;
  --gutter: clamp(16px, 4vw, 32px);
  --section-y: clamp(40px, 8vw, 96px);
  --text: #1d1d1f;
  --muted: #8a8a8a;
  --maroon: #750512;
  --site-gutter: clamp(36px, 4vw, 40px);
}

.container {
  max-width: var(--container-max) !important;
  margin-inline: auto !important;
  padding-inline: var(--site-gutter) !important;
}

.header .container {
  position: relative;
  overflow: visible !important;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  isolation: isolate;
  column-gap: clamp(16px, 4vw, 48px) !important;
}

.header .container::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 0;
  pointer-events: none;
}

.header .container>* {
  position: relative;
}

.nav-menu {
  position: static !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  display: flex !important;
  align-items: center !important;
  gap: clamp(1rem, 2.5vw, 1.9rem) !important;
  /* jarak antar item */
  margin: 0 !important;
}

.nav-menu .dropdown-menu {
  top: calc(100% + 8px) !important;
  z-index: 2000 !important;
}

.header,
.navigation,
.nav-menu,
.nav-menu>li {
  overflow: visible !important;
}


@media (max-width: 900px) {
  .nav-drawer .nav-menu {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    gap: 24px !important;
    padding-top: 60px !important;
    position: static !important;
    transform: none !important;
  }
}

.header .hamburger {
  width: 24px;
  height: 24px;
  gap: 6px;
  border-radius: 20px;
}

.header .hamburger span {
  border-radius: 10px;
}


@media (max-width: 576px) {
  .uf-download .store-badge img {
    height: 30px;
    gap: 16px;
    width: auto;
  }
}

/* responsive untuk layar kecil */
@media (max-width: 576px) {
  .nav-menu li {
    font-size: 18px;   /* dikecilin */
  }
}
