body {
  margin: 0;
  background-color: #020617;
  max-width: 100%;
  background: 
    radial-gradient(circle at 0% 0%, rgba(56, 189, 248, 0.15) 0%, transparent 35%),
    radial-gradient(circle at 100% 100%, rgba(15, 23, 42, 1) 0%, transparent 100%),
    linear-gradient(135deg, #020617 0%, #0f172a 100%);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #ffffff;
  overflow: hidden;
}

/* === CURSOR METEOR TRAIL === */
.cursor-glow {
  position: fixed;
  width: 20px;     
  height: 20px;
  background: radial-gradient(circle, rgba(56,189,248,1) 0%, rgba(56,189,248,0.2) 60%, transparent 100%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 10000;
  filter: drop-shadow(0 0 10px rgba(56,189,248,0.8));
}

/* --- HEADLINE IMPROVEMENT --- */
#headline {
  position: fixed;
  inset: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 80%;
  max-width: 1100px;
  text-align: center;
  justify-content: center
}

.word-container { 
  display: inline-block; 
  overflow: hidden; 
  margin-right: 0.3em;
  vertical-align: middle;
}

.word {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%) rotateX(-30deg);
  transition: 
    transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), 
    opacity 1s ease;
}

.word.show { 
  opacity: 1; 
  transform: translateY(0) rotateX(0deg); 
}

.highlight {
  color: #38bdf8;
  font-weight: 700;
  position: relative;
  text-shadow: 0 0 20px rgba(56, 189, 248, 0.5);
}

