/* ============================================================
   BATIK AJI KUSUMA — Landing Page Stylesheet
   Mobile-first | v1.1 Iterasi 2
   ============================================================ */

/* ---- DESIGN TOKENS ---- */
:root {
  /* Primary palette */
  --navy-royal:   #0F2B52;
  --navy-deep:    #081D3D;
  --navy-soft:    #1E4173;
  --gold:         #C9A24B;
  --gold-light:   #E8C77E;
  --gold-deep:    #A8842E;

  /* Neutrals */
  --cream:        #FAF6EE;
  --sand:         #F0E9D9;
  --white:        #FFFFFF;
  --text-dark:    #1A2B47;
  --text-muted:   #6B7790;

  /* Heritage accent */
  --soga-brown:   #8B5E34;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Transitions */
  --t-fast:   150ms ease;
  --t-base:   250ms ease;
  --t-slow:   400ms ease;

  /* Shadows (navy-tinted, never pure black) */
  --shadow-sm: 0 1px 3px rgba(15,43,82,0.08), 0 1px 2px rgba(15,43,82,0.04);
  --shadow-md: 0 4px 12px rgba(15,43,82,0.10), 0 2px 4px rgba(15,43,82,0.06);
  --shadow-lg: 0 8px 32px rgba(15,43,82,0.14), 0 4px 8px rgba(15,43,82,0.08);
}


/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

/* Focus styles — accessible but not intrusive */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}


/* ============================================================
   UTILITY
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
}

@media (min-width: 768px) {
  .container { padding-inline: 32px; }
}


/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  min-height: 52px; /* WCAG touch target */
  transition:
    background-color var(--t-base),
    color           var(--t-base),
    border-color    var(--t-base),
    transform       var(--t-fast),
    box-shadow      var(--t-base);
}

.btn:active { transform: translateY(1px); }

/* Gold (primary CTA) */
.btn-gold {
  background-color: var(--gold);
  color: var(--navy-deep);
  border: 2px solid var(--gold);
}
.btn-gold:hover,
.btn-gold:focus-visible {
  background-color: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 4px 20px rgba(201,162,75,0.4);
}
.btn-gold:active {
  background-color: var(--gold-deep);
  border-color: var(--gold-deep);
}

/* Outline gold (secondary CTA) */
.btn-outline-gold {
  background-color: transparent;
  color: var(--gold-light);
  border: 2px solid rgba(201,162,75,0.55);
}
.btn-outline-gold:hover,
.btn-outline-gold:focus-visible {
  background-color: rgba(201,162,75,0.10);
  border-color: var(--gold-light);
  color: var(--gold-light);
}


/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition:
    background-color var(--t-slow),
    backdrop-filter  var(--t-slow),
    box-shadow       var(--t-slow);
}

/* Transparent — overlays hero */
.navbar.is-transparent {
  background-color: transparent;
}

/* Solid — scrolled state: stays dark so logo always reads well */
.navbar.is-solid {
  background-color: rgba(8, 29, 61, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(201,162,75,0.15);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
  height: 68px;
}

/* Logo */
.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  border-radius: 6px;
}
.nav-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
}

/* Hamburger button (mobile) */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 44px;
  height: 44px;
  padding: 11px 10px;
  border-radius: 8px;
  transition: background-color var(--t-fast);
  z-index: 1001;
  flex-shrink: 0;
}
.nav-hamburger:hover {
  background-color: rgba(201,162,75,0.12);
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--gold-light);
  border-radius: 2px;
  transform-origin: center;
  transition:
    transform var(--t-base),
    opacity   var(--t-base);
}

/* Hamburger → X animation */
.nav-hamburger[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile dropdown menu */
.nav-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background-color: var(--navy-deep);
  padding: 12px 20px 24px;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid rgba(201,162,75,0.2);
  box-shadow: 0 16px 48px rgba(8,29,61,0.5);
}
.nav-menu.is-open {
  display: flex;
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  color: rgba(250,246,238,0.8);
  font-size: 1rem;
  font-weight: 400;
  border-radius: 8px;
  min-height: 48px;
  transition:
    color            var(--t-fast),
    background-color var(--t-fast);
}
.nav-link:hover,
.nav-link:focus-visible {
  color: var(--gold-light);
  background-color: rgba(201,162,75,0.08);
}

.nav-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 14px 24px;
  background-color: var(--gold);
  color: var(--navy-deep);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  min-height: 52px;
  transition: background-color var(--t-base);
}
.nav-cta-btn:hover,
.nav-cta-btn:focus-visible {
  background-color: var(--gold-light);
}


/* ---- Tablet+: horizontal nav ---- */
@media (min-width: 1024px) {
  .nav-hamburger { display: none; }

  .nav-menu {
    display: flex !important; /* override .is-open toggling */
    position: static;
    background-color: transparent;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 2px;
    border-top: none;
    box-shadow: none;
  }

  .nav-link {
    padding: 8px 14px;
    font-size: 0.9375rem;
    min-height: 40px;
  }

  .nav-cta-btn {
    margin-top: 0;
    padding: 10px 20px;
    min-height: 40px;
    font-size: 0.9375rem;
    border-radius: 8px;
  }

  .nav-container { padding-inline: 32px; }
}


/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  background-color: var(--navy-royal);
  overflow: hidden;
}

/* Subtle batik-inspired CSS ornament in background */
.hero-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 75% 80%, rgba(30,65,115,0.6) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 10% 10%, rgba(201,162,75,0.04) 0%, transparent 60%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 48px,
      rgba(201,162,75,0.018) 48px,
      rgba(201,162,75,0.018) 49px
    ),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 48px,
      rgba(201,162,75,0.018) 48px,
      rgba(201,162,75,0.018) 49px
    );
}

/* Grid: single column on mobile (visual first) */
.hero-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding: 88px 20px 64px; /* top clears fixed nav (68px) + breathing */
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "visual"
    "content";
  gap: 40px;
  align-items: center;
}

