:root {
  --bs-primary: #7e57c2;
  --bs-primary-rgb: 126, 87, 194;
  --bs-font-sans-serif: 'Poppins', sans-serif;
  --bs-body-font-family: 'Poppins', sans-serif;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #2c3e50;
  padding-top: 76px;
  /* sesuai tinggi navbar dengan logo 60px */
}

body.app-webview {
  padding-top: 0;
}

html {
  scroll-behavior: smooth;
}

/* ================================================
   DESKTOP SCALING
   Make 100% browser zoom look like the previous 90% browser zoom.
   Previous desktop base: 80% of 16px = 12.8px.
   Target visual base: 12.8px × 90% = 11.52px → font-size: 72%.
   Pixel-based desktop values are adjusted in the desktop overrides below.
   ================================================ */
@media (min-width: 992px) {
  html {
    font-size: 72%;
    /* 1rem = 11.52px instead of 16px */
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: -0.02em;
}

.display-4 {
  font-size: 3rem;
}

@media (min-width: 992px) {
  .display-4 {
    font-size: 3.5rem;
    line-height: 1.15;
  }
}

.bg-gradient-primary {
  background: linear-gradient(135deg, #7e57c2 0%, #5e35b1 100%);
}

.bg-soft-purple {
  background-color: #f2eff9;
}

.shadow-soft {
  box-shadow: 0 10px 40px -10px rgba(126, 87, 194, 0.15) !important;
}

.shadow-hover {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.shadow-hover:hover {
  box-shadow: 0 15px 35px rgba(126, 87, 194, 0.2) !important;
  transform: translateY(-5px);
}

.rounded-xl {
  border-radius: 1.5rem !important;
}

.blob-shape {
  position: absolute;
  filter: blur(60px);
  z-index: 0;
  opacity: 0.5;
}

.blob-1 {
  top: -10%;
  left: -10%;
  width: 320px;
  height: 320px;
  background: rgba(126, 87, 194, 0.3);
  border-radius: 50%;
}

.blob-2 {
  bottom: -10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: rgba(100, 181, 246, 0.2);
  border-radius: 50%;
}

.pattern-bg {
  background-image: radial-gradient(rgba(126, 87, 194, 0.1) 2px, transparent 2px);
  background-size: 30px 30px;
}

.btn {
  border-radius: 0.75rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn.btn-primary {
  background-color: #7e57c2 !important;
  border-color: #7e57c2 !important;
  color: white !important;
  box-shadow: 0 4px 15px rgba(126, 87, 194, 0.3);
}

.btn.btn-primary:hover {
  background-color: #6a45ad !important;
  border-color: #6a45ad !important;
  color: white !important;
  box-shadow: 0 6px 20px rgba(126, 87, 194, 0.4);
  transform: translateY(-2px);
}

.btn.btn-outline-primary {
  color: #7e57c2 !important;
  border-color: #7e57c2 !important;
}

.btn.btn-outline-primary:hover {
  background-color: #7e57c2 !important;
  color: white !important;
}

/* Logo */
.navbar-brand img {
  height: 60px;
  width: auto;
}

.navbar {
  z-index: 1030;
}

.navbar-nav .nav-link {
  font-weight: 500;
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
  color: #4b5563;
}

.navbar-nav .nav-link:hover {
  color: #7e57c2 !important;
  background: rgba(126, 87, 194, 0.1);
}

.navbar-nav .nav-link.active {
  color: #fff !important;
  background: #7e57c2;
  font-weight: 600;
  box-shadow: 0 3px 12px rgba(126, 87, 194, 0.3);
}

@media (max-width: 991.98px) {
  .navbar-toggler {
    position: relative;
    z-index: 1031;
    border-color: rgba(126, 87, 194, 0.25);
    padding: 0.55rem 0.7rem;
  }

  .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(126, 87, 194, 0.18);
  }

  .navbar-collapse {
    width: 100%;
    margin-top: 0.75rem;
    padding: 0.75rem 0 1rem;
    border-top: 1px solid rgba(126, 87, 194, 0.12);
    background: #fff;
  }

  .navbar-nav {
    align-items: stretch !important;
    gap: 0.25rem;
  }

  .navbar-nav .nav-link {
    padding: 0.75rem 1rem;
  }
}

.hero-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f2eff9 0%, #ffffff 100%);
  padding-top: 2.5rem;
  /* jarak antara navbar dan konten hero */
  padding-bottom: 3rem;
}

.hero-section .hero-content {
  position: relative;
  z-index: 2;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  font-size: 0.875rem;
  font-weight: 600;
  color: #7e57c2;
  margin-bottom: 1.5rem;
}

.trust-badge .stars {
  color: #FFC107;
  margin-right: 0.5rem;
}

.hero-mockup-container {
  position: relative;
  z-index: 2;
  height: 400px;
}

.mockup-base {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  position: absolute;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.mockup-header {
  background: #f8f9fa;
  border-bottom: 1px solid #eee;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.mockup-header .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-header .dot-r {
  background: #ff5f56;
}

.mockup-header .dot-y {
  background: #ffbd2e;
}

.mockup-header .dot-g {
  background: #27c93f;
}

.mockup-desktop {
  width: 100%;
  max-width: 450px;
  position: absolute;
  right: 0;
  top: 12px;
  transform: none;
  transition: transform 0.35s ease;
}

.mockup-desktop:hover {
  transform: translateY(-8px);
  z-index: 10;
}

.mockup-desktop .desktop-frame,
.mockup-desktop .desktop-stand,
.mockup-desktop .desktop-foot {
  width: 100%;
}

.mockup-desktop .ui-sidebar {
  width: 20%;
  background: #2c3e50;
  height: 100%;
  float: left;
}

.mockup-desktop .ui-content {
  width: 80%;
  padding: 15px;
  float: left;
}

.mockup-desktop .ui-card {
  background: white;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  margin-bottom: 10px;
}

.mockup-tablet {
  width: 290px;
  height: 196px;
  position: absolute;
  left: 50px;
  bottom: 40px;
  transform: none;
  border: none;
  box-shadow: none;
}

.mockup-tablet:hover {
  transform: translateY(-8px);
  z-index: 10;
}

.mockup-tablet .ui-header {
  height: 40px;
  background: #7e57c2;
}

.mockup-tablet .ui-chart {
  height: 120px;
  background: linear-gradient(180deg, rgba(126, 87, 194, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  border-bottom: 2px solid #7e57c2;
  margin: 15px;
  border-radius: 4px;
}

.mockup-mobile {
  width: 124px;
  height: 252px;
  position: absolute;
  right: 44px;
  bottom: -8px;
  transform: none;
  border-radius: 24px;
  padding: 8px 6px 10px;
}

.mockup-mobile:hover {
  transform: translateY(-8px);
  z-index: 10;
}

.mockup-mobile .ui-pos {
  padding: 10px;
}

.mockup-mobile .ui-item {
  height: 40px;
  background: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  padding: 0 10px;
}

.mockup-mobile .ui-btn {
  height: 40px;
  background: #7e57c2;
  border-radius: 8px;
  margin-top: auto;
}

.feature-card {
  border-radius: 1.25rem;
  border: 1px solid rgba(126, 87, 194, 0.08);
  background: #fff;
  padding: 2rem 1.5rem;
}

.feature-card .icon-box {
  width: 52px;
  height: 52px;
  border-radius: 0.8rem;
  background: #f2eff9;
  color: #7e57c2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

.feature-card:hover .icon-box {
  background: #7e57c2;
  color: white;
  transform: scale(1.1) rotate(5deg);
}

.pricing-section {
  background-color: #faf8fc;
  position: relative;
  z-index: 1;
}

.pricing-card {
  border-radius: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #fff;
  padding: 2.5rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card .price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: #2c3e50;
}

.pricing-card.pro-plan {
  background: #7e57c2;
  color: white;
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(126, 87, 194, 0.3);
  z-index: 2;
  border: none;
}

.pricing-card.pro-plan .text-muted {
  color: rgba(255, 255, 255, 0.8) !important;
}

.pricing-card.pro-plan .price-amount {
  color: white;
}

.pricing-card.pro-plan .bi-check-circle-fill {
  color: #fff !important;
}

.pricing-card.pro-plan .btn {
  background: white;
  color: #7e57c2;
}

.pricing-card.pro-plan .btn:hover {
  background: #f8f9fa;
}

.faq-section {
  background-color: white;
}

/* FAQ list — vanilla JS accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(126, 87, 194, 0.1);
}

.faq-item.faq-open {
  box-shadow: 0 4px 20px rgba(126, 87, 194, 0.12);
  border-color: rgba(126, 87, 194, 0.2);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  text-align: left;
  font-family: inherit;
  font-size: 0.975rem;
  font-weight: 600;
  color: #2c3e50;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.faq-question:hover {
  color: #7e57c2;
}

.faq-open .faq-question {
  color: #7e57c2;
  background: #f8f5ff;
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f2eff9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #7e57c2;
  transition: transform 0.3s ease, background 0.2s ease;
}

.faq-open .faq-icon {
  transform: rotate(180deg);
  background: #7e57c2;
  color: #fff;
}

/* .faq-answer — always in DOM, height animated via max-height */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.35s ease;
}

.faq-item.faq-open .faq-answer {
  max-height: 500px;
  /* larger than any realistic answer */
  opacity: 1;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.925rem;
  line-height: 1.75;
  color: #6b7280;
}


/* ================================================
   PRICING SECTION — Trial + Subscription cards
   ================================================ */
.pricing-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8f5ff 60%, #ffffff 100%);
}

/* Multi-outlet info box */
.pricing-outlet-info {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: linear-gradient(135deg, #f2eff9, #ebe4f7);
  border: 1px solid rgba(126, 87, 194, 0.2);
  border-left: 4px solid #7e57c2;
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
  width: 100%;
}

.pricing-outlet-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #7e57c2;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.15rem;
}

.pricing-outlet-title {
  font-weight: 700;
  font-size: 0.975rem;
  color: #5e35b1;
  margin-bottom: 0.25rem;
}

.pricing-outlet-desc {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0;
  line-height: 1.6;
}

.pricing-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(126, 87, 194, 0.12);
}

/* Featured card — 1 tahun */
.pricing-card-featured {
  background: linear-gradient(145deg, #7e57c2 0%, #5e35b1 100%);
  border-color: transparent;
  box-shadow: 0 12px 40px rgba(126, 87, 194, 0.35);
  position: relative;
}

.pricing-card-featured:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(126, 87, 194, 0.4);
}

/* Badge "Lebih Hemat" */
.pricing-featured-badge {
  text-align: center;
  margin-bottom: 1.25rem;
}

.pricing-featured-badge span {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.35rem 1.1rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Card header area */
.pricing-card-header {
  margin-bottom: 1.5rem;
}

.pricing-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}

/* Price display */
.pricing-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.pricing-card-featured .pricing-price-row {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.pricing-amount {
  font-size: 1.9rem;
  font-weight: 800;
  color: #2c3e50;
  letter-spacing: -0.03em;
}

.pricing-period {
  font-size: 0.9rem;
  color: #6b7280;
  font-weight: 500;
}

.pricing-strikethrough {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: line-through;
  font-weight: 500;
  margin-bottom: -0.25rem;
}

.pricing-saving-badge {
  display: inline-block;
  background: #ffc107;
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-top: 0.5rem;
}

/* Feature list */
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  flex: 1;
}

.pricing-features li {
  padding: 0.45rem 0;
  font-size: 0.9rem;
  color: #4b5563;
  display: flex;
  align-items: center;
}

.pricing-features-light li {
  color: rgba(255, 255, 255, 0.9);
}

.contact-section {
  background-color: #f2eff9;
  position: relative;
}

.contact-section .contact-card {
  background: white;
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 15px 35px rgba(126, 87, 194, 0.1);
}

.contact-section .form-control,
.contact-section .form-select {
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  border: 1px solid #e9ecef;
  background-color: #f8f9fa;
}

.contact-section .form-control::placeholder,
.contact-section .form-select::placeholder {
  color: #adb5bd;
  opacity: 1;
}

.contact-section .form-control:focus,
.contact-section .form-select:focus {
  box-shadow: 0 0 0 0.25rem rgba(126, 87, 194, 0.25);
  border-color: #7e57c2;
  background-color: white;
}



.app-showcase-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  /* contain stacking context so blobs don't bleed into sibling sections */
  background: linear-gradient(180deg, #ffffff 0%, #f2eff9 60%, #ffffff 100%);
}

.showcase-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  /* behind all content inside the section */
  pointer-events: none;
}

.showcase-blob-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -200px;
  background: rgba(126, 87, 194, 0.12);
}

.showcase-blob-2 {
  width: 500px;
  height: 500px;
  bottom: -150px;
  left: -150px;
  background: rgba(100, 181, 246, 0.12);
}

/* --- Section badge -------------------------------- */
.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #f2eff9, #e8e0f5);
  color: #7e57c2;
  font-weight: 700;
  font-size: 0.825rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  border: 1px solid rgba(126, 87, 194, 0.2);
}

