/* ============================================
   NusaTech Digital - Custom Styles
   ============================================ */

/* Base */
html,
body {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

/* ---- Animation Keyframes ---- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes pulseRing {
  0% {
    transform: scale(0.9);
    opacity: 0.8;
  }

  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

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

/* ---- Scroll Animation Classes ---- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

.animate-on-scroll.slide-left {
  transform: translateX(-40px);
}

.animate-on-scroll.slide-right {
  transform: translateX(40px);
}

.animate-on-scroll.scale-up {
  transform: scale(0.85);
}

/* Stagger delays */
.stagger-1 {
  transition-delay: 0.1s;
}

.stagger-2 {
  transition-delay: 0.2s;
}

.stagger-3 {
  transition-delay: 0.3s;
}

.stagger-4 {
  transition-delay: 0.4s;
}

.stagger-5 {
  transition-delay: 0.5s;
}

.stagger-6 {
  transition-delay: 0.6s;
}

/* ---- Navbar ---- */
.navbar {
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97) !important;
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.06), 0 1px 2px -1px rgba(0, 0, 0, 0.06);
}

.nav-link {
  position: relative;
  transition: all 0.2s ease;
}

.nav-link.active {
  color: #4f46e5;
  background: #eef2ff;
}

/* ---- Dropdown ---- */
.dropdown-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* ---- Gradient Text ---- */
.gradient-text {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Cards ---- */
.card-hover {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
}

.product-card {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px -15px rgba(79, 70, 229, 0.2);
}

.product-card .product-icon {
  transition: all 0.4s ease;
}

.product-card:hover .product-icon {
  transform: scale(1.1) rotate(-5deg);
}

/* ---- Floating WhatsApp ---- */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
}

.wa-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  color: white;
  font-size: 28px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.wa-float a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
}

.wa-float .wa-pulse {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  top: 0;
  left: 0;
  z-index: 1;
  animation: pulseRing 2s ease-out infinite;
}

/* ---- Hero Section ---- */
.hero-gradient {
  background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 25%, #f5f3ff 50%, #ede9fe 75%, #eef2ff 100%);
}

.hero-pattern {
  background-image: radial-gradient(circle at 1px 1px, rgba(79, 70, 229, 0.08) 1px, transparent 0);
  background-size: 40px 40px;
}

/* ---- Hero CTA Card ---- */
.hero-cta-card {
  max-width: 460px;
}

.hero-cta-card__inner {
  background: rgba(255, 255, 255, 0.70);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 1.25rem;
  padding: 1rem;
  box-shadow:
    0 4px 24px rgba(79, 70, 229, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-cta-card__inner:hover {
  box-shadow:
    0 8px 40px rgba(79, 70, 229, 0.14),
    0 2px 6px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

/* Price Row */
.hero-cta-card__price-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.6rem;
}

.hero-cta-card__price-info {
  flex: 1;
}

.hero-cta-card__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.15rem;
}

.hero-cta-card__price {
  display: flex;
  align-items: baseline;
  white-space: nowrap;
  gap: 0.25rem;
}

.hero-cta-card__currency {
  font-size: 1rem;
  font-weight: 700;
  color: #334155;
  align-self: flex-start;
  margin-top: 0.3rem;
}

.hero-cta-card__amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.hero-cta-card__unit {
  font-size: 1rem;
  font-weight: 600;
  color: #475569;
}

/* Divider */
.hero-cta-card__divider {
  width: 2px;
  height: 52px;
  background: linear-gradient(to bottom, transparent, #c7d2fe, #818cf8, #c7d2fe, transparent);
  border-radius: 2px;
  flex-shrink: 0;
}

/* Discount */
.hero-cta-card__discount {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
}

.hero-cta-card__discount-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.2rem 0.55rem;
  border-radius: 0.4rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.35);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.04);
  }
}

.hero-cta-card__discount-text {
  font-size: 0.75rem;
  font-weight: 500;
  color: #64748b;
}

.hero-cta-card__discount-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1d4ed8;
  line-height: 1.1;
  white-space: nowrap;
}

.hero-cta-card__discount-hint {
  font-size: 0.7rem;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.02em;
  margin-top: 0.1rem;
}