/* ---- Hero Visual ---- */
.hero-visual {
  grid-area: visual;
  position: relative;
  padding-bottom: 20px; /* room for the floating trust badge */
}

.hero-image-frame {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background-color: var(--navy-soft);
  position: relative;
  box-shadow: var(--shadow-lg);
}
.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Placeholder shown until real photo is added */
.hero-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--navy-soft) 0%, var(--navy-deep) 100%);
  position: relative;
}
.hero-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg, transparent, transparent 28px,
      rgba(201,162,75,0.05) 28px, rgba(201,162,75,0.05) 29px
    ),
    repeating-linear-gradient(
      90deg, transparent, transparent 28px,
      rgba(201,162,75,0.05) 28px, rgba(201,162,75,0.05) 29px
    );
}
.placeholder-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: rgba(201,162,75,0.5);
  padding: 24px;
}
.placeholder-inner p {
  font-size: 0.875rem;
  margin-top: 12px;
  line-height: 1.5;
}
.placeholder-inner small {
  font-size: 0.75rem;
  opacity: 0.7;
  display: block;
  margin-top: 4px;
}

/* Floating trust badge on image */
.hero-trust-badge {
  position: absolute;
  bottom: 0;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--white);
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: var(--shadow-lg);
}
.trust-badge-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(201,162,75,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.trust-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.trust-badge-text strong {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy-royal);
}
.trust-badge-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ---- Hero Content ---- */
.hero-content {
  grid-area: content;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Small badge pill above headline */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background-color: rgba(201,162,75,0.10);
  border: 1px solid rgba(201,162,75,0.28);
  border-radius: 100px;
  color: var(--gold-light);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  width: fit-content;
}
.hero-badge-dot {
  display: block;
  width: 6px;
  height: 6px;
  background-color: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: 2.125rem;   /* 34px mobile */
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--cream);
}

.hero-subheadline {
  font-size: 1.0625rem;  /* 17px */
  line-height: 1.75;
  color: rgba(250,246,238,0.78);
}

/* CTA group — stacked on mobile */
.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 4px;
}

/* Microcopy trust signals */
.hero-microcopy {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.microcopy-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(250,246,238,0.65);
}
.microcopy-icon {
  flex-shrink: 0;
  color: var(--gold);
}


/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow:
    0 4px 16px rgba(37,211,102,0.45),
    0 2px 6px rgba(0,0,0,0.12);
  transition:
    transform    var(--t-base),
    box-shadow   var(--t-base);
  animation: wa-pulse 5s ease-in-out infinite;
}
.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: scale(1.08);
  box-shadow:
    0 6px 28px rgba(37,211,102,0.55),
    0 4px 10px rgba(0,0,0,0.18);
  animation-play-state: paused;
}

@keyframes wa-pulse {
  0%, 85%, 100% {
    box-shadow: 0 4px 16px rgba(37,211,102,0.45), 0 2px 6px rgba(0,0,0,0.12);
  }
  92% {
    box-shadow:
      0 4px 16px rgba(37,211,102,0.45),
      0 2px 6px rgba(0,0,0,0.12),
      0 0 0 12px rgba(37,211,102,0.15);
  }
}

/* Hide WA float when CTA form is in view (activated by JS in Iterasi 5) */
.whatsapp-float.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
}


/* ============================================================
   RESPONSIVE — TABLET (≥768px)
   ============================================================ */
@media (min-width: 768px) {
  .hero-container {
    padding: 110px 32px 80px;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "visual content";
    gap: 56px;
  }

  .hero-headline { font-size: 2.75rem; /* 44px */ }

  .hero-image-frame { aspect-ratio: 3 / 4; }

  .hero-cta-group {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-microcopy {
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 8px;
  }
}


/* ============================================================
   RESPONSIVE — DESKTOP (≥1024px)
   ============================================================ */
@media (min-width: 1024px) {
  .hero-container {
    padding: 128px 32px 96px;
    grid-template-columns: 48% 52%;
    gap: 72px;
  }

  .hero-headline { font-size: 3.25rem; /* 52px */ }

  .hero-subheadline { font-size: 1.125rem; }

  .hero-image-frame { aspect-ratio: 4 / 5; }
}


/* ============================================================
   RESPONSIVE — LARGE DESKTOP (≥1280px)
   ============================================================ */
@media (min-width: 1280px) {
  .hero-headline { font-size: 3.5rem; /* 56px */ }

  .whatsapp-float {
    width: 68px;
    height: 68px;
  }
}


/* ============================================================
   SHARED SECTION COMPONENTS
   ============================================================ */
.section-header {
  margin-bottom: 48px;
}
.section-header--center {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 48px;
}
.section-header--light .section-title,
.section-header--light .section-subtitle {
  color: var(--cream);
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;   /* 28px mobile */
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--text-dark);
}

.section-subtitle {
  margin-top: 16px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .section-title { font-size: 2.25rem; /* 36px */ }
}
@media (min-width: 1024px) {
  .section-title { font-size: 2.5rem;  /* 40px */ }
}


/* ============================================================
   SECTION 2 — TRUST BAR
   ============================================================ */
.trust-bar {
  background-color: var(--cream);
  border-top: 1px solid rgba(15,43,82,0.08);
  border-bottom: 1px solid rgba(15,43,82,0.08);
  padding: 36px 0;
  overflow: hidden;
}

.trust-bar-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.trust-bar-label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  padding-inline: 20px;
}

/* Marquee wrapper — masks overflow */
.trust-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

/* The track — double-width so we can loop seamlessly */
.trust-marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}

.trust-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Individual logo placeholder item */
.trust-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 120px;
  height: 64px;
  background-color: var(--white);
  border: 1px solid rgba(15,43,82,0.08);
  border-radius: 10px;
  padding: 10px 14px;
  flex-shrink: 0;
  opacity: 0.65;
  transition: opacity var(--t-base);
}
.trust-logo-item:hover { opacity: 1; }

