/* ============================================
   PLANDEMIC SPACE — style.css
   Font: DM Serif Display + Plus Jakarta Sans + Rajdhani
   Palette: Navy + Gold + Pastel Blue + Cream
   ============================================ */

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

:root {
  --navy:         #1B2E4B;
  --navy-mid:     #243d63;
  --gold:         #C9A84C;
  --gold-dim:     #A8883C;
  --pastel:       #C8DFE8;
  --pastel-light: #E0EEF3;
  --pastel-dark:  #A8C8D5;
  --cream:        #F7F4EF;
  --ink:          #1A1A1A;
  --muted:        #5C6B7A;
  --white:        #FFFFFF;
}

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ============================================
   NAVBAR
   ============================================ */
#navbar {
  position: sticky;
  top: 0;
  z-index: 99;
  background: var(--navy);
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo { flex-shrink: 0; display: block; }

.nav-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--white);
}
.nav-name span { color: var(--gold); }

.nav-tagline {
  font-family: 'Rajdhani', sans-serif;
  font-size: 9px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 1.5px;
  margin-top: 1px;
}

.nav-right { display: flex; align-items: center; gap: 1.5rem; }

.nav-links { display: flex; align-items: center; gap: 1.75rem; }

.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--white); }

.nav-cta {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-decoration: none;
  color: var(--navy);
  background: linear-gradient(135deg, #DEC57A, var(--gold));
  border: 1px solid var(--gold);
  padding: 8px 18px;
  border-radius: 6px;
  cursor: pointer;
  display: inline-block;
  box-shadow: 0 2px 10px rgba(201, 168, 76, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.4);
  background: linear-gradient(135deg, var(--gold), #DEC57A);
}
.nav-cta:active { transform: translateY(0); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  background: var(--navy);
  padding: 7rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-kicker {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--pastel);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-kicker::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(200, 223, 232, 0.2);
  max-width: 60px;
}

.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 2rem;
  letter-spacing: -0.5px;
}
.hero h1 em { color: var(--gold); font-style: italic; }

.hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.85;
  max-width: 420px;
  margin-bottom: 3rem;
}

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

.btn-main {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 13px 24px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-main:hover { background: #d4b050; }

.btn-ghost {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: color 0.2s;
}
.btn-ghost:hover { color: rgba(255, 255, 255, 0.75); }

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-n {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.stat-l {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 4px;
  letter-spacing: 0.5px;
}

/* ============================================
   TENTANG KAMI
   ============================================ */
.about {
  background: var(--pastel-light);
  padding: 6rem 2rem;
}

.about-inner {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--navy-mid);
  opacity: 0.6;
  margin-bottom: 1.25rem;
}

.about h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.about p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 1rem;
}
.about p strong { color: var(--navy); font-weight: 600; }

/* Timeline */
.timeline { display: flex; flex-direction: column; }

.tl {
  display: grid;
  grid-template-columns: 44px 1fr;
  padding-bottom: 2rem;
  position: relative;
}
.tl:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 21px;
  top: 34px;
  bottom: 0;
  width: 1px;
  background: var(--pastel-dark);
  opacity: 0.5;
}

.tl-left { padding-top: 4px; }

.tl-dot {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--pastel-dark);
}
.tl-dot.mark {
  background: var(--navy);
  width: 12px;
  height: 12px;
}

.tl-date {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--navy);
  opacity: 0.5;
  margin-bottom: 3px;
}
.tl-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}
.tl-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================
   CARA KERJA
   ============================================ */
.howto {
  background: var(--white);
  padding: 5rem 2rem;
}

.howto-inner { max-width: 880px; margin: 0 auto; }

.sec-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.sec-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 2.5rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.step {
  padding-left: 1rem;
  border-left: 2px solid var(--pastel);
}

.step-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--pastel-dark);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.step-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.step-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.65;
}
.step-tag {
  display: inline-block;
  margin-top: 8px;
  font-size: 10px;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: 0.5px;
  padding: 2px 9px;
  border-radius: 2px;
  background: rgba(200, 223, 232, 0.4);
  color: var(--navy-mid);
}

