/* =========================================================
   ASATURA — LAYANAN (layanan.css)

   Lapisan bersama untuk SEMUA halaman di /jakarta/*.
   Sebelumnya bernama tukang-cat.css, padahal isinya bukan gaya
   halaman cat melainkan komponen bersama: hero, daftar isi,
   chip area, kartu CTA, kartu brand.

   Urutan pemuatan:
     style.css    -> global (navbar, footer, FAQ, tombol, tipografi)
     layanan.css  -> file ini, komponen bersama halaman layanan
     <halaman>.css-> hanya yang khas halaman itu

   Blok .lp- di bawah dulu diduplikasi di alumunium.css dan
   atap-bocor.css. Sekarang satu salinan saja, di sini.
   ========================================================= */

/* HERO WITH IMAGE (service/location landing pages) */
  .hero-split{
    position:relative;display:grid;
    grid-template-columns:1.05fr 0.95fr;gap:52px;align-items:center;
  }
  .hero-meta{display:flex;gap:18px;flex-wrap:wrap;margin-top:16px;font-size:13px;color:var(--ink-muted);}
  .hero-meta span{display:inline-flex;align-items:center;gap:6px;}
  .hero-media{border-radius:20px;overflow:hidden;box-shadow:0 24px 60px -20px rgba(23,23,15,0.28);position:relative;z-index:1;}
  .hero-media img{width:100%;height:100%;object-fit:cover;display:block;}
  @media(max-width:900px){
    .hero-split{grid-template-columns:1fr;gap:28px;}
    .hero-media{order:-1;}
  }

  /* TABLE OF CONTENTS CARD */
  .toc-card{
    background:var(--card);border:1px solid var(--card-border);
    border-left:3px solid var(--lime-dark);
    border-radius:16px;padding:26px 28px;margin:36px 0 8px;
  }
  .toc-title{
    display:flex;align-items:center;gap:10px;
    font-family:var(--serif);font-size:18px;font-weight:600;
    color:var(--ink);margin-bottom:14px;
  }
  .toc-title svg{color:var(--lime-dark);flex-shrink:0;}
  .toc-card ul{list-style:none;columns:2;column-gap:32px;}
  .toc-card li{break-inside:avoid;border-bottom:1px solid var(--card-border);}
  .toc-card li:last-child, .toc-card li:nth-last-child(2){border-bottom:none;}
  .toc-card a{
    display:block;padding:9px 0;font-size:14px;color:var(--ink-muted);
    position:relative;padding-left:16px;
  }
  .toc-card a::before{
    content:'';position:absolute;left:0;top:16px;
    width:5px;height:5px;border-radius:999px;background:var(--lime-dark);
  }
  .toc-card a:hover{color:var(--lime-dark);}
  @media(max-width:600px){.toc-card ul{columns:1;} .toc-card{padding:22px 20px;}}

  /* AREA COVERAGE (chip groups) */
  .area-groups{display:flex;flex-direction:column;gap:26px;margin-top:8px;}
  .area-group-label{font-family:var(--serif);font-size:18px;font-weight:600;margin-bottom:12px;}
  .chips{display:flex;flex-wrap:wrap;gap:10px;}
  .chip{
    display:inline-flex;align-items:center;
    padding:8px 16px;border-radius:999px;
    border:1px solid var(--card-border);
    font-size:13.5px;color:var(--ink-muted);
    background:var(--card);
  }

  /* CITY CROSS-LINKS */
  .city-links{margin-top:48px;padding-top:36px;border-top:1px solid var(--card-border);}
  .city-links-label{font-size:14px;color:var(--ink-muted);margin-bottom:14px;}
  .chip-link{
    display:inline-flex;align-items:center;gap:7px;
    padding:9px 18px;border-radius:999px;
    border:1px solid var(--card-border);background:var(--card);
    font-size:13.5px;font-weight:500;color:var(--ink);
    transition:all .2s ease;
  }
  .chip-link svg{color:var(--lime-dark);flex-shrink:0;}
  .chip-link:hover{border-color:var(--lime-dark);background:var(--bg-alt);}
  .chip-link.is-current{background:var(--ink);border-color:var(--ink);color:#fff;}
  .chip-link.is-current svg{color:var(--lime);}

  /* CTA CARD (dark header + white body) */
  .cta-card{
    max-width:440px;margin:32px auto 0;border-radius:18px;overflow:hidden;
    border:1px solid var(--card-border);
    box-shadow:0 18px 44px -20px rgba(23,23,15,0.25);
  }
  .cta-card-head{
    background:var(--ink);color:#fff;
    display:flex;align-items:center;gap:10px;
    padding:20px 26px;font-family:var(--serif);font-size:17px;font-weight:600;
  }
  .cta-card-head svg{color:var(--lime);flex-shrink:0;}
  .cta-card-body{background:var(--card);padding:24px 26px 26px;}
  .cta-card-body p{font-size:14.5px;color:var(--ink-muted);line-height:1.6;}
  .cta-card-list{list-style:none;margin-top:20px;display:flex;flex-direction:column;gap:11px;}
  .cta-card-list li{
    font-size:13.5px;color:var(--ink);position:relative;padding-left:24px;
  }
  .cta-card-list li::before{
    content:'✓';position:absolute;left:0;top:0;
    color:var(--lime-dark);font-weight:700;
  }

  /* Breadcrumb */
  .breadcrumb{padding-top:18px;font-size:13px;color:var(--ink-muted);}
  .breadcrumb a{color:var(--ink-muted);}
  .breadcrumb a:hover{color:var(--lime-dark);}
  .breadcrumb .sep{margin:0 6px;}

  /* Hero versi halaman dalam (breadcrumb sudah memberi jarak atas) */
  .hero.hero-inner{padding-top:24px;}

  /* Baris tombol & tombol full-width di dalam kartu */
  .btn-row{display:flex;gap:14px;flex-wrap:wrap;margin-top:22px;}
  .btn svg{flex-shrink:0;}
  .btn-block{width:100%;justify-content:center;margin-top:18px;}

  /* Modifier section */
  .section-alt{background:var(--bg-alt);}
  .section-divider{border-top:1px solid var(--card-border);}

  /* Variasi section head */
  .section-head.head-row{
    display:flex;align-items:flex-end;justify-content:space-between;
    gap:20px;flex-wrap:wrap;
  }
  .section-head.head-tight{margin-bottom:24px;}
  .section-head.head-tight h2{font-size:clamp(22px,3vw,30px);}

  /* Link di dalam paragraf */
  .link-inline{color:var(--lime-dark);text-decoration:underline;}
  .link-inline:hover{color:var(--ink);}

  /* Nomor langkah pada kartu proses */
  .why-ic.is-step{font-family:var(--serif);font-weight:700;font-size:20px;}

  /* Wrapper grup area cakupan */
  .area-group{min-width:0;}

  /* CTA penutup rata tengah */
  .cta-center{text-align:center;max-width:620px;}
  .cta-center h2{margin-top:14px;}
  .cta-center p{color:var(--ink-muted);margin-top:14px;font-size:15.5px;}
  .cta-center .btn{margin-top:24px;}


  /* ------------------------------------------------------------
     MEREK CAT
     ------------------------------------------------------------ */
  .brand-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}
  .brand-card{
    background:var(--card);border:1px solid var(--card-border);
    border-radius:16px;padding:26px 26px 28px;
    display:flex;flex-direction:column;
  }
  .brand-head{
    display:flex;align-items:center;justify-content:space-between;
    gap:12px;margin-bottom:12px;
  }
  .brand-card h3{font-size:19px;}
  .brand-tag{
    font-size:11px;font-weight:700;letter-spacing:0.07em;text-transform:uppercase;
    color:var(--lime-dark);background:var(--bg-alt);
    border:1px solid var(--card-border);border-radius:999px;
    padding:5px 11px;white-space:nowrap;
  }
  .brand-card > p{font-size:14px;color:var(--ink-muted);line-height:1.65;}
  .brand-lines{list-style:none;margin-top:16px;display:flex;flex-direction:column;gap:9px;}
  .brand-lines li{
    font-size:13.5px;color:var(--ink);line-height:1.55;
    position:relative;padding-left:18px;
  }
  .brand-lines li::before{
    content:'';position:absolute;left:0;top:7px;
    width:6px;height:6px;border-radius:999px;
    background:var(--lime);border:1px solid var(--lime-dark);
  }
  .brand-lines b{font-weight:600;}
  @media(max-width:980px){.brand-grid{grid-template-columns:repeat(2,1fr);}}
  @media(max-width:600px){
    .brand-grid{grid-template-columns:1fr;}
    .brand-card{padding:22px 20px 24px;}
    .brand-head{flex-wrap:wrap;gap:8px;}
  }

  /* Catatan di bawah grid */
  .paint-note{
    margin-top:34px;background:var(--card);
    border:1px solid var(--card-border);border-left:3px solid var(--lime-dark);
    border-radius:14px;padding:20px 24px;
    font-size:14px;color:var(--ink-muted);line-height:1.7;
  }
  .paint-note b{color:var(--ink);font-weight:600;}
  @media(max-width:600px){.paint-note{padding:18px 20px;font-size:13.5px;}}