.trust-logo-item img {
  max-width: 100%;
  max-height: 44px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.tl-abbr {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy-royal);
  letter-spacing: 0.04em;
}
.tl-name {
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.3;
}

.trust-bar-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.6;
  text-align: center;
  font-style: italic;
  padding-inline: 20px;
}

@media (min-width: 768px) {
  .trust-bar { padding: 44px 0; }
  .trust-logo-item { width: 140px; height: 72px; }
}


/* ============================================================
   SECTION 3 — PAIN POINTS
   ============================================================ */
.pain-points {
  background-color: var(--sand);
  padding: 64px 0;
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 48px;
}

/* Pain card */
.pain-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid rgba(15,43,82,0.06);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--t-base), transform var(--t-base);
}
.pain-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* Subtle red corner accent */
.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(185,28,28,0.35), transparent);
  border-radius: 12px 12px 0 0;
}

.pain-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(185,28,28,0.08);
  color: rgba(185,28,28,0.75);
  border-radius: 8px;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.pain-card-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 10px;
}

.pain-card-body {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* Transition statement */
.pain-transition {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 680px;
  margin-inline: auto;
  padding: 0 4px;
}

.pain-transition-line {
  display: none;
}

.pain-transition-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  text-align: center;
  font-style: normal;
  width: 100%;
}

.pain-transition-text strong {
  color: var(--navy-royal);
  font-weight: 600;
}

/* Tablet: 2 columns */
@media (min-width: 768px) {
  .pain-points { padding: 80px 0; }
  .pain-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .pain-card { padding: 28px; }
  .pain-transition { gap: 28px; }
  .pain-transition-line { display: block; flex: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(15,43,82,0.15), transparent); min-width: 24px; }
  .pain-transition-text { font-size: 1.0625rem; flex-shrink: 0; max-width: 480px; width: auto; }
}

/* Desktop: 4 columns */
@media (min-width: 1024px) {
  .pain-points  { padding: 96px 0; }
  .pain-grid    { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}


/* ============================================================
   SECTION 4 — 4 JAMINAN
   ============================================================ */
.jaminan {
  position: relative;
  background-color: var(--navy-royal);
  padding: 64px 0 80px;
  overflow: hidden;
}

/* Decorative batik-inspired background pattern */
.jaminan-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(ellipse 70% 50% at 50% 0%,   rgba(30,65,115,0.7) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(8,29,61,0.8)  0%, transparent 60%),
    repeating-linear-gradient(
      60deg, transparent, transparent 56px,
      rgba(201,162,75,0.025) 56px, rgba(201,162,75,0.025) 57px
    ),
    repeating-linear-gradient(
      -60deg, transparent, transparent 56px,
      rgba(201,162,75,0.025) 56px, rgba(201,162,75,0.025) 57px
    );
}

.jaminan-container {
  position: relative;
  z-index: 1;
}

/* Section header overrides for dark bg */
.jaminan .section-eyebrow {
  color: var(--gold);
}
.jaminan .section-title {
  color: var(--cream);
}
.jaminan .section-subtitle {
  color: rgba(250,246,238,0.7);
  margin-top: 12px;
}

/* Grid */
.jaminan-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 48px;
}

/* Individual Jaminan card */
.jaminan-card {
  position: relative;
  background-color: var(--navy-deep);
  border: 1px solid rgba(201,162,75,0.12);
  border-radius: 16px;
  padding: 32px 28px;
  overflow: hidden;
  transition: border-color var(--t-base), box-shadow var(--t-base), transform var(--t-base);
}
.jaminan-card:hover {
  border-color: rgba(201,162,75,0.3);
  box-shadow: 0 8px 40px rgba(8,29,61,0.5), 0 0 0 1px rgba(201,162,75,0.15);
  transform: translateY(-3px);
}

/* Gold top accent bar */
.jaminan-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 16px 16px 0 0;
}

/* Large background number */
.jaminan-number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 600;
  color: rgba(201,162,75,0.06);
  line-height: 1;
  letter-spacing: -0.02em;
  pointer-events: none;
  user-select: none;
}

/* Icon */
.jaminan-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: rgba(201,162,75,0.1);
  border: 1px solid rgba(201,162,75,0.2);
  border-radius: 14px;
  color: var(--gold);
  margin-bottom: 20px;
  flex-shrink: 0;
  transition: background-color var(--t-base), border-color var(--t-base);
}
.jaminan-card:hover .jaminan-icon-wrap {
  background-color: rgba(201,162,75,0.15);
  border-color: rgba(201,162,75,0.35);
}

/* Card headline */
.jaminan-card-title {
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--gold-light);
  margin-bottom: 12px;
}

/* Card body */
.jaminan-card-body {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(250,246,238,0.7);
  margin-bottom: 20px;
}
.jaminan-card-body strong {
  color: rgba(250,246,238,0.92);
  font-weight: 600;
}

/* Benefit bullet list */
.jaminan-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 4px;
  border-top: 1px solid rgba(201,162,75,0.1);
}
.jaminan-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(250,246,238,0.65);
}
.jaminan-benefits li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--gold);
  flex-shrink: 0;
  margin-top: 7px;
}

/* Bottom CTA */
.jaminan-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.jaminan-cta-note {
  font-size: 0.875rem;
  color: rgba(250,246,238,0.5);
}

/* Tablet: 2×2 */
@media (min-width: 768px) {
  .jaminan         { padding: 80px 0 96px; }
  .jaminan-grid    { grid-template-columns: 1fr 1fr; gap: 24px; }
  .jaminan-card    { padding: 36px 32px; }
  .jaminan-card-title { font-size: 1.25rem; }
}

/* Desktop: 4 columns */
@media (min-width: 1280px) {
  .jaminan         { padding: 96px 0 112px; }
  .jaminan-grid    { grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .jaminan-card    { padding: 36px 28px; }
  .jaminan-number  { font-size: 5rem; }
}


/* ============================================================
   SECTION 5 — LAYANAN & PRODUK
   ============================================================ */
.layanan {
  background-color: var(--cream);
  padding: 64px 0;
}

/* 6-card grid */
.layanan-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 56px;
}

