/* =========================================================
   Massage By Serenity — UI System (DESIGN.md)
   Cream + Coral + Dark · editorial, warm, clean
   ========================================================= */

:root {
  /* Brand — DESIGN.md Anthropic-adjacent palette */
  --coral: #cc785c;
  --coral-hover: #a9583e;
  --coral-soft: rgba(204, 120, 92, 0.12);
  --teal: #5db8a6;
  --amber: #e8a55a;

  --bg: #faf9f5;            /* canvas */
  --bg-elevated: #ffffff;
  --bg-muted: #f5f0e8;      /* surface-soft */
  --bg-card: #efe9de;       /* surface-card */
  --bg-dark: #181715;       /* surface-dark */
  --bg-dark-2: #252320;     /* surface-dark-elevated */
  --line: #e6dfd8;          /* hairline */
  --line-strong: #d9d2c7;

  --ink: #141413;
  --text: #3d3d3a;
  --text-soft: #6c6a64;
  --muted: #6c6a64;
  --text-faint: #8e8b82;
  --white: #ffffff;
  --cream: #faf9f5;

  --ok: #5db872;
  --warn: #d4a017;
  --err: #c64545;

  --font-serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --font-sans: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-pill: 999px;

  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 20px;
  --s-6: 24px;
  --s-7: 32px;
  --s-8: 40px;
  --s-9: 48px;
  --s-10: 64px;
  --s-11: 80px;
  --s-12: 96px;

  --wrap: 1120px;
  --wrap-sm: 720px;
  --nav-h: 72px;
  --bottom-h: 68px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 1px 2px rgba(20, 20, 19, 0.04), 0 8px 24px rgba(20, 20, 19, 0.04);
  --shadow-lg: 0 12px 40px rgba(20, 20, 19, 0.08);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  touch-action: manipulation;
}

body.has-bottom-nav {
  padding-bottom: calc(var(--bottom-h) + env(safe-area-inset-bottom, 0px));
}

/* Drawer open: kunci scroll tanpa inline style di body */
body.drawer-open {
  overflow: hidden;
  touch-action: none;
}

img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
ul { list-style: none; }
a { color: var(--coral); text-decoration: none; }
a:hover { color: var(--coral-hover); }

/* ---------- Layout shell ---------- */
.wrap {
  width: min(100% - 2rem, var(--wrap));
  margin-inline: auto;
}

.wrap-sm { width: min(100% - 2rem, var(--wrap-sm)); margin-inline: auto; }

.site-main { min-height: 50vh; }

.section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.section--muted { background: var(--bg-muted); }
.section--tight { padding: clamp(2.5rem, 5vw, 3.5rem) 0; }

.section__head {
  max-width: 36rem;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.section__head--center {
  margin-inline: auto;
  text-align: center;
}

.section__head p {
  margin-top: 0.75rem;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.65;
}

.section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.section__actions--center {
  justify-content: center;
}

/* ---------- Type ---------- */
.eyebrow {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
}

h1, h2, h3, .font-serif {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.25rem, 5.2vw, 3.75rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 34em;
}

.muted { color: var(--text-soft); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: transparent;
  --btn-color: var(--ink);
  --btn-border: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.7rem 1.2rem;
  border: 1px solid var(--btn-border);
  border-radius: var(--r-sm); /* 8px — DESIGN.md buttons */
  background: var(--btn-bg);
  color: var(--btn-color);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.01em;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.15s var(--ease), border-color 0.15s var(--ease), color 0.15s var(--ease), box-shadow 0.15s var(--ease), transform 0.1s;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
  box-shadow: none;
}

.btn:hover { color: var(--btn-color); }
.btn:active { transform: translateY(1px); }
.btn:disabled, .btn.is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.btn--primary {
  --btn-bg: var(--coral);
  --btn-color: var(--white);
  --btn-border: var(--coral);
  box-shadow: 0 1px 2px rgba(204, 120, 92, 0.22), 0 6px 16px rgba(204, 120, 92, 0.14);
}
.btn--primary:hover {
  --btn-bg: var(--coral-hover);
  --btn-border: var(--coral-hover);
  box-shadow: 0 2px 8px rgba(204, 120, 92, 0.26);
}

.btn--secondary {
  --btn-bg: var(--bg);
  --btn-color: var(--ink);
  --btn-border: var(--line);
}
.btn--secondary:hover {
  --btn-bg: var(--bg-elevated);
  --btn-border: var(--ink);
}

/* Dark fill — for cream surfaces only */
.btn--dark {
  --btn-bg: var(--bg-dark);
  --btn-color: var(--cream);
  --btn-border: var(--bg-dark);
}
.btn--dark:hover { --btn-bg: var(--bg-dark-2); --btn-border: var(--bg-dark-2); }

/* Cream button on coral band */
.btn--on-coral {
  --btn-bg: var(--cream);
  --btn-color: var(--ink);
  --btn-border: var(--cream);
}
.btn--on-coral:hover { --btn-bg: #fff; --btn-border: #fff; }

/* Light / outline on dark bands (visible contrast) */
.btn--on-dark {
  --btn-bg: var(--cream);
  --btn-color: var(--ink);
  --btn-border: var(--cream);
}
.btn--on-dark:hover {
  --btn-bg: #fff;
  --btn-border: #fff;
}
.btn--ghost-dark {
  --btn-bg: transparent;
  --btn-color: var(--cream);
  --btn-border: rgba(250, 249, 245, 0.28);
}
.btn--ghost-dark:hover {
  --btn-bg: rgba(250, 249, 245, 0.08);
  --btn-border: rgba(250, 249, 245, 0.55);
}

.btn--lg { min-height: 48px; padding: 0.85rem 1.4rem; font-size: 0.95rem; }
.btn--sm { min-height: 36px; padding: 0.45rem 0.9rem; font-size: 0.82rem; }
.btn--block { width: 100%; }

/* Paired CTAs: equal visual weight row, stack cleanly on narrow */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}
.btn-row--stack-sm {
  display: grid;
  gap: 0.65rem;
}
@media (min-width: 420px) {
  .btn-row--stack-sm {
    display: flex;
    flex-wrap: wrap;
  }
}

/* ---------- Badges ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 26px;
  padding: 0.2rem 0.7rem;
  border-radius: var(--r-pill);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}

.badge--soft {
  background: var(--bg-card);
  color: var(--text);
}

.badge--coral {
  background: var(--coral);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge--ok {
  background: rgba(63, 155, 88, 0.12);
  color: #2a7a40;
}

.badge--live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ok);
  flex-shrink: 0;
}

/* ---------- Top navigation ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(250, 249, 245, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.topbar.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(20,20,19,0.02);
}

.topbar__inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  text-decoration: none;
  flex-shrink: 0;
}
.brand:hover { color: var(--ink); }

.brand__mark {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--ink);
  color: var(--cream);
  display: grid;
  place-items: center;
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.05;
}

.brand__name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.brand__sub {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.brand--dark .brand__mark {
  background: var(--cream);
  color: var(--ink);
}
.brand--dark .brand__name { color: var(--cream); }
.brand--dark .brand__sub { color: var(--text-faint); }

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.15rem;
}

.nav-desktop a {
  padding: 0.55rem 0.8rem;
  border-radius: var(--r-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-soft);
  text-decoration: none;
}
.nav-desktop a:hover,
.nav-desktop a.is-active {
  color: var(--ink);
  background: var(--bg-card);
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}
/* CTA header selalu terlihat (semua halaman, termasuk index) */
.topbar-cta,
#primaryCta {
  display: inline-flex !important;
  flex-shrink: 0;
  white-space: nowrap;
  max-width: 46vw;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.82rem;
  padding-left: 0.85rem;
  padding-right: 0.85rem;
  min-height: 40px;
}
@media (min-width: 640px) {
  .topbar-cta,
  #primaryCta {
    max-width: none;
    font-size: 0.9rem;
  }
}