/* ---------------------------------------------------------
   KALKULATOR & FORM WHATSAPP
   Dipakai bersama oleh alumunium, arsitek, atap-bocor, plafon.
   Dipindah dari file yang dulu bernama service-interactive.css
   (belakangan berganti nama jadi plafon.css).
   --------------------------------------------------------- */
.calc-card{
  background:var(--card);border:1px solid var(--card-border);
  border-radius:20px;padding:32px;max-width:640px;margin:0 auto;
  box-shadow:0 24px 60px -30px rgba(23,23,15,0.25);
}
.calc-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px;}
.calc-field{display:flex;flex-direction:column;gap:7px;}
.calc-field label{font-size:13px;font-weight:600;color:var(--ink);}
.calc-field input,.calc-field select{
  padding:11px 14px;border-radius:10px;
  border:1px solid var(--card-border);background:var(--bg-alt);
  font-size:14px;color:var(--ink);font-family:inherit;
}
.calc-field input:focus,.calc-field select:focus{outline:2px solid var(--lime-dark);outline-offset:1px;}
.calc-btn{width:100%;margin-top:22px;justify-content:center;}
.calc-result{
  margin-top:24px;padding:20px 22px;border-radius:14px;
  background:var(--bg-alt);border:1px solid var(--card-border);
  border-left:3px solid var(--lime-dark);
  font-size:14.5px;color:var(--ink);line-height:1.7;
}
.calc-result:empty{display:none;}
@media(max-width:560px){.calc-grid{grid-template-columns:1fr;} .calc-card{padding:24px 20px;}}

