/* ============================================================
   Klinik Arda V2 — A/B Test Stylesheet
   Palette: White 50% · Green 30% · Orange 15% · Blue 5%
   Yellow (legacy v1) reduced to <2%, accent only.
   ============================================================ */

:root {
  /* core — healthcare-safe palette: NO red, NO black */
  --bg: #ffffff;
  --bg-soft: #f7faf8;
  --bg-tint: #fff6e6;
  --line: #dde7e3;
  --line-soft: #eef2f0;

  /* text — slate-teal, never near-black */
  --ink: #163b35;
  --ink-2: #355c54;
  --ink-3: #6b8a82;
  --muted: #9bb4ad;

  /* brand */
  --green: #0d7c66;
  --green-600: #0f8a72;
  --green-700: #0a6855;
  --green-800: #073a30;
  --green-50: #e6f4f0;

  /* primary CTA — amber hangat (per dr. Yanuar) */
  --amber: #f9a22e;
  --amber-600: #e8901a;
  --amber-700: #c97809;
  --amber-50: #fff1dc;

  /* secondary accent */
  --teal: #0a4f43;
  --blue: #0284c7;
  --blue-50: #e0f2fe;

  /* alias kept for backward selectors (no red anywhere) */
  --orange: var(--amber);
  --orange-600: var(--amber-600);

  /* urgency / alert — teal-deep, NEVER red */
  --urgent: #0a4f43;
  --urgent-700: #073a30;
  --urgent-accent: var(--amber);

  /* state */
  --warn: #f9a22e;
  --ok: #0d7c66;

  /* radii / shadow */
  --r-sm: 8px;
  --r: 14px;
  --r-lg: 22px;
  --r-xl: 28px;
  --shadow-sm: 0 1px 2px rgba(13, 60, 50, .08);
  --shadow: 0 8px 24px rgba(13, 124, 102, .10);
  --shadow-lg: 0 22px 50px rgba(13, 124, 102, .16);

  --container: 1180px;
  --container-narrow: 820px;

  /* type */
  --font-sans: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Plus Jakarta Sans', var(--font-sans);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-700); text-decoration: none; }
a:hover { color: var(--orange-600); }

h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); margin: 0 0 .4em; line-height: 1.18; letter-spacing: -0.015em; }
h1 { font-size: clamp(2rem, 4vw + 1rem, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 2vw + 1rem, 2.4rem); font-weight: 800; }
h3 { font-size: 1.18rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
p  { margin: 0 0 .8em; color: var(--ink-2); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.container--narrow { max-width: var(--container-narrow); }

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-700);
  background: var(--green-50);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.eyebrow--white { color: #fff; background: rgba(255,255,255,.18); }
.hl { color: var(--green); }
.hl-orange { color: var(--orange); }

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  min-height: 44px;
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn--sm { padding: 8px 14px; min-height: 36px; font-size: .85rem; }
.btn--lg { padding: 14px 24px; min-height: 52px; font-size: 1rem; }
.btn--xl { padding: 18px 28px; min-height: 60px; font-size: 1.05rem; }
.btn--block { width: 100%; }

.btn--primary { background: var(--amber); color: #fff; box-shadow: 0 6px 16px rgba(249, 162, 46, .35); }
.btn--primary:hover { background: var(--amber-600); color: #fff; }

.btn--secondary { background: var(--green); color: #fff; box-shadow: 0 6px 16px rgba(13, 124, 102, .25); }
.btn--secondary:hover { background: var(--green-700); color: #fff; }

/* "emergency" class kept for backward semantics; visual uses teal-deep + amber, never red */
.btn--emergency { background: var(--urgent); color: #fff; box-shadow: 0 8px 18px rgba(10, 79, 67, .35); border: 1.5px solid var(--amber); }
.btn--emergency:hover { background: var(--urgent-700); color: #fff; border-color: var(--amber-600); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { background: var(--bg-soft); color: var(--green-700); border-color: var(--green); }

.btn--ghost-light { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.5); }
.btn--ghost-light:hover { background: rgba(255,255,255,.2); color: #fff; }

.btn--white { background: #fff; color: var(--urgent-700); }
.btn--white:hover { background: #fff7ec; color: var(--urgent); }

/* ============== URGENT/24H STRIP (top) — teal-deep + amber, never red ============== */
.emergency-strip {
  background: linear-gradient(90deg, var(--urgent-700), var(--urgent));
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  border-bottom: 2px solid var(--amber);
}
.emergency-strip__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.emergency-strip__pulse {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 0 rgba(249, 162, 46, .8);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(249, 162, 46, .85); }
  70% { box-shadow: 0 0 0 12px rgba(249, 162, 46, 0); }
  100% { box-shadow: 0 0 0 0 rgba(249, 162, 46, 0); }
}
.emergency-strip__phone, .emergency-strip__wa {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,.5);
  padding: 4px 12px;
  border-radius: 999px;
}
.emergency-strip__phone:hover, .emergency-strip__wa:hover { background: rgba(255,255,255,.18); color: #fff; }

/* ============== HEADER ============== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header--scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 4px 16px rgba(13, 60, 50, .06);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.brand__logo {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}
.brand__logo--footer {
  height: 56px;
  margin-bottom: 6px;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__text strong { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; color: var(--ink); }
.brand__text small { font-size: .72rem; color: var(--ink-3); letter-spacing: .04em; }

/* Pada layar sempit, sembunyikan teks brand karena logo sudah memuat brand name */
@media (max-width: 460px) {
  .site-header .brand__text { display: none; }
  .brand__logo { height: 40px; }
}

.site-nav { display: none; gap: 22px; }
.site-nav a { color: var(--ink-2); font-weight: 600; font-size: .92rem; }
.site-nav a:hover { color: var(--green-700); }

.site-header__cta { display: flex; gap: 8px; align-items: center; }

@media (min-width: 920px) {
  .site-nav { display: flex; }
}

/* ============== HERO ============== */
.hero {
  background:
    radial-gradient(1200px 600px at 90% -10%, var(--green-50), transparent 60%),
    radial-gradient(800px 400px at -10% 110%, #fff7ed, transparent 60%),
    var(--bg);
  padding: 56px 0 48px;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 980px) {
  .hero__inner { grid-template-columns: 1.4fr 1fr; gap: 56px; }
  .hero { padding: 80px 0 72px; }
}
.hero__sub {
  font-size: 1.15rem;
  color: var(--ink-2);
  font-weight: 500;
  margin-bottom: 22px;
}
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin: 22px 0 18px; }
.hero__addr { color: var(--ink-3); font-size: .9rem; margin-top: 10px; }

.proof-grid {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 720px) { .proof-grid { grid-template-columns: repeat(4, 1fr); } }
.proof-grid li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 14px 14px;
  display: flex; flex-direction: column; gap: 2px;
  box-shadow: var(--shadow-sm);
}
.proof-grid strong { font-family: var(--font-display); font-size: 1.4rem; color: var(--green); font-weight: 800; }
.proof-grid span { font-size: .82rem; color: var(--ink-3); line-height: 1.3; }

/* status card right */
.hero__card {}
.status-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px;
  box-shadow: var(--shadow-lg);
}
.status-card__row { display: flex; align-items: center; gap: 8px; font-weight: 700; }
.status-card__row .muted { color: var(--ink-3); font-weight: 500; }
.dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.dot--ok { background: var(--ok); box-shadow: 0 0 0 4px rgba(22,163,74,.18); }
.status-card__list { list-style: none; padding: 0; margin: 14px 0; border-top: 1px dashed var(--line); }
.status-card__list li {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 0; border-bottom: 1px dashed var(--line);
  font-size: .92rem;
}
.status-card__list li:last-child { border-bottom: 0; }
.status-card__list b.ok { color: var(--ok); font-weight: 700; }
.status-card__rating {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-tint);
  border-radius: var(--r);
  padding: 10px 14px;
  margin-bottom: 12px;
}
.stars { color: #f59e0b; letter-spacing: 1px; font-size: .95rem; }

/* ============== SECTIONS ============== */
.section { padding: 72px 0; }
.section--soft { background: var(--bg-soft); }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.section__lede { color: var(--ink-2); font-size: 1.05rem; }

/* ============== PILLARS ============== */
.pillar-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) { .pillar-grid { grid-template-columns: repeat(3, 1fr); } }
.pillar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 8px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.pillar:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--green-50); }
.pillar--featured { background: linear-gradient(180deg, var(--green-50), #fff); border-color: var(--green-50); }
.pillar__icon { font-size: 2rem; line-height: 1; margin-bottom: 8px; }
.pillar__list { list-style: none; padding: 0; margin: 8px 0 16px; }
.pillar__list li { padding: 4px 0; color: var(--ink-2); font-size: .92rem; }
.link { color: var(--green-700); font-weight: 700; }
.link--urgent { color: var(--amber-700); }

/* ============== DOCTORS ============== */
.doctor-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  /* allow card scale-on-hover to overflow neighbors */
}
@media (min-width: 640px) { .doctor-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .doctor-grid { grid-template-columns: repeat(4, 1fr); } }

.doctor {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .25s cubic-bezier(.2, .85, .35, 1), box-shadow .25s ease, border-color .2s ease;
  z-index: 1;
}

@media (hover: hover) and (pointer: fine) {
  .doctor:hover {
    transform: scale(1.35);
    z-index: 60;
    border-color: var(--amber);
    box-shadow:
      0 30px 60px rgba(7, 58, 48, .35),
      0 0 0 3px rgba(249, 162, 46, .35);
  }
  /* edge-aware: 4-col grid */
  .doctor:nth-child(4n+1):hover { transform-origin: left center; }
  .doctor:nth-child(4n+2):hover { transform-origin: 30% center; }
  .doctor:nth-child(4n+3):hover { transform-origin: 70% center; }
  .doctor:nth-child(4n):hover   { transform-origin: right center; }

  .doctor-grid:hover .doctor:not(:hover) {
    filter: brightness(.95) saturate(.88);
    transition: filter .25s ease;
  }
}
.doctor:active { transform: scale(.98); }

.doctor__photo {
  position: relative;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(circle at 30% 30%, #fff, var(--green-50) 70%),
    var(--green-50);
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}
.doctor__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  display: block;
  transition: transform .35s ease;
}
.doctor:hover .doctor__photo img { transform: scale(1.04); }


/* Full-body photo (dr. Zacky, dr. Lulu) — zoom in ke head-and-shoulders */
.doctor__photo--full-body img {
  transform: scale(2.2);
  transform-origin: center top;
}
.doctor:hover .doctor__photo--full-body img {
  transform: scale(2.3);
  transform-origin: center top;
}

/* Group photo (multi-orang) — geser focus ke tengah supaya wajah utuh */
.doctor__photo--group img {
  object-position: center 35%;
}

.doctor__photo--placeholder {
  background:
    radial-gradient(circle at 30% 30%, #fff, var(--amber-50) 70%),
    var(--amber-50);
}
.doctor__initials {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -.02em;
}
.doctor__badge { position: absolute; top: 10px; left: 10px; z-index: 2; }
.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.badge--green { background: var(--green); color: #fff; }
.badge--blue { background: var(--blue); color: #fff; }
.badge--orange { background: var(--orange); color: #fff; }

.doctor__body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.doctor__bio { color: var(--ink-2); font-size: .88rem; line-height: 1.45; }
.doctor__meta { display: flex; align-items: center; gap: 8px; color: var(--ink-3); font-size: .82rem; }
.doctor__creds { list-style: none; padding: 0; margin: 4px 0 6px; font-size: .82rem; color: var(--ink-3); }
.doctor__creds li { padding: 1px 0; }
.doctor__schedule { font-size: .85rem; color: var(--ink-2); margin-top: auto; padding-top: 6px; }
.doctor__cta { margin-top: 10px; }

/* ============== SERVICES ============== */
.service-cats {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .service-cats { grid-template-columns: repeat(3, 1fr); } }

.service-cat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.service-cat header { margin-bottom: 12px; }
.service-cat__icon { font-size: 1.8rem; }
.service-cat--family { border-top: 4px solid var(--blue); }
.service-cat--specialty { border-top: 4px solid var(--green); }
.service-cat--emergency { border-top: 4px solid var(--amber); background: linear-gradient(180deg, var(--amber-50), #fff); }

.service-list { list-style: none; padding: 0; margin: 0 0 16px; flex: 1; }
.service-list li {
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  display: flex; flex-direction: column; gap: 2px;
}
.service-list li:last-child { border-bottom: 0; }
.service-list strong { color: var(--ink); font-weight: 700; font-size: .95rem; }
.service-list span { color: var(--ink-2); font-size: .85rem; }
.service-list small { color: var(--green-700); font-size: .78rem; font-weight: 600; }

/* ============== PRICING ============== */
.pricing-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .pricing-grid { grid-template-columns: repeat(4, 1fr); } }

.price-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.price-card__title { font-weight: 700; color: var(--ink-2); font-size: .92rem; }
.price-card__price {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--green);
  margin: 6px 0 12px;
}
.price-card ul { list-style: none; padding: 0; margin: 0; }
.price-card ul li { padding: 4px 0; font-size: .88rem; color: var(--ink-2); border-bottom: 1px dashed var(--line); }
.price-card ul li:last-child { border-bottom: 0; }
.price-card--featured { border: 2px solid var(--amber); box-shadow: 0 18px 40px rgba(249, 162, 46, .18); }
.price-card--featured .badge { position: absolute; top: -10px; right: 12px; }

.payment-strip {
  margin-top: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.payment-strip h3 { margin-bottom: 8px; }
.payment-strip p { color: var(--ink-2); margin: 4px 0; font-size: .92rem; }
.payment-strip .btn { margin-top: 12px; }

/* ============== FASILITAS GRID ============== */
.fasilitas-cat {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin: 28px 0 12px;
  padding-bottom: 6px;
  border-bottom: 1px dashed var(--line);
}
.fasilitas-cat:first-of-type { margin-top: 8px; }

.fasilitas-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) { .fasilitas-grid { grid-template-columns: repeat(4, 1fr); } }

.fasilitas-photo {
  position: relative;
  display: block;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--green-800);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  aspect-ratio: 4 / 3;
  z-index: 1;
  transition: transform .22s cubic-bezier(.2, .85, .35, 1), box-shadow .2s ease, border-color .2s ease;
}
.fasilitas-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fasilitas-photo__cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, transparent, rgba(7, 58, 48, .9));
  color: #fff;
  padding: 24px 12px 10px;
  font-size: .82rem;
  font-weight: 700;
  text-align: left;
}

@media (hover: hover) and (pointer: fine) {
  .fasilitas-photo:hover {
    transform: scale(1.45);
    z-index: 50;
    border-color: var(--amber);
    box-shadow:
      0 24px 48px rgba(7, 58, 48, .35),
      0 0 0 3px rgba(249, 162, 46, .35);
  }
  .fasilitas-photo:nth-child(4n+1):hover { transform-origin: left center; }
  .fasilitas-photo:nth-child(4n+2):hover { transform-origin: 30% center; }
  .fasilitas-photo:nth-child(4n+3):hover { transform-origin: 70% center; }
  .fasilitas-photo:nth-child(4n):hover   { transform-origin: right center; }

  .fasilitas-grid:hover .fasilitas-photo:not(:hover) {
    filter: brightness(.94) saturate(.85);
    transition: filter .25s ease;
  }
}
.fasilitas-photo:active { transform: scale(.98); }

.fasilitas-hint {
  text-align: center;
  color: var(--ink-3);
  font-size: .85rem;
  margin: 18px 0 0;
}

/* ============== INSURANCE GALLERY ============== */
.insurance-block {
  margin-top: 24px;
  background: linear-gradient(180deg, var(--amber-50), #fff);
  border: 1px solid var(--amber);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.insurance-block__head { max-width: 720px; margin: 0 auto 18px; }
.insurance-block__head h3 { margin-bottom: 6px; }
.insurance-block__head p { color: var(--ink-2); }
.insurance-block__hint {
  margin: 14px 0 12px;
  color: var(--ink-3);
  font-size: .85rem;
}

.insurance-gallery {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  margin: 8px 0;
  position: relative;
  /* Allow hover-zoom popouts to escape grid bounds */
}
@media (min-width: 540px) { .insurance-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 860px) { .insurance-gallery { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .insurance-gallery { grid-template-columns: repeat(5, 1fr); } }

.insurance-photo {
  position: relative;
  display: block;
  border-radius: var(--r);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform .35s cubic-bezier(.2, .85, .35, 1), box-shadow .35s ease, border-color .25s ease, z-index 0s linear .35s;
  z-index: 1;
  transform-origin: center center;
}
.insurance-photo img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .35s ease;
}
.insurance-photo__cap {
  display: block;
  padding: 8px 10px;
  background: #fff;
  color: var(--ink-2);
  font-size: .78rem;
  font-weight: 700;
  text-align: center;
  border-top: 1px solid var(--line-soft);
}

/* HOVER ZOOM (in-place scale — no fixed-position to avoid hover-blink loop)
   For full-screen view, user clicks → image lightbox modal. */
@media (hover: hover) and (pointer: fine) {
  .insurance-photo:hover {
    transform: scale(1.5);
    z-index: 50;
    border-color: var(--amber);
    box-shadow:
      0 18px 38px rgba(7, 58, 48, .25),
      0 0 0 3px rgba(249, 162, 46, .35);
    transition: transform .22s cubic-bezier(.2, .85, .35, 1), box-shadow .22s ease, border-color .2s ease;
  }
  /* Edge-aware origin for 5-col grid → keeps zoom inside viewport */
  .insurance-photo:nth-child(5n+1):hover { transform-origin: left center; }
  .insurance-photo:nth-child(5n+2):hover { transform-origin: 25% center; }
  .insurance-photo:nth-child(5n+3):hover { transform-origin: center; }
  .insurance-photo:nth-child(5n+4):hover { transform-origin: 75% center; }
  .insurance-photo:nth-child(5n):hover   { transform-origin: right center; }

  .insurance-gallery:hover .insurance-photo:not(:hover) {
    filter: brightness(.94) saturate(.85);
    transition: filter .25s ease;
  }
}

@media (hover: none), (max-width: 539px) {
  .insurance-photo:active { transform: scale(.98); }
}

/* ============== TRUST ============== */
.trust-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .trust-grid { grid-template-columns: repeat(3, 1fr); } }
.trust {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 20px;
  display: flex; flex-direction: column; gap: 6px;
  box-shadow: var(--shadow-sm);
}
.trust__icon { font-size: 1.6rem; }
.trust h4 { margin: 0; }

/* ============== TESTIMONIALS ============== */
.testimonial-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .testimonial-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 10px;
}
.testimonial__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.testimonial__src {
  font-size: .72rem;
  font-weight: 700;
  color: var(--ink-3);
  background: var(--bg-tint);
  border: 1px solid var(--green-50);
  padding: 3px 9px;
  border-radius: 999px;
  letter-spacing: .04em;
}
.testimonial p { font-style: italic; color: var(--ink-2); }
.testimonial footer { color: var(--ink-3); font-size: .85rem; border-top: 1px dashed var(--line); padding-top: 8px; }
.testimonial footer strong { color: var(--ink); }

.reviews-aggregate {
  margin-top: 28px;
  text-align: center;
  color: var(--ink-2);
  font-size: .92rem;
}

/* ============== ARTICLE CARDS ============== */
.article-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .article-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 920px) { .article-grid { grid-template-columns: repeat(3, 1fr); } }

.article {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.article:hover {
  transform: translateY(-4px);
  border-color: var(--green);
  box-shadow: 0 22px 44px rgba(13, 124, 102, .18);
}
.article__photo {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--green-50);
}
.article__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.article:hover .article__photo img { transform: scale(1.06); }

.article__body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.article__cat {
  display: inline-block;
  width: max-content;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-700);
  background: var(--green-50);
  padding: 4px 10px;
  border-radius: 999px;
}
.article__body h3 {
  font-size: 1.05rem;
  line-height: 1.3;
  margin: 4px 0;
}
.article__body p {
  color: var(--ink-2);
  font-size: .9rem;
  flex: 1;
}
.article__more {
  color: var(--green-700);
  font-weight: 700;
  font-size: .9rem;
  margin-top: 6px;
}
.article-cta {
  text-align: center;
  margin: 28px 0 0;
}

/* ============== VIDEO GRID ============== */
.video-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .video-grid { grid-template-columns: repeat(3, 1fr); } }

.video {
  position: relative;
  display: block;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--green-800);
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
  /* button reset */
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-align: left;
  width: 100%;
}
.video:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}
.video:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.video img { width: 100%; height: 100%; object-fit: cover; opacity: .92; transition: opacity .2s; }
.video:hover img { opacity: 1; }
.video__play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,.94); color: var(--amber-700);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 12px 32px rgba(7, 58, 48, .35);
}
.video__label {
  position: absolute; left: 12px; bottom: 12px; right: 12px;
  background: linear-gradient(180deg, transparent, rgba(7, 58, 48, .85));
  color: #fff; font-weight: 700; font-size: .9rem;
  padding: 12px 14px 6px;
  border-radius: 0 0 var(--r-lg) var(--r-lg);
}
.video-cta { text-align: center; margin-top: 28px; }

