:root {
  --bg-0: #fbfbff;
  --bg-1: #f6f8ff;
  --bg-2: #faf7ff;
  --surface-0: rgba(255, 255, 255, 0.6);
  --surface-1: rgba(255, 255, 255, 0.78);
  --border-0: rgba(17, 24, 39, 0.12);
  --text-0: rgba(17, 24, 39, 0.92);
  --text-1: rgba(17, 24, 39, 0.68);
  --accent-0: #8b5cf6;
  --accent-1: #6d28d9;
  --accent-2: #a78bfa;
  --shadow-0: 0 18px 60px rgba(17, 24, 39, 0.14);
  --shadow-glow: 0 18px 80px rgba(139, 92, 246, 0.16);
}

html {
  background: #f7f5ff;
}

body {
  font-family: "Poppins", "Inter", "Public Sans", system-ui, -apple-system,
    "Segoe UI", Roboto, Arial, sans-serif;
  scroll-behavior: smooth;
  
  background: linear-gradient(
    180deg,
    var(--bg-0) 0%,
    var(--bg-1) 60%,
    var(--bg-2) 100%
  );
  background-attachment: fixed;
  color: var(--text-0);
  overflow-x: hidden;
  position: relative;
  isolation: isolate;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(
      1100px 680px at 18% 12%,
      rgba(139, 92, 246, 0.12),
      transparent 64%
    ),
    radial-gradient(
      920px 640px at 88% 18%,
      rgba(167, 139, 250, 0.1),
      transparent 62%
    ),
    radial-gradient(
      900px 720px at 60% 92%,
      rgba(109, 40, 217, 0.06),
      transparent 62%
    );
  opacity: 0.4;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.1;
  background: repeating-linear-gradient(
    0deg,
    rgba(17, 24, 39, 0.045) 0px,
    rgba(17, 24, 39, 0.045) 1px,
    transparent 1px,
    transparent 3px
  );
  mix-blend-mode: multiply;
}

.landing-main {
  background: transparent;
}

.landing-hero {
  padding-top: 120px;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding-bottom: 80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
      900px 560px at 22% 20%,
      rgba(139, 92, 246, 0.1),
      transparent 60%
    ),
    radial-gradient(
      900px 560px at 85% 10%,
      rgba(167, 139, 250, 0.08),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(255, 255, 255, 0.86) 38%,
      rgba(255, 255, 255, 0.92) 100%
    );
  backdrop-filter: blur(6px);
}

.home-title {
  font-family: "Poppins", "Inter", sans-serif;
  letter-spacing: -1px;
  font-weight: 800;
  
  font-size: clamp(1.9rem, 3vw, 3rem);
  
  line-height: 1.16;
  padding-bottom: 0.06em;
  display: inline-block;
}

.hero-lead {
  color: var(--text-1);
  max-width: 620px;
  margin: 0;
  font-size: 1.08rem;
}

.hero-buttons {
  margin-top: 1.1rem;
  gap: 0.85rem !important;
}

#beranda .js-hero-cta {
  margin-top: 0;
}

@media (max-width: 768px) {
  .hero-buttons {
    margin-top: 0.9rem;
    gap: 0.7rem !important;
    flex-wrap: nowrap;
  }

  .hero-buttons .btn {
    width: auto;
    flex: 1 1 auto;
    min-width: 0;
    padding: 10px 16px;
    font-size: 0.875rem;
    justify-content: center;
  }
}

.landing-section {
  position: relative;
  
  overflow: visible;
  background: transparent;
}

.landing-section::before {
  
  content: none;
}

.landing-section > .container {
  position: relative;
  z-index: 1;
}


.landing-section--features,
.landing-section--faq,
.landing-section--contact,
.landing-section--about,
.landing-section--stats {
  background: transparent;
}


#tentang.landing-section--about {
  position: relative;
  isolation: isolate;
  background: radial-gradient(
      900px 520px at 18% 18%,
      rgba(139, 92, 246, 0.42),
      transparent 62%
    ),
    radial-gradient(
      900px 560px at 88% 22%,
      rgba(109, 40, 217, 0.36),
      transparent 64%
    ),
    linear-gradient(
      135deg,
      rgba(17, 24, 39, 0.92) 0%,
      rgba(46, 16, 101, 0.9) 45%,
      rgba(17, 24, 39, 0.92) 100%
    );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#tentang.landing-section--about::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.22) 0%,
    rgba(0, 0, 0, 0.12) 50%,
    rgba(0, 0, 0, 0.22) 100%
  );
}


#tentang .about-random-glow-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

#tentang .about-random-glow-blob {
  position: absolute;
  left: 0;
  top: 0;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  filter: blur(16px);
  mix-blend-mode: screen;
  opacity: 0.55;
  transform: translate3d(-200px, -200px, 0) scale(1);
  
  transition: none;
  will-change: transform, opacity;
}

@media (prefers-reduced-motion: reduce) {
  #tentang .about-random-glow-blob {
    transition: none;
  }
}


#tentang.landing-section--about > .container {
  position: relative;
  z-index: 2;
}

#tentang .section-heading,
#tentang .section-paragraph {
  color: rgba(255, 255, 255, 0.92) !important;
}

#tentang .section-paragraph {
  color: rgba(255, 255, 255, 0.84) !important;
}

#tentang .section-kicker {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.18);
}


@media (max-width: 768px) {
  #tentang .section-kicker {
    font-size: 0.76rem;
    padding: 0.32rem 0.75rem;
  }

  #tentang .section-heading {
    font-size: 1.45rem !important;
    line-height: 1.18;
  }

  #tentang .section-paragraph {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  #tentang .about-logo {
    width: 135px;
  }
}