/* ============================================
   LAYANAN
   ============================================ */
.services {
  background: var(--cream);
  padding: 5rem 2rem;
}

.services-inner { max-width: 880px; margin: 0 auto; }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--pastel);
  border: 1px solid var(--pastel);
  margin-top: 2rem;
}

.svc {
  background: var(--white);
  padding: 1.5rem;
  transition: background 0.2s;
  cursor: default;
}
.svc:hover { background: var(--pastel-light); }

.svc-num {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--pastel-dark);
  margin-bottom: 0.75rem;
}
.svc-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.svc-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
}
.svc-list {
  list-style: none;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.svc-list li {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}
.svc-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 11px;
}
.svc-badge {
  display: inline-block;
  margin-top: 8px;
  font-size: 10px;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: 0.5px;
  padding: 2px 8px;
  border-radius: 2px;
  background: rgba(200, 223, 232, 0.5);
  color: var(--navy-mid);
}

/* ============================================
   GALERI
   ============================================ */
.gallery {
  background: var(--white);
  padding: 5rem 2rem;
}
.gallery-inner { max-width: 880px; margin: 0 auto; }

.gal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 200px 200px 200px 200px;
  gap: 0.75rem;
  margin-top: 2rem;
}
.gal-wide { grid-column: span 2; }
.gal-tall { grid-row: span 2; }

.gal-item {
  border-radius: 8px;
  overflow: hidden;
  background: var(--pastel-light);
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.gal-item:hover img { transform: scale(1.03); }

.gal-maps-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 1.75rem;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 2px;
  transition: gap 0.2s;
}
.gal-maps-link:hover { gap: 10px; }

/* ============================================
   TESTIMONI
   ============================================ */
.testi {
  background: var(--cream);
  padding: 5rem 2rem;
}
.testi-inner { max-width: 1000px; margin: 0 auto; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (min-width: 861px) {
  .testi-grid { grid-template-columns: repeat(5, 1fr); }
}

.testi-card {
  background: var(--white);
  border: 1px solid var(--pastel);
  border-radius: 8px;
  padding: 1.5rem;
}
.testi-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}
.testi-text {
  font-size: 13px;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.testi-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
}
.testi-source {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

@media (max-width: 720px) {
  .testi-grid { grid-template-columns: 1fr; }
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  background: var(--white);
  padding: 5rem 2rem;
}
.faq-inner { max-width: 720px; margin: 0 auto; }

.faq-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--pastel);
  padding: 1.5rem 0;
}
.faq-item:first-child { border-top: 1px solid var(--pastel); }

.faq-q {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.3px;
  margin-bottom: 0.6rem;
}
.faq-a {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
}

/* ============================================
   NILAI KAMI
   ============================================ */
.values {
  background: var(--navy);
  padding: 5rem 2rem;
}

.values-inner { max-width: 880px; margin: 0 auto; }
.values .sec-title { color: var(--white); }

.val-list {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(200, 223, 232, 0.1);
}

.val {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(200, 223, 232, 0.1);
  gap: 2rem;
}

.val-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.val-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.65;
}
.val-dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--pastel);
  opacity: 0.4;
  flex-shrink: 0;
}

/* ============================================
   CTA / KONTAK
   ============================================ */
.cta {
  background: var(--pastel-light);
  padding: 7rem 2rem;
  text-align: center;
}

.cta-inner { max-width: 480px; margin: 0 auto; }

.cta h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.cta h2 em { color: var(--gold); font-style: italic; }

.cta p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 4px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 2.5rem;
}
.cta-wa:hover { background: var(--navy-mid); }

.cta-find-us {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 0.75rem !important;
}

.cta-socials {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Versi jasa-digital: judulnya lebih panjang dari homepage, kasih ruang lebih biar nggak numpuk */
.jd-cta-inner { max-width: 600px; }
.jd-cta-secondary { margin-top: 1.5rem; }

.cta-hours {
  max-width: 280px;
  margin: 2.5rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--pastel-dark);
}
.cta-hours-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--navy-mid);
  opacity: 0.6;
  margin-bottom: 0.75rem;
}
.cta-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
  padding: 4px 0;
}
.cta-hours-row span:first-child { color: var(--navy); font-weight: 600; }