.nav-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--bg);
  display: none;
  place-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 15px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer (from right) */
.nav-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(20, 20, 19, 0.45);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}
.nav-drawer-backdrop.is-open { opacity: 1; }
.nav-drawer-backdrop[hidden] { display: none !important; }

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  width: min(86vw, 320px);
  background: var(--bg);
  box-shadow: -12px 0 40px rgba(20, 20, 19, 0.12);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.28s var(--ease);
  padding: 0 0 env(safe-area-inset-bottom, 0);
}
.nav-drawer.is-open { transform: translateX(0); }
.nav-drawer[hidden] {
  display: none !important;
}
.nav-drawer:not([hidden]) {
  display: flex;
}

.nav-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.15rem;
  border-bottom: 1px solid var(--line);
}
.nav-drawer__close {
  width: 40px;
  height: 40px;
  border: 0;
  background: var(--bg-card);
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
}
.nav-drawer__nav {
  flex: 1;
  overflow-y: auto;
  padding: 0.75rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.nav-drawer__nav a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
}
.nav-drawer__nav a:hover { background: var(--bg-card); color: var(--ink); }
.nav-drawer__foot {
  padding: 1rem 1.15rem 1.25rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.55rem;
}

.mobile-only { display: grid; }

/* ---------- Bottom nav ---------- */
.bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: calc(var(--bottom-h) + env(safe-area-inset-bottom, 0px));
  padding-bottom: env(safe-area-inset-bottom, 0px);
  background: rgba(250, 249, 245, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
}

.bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  min-height: 44px;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-faint);
  text-decoration: none;
}
.bottom-nav a.is-active,
.bottom-nav a:hover { color: var(--coral); }
.bottom-nav svg { width: 20px; height: 20px; }

/* ---------- Hero ---------- */
.hero {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5rem);
}

.hero__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.hero__copy { max-width: 36rem; }

.hero__title {
  margin: 1rem 0 1.25rem;
}

.hero__title em {
  font-style: italic;
  color: var(--coral);
  font-weight: 400;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin: 1.5rem 0 0;
}
.hero__actions .btn--lg {
  min-width: 10.5rem;
}
@media (max-width: 419px) {
  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .hero__actions .btn {
    width: 100%;
    min-width: 0;
  }
}

.hero-panel {
  background: var(--bg-card);
  border-radius: var(--r-xl);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-height: 100%;
  box-shadow: var(--shadow);
}

.hero-panel__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.hero-panel h2 {
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  margin-top: 0.35rem;
}

/* ---------- Cards / grids ---------- */
.grid-3 {
  display: grid;
  gap: 1rem;
}

/* Therapist roster: even 2×2 on desktop */
.grid-therapists {
  display: grid;
  gap: 1rem;
}

.card {
  background: var(--bg-card);
  border-radius: var(--r-md); /* 12px — DESIGN.md content cards */
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid transparent;
  overflow: hidden;
  box-shadow: none;
  transition: box-shadow 0.2s var(--ease), transform 0.2s var(--ease), border-color 0.2s var(--ease);
}
.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  border-color: rgba(204, 120, 92, 0.18);
}
.card__accent {
  height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--amber));
}
.card__inner {
  padding: 1.5rem 1.5rem 1.4rem; /* ~24–32px editorial padding */
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0;
}

.card--border {
  background: var(--bg);
  border-color: var(--line);
}

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--bg);
  color: var(--coral);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  margin-bottom: 0;
  border: 1px solid var(--line);
  flex-shrink: 0;
}

.card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.card h3,
.card__title {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--ink);
}

.card__subtitle {
  margin-top: 0.2rem;
  font-size: 0.88rem;
  color: var(--text-soft);
}