/* --- ONE DREAM REVEAL (BOX) --- */
.one-dream-wrapper {
  position: fixed;
  inset: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  display: block;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.reveal-box {
  width: 300px;
  height: 60px;
  background: white;
  transform: scaleX(0);
  /* overflow: hidden; */
  transform-origin: right;
  transition: transform 0.8s cubic-bezier(0.85, 0, 0.15, 1);
  margin: 0 auto;
  margin-bottom: 20px;
  /* z-index: 1; */
}

/* Kotak muncul */
.one-dream-wrapper.active .reveal-box {
  transform: scaleX(1);
  transform-origin: left;
}

/* Kotak hilang */
.reveal-box.hide {
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

/* Text */
.one-dream-text {
  position: relative;
  z-index: 2;
  color: #e6f2fa;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.5em;
  white-space: nowrap;
  display: block;
  opacity: 0;
  margin-top: 12px;
  transition: opacity 0.6s ease;
}

.one-dream-text.show {
  display: block;
  animation: textFade 0.6s ease forwards;
}
@keyframes textFade {
  to {
    opacity: 1;
  }
}

#canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* WORD DISAPPEAR */
.word.disappear {
  opacity: 0;
  transform: translateY(-120%) rotateX(30deg);
  transition: 
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.6s ease;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;      
  padding: 0 24px;
  display: flex;
  align-items: center;  
  justify-content: space-between;
  background: #0a2540;
  z-index: 14000;
  opacity: 0;
  /* transform: translateY(-100%); */
  transition: all 0.6s ease;
}
.navbar.show {
  opacity: 1;
  transform: translateY(0);
}
/* Logo container */
.logo-bg {
  width: 130px;
  height: 60px;         
  background: #e6f2fa;
  border-radius: 8px;
  display: flex;
  align-items: center;   
  justify-content: center; 

  margin-left: 0;      
}

/* Logo image */
.logo-bg img {
  max-width: 110px;    
  height: auto;
  filter: drop-shadow(0 0 2px rgba(10, 20, 40, 0.8));
  margin: 0;
}

/* Hamburger */
.hamburger {
  width: 40px;
  height: 30px;
  background: transparent;
  border: none;
  margin-right: 80px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  z-index: 1100;
}

.hamburger span {
  display: block;
  height: 4px;
  background-color: #e6f2fa;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger:hover span {
  background-color: #a0c4ff;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 40, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    backdrop-filter 0.45s ease;
  z-index: 1040;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Menu items */
.nav-menu {
  position: fixed;
  top: 0;
  right: 0px;
  width: 300px;
  height: 100vh;
  background: linear-gradient(
    180deg,
    #0a2540 0%,
    #081c33 100%
  );
  color: #e6f2fa;
  list-style: none;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: auto;
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s ease;
  z-index: 1050;
}

.nav-menu.active {
  transform: translateX(0);
  right: 0;
  opacity: 1;
}


/* JUDUL */
.nav-menu li h2 {
  margin: 0 0 12px 0;
  font-size: 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 8px;
}

/* LINK */
.nav-menu li a {
  color: #e6f2fa;
  text-decoration: none;
  font-size: 0.95rem;
  padding: 8px 0;
  display: block;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.nav-menu li a:hover {
  color: #66c2ff;
  padding-left: 6px;
}

/* --- FINAL CONTENT --- */
.site-content {
  position: relative;
  padding-top: 80px;
  z-index: 10;
  opacity: 0;
  min-height: 100vh;
  transform: translateY(40px);
  transition: 1.2s ease;
}

.site-content.show {
  opacity: 1;
  transform: none;
}

.section {
  min-height: 80vh;
  padding: 80px 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.site-content h2 {
  font-size: 5rem;
  letter-spacing: -2px;
  line-height: 1.1;
  text-shadow:
    0 10px 40px rgba(0,0,0,0.6);
  background: linear-gradient(
    120deg,
    #ffffff 0%,
    #bae6fd 40%,
    #38bdf8 70%,
    #ffffff 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.site-content h2 strong {
  background: linear-gradient(90deg, #38bdf8, #7dd3fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(56,189,248,0.4);
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.1); opacity: 0.6; }
  100% { transform: scale(1); opacity: 0.4; }
}
body.menu-open .site-content {
  filter: blur(2px);
  transform: scale(0.98);
}
body.menu-open{
  overflow: hidden;
}
body.menu-open .paket-section {
  filter: blur(8px);
  transform: scale(0.98);
  pointer-events: none;
}
body.skip-intro .intro-section {
  display: none !important;
}

body.skip-intro .hero-section {
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
}

#companyName {
  margin-top: -20px;
  font-size: 1.2rem;
  color: #ffffff;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid #38bdf8;
}

@keyframes blink {
  0%, 50%, 100% { border-color: #38bdf8; }
  25%, 75% { border-color: transparent; }
}

#companyName.typing {
  animation: blink 3s step-start infinite;
}
.company-section {
  min-height: 30vh;     
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;    
}
.company-section h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0a2540;      
  line-height: 1.2;
  
  background: linear-gradient(90deg, #38bdf8, #7dd3fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.services-section {
  min-height: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #0a2540;
  padding: 30px 6vw;
  overflow: hidden;
}

.services-grid {
  display: flex;
  gap: 50px;
  animation: slideLeftLoop 160s linear infinite;
  white-space: nowrap;
}

.services-grid p {
  /* background: #38bdf8; */
  font: 2rem 'Poppins', sans-serif;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 500;
  white-space: nowrap;
  /* transform: none;*/
  opacity: 1;
}

@keyframes slideLeftLoop {
  0% {
    transform: translateX(50%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.site-footer {
  background: #020617;
  padding: 80px 8vw 40px;
  border-top: 1px solid rgba(56,189,248,0.15);
  color: rgba(255,255,255,0.7);
}
.site-footer > * {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 8vw;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.logo-box {
  width: 140px;
  height: 70px;
  background: rgba(255,255,255,0.95);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-box img {
  max-width: 110px;
  height: auto;
}

.as-info {
  font-size: 0.85rem;
  line-height: 1.6;
  opacity: 0.7;
}

.as-info a {
  color: #38bdf8;
  text-decoration: none;
}

.footer-col h4 {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-col p {
  font-size: 1rem;
  line-height: 1.7;
}

/* BOTTOM */
.footer-bottom {
  /* text-align: center; */
  font-size: 0.9rem;
  opacity: 0.5;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 6px;
}


/* Paket-paket BUMINEt */
.paket-section{
  margin-bottom: 130px;
  transition: filter 0.4s ease, transform 0.4s ease;
}
.paket-title-wrapper h2{
  margin-top: 130px;
  font-size: 2.5rem;
  letter-spacing: -2px;
  line-height: 1.1;
  text-shadow:
    0 10px 40px rgba(0,0,0,0.6);
  background: linear-gradient(
    120deg,
    #ffffff 0%,
    #bae6fd 40%,
    #38bdf8 70%,
    #ffffff 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}
.paket-title-wrapperh2 strong{
  background: linear-gradient(90deg, #38bdf8, #7dd3fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(56,189,248,0.4);
}
.paket-title-wrapper p{
  text-align: center;
  margin-top: 0;
  margin-bottom: 80px;
}

.paket-hero {
  height: 110px;
  width: 100%;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 rgba(255,255,255,0.1);
}

.paket-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 20%,
    rgba(255,255,255,0.35),
    transparent 80%
  );
  transform: translateX(-100%);
  animation: shine 4s infinite;
}

@keyframes shine {
  100% { transform: translateX(100%); }
}


.card-paket.dua .paket-hero {
  background: linear-gradient(135deg, #56ab2f, #a8e063);
}

.card-paket.tiga .paket-hero {
  background: linear-gradient(135deg, #f7971e, #ffd200);
}

.card-paket.empat .paket-hero {
  background: linear-gradient(135deg, #8e2de2, #4a00e0);
}

.row-paket {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  padding: 40px 10px;
  /* background-color: #ffffff; */
  font-family: 'Inter', sans-serif;
}

.card-paket {
  position: relative;
  width: 270px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
    backdrop-filter: blur(12px);
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.95),
    rgba(255,255,255,0.85)
  );
  border-radius: 20px;
  box-shadow:
    0 10px 30px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.6);
  transition: all 0.35s ease;
}

.card-paket:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow:
    0 30px 70px rgba(0,0,0,0.18);
}
.card-paket.tiga {
  transform: scale(1.1);
  box-shadow:
    0 0 0 1px rgba(255,200,0,0.4),
    0 30px 70px rgba(255, 165, 0, 0.45);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: scale(1.1) translateY(0); }
  50% { transform: scale(1.1) translateY(-6px); }
}

.card-paket::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  z-index: 1;
}

.card-paket.dua .subscribe-btn {
  background: linear-gradient(135deg, #56ab2f, #a8e063);
  color: #ffffff;
  border: none;
}

.card-paket.dua .subscribe-btn:hover {
  filter: brightness(1.1);
  color: #0f172a;
}
.card-paket.empat .subscribe-btn {
  background: linear-gradient(135deg, #7f00ff, #3f00ff);
  color: #ffffff;
  border: none;
}

.card-paket.empat .subscribe-btn:hover {
  filter: brightness(1.1);
  color: #0f172a;
}

.card-paket.dua, 
.card-paket.empat {
  background: #fafafa;
  border: 1px solid #eeeeee;
}
.card-paket.dua,
.card-paket.empat {
  transition: none !important;
}

.card-paket.dua:hover,
.card-paket.empat:hover {
  transform: none !important;
  box-shadow:
    0 10px 30px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.6);
}

.price-rp.dua,
.price-rp.empat {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: #333;
  color: #333;
}
.price-rp.tiga {
  background: linear-gradient(to right, #f7971e, #ffd200);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subscribe-btn.tiga-btn {
  background: linear-gradient(to right, #f7971e, #ffd200);
  color: #fff;
}

.subscribe-btn:hover {
  filter: brightness(1.1);
  transform: scale(1.02);
  transition: 0.3s;
}
.subtitle {
  font-size: 13px;
  color: #777;
  text-align: center;
  margin-bottom: 2px;
}
.speed {
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 2px;
  color: #222;
  font-weight: bold;
}

.price {
  font-size: 24px;
  font-weight: bold;
  color: #1976d2;
  margin-bottom: 3px;
}
.price-rp {
  color: #1976d2;
  font-weight: bold;
}

.price-month {
  color: #888888;
  font-size: 12px;
  margin-left: 1px;
}

.note {
  font-size: 11px;
  color: #888;
  margin-bottom: 8px;
}

.subscribe-btn {
  color: white;
  padding: 10px 16px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  margin-bottom: 12px;
  width: 70%;
}

.subscribe-btn:hover {
  /* background: #1256a0; */
  color: #1256a0;
}
.card-paket.dua .subscribe-btn:hover,
.card-paket.empat .subscribe-btn:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}
.benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  color: #444;
  font-size: 12px;
  overflow-y: auto;
  max-height: 180px;
}

.benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  overflow-y: auto;
  max-height: 180px;
}
.keuntungan{
  margin-top: 5px;
  margin-bottom: 10px;
  text-align: left;
  color: #333333;
  font-size: 16px;
}
.icon {
  font-size: 23px;
}
/* ===== RESPONSIVE MEDIA ===== */

/* ------------------ MOBILE ------------------ */
@media (max-width: 639px) {
  .navbar {
    padding: 0 12px;
    height: 60px;
  }
  .logo-bg {
    width: 100px;
    height: 45px;
  }
  .logo-bg img {
    max-width: 80px;
  }
  .hamburger {
    width: 35px;
    height: 25px;
  }

  .nav-menu {
    width: 80%; 
    right: -80%;
    padding: 16px;
  }
  .nav-menu li h2 {
    font-size: 1rem;
  }
  .nav-menu li a {
    font-size: 0.9rem;
  }

  #headline {
    width: 90%;
    font-size: 1.2rem;
  }
  .one-dream-text {
    font-size: 1.5rem;
    letter-spacing: 0.3em;
  }
  .site-content h2 {
    font-size: 2.5rem;
  }
  .services-grid {
    gap: 20px;
  }
  .services-grid p {
    font-size: 1.2rem;
    padding: 8px 12px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .footer-col h4 {
    font-size: 1rem;
  }
  .footer-col p {
    font-size: 0.85rem;
  }
  .company-section h3 {
    font-size: 1.5rem;
  }
  .paket-section {
    margin-bottom: 80px;
  }

  .paket-title-wrapper h2 {
    font-size: 1.9rem;
    margin-top: 80px;
    letter-spacing: -1px;
  }

  .paket-title-wrapper p {
    margin-bottom: 50px;
    font-size: 0.9rem;
  }

  .row-paket {
    flex-direction: column;
    gap: 30px;
    padding: 20px 12px;
  }

  .card-paket {
    width: 100%;
    max-width: 340px;
    transform: none !important;
    animation: none !important;
  }

  /* Card tengah jangan floating di mobile */
  .card-paket.tiga {
    transform: none !important;
    box-shadow: 0 20px 40px rgba(255,165,0,0.35);
  }

  .paket-hero {
    height: 95px;
    font-size: 18px;
  }

  .price {
    font-size: 22px;
  }

  .subscribe-btn {
    width: 100%;
  }

  .benefits {
    max-height: unset;
  }
}

/* ------------------ TABLET ------------------ */
@media (min-width: 640px) and (max-width: 1023px) {
  .navbar {
    padding: 0 20px;
    height: 70px;
  }
  .logo-bg {
    width: 120px;
    height: 50px;
  }
  .logo-bg img {
    max-width: 100px;
  }
  .hamburger {
    width: 38px;
    height: 28px;
  }

  .nav-menu {
    width: 300px;
    right: -300px;
    padding: 20px;
  }
  .nav-menu li h2 {
    font-size: 1.1rem;
  }
  .nav-menu li a {
    font-size: 0.95rem;
  }

  #headline {
    width: 85%;
    font-size: 1.5rem;
  }
  .one-dream-text {
    font-size: 1.8rem;
    letter-spacing: 0.4em;
  }
  .site-content h2 {
    font-size: 3.5rem;
  }
  .services-grid {
    gap: 30px;
  }
  .services-grid p {
    font-size: 1.5rem;
    padding: 10px 16px;
  }
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 30px;
  }
  .company-section h3 {
    font-size: 2rem;
  }
  .row-paket {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    padding: 30px 20px;
  }

  .card-paket {
    width: 100%;
  }

  /* Card tengah tetap standout */
  .card-paket.tiga {
    grid-column: span 2;
    max-width: 420px;
    margin: 0 auto;
  }

  .paket-hero {
    font-size: 19px;
  }

  .subscribe-btn {
    width: 85%;
  }
}

/* ------------------ LAPTOP ------------------ */
@media (min-width: 1024px) and (max-width: 1439px) {
  .navbar {
    height: 75px;
    padding: 0 24px;
  }
  .logo-bg {
    width: 125px;
    height: 55px;
  }
  .logo-bg img {
    max-width: 105px;
  }
  .hamburger {
    width: 40px;
    height: 28px;
  }
  .nav-menu {
    width: 350px;
    right: -350px;
  }
  .site-content h2 {
    font-size: 4rem;
  }
  .services-grid p {
    font-size: 1.8rem;
  }
  .company-section h3 {
    font-size: 2.2rem;
  }
  .paket-section {
    margin-bottom: 120px;
  }

  .paket-title-wrapper h2 {
    font-size: 2.2rem;
    margin-top: 110px;
  }

  .paket-title-wrapper p {
    font-size: 0.95rem;
    margin-bottom: 70px;
  }

  .row-paket {
    gap: 40px;
    padding: 30px 20px;
  }

  .card-paket {
    width: 250px;
  }

  .paket-hero {
    height: 105px;
    font-size: 19px;
  }

  .price {
    font-size: 23px;
  }

  .subscribe-btn {
    width: 80%;
  }
}

/* ------------------ LARGE DESKTOP ------------------ */
@media (min-width: 1440px) {
  .navbar {
    height: 80px;
    padding: 0 24px;
  }
  .logo-bg {
    width: 130px;
    height: 60px;
  }
  .logo-bg img {
    max-width: 110px;
  }
  .hamburger {
    width: 40px;
    height: 30px;
  }
  .nav-menu {
    width: 380px;
    right: -380px;
  }
  .site-content h2 {
    font-size: 5rem;
  }
  .services-grid p {
    font-size: 2rem;
  }
  .company-section h3 {
    font-size: 2.5rem;
  }
 .paket-section {
    margin-bottom: 140px;
  }

  .paket-title-wrapper h2 {
    font-size: 2.8rem;
    margin-top: 150px;
  }

  .paket-title-wrapper p {
    font-size: 1.05rem;
    margin-bottom: 90px;
  }

  .row-paket {
    gap: 60px;
    padding: 50px 40px;
  }

  .card-paket {
    width: 290px;
  }

  .paket-hero {
    height: 120px;
    font-size: 22px;
  }

  .price {
    font-size: 26px;
  }

  .subscribe-btn {
    width: 75%;
  }
}