/* ============== 24-HOUR CALLOUT — teal-deep + amber border, never red ============== */
.emergency {
  background:
    radial-gradient(800px 400px at 90% 0%, rgba(249,162,46,.18), transparent 60%),
    linear-gradient(135deg, var(--urgent) 0%, var(--urgent-700) 100%);
  color: #fff;
  padding: 60px 0;
  border-top: 3px solid var(--amber);
  border-bottom: 3px solid var(--amber);
}
.emergency h2 { color: #fff; }
.emergency p { color: rgba(255,255,255,.92); }
.emergency__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 900px) {
  .emergency__inner { grid-template-columns: 1.3fr 1fr; }
}
.emergency__list { list-style: none; padding: 0; margin: 8px 0 0; }
.emergency__list li { padding: 4px 0; color: rgba(255,255,255,.95); font-size: .95rem; }
.emergency__cta { display: flex; flex-direction: column; gap: 10px; }
.emergency__cta .btn { width: 100%; }

/* ============== FAQ ============== */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 14px 18px;
  box-shadow: var(--shadow-sm);
}
.faq-list details[open] { border-color: var(--green); }
.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
  list-style: none;
  position: relative;
  padding-right: 24px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  color: var(--green); font-weight: 800; font-size: 1.4rem; line-height: 1;
}
.faq-list details[open] summary::after { content: '−'; }
.faq-list details > p { margin: 10px 0 0; color: var(--ink-2); }