.card__body {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.6;
  flex: 1;
}

.card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-top: 1rem;
}

.card__price {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.4rem;
}

.card__price span {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-soft);
  margin-right: 0;
}

.card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.9rem;
}

.card__footer {
  margin-top: auto;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(20, 20, 19, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.card__footer .btn { width: 100%; }

/* Keep card CTAs aligned in a row of cards */
.card > .btn,
.card__inner > .btn,
.therapist > .btn {
  margin-top: auto;
}

/* Service card home variant */
.svc-card .card__body {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.svc-card .card__tags {
  margin-top: 0.75rem;
}
.svc-card .card__meta {
  margin-top: 1rem;
}

/* Price table inside service cards */
.price-rows {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.price-rows li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-size: 0.92rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(20, 20, 19, 0.06);
}
.price-rows li:last-child { border-bottom: 0; padding-bottom: 0; }
.price-rows .label { color: var(--text-soft); }
.price-rows .value { font-weight: 600; color: var(--ink); }

/* Steps */
.steps {
  display: grid;
  gap: 1rem;
  counter-reset: step;
}

.step {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.5rem;
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  margin-bottom: 0.85rem;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--coral);
  letter-spacing: -0.02em;
  line-height: 1;
}

.step h3 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.45rem;
}

.step p {
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.55;
}

/* Therapist — horizontal profile strip */
.therapist {
  background: var(--bg-elevated);
  border-radius: var(--r-xl);
  padding: 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  height: 100%;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.therapist::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--coral);
  border-radius: 3px 0 0 3px;
}

.therapist__head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.avatar {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(145deg, #f5ebe3, #e8d5c8);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  flex-shrink: 0;
  border: 1px solid rgba(204, 120, 92, 0.15);
}
.avatar--photo,
img.avatar {
  object-fit: cover;
  padding: 0;
  display: block;
  background: var(--bg-card);
}

.therapist__name {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.therapist__role {
  margin-top: 0.15rem;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.therapist__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
}

.rating {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}
.rating::before {
  content: "★";
  color: var(--amber);
  font-size: 0.95rem;
}
.rating small {
  font-weight: 500;
  color: var(--text-faint);
}

.therapist__bio {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.55;
  flex: 1;
}

.therapist__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

/* Dark band / tracking mock */
.band-dark {
  background: var(--bg-dark);
  color: var(--cream);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.band-dark .eyebrow { color: var(--text-faint); }
.band-dark h2 { color: var(--cream); }
.band-dark .section__head p { color: var(--text-faint); }
.band-dark .section__actions { margin-top: 1.5rem; }

.band-dark__layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.mock-dark {
  background: var(--bg-dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  max-width: 28rem;
}

.mock-dark__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.5rem;
}

.mock-dark h3 {
  color: var(--cream);
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.mock-dark > p {
  font-size: 0.9rem;
  color: var(--text-faint);
}

.timeline {
  display: grid;
  gap: 0;
  margin: 1.5rem 0 1.25rem;
}

.timeline__item {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 0.85rem;
  padding-bottom: 1.15rem;
  position: relative;
}

.timeline__item:last-child { padding-bottom: 0; }

.timeline__item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 18px;
  bottom: 0;
  width: 1px;
  background: rgba(255,255,255,0.1);
}

.timeline__dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
  background: var(--bg-dark-2);
  z-index: 1;
}

.timeline__item.is-done .timeline__dot {
  background: var(--teal);
  border-color: var(--teal);
}
.timeline__item.is-active .timeline__dot {
  background: var(--coral);
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(204, 120, 92, 0.25);
  animation: pulse-step 1.6s ease-in-out infinite;
}
.timeline__item.is-done .timeline__dot::after,
.timeline__item.is-active .timeline__dot::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  margin: 5px auto 0;
  border-radius: 50%;
  background: #fff;
}

.timeline__item h4 {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.15rem;
}
.timeline__item p {
  font-size: 0.8rem;
  color: var(--text-faint);
  line-height: 1.4;
}
.timeline__item.is-pending h4 { color: rgba(250,249,245,0.45); }
.timeline__item.is-pending p { color: rgba(250,249,245,0.3); }

/* Area chips */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.chips--center { justify-content: center; }

/* CTA coral — solid brand voltage (no muddy multi-stop gradient) */
.cta-coral {
  background: var(--coral);
  color: var(--white);
  padding: clamp(2.75rem, 5vw, 3.75rem) 0;
}

.cta-coral__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

.cta-coral h2 {
  font-size: clamp(1.55rem, 2.6vw, 2rem);
  color: var(--white);
  margin-bottom: 0.45rem;
  letter-spacing: -0.02em;
}

.cta-coral p {
  color: rgba(255, 255, 255, 0.92);
  max-width: 34em;
  font-size: 1rem;
  line-height: 1.55;
}

.cta-coral__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.cta-coral__actions .btn {
  min-width: 9.5rem;
}

/* Footer */
.footer {
  background: var(--bg-dark);
  color: var(--text-faint);
  padding: 3.5rem 0 2rem;
}

.footer__grid {
  display: grid;
  gap: 2.25rem;
  margin-bottom: 2.5rem;
}

.footer__brand p {
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 22em;
}

.footer__meta {
  margin-top: 0.65rem !important;
  font-size: 0.82rem !important;
  color: rgba(160, 157, 150, 0.85);
}

.footer h3 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.9rem;
}

.footer ul {
  display: grid;
  gap: 0.55rem;
}

