/* ============================================================
   SolusiMedsos Info — style.css
   Palette: navy · gold · white/dark only.
   ============================================================ */

/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  --gold:      #FCB11F;
  --gold-dim:  #c48700;
  --gold-glow: rgba(252,177,31,.13);
  --navy:      #0C2738;

  --font:      'Play', system-ui, sans-serif;
  --radius:    18px;
  --radius-sm: 10px;
  --ease:      cubic-bezier(.4,0,.2,1);
  --dur:       0.20s;
}

/* ── Dark (default) ──────────────────────────────────────────── */
:root, [data-theme="dark"] {
  --bg-base:  #07111c;
  --bg-mesh:
    radial-gradient(ellipse 900px 600px at 10% 8%,  #0d2235 0%, transparent 60%),
    radial-gradient(ellipse 700px 500px at 88% 22%, #0a1a2e 0%, transparent 55%),
    radial-gradient(ellipse 600px 500px at 55% 92%, #091c30 0%, transparent 60%),
    linear-gradient(160deg, #060d18 0%, #0a1624 100%);
  --grid-line: rgba(255,255,255,.025);

  --glass:     rgba(255,255,255,.04);
  --glass-2:   rgba(255,255,255,.07);
  --border:    rgba(255,255,255,.08);
  --border-hi: rgba(255,255,255,.14);

  --text:      #e8f0f8;
  --text-2:    #8fa4ba;
  --text-3:    #4d6275;

  --header-bg: #0C2738;
  --faq-bg:    rgba(6,13,24,.65);
  --modal-bg:  #0d1e2e;
  --modal-ovl: rgba(0,0,0,.70);

  --shadow:    0 6px 28px rgba(0,0,0,.55);
  --shadow-sm: 0 2px 10px rgba(0,0,0,.35);
  --inset:     inset 0 1px 0 rgba(255,255,255,.06);

  --skel-a:    rgba(255,255,255,.04);
  --skel-b:    rgba(255,255,255,.08);
}

/* ── Light ───────────────────────────────────────────────────── */
[data-theme="light"] {
  --bg-base:  #e8f2fc;
  --bg-mesh:
    radial-gradient(ellipse 1000px 700px at 10% 5%,  #c5ddf7 0%, transparent 55%),
    radial-gradient(ellipse 800px 600px at 90% 20%,  #b8d6f5 0%, transparent 50%),
    radial-gradient(ellipse 700px 700px at 60% 90%,  #cae2f8 0%, transparent 55%),
    linear-gradient(160deg, #eaf4ff 0%, #dceefa 100%);
  --grid-line: rgba(10,30,55,.025);

  --glass:     rgba(255,255,255,.65);
  --glass-2:   rgba(255,255,255,.85);
  --border:    rgba(255,255,255,.75);
  --border-hi: rgba(0,0,0,.09);

  --text:      #0d1e2e;
  --text-2:    #3d5a73;
  --text-3:    #7a98b0;

  --header-bg: #0C2738;
  --faq-bg:    rgba(210,232,250,.55);
  --modal-bg:  #ffffff;
  --modal-ovl: rgba(10,30,55,.55);

  --shadow:    0 4px 20px rgba(10,30,55,.12);
  --shadow-sm: 0 1px 8px  rgba(10,30,55,.07);
  --inset:     inset 0 1px 0 rgba(255,255,255,.65);

  --skel-a:    rgba(10,30,55,.05);
  --skel-b:    rgba(10,30,55,.10);
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
a     { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
.hidden { display: none !important; }

/* ── Base ────────────────────────────────────────────────────── */
body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  background-color: var(--bg-base);
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px),
    var(--bg-mesh);
  background-size: 72px 72px, 72px 72px, 100% 100%;
}

.gold-text {
  background: linear-gradient(90deg, var(--gold), var(--gold-dim));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Header ─────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0; z-index: 100;
  display: flex; align-items: center; gap: 14px;
  padding: 0 clamp(14px, 3.5vw, 48px);
  height: 56px;
  background: var(--header-bg);
  box-shadow: 0 2px 20px rgba(0,0,0,.40);
}

.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand__logo { width: 32px; height: 32px; border-radius: 8px; display: block; }
.brand__name { font-size: 15px; font-weight: 700; letter-spacing: .02em; color: #fff; }
.brand__tld  { color: var(--gold); }

.header-nav { display: flex; gap: 24px; margin-left: auto; }
.header-nav a {
  font-size: 12px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: rgba(255,255,255,.55);
  transition: color var(--dur);
}
.header-nav a:hover { color: #fff; }

.header-actions { display: flex; align-items: center; gap: 8px; }

/* Theme toggle */
.theme-toggle {
  --h: 28px;
  position: relative;
  width: calc(var(--h) * 1.9); height: var(--h);
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  padding: 0; outline: none;
  transition: background var(--dur);
}
.theme-toggle:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.theme-toggle__thumb {
  position: absolute; top: 3px; left: 3px;
  width: calc(var(--h) - 6px); height: calc(var(--h) - 6px);
  border-radius: 50%;
  background: var(--gold);
  display: grid; place-items: center;
  font-size: 13px; color: #fff;
  transition: transform .30s var(--ease), background .30s;
}
[data-theme="dark"] .theme-toggle__thumb {
  transform: translateX(calc(var(--h) * .9));
  background: #162d42;
}

/* Buttons */
.btn-order {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font); font-weight: 700;
  border-radius: 999px; white-space: nowrap; border: none;
  transition: opacity var(--dur), transform var(--dur);
}
.btn-order:hover  { opacity: .88; transform: translateY(-1px); }
.btn-order:active { transform: translateY(0); }
.btn-order--sm  { padding: 7px 14px; font-size: 13px; background: #25D366; color: #fff; }
.btn-order--lg  { padding: 13px 28px; font-size: 15px; background: #25D366; color: #fff;
                  box-shadow: 0 4px 18px rgba(37,211,102,.30); }
.btn-order--bar { width: 100%; justify-content: center;
                  padding: 14px; font-size: 15px; background: #25D366; color: #fff; border-radius: 14px; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  padding: clamp(40px, 7vw, 80px) clamp(16px, 4vw, 56px) clamp(16px, 3vw, 32px);
  max-width: 660px;
}
.hero__pill {
  display: inline-block; padding: 4px 12px; border-radius: 999px;
  border: 1px solid rgba(252,177,31,.45); background: var(--gold-glow);
  font-size: 11px; font-weight: 700; letter-spacing: .10em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.hero__title {
  font-size: clamp(32px, 5.5vw, 56px); font-weight: 700;
  letter-spacing: -1px; line-height: 1.08; margin-bottom: 14px;
}
.hero__sub { font-size: clamp(13px, 1.3vw, 15px); color: var(--text-2); line-height: 1.75; margin-bottom: 24px; }
.hero__sub strong { color: var(--gold); font-weight: 700; }
.hero__stats { display: flex; gap: 24px; flex-wrap: wrap; padding-bottom: 32px; border-bottom: 1px solid var(--border-hi); }
.hero__stat  { display: flex; flex-direction: column; gap: 1px; }
.hero__stat span  { font-size: 19px; font-weight: 700; color: var(--gold); }
.hero__stat small { font-size: 11px; color: var(--text-3); }

/* ── Filter ──────────────────────────────────────────────────── */
.filter-wrap { padding: 20px clamp(16px, 4vw, 56px) 0; }
.filter-scroll {
  display: flex; gap: 7px; overflow-x: auto; padding-bottom: 2px;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.filter-scroll::-webkit-scrollbar { display: none; }
.filter-pill {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 7px 14px; border-radius: 999px;
  background: var(--glass); border: 1px solid var(--border);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  color: var(--text-2); font-family: var(--font);
  font-size: 13px; font-weight: 700; white-space: nowrap;
  box-shadow: var(--shadow-sm);
  transition: all var(--dur) var(--ease);
}
.filter-pill:hover  { color: var(--text); border-color: rgba(252,177,31,.35); }
.filter-pill.active { background: var(--gold); border-color: var(--gold); color: var(--navy);
                      box-shadow: 0 3px 14px rgba(252,177,31,.28); }

/* ── Services Grid ───────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 14px;
  padding: 18px clamp(16px, 4vw, 56px) clamp(48px, 8vw, 80px);
}

/* ── Card ────────────────────────────────────────────────────── */
.service-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow), var(--inset);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}
.service-card:hover {
  transform: translateY(-3px) scale(1.006);
  box-shadow: 0 16px 44px rgba(0,0,0,.40), var(--inset);
  border-color: rgba(252,177,31,.30);
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dim));
  opacity: .55; transition: opacity var(--dur), height var(--dur);
}
.service-card:hover::before { opacity: .9; height: 3px; }
.service-card.is-inactive { opacity: .45; }

/* Card header */
.card-header { padding: 16px 16px 0; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }

.cat-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 9px; border-radius: 999px;
  font-size: 10px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  background: var(--gold-glow); color: var(--gold);
  border: 1px solid rgba(252,177,31,.20);
}
.promo-badge {
  display: inline-flex; align-items: center;
  padding: 3px 8px; border-radius: 999px;
  font-size: 10px; font-weight: 700;
  background: var(--gold); color: var(--navy);
}
.inactive-badge {
  display: inline-flex; align-items: center;
  padding: 3px 8px; border-radius: 999px;
  font-size: 10px; font-weight: 700;
  background: var(--glass-2); color: var(--text-3);
  border: 1px solid var(--border);
}

/* Card body */
.card-body { padding: 10px 16px 0; flex: 1; }
.card-title {
  font-size: clamp(14px, 1.4vw, 16px); font-weight: 700;
  letter-spacing: -.1px; line-height: 1.3; margin-bottom: 6px;
}
.card-desc {
  font-size: 13px; color: var(--text-2); line-height: 1.65; margin-bottom: 0;
}

/* Card footer — two buttons */
.card-footer {
  padding: 12px 14px 14px; margin-top: auto;
  display: flex; gap: 8px;
}

.btn-lihat-harga {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 9px 10px; border-radius: 10px;
  border: 1.5px solid rgba(252,177,31,.30);
  background: var(--gold-glow);
  color: var(--gold);
  font-family: var(--font); font-size: 13px; font-weight: 700;
  transition: all var(--dur) var(--ease);
}
.btn-lihat-harga:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

.btn-card-order {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 5px;
  padding: 9px 10px; border-radius: 10px;
  border: 1.5px solid rgba(37,211,102,.28);
  background: rgba(37,211,102,.06);
  color: #25D366;
  font-family: var(--font); font-size: 13px; font-weight: 700;
  transition: all var(--dur) var(--ease);
}
.btn-card-order:hover { background: #25D366; border-color: #25D366; color: #fff; }
.is-inactive .btn-card-order { border-color: var(--border); background: transparent; color: var(--text-3); pointer-events: none; }
.is-inactive .btn-lihat-harga { opacity: .5; }

/* ── Price table (shared: modal) ─────────────────────────────── */
.price-table-wrap {
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--glass-2);
}
.price-head {
  display: flex; justify-content: space-between;
  padding: 6px 12px;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--text-3);
  border-bottom: 1px solid var(--border-hi);
}
.price-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 12px; border-bottom: 1px solid var(--border);
  font-size: 14px; transition: background var(--dur);
}
.price-row:last-child { border-bottom: none; }
.price-row:hover { background: var(--gold-glow); }
.price-qty { color: var(--text-2); font-size: 13px; }
.price-val { font-weight: 700; color: var(--gold); letter-spacing: -.2px; }
.price-val.is-call {
  color: var(--text-2); font-size: 12px; font-weight: 400;
  padding: 2px 8px; border-radius: 999px;
  background: var(--glass-2); border: 1px solid var(--border);
}
.price-val.is-empty { color: var(--text-3); font-weight: 400; }

.note-item {
  display: flex; align-items: flex-start; gap: 6px;
  font-size: 13px; color: var(--text-3); line-height: 1.5;
}
.note-item i { flex-shrink: 0; margin-top: 2px; color: var(--gold); opacity: .7; }

/* ── Modal (native <dialog>) ─────────────────────────────────── */
.price-dialog {
  display: none; /* hidden by default — override UA safely */
  position: fixed;
  inset: 0; margin: auto;
  width: min(520px, 94vw);
  max-height: 88dvh;
  background: var(--modal-bg);
  border: 1px solid var(--border-hi);
  border-radius: 22px;
  padding: 0;
  box-shadow: 0 24px 64px rgba(0,0,0,.60);
  overflow: hidden;
}
.price-dialog[open] {
  display: flex; flex-direction: column;
}
.price-dialog::backdrop {
  background: var(--modal-ovl);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Animate in */
@keyframes modal-in {
  from { opacity: 0; transform: translateY(16px) scale(.97); }
  to   { opacity: 1; transform: translateY(0)    scale(1);   }
}
.price-dialog[open] { animation: modal-in .22s var(--ease) both; }

.dialog-inner {
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--border-hi) transparent;
  flex: 1;
  padding: 0 0 8px;
}

/* Close button */
.dialog-close {
  position: sticky; top: 0; right: 0;
  float: right;
  margin: 14px 14px 0 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-hi);
  background: var(--glass-2);
  color: var(--text-3);
  font-size: 14px;
  display: grid; place-items: center;
  z-index: 2;
  transition: all var(--dur);
}
.dialog-close:hover { background: var(--border-hi); color: var(--text); }

/* Modal content sections */
.modal-header {
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--border);
}
.modal-meta { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.modal-title {
  font-size: clamp(18px, 4vw, 22px); font-weight: 700;
  letter-spacing: -.2px; line-height: 1.25;
  margin-bottom: 8px; color: var(--text);
}
.modal-desc { font-size: 13px; color: var(--text-2); line-height: 1.65; }

.modal-section { padding: 16px 20px 0; }
.modal-section + .modal-section { padding-top: 12px; }
.modal-section-label {
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  color: var(--text-3); margin-bottom: 8px;
  display: flex; align-items: center; gap: 8px;
}
.modal-section-label::after {
  content: ''; flex: 1; height: 1px; background: var(--border-hi);
}

.modal-info {
  margin: 12px 20px 0;
  font-size: 13px; color: var(--text-2); line-height: 1.65; white-space: pre-line;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}
.modal-notes { padding: 10px 20px 0; display: flex; flex-direction: column; gap: 5px; }

.btn-modal-order {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin: 16px 20px 8px;
  padding: 13px 20px; border-radius: 12px;
  background: #25D366; color: #fff;
  font-family: var(--font); font-size: 15px; font-weight: 700;
  box-shadow: 0 4px 18px rgba(37,211,102,.30);
  transition: opacity var(--dur), transform var(--dur);
}
.btn-modal-order:hover  { opacity: .88; transform: translateY(-1px); }
.btn-modal-order:active { transform: translateY(0); }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-section {
  padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 56px);
  background: var(--faq-bg);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-hi);
  border-bottom: 1px solid var(--border-hi);
}
.faq-inner {
  max-width: 780px;
  margin: 0 auto;
}
.faq-header {
  margin-bottom: 36px;
}
.faq-eyebrow {
  display: inline-block; padding: 4px 12px; border-radius: 999px;
  border: 1px solid rgba(252,177,31,.35); background: var(--gold-glow);
  font-size: 10px; font-weight: 700; letter-spacing: .10em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.section-title {
  font-size: clamp(24px, 3vw, 36px); font-weight: 700;
  letter-spacing: -.5px; line-height: 1.15;
  margin-bottom: 8px;
}
.faq-sub {
  font-size: 14px; color: var(--text-2);
}

.faq-list { display: flex; flex-direction: column; gap: 6px; }

.faq-item {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.faq-item:hover { border-color: rgba(252,177,31,.20); }
.faq-item.is-open {
  border-color: rgba(252,177,31,.30);
  box-shadow: 0 4px 24px rgba(0,0,0,.18);
}

.faq-trigger {
  width: 100%; display: flex; align-items: center; gap: 14px;
  padding: 18px 18px;
  background: none; border: none; text-align: left;
  font-family: var(--font); font-size: 15px; font-weight: 700;
  color: var(--text); cursor: pointer;
  user-select: none;
}
.faq-trigger:focus-visible { outline: 2px solid var(--gold); outline-offset: -2px; border-radius: calc(var(--radius) - 1px); }

.faq-num {
  flex-shrink: 0;
  width: 26px; height: 26px; border-radius: 8px;
  background: var(--glass-2); border: 1px solid var(--border-hi);
  display: grid; place-items: center;
  font-size: 11px; font-weight: 700; color: var(--text-3);
  transition: background var(--dur), color var(--dur), border-color var(--dur);
}
.faq-item.is-open .faq-num {
  background: var(--gold-glow);
  border-color: rgba(252,177,31,.35);
  color: var(--gold);
}

.faq-q { flex: 1; line-height: 1.4; }

.faq-chevron {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--glass-2);
  display: grid; place-items: center;
  font-size: 12px; color: var(--text-3);
  transition: transform .28s var(--ease), background var(--dur), border-color var(--dur), color var(--dur);
}
.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
  background: var(--gold-glow);
  border-color: rgba(252,177,31,.40);
  color: var(--gold);
}

/* Animated body */
.faq-body {
  height: 0; overflow: hidden;
  transition: height .30s var(--ease);
}
.faq-answer {
  padding: 0 18px 18px 58px; /* left-align with text past the number */
  font-size: 14px; color: var(--text-2); line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
  padding: clamp(40px, 6vw, 72px) clamp(16px, 4vw, 56px) clamp(60px, 10vw, 80px);
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 20px;
}
.footer-cta { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.footer-cta p { font-size: 14px; color: var(--text-2); }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; }
.footer-links a { font-size: 13px; color: var(--text-3); transition: color var(--dur); }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 12px; color: var(--text-3); }

/* ── Mobile bar ──────────────────────────────────────────────── */
.mobile-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
  background: var(--header-bg); border-top: 1px solid rgba(255,255,255,.09);
}