/* ============== LOCATION ============== */
.location {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 880px) { .location { grid-template-columns: 1.4fr 1fr; } }
.location__map iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}
.location__info { padding: 24px; }
.location__info p { margin: 6px 0; color: var(--ink-2); }
.location__info .btn { margin-top: 14px; }

/* ============== FOOTER ============== */
.site-footer {
  background: linear-gradient(180deg, #0a4f43 0%, #073a30 100%);
  color: #cfeae2;
  padding: 56px 0 24px;
}
.site-footer h4 { color: #fff; margin-bottom: 12px; font-size: 1rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { padding: 4px 0; font-size: .9rem; }
.site-footer a { color: #cfeae2; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.brand--footer .brand__text strong { color: #fff; font-size: 1.15rem; }
.brand--footer .brand__text small { color: #9ad1c4; }
.footer-tag { color: #9ad1c4; font-size: .9rem; margin: 14px 0; }
.social { display: flex; gap: 10px; flex-wrap: wrap; }
.social a {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid rgba(255,255,255,.2);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: .82rem;
}
.social a:hover { background: rgba(255,255,255,.1); text-decoration: none; }

/* ============== SOCIAL BRAND BUTTONS ============== */
/* Big version — Ikuti Kami section */
.soc-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 540px) { .soc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 880px) { .soc-grid { grid-template-columns: repeat(4, 1fr); } }

.soc {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: var(--r);
  text-decoration: none;
  color: #fff !important;
  font-weight: 700;
  transition: transform .18s ease, box-shadow .2s ease, filter .2s ease;
  box-shadow: var(--shadow-sm);
}
.soc:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(13, 60, 50, .25);
  filter: brightness(1.08) saturate(1.1);
}
.soc__icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.soc__label { display: flex; flex-direction: column; line-height: 1.15; }
.soc__label b { font-size: 1rem; font-weight: 700; }
.soc__label small { font-size: .76rem; opacity: .85; font-weight: 500; }

/* Small version — footer pills */
.social--brand { gap: 8px; }
.soc--sm {
  padding: 8px 14px;
  font-size: .82rem;
  font-weight: 700;
  border-radius: 999px;
  gap: 6px;
  box-shadow: none;
  border: 0 !important;
}
.soc--sm:hover { transform: translateY(-1px); }

/* Brand colors */
.soc--ig { background: linear-gradient(135deg, #f9ce34 0%, #ee2a7b 50%, #6228d7 100%); }
.soc--yt { background: #ff0000; }
.soc--tt {
  background: #161616;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(37, 244, 238, .35), transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(254, 44, 85, .35), transparent 40%),
    linear-gradient(135deg, #161616, #1f1f1f);
  border-left: 3px solid #25F4EE;
  border-right: 3px solid #FE2C55;
}
.soc--th {
  background: linear-gradient(135deg, #1c1c1c 0%, #0d0d0d 100%);
  border: 1px solid rgba(255,255,255,.12) !important;
}

.site-footer .soc--sm,
.site-footer .soc--sm:hover { color: #fff !important; }
.site-footer .social--brand { border-top: 0; }

.footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.4fr; } }

.footer-bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: #9ad1c4;
  font-size: .82rem;
}
.footer-bottom a { color: #cfeae2; }

/* ============== STICKY MOBILE CTA ============== */
.sticky-cta {
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  gap: 8px;
  z-index: 60;
  pointer-events: none;
}
.sticky-cta__btn {
  flex: 1;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  padding: 12px 8px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .9rem;
  color: #fff;
  box-shadow: 0 10px 24px rgba(13, 60, 50, .25);
  min-height: 50px;
}
.sticky-cta__btn span { font-size: .82rem; }
.sticky-cta__btn--call { background: var(--urgent); border: 1.5px solid var(--amber); }
.sticky-cta__btn--wa { background: #128c5e; }
.sticky-cta__btn--book { background: var(--amber); }

@media (min-width: 920px) {
  .sticky-cta { display: none; }
}

/* keep last so mobile sticky doesn't cover footer */
@media (max-width: 919px) {
  body { padding-bottom: 80px; }
}

/* ============== AUDIO TOGGLE (floating) ============== */
.audio-toggle {
  position: fixed;
  bottom: 80px;          /* mobile: above sticky-cta bar */
  right: 12px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px 10px 12px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  border: 2px solid var(--amber);
  font: 700 .82rem/1 var(--font-sans);
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(13, 60, 50, .35);
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
}
.audio-toggle:hover {
  background: var(--green-700);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(13, 60, 50, .42);
}
.audio-toggle__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--amber);
  color: #fff;
  font-size: .9rem;
  flex-shrink: 0;
}
.audio-toggle[data-state="on"] {
  background: var(--amber);
  border-color: var(--green);
  color: var(--ink);
}
.audio-toggle[data-state="on"] .audio-toggle__icon {
  background: var(--green);
  color: #fff;
}
.audio-toggle__label { white-space: nowrap; }

@media (min-width: 920px) {
  .audio-toggle { bottom: 20px; right: 20px; }
}
@media (max-width: 460px) {
  /* compact on tiny screens — icon-only */
  .audio-toggle__label { display: none; }
  .audio-toggle { padding: 10px; }
}

/* ============== VIDEO MODAL (inline YouTube embed) ============== */
.vmodal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.vmodal--open { opacity: 1; pointer-events: auto; }
.vmodal[hidden] { display: none; }

.vmodal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 58, 48, .82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.vmodal__panel {
  position: relative;
  width: min(96vw, 1200px);
  max-height: 92vh;
  background: var(--green-800);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 60px 120px rgba(7, 58, 48, .55), 0 0 0 4px rgba(249, 162, 46, .35);
  display: flex;
  flex-direction: column;
  transform: scale(.92);
  transition: transform .2s cubic-bezier(.2, .85, .35, 1);
}
.vmodal--open .vmodal__panel { transform: scale(1); }

.vmodal__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 14px;
  background: var(--urgent-700);
  color: #fff;
  flex-wrap: wrap;
}
.vmodal__title {
  font-weight: 700;
  font-size: .92rem;
  color: #fff;
  flex: 1 1 200px;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.vmodal__actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.vmodal__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s ease, border-color .15s ease;
}
.vmodal__btn:hover {
  background: rgba(255,255,255,.18);
  border-color: var(--amber);
  color: #fff;
}
.vmodal__btn--close {
  background: var(--amber);
  border-color: var(--amber);
  color: #fff;
}
.vmodal__btn--close:hover { background: var(--amber-600); border-color: var(--amber-600); }

.vmodal__player {
  flex: 1 1 auto;
  background: var(--green-800);
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vmodal__player iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 600px) {
  .vmodal__title { flex-basis: 100%; order: -1; }
  .vmodal__btn { font-size: .76rem; padding: 6px 10px; }
}