.footer a {
  color: var(--text-faint);
  font-size: 0.9rem;
  text-decoration: none;
}
.footer a:hover { color: var(--cream); }
.footer span { font-size: 0.9rem; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer__bottom p { font-size: 0.8rem; }

/* ---------- Page header ---------- */
.page-hero {
  padding: clamp(2.25rem, 5vw, 3.5rem) 0 0;
}

.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero .lead { margin-top: 0; }
.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* ---------- Forms / booking ---------- */
.form-stack { display: grid; gap: 1rem; }

.form-row {
  display: grid;
  gap: 1rem;
}

.check-line {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--body, #3d3d3a);
  line-height: 1.45;
  cursor: pointer;
}
.check-line input {
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--coral, #cc785c);
}

.join-form .btn--block { width: 100%; }

.field {
  display: grid;
  gap: 0.4rem;
}

.field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}

.field .hint {
  font-size: 0.8rem;
  color: var(--text-faint);
}

.input,
.select,
.textarea {
  width: 100%;
  min-height: 44px;
  padding: 0.65rem 0.9rem;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  color: var(--ink);
  font-size: 16px;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.textarea {
  min-height: 104px;
  resize: vertical;
  line-height: 1.5;
}

.input:focus,
.select:focus,
.textarea:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px var(--coral-soft);
}

.input.is-error,
.textarea.is-error { border-color: var(--err); }

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pills label { cursor: pointer; position: relative; }
.pills input { position: absolute; opacity: 0; pointer-events: none; width: 0; height: 0; }

.pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  min-width: 76px;
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-soft);
  background: var(--bg-card);
  transition: border-color 0.15s, background 0.15s, color 0.15s, box-shadow 0.15s;
}

/* Durasi: netral saat idle, coral solid saat dipilih (tidak membingungkan) */
.pills--duration {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}
.pill-duration__face {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  min-height: 64px;
  width: 100%;
  padding: 0.65rem 0.5rem;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(20, 20, 19, 0.04);
  transition: border-color 0.15s, background 0.15s, color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.pill-duration__face strong {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
  color: inherit;
}
.pill-duration__face small {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: lowercase;
}
.pill-duration:hover .pill-duration__face {
  border-color: rgba(204, 120, 92, 0.45);
}
.pill-duration input:checked + .pill-duration__face {
  border-color: var(--coral);
  background: var(--coral);
  color: #fff;
  box-shadow: 0 6px 16px rgba(204, 120, 92, 0.28);
  transform: translateY(-1px);
}
.pill-duration input:checked + .pill-duration__face small {
  color: rgba(255, 255, 255, 0.85);
}
.pill-duration input:focus-visible + .pill-duration__face {
  outline: 2px solid var(--coral);
  outline-offset: 2px;
}
.duration-block[hidden],
#durationBlock[hidden] { display: none !important; }

.pills label:has(input:checked) > span:not(.pill-duration__face) {
  border-color: var(--coral);
  color: #fff;
  background: var(--coral);
  box-shadow: 0 4px 12px rgba(204, 120, 92, 0.25);
}

/* Booking shell */
.booking {
  width: min(100% - 2rem, 640px);
  margin-inline: auto;
}
.booking-panel {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 1.5rem 1.35rem 1.75rem;
  box-shadow: var(--shadow);
}
.booking-step h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
}
.booking .select,
.booking .input,
.booking .textarea {
  background: #fff;
  border-color: var(--line-strong);
}
.booking .summary {
  background: var(--bg-muted);
  border: 1px solid var(--line);
}

.progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-bottom: 1.75rem;
}
.progress__item {
  min-width: 0;
}
.progress__bar {
  height: 4px;
  border-radius: 4px;
  background: var(--line);
  overflow: hidden;
  transition: background 0.2s var(--ease);
}
.progress__bar.is-active,
.progress__bar.is-done,
.progress__item.is-active .progress__bar,
.progress__item.is-done .progress__bar {
  background: var(--coral);
}
.progress__cap {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-faint);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.progress__item.is-active .progress__cap { color: var(--coral); }
.progress__item.is-done .progress__cap { color: var(--text-soft); }

.step-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.4rem;
}

.booking-step[hidden] { display: none !important; }

.booking-step > h2 {
  margin-bottom: 0.4rem;
}

.booking-step > .lead {
  margin-bottom: 1.5rem;
  font-size: 0.98rem;
}

.fieldset-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  align-items: center;
}
.booking-actions--spread {
  justify-content: space-between;
}
.booking-actions--spread .btn--primary {
  margin-left: auto;
}

.pay-stack {
  display: grid;
  gap: 0.65rem;
}

.pay-box {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1.05rem 1.15rem;
  background: var(--bg-elevated);
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}

.pay-box:has(input:checked) {
  border-color: var(--coral);
  box-shadow: 0 0 0 1px var(--coral);
  background: var(--coral-soft);
}

.pay-box input { margin-top: 0.2rem; accent-color: var(--coral); flex-shrink: 0; }
.pay-box strong {
  display: block;
  color: var(--ink);
  margin-bottom: 0.2rem;
  font-size: 0.95rem;
}
.pay-box__desc {
  display: block;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-soft);
  line-height: 1.4;
}

/* Booking success / blocked states */
.booking-result {
  text-align: left;
}
.booking-result__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(93, 184, 114, 0.15);
  color: var(--ok);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.booking-result__code {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.95rem;
}
.booking-result__lead {
  margin: 0 0 1.25rem;
  line-height: 1.55;
}
.booking-result__actions {
  margin-top: 0.25rem;
}
@media (max-width: 419px) {
  .booking-result__actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .booking-result__actions .btn { width: 100%; }
}

.estimate-line {
  margin-top: 0.85rem;
  padding: 0.75rem 0.95rem;
  background: var(--bg-muted);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  color: var(--text-soft);
}
.estimate-line strong {
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  margin-left: 0.25rem;
}