/* ── Skeleton ────────────────────────────────────────────────── */
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position:  400px 0; }
}
.skeleton-card {
  border-radius: var(--radius); height: 200px;
  background: linear-gradient(90deg, var(--skel-a) 25%, var(--skel-b) 50%, var(--skel-a) 75%);
  background-size: 800px 100%; animation: shimmer 1.4s ease-in-out infinite;
  border: 1px solid var(--border);
}

/* ── Error ───────────────────────────────────────────────────── */
.error-state {
  grid-column: 1/-1; text-align: center; padding: 48px 24px;
  display: flex; flex-direction: column; align-items: center; gap: 10px; color: var(--text-2);
}
.error-state i { font-size: 36px; color: var(--text-3); }
.error-state button {
  padding: 8px 20px; border-radius: 999px; border: 1px solid var(--border);
  background: var(--glass); color: var(--text);
  font-family: var(--font); font-size: 13px; font-weight: 700; transition: all var(--dur);
}
.error-state button:hover { border-color: var(--gold); color: var(--gold); }

/* ================================================================
   MOBILE
   ================================================================ */
@media (max-width: 640px) {
  .header-nav { display: none; }
  .site-header { height: 52px; padding: 0 12px; gap: 10px; }
  .btn-order--sm span { display: none; }
  .btn-order--sm { padding: 7px 10px; }

  .hero { padding: 24px 14px 0; max-width: 100%; }
  .hero__pill  { font-size: 10px; padding: 3px 10px; margin-bottom: 10px; }
  .hero__title { font-size: 26px; letter-spacing: -.5px; margin-bottom: 10px; }
  .hero__sub   { font-size: 13px; margin-bottom: 16px; }
  .hero__stats { gap: 14px; padding-bottom: 20px; }
  .hero__stat span  { font-size: 15px; }
  .hero__stat small { font-size: 10px; }

  .filter-wrap { padding: 14px 12px 0; }
  .filter-pill { font-size: 12px; padding: 6px 12px; }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 12px 12px calc(80px + env(safe-area-inset-bottom, 0px));
  }

  /* Compact card */
  .service-card { border-radius: 12px; }
  .card-header  { padding: 10px 10px 0; gap: 4px; }
  .cat-badge    { font-size: 9px; padding: 2px 7px; gap: 3px; }
  .cat-badge i  { font-size: 9px; }
  .promo-badge, .inactive-badge { font-size: 9px; padding: 2px 5px; }

  .card-body  { padding: 6px 10px 0; }
  .card-title {
    font-size: 12px; line-height: 1.25; margin-bottom: 4px;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  }
  .card-desc { font-size: 11px; line-height: 1.5; color: var(--text-3);
               display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

  /* Two-button footer: stack vertically on very small cards */
  .card-footer { padding: 8px 8px 10px; gap: 6px; flex-direction: column; }
  .btn-lihat-harga, .btn-card-order { font-size: 11px; padding: 7px 6px; border-radius: 8px; gap: 4px; }
  .btn-lihat-harga i, .btn-card-order i { font-size: 12px; }

  /* Modal: full-width bottom sheet on mobile */
  .price-dialog {
    width: 100%;
    max-height: 90dvh;
    border-radius: 20px 20px 0 0;
    margin: auto auto 0;
    inset: auto 0 0;
  }
  @keyframes modal-in {
    from { opacity: 0; transform: translateY(100%); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .modal-header { padding: 16px 16px 14px; }
  .modal-title  { font-size: 17px; }
  .modal-section { padding: 12px 16px 0; }
  .modal-info   { margin: 10px 16px 0; }
  .modal-notes  { padding: 8px 16px 0; }
  .btn-modal-order { margin: 14px 16px 6px; font-size: 14px; padding: 12px; }

  .price-row  { padding: 8px 10px; font-size: 13px; }
  .price-qty  { font-size: 12px; }
  .price-head { padding: 5px 10px; }

  .faq-section  { padding: 36px 14px; }
  .faq-header   { margin-bottom: 24px; }
  .faq-trigger  { padding: 14px 14px; font-size: 14px; gap: 10px; }
  .faq-answer   { padding: 0 14px 14px 50px; padding-top: 12px; font-size: 13px; }

  .site-footer  { padding: 28px 14px calc(76px + env(safe-area-inset-bottom, 0px)); }
  .mobile-bar   { display: block; }
  .skeleton-card { height: 150px; }
}

@media (max-width: 360px) {
  .services-grid { gap: 6px; padding-inline: 8px; }
  .cat-badge i   { display: none; }
}