/* ---------- FORM KONSULTASI WHATSAPP ---------- */
.wa-form-card{
  background:var(--card);border:1px solid var(--card-border);
  border-radius:20px;padding:34px;max-width:620px;margin:0 auto;
  box-shadow:0 24px 60px -30px rgba(23,23,15,0.25);
}
.wa-form-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px;}
.wa-form-field{display:flex;flex-direction:column;gap:7px;}
.wa-form-field.full{grid-column:1/-1;}
.wa-form-field label{font-size:13px;font-weight:600;color:var(--ink);}
.wa-form-field input,.wa-form-field select,.wa-form-field textarea{
  padding:11px 14px;border-radius:10px;
  border:1px solid var(--card-border);background:var(--bg-alt);
  font-size:14px;color:var(--ink);font-family:inherit;resize:vertical;
}
.wa-form-field input:focus,.wa-form-field select:focus,.wa-form-field textarea:focus{
  outline:2px solid var(--lime-dark);outline-offset:1px;
}
.wa-form-submit{width:100%;margin-top:22px;justify-content:center;}
.wa-form-note{margin-top:14px;font-size:12.5px;color:var(--ink-muted);text-align:center;}
@media(max-width:560px){.wa-form-grid{grid-template-columns:1fr;} .wa-form-card{padding:24px 20px;}}

/* ---------------------------------------------------------
   SCROLL REVEAL
   Definisinya dulu ada di service-interactive.css yang sudah
   dihapus, sehingga animasi masuk tidak pernah berjalan.
   Dua nama class dipakai di situs ini:
     .visible    -> alumunium.js, arsitek.js, plafon.js, tukang-cat.js
     .is-visible -> atap-bocor.js
   Keduanya didukung supaya tidak perlu mengubah JS.
   --------------------------------------------------------- */
.reveal{
  opacity:0;
  transform:translateY(14px);
  transition:opacity .5s ease, transform .5s ease;
}
.reveal.visible,
.reveal.is-visible{opacity:1;transform:none;}
/* Kalau JS gagal jalan, konten tetap harus terbaca. */
@media(prefers-reduced-motion:reduce){
  .reveal{transition:none;}
}

/* Chip menuju halaman yang belum dibuat. */
.chip-link.is-soon{
  opacity:.55;
  cursor:default;
  pointer-events:none;
}