/* --- Tab pill bar --------------------------------- */
.showcase-tabs-wrapper {
  display: flex;
  justify-content: center;
}

.showcase-tabs {
  position: relative;
  display: inline-flex;
  background: #fff;
  border-radius: 50px;
  padding: 5px;
  box-shadow: 0 4px 24px rgba(126, 87, 194, 0.13);
  gap: 2px;
}

.showcase-tab {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.6rem;
  border: none;
  background: transparent;
  border-radius: 40px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: #6b7280;
  cursor: pointer;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.showcase-tab .tab-icon {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.showcase-tab:hover {
  color: #7e57c2;
}

.showcase-tab:hover .tab-icon {
  transform: scale(1.15);
}

.showcase-tab.active {
  color: #fff;
}

/* Animated sliding pill */
.tab-slider {
  position: absolute;
  top: 5px;
  left: 5px;
  height: calc(100% - 10px);
  background: linear-gradient(135deg, #7e57c2, #5e35b1);
  border-radius: 40px;
  box-shadow: 0 4px 15px rgba(126, 87, 194, 0.35);
  transition: left 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
    width 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  pointer-events: none;
  z-index: 0;
}

/* --- Panel visibility ----------------------------- */
.showcase-panel {
  display: none;
  animation: panelFadeIn 0.45s ease;
}

.showcase-panel.active {
  display: block;
}

@keyframes panelFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ================================================
   SIMPLE SLIDER
   Tekan kiri → geser kiri pelan | kanan → geser kanan pelan
   Menggunakan scroll-behavior: smooth + scrollBy() native
   ================================================ */

/* Wrapper: tombol kiri | track | tombol kanan */
.slider-wrapper {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 1.5rem 0 3rem;
}

/* Track: flex row, overflow tersembunyi scrollbar-nya */
.slider-track {
  flex: 1;
  display: flex;
  gap: 3rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  /* ← ini yang bikin slide pelan-pelan */
  scrollbar-width: none;
  /* Firefox */
  padding: 1.5rem 2rem 2rem;
}

.slider-track::-webkit-scrollbar {
  display: none;
}

/* Chrome */

/* Setiap item: tidak boleh menyusut */
.slider-item {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* Caption di bawah device */
.slider-caption {
  text-align: center;
  max-width: 280px;
}

.slider-caption h5 {
  font-size: 1rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.25rem;
}

.slider-caption p {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0;
  line-height: 1.5;
}

/* Smartphone tab: kurangi jarak horizontal antar phone frame */
#panel-hp .slider-track {
  gap: 1.5rem;
}

/* Tombol prev / next */
.slider-btn {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #7e57c2;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 2;
}

.slider-btn:hover {
  background: #7e57c2;
  color: #fff;
  box-shadow: 0 6px 22px rgba(126, 87, 194, 0.35);
  transform: scale(1.08);
}

/* ================================================
   PHONE FRAME
   ================================================ */
.phone-frame {
  width: 168px;
  height: 352px;
  background: #1a1a2e;
  border-radius: 30px;
  padding: 11px 8px 14px;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 0 0 2px #2e2e4a,
    0 0 0 6px #0d0d1a,
    0 24px 48px rgba(0, 0, 0, 0.3);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.phone-frame:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 0 0 2px #2e2e4a,
    0 0 0 7px #0d0d1a,
    0 45px 80px rgba(126, 87, 194, 0.3);
}

.phone-notch {
  width: 64px;
  height: 18px;
  background: #0d0d1a;
  border-radius: 0 0 11px 11px;
  margin: 0 auto 6px;
  flex-shrink: 0;
}

.phone-screen {
  flex: 1;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
}

.phone-home-bar {
  width: 70px;
  height: 5px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 3px;
  margin: 8px auto 0;
  flex-shrink: 0;
}

.hero-mobile-frame.phone-frame {
  width: 132px;
  height: 276px;
  border-radius: 18px;
  padding: 3px 4px 6px;
}

.hero-mobile-frame .phone-notch {
  width: 36px;
  height: 7px;
  border-radius: 0 0 5px 5px;
  margin-bottom: 2px;
}

.hero-mobile-frame .phone-screen {
  border-radius: 10px;
}

.hero-mobile-frame .phone-home-bar {
  width: 44px;
  height: 3px;
  margin-top: 5px;
}

/* ================================================
   TABLET FRAME (landscape)
   ================================================ */
.tablet-frame {
  width: 448px;
  height: 304px;
  background: #1a1a2e;
  border-radius: 14px;
  padding: 11px;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 0 0 2px #2e2e4a,
    0 0 0 6px #0d0d1a,
    0 24px 48px rgba(0, 0, 0, 0.28);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.tablet-frame:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow:
    0 0 0 2px #2e2e4a,
    0 0 0 7px #0d0d1a,
    0 45px 80px rgba(126, 87, 194, 0.28);
}

.tablet-camera {
  width: 10px;
  height: 10px;
  background: #2e2e4a;
  border-radius: 50%;
  margin: 0 auto 8px;
  flex-shrink: 0;
}

.tablet-screen {
  flex: 1;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.tablet-home-btn {
  width: 32px;
  height: 5px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  margin: 8px auto 0;
  flex-shrink: 0;
}

.hero-tablet-frame.tablet-frame {
  width: 300px;
  height: 204px;
  border-radius: 10px;
  padding: 5px;
}

.hero-tablet-frame .tablet-camera {
  width: 6px;
  height: 6px;
  margin-bottom: 3px;
}

.hero-tablet-frame .tablet-screen {
  border-radius: 5px;
}

.hero-tablet-frame .tablet-home-btn {
  width: 22px;
  height: 3px;
  margin-top: 4px;
}

/* ================================================
   DESKTOP / MONITOR FRAME
   ================================================ */
.desktop-frame {
  width: 544px;
  background: #1a1a2e;
  border-radius: 10px;
  overflow: hidden;
  box-shadow:
    0 0 0 2px #2e2e4a,
    0 24px 48px rgba(0, 0, 0, 0.25);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.desktop-frame:hover {
  transform: translateY(-8px);
  box-shadow:
    0 0 0 2px #2e2e4a,
    0 45px 80px rgba(126, 87, 194, 0.25);
}

.desktop-bar {
  background: #111124;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.bar-dot {
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.bar-dot-r {
  background: #ff5f56;
}

.bar-dot-y {
  background: #ffbd2e;
}

.bar-dot-g {
  background: #27c93f;
}

.bar-url {
  margin-left: 8px;
  background: #2a2a40;
  border-radius: 20px;
  padding: 2px 14px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  flex: 1;
}

.desktop-screen {
  background: #fff;
  line-height: 0;
  aspect-ratio: 1262 / 630;
  width: 100%;
  overflow: hidden;
}

.desktop-screen .screen-img {
  height: 100%;
  object-position: left top;
}

.desktop-stand {
  width: 544px;
  height: 24px;
  background: linear-gradient(#1e1e38, #111124);
  clip-path: polygon(38% 0%, 62% 0%, 72% 100%, 28% 100%);
}

.desktop-foot {
  width: 544px;
  height: 8px;
  background: #0d0d1a;
  border-radius: 0 0 5px 5px;
  margin-top: -1px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.desktop-frame-light .desktop-frame {
  background: #f8fafc;
  box-shadow:
    0 0 0 2px #d8e0ea,
    0 24px 48px rgba(15, 23, 42, 0.14);
}

.desktop-frame-light .desktop-frame:hover {
  box-shadow:
    0 0 0 2px #cbd5e1,
    0 45px 80px rgba(126, 87, 194, 0.18);
}

.desktop-frame-light .desktop-bar {
  background: #eef2f7;
  border-bottom: 1px solid #d8e0ea;
}

.desktop-frame-light .bar-url {
  background: #ffffff;
  color: #64748b;
  box-shadow: inset 0 0 0 1px #d8e0ea;
}

.desktop-frame-light .desktop-stand {
  background: linear-gradient(#edf2f7, #cbd5e1);
}

.desktop-frame-light .desktop-foot {
  background: #b8c4d4;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
}

/* Shared image style */
.screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 768px) {
  .showcase-tab .tab-label {
    display: none;
  }

  .showcase-tab {
    padding: 0.65rem 1.1rem;
  }

  .slider-btn {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .tablet-frame {
    width: 100%;
    max-width: 480px;
    height: 300px;
  }

  .desktop-frame {
    width: 100%;
    max-width: 480px;
  }


  .desktop-stand,
  .desktop-foot {
    width: 100%;
    max-width: 480px;
  }
}

/* Desktop 90% visual calibration for fixed px dimensions */
@media (min-width: 992px) {
  body {
    padding-top: 68px;
  }

  .navbar > .container,
  .hero-section .container,
  .app-showcase-section .container,
  #fitur > .container,
  .pricing-section .container,
  .faq-section .container,
  .contact-section .container,
  footer .container {
    width: calc(100% - 7rem);
    max-width: 1880px;
  }

  .navbar-brand img {
    height: 54px;
  }

  .navbar-nav .nav-link {
    border-radius: 7px;
  }

  .hero-mockup-container {
    height: 360px;
  }

  .mockup-desktop {
    max-width: 405px;
    top: 11px;
  }

  .mockup-tablet {
    left: 45px;
    bottom: 36px;
  }

  .hero-tablet-frame.tablet-frame {
    width: 270px;
    height: 184px;
    border-radius: 9px;
    padding: 5px;
  }

  .hero-tablet-frame .tablet-camera {
    width: 5px;
    height: 5px;
  }

  .hero-tablet-frame .tablet-home-btn {
    width: 20px;
  }

  .mockup-mobile {
    right: 40px;
    bottom: -7px;
  }

  .hero-mobile-frame.phone-frame {
    width: 119px;
    height: 248px;
    border-radius: 16px;
    padding: 3px 4px 5px;
  }

  .hero-mobile-frame .phone-notch {
    width: 32px;
    height: 6px;
  }

  .hero-mobile-frame .phone-home-bar {
    width: 40px;
  }

  .phone-frame {
    width: 151px;
    height: 317px;
    border-radius: 27px;
    padding: 10px 7px 13px;
  }

  .phone-notch {
    width: 58px;
    height: 16px;
  }

  .phone-home-bar {
    width: 63px;
  }

  .tablet-frame {
    width: 403px;
    height: 274px;
    border-radius: 13px;
    padding: 10px;
  }

  .tablet-camera {
    width: 9px;
    height: 9px;
  }

  .desktop-frame,
  .desktop-stand,
  .desktop-foot {
    width: 490px;
  }

  .desktop-frame {
    border-radius: 9px;
  }

  .desktop-bar {
    padding: 7px 13px;
    gap: 6px;
  }

  .bar-dot {
    width: 10px;
    height: 10px;
  }

  .bar-url {
    margin-left: 7px;
    padding: 2px 13px;
  }

  .desktop-stand {
    height: 22px;
  }

  .desktop-foot {
    height: 7px;
  }

  .slider-track {
    gap: 2.7rem;
  }

  #panel-hp .slider-track {
    gap: 1.35rem;
  }

  .slider-caption {
    max-width: 252px;
  }

  .slider-btn {
    width: 43px;
    height: 43px;
  }

  .feature-card .icon-box {
    width: 47px;
    height: 47px;
  }

  .pricing-outlet-icon {
    width: 36px;
    height: 36px;
  }
}

/* ================================================
   IMAGE ZOOM MODAL
   ================================================ */
.zoom-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 5vh;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.85);
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(5px);
}

.zoom-modal.show {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  padding-top: 0;
}

.zoom-modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90vh;
  border-radius: 12px;
  transform: scale(0.8);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
  cursor: zoom-out;
}

.zoom-modal.show .zoom-modal-content {
  transform: scale(1);
}

.zoom-modal-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
  z-index: 10000;
}

.zoom-modal-close:hover,
.zoom-modal-close:focus {
  color: #bbb;
  text-decoration: none;
}




/* ================================================
   CONTACT FORM VALIDATION
   Override Bootstrap invalid state inside contact section
   ================================================ */
.contact-section .form-control.is-invalid,
.contact-section .form-select.is-invalid {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.12) !important;
  background-color: #fff5f6;
}

.contact-section .form-control.is-invalid:focus,
.contact-section .form-select.is-invalid:focus {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25) !important;
}

.contact-section .invalid-feedback {
  display: none;
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.45rem;
}

.contact-section .form-control.is-invalid~.invalid-feedback,
.contact-section .form-select.is-invalid~.invalid-feedback {
  display: block;
}

.contact-section .btn.disabled,
.contact-section .btn:disabled {
  cursor: not-allowed;
  opacity: 0.8;
}

.contact-section .contact-is-loading .form-control,
.contact-section .contact-is-loading .form-select {
  pointer-events: none;
}


/* ================================================
   CONTACT FORM ALERT
   ================================================ */
.contact-section .contact-alert {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-radius: 0.9rem;
  padding: 1rem 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  box-shadow: none;
}

.contact-section .contact-alert-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  line-height: 1;
  font-weight: 800;
}

.contact-section .contact-alert-message {
  flex: 1;
}

/* Success soft seperti Bootstrap */
.contact-section .contact-alert-success {
  background: #d1e7dd;
  color: #0f5132;
  border: 1px solid #badbcc;
}

.contact-section .contact-alert-success .contact-alert-icon {
  background: #198754;
  color: #ffffff;
}

/* Error soft */
.contact-section .contact-alert-danger {
  background: #f8d7da;
  color: #842029;
  border: 1px solid #f5c2c7;
}

.contact-section .contact-alert-danger .contact-alert-icon {
  background: #dc3545;
  color: #ffffff;
}

/* Loading soft */
.contact-section .contact-alert-info {
  background: #cff4fc;
  color: #055160;
  border: 1px solid #b6effb;
}

.contact-section .contact-alert-info .contact-alert-icon {
  background: #0dcaf0;
  color: #ffffff;
}

/*# sourceMappingURL=landing.css.map */

.content p {
  line-height: 2em;
}

.content ol {
  line-height: 2.5em;
  /* padding-left: 20px; */
}

.content ol li {
  padding-left: 10px;
}

.content h4 {
  margin-top: 30px;
  color: #7e57c2;
}
