* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #020617;
  background-image: url('background.png');
  background-size: cover;
  color: white;
  background-attachment: fixed;
  background-position: center;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  background-repeat: no-repeat;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 80px; /* Sesuaikan dengan tinggi navbar kamu */
}
.demo {
    text-align: center;
    padding: 40px 20px;
}

.demo h1 {
    margin-bottom: 30px; /* Jarak dari teks ke bawah */
}

.demo video {
    width: 100%;
    max-width: 650px; 
    height: auto;     /* Tinggi otomatis mengikuti proporsi video */
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.inter-uniquifier {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

/* Navbar */
.nav {
  z-index: 1000;
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.4); 
  backdrop-filter: blur(10px); 
  padding: 20px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
  height: 38px;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 15px;
  background: #030A18;
  padding: 16px 2px !important;
  border-radius: 50px;
  border: 2px solid rgba(0, 110, 123, 0.4);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  border-radius: 999px;
  position: relative;
  height: 55px !important;
  
}

.menu{
  display: none;
}
.nav-indicator {
  position: absolute;
  background: #00152A;
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 999px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  height: calc(100% - 16px); /* Mengikuti tinggi nav-menu dikurangi padding */
  top: 8px;
}
.nav-menu:visited{
  background: #7c848c;}

.nav-menu a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 30px;
  transition: 0.3s;
}
.nav-menu a:hover {
  color: #00F0FF;}

.nav-menu a.active {
  background: #00152A;
  padding: 15px 30px;
  border-radius: 40px;
  color: #00f0ff;
}
  
.btn-nav {
  padding: 10px 26px;
  border-radius: 30px;
  border: none;
  background: radial-gradient(#0575E6, #00F0FF);
  color: white;
  font-weight: bold;
  cursor: pointer;
  height: 38px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}
/* Saat kursor di atas tombol */
.btn-nav:hover {
  transform: translateY(-2px); /* Naik sedikit saja */
  box-shadow: 0 8px 25px rgba(0, 240, 255, 0.5); /* Glow biru menyala */
  filter: brightness(1.1); /* Sedikit lebih terang */
  letter-spacing: 0.5px; /* Teks sedikit merenggang agar elegan */
}

/* Saat tombol diklik (Desktop & Mobile) */
.btn-nav:active {
  transform: translateY(0) scale(0.94); /* Efek membal ke dalam */
  box-shadow: 0 2px 10px rgba(5, 117, 230, 0.4);
  transition: all 0.1s ease; /* Transisi balik sangat cepat */
}
/* Navbar end */

@media only screen and (max-width: 600px) {
  .menu {
    display: block;
  }
  .nav-menu{
    
    display: none;
  }
  .btn-nav{
  display: none;

}

.mob-nav{
  position: fixed;
  top: 0;
  left: -100%;
  width: 70%;
  height: 100vh;
  background-color: #00152a;
  z-index: 10000;
  transition: 0.3s ease;
  padding-top: 80px;
  display: none;
}

.mob-nav.active{
  left: 0;
  display: block;
}
.side-header{
  padding:30px;
}

.side-logo{
  height:32px;
}
.side-menu{
  list-style: none;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 28px;

  /* display: block; */
}

.side-menu li a{
  display: flex;
  align-items: center;
  gap: 14px;

  text-decoration: none;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
}

.side-menu li img{
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.side-menu li a span{
  line-height: 1;
}

/* Perbandingan */
.perbandingan {
  color: white;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

.perbandingan .judul {
  font-size: 28px; 
  margin-bottom: 40px; 
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.perbandingan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Membagi 2 kolom */
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
}

.img-banding {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
}

/* Base Card Style */
.card.banding {
  padding: 40px;
  border-radius: 40px;
  text-align: left;
  position: relative;
  min-height: 250px;
}

/* Card Manual */
.card.manual {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Card Digital */
.card.digital {
  background: rgba(0, 210, 255, 0.05);
  border: 2px solid #00d2ff;
  box-shadow: 0 0 35px rgba(0, 210, 255, 0.35); /* Glow biru menyala */
}

/* Judul Badge  */
.judul-badge {
  display: inline-block;
  padding: 8px 25px;
  border-radius: 15px;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 25px;
}

.judul-badge.putih {
  background: #ffffff;
  color: #000000;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.judul-badge.biru {
  background: linear-gradient(90deg, #00d2ff, #007bff);
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

/* Styling List */
.card.banding ul {
  list-style: none;
  padding: 0;
}

.card.banding ul li {
  font-size: 15px;
  color: #cbd5e0;
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
}

.card.banding ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
}

/* Responsif Mobile (Tumpuk ke bawah) */
@media (max-width: 768px) {
 .perbandingan-grid {
    display: flex;            /* Ubah grid jadi flex agar lebih mudah kontrol urutan */
    flex-direction: column;   /* Tumpuk ke bawah */
    align-items: center;      /* Pastikan SEMUA item (gambar & card) di tengah */
    gap: 20px;
  }

  .item-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;  /* Mengetengahkan konten di dalam wrapper */
  }

  /* Samakan lebar Card dengan Gambar */
  .card.banding {
    max-width: 420px;         /* Sesuai lebar maksimal gambar Anda */
    width: 90%;               /* Agar tidak mepet layar di HP kecil */
    min-height: auto;
    text-align: center;       /* Judul badge jadi ke tengah */
    margin: 0 auto;
  }

  .card.banding ul {
    display: inline-block;    /* List tetap rapi (rata kiri) tapi bloknya di tengah */
    text-align: left;
  }

  /* Atur Urutan agar: Gambar1 -> Card1 -> Gambar2 -> Card2 */
  .item-wrapper:nth-child(1) { order: 1; } /* Gambar Manual */
  .item-wrapper:nth-child(2) { order: 2; } /* Card Manual */
  .item-wrapper:nth-child(4) { order: 3; } /* Gambar Digital (Dipindah ke atas cardnya) */
  .item-wrapper:nth-child(3) { order: 4; } /* Card Digital (Dipindah ke bawah gambarnya) */
}

.demo h1 {
        font-size: 22px; /* Perkecil ukuran judul di HP */
        padding: 0 10px;
    }

    .demo video {
        width: 95%;      /* Video memenuhi layar HP dengan sedikit margin */
        max-width: none; 
        border-radius: 12px;
    }

/* Perbandingan end*/

}

.mob-nav{
  display: none;
}

/* Hero */
.hero {
  padding: 163px 80px 100px; 
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0;
}

.hero-text {
  /* Tambahkan ini untuk mendorong teks turun 3px secara independen */
  margin-top: 3px;
}

.hero-text h2 {
  font-size: 36px;
  line-height: 1.3;
  margin-top: 40px !important; 
  margin-bottom: 20px !important; 
}

.hero-img {
  width: 600px;
  border-radius: 0px;
  overflow: hidden;
  display: flex;
  margin-top: 3px; 
}

.highlight {
  color: aqua;
}

.btn-hero {
  margin-top: 32px;
  padding: 14px 32px;
  border-radius: 14px;
  border: none;
  background: radial-gradient(#0575E6, #00F0FF);
  color: white;
  font-weight: bold;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  
}
/* Efek saat kursor di atas tombol */
.btn-hero:hover {
  transform: translateY(-5px) scale(1.03); /* Naik sedikit & membesar tipis */
  box-shadow: 0 12px 30px rgba(0, 240, 255, 0.5); /* Glow lebih luas */
  filter: brightness(1.15); /* Lebih terang seolah tersorot lampu */
  letter-spacing: 0.3px;
}

/* Efek saat tombol ditekan (Click/Tap) */
.btn-hero:active {
  transform: translateY(-2px) scale(0.96); /* Efek membal ke dalam */
  box-shadow: 0 5px 15px rgba(5, 117, 230, 0.4);
  filter: brightness(1);
  transition: all 0.1s ease; /* Balik sangat cepat saat dilepas */
}



/* .hero-img::after{
  content: '';
  position: absolute;
  height: 500px;
  width: 500px;
  background-image: conic-gradient(transparent, transparent, transparent #2F24FF);
  animation: animate 4s linear infinite;
  animation-delay: -2s;
  /* top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
  padding: 3px;
  border-radius: 10px; 
}

.hero-img::before{
  content: '';
  position: absolute;
  height: 500px;
  width: 500px;
  background-image: conic-gradient(transparent, transparent, transparent #2F24FF);
  animation: animate 4s linear infinite;
}

@keyframes animate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} */

.glow-flow-wrapper-heavy {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 12px !important;
  padding: 6px;
  background: #000;

  /* Glow luar lebih stabil */
  box-shadow: 0 0 40px rgba(0, 240, 255, 0.25);
}

/* Gambar */
.hero-img {
  position: relative;
  z-index: 5;
  display: block;
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px !important;
}

/* Layer 1 (utama - tajam) */
.glow-flow-wrapper-heavy::before {
  content: '';
  position: absolute;
  width: 140%;
  height: 140%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 220deg,
    #00f0ff 260deg,
    #0575E6 300deg,
    #00f0ff 340deg,
    transparent 360deg
  );
  animation: spinSmooth 6s linear infinite;
  z-index: 2;
}

/* Layer 2 (blur - lembut) */
.glow-flow-wrapper-heavy::after {
  content: '';
  position: absolute;
  width: 140%;
  height: 140%;
  background: conic-gradient(
    from 180deg,
    transparent 0deg,
    transparent 220deg,
    #2f24ff 260deg,
    #00f0ff 300deg,
    #2f24ff 340deg,
    transparent 360deg
  );
  animation: spinSmoothReverse 6s linear infinite;
  z-index: 1;
  filter: blur(12px);
  opacity: 0.7;
}

/* Animasi lebih halus */
@keyframes spinSmooth {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes spinSmoothReverse {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

/* Hover lebih smooth */
.glow-flow-wrapper-heavy:hover {
  transform: scale(1.02);
  transition: transform 0.4s ease;
}

@media only screen and (max-width: 768px) {
  .hero {
    flex-direction: column-reverse;
    text-align: center;
    padding: 140px 20px 60px;
    gap: 30px;
  }
  .hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-text h2 {
    font-size: 23px;
    line-height: 1.4;
  }
  .hero-img {
    width: 100%;
    max-width: 380px;
    align-items: center;
  }


}


/* Hero end*/
/* Fitur */
.fitur {
  padding: 100px 20px; /* Diubah agar tidak terlalu sempit di samping */
  text-align: center;
  background: transparent !important;
}

.fitur-title {
  font-size: 32px;
  margin-bottom: 60px;
  color: white;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

/* Card Fitur Container */
.card-fitur {
  display: flex;
  justify-content: center;
  gap: 20px; /* Disamakan dengan gap pricing */
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

/* KUNCI: Samakan styling dengan Pricing */
.fitur .card {
  background: #0b0f1a;
  border-radius: 40px; /* Samakan kelengkungan dengan pricing */
  padding: 40px 25px;
  flex: 1;
  min-width: 280px;
  max-width: 340px; /* Lebar persis sama dengan pricing */
  min-height: 320px;
  transition: 0.3s ease;
  border: 2px solid rgba(0, 240, 255, 0.35);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.1);
  
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.fitur .card img {
  width: 70px;
  height: 70px;
  background: #3e4347;
  padding: 15px;
  border-radius: 50%;
  margin-bottom: 25px;
}

.card h3 {
  margin-bottom: 28px;
  font-size: 20px;
}

.card p {
  font-size: 15px;     
  line-height: 1.6;
  opacity: 0.9;
}
.fitur .card:hover {
  transform: translateY(-10px); /* Card sedikit naik ke atas */
  border-color: rgba(0, 240, 255, 0.8); /* Border jadi lebih menyala */
  box-shadow: 0 15px 30px rgba(0, 240, 255, 0.2); /* Bayangan lebih dalam */
  background: #0f172a; /* Sedikit mencerahkan background card saat dihover */
  cursor: pointer;
}

/* Opsional: Efek pada gambar/icon saat card di-hover */
.fitur .card:hover img {
  transform: scale(1.1); /* Icon sedikit membesar */
  transition: 0.3s ease;
}

/* Fitur */
/* Perbandingan */
.perbandingan {
  color: white;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

.perbandingan .judul {
  font-size: 28px; 
  margin-bottom: 40px; 
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.perbandingan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Membagi 2 kolom */
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
}

.img-banding {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
}

/* Base Card Style */
.card.banding {
  padding: 40px;
  border-radius: 40px;
  text-align: left;
  position: relative;
  min-height: 250px;
}

/* Card Manual */
.card.manual {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Card Digital */
.card.digital {
  background: rgba(0, 210, 255, 0.05);
  border: 2px solid #00d2ff;
  box-shadow: 0 0 35px rgba(0, 210, 255, 0.35); /* Glow biru menyala */
}

/* Judul Badge  */
.judul-badge {
  display: inline-block;
  padding: 8px 25px;
  border-radius: 15px;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 25px;
}

.judul-badge.putih {
  background: #ffffff;
  color: #000000;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.judul-badge.biru {
  background: linear-gradient(90deg, #00d2ff, #007bff);
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

/* Styling List */
.card.banding ul {
  list-style: none;
  padding: 0;
}

.card.banding ul li {
  font-size: 15px;
  color: #cbd5e0;
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
}

.card.banding ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
}
/* Efek Hover Card Manual (Halus saja) */
.card.manual:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

/* Efek Hover Card Digital (Lebih Menonjol/Glow) */
.card.digital:hover {
  transform: translateY(-10px) scale(1.02); /* Sedikit membesar */
  box-shadow: 0 0 50px rgba(0, 210, 255, 0.5); /* Glow makin terang */
  border-color: #00d2ff;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Responsif Mobile (Tumpuk ke bawah) */
@media (max-width: 768px) {
  .perbandingan-grid {
    grid-template-columns: 1fr;
  }
  
  /* Supaya di HP gambar selalu muncul duluan baru teksnya */
  .item-wrapper:nth-child(3) { order: 4; }
  .item-wrapper:nth-child(4) { order: 3; }
}

.demo h1 {
        font-size: 22px; /* Perkecil ukuran judul di HP */
        padding: 0 10px;
    }

    .demo video {
        width: 95%;      /* Video memenuhi layar HP dengan sedikit margin */
        max-width: none; 
        border-radius: 12px;
    }
/* Perbandingan end*/
.pricing-section {
  background-color: transparent !important; 
  background-image: none !important;
  color: white;
  padding: 80px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.cyan { color: #00e5ff; }

.header-content h1 { 
  font-size: 32px; margin-bottom: 10px; 
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
.header-content p { 
  color: #ffffff; margin-bottom: 50px; 
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}


.flex-wrapper {
  display: flex; /* Aktifkan mode baris */
  flex-direction: row; /* Paksa ke samping (Horizontal) */
  justify-content: center; /* Di tengah-tengah layar */
  align-items: stretch;
  gap: 20px; /* Jarak antar kartu */
  max-width: 1200px;
  margin: 0 auto;

}

.card {
  background: #111a28;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  padding: 40px 25px;
  flex: 1; /* Membuat lebar kartu otomatis membagi 3 */
  max-width: 340px; /* Batasi lebar agar tidak melebar parah */
  position: relative;
  text-align: left;
}

/* Card Best Seller */
.card.active {
  border: 2px solid #00d2ff;
  box-shadow: 0 0 25px rgba(0, 210, 255, 0.2);
}

.best-seller {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: #007bff;
  padding: 5px 25px;
  border-radius: 20px;
  font-size: 13px;
  margin-top: 5px;
}

.best-seller h4 {
  font-weight: bold;
  background-image: linear-gradient(180deg, #00e1ff, #ffffff, #ffffff, #00e1ff, #ffffff); /* Gradien dari kiri ke kanan dengan beberapa warna */
  text-shadow: 3px 6px 9px #000000;
  -webkit-background-clip: text; /* Untuk browser berbasis WebKit (Chrome, Safari) */
  background-clip: text; /* Untuk browser modern lainnya */
  color: transparent; /* Membuat warna teks asli transparan */
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 15px;
}

.crown {
  position: absolute;
  background: transparent;
  top: -17px;
  right: -18px;
  font-size: 60x;
  background-size: 30px;
 
  rotate: 30deg;
}

.tag-box {
  display: inline-block;
  border: 1px solid #0575E6;
  padding: 3px 12px;
  border-radius: 10px;
  font-size: 12px;
  color: #00e5ff;
  margin-bottom: 15px;
  margin-top: 25px;
  margin-right: auto;
}

.tag-box h5 {
  background-image: linear-gradient(180deg, #2b72ba, #00F0FF, #00F0FF, #326da9, #00f0ff); /* Gradien dari kiri ke kanan dengan beberapa warna */
  text-shadow: 3px 6px 9px #000000;
  -webkit-background-clip: text; /* Untuk browser berbasis WebKit (Chrome, Safari) */
  background-clip: text; /* Untuk browser modern lainnya */
  color: transparent; /* Membuat warna teks asli transparan */
}

.card p {
  font-size: 12px;
  line-height: 2.0;
  opacity: 0.85;
  text-align: left;
}

.card-desc p {
  font-size: 13px;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 15px;
  height: 60px; /* Jaga agar teks tidak membuat kartu berantakan */
  text-align: left;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.card-price { 
  font-size: 24px; margin-bottom: 20px; 
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  margin-right: auto;
}

.card-unit { 
  font-size: 14px; 
  color: #ffffff; 
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.card-button {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: none;
  background: radial-gradient(#0575E6, #00F0FF);
  box-shadow: #0575E6;
  color: white;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 210, 255, 0.4);
  margin-bottom: 25px;
}

.card-button3 {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: none;
  background: radial-gradient(#0575E6, #00F0FF);
  box-shadow: #0575E6;
  color: white;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 210, 255, 0.4);
  margin-bottom: 50px;
}

.card-features { 
  list-style: none; 
  padding: 0; 
}

.card-features li {
  font-size: 13px;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.card-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00e5ff;
}
/* Efek Hover pada Card Pricing */
.pricing-section .card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: #00d2ff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  background: #162235; /* Sedikit lebih terang dari warna dasar */
  transition: all 0.3s ease;
}

/* Efek Hover khusus Card Active (Best Seller) */
.card.active:hover {
  box-shadow: 0 0 40px rgba(0, 210, 255, 0.4); /* Glow lebih kuat */
}

/* Efek Hover pada Tombol (Button) */
.card-button:hover, .card-button3:hover {
  filter: brightness(1.1); /* Membuat warna gradient lebih cerah */
  transform: scale(1.03); /* Tombol sedikit membesar */
  box-shadow: 0 8px 20px rgba(0, 210, 255, 0.6);
  transition: 0.2s ease;
}

/* Efek saat Tombol diklik (Click Effect) */
.card-button:active, .card-button3:active {
  transform: scale(0.95); /* Efek membal saat diklik */
}
@media (max-width: 768px) {
  /* Container Utama */
  .flex-wrapper {
    display: flex;
    flex-direction: column;    /* Menumpuk kartu ke bawah */
    align-items: center;       /* Mengetengahkan kartu */
    overflow-x: visible;       /* Matikan scroll horizontal */
    padding: 30px 20px;
    gap: 30px;                 /* Jarak antar kartu yang menumpuk */
    scroll-snap-type: none;    /* Matikan fitur magnet scroll */
  }

  /* Hilangkan limit lebar agar kartu menyesuaikan layar HP */
  .card {
    width: 100%;               /* Kartu memenuhi lebar layar */
    max-width: 350px;          /* Batas maksimal agar tidak terlalu lebar di tablet */
    flex: none;                /* Matikan fungsi flex-grow agar ukuran stabil */
    min-height: auto;
    margin: 0 auto;
    scroll-snap-align: none !important;
  }

  /* Sembunyikan horizontal scrollbar (jika masih ada) */
  .flex-wrapper::-webkit-scrollbar {
    display: none;
  }


  /* Efek visual: Kartu yang sedang di tengah sedikit lebih besar */
  .card.touch-active {
  transform: translateY(-12px) scale(1.02);
  border-color: #00d2ff;
  box-shadow: 0 15px 35px rgba(0, 210, 255, 0.4);
  background: #162235;
}

  /* Tipografi Dinamis */
  .card h1 {
    font-size: 24px !important;
    line-height: 1.2;
  }

  .card-price {
    font-size: 20px !important;
  }

  /* Tombol 'Pilih Paket' agar lebih lebar di HP */
  .btn-pilih {
    width: 100%;
    padding: 12px;
    font-size: 16px;
  }
  
}

.Footer {
  background-color: transparent !important; 
  padding: 50px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: white;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 60px;
  padding: 60px 50px 30px 50px;
  color: white; /* teks*/
  background: 
    linear-gradient(rgba(118, 118, 118, 0.5), rgba(118, 118, 118, 0.5)), 
    linear-gradient(to bottom, #004488, #00F0FF 75%);
    background-blend-mode: multiply;
}
  


.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  text-align: left;
  margin-bottom: 40px;
}


.footer-col {
  flex: 1;
  min-width: 150px;
}

.brand-info {
  flex: 2; /* Kolom logo lebih lebar */
}

.footer-logo {
  height: 40px;
  margin-bottom: 20px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 25px;
}

.footer-col h3 {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  font-size: 14px;
  color: #e0e0e0;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.footer-col ul li:hover {
  color: #00d2ff;
}

/* Icon Sosial Media Circle */
.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons img {
  width: 38px;
  height: 38px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  padding: 8px;
  padding: 8px;
  transition: all 0.3s ease;
  
  /* Efek Glow (Bercahaya) agar terlihat BOLD */
  filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.5));

}

.social-icons img:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Spesifik kolom kontak */
.contact-col {
  flex: 2.5;
}

.icon {
  width: 20px;
}

.address {
  align-items: flex-start !important;
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 50px;
  text-align: center;
}

.footer-bottom hr {
  
  
  border: 0; /* Hilangkan border bawaan browser */
  height: 1px; /* Ubah ke 2px atau 3px agar lebih TEBAL */
  background-color: #ffffff; /* Gunakan putih solid tanpa transparansi agar warnanya BOLD */
  margin-bottom: 25px;
  opacity: 1; /* Pastikan tidak transparan */
  width: 100%; /* Memanjang penuh */}

.footer-bottom p {
  font-size: 12px;
  color: #fffdfd;
}
.popup-overlay{
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:9999;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    opacity:0;
    visibility:hidden;
    transition: all 0.3s ease;
    
}
.popup-overlay.active{
    opacity:1;
    visibility:visible;
    display:flex;
}

.popup-box{
    position: relative;
    width:950px;
    background:#000000;
    border-radius:20px;
    padding:30px;

    transform: scale(0.9);
    transition: all 0.3s ease;
}

.popup-overlay.active .popup-box{
    transform: scale(1);
}

.close-popup{
    position:fixed;
    top:15px;
    right:20px;
    background:none;
    border:none;
    font-size:22px;
    color:white;
    cursor:pointer;
    z-index:999;
}

/* html{
  overflow-y: scroll;
}
body.no-scroll{
  overflow: hidden;
} */
/* .opsi-container{
    display:flex;
    gap:40px;
    align-items:center;
} */
 /* .opsi-container{
    display:grid;
    grid-template-columns: 1fr 1fr;
    align-items:stretch;
} */
.opsi-container{
    display:grid;
    grid-template-columns: 1fr 1fr;
    align-items:stretch;
    gap:20px;
}

.opsi-left{
    flex:1;
    padding:30px;
    padding-right:30px;
}

/* .opsi-right{
    width:100%;
    height:100%;
    overflow:hidden;
    border-radius:16px;
} */
 .opsi-right{
    width:100%;
    height:100%;
    overflow:hidden;
    border-radius:16px;
}

.opsi-img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.package-selector{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin:20px 0;
} 

.btn-opsi{
  padding:12px 18px;
  border-radius:12px;
  border:none;
  width:100%;
  text-align:left;
  background: radial-gradient(#3d3d3d, #747474);
  color:white;
  font-weight:bold;
  cursor:pointer;
}

.btn-opsi.active{
  /* background: linear-gradient(135deg, #00c6ff, #0072ff); */
  background: radial-gradient(#0575E6, #00F0FF);
}

.btn-opsi:hover{
  background: radial-gradient(#0575E6, #00F0FF);
}
.benefit-container{
    margin-top:20px;
}

.benefit-container ul{
    margin-top:10px;
}

.benefit-container li{
    margin-bottom:6px;
}
.btn{
    display:inline-block;
    margin-top:20px;
    background:#686868;    
    color:rgb(255, 255, 255);
    padding:10px 20px;
    border-radius:8px;
    text-decoration:none;
    font-weight:400;
    width: 100%;
    text-align: center;
}
.highlight{
    color:#2ed3d6;
}
.text-popup {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: smaller;
  text-align: center;
  margin-top: 20px;
}
.btn-opsi.best{
  border:2px solid #FFD700;
  position:relative;
}
.badge-best{
  position:absolute;
  top:-8px;
  right:10px;
  background:#00F0FF;
  background-image: linear-gradient(180deg, #2b72ba, #54ddff);
  color:white;
  font-size:10px;
  padding:2px 8px;
  border-radius:10px;
  font-weight:600;
  text-shadow: 3px 6px 9px #000000;
}
.fade-scroll{
  opacity:0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-scroll.show{
  opacity:1;
  transform: translateY(0);
}
/* Styling khusus untuk link alamat */
.address-link {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 8px;
} 
/* ================= MOBILE VERSION ================= */
@media (max-width:768px){

.popup-box{
    width:90%;
    padding:18px;
    border-radius:16px;
}

.opsi-container{
    display:flex;
    flex-direction:column;
    align-items:center;
}

.opsi-right{
    display:none;
}

.opsi-left{
    padding:10px;
    width:100%;
}

/* Judul diperkecil dan dirapikan */
.opsi-left h1,
.opsi-left h2{
    font-size:18px;
    line-height:1.3;
    margin-bottom:10px;
    text-align:left;
}

.opsi-left h3{
    font-size:15px;
    margin-bottom:6px;
}

.opsi-left p{
    font-size:13px;
    line-height:1.5;
    margin-bottom:10px;
    text-align:left;
}

.package-selector{
    gap:8px;
    margin:12px 0;
    width:100%;
}

.btn-opsi{
    padding:10px 14px;
    font-size:13px;
    text-align:left;
}

.benefit-container{
    text-align:left;
}

.benefit-container ul{
    padding-left:18px;
}

.benefit-container li{
    font-size:12.5px;
    margin-bottom:4px;
}

.btn{
    padding:10px;
    font-size:13px;
    width:100%;
    text-align:center;
}

.text-popup{
    font-size:11.5px;
    margin-top:15px;
}

.close-popup{
    top:10px;
    right:12px;
    font-size:18px;
}

}

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

.footer-content{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:25px;
}

/* logo */
.brand-info{
  grid-column:1 / -1;
}

/* navigasi kiri */
.footer-nav{
  grid-column:1;
  grid-row:2;
}

/* perusahaan kanan */
.footer-company{
  grid-column:2;
  grid-row:2;
}

/* hubungi kami */
.contact-col{
  grid-column:1 / -1;
  grid-row:3;
}

/* copyright */
.footer-bottom{
  grid-column:1 / -1;
}

}
html {
  scroll-behavior: smooth;
}
.demo iframe{
  width:100%;
  max-width:900px;
  height:500px;
  border-radius:10px;
}