/* =========================================================
   BLOK LANDING (.lp-) — struktur & visual halaman layanan
   Hero, daftar isi, kartu keunggulan, kartu kelebihan/kekurangan,
   timeline proses, tips, cakupan area, tautan layanan lain.
   Prefix .lp- dipakai agar tidak bentrok dengan .al- di atas.
   Navbar, drawer, dan footer tidak diatur di sini.
   ========================================================= */
:root {
  /* dasar gelap */
  --lp-ink:        var(--ink);
  --lp-ink-deep:   #0d0d08;
  /* aksen: lime terang hanya di latar gelap, lime-dark di latar terang */
  --lp-accent:     var(--lime);
  --lp-accent-ink: var(--lime-dark);
  --lp-accent-soft: #eef7cb;
  /* netral */
  --lp-cream:      var(--bg-alt);
  --lp-border:     var(--card-border);
  --lp-muted:      var(--ink-muted);
  --lp-faint:      var(--ink-faint);
  /* pros / cons — cons sengaja bata redup, bukan merah menyala */
  --lp-pro:        var(--lime-dark);
  --lp-con:        #a9412f;
  /* bentuk */
  --lp-r-lg: 18px;
  --lp-r-md: 14px;
  --lp-r-sm: 10px;
  --lp-shadow: 0 20px 50px -28px rgba(23, 23, 15, 0.28);
  --lp-shadow-sm: 0 8px 24px -18px rgba(23, 23, 15, 0.35);
}

/* ===== BREADCRUMB ===== */
.lp-breadcrumb {
  padding: 14px 20px;
  background: var(--lp-cream);
  border-bottom: 1px solid var(--lp-border);
}
.lp-breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--lp-muted);
}
.lp-breadcrumb a { color: var(--lp-muted); text-decoration: none; }
.lp-breadcrumb a:hover { color: var(--lp-ink); }
.lp-breadcrumb li[aria-current="page"] { color: var(--lp-ink); font-weight: 600; }
.lp-breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 6px;
  color: var(--lp-faint);
}

/* ===== HERO ===== */
.lp-hero {
  padding: 0 0 32px;
  background: linear-gradient(165deg, var(--lp-ink) 0%, var(--lp-ink-deep) 100%);
  position: relative;
  overflow: hidden;
}
.lp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 8%, rgba(205, 235, 74, 0.16), transparent 58%);
  pointer-events: none;
}
.lp-hero-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.lp-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lp-hero-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 13, 8, 0.12) 0%, rgba(13, 13, 8, 0.94) 100%);
}
.lp-hero-body { padding: 26px 20px 0; position: relative; }
.lp-hero-eyebrow {
  color: var(--lp-accent);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  margin-bottom: 10px;
}
.lp-hero h1 {
  font-size: clamp(24px, 6vw, 34px);
  line-height: 1.24;
  color: #fff;
  margin: 0 0 12px;
}
.lp-hero h1 em { font-style: normal; color: var(--lp-accent); }
.lp-hero-lede {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 18px;
  max-width: 62ch;
}

.lp-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.lp-badge {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 11.5px;
  font-weight: 600;
  padding: 6px 13px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}
.lp-badge svg { color: var(--lp-accent); flex-shrink: 0; }

.lp-hero-btns { display: flex; flex-wrap: wrap; gap: 10px; }
/* .btn-ghost bawaan style.css memakai color:var(--ink) — tak terbaca di hero gelap */
.lp-hero .btn-ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.lp-hero .btn-ghost:hover {
  border-color: var(--lp-accent);
  color: var(--lp-accent);
  background: rgba(255, 255, 255, 0.1);
}

.lp-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.58);
}
.lp-meta-row > span { display: inline-flex; align-items: center; gap: 6px; }