#tentang .about-logo {
  display: block;
  width: 180px;
  height: auto;
  margin: 0.6rem auto 0.9rem auto;
  filter: drop-shadow(0 14px 44px rgba(0, 0, 0, 0.28));
}

#tentang .about-logo:hover {
  filter: drop-shadow(0 18px 60px rgba(0, 0, 0, 0.32));
}

#tentang .about-image {
  border-color: rgba(255, 255, 255, 0.18);
}


#statistik.landing-section--stats {
  position: relative;
  
  --mx: 50%;
  --my: 35%;
  isolation: isolate;
  
  padding-top: clamp(3rem, 5.2vw, 4.6rem) !important;
  padding-bottom: clamp(4.25rem, 6.5vw, 6.2rem) !important;
  background: radial-gradient(
      900px 520px at 18% 18%,
      rgba(139, 92, 246, 0.42),
      transparent 62%
    ),
    radial-gradient(
      900px 560px at 88% 22%,
      rgba(109, 40, 217, 0.36),
      transparent 64%
    ),
    linear-gradient(
      135deg,
      rgba(17, 24, 39, 0.92) 0%,
      rgba(46, 16, 101, 0.9) 45%,
      rgba(17, 24, 39, 0.92) 100%
    );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#statistik.landing-section--stats::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  
  background: linear-gradient(
    180deg,
    rgba(17, 24, 39, 0.72) 0%,
    rgba(17, 24, 39, 0.58) 55%,
    rgba(17, 24, 39, 0.68) 100%
  );
}


@media (hover: hover) and (pointer: fine) {
  #statistik.landing-section--stats::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.22s ease;
    background: radial-gradient(
        640px circle at var(--mx) var(--my),
        rgba(139, 92, 246, 0.32),
        transparent 58%
      ),
      radial-gradient(
        480px circle at var(--mx) var(--my),
        rgba(236, 72, 153, 0.18),
        transparent 62%
      );
    mix-blend-mode: screen;
  }

  #statistik.landing-section--stats.is-pointer-glow::after {
    opacity: 1;
  }
}

#statistik .section-heading,
#statistik .section-subtitle,
#statistik .stat-label,
#statistik .contact-copy,
#statistik .contact-meta {
  color: rgba(255, 255, 255, 0.92) !important;
}

#statistik .stat-angka {
  background: none !important;
  -webkit-text-fill-color: unset !important;
  color: rgba(255, 255, 255, 0.96) !important;
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.35),
    0 0 18px rgba(167, 139, 250, 0.25), 0 0 36px rgba(139, 92, 246, 0.2);
}

#statistik .stat-glass-card {
  background: rgba(255, 255, 255, 0.14) !important;
  border: 1px solid rgba(167, 139, 250, 0.28) !important;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.06), 0 0 44px rgba(139, 92, 246, 0.18),
    0 0 80px rgba(236, 72, 153, 0.08) !important;
  backdrop-filter: blur(18px) saturate(1.12) !important;
  -webkit-backdrop-filter: blur(18px) saturate(1.12) !important;
  transition: transform 0.18s ease, box-shadow 0.22s ease,
    border-color 0.22s ease;
}

#statistik .stat-glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  background: radial-gradient(
      520px 240px at 18% 0%,
      rgba(255, 255, 255, 0.18),
      transparent 62%
    ),
    radial-gradient(
      620px 320px at 88% 18%,
      rgba(167, 139, 250, 0.16),
      transparent 60%
    );
}

#statistik .stat-glass-card:hover {
  background: rgba(255, 255, 255, 0.18) !important;
  border-color: rgba(255, 255, 255, 0.34) !important;
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.08), 0 0 60px rgba(139, 92, 246, 0.26),
    0 0 110px rgba(236, 72, 153, 0.14) !important;
  transform: translateY(-6px) scale(1.03);
}

#statistik .stat-glass-card:hover .stat-angka {
  text-shadow: 0 14px 36px rgba(0, 0, 0, 0.38),
    0 0 22px rgba(167, 139, 250, 0.32), 0 0 44px rgba(139, 92, 246, 0.26);
}

.section-heading {
  font-family: "Poppins", "Inter", sans-serif;
  letter-spacing: -0.6px;
  font-weight: 800;
  color: var(--text-0);
}