/* Cancel page */
.cancel-summary {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.35rem;
  margin-bottom: 1rem;
}
.cancel-summary__code {
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  margin: 0 0 0.45rem;
}
.cancel-summary__body {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.55;
}
.cancel-summary__note {
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
}
.cancel-request-hint {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Tracking panel on dark */
.alert--on-dark-err {
  background: rgba(198, 69, 69, 0.18);
  border: 1px solid rgba(198, 69, 69, 0.4);
  color: var(--cream);
  border-radius: var(--r-md);
  padding: 0.9rem 1rem;
  font-size: 0.92rem;
}
.track-actions {
  margin-top: 1.25rem;
}
.mock-dark .btn--ghost-dark {
  --btn-bg: transparent;
  --btn-color: var(--cream);
  --btn-border: rgba(250, 249, 245, 0.28);
}
.mock-dark .btn--ghost-dark:hover {
  --btn-bg: rgba(250, 249, 245, 0.08);
  --btn-border: rgba(250, 249, 245, 0.5);
  color: var(--cream);
}

/* Article detail */
.article-page__title {
  margin-bottom: 0.5rem;
}
.article-page__date {
  margin: 0 0 1.5rem;
  font-size: 0.9rem;
}
.article-page .lead {
  margin-bottom: 1.5rem;
}
.article-page__actions {
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.article-body.prose p + p {
  margin-top: 1.1rem;
}

.summary {
  background: var(--bg-muted);
  border-radius: var(--r-lg);
  padding: 1.35rem 1.4rem;
  margin-top: 1.25rem;
}

.summary__title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 1rem;
}

.summary dl {
  display: grid;
  gap: 0.85rem;
}

.summary dt {
  font-size: 0.78rem;
  color: var(--text-faint);
  margin-bottom: 0.15rem;
}

.summary dd {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}

.summary__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.summary__total span { color: var(--text-soft); font-size: 0.9rem; }
.summary--collapsible {
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--bg-card);
}
.summary__head { margin-bottom: 0.35rem; }
.summary__keyline {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0.35rem 0 0.5rem;
}
.summary__keyline .sep { color: var(--muted); margin: 0 0.25rem; font-weight: 400; }
.summary__total--inline {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.5rem 0 0.25rem;
  border-top: 1px dashed var(--line);
  margin-top: 0.35rem;
}
.summary__details {
  border-top: 1px solid var(--line);
  margin-top: 0.5rem;
  padding-top: 0.35rem;
}
.summary__details summary {
  cursor: pointer;
  list-style: none;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--coral);
  padding: 0.45rem 0;
  user-select: none;
}
.summary__details summary::-webkit-details-marker { display: none; }
.summary__details .summary__toggle-hide { display: none; }
.summary__details[open] .summary__toggle-show { display: none; }
.summary__details[open] .summary__toggle-hide { display: inline; }
.summary__details dl { margin-top: 0.5rem; }

.summary__total strong {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--ink);
}

/* Alerts */
.alert {
  border-radius: var(--r-md);
  padding: 1rem 1.15rem;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.alert--ok {
  background: rgba(63, 155, 88, 0.1);
  border: 1px solid rgba(63, 155, 88, 0.25);
  color: var(--text);
}

.alert--err {
  background: rgba(192, 69, 69, 0.08);
  border: 1px solid rgba(192, 69, 69, 0.22);
}

.alert--info {
  background: var(--bg-muted);
  border: 1px solid var(--line);
}

.alert strong { color: var(--ink); }
.alert ul { margin-top: 0.5rem; display: grid; gap: 0.25rem; }
.alert li { color: var(--text); padding-left: 0.5rem; }

/* Tracking layout */
.track-layout {
  display: grid;
  gap: 1.25rem;
}

.track-lookup {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.5rem;
}
.track-lookup__hint {
  font-size: 0.88rem;
}
.input--code {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

/* FAQ */
.faq {
  display: grid;
  gap: 0.65rem;
  max-width: 720px;
}

.faq details {
  background: var(--bg-card);
  border-radius: var(--r-md);
  overflow: hidden;
}

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.05rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 52px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-faint);
  flex-shrink: 0;
}
.faq details[open] summary::after { content: "−"; }
.faq__body {
  padding: 0 1.25rem 1.15rem;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Prose */
.prose {
  max-width: 40rem;
}
.prose p + p { margin-top: 1rem; }
.prose ul {
  margin: 1rem 0;
  display: grid;
  gap: 0.55rem;
}
.prose li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--text);
  line-height: 1.55;
}
.prose li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--coral);
}
.prose h2 { margin-top: 2rem; margin-bottom: 0.75rem; }
.prose h2:first-child { margin-top: 0; }

.about-grid {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.value-card {
  background: var(--bg-card);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.5rem;
  border: 1px solid transparent;
}

.value-card h3 {
  font-size: 1.45rem;
  margin: 0.75rem 0 1rem;
}

.value-list {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 0.25rem;
}
.value-list li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.45;
}
.value-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
}

.value-list li strong {
  display: block;
  color: var(--ink);
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}
.value-list li span {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.45;
}

/* Code of ethics list (bantuan #etika) */
.ethics-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 720px) {
  .ethics-list {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem 1.75rem;
  }
}
.ethics-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 0.6rem;
  align-items: start;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}
.ethics-list li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-top: 0.05rem;
  border-radius: 50%;
  background: var(--coral-soft);
  color: var(--coral);
  font-size: 0.8rem;
  font-weight: 700;
}

/* Note box */
.note {
  max-width: 40rem;
  margin: 2rem auto 0;
  padding: 1.15rem 1.25rem;
  background: var(--bg-muted);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.55;
}
.note strong { color: var(--ink); }