.layanan-card {
  background-color: var(--white);
  border: 1px solid rgba(15,43,82,0.07);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color var(--t-base), box-shadow var(--t-base), transform var(--t-base);
  cursor: default;
}
.layanan-card:hover {
  border-color: rgba(201,162,75,0.4);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.layanan-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background-color: rgba(15,43,82,0.05);
  border-radius: 12px;
  color: var(--navy-royal);
  flex-shrink: 0;
  transition: background-color var(--t-base), color var(--t-base);
}
.layanan-card:hover .layanan-card-icon {
  background-color: rgba(201,162,75,0.12);
  color: var(--gold-deep);
}

.layanan-card-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}

.layanan-card-body {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
  flex: 1;
}

/* Teknik pembuatan sub-section */
.teknik-section {
  background-color: var(--navy-royal);
  border-radius: 16px;
  padding: 32px 28px;
}

.teknik-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 24px;
  text-align: center;
}

.teknik-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.teknik-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(201,162,75,0.12);
  position: relative;
  padding-left: 16px;
}
.teknik-item:last-child { border-bottom: none; }
.teknik-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 60%;
  background-color: var(--gold);
  border-radius: 2px;
}

.teknik-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--cream);
}
.teknik-desc {
  font-size: 0.875rem;
  color: rgba(250,246,238,0.6);
  line-height: 1.5;
}

/* Highlight item */
.teknik-item--highlight {
  background-color: rgba(201,162,75,0.10);
  border-radius: 8px;
  padding: 14px 16px;
  border-bottom: none;
  outline: 1px solid rgba(201,162,75,0.30);
}
.teknik-item--highlight::before {
  background-color: var(--gold-light);
  width: 4px;
  height: 70%;
  left: 0;
  border-radius: 0 2px 2px 0;
}
.teknik-item--highlight .teknik-name {
  color: var(--gold-light);
}
.teknik-item--highlight .teknik-desc {
  color: rgba(250,246,238,0.8);
}

.teknik-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-deep);
  background-color: var(--gold);
  border-radius: 4px;
  padding: 2px 8px;
  margin-bottom: 4px;
  align-self: flex-start;
}

/* Tablet */
@media (min-width: 768px) {
  .layanan          { padding: 80px 0; }
  .layanan-grid     { grid-template-columns: 1fr 1fr; gap: 20px; }
  .layanan-card     { padding: 28px; }
  .teknik-grid      { grid-template-columns: 1fr 1fr; }
  .teknik-item      { border-bottom: none; border-right: 1px solid rgba(201,162,75,0.12); }
  .teknik-item:last-child,
  .teknik-item:nth-child(2) { border-right: none; }
}

/* Desktop */
@media (min-width: 1024px) {
  .layanan          { padding: 96px 0; }
  .layanan-grid     { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .teknik-section   { padding: 40px 48px; }
  .teknik-grid      { grid-template-columns: repeat(4, 1fr); }
  .teknik-title     { text-align: left; }
  .teknik-item      { border-right: 1px solid rgba(201,162,75,0.12); padding-left: 24px; }
  .teknik-item:last-child { border-right: none; }
  .teknik-item:nth-child(2) { border-right: 1px solid rgba(201,162,75,0.12); }
}


/* ============================================================
   SECTION 6 — WORKSHOP
   ============================================================ */
.workshop {
  position: relative;
  background-color: var(--navy-royal);
  padding: 64px 0;
  overflow: hidden;
}

.workshop-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(ellipse 60% 50% at 0% 50%, rgba(8,29,61,0.6) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 100% 20%, rgba(30,65,115,0.5) 0%, transparent 60%),
    repeating-linear-gradient(
      90deg, transparent, transparent 64px,
      rgba(201,162,75,0.02) 64px, rgba(201,162,75,0.02) 65px
    );
}

.workshop-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

/* Text content */
.workshop-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.workshop-title { color: var(--cream); }

.workshop-body {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(250,246,238,0.75);
}

/* Proof bullet list */
.workshop-proof {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.workshop-proof li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: rgba(250,246,238,0.8);
  line-height: 1.6;
}
.workshop-proof-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background-color: rgba(201,162,75,0.15);
  border-radius: 50%;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

/* Video placeholder */
.workshop-video-placeholder {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: rgba(8,29,61,0.6);
  border: 1px dashed rgba(201,162,75,0.3);
  border-radius: 12px;
  padding: 16px 20px;
}
.video-play-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: rgba(201,162,75,0.15);
  border-radius: 50%;
  color: var(--gold);
  flex-shrink: 0;
}
.video-placeholder-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.video-placeholder-text strong {
  font-size: 0.9375rem;
  color: var(--cream);
  font-weight: 600;
}
.video-placeholder-text span {
  font-size: 0.8125rem;
  color: rgba(250,246,238,0.5);
  font-style: italic;
}

.workshop-cta { align-self: flex-start; }

/* Photo gallery */
.workshop-gallery { width: 100%; }

.workshop-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 12px;
}

.workshop-photo {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--navy-soft);
  aspect-ratio: 4 / 3;
}
/* First photo spans 2 rows (tall) only on tablet+ */
.workshop-photo--tall { grid-row: span 1; }

.workshop-photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-soft) 0%, var(--navy-deep) 100%);
}

.workshop-photo figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 12px;
  background: linear-gradient(to top, rgba(8,29,61,0.85), transparent);
  font-size: 0.75rem;
  color: rgba(250,246,238,0.8);
  line-height: 1.3;
}

/* Tablet: side-by-side */
@media (min-width: 768px) {
  .workshop           { padding: 80px 0; }
  .workshop-container { grid-template-columns: 1fr 1fr; gap: 64px; }
  .workshop-photo--tall {
    grid-row: span 2;
    aspect-ratio: auto;
  }
  .workshop-photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px;
  }
  .workshop-photo { aspect-ratio: auto; }
}

