:root {
  --bg: #f5f7f8;
  --bg-alt: #ffffff;
  --surface: #ffffff;
  --border: #e6ebed;
  --border-strong: #d0d8db;
  --fg: #0b1f1d;
  --fg-soft: #1f3936;
  --muted: #5b6b6a;
  --muted-2: #8b9897;
  --primary: #0d9488;
  --primary-deep: #0b7268;
  --primary-hover: #0b837a;
  --primary-soft: #e6f5f3;
  --primary-soft-2: #d4ede9;
  --accent: #f59e0b;
  --accent-soft: #fef3e0;
  --accent-deep: #d97706;
  --grad-primary: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  --grad-hero:
    radial-gradient(1200px 600px at 100% -10%, rgba(13, 148, 136, 0.12), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(245, 158, 11, 0.08), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f0f9f7 100%);
  --shadow-xs: 0 1px 2px rgba(12, 27, 26, 0.04);
  --shadow-sm: 0 2px 4px rgba(12, 27, 26, 0.05), 0 1px 2px rgba(12, 27, 26, 0.04);
  --shadow-md: 0 10px 28px rgba(12, 27, 26, 0.08);
  --shadow-lg: 0 20px 50px rgba(12, 27, 26, 0.12);
  --shadow-glow: 0 16px 40px rgba(13, 148, 136, 0.22);
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

* { box-sizing: border-box; }
html { -webkit-tap-highlight-color: transparent; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
  padding-bottom: 0;
  text-transform: capitalize;
}

/* Keep technical / address / URL text in their original case */
a[href^="mailto:"],
a[href^="tel:"],
a[href*="wa.me"],
a[href*="instagram"],
a[href*="facebook"],
a[href*="tiktok"],
.kontak-list a,
.gcu-price,
.mcu-price,
.price-now,
.price-strike,
.brand-sub {
  text-transform: none;
}
h1, h2, h3, h4 { font-family: "Manrope", "Inter", system-ui, sans-serif; letter-spacing: -0.015em; line-height: 1.15; margin: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
svg { flex-shrink: 0; }

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

/* ---------- TOP STRIP ---------- */
.topstrip {
  background: #0b1f1d;
  color: rgba(255,255,255,0.78);
  font-size: 0.8rem;
  display: none;
}
@media (min-width: 900px) { .topstrip { display: block; } }
.topstrip-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 22px;
}
.topstrip span { display: inline-flex; align-items: center; gap: 6px; }
.topstrip svg { width: 14px; height: 14px; color: rgba(255,255,255,0.6); }
.topstrip .dot { color: rgba(255,255,255,0.3); }
.topstrip-spacer { flex: 1; }
.topstrip-cta {
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.topstrip-cta:hover { color: var(--primary-soft); }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(230, 235, 237, 0.7);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 22px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark {
  display: inline-flex;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: var(--primary-soft);
  border-radius: 12px;
}
.brand-mark img { width: 32px; height: 32px; object-fit: contain; }
.brand-text {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  gap: 4px;
}
.brand-word { height: 19px; width: auto; }
.brand-sub {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--muted);
  text-transform: uppercase;
}
.nav { display: none; gap: 28px; font-size: 0.94rem; font-weight: 500; }
.nav a { transition: color 0.15s; }
.nav a:hover { color: var(--primary); }
@media (min-width: 960px) { .nav { display: flex; } }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.94rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
  text-align: center;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-sm { padding: 9px 16px; font-size: 0.84rem; }
.btn-sm svg { width: 14px; height: 14px; }
.btn-lg { padding: 16px 28px; font-size: 1rem; }
.btn-lg svg { width: 20px; height: 20px; }
.btn-block { display: flex; width: 100%; }
.btn-primary { background: var(--grad-primary); color: #fff; box-shadow: var(--shadow-glow); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 18px 44px rgba(13,148,136,0.28); }
.btn-outline { background: rgba(255,255,255,0.6); border-color: var(--border-strong); color: var(--fg); }
.btn-outline:hover { background: #fff; border-color: var(--primary); color: var(--primary); transform: translateY(-1px); }
.btn-soft { background: var(--primary-soft); color: var(--primary); }
.btn-soft:hover { background: var(--primary-soft-2); }
.btn-light { background: #fff; color: var(--primary); box-shadow: var(--shadow-sm); }
.btn-light:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--grad-hero);
  border-bottom: 1px solid var(--border);
}
.hero-bg-blob { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; opacity: 0.55; }
.hero-bg-blob-1 { width: 460px; height: 460px; background: radial-gradient(circle, #0d9488 0%, transparent 70%); top: -120px; right: -80px; }
.hero-bg-blob-2 { width: 360px; height: 360px; background: radial-gradient(circle, #f59e0b 0%, transparent 70%); bottom: -120px; left: -100px; opacity: 0.3; }
.hero-bg-dots {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.4;
  background-image: radial-gradient(circle at center, rgba(13, 148, 136, 0.25) 1px, transparent 1.5px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 60%, #000 30%, transparent 75%);
          mask-image: radial-gradient(ellipse at 50% 60%, #000 30%, transparent 75%);
}
.hero-grid {
  position: relative;
  display: grid;
  gap: 40px;
  padding: 56px 22px 64px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 56px; padding: 88px 22px 88px; }
}
.hero-copy { max-width: 620px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(13, 148, 136, 0.2);
  color: var(--primary-deep);
  font-weight: 600;
  font-size: 0.78rem;
  padding: 7px 14px;
  border-radius: 999px;
  letter-spacing: 0.01em;
  backdrop-filter: blur(6px);
}
.pill svg { width: 14px; height: 14px; }
.pill-glow { box-shadow: 0 6px 20px rgba(13, 148, 136, 0.12); }
.hero-title { font-size: 2.4rem; font-weight: 800; margin-top: 18px; color: var(--fg); }
@media (min-width: 600px) { .hero-title { font-size: 3rem; } }
@media (min-width: 960px) { .hero-title { font-size: 3.6rem; } }
.accent-gradient {
  background: linear-gradient(120deg, #0d9488 0%, #14b8a6 50%, #06b6d4 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.accent { color: var(--primary); }
.hero-sub { margin-top: 18px; color: var(--muted); font-size: 1.05rem; max-width: 560px; }
@media (min-width: 960px) { .hero-sub { font-size: 1.12rem; } }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-mini-stats {
  margin-top: 32px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  max-width: 460px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.hero-mini-stats div span { display: block; font-family: "Manrope", sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--primary); line-height: 1; letter-spacing: -0.02em; }
.hero-mini-stats div p { margin: 6px 0 0; font-size: 0.78rem; color: var(--muted); line-height: 1.3; }
.hero-visual { position: relative; aspect-ratio: 1 / 1; max-width: 460px; margin-inline: auto; width: 100%; }
.halo { position: absolute; border-radius: 50%; pointer-events: none; }
.halo-1 { inset: 0; background: radial-gradient(circle at 35% 30%, #0d9488 0%, transparent 65%); opacity: 0.22; }
.halo-2 { inset: 8%; background: var(--primary-soft); }
.halo-3 { inset: 22%; background: rgba(13, 148, 136, 0.13); }
.hero-mark { position: absolute; inset: 0; margin: auto; width: 56%; height: auto; object-fit: contain; filter: drop-shadow(0 14px 30px rgba(13, 148, 136, 0.25)); animation: heroBob 6s ease-in-out infinite; }
@keyframes heroBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.float-chip { position: absolute; display: inline-flex; align-items: center; gap: 7px; padding: 9px 14px; border-radius: 999px; background: #fff; box-shadow: var(--shadow-md); font-size: 0.82rem; font-weight: 600; animation: chipFloat 7s ease-in-out infinite; }
.float-chip svg { width: 14px; height: 14px; }
.float-chip-1 { top: 4%; right: 0%; color: var(--accent-deep); animation-delay: -1s; }
.float-chip-2 { bottom: 8%; left: -2%; color: var(--primary); animation-delay: -3s; }
.float-chip-3 { top: 38%; right: -4%; color: #16a34a; animation-delay: -5s; }
@keyframes chipFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* ---------- QUICK ACTIONS ---------- */
.quick-actions {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding-bottom: 56px;
}
@media (min-width: 700px) { .quick-actions { grid-template-columns: repeat(4, 1fr); padding-bottom: 72px; } }
.qa-tile {
  display: flex; align-items: center; gap: 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  box-shadow: var(--shadow-xs);
  transition: all 0.18s ease;
}
.qa-tile:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: rgba(13,148,136,0.35); }
.qa-icon {
  display: inline-flex; width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 12px;
  flex: 0 0 44px;
}
.qa-icon svg { width: 22px; height: 22px; }
.qa-icon-accent { background: var(--accent-soft); color: var(--accent-deep); }
.qa-tile h3 { font-size: 0.95rem; font-weight: 700; margin: 0; }
.qa-tile p { margin: 2px 0 0; font-size: 0.78rem; color: var(--muted); line-height: 1.3; }

/* ---------- SECTIONS ---------- */
.section { padding: 72px 0; }
@media (min-width: 960px) { .section { padding: 96px 0; } }
.section-alt { background: var(--surface); border-block: 1px solid var(--border); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 36px; flex-wrap: wrap; }
.section-head.center { display: block; text-align: center; margin-bottom: 48px; }
.section-head.center .section-sub { margin-inline: auto; max-width: 620px; }
.eyebrow { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.16em; color: var(--primary); text-transform: uppercase; margin: 0; }
.eyebrow-accent { color: var(--accent-deep); }
.eyebrow-light { color: rgba(255,255,255,0.85); }
.section-head h2, .section-head + h2 { font-size: 1.9rem; font-weight: 800; margin: 8px 0 0; }
@media (min-width: 960px) { .section-head h2 { font-size: 2.4rem; } }
.section-sub { color: var(--muted); margin: 12px 0 0; max-width: 600px; }

/* ---------- GRID ---------- */
.grid { display: grid; gap: 18px; }
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 700px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 600px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1060px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* ---------- GCU PACKAGES ---------- */
.grid-gcu { gap: 22px; }
@media (min-width: 1060px) { .grid-gcu { gap: 18px; } }

.gcu-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
  color: var(--fg);
}
.gcu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(13,148,136,0.4);
}
.gcu-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: var(--radius-xl);
  z-index: 0;
}
.gcu-deco > svg:first-child {
  position: absolute;
  top: 0; left: 0; right: 0;
  width: 100%; height: 90px;
}
.gcu-plus {
  position: absolute;
  width: 22px; height: 22px;
  color: rgba(13,148,136,0.22);
}
.gcu-plus-1 { top: 26px; right: 70px; }
.gcu-plus-2 { top: 64px; right: 32px; width: 16px; height: 16px; opacity: 0.7; }
.gcu-stetho {
  position: absolute;
  right: -14px;
  top: 80px;
  width: 88px; height: 88px;
  color: rgba(13,148,136,0.12);
}
.gcu-tier {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}
.gcu-tier span {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 30px; height: 30px;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 9px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 0.84rem;
  letter-spacing: 0;
}
.gcu-name {
  position: relative; z-index: 1;
  font-family: "Manrope", sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin: 14px 0 22px;
}
.gcu-tests {
  position: relative; z-index: 1;
  list-style: none;
  padding: 18px 0 0;
  margin: 0 0 22px;
  border-top: 1px dashed var(--border);
  display: grid;
  gap: 10px;
  flex: 1;
}
.gcu-tests li {
  position: relative;
  padding-left: 26px;
  font-size: 0.88rem;
  color: var(--fg-soft);
  line-height: 1.4;
}
.gcu-tests li::before {
  content: "";
  position: absolute; left: 0; top: 3px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--primary-soft);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230d9488' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 10px 10px;
  background-position: center;
  background-repeat: no-repeat;
}
.gcu-foot {
  position: relative; z-index: 1;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.gcu-price {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 2.05rem;
  color: var(--fg);
  margin: 0 0 14px;
  line-height: 1;
  letter-spacing: -0.025em;
}
.gcu-price span {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 700;
  vertical-align: 0.55em;
  margin-right: 3px;
  letter-spacing: 0;
}
.gcu-price small {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.gcu-flag {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(245,158,11,0.35);
  z-index: 3;
  white-space: nowrap;
}
.gcu-flag-special { background: linear-gradient(135deg, #f59e0b 0%, #fb923c 100%); }
.gcu-flag-premium {
  background: linear-gradient(135deg, #fde68a 0%, #fcd34d 100%);
  color: #064e3b;
  box-shadow: 0 8px 18px rgba(252,211,77,0.4);
}

/* --- Pra Nikah variant --- */
.gcu-special {
  border-color: rgba(245,158,11,0.35);
  background: linear-gradient(180deg, #fffbeb 0%, #ffffff 70%);
}
.gcu-special .gcu-tier span { background: #fef3e0; color: var(--accent-deep); }
.gcu-special .gcu-tests li::before {
  background: #fef3e0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d97706' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
}
.gcu-special .gcu-plus, .gcu-special .gcu-stetho { color: rgba(245,158,11,0.2); }
.gcu-btn-special { background: var(--accent-soft) !important; color: var(--accent-deep) !important; }
.gcu-btn-special:hover { background: #fde9be !important; }

/* --- Feature: Paling Populer --- */
.gcu-feature {
  background: linear-gradient(150deg, #0d9488 0%, #0f766e 55%, #047857 100%);
  border: none;
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.gcu-feature .gcu-tier { color: rgba(255,255,255,0.82); }
.gcu-feature .gcu-tier span { background: rgba(255,255,255,0.22); color: #fff; }
.gcu-feature .gcu-name { color: #fff; }
.gcu-feature .gcu-tests { border-top-color: rgba(255,255,255,0.2); }
.gcu-feature .gcu-tests li { color: rgba(255,255,255,0.94); }
.gcu-feature .gcu-tests li::before {
  background: rgba(255,255,255,0.22);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
}
.gcu-feature .gcu-foot { border-top-color: rgba(255,255,255,0.18); }
.gcu-feature .gcu-price { color: #fff; }
.gcu-feature .gcu-price span, .gcu-feature .gcu-price small { color: rgba(255,255,255,0.78); }
.gcu-feature .gcu-plus { color: rgba(255,255,255,0.3); }
.gcu-feature .gcu-stetho { color: rgba(255,255,255,0.18); }
.gcu-feature .gcu-deco > svg:first-child path { fill: rgba(255,255,255,0.18); }

/* --- Premium: Terlengkap --- */
.gcu-premium {
  background: linear-gradient(150deg, #134e4a 0%, #0f3a36 60%, #064e3b 100%);
  border: none;
  color: #fff;
  box-shadow: 0 18px 44px rgba(6,78,59,0.34);
}
.gcu-premium .gcu-tier { color: rgba(253,230,138,0.85); }
.gcu-premium .gcu-tier span { background: rgba(253,230,138,0.18); color: #fde68a; }
.gcu-premium .gcu-name { color: #fff; }
.gcu-premium .gcu-tests { border-top-color: rgba(255,255,255,0.14); }
.gcu-premium .gcu-tests li { color: rgba(255,255,255,0.9); font-size: 0.84rem; }
.gcu-premium .gcu-tests li::before {
  background: rgba(253,230,138,0.2);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fde68a' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
}
.gcu-premium .gcu-foot { border-top-color: rgba(255,255,255,0.14); }
.gcu-premium .gcu-price { color: #fff; }
.gcu-premium .gcu-price span, .gcu-premium .gcu-price small { color: rgba(253,230,138,0.75); }
.gcu-premium .gcu-plus, .gcu-premium .gcu-stetho { color: rgba(253,230,138,0.22); }
.gcu-premium .gcu-deco > svg:first-child path { fill: rgba(253,230,138,0.1); }
.gcu-premium .btn-light { background: #fde68a; color: #064e3b; }
.gcu-premium .btn-light:hover { background: #fbbf24; }

.gcu-note { margin-top: 26px; font-size: 0.84rem; color: var(--muted); text-align: center; }

/* ---------- MCU PACKAGES (legacy, kept for compatibility) ---------- */
.grid-mcu { gap: 16px; }
.mcu-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 24px 26px;
  display: flex; flex-direction: column;
  transition: all 0.2s ease;
}
.mcu-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(13,148,136,0.35); }
.mcu-tier { font-size: 0.82rem; font-weight: 700; color: var(--primary); letter-spacing: 0.04em; text-transform: uppercase; margin: 0; }
.mcu-price { font-family: "Manrope", sans-serif; font-weight: 800; font-size: 2rem; color: var(--fg); margin: 6px 0 16px; line-height: 1; letter-spacing: -0.02em; }
.mcu-price span { font-size: 0.85rem; color: var(--muted); font-weight: 700; vertical-align: 0.4em; margin-right: 2px; }
.mcu-price small { font-size: 0.74rem; color: var(--muted-2); font-weight: 500; margin-left: 6px; letter-spacing: 0; }
.mcu-card ul {
  list-style: none; padding: 0; margin: 0 0 22px;
  display: grid; gap: 10px;
  border-top: 1px dashed var(--border);
  padding-top: 18px;
  flex: 1;
}
.mcu-card li {
  position: relative; padding-left: 26px;
  font-size: 0.9rem; color: var(--fg-soft);
}
.mcu-card li::before {
  content: "";
  position: absolute; left: 0; top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--primary-soft);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230d9488' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 10px 10px;
  background-position: center;
  background-repeat: no-repeat;
}
.mcu-feature {
  background: linear-gradient(150deg, #0d9488 0%, #0f766e 60%, #047857 100%);
  border: none;
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.mcu-feature .mcu-tier { color: rgba(255,255,255,0.92); }
.mcu-feature .mcu-price { color: #fff; }
.mcu-feature .mcu-price span, .mcu-feature .mcu-price small { color: rgba(255,255,255,0.78); }
.mcu-feature ul { border-top-color: rgba(255,255,255,0.18); }
.mcu-feature li { color: rgba(255,255,255,0.92); }
.mcu-feature li::before {
  background: rgba(255,255,255,0.2);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 10px 10px;
  background-position: center;
  background-repeat: no-repeat;
}
.mcu-flag {
  position: absolute; top: -12px; right: 20px;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(245,158,11,0.35);
}
.mcu-note { margin-top: 18px; font-size: 0.82rem; color: var(--muted); text-align: center; }

/* ---------- PROMO (Galungan & Kuningan) ---------- */
.promo-hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(120% 140% at 100% 0%, #b08d3e 0%, transparent 55%),
    linear-gradient(135deg, #8a6d2f 0%, #6f5526 45%, #4d3a18 100%);
  color: #fff;
  text-align: center;
  padding: 38px 24px 34px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-md);
}
.promo-hero-glow {
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,231,168,0.4) 0%, transparent 70%);
  top: -160px; left: 50%; transform: translateX(-50%);
  pointer-events: none;
}
.promo-hero > * { position: relative; z-index: 1; }
.promo-hero-label {
  display: inline-block;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: #ffe7a8;
  margin-bottom: 8px;
}
.promo-hero-title {
  font-family: "Manrope", sans-serif;
  font-size: 2rem; font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
@media (min-width: 700px) { .promo-hero-title { font-size: 2.6rem; } }
.promo-hero-disc {
  margin: 6px 0 16px;
  font-family: "Manrope", sans-serif;
  font-size: 1.15rem; font-weight: 700;
  color: #fff;
}
.promo-hero-disc strong {
  color: #ffd84d;
  font-size: 1.5em;
  vertical-align: -0.06em;
  margin-left: 4px;
}
.promo-hero-date {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.86rem; font-weight: 600;
}
.promo-hero-date svg { width: 15px; height: 15px; color: #ffe7a8; }

/* Package cards */
.promo-pkg-grid { gap: 20px; align-items: start; }
.promo-pkg {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px 22px 22px;
  display: flex; flex-direction: column;
  transition: all 0.22s ease;
  box-shadow: var(--shadow-sm);
}
.promo-pkg:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(176,141,62,0.5); }
.promo-pkg-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-bottom: 16px;
}
.promo-pkg-name {
  display: inline-block;
  font-family: "Manrope", sans-serif;
  font-weight: 800; font-size: 1.05rem;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #8a6d2f 0%, #5f4a20 100%);
  padding: 8px 18px;
  border-radius: 999px;
}
.promo-burst {
  flex-shrink: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  width: 64px; height: 64px;
  background: linear-gradient(135deg, #ef4444 0%, #c81e1e 100%);
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-weight: 800; font-size: 1.15rem;
  line-height: 1;
  box-shadow: 0 6px 16px rgba(220,38,38,0.4);
  clip-path: polygon(50% 0%, 61% 16%, 80% 9%, 76% 30%, 96% 30%, 82% 47%, 100% 60%, 79% 64%, 88% 84%, 67% 79%, 62% 99%, 50% 83%, 38% 99%, 33% 79%, 12% 84%, 21% 64%, 0% 60%, 18% 47%, 4% 30%, 24% 30%, 20% 9%, 39% 16%);
}
.promo-burst small { font-size: 0.5rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.9; }
.promo-pkg-tests {
  list-style: none; padding: 16px 0; margin: 0;
  border-top: 1px dashed var(--border);
  border-bottom: 1px dashed var(--border);
  display: grid; gap: 9px; flex: 1;
}
.promo-pkg-tests li {
  position: relative; padding-left: 26px;
  font-size: 0.9rem; color: var(--fg-soft); font-weight: 500;
}
.promo-pkg-tests li::before {
  content: ""; position: absolute; left: 0; top: 2px;
  width: 17px; height: 17px; border-radius: 50%;
  background: #e7f6ec;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 11px; background-position: center; background-repeat: no-repeat;
}
.promo-pkg-foot { padding-top: 16px; }
.promo-strike { margin: 0; color: var(--muted-2); text-decoration: line-through; font-size: 0.9rem; }
.promo-now {
  margin: 2px 0 14px;
  font-family: "Manrope", sans-serif;
  font-size: 1.85rem; font-weight: 800;
  color: #c81e1e; letter-spacing: -0.02em;
}
.promo-pkg-flag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px;
  box-shadow: 0 8px 18px rgba(245,158,11,0.4);
  white-space: nowrap; z-index: 2;
}
.promo-pkg-feature {
  background: linear-gradient(155deg, #8a6d2f 0%, #6f5526 50%, #4d3a18 100%);
  border: none; color: #fff;
  box-shadow: var(--shadow-glow);
}
.promo-pkg-feature .promo-pkg-name { background: rgba(255,255,255,0.18); }
.promo-pkg-feature .promo-pkg-tests { border-color: rgba(255,255,255,0.22); }
.promo-pkg-feature .promo-pkg-tests li { color: rgba(255,255,255,0.94); }
.promo-pkg-feature .promo-pkg-tests li::before {
  background: rgba(255,255,255,0.22);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 11px; background-position: center; background-repeat: no-repeat;
}
.promo-pkg-feature .promo-strike { color: rgba(255,255,255,0.6); }
.promo-pkg-feature .promo-now { color: #ffd84d; }

/* Bonus services */
.promo-bonus {
  margin-top: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.promo-bonus-head { text-align: center; margin-bottom: 20px; }
.promo-bonus-head h3 {
  font-family: "Manrope", sans-serif;
  font-size: 1.4rem; font-weight: 800; color: var(--fg); margin: 0;
}
.promo-bonus-head p { margin: 6px 0 0; color: var(--muted); font-size: 0.92rem; }
.promo-bonus-list {
  list-style: none; padding: 0; margin: 0 0 22px;
  display: grid; gap: 10px;
}
@media (min-width: 760px) { .promo-bonus-list { grid-template-columns: 1fr 1fr; gap: 10px 18px; } }
.promo-bonus-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.promo-bonus-ic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; flex-shrink: 0;
  background: linear-gradient(135deg, #8a6d2f 0%, #5f4a20 100%);
  color: #fff; border-radius: 10px;
}
.promo-bonus-ic svg { width: 19px; height: 19px; }
.promo-bonus-name { flex: 1; font-weight: 600; font-size: 0.92rem; color: var(--fg); }
.promo-bonus-disc {
  flex-shrink: 0;
  background: var(--accent-soft); color: var(--accent-deep);
  font-size: 0.74rem; font-weight: 800;
  padding: 5px 11px; border-radius: 999px;
  white-space: nowrap;
}
.promo-bonus-disc-hot { background: #fdecec; color: #c81e1e; }
.promo-terms { margin-top: 18px; text-align: center; font-size: 0.82rem; color: var(--muted); }

/* ---------- SERVICE CARDS ---------- */
.grid-services .service-card {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.22s ease;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(13,148,136,0.35); }
.service-photo {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--primary-soft);
}
.service-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-photo img { transform: scale(1.06); }
.service-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,31,29,0) 55%, rgba(11,31,29,0.35) 100%);
  pointer-events: none;
}
.service-photo-tag {
  position: absolute; top: 14px; left: 14px;
  z-index: 1;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary-deep);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.service-photo-tag-accent { color: var(--accent-deep); }
.service-photo-tag-dokter { color: #1d4ed8; }
.service-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card h3 { font-size: 1.15rem; font-weight: 700; margin: 0 0 6px; }
.service-card p { margin: 0; color: var(--muted); font-size: 0.92rem; line-height: 1.5; flex: 1; }
.service-link {
  margin-top: 16px;
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: 0.86rem;
  color: var(--primary);
  transition: gap 0.18s ease;
}
.service-link svg { width: 14px; height: 14px; }
.service-card:hover .service-link { gap: 10px; }

/* ---------- HOME SERVICE ---------- */
.home-grid { display: grid; gap: 40px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 960px) { .home-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }
.home-grid h2 { font-size: 1.9rem; font-weight: 800; margin: 8px 0 0; }
@media (min-width: 960px) { .home-grid h2 { font-size: 2.4rem; } }
.check-list { list-style: none; padding: 0; margin: 22px 0 28px; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 36px; color: var(--fg); font-weight: 500; }
.check-list li::before {
  content: "";
  position: absolute; left: 0; top: 2px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--primary-soft);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230d9488' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 14px 14px;
  background-position: center;
  background-repeat: no-repeat;
}
.home-card-wrap { position: relative; }
.home-card-shape {
  position: absolute; inset: -20px;
  background: var(--grad-primary);
  border-radius: 36px;
  transform: rotate(-3deg);
  opacity: 0.08;
  pointer-events: none;
}
.home-card { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); }
.home-card-photo { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--primary-soft); }
.home-card-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.home-card-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,31,29,0) 50%, rgba(13,148,136,0.25) 100%); pointer-events: none; }
.home-card:hover .home-card-photo img { transform: scale(1.04); }
.home-card-body { padding: 26px 28px 30px; }
.home-tag { display: inline-block; background: var(--accent-soft); color: var(--accent-deep); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; }
.home-card h3 { font-size: 1.4rem; font-weight: 800; margin: 14px 0 8px; }
.home-card-body > p { margin: 0; color: var(--muted); }
.home-stats { margin-top: 26px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; text-align: center; }
.home-stats div { padding: 16px 6px; background: var(--bg); border-radius: 14px; }
.home-stats span { display: block; color: var(--primary); font-family: "Manrope", sans-serif; font-weight: 800; font-size: 1.55rem; line-height: 1; letter-spacing: -0.02em; }
.home-stats p { margin: 8px 0 0; font-size: 0.72rem; color: var(--muted); line-height: 1.25; }

/* ---------- TENTANG / VM ---------- */
.two-col { display: grid; gap: 44px; grid-template-columns: 1fr; }
@media (min-width: 960px) { .two-col { grid-template-columns: 1.05fr 0.95fr; gap: 64px; } }
.two-col h2 { font-size: 1.9rem; font-weight: 800; margin-top: 8px; }
@media (min-width: 960px) { .two-col h2 { font-size: 2.4rem; } }
.two-col > div > p { color: var(--muted); margin-top: 18px; font-size: 1.02rem; max-width: 540px; }
.values { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 10px; }
.value { display: inline-flex; align-items: baseline; gap: 4px; background: var(--primary-soft); color: var(--primary-deep); padding: 9px 16px; border-radius: 999px; font-size: 0.9rem; font-weight: 500; }
.value b { color: var(--primary); font-weight: 800; font-size: 1.05rem; }
.value i { font-style: normal; }
.vm-grid { display: grid; gap: 18px; }
.vm-card {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 30px 28px 28px;
  overflow: hidden;
  isolation: isolate;
}

/* --- VISI (gradient feature card) --- */
.vm-visi {
  background: linear-gradient(140deg, #0d9488 0%, #0f766e 55%, #047857 100%);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.vm-bg-blob {
  position: absolute;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.22) 0%, transparent 70%);
  top: -90px; right: -80px;
  pointer-events: none;
  z-index: 0;
}
.vm-num {
  position: absolute;
  top: 14px; right: 26px;
  font-family: "Manrope", sans-serif;
  font-size: 4.6rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.13);
  z-index: 0;
  pointer-events: none;
}
.vm-quote-mark {
  position: relative;
  z-index: 1;
  width: 38px; height: 38px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 6px;
}
.vm-eyebrow {
  position: relative;
  z-index: 1;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin: 0 0 12px;
}
.vm-quote {
  position: relative;
  z-index: 1;
  font-family: "Manrope", sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.32;
  color: #fff;
  margin: 0;
  letter-spacing: -0.01em;
}
.vm-quote em {
  font-style: normal;
  background: linear-gradient(90deg, #fef3e0 0%, #fde68a 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
@media (min-width: 700px) { .vm-quote { font-size: 1.65rem; } }
.vm-footer-line {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.vm-icon {
  display: inline-flex;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
  background: rgba(255,255,255,0.18);
  color: #fff;
  border-radius: 10px;
  flex-shrink: 0;
}
.vm-icon svg { width: 18px; height: 18px; }
.vm-sign {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

/* --- MISI (light action list) --- */
.vm-misi {
  background: var(--surface);
  border: 1px solid var(--border);
}
.vm-misi .vm-num {
  color: var(--primary-soft);
  font-size: 5rem;
  top: 18px;
}
.vm-eyebrow-dark { color: var(--primary); }
.vm-misi-title {
  position: relative;
  z-index: 1;
  font-family: "Manrope", sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--fg);
  margin: 0 0 22px;
  letter-spacing: -0.015em;
}
.vm-misi-list {
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}
.vm-misi-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 0;
  margin: 0;
}
.vm-misi-list li::before { display: none; }
.vm-step {
  display: inline-flex;
  width: 32px; height: 32px;
  flex-shrink: 0;
  align-items: center; justify-content: center;
  background: var(--primary-soft);
  color: var(--primary-deep);
  border-radius: 10px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: -0.01em;
  margin-top: 2px;
}
.vm-misi-list li > div { flex: 1; min-width: 0; }
.vm-misi-list li b {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.005em;
}
.vm-misi-list li p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ---------- ARTICLE / EDUKASI ---------- */
.article-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
}
.article-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(13,148,136,0.3); }
.article-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.9);
}
.article-thumb::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,31,29,0) 55%, rgba(11,31,29,0.35) 100%);
  z-index: 1;
  pointer-events: none;
}
.article-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.article-card:hover .article-thumb img { transform: scale(1.05); }
.article-thumb svg { width: 64px; height: 64px; position: relative; z-index: 1; }
.article-thumb-1 { background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%); }
.article-thumb-2 { background: linear-gradient(135deg, #f59e0b 0%, #fb923c 100%); }
.article-thumb-3 { background: linear-gradient(135deg, #06b6d4 0%, #0ea5e9 100%); }
.article-thumb-blue { background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%); }
.article-thumb-green { background: linear-gradient(135deg, #16a34a 0%, #65a30d 100%); }
.article-thumb-red { background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%); }
.article-thumb-rose { background: linear-gradient(135deg, #e11d48 0%, #f43f5e 100%); }
.article-thumb-purple { background: linear-gradient(135deg, #7c3aed 0%, #6366f1 100%); }
.article-thumb-orange { background: linear-gradient(135deg, #ea580c 0%, #f59e0b 100%); }
.article-see-all {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.86rem; font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
  transition: gap 0.18s ease;
}
.article-see-all svg { width: 14px; height: 14px; }
.article-see-all:hover { gap: 10px; }
.article-body { padding: 22px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.article-tag { align-self: flex-start; background: var(--primary-soft); color: var(--primary); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px; }
.article-card h3 { font-size: 1.1rem; font-weight: 700; margin: 12px 0 6px; line-height: 1.3; }
.article-card p { margin: 0 0 16px; color: var(--muted); font-size: 0.9rem; flex: 1; }
.article-link { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-weight: 600; font-size: 0.86rem; transition: gap 0.18s ease; }
.article-link svg { width: 14px; height: 14px; }
.article-card:hover .article-link { gap: 10px; }

/* ---------- FASILITAS ---------- */
.grid-fac { display: grid; gap: 12px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 700px) { .grid-fac { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 980px) { .grid-fac { grid-template-columns: repeat(4, 1fr); } }
.fac-item { display: flex; align-items: center; gap: 10px; background: var(--bg-alt); border: 1px solid var(--border); border-radius: 14px; padding: 14px 16px; font-size: 0.92rem; font-weight: 500; color: var(--fg-soft); transition: all 0.15s ease; }
.fac-item:hover { background: var(--primary-soft); border-color: rgba(13,148,136,0.3); color: var(--primary-deep); }
.fac-item svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; gap: 36px; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 960px) { .faq-grid { grid-template-columns: 0.9fr 1.1fr; gap: 56px; } }
.faq-grid > div:first-child h2 { font-size: 1.9rem; font-weight: 800; margin: 8px 0 12px; }
@media (min-width: 960px) { .faq-grid > div:first-child h2 { font-size: 2.4rem; } }
.faq-grid > div:first-child .section-sub { margin-bottom: 22px; }
.faq-list { display: grid; gap: 10px; }
.faq-list details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: border-color 0.2s ease;
  overflow: hidden;
}
.faq-list details[open] { border-color: rgba(13,148,136,0.35); box-shadow: var(--shadow-sm); }
.faq-list summary {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px;
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--fg);
  user-select: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-chev {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--primary-soft);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230d9488' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-list details[open] .faq-chev { transform: rotate(180deg); }
.faq-list details p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 0.93rem;
}

/* ---------- LOKASI ---------- */
.lokasi-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .lokasi-grid {
    grid-template-columns: 1.45fr 1fr;
    gap: 28px;
  }
}
.lokasi-map {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  min-height: 340px;
  box-shadow: var(--shadow-sm);
}
.lokasi-map iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  display: block;
  filter: saturate(1.05);
}
@media (min-width: 900px) {
  .lokasi-map, .lokasi-map iframe { min-height: 480px; }
}
.lokasi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 26px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.lokasi-pin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 16px;
  align-self: center;
}
.lokasi-pin svg { width: 26px; height: 26px; }
.lokasi-text { margin: 0; }
.lokasi-name {
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--fg);
  margin: 0;
  letter-spacing: -0.015em;
}
.lokasi-addr {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}
.lokasi-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 16px 14px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.lokasi-qr img {
  display: block;
  width: 180px; height: 180px;
  border-radius: 8px;
  background: #fff;
  padding: 6px;
}
.lokasi-qr p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.lokasi-actions {
  display: grid;
  gap: 10px;
}
.lokasi-actions .btn { padding: 12px 18px; }

/* ---------- KONTAK ---------- */
.section-primary { position: relative; overflow: hidden; background: var(--grad-primary); color: #fff; }
.kontak-bg-blob { position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%); border-radius: 50%; top: -200px; right: -200px; pointer-events: none; }
.section-primary h2 { color: #fff; font-size: 2rem; font-weight: 800; margin: 8px 0 0; }
@media (min-width: 960px) { .section-primary h2 { font-size: 2.5rem; } }
.section-primary .lead { color: rgba(255,255,255,0.88); margin: 16px 0 28px; max-width: 480px; font-size: 1.02rem; }
.kontak-grid { position: relative; display: grid; gap: 40px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 960px) { .kontak-grid { grid-template-columns: 1.1fr 0.9fr; gap: 64px; } }
.kontak-card { background: #fff; color: var(--fg); border-radius: var(--radius-xl); padding: 28px; box-shadow: var(--shadow-lg); }
.kontak-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 20px; }
.kontak-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 0.96rem; line-height: 1.45; }
.kontak-list b { font-weight: 700; }
.kontak-list a { color: var(--primary); font-weight: 600; }
.kontak-icon { display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center; background: var(--primary-soft); color: var(--primary); border-radius: 12px; flex: 0 0 40px; }
.kontak-icon svg { width: 18px; height: 18px; }

/* ---------- FOOTER ---------- */
.site-footer { background: #0b1f1d; color: rgba(255,255,255,0.7); padding: 56px 0 28px; }
.footer-grid { display: grid; gap: 36px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; } }
.footer-brand .brand-mark { background: rgba(255,255,255,0.08); }
.footer-brand .brand-word { filter: brightness(0) invert(1); }
.footer-brand p { margin-top: 14px; font-size: 0.88rem; color: rgba(255,255,255,0.55); max-width: 280px; }
.footer-grid h4 { color: #fff; font-size: 0.92rem; font-weight: 700; margin: 4px 0 14px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: 0.88rem; }
.footer-grid ul a { color: rgba(255,255,255,0.7); transition: color 0.15s; }
.footer-grid ul a:hover { color: #fff; }
.footer-bottom { margin-top: 36px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; }
.footer-bottom p { margin: 0; font-size: 0.78rem; color: rgba(255,255,255,0.5); }

/* ---------- MOBILE STICKY CTA ---------- */
.mobile-cta {
  position: fixed; bottom: 16px; right: 16px; z-index: 60;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px;
  background: linear-gradient(135deg, #25d366 0%, #1aab50 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.18s ease;
}
.mobile-cta:hover { transform: translateY(-2px); }
.mobile-cta svg { width: 18px; height: 18px; }
@media (min-width: 960px) { .mobile-cta { display: none; } }
body { padding-bottom: 72px; }
@media (min-width: 960px) { body { padding-bottom: 0; } }

/* ---------- SKRINING CARDS ---------- */
.grid-skrining { gap: 18px; }
.skrining-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.22s ease;
}
.skrining-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(13,148,136,0.3); }
.skrining-head {
  position: relative;
  padding: 22px 22px 18px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  min-height: 92px;
}
.skrining-head::after {
  content: "";
  position: absolute;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  top: -60px; right: -60px;
  pointer-events: none;
}
.skrining-tag {
  position: relative; z-index: 1;
  background: rgba(255,255,255,0.22);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.skrining-icon {
  position: relative; z-index: 1;
  width: 44px; height: 44px;
  color: rgba(255,255,255,0.92);
  flex-shrink: 0;
}
.skrining-tone-1 { background: linear-gradient(135deg, #06b6d4 0%, #0284c7 100%); color: #fff; }
.skrining-tone-2 { background: linear-gradient(135deg, #16a34a 0%, #047857 100%); color: #fff; }
.skrining-tone-3 { background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%); color: #fff; }
.skrining-tone-4 { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); color: #fff; }
.skrining-tone-5 { background: linear-gradient(135deg, #ec4899 0%, #db2777 100%); color: #fff; }
.skrining-tone-6 { background: linear-gradient(135deg, #eab308 0%, #ca8a04 100%); color: #fff; }
.skrining-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.skrining-body h3 {
  font-family: "Manrope", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 6px;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.skrining-body > p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}
.skrining-tests-label {
  font-size: 0.68rem !important;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 8px !important;
}
.skrining-tests {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 14px;
  flex: 1;
}
.skrining-tests li {
  position: relative;
  padding-left: 16px;
  font-size: 0.86rem;
  color: var(--fg-soft);
  line-height: 1.4;
}
.skrining-tests li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--primary);
}
.skrining-card-cta {
  position: relative;
  background: linear-gradient(140deg, #0d9488 0%, #0f766e 60%, #047857 100%);
  border: none;
  color: #fff;
  box-shadow: var(--shadow-glow);
  overflow: hidden;
}
.skrining-card-cta::after {
  content: "";
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  top: -120px; right: -100px;
  pointer-events: none;
}
.skrining-card-cta .skrining-body { position: relative; z-index: 1; justify-content: center; min-height: 200px; }
.skrining-card-cta h3 { color: #fff; font-size: 1.4rem; margin-top: 12px; }
.skrining-card-cta > .skrining-body > p { color: rgba(255,255,255,0.88); margin-bottom: 22px; max-width: 480px; }
.skrining-tag-light { background: rgba(255,255,255,0.2); color: #fff; }
@media (min-width: 700px) {
  .skrining-card-cta { grid-column: 1 / -1; }
  .skrining-card-cta .skrining-body {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    min-height: unset;
    padding: 26px 32px;
  }
  .skrining-card-cta .skrining-body > div.cta-text { display: flex; flex-direction: column; gap: 8px; max-width: 560px; }
  .skrining-card-cta .skrining-body > .btn { width: auto; flex-shrink: 0; padding: 13px 24px; }
  .skrining-card-cta .skrining-body > h3 { margin: 0; }
  .skrining-card-cta .skrining-body > p { margin: 0; }
}

/* ---------- JAM OPERASIONAL GRID ---------- */
.jam-grid {
  display: grid;
  grid-template-columns: max-content max-content;
  gap: 6px 14px;
  margin: 8px 0 0;
  font-size: 0.9rem;
  line-height: 1.35;
}
.jam-grid dt {
  color: var(--muted);
  font-weight: 500;
  position: relative;
  padding-right: 14px;
}
.jam-grid dt::after {
  content: ":";
  position: absolute;
  right: 0;
  color: var(--muted-2);
}
.jam-grid dd {
  color: var(--fg);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  margin: 0;
  white-space: nowrap;
}

/* ---------- KONTAK SOCIALS ---------- */
.kontak-icon-wa { background: #25d36622; color: #15803d; }
.kontak-icon-wa svg { width: 20px; height: 20px; }
.kontak-socials {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.kontak-socials-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 12px;
}
.kontak-socials-row {
  display: grid;
  gap: 8px;
}
.social-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--fg);
  font-size: 0.86rem;
  font-weight: 500;
  transition: all 0.18s ease;
}
.social-pill svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; }
.social-pill:hover { background: var(--primary-soft); border-color: rgba(13,148,136,0.3); color: var(--primary-deep); }
.social-pill:hover svg { color: var(--primary-deep); }

/* ---------- FOOTER SOCIALS ---------- */
.footer-socials {
  margin-top: 18px;
  display: flex;
  gap: 10px;
}
.footer-socials a {
  display: inline-flex;
  width: 36px; height: 36px;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  color: rgba(255,255,255,0.7);
  transition: all 0.18s ease;
}
.footer-socials a:hover { background: rgba(255,255,255,0.14); color: #fff; transform: translateY(-2px); }
.footer-socials svg { width: 17px; height: 17px; }

/* ---------- TOPSTRIP ADJUSTMENTS ---------- */
.topstrip-cta svg { width: 14px; height: 14px; }
.topstrip a + .dot { margin-left: 8px; margin-right: 8px; }

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01s !important; animation-iteration-count: 1 !important; transition-duration: 0.01s !important; }
}