/* CTA Button */
.hero-cta-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 0.85rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 4px 14px rgba(37, 99, 235, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-cta-card__btn:hover {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  transform: translateY(-2px);
  box-shadow:
    0 8px 28px rgba(37, 99, 235, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.hero-cta-card__btn:active {
  transform: translateY(0);
}

.hero-cta-card__btn-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.hero-cta-card__btn-text {
  white-space: nowrap;
}

.hero-cta-card__btn-arrow {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.hero-cta-card__btn:hover .hero-cta-card__btn-arrow {
  transform: translateX(3px);
}

/* Shimmer sweep */
.hero-cta-card__btn-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.15) 50%,
      transparent 100%);
  animation: ctaShimmer 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ctaShimmer {
  0% {
    left: -100%;
  }

  60% {
    left: 100%;
  }

  100% {
    left: 100%;
  }
}

/* Responsive */
@media (max-width: 480px) {
  .hero-cta-card {
    max-width: 100%;
  }

  .hero-cta-card__inner {
    padding: 1rem 0.9rem;
  }

  .hero-cta-card__amount {
    font-size: 1rem;
  }

  .hero-cta-card__discount-value {
    font-size: 1rem;
  }

  .hero-cta-card__btn {
    font-size: 0.82rem;
    padding: 0.85rem 1rem;
    gap: 0.5rem;
  }

  .hero-cta-card__btn-text {
    white-space: nowrap;
    text-align: center;
  }
}

/* ---- Benefit Cards (2-col) ---- */
.bf-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.35rem 1.4rem;
  background: #fff;
  border: 1px solid #e8ecf2;
  border-radius: 1.15rem;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.bf-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

/* Icon circle */
.bf-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
  color: #fff;
  transition: transform 0.35s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.bf-card:hover .bf-card__icon {
  transform: scale(1.12) rotate(-6deg);
}

/* Icon gradient variants */
.bf-card__icon--blue {
  background: linear-gradient(135deg, #2563eb, #60a5fa);
}

.bf-card__icon--violet {
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
}

.bf-card__icon--amber {
  background: linear-gradient(135deg, #d97706, #fbbf24);
}

.bf-card__icon--emerald {
  background: linear-gradient(135deg, #059669, #34d399);
}

.bf-card__icon--rose {
  background: linear-gradient(135deg, #e11d48, #fb7185);
}

.bf-card__icon--sky {
  background: linear-gradient(135deg, #0284c7, #38bdf8);
}

/* Hover border color */
.bf-card:has(.bf-card__icon--blue):hover {
  border-color: #bfdbfe;
}

.bf-card:has(.bf-card__icon--violet):hover {
  border-color: #ddd6fe;
}

.bf-card:has(.bf-card__icon--amber):hover {
  border-color: #fde68a;
}

.bf-card:has(.bf-card__icon--emerald):hover {
  border-color: #a7f3d0;
}

.bf-card:has(.bf-card__icon--rose):hover {
  border-color: #fecdd3;
}

.bf-card:has(.bf-card__icon--sky):hover {
  border-color: #bae6fd;
}

/* Title */
.bf-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 0.3rem;
}

/* Desc */
.bf-card__desc {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.5;
}

@media (max-width: 639px) {
  .bf-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.15rem 0.8rem;
    gap: 0.75rem;
  }

  .bf-card__icon {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
  }

  .bf-card__title {
    font-size: 0.82rem;
    line-height: 1.25;
    margin-bottom: 0.2rem;
  }

  .bf-card__desc {
    font-size: 0.72rem;
    line-height: 1.4;
  }
}

.section-divider {
  background: linear-gradient(90deg, transparent, #e0e7ff, transparent);
  height: 1px;
}

/* ---- Buttons ---- */
.btn-primary {
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #4338ca, #4f46e5);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
}

.btn-outline {
  border: 2px solid #4f46e5;
  color: #4f46e5;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #4f46e5;
  color: white;
  transform: translateY(-2px);
}

/* ---- Counter ---- */
.counter {
  font-variant-numeric: tabular-nums;
}

/* ---- Glassmorphism ---- */
.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

/* ---- Feature List ---- */
.feature-item {
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: #f8fafc;
  transform: translateX(4px);
}

/* ---- Tabs ---- */
.tab-btn {
  transition: all 0.3s ease;
}

.tab-btn.active {
  color: #4f46e5;
  border-color: #4f46e5;
  background: #eef2ff;
}

/* ---- Spec Table ---- */
.spec-table tr {
  transition: background 0.2s ease;
}

.spec-table tr:hover {
  background: #f8fafc;
}

/* ---- Testimonial Card ---- */
.testimonial-card {
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.1);
}

/* ---- Mobile Menu Animation ---- */
.mobile-menu-enter {
  animation: slideDown 0.3s ease forwards;
}

/* ---- Image Overlay ---- */
.img-overlay {
  position: relative;
  overflow: hidden;
}

.img-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.08), rgba(124, 58, 237, 0.05));
  pointer-events: none;
}

/* ---- Timeline ---- */
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #c7d2fe, #4f46e5, #c7d2fe);
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .timeline-line {
    left: 20px;
  }
}

/* ---- Process Step ---- */
.process-step {
  position: relative;
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-4px);
}