/* Desktop */
@media (min-width: 1024px) {
  .workshop           { padding: 96px 0; }
  .workshop-container { grid-template-columns: 5fr 4fr; gap: 80px; align-items: center; }
  .workshop-photo-grid { grid-template-rows: 200px 200px; }
}


/* ============================================================
   SECTION 7 — PROSES PEMESANAN
   ============================================================ */
.proses {
  background-color: var(--sand);
  padding: 64px 0;
}

/* Timeline list */
.proses-timeline {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 48px;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 48px;
}

/* Each step */
.proses-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0 20px;
  position: relative;
}

/* Indicator column: number circle + vertical line */
.proses-step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.proses-step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--navy-royal);
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  border: 2px solid rgba(201,162,75,0.3);
  transition: border-color var(--t-base), box-shadow var(--t-base);
}
.proses-step:hover .proses-step-number {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,162,75,0.1);
}

/* Final step number gets gold fill */
.proses-step-number--final {
  background-color: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}

/* Vertical connecting line */
.proses-step-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, rgba(201,162,75,0.4), rgba(201,162,75,0.1));
  min-height: 32px;
  margin: 4px 0;
}

/* Content column */
.proses-step-content {
  padding-bottom: 36px;
}
.proses-step--last .proses-step-content {
  padding-bottom: 0;
}

.proses-step-duration {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background-color: rgba(201,162,75,0.1);
  border: 1px solid rgba(201,162,75,0.2);
  border-radius: 100px;
  padding: 3px 10px;
  margin-bottom: 8px;
}

.proses-step-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-royal);
  margin-bottom: 8px;
  line-height: 1.4;
}

.proses-step-body {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* Bottom CTA */
.proses-cta {
  text-align: center;
}

/* Navy button variant (used in proses section on sand bg) */
.btn-navy {
  background-color: var(--navy-royal);
  color: var(--cream);
  border: 2px solid var(--navy-royal);
}
.btn-navy:hover,
.btn-navy:focus-visible {
  background-color: var(--navy-soft);
  border-color: var(--navy-soft);
  box-shadow: 0 4px 20px rgba(15,43,82,0.3);
}

/* Tablet */
@media (min-width: 768px) {
  .proses { padding: 80px 0; }
  .proses-step-title  { font-size: 1.0625rem; }
}

/* Desktop: horizontal timeline */
@media (min-width: 1024px) {
  .proses { padding: 96px 0; }

  .proses-timeline {
    flex-direction: row;
    align-items: flex-start;
    max-width: 100%;
    gap: 0;
  }

  .proses-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
  }

  .proses-step-indicator {
    flex-direction: row;
    width: 100%;
    align-items: center;
  }

  .proses-step-line {
    flex: 1;
    width: auto;
    height: 2px;
    min-height: unset;
    background: linear-gradient(to right, rgba(201,162,75,0.4), rgba(201,162,75,0.1));
    margin: 0 4px;
  }

  .proses-step--last .proses-step-indicator { justify-content: flex-end; }
  .proses-step--last .proses-step-line { display: none; }

  .proses-step-content {
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .proses-step-number {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
  }
}


/* ============================================================
   SECTION 8 — PORTFOLIO
   ============================================================ */
.portfolio {
  background-color: var(--cream);
  padding: 64px 0;
}

/* Filter buttons */
.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  justify-content: center;
}

.filter-btn {
  padding: 8px 18px;
  border-radius: 100px;
  border: 1.5px solid rgba(15,43,82,0.15);
  background-color: transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color var(--t-base), border-color var(--t-base),
              color var(--t-base), transform var(--t-fast);
  min-height: 44px;
}
.filter-btn:hover {
  border-color: var(--navy-royal);
  color: var(--navy-royal);
}
.filter-btn.is-active {
  background-color: var(--navy-royal);
  border-color: var(--navy-royal);
  color: var(--cream);
}

/* Masonry-style grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 160px;
  gap: 10px;
  margin-bottom: 24px;
}

/* Individual portfolio item */
.portfolio-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  grid-row: span 1;
  transition: transform var(--t-base);
}
.portfolio-item:hover { transform: scale(1.02); }
.portfolio-item:focus-visible { outline-offset: 3px; }

.portfolio-item--tall  { grid-row: span 2; }
.portfolio-item--wide  { grid-column: span 2; }

/* Placeholder image background */
.portfolio-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy-soft) 0%, var(--navy-deep) 100%);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 12px;
  position: relative;
}
.portfolio-img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 24px,
      rgba(201,162,75,0.04) 24px, rgba(201,162,75,0.04) 25px);
}

/* Category badge */
.portfolio-cat-badge {
  position: relative;
  z-index: 1;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-light);
  background-color: rgba(8,29,61,0.6);
  border: 1px solid rgba(201,162,75,0.25);
  border-radius: 6px;
  padding: 3px 8px;
}

/* Hover overlay */
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(8,29,61,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t-base);
}
.portfolio-item:hover .portfolio-overlay,
.portfolio-item:focus-visible .portfolio-overlay { opacity: 1; }
.portfolio-overlay span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.04em;
  border: 1px solid rgba(250,246,238,0.5);
  padding: 6px 14px;
  border-radius: 100px;
}

/* Hidden state for filter */
.portfolio-item.is-hidden {
  display: none;
}
.portfolio-item.is-fading {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity var(--t-base), transform var(--t-base);
}

.portfolio-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.6;
  font-style: italic;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background-color: rgba(8,29,61,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base);
}
.lightbox:not([hidden]) {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  max-width: 900px;
  max-height: 85vh;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.lightbox-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--navy-soft), var(--navy-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(201,162,75,0.4);
  font-size: 0.9375rem;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  background-color: rgba(250,246,238,0.1);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--t-fast);
  z-index: 1;
}
.lightbox-close:hover { background-color: rgba(250,246,238,0.2); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background-color: rgba(250,246,238,0.1);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--t-fast);
}
.lightbox-nav:hover { background-color: rgba(250,246,238,0.2); }
.lightbox-nav--prev { left: 16px; }
.lightbox-nav--next { right: 16px; }