.section-subtitle,
.section-paragraph {
  color: var(--text-1);
  font-size: 1.08rem;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 0.6rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(17, 24, 39, 0.78);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(17, 24, 39, 0.12);
  box-shadow: 0 12px 36px rgba(17, 24, 39, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.about-image {
  max-width: 100%;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border-0);
  box-shadow: var(--shadow-0);
}

.about-image--wide {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.navbar-floating {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  
  width: calc(100% - var(--bs-gutter-x, 1.5rem));
  max-width: 100%;
  z-index: 1000;
  border-radius: 0.75rem;
  box-shadow: 0 14px 46px rgba(17, 24, 39, 0.14), var(--shadow-glow);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(17, 24, 39, 0.1);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  min-height: 68px;
  padding: 8px 16px;
}


@media (min-width: 576px) {
  .navbar-floating {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .navbar-floating {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .navbar-floating {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .navbar-floating {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .navbar-floating {
    max-width: 1320px;
  }
}

.navbar-floating.is-scrolled {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(17, 24, 39, 0.12);
  box-shadow: 0 18px 60px rgba(17, 24, 39, 0.16),
    0 18px 90px rgba(139, 92, 246, 0.18);
}

.landing-navbar__inner {
  
  padding-left: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
  padding-right: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
}

.nav-link-ungu {
  color: rgba(17, 24, 39, 0.78) !important;
  position: relative;
  padding: 0.5rem 0.2rem;
  transition: color 0.25s ease;
}

.nav-link-ungu::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-0), var(--accent-1));
  border-radius: 999px;
  transition: width 0.25s ease;
}

.nav-link-ungu:hover {
  color: var(--accent-1) !important;
}

.nav-link-ungu:hover::after {
  width: 100%;
}

.nav-link-ungu.nav-active::after,
.nav-link-ungu.active::after {
  width: 100%;
}

.landing-btn {
  border-radius: 999px;
  font-weight: 600;
  padding: 0.65rem 1.2rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.landing-btn-primary {
  color: rgba(255, 255, 255, 0.95) !important;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  
  background: linear-gradient(90deg, #2e1065, #4c1d95);
  border: 1px solid rgba(46, 16, 101, 0.26);
  
  box-shadow: 0 14px 46px rgba(46, 16, 101, 0.22),
    0 0 0 1px rgba(196, 181, 253, 0.22), 0 0 18px rgba(167, 139, 250, 0.18),
    0 0 42px rgba(139, 92, 246, 0.12);
  backdrop-filter: blur(10px);
  animation: landingBtnIdleGlow 2.6s ease-in-out infinite;
}

@keyframes landingBtnIdleGlow {
  0%,
  100% {
    box-shadow: 0 14px 46px rgba(46, 16, 101, 0.22),
      0 0 0 1px rgba(196, 181, 253, 0.2), 0 0 16px rgba(167, 139, 250, 0.16),
      0 0 36px rgba(139, 92, 246, 0.1);
  }
  50% {
    box-shadow: 0 16px 56px rgba(46, 16, 101, 0.26),
      0 0 0 1px rgba(196, 181, 253, 0.28), 0 0 22px rgba(167, 139, 250, 0.22),
      0 0 54px rgba(139, 92, 246, 0.16);
  }
}

.landing-btn-primary::before {
  
  content: "";
  position: absolute;
  inset: -45% -70%;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255, 255, 255, 0) 38%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0) 62%,
    transparent 100%
  );
  transform: translateX(-55%) rotate(10deg);
  border-radius: inherit;
  mix-blend-mode: overlay;
  will-change: transform, opacity;
}

.landing-btn-primary::after {
  
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(255, 255, 255, 0.12) 35%,
    transparent 70%
  );
  mix-blend-mode: overlay;
}

.landing-btn-primary:hover::before,
.landing-btn-primary:focus-visible::before {
  opacity: 0.8;
  animation: landingBtnShimmer 1.15s ease-in-out both;
}

.landing-btn-primary:hover,
.landing-btn-primary:focus-visible {
  
  box-shadow: 0 18px 64px rgba(46, 16, 101, 0.28),
    0 0 0 1px rgba(196, 181, 253, 0.34), 0 0 26px rgba(167, 139, 250, 0.26),
    0 0 70px rgba(139, 92, 246, 0.18);
}

.landing-btn-primary:active {
  transform: translateY(0px) scale(0.98);
  box-shadow: 0 10px 28px rgba(46, 16, 101, 0.22);
}

.landing-btn-primary:active::after {
  opacity: 1;
  animation: landingBtnRipple 0.45s ease-out both;
}

@keyframes landingBtnRipple {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.55;
  }
  100% {
    transform: translate(-50%, -50%) scale(22);
    opacity: 0;
  }
}

@keyframes landingBtnShimmer {
  0% {
    transform: translateX(-55%) rotate(10deg);
  }
  100% {
    transform: translateX(55%) rotate(10deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-btn-primary {
    animation: none !important;
  }
  .landing-btn-primary::before {
    animation: none !important;
    transition: none !important;
  }
  .landing-btn-primary::after {
    animation: none !important;
    transition: none !important;
  }
  .landing-btn-primary:active {
    transform: none;
  }
}

.landing-btn-secondary {
  color: rgba(17, 24, 39, 0.82) !important;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(17, 24, 39, 0.12);
  box-shadow: 0 12px 36px rgba(17, 24, 39, 0.12);
  backdrop-filter: blur(10px);
}

.landing-btn-primary-outline {
  color: #7c3aed !important;
  background: rgba(255, 255, 255, 0.95);
  border: 1.5px solid #8b5cf6;
  box-shadow: 0 12px 36px rgba(139, 92, 246, 0.15);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.landing-btn-primary-outline:hover,
.landing-btn-primary-outline:focus-visible {
  color: #6d28d9 !important;
  background: rgba(255, 255, 255, 1);
  border-color: #7c3aed;
  box-shadow: 0 18px 60px rgba(139, 92, 246, 0.22),
    0 0 0 1px rgba(139, 92, 246, 0.2);
  transform: translateY(-2px);
}

.landing-btn-primary-outline:active {
  transform: translateY(0);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.18);
}

.landing-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 60px rgba(17, 24, 39, 0.16),
    0 18px 80px rgba(139, 92, 246, 0.16);
}


@media (max-width: 768px) {
  .navbar-floating {
    top: 12px;
    min-height: 56px;
    padding: 6px 12px;
  }

  .navbar-floating .navbar-brand {
    font-size: 1.2rem !important;
  }

  
  .navbar-floating .navbar-brand img {
    height: 30px !important;
    width: auto !important;
  }

  .navbar-floating .navbar-toggler {
    width: 32px;
    height: 32px;
    padding: 4px;
    border: 2px solid #7c3aed;
    border-radius: 6px;
    background: #7c3aed;
    color: white;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.3);
  }

  .navbar-floating .navbar-toggler:hover {
    background: #7c3aed;
    border-color: #7c3aed;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
  }

  .navbar-floating .navbar-toggler-icon {
    width: 16px;
    height: 2px;
    background: white;
    background-image: none !important;
    position: relative;
    transition: all 0.3s;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  }

  .navbar-floating .navbar-toggler-icon::before,
  .navbar-floating .navbar-toggler-icon::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 2px;
    background: white;
    transition: all 0.3s;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  }

  .navbar-floating .navbar-toggler-icon::before {
    top: -5px;
  }

  .navbar-floating .navbar-toggler-icon::after {
    bottom: -5px;
  }
}
.section-py {
  padding: 80px 0;
}
.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #7367f0;
}
.keunggulan-card {
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(90, 24, 154, 0.07);
  border: 1px solid #eee;
  background: #fff;
  transition: box-shadow 0.2s;
}
.keunggulan-card:hover {
  box-shadow: 0 6px 24px rgba(90, 24, 154, 0.13);
}
.faq-item {
  border-bottom: 1px solid #eee;
  padding: 18px 0;
}
.faq-question {
  font-weight: 600;
  color: #7367f0;
}
.contact-card {
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(90, 24, 154, 0.07);
  border: 1px solid #eee;
  background: #fff;
}
.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #7367f0;
}
.animated-gradient-text {
  background: linear-gradient(
    270deg,
    #7c3aed,
    #ec4899,
    #f97316,
    #7c3aed,
    #ec4899
  );
  background-size: 600% 600%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  animation: gradientMove 12s ease infinite;
  font-weight: 700;
}
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.hero-abstract-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-abstract-bg svg {
  width: 100%;
  height: 100%;
  display: block;
}
#beranda {
  position: relative;
  background: transparent;
  overflow: hidden;
}