/* ===== DAFTAR ISI (melayang menimpa hero) ===== */
.lp-toc {
  margin: -14px 16px 24px;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-r-md);
  box-shadow: var(--lp-shadow);
  padding: 15px 17px;
  position: relative;
  z-index: 5;
}
.lp-toc-title {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--lp-muted);
  margin-bottom: 9px;
}
.lp-toc ol { list-style: none; counter-reset: lptoc; margin: 0; padding: 0; }
.lp-toc li { counter-increment: lptoc; margin-bottom: 7px; }
.lp-toc li:last-child { margin-bottom: 0; }
.lp-toc a {
  font-size: 12.5px;
  color: var(--lp-ink);
  text-decoration: none;
  font-weight: 500;
  line-height: 1.4;
}
.lp-toc a::before {
  content: counter(lptoc) ". ";
  color: var(--lp-accent-ink);
  font-weight: 700;
}
.lp-toc a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ===== SECTION ===== */
.lp-section { padding: 40px 20px; }
.lp-section.alt { background: var(--lp-cream); }
.lp-head { margin-bottom: 22px; }
.lp-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--lp-accent-ink);
  margin-bottom: 8px;
}
.lp-head h2 {
  font-size: clamp(20px, 4.4vw, 25px);
  line-height: 1.3;
  color: var(--lp-ink);
  margin: 0 0 8px;
}
.lp-head p { font-size: 13.5px; color: var(--lp-muted); line-height: 1.65; margin: 0; max-width: 62ch; }

/* ===== KARTU KEUNGGULAN ===== */
.lp-feature-list { display: flex; flex-direction: column; gap: 14px; }
.lp-feature-card {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-r-lg);
  padding: 18px;
  box-shadow: var(--lp-shadow-sm);
  display: flex;
  gap: 14px;
}
.lp-feature-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--lp-ink);
  color: var(--lp-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-feature-card h3 { font-size: 15px; color: var(--lp-ink); margin: 0 0 5px; }
.lp-feature-card p { font-size: 13px; color: var(--lp-muted); line-height: 1.6; margin: 0; }

/* ===== KARTU PILIHAN (kelebihan / kekurangan) ===== */
.lp-choice-card {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-r-lg);
  overflow: hidden;
  box-shadow: var(--lp-shadow-sm);
  margin-bottom: 16px;
}
.lp-choice-card:last-child { margin-bottom: 0; }
.lp-choice-body { padding: 20px; }
.lp-choice-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.lp-choice-head h3 {
  font-size: 16.5px;
  color: var(--lp-ink);
  margin: 0;
}
.lp-choice-tag {
  flex-shrink: 0;
  background: var(--lp-accent-soft);
  color: var(--lp-accent-ink);
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.lp-choice-body > p { font-size: 13px; color: var(--lp-muted); line-height: 1.65; margin: 0 0 16px; }
.lp-proscons { display: flex; flex-direction: column; gap: 12px; margin-bottom: 14px; }
.lp-pros, .lp-cons { font-size: 12.5px; }
.lp-pros-title, .lp-cons-title {
  font-weight: 700;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.lp-pros-title { color: var(--lp-pro); }
.lp-cons-title { color: var(--lp-con); }
.lp-pros ul, .lp-cons ul { list-style: none; margin: 0; padding: 0; }
.lp-pros li, .lp-cons li {
  padding-left: 15px;
  position: relative;
  margin-bottom: 5px;
  color: var(--ink);
  line-height: 1.55;
}
.lp-pros li::before { content: "+"; position: absolute; left: 0; color: var(--lp-pro); font-weight: 700; }
.lp-cons li::before { content: "–"; position: absolute; left: 0; color: var(--lp-con); font-weight: 700; }
.lp-choice-fit {
  background: var(--lp-cream);
  border-left: 3px solid var(--lp-accent);
  border-radius: 0 var(--lp-r-sm) var(--lp-r-sm) 0;
  padding: 11px 14px;
  font-size: 12.5px;
  color: var(--ink);
  line-height: 1.6;
}
.lp-choice-fit strong { color: var(--lp-ink); }

/* ===== KARTU LAYANAN BERGAMBAR ===== */
.lp-svc-grid { display: flex; flex-direction: column; gap: 14px; }
.lp-svc-card {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-r-lg);
  overflow: hidden;
  box-shadow: var(--lp-shadow-sm);
  display: flex;
  flex-direction: column;
}
.lp-svc-img {
  width: 100%;
  height: 165px;
  object-fit: cover;
  display: block;
  background: var(--lp-cream);
}
.lp-svc-body { padding: 16px 18px 18px; }
.lp-svc-body h3 { font-size: 15px; color: var(--lp-ink); margin: 0 0 6px; }
.lp-svc-body p { font-size: 13px; color: var(--lp-muted); line-height: 1.6; margin: 0; }

@media (min-width: 720px) {
  .lp-svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
  .lp-svc-img { height: 150px; }
}
@media (min-width: 1080px) {
  .lp-svc-grid { grid-template-columns: repeat(3, 1fr); }
  .lp-svc-img { height: 160px; }
}

/* ===== TAHAPAN PROSES ===== */
.lp-process { display: flex; flex-direction: column; }
.lp-step { display: flex; gap: 15px; padding-bottom: 24px; position: relative; }
.lp-step:last-child { padding-bottom: 0; }
.lp-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 44px;
  bottom: 4px;
  width: 2px;
  background: var(--lp-border);
}
.lp-step-num {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--lp-ink);
  color: var(--lp-accent);
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.lp-step-when {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--lp-accent-ink);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}
.lp-step-body h3 { font-size: 15px; color: var(--lp-ink); margin: 0 0 5px; }
.lp-step-body p { font-size: 13px; color: var(--lp-muted); line-height: 1.6; margin: 0; }