@media (min-width: 768px) {
  .portfolio         { padding: 80px 0; }
  .portfolio-grid    { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; gap: 14px; }
}
@media (min-width: 1024px) {
  .portfolio         { padding: 96px 0; }
  .portfolio-grid    { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px; }
}


/* ============================================================
   SECTION 9 — TESTIMONI
   ============================================================ */
.testimoni {
  position: relative;
  background-color: var(--navy-royal);
  padding: 64px 0;
  overflow: hidden;
}
.testimoni-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(8,29,61,0.8) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 0%,   rgba(30,65,115,0.5) 0%, transparent 60%);
}
.testimoni > .container { position: relative; z-index: 1; }

/* Carousel wrapper */
.testimoni-carousel { width: 100%; }

.testimoni-track-wrapper {
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 28px;
}

.testimoni-track {
  display: flex;
  transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Testimoni card */
.testimoni-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 0 0 100%;
  min-width: 0;
  box-sizing: border-box;
}

.testimoni-stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
}

.testimoni-quote {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-dark);
  font-style: italic;
  flex: 1;
}
.testimoni-quote::before { content: ''; }

.testimoni-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(15,43,82,0.08);
}

.testimoni-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(15,43,82,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy-royal);
  flex-shrink: 0;
}

.testimoni-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimoni-info strong {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}
.testimoni-info span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Controls */
.testimoni-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.testimoni-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(250,246,238,0.1);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--t-base);
  flex-shrink: 0;
}
.testimoni-btn:hover { background-color: rgba(201,162,75,0.2); }

.testimoni-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.testimoni-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(250,246,238,0.3);
  border: none;
  cursor: pointer;
  transition: background-color var(--t-base), transform var(--t-base), width var(--t-base);
  padding: 0;
  min-height: unset;
}
.testimoni-dot.is-active {
  background-color: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* Desktop: show 3 cards at once */
@media (min-width: 768px) {
  .testimoni { padding: 80px 0; }
  .testimoni-card { padding: 32px 28px; }
}
@media (min-width: 1024px) {
  .testimoni { padding: 96px 0; }

  .testimoni-track-wrapper { overflow: visible; }
  .testimoni-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    transform: none !important; /* override JS on desktop */
  }
  .testimoni-card { flex: unset; min-width: unset; }

  /* Hide prev/next on desktop; dots remain for a11y */
  .testimoni-btn { display: none; }
  .testimoni-dot { display: none; }
  .testimoni-controls { display: none; }
}


/* ============================================================
   SECTION 10 — FAQ
   ============================================================ */
.faq {
  background-color: var(--cream);
  padding: 64px 0;
}

.faq-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* details/summary reset & style */
.faq-item {
  border-bottom: 1px solid rgba(15,43,82,0.1);
}
.faq-item:first-child { border-top: 1px solid rgba(15,43,82,0.1); }
details.faq-item summary { list-style: none; }
details.faq-item summary::-webkit-details-marker { display: none; }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 4px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.5;
  user-select: none;
  transition: color var(--t-fast);
}
.faq-question:hover { color: var(--navy-royal); }

.faq-chevron {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--gold-deep);
  transition: transform var(--t-base);
}
details[open] .faq-chevron { transform: rotate(180deg); }

/* Answer content — JS will animate height */
.faq-answer {
  overflow: hidden;
  transition: height var(--t-slow) cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer p {
  padding: 0 4px 20px;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-muted);
}

/* Tablet+ */
@media (min-width: 768px) {
  .faq { padding: 80px 0; }
  .faq-question { font-size: 1.0625rem; padding: 22px 4px; }
}
@media (min-width: 1024px) {
  .faq           { padding: 96px 0; }
  .faq-container { grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
  .faq-container .section-header { margin-bottom: 0; position: sticky; top: 100px; }
}


/* ============================================================
   SECTION 11 — CTA PENUTUP + FORM
   ============================================================ */
.cta-penutup {
  position: relative;
  background-color: var(--navy-royal);
  padding: 64px 0;
  overflow: hidden;
}

.cta-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(ellipse 70% 60% at 0% 50%,   rgba(8,29,61,0.7)   0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 100% 100%, rgba(30,65,115,0.5) 0%, transparent 60%),
    repeating-linear-gradient(
      45deg, transparent, transparent 56px,
      rgba(201,162,75,0.02) 56px, rgba(201,162,75,0.02) 57px
    );
}

.cta-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

/* ---- Left copy ---- */
.cta-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--cream);
}

.cta-body {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(250,246,238,0.75);
}

.cta-wa-btn { align-self: flex-start; }

.cta-or {
  font-size: 0.875rem;
  color: rgba(250,246,238,0.45);
  margin-top: -8px;
}

.cta-trust-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.cta-trust-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(250,246,238,0.65);
}
.cta-trust-list svg { color: var(--gold); flex-shrink: 0; }

/* ---- Right form card ---- */
.cta-form-wrap { width: 100%; }

.cta-form-card {
  background-color: var(--white);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 24px 64px rgba(8,29,61,0.35);
}