.cta-map {
  margin-top: 2rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--pastel-dark);
  line-height: 0;
}

.soc {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  padding: 7px 14px;
  border: 1px solid var(--pastel-dark);
  background: var(--white);
  border-radius: 3px;
  transition: all 0.2s;
}
.soc:hover { color: var(--navy); border-color: var(--navy); }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--navy);
  padding: 2.5rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ft-inner {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.ft-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.4);
}
.ft-name span { color: var(--gold); }

.ft-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
  margin-top: 4px;
}

.ft-addr {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1.7;
}

.ft-links { display: flex; gap: 1.25rem; flex-wrap: wrap; justify-content: flex-end; }
.ft-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.ft-links a:hover { color: var(--gold); }

/* ============================================
   RESPONSIVE
   ============================================ */
/* ============================================
   DESKTOP — Hero pas 1 layar (rating & WA langsung kelihatan)
   ============================================ */
@media (min-width: 861px) {
  .hero {
    min-height: calc(100vh - 64px);
    display: flex;
    align-items: center;
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }
  .hero-kicker { margin-bottom: 1.25rem; }
  .hero h1 {
    font-size: clamp(2.6rem, 6vw, 4.6rem);
    margin-bottom: 1.25rem;
  }
  .hero-sub { margin-bottom: 1.5rem; }
  .hero-btns { margin-bottom: 0; }
  .hero-stats { margin-top: 1.75rem; padding-top: 1.25rem; }
}

@media (max-width: 720px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .about-inner { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--navy);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
    padding: 0.5rem 2rem 1.5rem;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-link { padding: 0.85rem 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-cta { margin-top: 1rem; width: 100%; text-align: center; padding: 11px 16px; }
}

@media (max-width: 640px) {
  .steps { grid-template-columns: 1fr; }
  .hero-stats { gap: 2rem; }
  .val { grid-template-columns: 1fr; }
  .val-dot { display: none; }
  .gal-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gal-wide { grid-column: span 1; }
  .gal-tall { grid-row: span 1; }
  .gal-item { height: 150px; }
  .ft-inner { flex-direction: column; text-align: center; }
  .ft-links { justify-content: center; }
  #navbar { padding: 0 1.25rem; }
  .nav-links { padding: 0.5rem 1.25rem 1.5rem; }
  .hero { padding: 4rem 1.25rem 4.5rem; }
  .about, .howto, .services, .gallery, .values, .cta { padding: 4rem 1.25rem; }
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(37, 211, 102, 0.15);
  z-index: 90;
  opacity: 0;
  transform: translateY(16px) scale(0.9);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.2s ease;
}
.wa-float.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.wa-float:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(37, 211, 102, 0.25);
}
.wa-icon { width: 30px; height: 30px; position: relative; z-index: 1; }

.wa-float-ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.45);
  animation: wa-pulse 2.4s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 0.55; }
  70%  { transform: scale(1.7); opacity: 0; }
  100% { transform: scale(1.7); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .wa-float-ping { animation: none; }
}

@media (max-width: 640px) {
  .wa-float { bottom: 18px; right: 18px; width: 52px; height: 52px; }
  .wa-icon { width: 26px; height: 26px; }
}

.tl-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--navy);
  text-decoration: none;
  background: linear-gradient(135deg, #DEC57A, var(--gold));
  padding: 8px 16px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(201, 168, 76, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, gap 0.2s ease;
}
.tl-link:hover {
  transform: translateY(-1px);
  gap: 11px;
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.4);
}

/* ============================================
   JASA DIGITAL UMKM (halaman terpisah)
   ============================================ */
.jd-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.jd-back:hover { color: var(--white); }

.jd-pricing { background: var(--cream); padding: 5rem 2rem; }
.jd-pricing-inner { max-width: 960px; margin: 0 auto; }