#beranda .container {
  text-align: left !important;
}

#beranda .d-flex {
  justify-content: flex-start !important;
}

#beranda .text-center {
  text-align: left !important;
}

#beranda .lead {
  margin-left: 0 !important;
  margin-right: auto !important;
}


.hero-image {
  opacity: 1;
  transition: transform 0.3s ease, filter 0.3s ease;
  
  max-width: 90%;
  height: auto;
  margin-left: auto;
  margin-right: -12px;
  filter: none;
}


@media (min-width: 992px) {
  
  #beranda .row.align-items-center > .col-lg-6:first-child {
    padding-right: 2rem;
  }
  #beranda .row.align-items-center > .col-lg-6:last-child {
    padding-left: 2rem;
  }

  .hero-image {
    max-width: 98%;
    
    margin-right: -28px;
    
    transform: translateY(-12px);
  }
}


@media (min-width: 1200px) {
  .hero-image {
    max-width: 104%;
    margin-right: -36px;
    transform: translateY(-16px);
  }
}


.hero-glass-button-wrapper {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-glass-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(17, 24, 39, 0.85) !important;
  text-decoration: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 32px rgba(17, 24, 39, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  animation: heroGlassButtonFloat 3s ease-in-out infinite;
}

.hero-glass-button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.3),
    rgba(236, 72, 153, 0.2)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-glass-button:hover {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 12px 48px rgba(139, 92, 246, 0.18),
    0 0 0 1px rgba(139, 92, 246, 0.2) inset, 0 0 24px rgba(139, 92, 246, 0.1);
  color: rgba(17, 24, 39, 0.95) !important;
}

.hero-glass-button:hover::before {
  opacity: 1;
}

.hero-glass-button:active {
  
}

.hero-glass-button span {
  transition: none;
}

.hero-glass-button svg {
  flex-shrink: 0;
}

@keyframes heroGlassButtonFloat {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 8px 32px rgba(17, 24, 39, 0.12),
      0 0 0 1px rgba(255, 255, 255, 0.2) inset,
      0 0 20px rgba(139, 92, 246, 0.08);
  }
  50% {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(17, 24, 39, 0.16),
      0 0 0 1px rgba(255, 255, 255, 0.25) inset,
      0 0 32px rgba(139, 92, 246, 0.14), 0 0 48px rgba(139, 92, 246, 0.06);
  }
}

.hero-glass-button:hover {
  animation: none;
}


@media (max-width: 991px) {
  .landing-hero {
    padding-bottom: 60px;
  }

  
  #beranda .container {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .hero-glass-button-wrapper {
    bottom: 30px;
  }

  .hero-glass-button {
    padding: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-glass-button span {
    display: none;
  }

  .hero-glass-button svg {
    width: 20px;
    height: 20px;
  }

  #beranda .row {
    text-align: left;
  }

  #beranda .lead {
    margin: 0 0 0.25rem 0 !important;
    text-align: left !important;
  }

  
  #beranda .js-hero-content h1.home-title {
    margin-bottom: 0.4rem !important;
    text-align: left !important;
  }

  #beranda .js-hero-content h2.home-title {
    margin-bottom: 0.75rem !important;
    line-height: 1.35 !important;
    text-align: left !important;
  }

  .js-hero-content {
    text-align: left !important;
  }

  .hero-image {
    display: block !important;
    max-width: 85%;
    width: 85%;
    height: auto;
    margin: 0.25rem auto 0 auto;
    opacity: 1;
  }

  
  #beranda .col-lg-6:first-child {
    width: 100% !important;
    text-align: left !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  #beranda .col-lg-6:last-child {
    width: 100% !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  
  #beranda .js-hero-content .hero-buttons {
    display: none !important;
  }

  
  #beranda .hero-buttons-mobile {
    display: flex !important;
    width: auto;
    max-width: 100%;
    justify-content: center;
    margin-top: 1.5rem;
    gap: 0.4rem !important;
    flex-wrap: nowrap;
  }

  #beranda .hero-buttons-mobile {
    gap: 0.4rem !important;
  }

  #beranda .hero-buttons-mobile .btn {
    width: auto !important;
    flex: 0 1 auto !important;
    min-width: 0 !important;
    padding: 7px 9px !important;
    font-size: 0.7rem !important;
    justify-content: center;
    white-space: nowrap;
    max-width: none !important;
    line-height: 1.2 !important;
  }

  #beranda .hero-buttons-mobile .btn.btn-lg,
  #beranda .hero-buttons-mobile .btn.px-4 {
    padding-left: 9px !important;
    padding-right: 9px !important;
    font-size: 0.7rem !important;
  }

  #beranda .hero-buttons-mobile .btn i {
    font-size: 0.8rem !important;
    margin-right: 3px !important;
  }

  #beranda .hero-buttons-mobile .btn span {
    font-size: 0.7rem !important;
  }
}