.process-step .step-number {
  transition: all 0.3s ease;
}

.process-step:hover .step-number {
  background: #4f46e5;
  color: white;
  transform: scale(1.1);
}

/* ---- Scroll Progress ---- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #4f46e5, #7c3aed, #a855f7);
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ---- NEW NAVBAR STYLES ---- */
:root {
  --indigo: #4f46e5;
  --violet: #7c3aed;
  --ink: #0f0e17;
  --off: #f5f4fb;
  --muted: #6b7280;
}

#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all .35s ease;
}

#nav.scrolled {
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .07);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #0f0e17;
  letter-spacing: -.02em;
}

.logo-text span {
  color: var(--indigo);
}

.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: #4b5563;
  padding: .5rem .9rem;
  border-radius: .5rem;
  transition: all .2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--indigo);
  background: #eef2ff;
}

.btn-cta {
  background: linear-gradient(135deg, var(--indigo), var(--violet));
  color: #fff;
  padding: .6rem 1.4rem;
  border-radius: .75rem;
  font-size: .875rem;
  font-weight: 600;
  transition: all .3s;
  box-shadow: 0 4px 14px rgba(79, 70, 229, .3);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(79, 70, 229, .4);
}

.dd-wrap {
  position: relative;
}

.dd-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  width: 320px;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 24px 48px rgba(0, 0, 0, .12);
  border: 1px solid #f1f5f9;
  padding: .5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all .25s ease;
  pointer-events: none;
}

.dd-wrap:hover .dd-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dd-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .65rem 1rem;
  border-radius: .75rem;
  transition: background .2s;
  font-size: .85rem;
  color: #374151;
}

.dd-item:hover {
  background: #eef2ff;
  color: var(--indigo);
}

.dd-icon {
  width: 32px;
  height: 32px;
  border-radius: .5rem;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  flex-shrink: 0;
}

#mob-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-top: 1px solid #f1f5f9;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px) scaleY(0.95);
  transform-origin: top;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

#mob-menu.open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scaleY(1);
}

/* Hide the mobile hero image on desktop (lg+) */
@media (min-width: 1024px) {
  #hero-img-mobile {
    display: none !important;
  }
}


/* ---- Trust Strip (Hero, mobile only) ---- */
.mob-trust-strip {
  display: none;
}

.mob-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #334155;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

/* ---- Sticky Mobile CTA Bar ---- */
.mob-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: linear-gradient(to top, #fff 80%, rgba(255, 255, 255, 0));
  pointer-events: none;
}

.mob-cta-bar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 1rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  pointer-events: auto;
  box-shadow:
    0 6px 24px rgba(22, 163, 74, 0.45),
    0 2px 6px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.mob-cta-bar__btn:active {
  transform: scale(0.98);
}

.mob-cta-bar__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.mob-cta-bar__text {
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

.mob-cta-bar__arrow {
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-left: auto;
}

.mob-cta-bar__shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.18) 50%, transparent 100%);
  animation: ctaShimmer 2.5s ease-in-out infinite;
  pointer-events: none;
}