.jd-price-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.jd-price-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.jd-price-card {
  background: var(--white);
  border: 1px solid var(--pastel);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 4px 16px rgba(27, 46, 75, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.jd-price-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(27, 46, 75, 0.1);
}
.jd-price-card.featured {
  border: 1px solid var(--gold);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.2);
}
.jd-price-card.featured:hover { box-shadow: 0 14px 34px rgba(201, 168, 76, 0.28); }
.jd-price-ribbon {
  position: absolute;
  top: -11px;
  left: 1.5rem;
  background: linear-gradient(135deg, #DEC57A, var(--gold));
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(201, 168, 76, 0.35);
}
.jd-price-ribbon.limited {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(27, 46, 75, 0.3);
}
.jd-price-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.3px;
}
.jd-price-tag {
  font-size: 21px;
  font-weight: 700;
  color: var(--gold-dim);
  margin: 8px 0 14px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--pastel);
  font-family: 'Rajdhani', sans-serif;
}
.jd-price-tag small {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
.jd-price-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex-grow: 1;
}
.jd-price-list li {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  padding-left: 18px;
  position: relative;
}
.jd-price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.jd-tier-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.jd-tier-card {
  background: var(--white);
  border: 1px solid var(--pastel);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  position: relative;
  box-shadow: 0 4px 16px rgba(27, 46, 75, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.jd-tier-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(27, 46, 75, 0.1);
}
.jd-tier-card.mapan {
  border: 1px solid var(--gold);
  background: var(--pastel-light);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.2);
}
.jd-tier-card.mapan:hover { box-shadow: 0 14px 34px rgba(201, 168, 76, 0.28); }
.jd-tier-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.jd-tier-sub { font-size: 12px; color: var(--muted); margin-bottom: 14px; }
.jd-tier-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--pastel);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--muted);
  text-transform: uppercase;
}
.jd-tier-price strong {
  font-family: 'Rajdhani', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--gold-dim);
  text-transform: none;
  letter-spacing: 0;
}
.jd-tier-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.jd-tier-card li {
  font-size: 13px;
  color: var(--muted);
  padding-left: 18px;
  position: relative;
  line-height: 1.55;
}
.jd-tier-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-dim);
  font-weight: 700;
  font-size: 11px;
}
.jd-card-cta {
  display: block;
  width: 100%;
  margin-top: 14px;
  padding: 12px 0 2px;
  border-top: 1px dashed var(--pastel);
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-dim);
  text-decoration: none;
  transition: color 0.2s ease;
}
.jd-card-cta:hover { color: var(--gold); text-decoration: underline; }
.jd-tier-bonus {
  display: inline-block;
  margin-top: 14px;
  background: linear-gradient(135deg, #DEC57A, var(--gold));
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2px;
  padding: 6px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(201, 168, 76, 0.35);
}

.jd-portfolio { background: var(--white); padding: 5rem 2rem; }
.jd-portfolio-inner { max-width: 880px; margin: 0 auto; }
.jd-pf-group { margin-top: 2.25rem; }
.jd-pf-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold-dim);
  background: var(--pastel-light);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.jd-pf-label-spaced { margin-top: 2.75rem; }