@media (min-width: 992px) {
  #beranda .hero-buttons-mobile {
    display: none !important;
  }

  #beranda .js-hero-content .hero-buttons {
    display: flex !important;
  }

  
  #beranda .col-lg-6:last-child {
    flex-direction: row !important;
    align-items: center !important;
  }
}

.hero-sub-title {
  font-size: 1.25rem;
  color: var(--text-1);
}
.features-icon-box img {
  width: 65px;
  height: 65px;
}
.keunggulan-glass-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.78) 0%,
    rgba(255, 255, 255, 0.58) 55%,
    rgba(139, 92, 246, 0.08) 100%
  );
  border-radius: 1.2rem;
  box-shadow: 0 18px 60px rgba(17, 24, 39, 0.12),
    0 18px 80px rgba(139, 92, 246, 0.06);
  border: 1px solid rgba(17, 24, 39, 0.1);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  transition: box-shadow 0.25s, transform 0.18s;
  position: relative;
  overflow: hidden;
}
.keunggulan-glass-card:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1.2rem;
  box-shadow: 0 1px 16px 0 rgba(255, 255, 255, 0.55) inset;
  pointer-events: none;
}
.keunggulan-glass-card::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -60%;
  width: 220%;
  height: 220%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.38) 35%,
    rgba(139, 92, 246, 0.12) 50%,
    rgba(255, 255, 255, 0.38) 65%,
    transparent 100%
  );
  transform: rotate(14deg);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}
.keunggulan-glass-card:hover {
  box-shadow: 0 22px 70px rgba(17, 24, 39, 0.14),
    0 22px 90px rgba(139, 92, 246, 0.1);
  transform: translateY(-7px) scale(1.03);
}
.keunggulan-glass-card:hover::after {
  opacity: 1;
  transform: rotate(14deg) translateX(8%);
}
.keunggulan-glass-card h5 {
  color: var(--text-0);
}
.keunggulan-glass-card p {
  color: var(--text-1);
}
.keunggulan-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 10px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(109, 40, 217, 0.95),
    rgba(167, 139, 250, 0.95)
  );
  border-radius: 50%;
  box-shadow: 0 12px 44px rgba(139, 92, 246, 0.14);
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.keunggulan-glass-card:hover .keunggulan-icon {
  box-shadow: 0 16px 60px rgba(109, 40, 217, 0.18);
  transform: scale(1.08) rotate(-6deg);
}
.keunggulan-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(124, 58, 237, 0.08));
  transition: filter 0.2s;
}


.feature-landscape-card {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.82) 0%,
    rgba(255, 255, 255, 0.6) 55%,
    rgba(139, 92, 246, 0.1) 100%
  );
  border-radius: 1.35rem;
  border: 1px solid transparent;
  box-shadow: 0 18px 60px rgba(17, 24, 39, 0.12),
    0 18px 80px rgba(139, 92, 246, 0.06), 0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 0 0 1px rgba(255, 255, 255, 0.18) inset;
  overflow: hidden;
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  transition: transform 0.22s ease, box-shadow 0.22s ease,
    border-color 0.22s ease, background 0.22s ease;
  will-change: transform;
  height: 100%;
}

.feature-landscape-card::before {
  
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.55),
    rgba(236, 72, 153, 0.26),
    rgba(255, 255, 255, 0.18)
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.75;
}

.feature-landscape-card::after {
  
  content: "";
  position: absolute;
  inset: -35% -60%;
  pointer-events: none;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255, 255, 255, 0) 38%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0) 62%,
    transparent 100%
  );
  transform: translateX(-30%) rotate(8deg);
  opacity: 0;
  filter: blur(0.2px);
}

.feature-landscape-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  padding: 0.38rem 0.6rem;
  border-radius: 999px;
  font-family: "Orbitron", "Poppins", "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: rgba(17, 24, 39, 0.82);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(10px) saturate(1.2);
  -webkit-backdrop-filter: blur(10px) saturate(1.2);
  box-shadow: 0 12px 36px rgba(17, 24, 39, 0.12),
    0 0 28px rgba(139, 92, 246, 0.12);
}


.feature-landscape-card.is-even .feature-landscape-card__badge {
  left: 14px;
  right: auto;
}


@media (max-width: 767px) {
  .feature-landscape-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    right: auto;
    margin: 0;
    display: inline-flex;
    padding: 0.3rem 0.5rem;
    font-size: 0.7rem;
  }
}

.feature-landscape-card:hover {
  transform: translateY(-6px);
  border-color: rgba(109, 40, 217, 0.22);
  box-shadow: 0 26px 90px rgba(17, 24, 39, 0.16),
    0 30px 120px rgba(139, 92, 246, 0.18), 0 0 80px rgba(236, 72, 153, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.44) inset,
    0 0 0 1px rgba(255, 255, 255, 0.22) inset;
}

.feature-landscape-card:hover::after {
  opacity: 0.65;
  animation: featureShimmer 1.35s ease-in-out both;
}