/* ===== TIPS ===== */
.lp-tips { display: flex; flex-direction: column; gap: 14px; }
.lp-tip {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-r-lg);
  padding: 18px;
  box-shadow: var(--lp-shadow-sm);
}
.lp-tip-num {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: var(--lp-border);
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
.lp-tip h3 { font-size: 15px; color: var(--lp-ink); margin: 0 0 6px; }
.lp-tip p { font-size: 13px; color: var(--lp-muted); line-height: 1.6; margin: 0; }

/* ===== CAKUPAN AREA ===== */
.lp-coverage {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-r-lg);
  padding: 16px 18px;
  box-shadow: var(--lp-shadow-sm);
  margin-bottom: 12px;
}
.lp-coverage:last-of-type { margin-bottom: 0; }
.lp-coverage h3 {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--lp-accent-ink);
  text-transform: uppercase;
  letter-spacing: 0.9px;
  margin: 0 0 10px;
}
.lp-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.lp-chips span {
  background: var(--lp-cream);
  color: var(--lp-ink);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
}
.lp-coverage-note {
  margin-top: 16px;
  font-size: 12.5px;
  color: var(--lp-muted);
  line-height: 1.65;
  text-align: center;
}

/* ===== TAUTAN LAYANAN LAIN ===== */
.lp-related {
  margin-top: 18px;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-r-lg);
  padding: 20px 18px;
  box-shadow: var(--lp-shadow-sm);
}
.lp-related-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--lp-ink);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lp-related-title svg { color: var(--lp-accent-ink); flex-shrink: 0; }
.lp-related-sub { font-size: 12px; color: var(--lp-muted); margin-bottom: 14px; }
.lp-related-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.lp-related-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--lp-cream);
  color: var(--lp-ink);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background .2s ease, border-color .2s ease;
}
.lp-related-tag svg { color: var(--lp-accent-ink); flex-shrink: 0; }
.lp-related-tag:hover { background: var(--lp-accent-soft); border-color: var(--lp-accent); }
.lp-related-tag.current { background: var(--lp-ink); color: #fff; cursor: default; }
.lp-related-tag.current svg { color: var(--lp-accent); }
.lp-related-tag.current:hover { background: var(--lp-ink); border-color: transparent; }

/* ===== AKSESIBILITAS ===== */
.lp-toc a:focus-visible,
.lp-related-tag:focus-visible,
.lp-breadcrumb a:focus-visible {
  outline: 2px solid var(--lp-accent-ink);
  outline-offset: 3px;
  border-radius: 4px;
}
@media (prefers-reduced-motion: reduce) {
  .lp-related-tag { transition: none; }
}

/* ===== TABLET & DESKTOP ===== */
@media (min-width: 720px) {
  .lp-hero-body, .lp-section, .lp-breadcrumb { padding-left: 40px; padding-right: 40px; }
  .lp-toc { margin-left: 40px; margin-right: 40px; }
  .lp-hero-img-wrap { height: 300px; }
  .lp-feature-list { display: grid; grid-template-columns: repeat(2, 1fr); }
  .lp-tips { display: grid; grid-template-columns: repeat(2, 1fr); }
  .lp-proscons { flex-direction: row; }
  .lp-pros, .lp-cons { flex: 1; }
}

@media (min-width: 1080px) {
  .lp-hero-body, .lp-section, .lp-breadcrumb,
  .lp-toc { max-width: 1180px; margin-left: auto; margin-right: auto; }
  .lp-toc { margin-top: -16px; }
  .lp-hero-img-wrap { height: 360px; }
  .lp-feature-list { grid-template-columns: repeat(3, 1fr); }
  .lp-choice-card { display: grid; grid-template-columns: 1fr; }
}