@media (max-width: 767px) {

  /* ---- Global ---- */
  body {
    font-size: 16px;
  }



  /* Trust strip: show on mobile */
  .mob-trust-strip {
    display: flex;
  }

  /* ---- Navbar ---- */
  .nav-inner {
    height: 60px;
    padding: 0 1rem;
  }

  /* ---- Hero Section ---- */
  #beranda {
    padding-top: 4rem;
    padding-bottom: 2.5rem;
  }

  #beranda h1 {
    font-size: 1.85rem !important;
    line-height: 1.25 !important;
    letter-spacing: -0.02em;
    margin-bottom: 0.85rem !important;
  }

  #beranda>div>div>div:first-child>p {
    font-size: 1rem !important;
    margin-bottom: 1rem !important;
    color: #64748b;
  }

  /* Hero image: give it more presence */
  #beranda .rounded-3xl {
    border-radius: 1.5rem !important;
    margin-top: 1.5rem;
    box-shadow: 0 20px 60px -10px rgba(30, 64, 175, 0.2), 0 4px 12px rgba(0, 0, 0, 0.08) !important;
  }

  /* Hero CTA card tweaks */
  .hero-cta-card__btn {
    padding: 1rem 1.25rem !important;
    font-size: 0.95rem !important;
    border-radius: 0.9rem !important;
  }

  .hero-cta-card__amount {
    font-size: 1.8rem !important;
  }

  .hero-cta-card__discount-value {
    font-size: 1rem !important;
  }

  /* ---- Target Market / Solusi ---- */
  #solusi {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  /* Hide the big fashion photo on mobile — too tall, poor conversion */
  #solusi .lg\:col-span-5 {
    display: none !important;
  }

  #solusi h2 {
    font-size: 1.75rem !important;
    line-height: 1.25 !important;
    margin-bottom: 1rem !important;
  }

  #solusi>div>div>div.animate-on-scroll.stagger-2>p {
    font-size: 0.95rem !important;
    margin-bottom: 1.25rem !important;
  }

  /* Target cards: 2-col compact layout */
  #solusi .grid.sm\:grid-cols-2.xl\:grid-cols-3 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }

  #solusi .group.bg-white {
    padding: 0.9rem 0.85rem !important;
    border-radius: 1rem !important;
  }

  #solusi .group .w-12 {
    width: 2.5rem !important;
    height: 2.5rem !important;
    font-size: 1rem !important;
  }

  /* ---- Features / Fitur ---- */
  #fitur {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  #fitur h2 {
    font-size: 1.75rem !important;
    line-height: 1.25 !important;
  }

  .bf-card {
    padding: 1rem 1.1rem !important;
    border-radius: 1rem !important;
    gap: 0.85rem !important;
  }

  .bf-card__icon {
    width: 42px !important;
    height: 42px !important;
    font-size: 1rem !important;
  }

  .bf-card__title {
    font-size: 0.92rem !important;
  }

  .bf-card__desc {
    font-size: 0.8rem !important;
  }

  /* ---- Katalog Section ---- */
  #katalog {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  #katalog h2 {
    font-size: 1.65rem !important;
    line-height: 1.25 !important;
  }

  #katalog .grid {
    gap: 0.6rem !important;
  }

  #katalog button h3 {
    font-size: 1rem !important;
  }

  #katalog button p {
    font-size: 0.68rem !important;
  }

  /* ---- Comparison Section ---- */
  #komparasi {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  #komparasi h2 {
    font-size: 1.6rem !important;
    line-height: 1.25 !important;
    margin-bottom: 0.75rem !important;
  }

  #komparasi>div>div>div.text-center>p {
    font-size: 0.92rem !important;
  }

  /* Comparison rows: slightly tighter */
  #komparasi tbody tr {
    border-radius: 1.25rem !important;
    margin-bottom: 0.85rem;
  }

  #komparasi tbody td:first-child {
    padding: 0.9rem 1rem !important;
  }

  #komparasi tbody td:first-child span {
    font-size: 0.88rem !important;
  }

  #komparasi tbody td:first-child p {
    font-size: 0.72rem !important;
  }

  #komparasi tbody td:not(:first-child) {
    padding: 0.75rem 0.5rem 1rem !important;
  }

  /* Column header mini badge: make them more prominent */
  #komparasi .md\:hidden span.bg-blue-600 {
    font-size: 0.65rem !important;
    padding: 0.25rem 0.7rem !important;
    border-radius: 0.5rem !important;
    letter-spacing: 0.08em !important;
  }

  /* Fix: table footer CTA */
  #komparasi .bg-slate-50.p-6 {
    padding: 1.25rem !important;
  }

  #komparasi .bg-slate-50.p-6 a {
    font-size: 0.88rem !important;
    padding: 0.85rem 1rem !important;
  }

  /* ---- Pricing Section ---- */
  #harga {
    padding-top: 3rem !important;
    padding-bottom: 3.5rem !important;
  }

  #harga h2 {
    font-size: 1.75rem !important;
    line-height: 1.25 !important;
  }

  /* Remove 2-col pricing grid on mobile → stack */
  #harga .lg\:grid-cols-3 {
    grid-template-columns: 1fr !important;
  }

  /* Fix badge overlap on mobile */
  #harga .absolute.top-5.right-5 {
    top: 0.85rem !important;
    right: 0.85rem !important;
  }

  #harga .bg-gradient-to-br.from-blue-600 {
    padding: 3.5rem 1.5rem 1.75rem !important;
  }

  #harga .px-8.py-6 {
    padding: 1.25rem 1.25rem 0.5rem !important;
  }

  #harga .grid.sm\:grid-cols-2 {
    grid-template-columns: 1fr !important;
    gap: 0.6rem !important;
  }

  /* Pricing CTA btn */
  #harga .mt-7 {
    margin-top: 1.25rem !important;
    padding: 1.05rem !important;
    font-size: 1rem !important;
    border-radius: 0.85rem !important;
  }

  /* Add-on card on mobile */
  #harga .bg-white.rounded-3xl.border.border-slate-200 .px-6.py-2 {
    padding: 1rem 1.25rem 0.5rem !important;
  }

  #harga .bg-white.rounded-3xl.border.border-slate-200 .px-6.py-3 {
    padding: 0.5rem 1.25rem !important;
  }

  #harga .bg-white.rounded-3xl.border.border-slate-200 .px-6.pb-6 {
    padding: 0.75rem 1.25rem 1.25rem !important;
  }

  /* Trust note */
  #harga .mt-8 {
    margin-top: 1rem !important;
  }

  /* ---- Video Overview ---- */
  #demo {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  #demo h2 {
    font-size: 1.75rem !important;
    line-height: 1.25 !important;
    margin-bottom: 0.75rem !important;
  }

  #demo>div>div.text-center>p {
    font-size: 0.95rem !important;
  }

  /* Play button: bigger on mobile */
  #yt-facade .w-24.h-24 {
    width: 5rem !important;
    height: 5rem !important;
  }

  #yt-facade .fa-play {
    font-size: 1.5rem !important;
  }

  /* Video text overlay: smaller */
  #yt-facade h3 {
    font-size: 1.1rem !important;
  }

  /* Trust badges below video: 2-col on mobile */
  #demo .grid-cols-1.sm\:grid-cols-2.lg\:grid-cols-4 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.6rem !important;
    margin-top: 1.5rem !important;
  }

  #demo .grid-cols-1.sm\:grid-cols-2.lg\:grid-cols-4>div {
    padding: 0.75rem !important;
    border-radius: 1rem !important;
  }

  #demo .grid-cols-1.sm\:grid-cols-2.lg\:grid-cols-4 .w-9 {
    width: 2rem !important;
    height: 2rem !important;
    border-radius: 0.6rem !important;
    font-size: 0.75rem !important;
  }

  /* ---- FAQ ---- */
  #faq {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  #faq h2 {
    font-size: 1.75rem !important;
  }

  .faq-trigger {
    font-size: 0.95rem !important;
    padding: 1.1rem 1.25rem !important;
    line-height: 1.4 !important;
  }

  .faq-answer {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .faq-answer p {
    font-size: 0.9rem !important;
  }

  .faq-item {
    border-radius: 1rem !important;
  }

  /* ---- Location Section ---- */
  section.py-20.bg-white {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  /* Hide large map on mobile → show CTA link only */
  .lg\:col-span-7.relative.animate-on-scroll.stagger-2 {
    display: none !important;
  }

  /* Address box: full width readable */
  .lg\:col-span-5.animate-on-scroll>div.space-y-6 {
    padding: 1rem !important;
  }

  /* ---- Footer ---- */
  footer .grid.grid-cols-1.md\:grid-cols-3.lg\:grid-cols-5 {
    grid-template-columns: 1fr 1fr !important;
    gap: 2rem 1.5rem !important;
  }

  footer .md\:col-span-3.lg\:col-span-2 {
    grid-column: 1 / -1 !important;
  }

  footer .lg\:col-span-2:last-child {
    grid-column: 1 / -1 !important;
  }

  footer .max-w-7xl.mx-auto.px-6 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
}

/* ---- Section spacing polish (shared 768px - desktop) ---- */
@media (min-width: 768px) {

  /* Re-show trust strip on desktop: hidden by default */
  .mob-trust-strip {
    display: none !important;
  }

  /* CTA bar never shows on desktop (already lg:hidden) */
}