/* Utilities */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-0 { margin-bottom: 0; }
.gap-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--coral);
  color: #fff;
  padding: 0.65rem 1.1rem;
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  box-shadow: var(--shadow);
}
.skip-link:focus,
.skip-link:focus-visible {
  left: 1rem;
  top: 1rem;
  color: #fff;
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

/* Reduced motion: drawer tanpa slide panjang */
@media (prefers-reduced-motion: reduce) {
  .nav-drawer,
  .nav-drawer-backdrop {
    transition: none !important;
  }
}

/* ---------- A11y & polish (audit v5) ---------- */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 2px;
}

::selection { background: rgba(204, 120, 92, 0.22); }

/* Anchor (mis. bantuan.php#etika) tidak tertutup topbar sticky */
[id] { scroll-margin-top: calc(var(--nav-h) + 16px); }

h1, h2, h3 { text-wrap: balance; }

/* ---------- Responsive ---------- */
@media (min-width: 640px) {
  .grid-therapists { grid-template-columns: repeat(2, 1fr); }
  .form-row--2 { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2rem, 4vw, 3.5rem);
  }

  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }

  .cta-coral__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  /* Tablet: 2 kolom — 4 kolom baru di ≥1024px (terlalu sempit di 768px) */
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .track-layout {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }

  .band-dark__layout {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }

  .about-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.5rem;
  }

}

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .mobile-only { display: none !important; }
  .nav-toggle { display: none !important; }
  .bottom-nav { display: none; }
  body.has-bottom-nav { padding-bottom: 0; }

  .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
  .grid-therapists { grid-template-columns: repeat(2, 1fr); gap: 1.15rem; max-width: 920px; }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

@media (min-width: 1200px) {
  .grid-therapists { grid-template-columns: repeat(4, 1fr); max-width: none; }
}

@media (max-width: 1023px) {
  .nav-toggle { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* 404 — editorial, rapi, brand cream + coral */
.page-404 {
  min-height: min(70vh, 640px);
  display: grid;
  place-items: center;
  padding: clamp(2.5rem, 6vw, 5rem) 0 calc(var(--s-10) + env(safe-area-inset-bottom, 0px));
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(204, 120, 92, 0.08), transparent 70%),
    var(--bg);
}
.page-404__inner {
  text-align: center;
  max-width: 32rem;
  margin-inline: auto;
}
.page-404__code {
  font-family: var(--font-serif);
  font-size: clamp(4.5rem, 16vw, 7rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--coral);
  margin: 0 0 0.75rem;
  user-select: none;
}
.page-404__title {
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 4vw, 2.15rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 0.75rem;
  text-wrap: balance;
}
.page-404__lead {
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.55;
  margin: 0 auto 1.75rem;
  max-width: 28em;
}
.page-404__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.75rem;
}
.page-404__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.92rem;
}
.page-404__links a {
  color: var(--text-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s var(--ease), border-color 0.15s var(--ease);
}
.page-404__links a:hover {
  color: var(--coral);
  border-bottom-color: rgba(204, 120, 92, 0.35);
}
@media (max-width: 480px) {
  .page-404__actions .btn { flex: 1 1 auto; min-width: 9rem; }
}

/* =========================================================
   UI polish — brand rhythm (no conflicting overrides)
   ========================================================= */

.topbar {
  height: var(--nav-h);
}
.topbar__inner { height: var(--nav-h); }
.brand__mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--ink);
}
.brand__name { font-size: 1.2rem; }
.nav-desktop a {
  padding: 0.55rem 0.9rem;
  border-radius: var(--r-pill);
  transition: background 0.15s, color 0.15s;
}
.nav-desktop a.is-active {
  background: var(--coral-soft);
  color: var(--coral-hover);
}

.bottom-nav {
  background: rgba(250, 249, 245, 0.96);
  box-shadow: 0 -4px 24px rgba(20, 20, 19, 0.05);
}
.bottom-nav a {
  font-size: 0.7rem;
  gap: 0.3rem;
  border-radius: 12px;
  margin: 4px 2px;
}
.bottom-nav a.is-active {
  background: var(--coral-soft);
  color: var(--coral);
}

.hero { position: relative; }
.hero__copy .badge { margin-bottom: 0.35rem; }
.hero-panel {
  border: 1px solid var(--line);
  background: var(--bg-elevated);
}

.section__head .eyebrow {
  color: var(--coral);
}

.therapist {
  background: var(--bg-elevated);
  border-radius: var(--r-lg);
}
.therapist:hover {
  border-color: rgba(204, 120, 92, 0.28);
  box-shadow: var(--shadow);
}
.therapist__footer {
  margin-top: auto;
  padding-top: 0.85rem;
}
.therapist__footer .btn { width: 100%; }

.step {
  transition: border-color 0.15s, box-shadow 0.15s;
}
.step:hover {
  border-color: rgba(204, 120, 92, 0.28);
  box-shadow: var(--shadow);
}

.booking-panel {
  border-radius: var(--r-xl);
  padding: 1.75rem 1.5rem 2rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.booking .select,
.booking .input,
.booking .textarea {
  border-radius: var(--r-sm);
  min-height: 46px;
  background: var(--bg-elevated);
}
.booking .select:focus,
.booking .input:focus,
.booking .textarea:focus {
  border-color: var(--coral);
}

.booking-actions .btn--primary {
  min-width: 8.5rem;
}
@media (max-width: 419px) {
  .booking-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .booking-actions .btn {
    width: 100%;
    min-width: 0;
  }
  .booking-actions--spread .btn--primary {
    margin-left: 0;
  }
}

.footer {
  padding-top: 4rem;
}
.footer a {
  transition: color 0.15s;
}

.nav-drawer {
  border-left: 1px solid var(--line);
}
.nav-drawer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink);
  text-decoration: none;
}
.nav-drawer__brand-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--coral);
  letter-spacing: -0.02em;
}
.nav-drawer__nav a {
  border-radius: 12px;
  font-weight: 500;
}
.nav-drawer__nav a:active {
  background: var(--coral-soft);
  color: var(--coral);
}
.nav-drawer__foot .btn + .btn {
  margin-top: 0;
}