@keyframes featureShimmer {
  0% {
    transform: translateX(-45%) rotate(8deg);
  }
  100% {
    transform: translateX(45%) rotate(8deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .feature-landscape-card,
  .feature-landscape-card:hover {
    transition: none;
    transform: none;
  }
  .feature-landscape-card:hover::after {
    animation: none;
    opacity: 0;
  }
  .feature-landscape-card__img {
    transition: none;
    transform: none;
  }
  .feature-landscape-card__media::after {
    transition: none;
  }
}

.feature-landscape-card__media {
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.45);
  position: relative;
  overflow: hidden;
}

.feature-landscape-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
      420px 240px at 20% 20%,
      rgba(255, 255, 255, 0.22),
      transparent 62%
    ),
    linear-gradient(
      180deg,
      rgba(17, 24, 39, 0.12) 0%,
      transparent 42%,
      rgba(17, 24, 39, 0.18) 100%
    );
  opacity: 0.85;
  transition: opacity 0.22s ease;
}

.feature-landscape-card__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 10;
  transform: scale(1.02);
  transition: transform 0.35s ease, filter 0.35s ease;
  filter: saturate(1.05) contrast(1.03);
}

.feature-landscape-card:hover .feature-landscape-card__img {
  transform: scale(1.08);
  filter: saturate(1.1) contrast(1.06);
}

.feature-landscape-card:hover .feature-landscape-card__media::after {
  opacity: 1;
}

.feature-landscape-card__body {
  
  padding: 2.25rem 1.25rem 1.15rem 1.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(16px) saturate(1.18);
  -webkit-backdrop-filter: blur(16px) saturate(1.18);
}

.feature-landscape-card__title {
  margin: 0 0 0.55rem 0;
  font-family: "Poppins", "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: var(--text-0);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.2;
}

.feature-landscape-card__desc {
  color: var(--text-1);
  font-size: 0.98rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .feature-landscape-card__img {
    aspect-ratio: auto;
    min-height: 200px;
  }
}

