/* =============================================================
   SITE – Orange Dental (halaman utama, artikel, kategori)
   Dipakai oleh halaman hasil generate (blog/, artikel/, category/)
   dan halaman inti site. Berdiri sendiri (tanpa Vite bundling)
   supaya 363+ halaman artikel tidak perlu ikut pipeline build.
   ============================================================= */
:root {
  --orange:    #F58634;
  --orange-dk: #F58634;
  --orange-lt: #FFEADB;
  --orange-mid:#F58634;
  --white:     #FFFFFF;
  --peach:     #FFEADB;
  --gray-100:  #F3F4F6;
  --gray-200:  #E5E7EB;
  --gray-400:  #9CA3AF;
  --gray-600:  #4B5563;
  --gray-900:  #111827;
  --green:     #00A859;
  --green-dk:  #00A859;
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.12);
  --radius:    12px;
  --radius-lg: 20px;
  --font:      'Plus Jakarta Sans', 'PJS Fallback', system-ui, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font); font-size: 16px; line-height: 1.6; color: var(--gray-600); background: var(--white); -webkit-font-smoothing: antialiased; }
.container { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }
h1, h2, h3 { color: var(--gray-900); margin: 0; line-height: 1.25; }
h1 { font-size: clamp(1.6rem, 4vw, 2.3rem); font-weight: 800; }
h2 { font-size: clamp(1.35rem, 3vw, 1.9rem); font-weight: 700; }
h3 { font-size: 1.05rem; font-weight: 700; }
p { margin: 0; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--font); font-weight: 700; font-size: 0.95rem; border-radius: 999px; border: 2px solid transparent; cursor: pointer; transition: all .2s ease; padding: 11px 24px; white-space: nowrap; }
.btn-lg { font-size: 1rem; padding: 14px 30px; }
.btn-orange { background: var(--orange); color: var(--white); }
.btn-orange:hover { background: var(--orange-dk); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(245,134,52,.35); }
.btn-green { background: #00A859; color: var(--white); }
.btn-green:hover { background: #00A859; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,168,89,.35); }
.btn-white-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-white-outline:hover { background: var(--white); color: var(--orange); }
.btn-orange-outline { background: var(--white); color: var(--orange-dk); border-color: var(--orange-mid); }
.btn-orange-outline:hover { background: var(--orange-lt); border-color: var(--orange); }

/* ── Header / nav ─────────────────────────────────────────── */
/* Catatan: halaman info lama juga memuat shared.css (LP) SETELAH site.css,
   yang menimpa .container (800px) dan .btn. Aturan header/footer di sini
   sengaja diberi spesifisitas #id agar selalu menang. */
#site-header { position: sticky; top: 0; z-index: 200; background: var(--orange); }
#site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.2); }
#site-header .container, #site-footer .container { max-width: 1080px; }
.sh-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 76px; }
.sh-logo { flex-shrink: 0; display: inline-flex; }
.sh-logo img { height: 52px; width: auto; max-width: none; display: block; }
#site-header .btn-white-outline { background: transparent; color: var(--white); border: 2px solid var(--white); border-radius: 999px; }
#site-header .btn-white-outline:hover { background: var(--white); color: var(--orange); }
.sh-nav { display: flex; align-items: center; gap: 4px; }
.sh-nav > a, .sh-drop > button { color: var(--white); font-weight: 600; font-size: 0.92rem; padding: 9px 13px; border-radius: 999px; background: none; border: none; cursor: pointer; font-family: var(--font); display: inline-flex; align-items: center; gap: 5px; }
.sh-nav > a:hover, .sh-nav > a.active, .sh-drop > button:hover { background: rgba(255,255,255,.16); }
.sh-drop { position: relative; }
.sh-drop svg { width: 12px; height: 12px; transition: transform .2s; }
.sh-drop.open svg { transform: rotate(180deg); }
.sh-menu { position: absolute; top: calc(100% + 8px); left: 0; min-width: 230px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 8px; display: none; }
.sh-drop.open .sh-menu { display: block; }
.sh-menu a { display: block; padding: 10px 14px; border-radius: 8px; color: var(--gray-900); font-weight: 600; font-size: 0.9rem; }
.sh-menu a:hover { background: var(--orange-lt); color: var(--orange-dk); }
.sh-cta { flex-shrink: 0; }
.sh-burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.sh-burger svg { width: 28px; height: 28px; color: var(--white); display: block; }

@media (max-width: 1023px) {
  .sh-nav { position: fixed; inset: 76px 0 auto 0; max-height: calc(100vh - 76px); overflow: auto; flex-direction: column; align-items: stretch; gap: 2px; background: var(--orange); padding: 10px 16px 22px; display: none; box-shadow: 0 20px 40px rgba(0,0,0,.25); }
  .sh-nav.open { display: flex; }
  .sh-nav > a, .sh-drop > button { width: 100%; text-align: left; justify-content: space-between; font-size: 1rem; padding: 13px 14px; border-radius: 10px; }
  .sh-drop .sh-menu { position: static; box-shadow: none; background: rgba(255,255,255,.12); margin: 2px 0 6px; }
  .sh-menu a { color: var(--white); }
  .sh-menu a:hover { background: rgba(255,255,255,.16); color: var(--white); }
  .sh-burger { display: block; }
  .sh-cta { display: none; }
  .sh-nav .sh-cta-mobile { display: inline-flex; margin-top: 12px; justify-content: center; background: var(--white); color: var(--orange-dk); font-weight: 800; }
  .sh-inner { height: 64px; }
  .sh-logo img { height: 42px; }
  .sh-nav { inset: 64px 0 auto 0; max-height: calc(100vh - 64px); }
}
@media (min-width: 1024px) { .sh-cta-mobile { display: none !important; } }

/* ── Breadcrumb ───────────────────────────────────────────── */
.breadcrumb { font-size: 0.82rem; color: var(--gray-400); padding: 18px 0 0; display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.breadcrumb a { color: var(--gray-600); font-weight: 600; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { color: var(--gray-200); }
.breadcrumb .current { color: var(--gray-400); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 46ch; }

/* ── Artikel: halaman detail ──────────────────────────────── */
.article-head { padding: 10px 0 8px; }
.article-cat { display: inline-block; background: var(--orange-lt); color: var(--orange-dk); font-weight: 700; font-size: 0.78rem; padding: 6px 14px; border-radius: 999px; margin-bottom: 14px; }
.article-cat:hover { background: var(--orange-mid); color: var(--white); }
.article-title { margin-bottom: 12px; }
.article-meta { color: var(--gray-400); font-size: 0.85rem; display: flex; gap: 14px; flex-wrap: wrap; }
.article-hero { margin: 22px 0 6px; }
.article-hero img { width: 100%; max-height: 440px; object-fit: cover; border-radius: var(--radius-lg); display: block; }

.article-body { padding: 18px 0 8px; font-size: 1.02rem; line-height: 1.8; color: var(--gray-600); overflow-wrap: break-word; }
.article-body h2 { margin: 34px 0 14px; font-size: 1.45rem; }
.article-body h3 { margin: 28px 0 12px; font-size: 1.15rem; }
.article-body h4, .article-body h5, .article-body h6 { margin: 24px 0 10px; color: var(--gray-900); }
.article-body p { margin: 0 0 18px; }
.article-body ul, .article-body ol { margin: 0 0 18px; padding-left: 26px; }
.article-body li { margin-bottom: 8px; }
.article-body a { color: var(--orange-dk); font-weight: 600; text-decoration: underline; text-decoration-color: var(--orange-mid); }
.article-body a:hover { color: var(--orange); }
.article-body img { border-radius: var(--radius); margin: 8px auto; display: block; height: auto; }
.article-body blockquote { border-left: 4px solid var(--orange); background: var(--orange-lt); margin: 0 0 18px; padding: 14px 20px; border-radius: 0 var(--radius) var(--radius) 0; }
.article-body table { width: 100%; border-collapse: collapse; margin: 0 0 18px; font-size: 0.92rem; display: block; overflow-x: auto; }
.article-body th, .article-body td { border: 1px solid var(--gray-200); padding: 9px 12px; text-align: left; }
.article-body th { background: var(--orange-lt); color: var(--gray-900); }
.video-embed { position: relative; padding-top: 56.25%; margin: 0 0 18px; border-radius: var(--radius); overflow: hidden; background: #000; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* CTA box dalam artikel */
.article-cta { background: linear-gradient(135deg, var(--orange) 0%, #ff9633 100%); border-radius: var(--radius-lg); padding: 30px 28px; text-align: center; margin: 36px 0; }
.article-cta h2 { color: var(--white); font-size: 1.3rem; margin-bottom: 8px; }
.article-cta p { color: rgba(255,255,255,.92); font-size: 0.95rem; margin-bottom: 20px; }
.article-cta .btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.article-cta .btn-white { background: var(--white); color: var(--orange-dk); }
.article-cta .btn-white:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(0,0,0,.18); }

/* ── Kartu artikel (listing, related, homepage) ───────────── */
.article-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; align-items: stretch; }
.acard { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; }
.acard:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.acard-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; background: var(--peach); }
.acard-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.acard-cat { color: var(--orange); font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: .04em; }
.acard-title { font-size: 1.02rem; font-weight: 700; color: var(--gray-900); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.acard:hover .acard-title { color: var(--orange-dk); }
.acard-excerpt { font-size: 0.88rem; color: var(--gray-600); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.acard-date { margin-top: auto; padding-top: 8px; font-size: 0.78rem; color: var(--gray-400); }

/* Tab kategori + pencarian (listing) */
.listing-hero { background: var(--peach); padding: 44px 0 34px; text-align: center; }
.listing-hero h1 { color: var(--orange); margin-bottom: 10px; }
.listing-hero p { max-width: 640px; margin: 0 auto; }
.listing-tools { padding: 26px 0 6px; display: flex; flex-direction: column; gap: 16px; }
.cat-tabs { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 6px; scrollbar-width: thin; }
.cat-tab { flex-shrink: 0; background: var(--gray-100); color: var(--gray-600); font-weight: 700; font-size: 0.85rem; padding: 9px 18px; border-radius: 999px; border: none; cursor: pointer; font-family: var(--font); transition: background .2s, color .2s; }
.cat-tab:hover { background: var(--orange-lt); color: var(--orange-dk); }
.cat-tab.active { background: var(--orange); color: var(--white); }
.search-box { position: relative; max-width: 420px; }
.search-box input { width: 100%; padding: 12px 18px 12px 44px; border: 1.5px solid var(--gray-200); border-radius: 999px; font-family: var(--font); font-size: 0.95rem; color: var(--gray-900); outline: none; transition: border-color .2s; }
.search-box input:focus { border-color: var(--orange); }
.search-box svg { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--gray-400); }
.listing-count { font-size: 0.85rem; color: var(--gray-400); }
.load-more-wrap { text-align: center; padding: 32px 0 8px; }

/* Related */
.related-sec { background: var(--gray-100); padding: 48px 0 56px; margin-top: 30px; }
.related-sec h2 { text-align: center; margin-bottom: 28px; }

/* ── Footer ───────────────────────────────────────────────── */
#site-footer { background: #1F2937; color: #D1D5DB; margin-top: 0; }
.sf-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; padding: 56px 0 40px; }
.sf-col h3 { color: var(--white); font-size: 0.95rem; margin-bottom: 16px; letter-spacing: .02em; }
.sf-logo { height: 48px; width: auto; margin-bottom: 14px; display: block; }
.sf-col p { font-size: 0.88rem; line-height: 1.7; color: #9CA3AF; }
.sf-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.sf-col ul a { color: #D1D5DB; font-size: 0.88rem; }
.sf-col ul a:hover { color: var(--orange-mid); }
.sf-social { display: flex; gap: 12px; margin-top: 16px; }
.sf-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; transition: background .2s; }
.sf-social a:hover { background: var(--orange); }
.sf-social svg { width: 18px; height: 18px; color: var(--white); }
.sf-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; font-size: 0.8rem; color: #9CA3AF; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
@media (max-width: 900px) { .sf-grid { grid-template-columns: 1fr 1fr; padding: 44px 0 32px; } }
@media (max-width: 560px) { .sf-grid { grid-template-columns: 1fr; gap: 28px; } }

/* Floating booking CTA (mobile) */
.mobile-book-bar { display: none; }
@media (max-width: 700px) {
  .mobile-book-bar { display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 150; background: var(--white); box-shadow: 0 -4px 20px rgba(0,0,0,.12); padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); gap: 10px; }
  .mobile-book-bar .btn { flex: 1; font-size: 0.9rem; padding: 12px 10px; }
  body { padding-bottom: 66px; }

  /* Tombol WA melayang disembunyikan di mobile: .mobile-book-bar di atas sudah
     punya tombol WhatsApp sendiri, jadi yang melayang cuma duplikat dan
     posisinya bertabrakan dengan bilah ini.
     #wa-float-button di-inject GTM (bukan dari repo ini), .wa-float versi
     statis di src/shared.css — keduanya ditutup supaya aman dari sisi mana pun
     tombolnya datang.
     Aturan ini sengaja HANYA di public/site.css: halaman LP tidak memuat file
     ini dan tidak punya .mobile-book-bar, jadi di sana tombol melayang tetap
     hidup sebagai satu-satunya jalan pintas ke WhatsApp. */
  #wa-float-button,
  .wa-float { display: none !important; }
}

/* Util */
.section { padding: 56px 0; }
.section.alt { background: var(--peach); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 34px; }
.section-head h2 { margin-bottom: 10px; }
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════
   DESIGN LAYER v2 — bahasa visual homepage diangkat jadi global
   (kanvas krem, tinta espresso, aksen oranye tunggal, dekorasi)
   Dimuat SETELAH aturan lama di file ini → override menang.
   =========================================================== */
:root {
  --ink: #201510;
  --ink-soft: #6B584A;
  --ink-faint: #7D6753;
  --cream: #FFEADB;
  --peach-2: #FFEADB;
  --peach-soft: #FFEADB;
  --line: #FFEADB;
  --orange-deep: #F58634;
  --r-md: 22px;
  --shadow-warm: 0 1px 2px rgba(60,32,4,.05), 0 8px 28px rgba(60,32,4,.08);
  --shadow-warm-lg: 0 2px 6px rgba(60,32,4,.06), 0 20px 50px rgba(60,32,4,.13);
}
body.od-bg { background: var(--cream); color: var(--ink-soft); }

/* — tipografi peran — */
.od-eyebrow { font-size: .76rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--orange-deep); margin: 0 0 14px; }
body.od-bg h1, body.od-bg h2, body.od-bg h3 { color: var(--ink); letter-spacing: -.02em; }
body.od-bg #site-footer { background: var(--white); color: var(--ink-soft); }
body.od-bg #site-footer h3 { color: var(--ink); }
body.od-bg #site-footer .sf-col p { color: var(--ink-faint); }
body.od-bg #site-footer .sf-col ul a { color: var(--ink-soft); }
body.od-bg #site-footer .sf-col ul a:hover { color: var(--orange-deep); }
body.od-bg #site-footer .sf-social a { background: var(--peach-soft); }
body.od-bg #site-footer .sf-social a:hover { background: var(--orange); }
body.od-bg #site-footer .sf-social svg { color: var(--ink); }
body.od-bg #site-footer .sf-social a:hover svg { color: var(--white); }
body.od-bg #site-footer .sf-bottom { border-top-color: var(--line); color: var(--ink-faint); }

/* — dekorasi global (identik dgn homepage) — */
.od-dots { position: absolute; width: 190px; height: 190px; pointer-events: none;
  background-image: radial-gradient(currentColor 2.2px, transparent 2.2px); background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(circle at 40% 40%, #000 30%, transparent 75%); mask-image: radial-gradient(circle at 40% 40%, #000 30%, transparent 75%); }
.od-spark { position: absolute; color: var(--orange); pointer-events: none; z-index: 2; animation: od-twinkle 3.8s ease-in-out infinite; }
.od-spark svg { width: 100%; height: 100%; display: block; }
@keyframes od-twinkle { 0%,100% { transform: scale(1) rotate(0deg); opacity: .8 } 50% { transform: scale(.55) rotate(22deg); opacity: .3 } }
.od-blob { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(70px); }
@keyframes od-spin-c { to { transform: rotate(360deg) } }
@media (prefers-reduced-motion: reduce) { .od-spark { animation: none } }

/* — hero listing (artikel/kategori/dokter/smo/kalkulator/404) — */
body.od-bg .listing-hero { position: relative; overflow: hidden; padding: 58px 0 46px;
  background: radial-gradient(46rem 26rem at 85% -8rem, rgba(245,134,52,.10), transparent 60%), var(--cream); }
body.od-bg .listing-hero h1 { color: var(--ink); font-weight: 800; letter-spacing: -.03em; }
body.od-bg .listing-hero p { color: var(--ink-soft); }
body.od-bg .listing-hero::before { content: ''; position: absolute; top: 26px; left: max(calc((100vw - 1140px) / 2 - 160px), -70px); width: 190px; height: 190px; pointer-events: none; color: rgba(245,134,52,.22);
  background-image: radial-gradient(currentColor 2.2px, transparent 2.2px); background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(circle at 30% 30%, #000 30%, transparent 75%); mask-image: radial-gradient(circle at 30% 30%, #000 30%, transparent 75%); }
body.od-bg .listing-hero::after { content: ''; position: absolute; top: -120px; right: -110px; width: 300px; height: 300px; pointer-events: none;
  border: 2px dashed rgba(245,134,52,.35); border-radius: 50%; animation: od-spin-c 60s linear infinite; }
@media (prefers-reduced-motion: reduce) { body.od-bg .listing-hero::after { animation: none } }

/* — kartu — */
body.od-bg .acard { border-color: var(--line); border-radius: var(--r-md); background: #fff; }
body.od-bg .acard:hover { box-shadow: var(--shadow-warm-lg); }
body.od-bg .acard-title { color: var(--ink); }
body.od-bg .acard-excerpt { color: var(--ink-soft); }
body.od-bg .acard-cat { color: var(--orange-deep); }
body.od-bg .acard-date { color: var(--ink-faint); }

/* — tab kategori & pencarian — */
body.od-bg .cat-tab { background: #fff; border: 1px solid var(--line); color: var(--ink-soft); }
body.od-bg .cat-tab:hover { background: var(--peach-soft); color: var(--orange-deep); }
body.od-bg .cat-tab.active { background: var(--orange); border-color: var(--orange); color: #fff; }
body.od-bg .search-box input { border-color: var(--line); background: #fff; }
body.od-bg .search-box input:focus { border-color: var(--orange); }

/* — artikel detail — */
body.od-bg .article-cat { background: var(--peach-soft); color: var(--orange-deep); }
body.od-bg .article-title { letter-spacing: -.03em; }
body.od-bg .article-body { color: var(--ink-soft); }
body.od-bg .article-body h2, body.od-bg .article-body h3 { color: var(--ink); }
body.od-bg .article-body blockquote { background: var(--peach-soft); }
body.od-bg .article-body th { background: var(--peach-soft); }
body.od-bg .article-hero img { border-radius: var(--r-md); box-shadow: var(--shadow-warm); }
body.od-bg .breadcrumb a:hover { color: var(--orange-deep); }

/* CTA box artikel/treatment: tambah lengkung senyum + titik */
body.od-bg .article-cta { position: relative; overflow: hidden; border-radius: var(--r-md); }
body.od-bg .article-cta > * { position: relative; }
body.od-bg .article-cta::before { content: ''; position: absolute; left: 50%; transform: translateX(-50%); top: calc(100% - 90px); width: 560px; height: 560px;
  border: 22px solid rgba(255,255,255,.12); border-radius: 50%; pointer-events: none; }
body.od-bg .article-cta::after { content: ''; position: absolute; top: 14px; right: 14px; width: 130px; height: 130px; pointer-events: none; color: rgba(255,255,255,.30);
  background-image: radial-gradient(currentColor 2px, transparent 2px); background-size: 20px 20px;
  -webkit-mask-image: radial-gradient(circle at 70% 30%, #000 30%, transparent 75%); mask-image: radial-gradient(circle at 70% 30%, #000 30%, transparent 75%); }

/* — related & panel gelap — */
body.od-bg .related-sec { background: #fff; border-top: 1px solid var(--line); }

/* — tombol selaras — */
body.od-bg .btn { border-radius: 999px; font-weight: 800; }
body.od-bg .btn-orange { background: var(--orange-deep); }
body.od-bg .btn-orange:hover { background: #A14E00; box-shadow: 0 10px 26px rgba(245,134,52,.32); }
body.od-bg .btn-orange-outline { border-color: var(--line); color: var(--orange-deep); background: #fff; }
body.od-bg .btn-orange-outline:hover { border-color: var(--orange); background: var(--peach-soft); }

/* — section util — */
body.od-bg .section.alt { background: var(--peach-soft); }
body.od-bg .listing-tools { position: relative; }

/* ── Fallback font ber-metrik (anti-CLS saat swap ke Plus Jakarta Sans) ── */
@font-face {
  font-family: 'PJS Fallback';
  src: local('Arial');
  size-adjust: 106%;
  ascent-override: 99%;
  descent-override: 29%;
  line-gap-override: 0%;
}

/* ── Testimoni pasien (halaman smile-make-over) ──────────────────────────
   Diport dari src/shared.css:68-86 supaya markup .testi-* yang sama bisa
   dipakai halaman hasil generator, bukan cuma LP yang di-bundle Vite.
   Sumber markup: scripts/lib/testimonials.cjs → renderTestiSection().     */
#testimonials { padding: 64px 0 56px; background: var(--ink); text-align: center; position: relative; overflow: hidden; }
#testimonials::before { content: ''; position: absolute; width: 340px; height: 340px; border-radius: 50%; filter: blur(70px); background: rgba(245,134,52,.14); top: -120px; right: -90px; pointer-events: none; }
#testimonials .container { position: relative; }
.testi-title { color: var(--white); font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; margin-bottom: 36px; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.testi-card { background: var(--white); border-radius: var(--radius-lg); padding: 20px 24px; text-align: left; box-shadow: 0 2px 12px rgba(0,0,0,.08); border: 1px solid rgba(0,0,0,.06); }
.testi-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.testi-avatar { width: 46px; height: 46px; border-radius: 50%; color: #fff; font-weight: 700; font-size: 1.15rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.testi-meta { flex: 1; min-width: 0; }
.testi-meta strong { display: block; font-size: .95rem; color: var(--gray-900); font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.testi-meta span { font-size: .78rem; color: var(--gray-400); display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-top: 2px; }
.testi-dots { flex-shrink: 0; }
.testi-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.testi-stars { display: inline-flex; align-items: center; line-height: 1; }
.testi-time { font-size: .78rem; color: var(--gray-400); }
.testi-text { font-size: .9rem; color: var(--gray-600); line-height: 1.65; }
.testi-cta { display: flex; justify-content: center; }
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } #testimonials { padding: 48px 0 40px; } }