.page-hero {
  padding-bottom: 0.75rem;
}
.page-hero h1 {
  letter-spacing: -0.03em;
}
.page-hero__actions {
  margin-top: 1.35rem;
}
@media (max-width: 419px) {
  .page-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .page-hero__actions .btn {
    width: 100%;
  }
}

.alert {
  border-radius: var(--r-md);
}
.alert--ok {
  border-left: 3px solid var(--ok);
}
.alert--err {
  border-left: 3px solid var(--err);
}
.alert--info {
  border-left: 3px solid var(--coral);
}

.mock-dark {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  max-width: none;
}



.chips .badge--soft {
  padding: 0.5rem 0.95rem;
  font-size: 0.85rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
}

.section__actions {
  gap: 0.75rem;
}
.section__actions--center {
  justify-content: center;
}

@media (min-width: 1024px) {
  .hero__grid {
    gap: 3.5rem;
  }
}

/* Lang switch — desktop header; mobile di bottom-nav */
.lang-switch {
  display: inline-flex;
  gap: 2px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 2px;
  flex-shrink: 0;
}
.lang-switch a,
.lang-switch button {
  min-width: 34px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-soft);
  text-decoration: none;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  padding: 0 0.35rem;
}
.lang-switch a.is-active,
.lang-switch button.is-active {
  background: var(--coral);
  color: #fff;
}

/* Index hero — banner soft + cream overlay (teks selalu terbaca) */
.hero--v2 {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: clamp(2.25rem, 5vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(204, 120, 92, 0.1), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 20%, rgba(93, 184, 166, 0.08), transparent 50%),
    var(--bg);
}
.hero--v2::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../img/banner.webp") center 35% / cover no-repeat;
  filter: blur(3px) saturate(0.85);
  transform: scale(1.06);
}
.hero--v2::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg,
    rgba(250, 249, 245, 0.97) 0%,
    rgba(250, 249, 245, 0.93) 48%,
    rgba(250, 249, 245, 0.78) 100%);
}
.hero-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0 0;
  padding: 0;
}
.hero-trust li {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 0.45rem 0.85rem;
}
.hero-showcase__card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-lg);
}
.steps--v2 {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .steps--v2 { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}
.steps--v2 .step {
  position: relative;
  background: var(--bg-card);
  border: 1px solid transparent;
  border-radius: var(--r-lg);
  padding: 1.5rem 1.35rem;
}
.steps--v2 + .section__actions {
  margin-top: 2rem;
}
/* Booking: dial sempit + WA sejajar */
.form-row--dial {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.75rem;
  align-items: end;
}
@media (min-width: 480px) {
  .form-row--dial { grid-template-columns: 6.5rem 1fr; }
}
.field--dial .select {
  padding-left: 0.5rem;
  padding-right: 1.5rem;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

@keyframes pulse-step {
  0%, 100% { box-shadow: 0 0 0 4px rgba(204, 120, 92, 0.22); }
  50% { box-shadow: 0 0 0 8px rgba(204, 120, 92, 0.08); }
}
.status-live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  margin-right: 0.4rem;
  vertical-align: middle;
  animation: pulse-dot 1.2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.85); }
}