@media (max-width: 767px) {
  .feature-landscape-card__body {
    
    padding: 0.85rem 0.9rem;
    text-align: left;
  }
  .feature-landscape-card__desc {
    font-size: 0.8rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }

  .feature-landscape-card__title {
    font-size: 0.92rem;
    line-height: 1.2;
    margin-bottom: 0.45rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  
  .feature-landscape-card__img {
    aspect-ratio: 1 / 1;
  }
}


@media (max-width: 991px) {
  .navbar-floating {
    top: 8px;
  }

  .navbar-floating .navbar-toggler {
    width: 34px;
    height: 34px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(139, 92, 246, 0.75);
    color: white;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease,
      background 0.25s ease;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.18);
  }

  .navbar-floating .navbar-toggler:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 50px rgba(34, 211, 238, 0.16);
    background: rgba(139, 92, 246, 0.85);
  }

  .navbar-floating .navbar-toggler-icon {
    width: 16px;
    height: 2px;
    background: white;
    background-image: none !important;
    position: relative;
    transition: all 0.3s;
  }

  .navbar-floating .navbar-toggler-icon::before,
  .navbar-floating .navbar-toggler-icon::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 2px;
    background: white;
    transition: all 0.3s;
  }

  .navbar-floating .navbar-toggler-icon::before {
    top: -5px;
  }

  .navbar-floating .navbar-toggler-icon::after {
    bottom: -5px;
  }
  .section-py {
    padding: 60px 0;
  }

  
  #beranda h1.animated-gradient-text {
    font-size: 2.35rem !important;
  }

  #beranda h2.animated-gradient-text {
    font-size: 2.35rem !important;
  }

  #beranda .lead {
    font-size: 1rem !important;
    max-width: 600px !important;
  }

  .btn-lg {
    font-size: 1rem !important;
    padding: 0.75rem 1.5rem !important;
  }

  .section-title {
    font-size: 1.8rem !important;
  }

  .keunggulan-glass-card h5 {
    font-size: 1.1rem !important;
  }

  .keunggulan-glass-card p {
    font-size: 0.95rem !important;
  }

  .stat-angka {
    font-size: 1.8rem !important;
  }

  .stat-label {
    font-size: 0.95rem !important;
  }
}
@media (max-width: 768px) {
  #beranda {
    padding-top: 80px !important;
  }

  
  #beranda h1.animated-gradient-text {
    font-size: 1.85rem !important;
    margin-bottom: 0.5rem !important;
  }

  #beranda h2.animated-gradient-text {
    font-size: 1.85rem !important;
    margin-bottom: 1rem !important;
  }

  #beranda .lead {
    font-size: 0.9rem !important;
    max-width: 100% !important;
    margin-bottom: 1.5rem !important;
  }

  .btn-lg {
    font-size: 0.9rem !important;
    padding: 0.6rem 1.2rem !important;
  }

  .section-title {
    font-size: 1.5rem !important;
  }

  
  #keunggulan h2 {
    font-size: 1.8rem !important;
    margin-bottom: 2rem !important;
  }

  
  #faq h2 {
    font-size: 1.8rem !important;
    margin-bottom: 2rem !important;
  }

  #faq .col-lg-4 img {
    width: 200px !important;
    max-width: 100% !important;
    height: auto !important;
  }

  .keunggulan-glass-card {
    padding: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .keunggulan-glass-card h5 {
    font-size: 1rem !important;
    margin-bottom: 0.5rem !important;
  }

  .keunggulan-glass-card p {
    font-size: 0.85rem !important;
  }

  .keunggulan-icon {
    width: 45px !important;
    height: 45px !important;
  }

  .keunggulan-icon img {
    width: 24px !important;
    height: 24px !important;
  }

  .stat-glass-card {
    padding: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .stat-angka {
    font-size: 1.5rem !important;
  }

  .stat-label {
    font-size: 0.85rem !important;
  }

  .stat-icon {
    width: 38px !important;
    height: 38px !important;
  }

  .stat-icon img {
    width: 22px !important;
    height: 22px !important;
  }

  .accordion-button {
    font-size: 1rem !important;
    padding: 0.8rem 1.2rem !important;
  }

  .accordion-body {
    font-size: 0.9rem !important;
  }

  .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
}
#hero-bg-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s;
  transform: scale(1.06);
  filter: saturate(1.05) contrast(1.03) brightness(0.95);
}
.hero-bg-img.active {
  opacity: 1;
  z-index: 1;
}
.stat-glass-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.78) 0%,
    rgba(255, 255, 255, 0.58) 55%,
    rgba(139, 92, 246, 0.08) 100%
  );
  border-radius: 1.1rem;
  box-shadow: 0 18px 60px rgba(17, 24, 39, 0.12),
    0 18px 80px rgba(139, 92, 246, 0.06);
  border: 1px solid rgba(17, 24, 39, 0.1);
  backdrop-filter: blur(12px) saturate(1.1);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
  transition: box-shadow 0.22s, transform 0.16s;
  position: relative;
  overflow: hidden;
}
.stat-glass-card:hover {
  box-shadow: 0 22px 70px rgba(17, 24, 39, 0.14),
    0 22px 90px rgba(139, 92, 246, 0.1);
  transform: translateY(-5px) scale(1.03);
}
.stat-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 8px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(109, 40, 217, 0.95),
    rgba(167, 139, 250, 0.95)
  );
  border-radius: 50%;
  box-shadow: 0 12px 44px rgba(139, 92, 246, 0.12);
}
.stat-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}
.stat-angka {
  font-size: 2.3rem;
  font-weight: 800;
  
  font-family: "Orbitron", "Poppins", "Inter", "Public Sans", sans-serif;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
  letter-spacing: 0.02em;
  background: linear-gradient(
    90deg,
    var(--accent-1),
    var(--accent-0),
    var(--accent-2)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.1em;
  transition: color 0.2s;
}
.stat-label {
  color: rgba(17, 24, 39, 0.74);
  font-size: 1.08rem;
  font-weight: 600;
}
@media (max-width: 991px) {
  .stat-glass-card {
    margin-bottom: 18px;
  }
  .stat-angka {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .stat-angka {
    font-size: 1.5rem;
  }
  .stat-label {
    font-size: 0.98rem;
  }
}


@media (max-width: 576px) {
  #beranda h1.animated-gradient-text {
    font-size: 1.5rem !important;
    line-height: 1.2 !important;
  }

  #beranda h2.animated-gradient-text {
    font-size: 1.5rem !important;
    line-height: 1.2 !important;
  }

  #beranda .lead {
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
  }

  .btn-lg {
    font-size: 0.8rem !important;
    padding: 0.5rem 1rem !important;
    border-radius: 0.5rem !important;
  }

  .section-title {
    font-size: 1.3rem !important;
  }

  .keunggulan-glass-card {
    padding: 0.8rem !important;
    border-radius: 1rem !important;
  }

  .keunggulan-glass-card h5 {
    font-size: 0.9rem !important;
  }

  .keunggulan-glass-card p {
    font-size: 0.75rem !important;
    line-height: 1.3 !important;
  }

  .keunggulan-icon {
    width: 40px !important;
    height: 40px !important;
  }

  .keunggulan-icon img {
    width: 20px !important;
    height: 20px !important;
  }

  .stat-glass-card {
    padding: 0.8rem !important;
    border-radius: 1rem !important;
  }

  .stat-angka {
    font-size: 1.3rem !important;
  }

  .stat-label {
    font-size: 0.75rem !important;
  }

  .stat-icon {
    width: 35px !important;
    height: 35px !important;
  }

  .stat-icon img {
    width: 20px !important;
    height: 20px !important;
  }

  .accordion-button {
    font-size: 0.9rem !important;
    padding: 0.7rem 1rem !important;
  }

  .accordion-body {
    font-size: 0.8rem !important;
    padding: 0.8rem 1rem !important;
  }

  .container {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .py-5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .mb-4 {
    margin-bottom: 1rem !important;
  }

  .mb-5 {
    margin-bottom: 1.5rem !important;
  }

  
  .navbar-floating {
    top: 8px !important;
    min-height: 48px !important;
    padding: 4px 8px !important;
  }

  .navbar-floating .navbar-brand {
    font-size: 1rem !important;
  }

  .navbar-floating .navbar-toggler {
    width: 28px !important;
    height: 28px !important;
    padding: 3px !important;
    background: #7c3aed !important;
    border-color: #7c3aed !important;
  }

  .navbar-floating .navbar-toggler:hover {
    background: #7c3aed !important;
    border-color: #7c3aed !important;
    box-shadow: 0 3px 10px rgba(124, 58, 237, 0.4) !important;
  }

  .navbar-floating .navbar-toggler-icon {
    width: 14px !important;
  }

  .navbar-floating .navbar-toggler-icon::before,
  .navbar-floating .navbar-toggler-icon::after {
    width: 14px !important;
  }

  
  #keunggulan h2 {
    font-size: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  #faq h2 {
    font-size: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  #faq .col-lg-4 img {
    width: 150px !important;
  }
}



.landing-section::before {
  
}

.faq-illustration {
  width: 300px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 70px rgba(0, 0, 0, 0.35))
    drop-shadow(0 18px 70px rgba(139, 92, 246, 0.16));
}