/* Form layout */
.konsultasi-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}
.form-label span[aria-hidden] { color: #c53030; }
.form-label-optional {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.8125rem;
}

.form-input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid rgba(15,43,82,0.15);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-dark);
  background-color: var(--white);
  transition: border-color var(--t-base), box-shadow var(--t-base);
  appearance: none;
  -webkit-appearance: none;
  min-height: 48px;
}
.form-input::placeholder { color: var(--text-muted); opacity: 0.7; }
.form-input:focus {
  outline: none;
  border-color: var(--navy-royal);
  box-shadow: 0 0 0 3px rgba(15,43,82,0.08);
}
.form-input.has-error {
  border-color: #c53030;
  box-shadow: 0 0 0 3px rgba(197,48,48,0.08);
}
.form-input.is-valid {
  border-color: #276749;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7790' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6,9 12,15 18,9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

.form-error {
  font-size: 0.8125rem;
  color: #c53030;
  min-height: 18px;
  line-height: 1.3;
}

.form-hint {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* Full-width button */
.btn-full { width: 100%; justify-content: center; }

.form-privacy {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  justify-content: center;
  text-align: center;
}
.form-privacy svg { flex-shrink: 0; color: var(--navy-royal); }

/* Success state */
.form-success {
  text-align: center;
  padding: 32px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.success-icon {
  width: 64px;
  height: 64px;
  background-color: rgba(39,103,73,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #276749;
}
.success-title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--navy-royal);
}
.success-body {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 360px;
}
.success-body strong { color: var(--navy-royal); }

/* Tablet */
@media (min-width: 768px) {
  .cta-penutup    { padding: 80px 0; }
  .cta-title      { font-size: 2.5rem; }
  .cta-form-card  { padding: 36px 32px; }
  .form-row       { grid-template-columns: 1fr 1fr; }
}

/* Desktop */
@media (min-width: 1024px) {
  .cta-penutup    { padding: 96px 0; }
  .cta-container  { grid-template-columns: 5fr 6fr; gap: 72px; align-items: center; }
  .cta-title      { font-size: 2.75rem; }
}


/* ============================================================
   SECTION 12 — FOOTER
   ============================================================ */
.footer {
  background-color: var(--navy-deep);
}

/* Main 3-column grid */
.footer-main { padding: 64px 0 48px; }

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

/* Brand column */
.footer-logo {
  height: 42px;
  width: auto;
  border-radius: 4px;
  margin-bottom: 16px;
}

.footer-tagline-brand {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(250,246,238,0.55);
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: rgba(250,246,238,0.07);
  color: rgba(250,246,238,0.55);
  border: 1px solid rgba(250,246,238,0.08);
  transition: background-color var(--t-base), color var(--t-base), border-color var(--t-base);
}
.footer-social-link:hover {
  background-color: rgba(201,162,75,0.15);
  color: var(--gold-light);
  border-color: rgba(201,162,75,0.25);
}

/* Contact + nav columns */
.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(250,246,238,0.6);
  line-height: 1.5;
}
.footer-contact-list svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); opacity: 0.7; }
.footer-contact-list a {
  color: rgba(250,246,238,0.6);
  transition: color var(--t-fast);
}
.footer-contact-list a:hover { color: var(--gold-light); }

.footer-hours {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 0;
}
.footer-hours li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.875rem;
  color: rgba(250,246,238,0.55);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(250,246,238,0.06);
}
.footer-hours li:last-child { border-bottom: none; }

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-nav a {
  font-size: 0.875rem;
  color: rgba(250,246,238,0.55);
  transition: color var(--t-fast);
  display: inline-block;
  padding: 3px 0;
}
.footer-nav a:hover { color: var(--gold-light); }

/* Gold divider */
.footer-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(201,162,75,0.5) 20%,
    rgba(201,162,75,0.5) 80%,
    transparent 100%
  );
  margin-inline: 0;
}

/* Tagline */
.footer-tagline-wrap {
  padding: 28px 0;
  text-align: center;
}
.footer-tagline-quote {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-style: italic;
  color: rgba(250,246,238,0.4);
  line-height: 1.6;
  max-width: 640px;
  margin-inline: auto;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(250,246,238,0.06);
  padding: 16px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copyright {
  font-size: 0.8125rem;
  color: rgba(250,246,238,0.35);
}
.footer-back-top {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: rgba(250,246,238,0.4);
  transition: color var(--t-fast);
}
.footer-back-top:hover { color: var(--gold-light); }

/* Tablet */
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .footer-brand { grid-column: span 2; }
}

/* Desktop */
@media (min-width: 1024px) {
  .footer-main   { padding: 72px 0 56px; }
  .footer-grid   { grid-template-columns: 2fr 1.5fr 1.5fr; gap: 64px; }
  .footer-brand  { grid-column: span 1; }
}

/* ============================================================
   SKIP NAV
   ============================================================ */
.skip-nav {
  position: absolute;
  left: -100%;
  top: 8px;
  z-index: 9999;
  padding: 10px 20px;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  transition: left var(--t-fast);
}
.skip-nav:focus { left: 8px; }

/* ============================================================
   SCROLL REVEAL
   Hanya aktif setelah JS menambahkan .js-reveal-ready ke <html>
   Tanpa JS, semua konten tetap terlihat normal.
   ============================================================ */

/* Fade up */
.js-reveal-ready .reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1),
              transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.js-reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Slide dari kiri */
.js-reveal-ready .reveal-left {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1),
              transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.js-reveal-ready .reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Slide dari kanan */
.js-reveal-ready .reveal-right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1),
              transform 0.7s cubic-bezier(0.22,1,0.36,1);
  transition-delay: 120ms;
}
.js-reveal-ready .reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale in */
.js-reveal-ready .reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1),
              transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.js-reveal-ready .reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger fade-up untuk grid/list */
.js-reveal-ready .reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1),
              transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.js-reveal-ready .reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}
.js-reveal-ready .reveal-stagger.is-visible > *:nth-child(1)  { transition-delay:   0ms; }
.js-reveal-ready .reveal-stagger.is-visible > *:nth-child(2)  { transition-delay:  90ms; }
.js-reveal-ready .reveal-stagger.is-visible > *:nth-child(3)  { transition-delay: 180ms; }
.js-reveal-ready .reveal-stagger.is-visible > *:nth-child(4)  { transition-delay: 270ms; }
.js-reveal-ready .reveal-stagger.is-visible > *:nth-child(5)  { transition-delay: 360ms; }
.js-reveal-ready .reveal-stagger.is-visible > *:nth-child(6)  { transition-delay: 450ms; }
.js-reveal-ready .reveal-stagger.is-visible > *:nth-child(7)  { transition-delay: 540ms; }
.js-reveal-ready .reveal-stagger.is-visible > *:nth-child(8)  { transition-delay: 540ms; }
.js-reveal-ready .reveal-stagger.is-visible > *:nth-child(9)  { transition-delay: 540ms; }
.js-reveal-ready .reveal-stagger.is-visible > *:nth-child(10) { transition-delay: 540ms; }