/* Timeline animated */
.timeline--live .timeline__item {
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.timeline--live .timeline__item.is-pending {
  opacity: 0.55;
}
.timeline--live .timeline__item.is-active {
  opacity: 1;
}
.timeline--live .timeline__item.is-just-activated {
  animation: step-arrive 0.85s ease;
}
.timeline--live .timeline__item.is-just-activated .timeline__dot {
  animation: dot-pop 0.7s ease;
}
.timeline--live .timeline__item.is-done .timeline__dot {
  transition: background 0.4s ease, border-color 0.4s ease;
}
.timeline--live .timeline__item:not(:last-child)::before {
  transition: background 0.5s ease;
}
.timeline--live .timeline__item.is-done:not(:last-child)::before {
  background: linear-gradient(180deg, var(--teal), rgba(204, 120, 92, 0.5));
}
.timeline--live .timeline__item.is-active:not(:last-child)::before {
  background: linear-gradient(180deg, var(--coral), rgba(255, 255, 255, 0.08));
}
.timeline__now {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--coral);
  animation: fade-in-up 0.5s ease;
}
@keyframes step-arrive {
  0% { transform: translateX(-6px); opacity: 0.4; }
  100% { transform: translateX(0); opacity: 1; }
}
@keyframes dot-pop {
  0% { transform: scale(0.7); }
  60% { transform: scale(1.2); }
  100% { transform: scale(1); }
}
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Account page */
.account-panel + .account-panel,
.account-panel + .account-history-title {
  margin-top: 0;
}
.account-panel--profile {
  margin-bottom: 1.5rem;
}
.account-panel__title {
  margin: 0 0 1rem;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
}
.field-hint {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0.15rem 0 0.25rem;
  line-height: 1.45;
}
.account-profile {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}
.account-profile__welcome {
  margin: 0 0 0.35rem;
  font-size: 0.85rem;
}
.account-profile__name {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
}
.account-profile__wa {
  margin: 0.35rem 0 0;
  font-size: 0.95rem;
}
.account-profile__saved {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.account-profile__saved-label {
  font-size: 0.8rem;
  margin: 0 0 0.5rem;
}
.account-profile__saved-body {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}
.account-profile__actions {
  margin-top: 1.25rem;
}
.account-history-title {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 1rem;
  color: var(--ink);
}
.account-empty-cta {
  margin-top: 1rem;
}
.account-history {
  display: grid;
  gap: 0.85rem;
}
.account-history__item {
  margin: 0;
}
.account-history__top {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: flex-start;
}
.account-history__code {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
}
.account-history__service {
  margin: 0.35rem 0 0;
  font-weight: 600;
  color: var(--ink);
  font-size: 1rem;
}
.account-history__meta {
  margin: 0.25rem 0 0;
  font-size: 0.88rem;
  line-height: 1.5;
}
.account-history__actions {
  margin-top: 0.9rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

/* Status pills (account history) */
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0.2rem 0.7rem;
  border-radius: var(--r-pill);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  background: var(--bg-muted);
  color: var(--text-soft);
  border: 1px solid var(--line);
  flex-shrink: 0;
}
.pill-baru { background: rgba(204, 120, 92, 0.1); color: var(--coral-hover); border-color: rgba(204, 120, 92, 0.2); }
.pill-dikonfirmasi { background: rgba(93, 184, 166, 0.12); color: #2d8a7a; border-color: rgba(93, 184, 166, 0.25); }
.pill-dalam_perjalanan { background: rgba(232, 165, 90, 0.15); color: #9a6a20; border-color: rgba(232, 165, 90, 0.3); }
.pill-sedang_dipijat { background: rgba(204, 120, 92, 0.12); color: var(--coral-hover); border-color: rgba(204, 120, 92, 0.22); }
.pill-selesai { background: rgba(93, 184, 114, 0.12); color: #2a7a40; border-color: rgba(93, 184, 114, 0.25); }
.pill-dibatalkan { background: rgba(198, 69, 69, 0.08); color: var(--err); border-color: rgba(198, 69, 69, 0.2); }

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

@media (prefers-reduced-motion: reduce) {
  .status-live-dot,
  .timeline--live .timeline__item.is-just-activated {
    animation: none !important;
    transition: none !important;
  }
}

.therapist-pick-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .therapist-pick-grid { grid-template-columns: 1fr 1fr; }
}
.therapist-pick { cursor: pointer; display: block; }
.therapist-pick input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.therapist-pick__card {
  display: grid;
  grid-template-columns: 72px 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 0.85rem;
  row-gap: 0.15rem;
  align-items: center;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.therapist-pick__photo,
.therapist-pick__initials {
  grid-row: 1 / span 3;
  width: 72px;
  height: 72px;
  border-radius: 14px;
  object-fit: cover;
}
.therapist-pick__initials {
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #f5ebe3, #e8d5c8);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
}
.therapist-pick__name {
  font-weight: 600;
  color: var(--ink);
  font-size: 1rem;
}
.therapist-pick__meta {
  font-size: 0.85rem;
  color: var(--text-soft);
}
.therapist-pick__spec {
  font-size: 0.8rem;
  color: var(--text-faint);
}
.therapist-pick input:checked + .therapist-pick__card {
  border-color: var(--coral);
  box-shadow: 0 0 0 1px var(--coral), 0 8px 24px rgba(204, 120, 92, 0.12);
  background: rgba(204, 120, 92, 0.04);
}

.service-page-card .price-rows {
  margin-top: 1rem;
}
.help-faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 0.65rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.help-faq summary {
  padding: 1.05rem 1.25rem;
  font-weight: 600;
}
.help-faq .faq__body {
  padding: 0 1.25rem 1.15rem;
}
.article-card .card__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
}

/* =========================================================
   Hero v6 — ketersediaan live + jangkar harga (closing-first)
   ========================================================= */
.hero-live__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ok);
  margin-right: 0.35rem;
  vertical-align: middle;
  animation: pulse-dot 1.6s ease-in-out infinite;
}
.hero-live__title {
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  margin-top: 0.35rem;
}
.hero-live__rows {
  display: grid;
  gap: 0.55rem;
  margin: 1.1rem 0 0.35rem;
}
.hero-live__row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 0.7rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.hero-live__row .avatar {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  font-size: 0.8rem;
}
.hero-live__id {
  min-width: 0;
  display: grid;
  gap: 1px;
}
.hero-live__id strong {
  font-size: 0.92rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero-live__id small {
  font-size: 0.76rem;
  color: var(--text-soft);
}
.hero-live__row .badge {
  margin-left: auto;
  flex-shrink: 0;
}
.hero-live__more {
  font-size: 0.8rem;
  color: var(--text-soft);
  margin: 0.35rem 0 1rem;
}
.hero-live .btn--block { margin-top: 0.35rem; }
.hero-live__foot {
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--text-soft);
  display: grid;
  gap: 0.2rem;
}

/* Jangkar harga di bawah CTA hero */
.hero-price {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.5;
}
.hero-price strong { color: var(--ink); font-weight: 600; }

/* HP: hero ringkas — badge disembunyikan; 2 trust chip tetap (max) */
@media (max-width: 767px) {
  .hero--v2 {
    padding-top: 1.5rem;
    padding-bottom: 2rem;
  }
  .hero--v2::before { filter: blur(4px) saturate(0.85); }
  .hero--v2::after {
    background: linear-gradient(180deg,
      rgba(250, 249, 245, 0.97) 0%,
      rgba(250, 249, 245, 0.94) 55%,
      rgba(250, 249, 245, 0.9) 100%);
  }
  .hero--v2 .hero__copy > .badge { display: none; }
  .hero--v2 .hero__title { margin: 0 0 0.75rem; }
  .hero--v2 .lead { font-size: 0.98rem; max-width: none; }
  .hero--v2 .hero__actions { margin: 1.15rem 0 0; }
  .hero--v2 .hero-price { font-size: 0.85rem; margin-top: 0.85rem; }
  .hero--v2 .hero-trust {
    margin-top: 1.15rem;
  }
  /* Hanya 2 chip pertama di HP — hindari tumpukan */
  .hero--v2 .hero-trust li:nth-child(n + 3) { display: none; }
  .hero-showcase { margin-top: 0.35rem; }
  .hero-showcase__card { padding: 1.25rem 1.15rem; }
}