.landing-accordion-item {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.82) 0%,
    rgba(255, 255, 255, 0.62) 55%,
    rgba(139, 92, 246, 0.1) 100%
  );
  border: 1px solid transparent;
  box-shadow: 0 18px 60px rgba(17, 24, 39, 0.12),
    0 18px 80px rgba(139, 92, 246, 0.08), 0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 0 0 1px rgba(255, 255, 255, 0.18) inset;
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.landing-accordion-item::before {
  
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.55),
    rgba(236, 72, 153, 0.26),
    rgba(255, 255, 255, 0.18)
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.75;
}

.landing-accordion-item::after {
  
  content: "";
  position: absolute;
  inset: -35% -60%;
  pointer-events: none;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255, 255, 255, 0) 38%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0) 62%,
    transparent 100%
  );
  transform: translateX(-30%) rotate(8deg);
  opacity: 0;
  filter: blur(0.2px);
}

@media (hover: hover) and (pointer: fine) {
  .landing-accordion-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 78px rgba(17, 24, 39, 0.14),
      0 26px 110px rgba(139, 92, 246, 0.16), 0 0 80px rgba(236, 72, 153, 0.08),
      0 1px 0 rgba(255, 255, 255, 0.44) inset,
      0 0 0 1px rgba(255, 255, 255, 0.22) inset;
  }

  .landing-accordion-item:hover::after {
    opacity: 0.65;
    animation: featureShimmer 1.35s ease-in-out both;
  }
}

.landing-accordion-btn {
  background: rgba(255, 255, 255, 0.58) !important;
  color: var(--text-0) !important;
  font-weight: 700;
  font-size: 1.12rem;
  padding: 1.1rem 1.5rem;
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
}

.landing-accordion-btn:focus {
  box-shadow: 0 0 0 0.25rem rgba(139, 92, 246, 0.18) !important;
}

.landing-accordion-btn:not(.collapsed) {
  background: rgba(139, 92, 246, 0.22) !important;
  color: rgba(17, 24, 39, 0.92) !important;
}

.landing-accordion-btn::after {
  filter: none;
  opacity: 0.85;
  transform: scale(0.95);
}

.landing-accordion-body {
  color: var(--text-1);
  background: rgba(255, 255, 255, 0.54);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0 0 1rem 1rem;
  font-size: 1.02rem;
  backdrop-filter: blur(16px) saturate(1.1);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
}

.contact-copy {
  color: var(--text-1);
  font-size: 1.08rem;
}

.contact-meta {
  color: rgba(17, 24, 39, 0.68);
  font-size: 1.02rem;
}

.contact-meta strong {
  color: rgba(17, 24, 39, 0.88);
}

.contact-map-card {
  position: relative;
  border-radius: 1.35rem;
  padding: 10px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid transparent;
  box-shadow: 0 22px 70px rgba(17, 24, 39, 0.14),
    0 22px 90px rgba(139, 92, 246, 0.12);
  backdrop-filter: blur(16px) saturate(1.18);
  -webkit-backdrop-filter: blur(16px) saturate(1.18);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.contact-map-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.55),
    rgba(236, 72, 153, 0.22),
    rgba(255, 255, 255, 0.2)
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.85;
}

@media (hover: hover) and (pointer: fine) {
  .contact-map-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 92px rgba(17, 24, 39, 0.18),
      0 30px 120px rgba(139, 92, 246, 0.18), 0 0 90px rgba(236, 72, 153, 0.08);
  }
}

.contact-map {
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 60px rgba(17, 24, 39, 0.12);
  background: rgba(255, 255, 255, 0.25);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: saturate(1.04) contrast(1.02);
}


.contact-illustration {
  
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .contact-illustration {
    width: 100%;
  }
}


.contact-illustration-wrap {
  position: relative;
  border-radius: 1.35rem;
  padding: 14px;
  overflow: hidden;
  background: radial-gradient(
      900px 520px at 18% 18%,
      rgba(139, 92, 246, 0.42),
      transparent 62%
    ),
    radial-gradient(
      900px 560px at 88% 22%,
      rgba(109, 40, 217, 0.36),
      transparent 64%
    ),
    linear-gradient(
      135deg,
      rgba(17, 24, 39, 0.92) 0%,
      rgba(46, 16, 101, 0.9) 45%,
      rgba(17, 24, 39, 0.92) 100%
    );
  box-shadow: 0 22px 70px rgba(17, 24, 39, 0.14),
    0 22px 90px rgba(139, 92, 246, 0.12);
}

.contact-illustration-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(17, 24, 39, 0.72) 0%,
    rgba(17, 24, 39, 0.58) 55%,
    rgba(17, 24, 39, 0.68) 100%
  );
  opacity: 0.55;
}

.contact-illustration-wrap .contact-illustration {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .contact-illustration-wrap {
    padding: 10px;
    border-radius: 1.15rem;
  }
}


.landing-footer__copyright {
  font-size: 0.93rem;
  color: #b7aaff;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .landing-footer__details {
    display: none !important;
  }

  .landing-footer__copyright {
    margin-top: 0;
    font-size: 0.88rem;
    color: rgba(224, 230, 237, 0.9);
  }

  .landing-footer {
    padding: 14px 0 !important;
  }
}


@media (max-width: 768px) {
  
  #faq.landing-section--faq {
    padding-bottom: 0.85rem !important;
  }
  #hubungi.landing-section--contact {
    padding-top: 0.85rem !important;
  }

  
  #faq > .container > .row.mb-5 {
    margin-bottom: 1.25rem !important;
  }

  
  #hubungi > .container > .row.mb-4 {
    margin-bottom: 1.4rem !important;
  }

  
  #hubungi .contact-copy {
    font-size: 0.95rem;
    line-height: 1.55;
  }
  #hubungi .contact-meta {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}


@media (min-width: 769px) {
  #faq.landing-section--faq {
    padding-bottom: 1.5rem !important;
  }
  #hubungi.landing-section--contact {
    padding-top: 1.5rem !important;
  }
}