/* ============================================================
   SCROLLSPY ACTIVE NAV LINK
   ============================================================ */
.nav-link.is-active {
  color: var(--gold-light) !important;
}

/* ============================================================
   MICRO-INTERACTIONS
   ============================================================ */

/* -- Buttons: lift saat hover, press saat klik -- */
.btn:hover,
.btn:focus-visible              { transform: translateY(-2px); }
.btn:active                     { transform: translateY(0) scale(0.98); }
.btn-gold:hover,
.btn-gold:focus-visible         { box-shadow: 0 6px 24px rgba(201,162,75,0.45); }

.nav-cta-btn:hover,
.nav-cta-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(201,162,75,0.35);
}
.nav-cta-btn:active             { transform: translateY(0) scale(0.97); }

/* -- Nav logo: scale saat hover -- */
.nav-logo {
  transition: transform var(--t-fast), opacity var(--t-fast);
}
.nav-logo:hover                 { transform: scale(1.04); opacity: 0.88; }

/* -- Nav links: garis bawah slide dari kiri (desktop only) -- */
@media (min-width: 1024px) {
  .nav-link                     { position: relative; }
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width 0.25s ease;
  }
  .nav-link:hover::after,
  .nav-link:focus-visible::after,
  .nav-link.is-active::after    { width: 55%; }
}

/* -- Pain cards: icon geser + warna saat hover -- */
.pain-card-icon {
  transition: transform var(--t-base), color var(--t-base);
}
.pain-card:hover .pain-card-icon {
  transform: scale(1.18) rotate(-8deg);
  color: var(--gold-deep);
}

/* -- Jaminan cards: icon scale -- */
.jaminan-icon-wrap {
  transition: background-color var(--t-base), border-color var(--t-base), transform var(--t-base);
}
.jaminan-card:hover .jaminan-icon-wrap {
  transform: scale(1.1) translateY(-2px);
}

/* -- Layanan cards: icon scale + rotate -- */
.layanan-card-icon {
  transition: background-color var(--t-base), color var(--t-base), transform var(--t-base);
}
.layanan-card:hover .layanan-card-icon {
  transform: scale(1.15) rotate(6deg);
}

/* -- Proses: nomor scale + step hover bg -- */
.proses-step {
  border-radius: 12px;
  padding: 8px 4px;
  transition: background-color var(--t-base);
}
.proses-step:hover {
  background-color: rgba(201,162,75,0.04);
}
.proses-step-number {
  transition: border-color var(--t-base), box-shadow var(--t-base), transform var(--t-base);
}
.proses-step:hover .proses-step-number {
  transform: scale(1.1);
}

/* -- Portfolio: image zoom dalam card -- */
.portfolio-img-placeholder,
.portfolio-item img {
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
}
.portfolio-item:hover .portfolio-img-placeholder,
.portfolio-item:hover img       { transform: scale(1.07); }

/* -- Filter buttons: hover lift, active press -- */
.filter-btn {
  transition:
    background-color var(--t-base),
    color var(--t-base),
    border-color var(--t-base),
    transform var(--t-fast),
    box-shadow var(--t-base);
}
.filter-btn:hover               { transform: translateY(-1px); }
.filter-btn:active              { transform: translateY(0) scale(0.96); }

/* -- Testimoni cards: lift saat hover -- */
.testimoni-card {
  transition: box-shadow var(--t-base), transform var(--t-base);
}
.testimoni-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* -- FAQ: background item saat hover -- */
.faq-item {
  border-radius: 10px;
  padding: 0 8px;
  margin: 0 -8px;
  transition: background-color var(--t-base);
}
.faq-item:hover                 { background-color: rgba(15,43,82,0.03); }

/* -- Form inputs: gold focus glow -- */
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,75,0.18);
}

/* -- WA float: scale + slight rotate saat hover -- */
.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: scale(1.12) rotate(8deg);
}

/* -- Workshop proof list: slide kanan saat hover -- */
.workshop-proof li {
  transition: transform var(--t-fast);
  border-radius: 6px;
}
.workshop-proof li:hover        { transform: translateX(6px); }

/* -- Footer social links: lift + scale -- */
.footer-social-link {
  transition: color var(--t-base), transform var(--t-fast), background-color var(--t-base);
}
.footer-social-link:hover       { transform: translateY(-3px) scale(1.18); }

/* -- Back to top: bounce ke atas -- */
.footer-back-top {
  transition: color var(--t-base), transform var(--t-fast);
}
.footer-back-top:hover          { transform: translateY(-4px); }

/* ============================================================
   PREFERS-REDUCED-MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .js-reveal-ready .reveal,
  .js-reveal-ready .reveal-left,
  .js-reveal-ready .reveal-right,
  .js-reveal-ready .reveal-scale,
  .js-reveal-ready .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .trust-marquee-inner { animation: none; }
  .whatsapp-float      { animation: none; }
  * { scroll-behavior: auto !important; }
  /* Matikan semua micro-interaction transform */
  .btn:hover, .btn:focus-visible,
  .btn:active,
  .nav-cta-btn:hover, .nav-cta-btn:focus-visible, .nav-cta-btn:active,
  .nav-logo:hover,
  .filter-btn:hover, .filter-btn:active,
  .testimoni-card:hover,
  .footer-social-link:hover,
  .footer-back-top:hover,
  .whatsapp-float:hover, .whatsapp-float:focus-visible,
  .workshop-proof li:hover,
  .pain-card:hover .pain-card-icon,
  .jaminan-card:hover .jaminan-icon-wrap,
  .layanan-card:hover .layanan-card-icon,
  .proses-step:hover .proses-step-number { transform: none !important; }
}