.jd-pf-items { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.jd-pf-item {
  border: 1px solid var(--pastel);
  border-radius: 12px;
  padding: 1.25rem 1.4rem;
  text-decoration: none;
  display: block;
  transition: background 0.2s;
}
a.jd-pf-item:hover { background: var(--pastel-light); }
.jd-pf-item-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.jd-pf-item-desc { font-size: 12.5px; color: var(--muted); line-height: 1.6; }
.jd-pf-item-link { font-size: 11px; color: var(--gold-dim); font-weight: 600; margin-top: 8px; display: inline-block; }

.jd-pf-group-spaced { margin-top: 2.25rem; }
.jd-pf-items-single { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

.jd-pf-custom {
  margin-top: 1rem;
  border: 1px dashed var(--gold);
  border-radius: 12px;
  padding: 1.1rem 1.3rem;
  background: var(--pastel-light);
}
.jd-pf-custom-h { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.jd-pf-custom-p { font-size: 12.5px; color: var(--muted); line-height: 1.6; margin-bottom: 0.8rem; }
.jd-pf-custom-cta {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  background: linear-gradient(135deg, #DEC57A, var(--gold));
  padding: 8px 16px;
  border-radius: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.jd-pf-custom-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(201,168,76,0.35); }
.jd-pf-custom-wide { max-width: 640px; margin: 1.5rem auto 0; }

.jd-desa-pricing { margin-top: 2.75rem; text-align: center; }
.jd-desa-pricing-h { font-family: 'Rajdhani', sans-serif; font-size: 22px; font-weight: 700; letter-spacing: 0.2px; color: var(--navy); margin-bottom: 0.4rem; }
.jd-desa-pricing-sub { font-size: 13.5px; color: var(--muted); margin-bottom: 1.5rem; }
.jd-desa-pricing .jd-tier-grid { text-align: left; }
.jd-desa-pricing-note { font-size: 12px; color: var(--muted); max-width: 560px; margin: 1.25rem auto 0; line-height: 1.6; }

.jd-pf-preview {
  position: relative;
  width: 100%;
  padding-top: 62%;
  overflow: hidden;
  background: var(--pastel-light);
  border-bottom: 1px solid var(--pastel);
}
.jd-pf-preview iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 400%;
  height: 400%;
  border: 0;
  pointer-events: none;
  transform: scale(0.25);
  transform-origin: 0 0;
  background: var(--white);
}
.jd-pf-body { padding: 1.1rem 1.3rem 1.3rem; }

/* Kotak perbandingan harga (sebelumnya belum ada CSS-nya) */
.jd-compare {
  margin-top: 2.5rem;
  background: var(--cream);
  border: 1px solid var(--pastel);
  border-radius: 14px;
  padding: 1.75rem;
}
.jd-compare-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: var(--navy);
  text-align: center;
  margin-bottom: 1.5rem;
}
.jd-compare-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}
.jd-compare-vs {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 5px var(--cream), 0 4px 12px rgba(27, 46, 75, 0.25);
  z-index: 1;
}
.jd-compare-box {
  background: var(--white);
  border: 1px solid var(--pastel);
  border-radius: 10px;
  padding: 1.25rem 1.4rem;
}
.jd-compare-box.bad {
  background: #FBF2F0;
  border-color: #E8C9C2;
}
.jd-compare-box.good { border-color: var(--gold); background: var(--pastel-light); }
.jd-compare-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.jd-compare-price {
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold-dim);
  margin-bottom: 10px;
}
.jd-compare-box.bad .jd-compare-price { color: #B3564A; }
.jd-compare-box ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.jd-compare-box li {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}
.jd-compare-box.bad li { color: #8C5850; }
.jd-compare-box.bad li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #C77268;
  font-weight: 700;
  font-size: 11px;
}
.jd-compare-box.good li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* Nilai Tambah Lainnya (menggantikan paragraf panjang jd-price-note) */
.jd-value-add { margin-top: 2.5rem; }
.jd-extra-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: var(--navy);
}
.jd-value-grid {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.jd-value-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.jd-value-item {
  background: var(--white);
  border: 1px solid var(--pastel);
  border-radius: 12px;
  padding: 1.25rem 1.4rem;
}
.jd-value-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.jd-value-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}
.jd-value-desc strong { color: var(--gold-dim); }

/* Grid Layanan halaman ini cuma 4 kartu — 2x2 biar nggak nyisain slot kosong */
.svc-grid-4 { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 720px) {
  .jd-price-grid { grid-template-columns: 1fr; }
  .jd-tier-grid { grid-template-columns: 1fr; }
  .jd-pf-items { grid-template-columns: 1fr; }
  .jd-compare-grid { grid-template-columns: 1fr; }
  .jd-compare-vs {
    position: static;
    transform: none;
    margin: 0.75rem auto;
    box-shadow: 0 4px 12px rgba(27, 46, 75, 0.25);
  }
  .jd-value-grid { grid-template-columns: 1fr; }
  .svc-grid-4 { grid-template-columns: 1fr; }
}
