/* ==========================================================================
   site.css — Muslim Solo (situs publik)
   Layout web responsif: header, hero, grid kartu, detail dua kolom,
   checkout, footer. Dimuat SETELAH design-system.css dan components.css,
   sehingga menimpa gaya mobile-only lama pada halaman publik.
   ========================================================================== */

:root {
  --navy: #1B3A6B;
  --navy-900: #0F2447;
  --teal: #16A085;
  --teal-700: #0E8B74;
  --ink: #0F1B33;
  --muted: #64748B;
  --line: #E6EBF3;
  --bg: #F5F7FB;
  --sh1: 0 1px 2px rgba(15, 36, 71, 0.05), 0 6px 18px rgba(15, 36, 71, 0.06);
  --sh2: 0 2px 4px rgba(15, 36, 71, 0.05), 0 18px 40px rgba(15, 36, 71, 0.12);
  --hh: 68px; /* tinggi header */
  --font-sans: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body.site {
  max-width: none;
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 15px;
}

.wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

.i { width: 1.15em; height: 1.15em; flex: 0 0 auto; vertical-align: -0.2em; }

/* ---- tombol ---- */
.site .btn { font-family: inherit; font-weight: 700; letter-spacing: -0.005em; transition: transform 0.12s, box-shadow 0.15s, background 0.15s; }
.site .btn-primary,
.site .btn-accent {
  background: var(--navy);
  color: #fff;
  height: 48px;
  box-shadow: 0 6px 16px rgba(27, 58, 107, 0.25);
}
.site .btn-primary:hover,
.site .btn-accent:hover { background: var(--navy-900); transform: translateY(-1px); }
.site .btn-outline { border-color: var(--line); color: var(--ink); background: #fff; height: 48px; }
.site .btn-outline:hover { border-color: var(--navy); color: var(--navy); }
.site .btn-outline-accent { border-color: var(--teal); color: var(--teal-700); }
.site .btn-ghost { background: #fff; color: var(--ink); border: 1.5px solid var(--line); height: 50px; box-shadow: var(--sh1); }
.site .btn-ghost:hover { border-color: var(--navy); color: var(--navy); }
.site .btn-lg { height: 52px; padding: 0 26px; font-size: 15px; }
.site .btn-sm { height: 38px; min-height: 38px; }
.site .btn-secondary { font-weight: 600; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid var(--line);
}

.site-header-in { display: flex; align-items: center; gap: 28px; height: var(--hh); }

.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--navy); }
.brand-mark { width: 38px; height: 38px; border-radius: 12px; }
.brand-text { line-height: 1.1; }
.brand-text b { display: block; font-size: 18px; font-weight: 700; letter-spacing: -0.03em; color: var(--navy-900); }
.brand-text b span { color: var(--teal); font-style: italic; }
.brand-text small { display: block; font-size: 10.5px; font-weight: 500; color: var(--muted); margin-top: 2px; letter-spacing: 0; }

.site-nav { display: flex; gap: 2px; margin-left: 8px; }
.site-nav a {
  position: relative;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: #475569;
  border-radius: 999px;
  transition: color 0.15s, background 0.15s;
}
.site-nav a:hover { color: var(--navy); background: #EEF3FB; }
.site-nav a.active { color: var(--navy); }
.site-nav a.active::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px; bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
}

.site-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }

.nav-search { position: relative; }
.nav-search .i { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); color: var(--muted); font-size: 15px; }
.nav-search input {
  width: 190px;
  height: 40px;
  padding: 0 14px 0 38px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  background: #F0F4FA;
  font-size: 13.5px;
  transition: width 0.2s, border-color 0.15s, background 0.15s;
}
.nav-search input:focus { outline: none; width: 250px; background: #fff; border-color: var(--teal); }

.nav-burger {
  display: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  border-radius: 12px;
  color: var(--navy);
  font-size: 22px;
  background: #EEF3FB;
}

/* drawer (mobile) */
.site .drawer-overlay { max-width: none; }
.site .drawer { width: min(86vw, 340px); }
.drawer-search { position: relative; margin: 14px 0 6px; }
.drawer-search .i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--muted); }
.drawer-search input { width: 100%; height: 46px; padding: 0 14px 0 40px; border-radius: 999px; border: 1.5px solid var(--line); background: #F7F9FC; }
.site .drawer-menu a { font-size: 16px; font-weight: 600; gap: 12px; }
.site .drawer-menu a .i { color: var(--teal); font-size: 19px; }

/* ==========================================================================
   HERO (beranda)
   ========================================================================== */
.home-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 420px at 88% -10%, rgba(22, 160, 133, 0.13), transparent 60%),
    radial-gradient(700px 380px at -5% 10%, rgba(43, 91, 168, 0.13), transparent 60%),
    linear-gradient(180deg, #EEF3FB 0%, var(--bg) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding-top: clamp(36px, 6vw, 72px);
  padding-bottom: clamp(36px, 5vw, 64px);
}
.hh-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  background: #E1EAFB;
  color: var(--navy);
  border-radius: 999px;
  font-size: 12px; font-weight: 700;
}
.hh-badge::before { content: '✦'; font-size: 13px; line-height: 1; color: var(--navy); }
.hh-title {
  font-size: clamp(34px, 4.8vw, 56px);
  line-height: 1.07;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 20px 0 18px;
}
.hh-sub { font-size: clamp(15px, 1.5vw, 17px); line-height: 1.7; color: #475569; max-width: 520px; }
.hh-cta { display: flex; gap: 12px; flex-wrap: wrap; margin: 28px 0 26px; }
.hh-trust { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px 24px; font-size: 13px; font-weight: 600; color: #475569; }
.hh-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hh-trust .i { color: var(--teal); font-size: 17px; }

/* kartu unggulan */
.fcard { background: #fff; border-radius: 26px; padding: 12px; box-shadow: var(--sh2); border: 1px solid rgba(230, 235, 243, 0.8); }
.fcard-media { position: relative; display: block; border-radius: 18px; overflow: hidden; aspect-ratio: 16 / 10; background: #dfe7f3; }
.fcard-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.fcard:hover .fcard-media img { transform: scale(1.04); }
.fcard-flag {
  position: absolute; top: 14px; left: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 12px;
  background: rgba(15, 36, 71, 0.82);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  color: #fff; font-size: 11.5px; font-weight: 700;
  border-radius: 999px;
}
.fcard-body { padding: 16px 10px 8px; }
.fcard-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 12px; }
.fcard-time { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; color: var(--muted); }
.fcard-title { font-size: clamp(18px, 1.9vw, 22px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.28; margin-bottom: 16px; }
.fcard-money { display: flex; align-items: baseline; justify-content: space-between; margin: 10px 0 18px; font-size: 13px; color: var(--muted); }
.fcard-money b { color: var(--ink); font-weight: 700; font-size: 15px; margin-left: 4px; }
.fcard-money em { font-style: normal; font-weight: 700; color: var(--teal-700); font-size: 14px; }

/* ---- tag / chip kecil ---- */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 12px; font-weight: 700;
  background: #DDF6EF; color: var(--teal-700);
}
.tag .i { font-size: 13px; }
.tag-urgent { background: #E11D2E; color: #fff; letter-spacing: 0.02em; }
.tag-white { background: rgba(255, 255, 255, 0.95); color: var(--teal-700); box-shadow: 0 2px 8px rgba(15, 36, 71, 0.12); }

/* ---- progress ---- */
.pbar { height: 7px; border-radius: 999px; background: #E6ECF6; overflow: hidden; }
.pbar i { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--navy), #2B5BA8); }
.pbar.lg { height: 9px; }
.pbar.danger i { background: linear-gradient(90deg, #E11D2E, #F2555F); }
.pbar.teal i { background: linear-gradient(90deg, var(--teal-700), var(--teal)); }

/* ==========================================================================
   SEKSI
   ========================================================================== */
.block { padding: clamp(28px, 4vw, 48px) 0 0; }
.block-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.block-head h2 { font-size: clamp(21px, 2.4vw, 27px); font-weight: 700; letter-spacing: -0.025em; }
.block-head p { font-size: 14px; color: var(--muted); margin-top: 4px; }
.block-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 700; color: var(--teal-700); white-space: nowrap; }
.block-link:hover { color: var(--navy); }
.flag-urgent { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: 999px; background: #FDE7E9; color: #C81E2D; font-size: 12px; font-weight: 700; margin-bottom: 8px; }

/* chip kategori */
.cat-row { display: flex; flex-wrap: wrap; gap: 10px; }
.cat-chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 18px;
  border-radius: 999px;
  background: #fff;
  border: 1.5px solid var(--line);
  color: #334155;
  font-size: 14px; font-weight: 600;
  box-shadow: 0 1px 2px rgba(15, 36, 71, 0.04);
  transition: all 0.15s;
  white-space: nowrap;
  cursor: pointer;
}
.cat-chip .i { color: var(--teal); font-size: 17px; }
.cat-chip:hover { border-color: var(--navy); color: var(--navy); transform: translateY(-1px); }
.cat-chip.active { background: var(--navy); border-color: var(--navy); color: #fff; }
.cat-chip.active .i { color: #fff; }
.cat-chip.sm { padding: 8px 15px; font-size: 13px; }

/* ==========================================================================
   KARTU PROGRAM
   ========================================================================== */
.pgrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.pgrid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.pcard {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--sh1);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pcard:hover { transform: translateY(-4px); box-shadow: var(--sh2); }
.pcard-media { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; background: #dfe7f3; }
.pcard-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.pcard:hover .pcard-media img { transform: scale(1.05); }
.pcard-flags { position: absolute; top: 12px; left: 12px; right: 12px; display: flex; justify-content: space-between; gap: 8px; align-items: flex-start; }
.pcard-body { display: flex; flex-direction: column; flex: 1; padding: 18px 18px 20px; }
.pcard-org { display: flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; color: var(--muted); margin-bottom: 8px; }
.pcard-org .i { color: var(--teal); font-size: 15px; }
.pcard-title { font-size: 17px; font-weight: 700; letter-spacing: -0.015em; line-height: 1.32; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.64em; }
.pcard-title a:hover { color: var(--navy); }
.pcard-money { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; margin: 12px 0 6px; }
.pcard-money b { font-size: 16px; font-weight: 700; }
.pcard-money span { font-size: 12.5px; font-weight: 600; color: var(--muted); }
.pcard-meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; font-size: 12.5px; color: var(--muted); font-weight: 500; margin-bottom: 18px; }
.pcard-meta span { display: inline-flex; align-items: center; gap: 6px; }
.pcard-meta .i { font-size: 14px; }
.pcard .btn { margin-top: auto; }

/* kartu horizontal (mendesak) */
.hcard {
  display: grid;
  grid-template-columns: minmax(120px, 34%) minmax(0, 1fr);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--sh1);
  transition: transform 0.2s, box-shadow 0.2s;
}
.hcard:hover { transform: translateY(-3px); box-shadow: var(--sh2); }
.hcard-media { position: relative; min-height: 190px; background: #dfe7f3; }
.hcard-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hcard-media .tag-urgent { position: absolute; top: 12px; left: 12px; }
.hcard-body { padding: 18px 20px; display: flex; flex-direction: column; min-width: 0; }
.hcard-org { display: flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; color: var(--muted); margin-bottom: 6px; }
.hcard-org .i { color: var(--teal); font-size: 15px; }
.hcard-title { font-size: 17px; font-weight: 700; letter-spacing: -0.015em; line-height: 1.3; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hcard-row { display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; font-weight: 600; margin-bottom: 6px; }
.hcard-row .left { color: #D14343; }
.hcard-row .right { color: var(--navy); font-weight: 700; }
.hcard-money { display: flex; justify-content: space-between; gap: 8px; font-size: 12.5px; color: var(--muted); margin: 8px 0 14px; }
.hcard-money b { color: var(--ink); font-weight: 700; font-size: 15px; }
.hcard .btn { margin-top: auto; height: 42px; font-size: 13.5px; }

/* seksi kepercayaan */
.trust-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.trust-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 24px; box-shadow: var(--sh1); }
.trust-ico { width: 46px; height: 46px; border-radius: 14px; background: #E5F7F2; color: var(--teal-700); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.trust-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.01em; }
.trust-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

.cta-band {
  background: linear-gradient(120deg, var(--navy-900), var(--navy) 55%, #1E6A8C);
  border-radius: 28px;
  padding: clamp(26px, 4vw, 44px);
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  color: #fff;
  position: relative; overflow: hidden;
}
.cta-band::after { content: ''; position: absolute; right: -60px; top: -80px; width: 260px; height: 260px; border-radius: 50%; background: rgba(255, 255, 255, 0.07); }
.cta-band h2 { font-size: clamp(21px, 2.6vw, 28px); font-weight: 700; letter-spacing: -0.025em; }
.cta-band p { margin-top: 6px; color: rgba(255, 255, 255, 0.78); font-size: 14.5px; max-width: 520px; }
.cta-band .btn { position: relative; z-index: 1; background: #fff; color: var(--navy); box-shadow: none; }
.cta-band .btn:hover { background: #EEF3FB; }

.legal-notes { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.legal-notes .info-box { background: #fff; border: 1px solid var(--line); color: var(--muted); font-size: 13px; line-height: 1.7; border-radius: 16px; padding: 16px 18px; }
.legal-notes strong { color: var(--ink); }

/* ==========================================================================
   HALAMAN DAFTAR PROGRAM / LAPORAN
   ========================================================================== */
.page-hero { padding: clamp(28px, 4vw, 48px) 0 8px; }
.page-hero h1 { font-size: clamp(28px, 3.6vw, 40px); font-weight: 700; letter-spacing: -0.03em; }
.page-hero p { margin-top: 8px; color: var(--muted); font-size: 15.5px; max-width: 640px; line-height: 1.65; }
.toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin: 22px 0 26px; }
.toolbar .cat-row { flex: 1; min-width: 0; }
.big-search { position: relative; width: 300px; max-width: 100%; }
.big-search .i { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: var(--muted); }
.big-search input { width: 100%; height: 46px; padding: 0 16px 0 42px; border-radius: 999px; border: 1.5px solid var(--line); background: #fff; font-size: 14px; }
.big-search input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(22, 160, 133, 0.14); }

.stat-strip { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin: 22px 0 8px; }
.stat-tile { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 18px 20px; box-shadow: var(--sh1); }
.stat-tile b { display: block; font-size: 24px; font-weight: 700; letter-spacing: -0.02em; color: var(--navy); }
.stat-tile span { font-size: 13px; color: var(--muted); font-weight: 600; }

.lgrid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin-top: 22px; }
.site .laporan-card { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--teal); border-radius: 18px; padding: 22px; box-shadow: var(--sh1); margin: 0; display: flex; flex-direction: column; transition: transform 0.2s, box-shadow 0.2s; }
a.laporan-card:hover, .site .laporan-card:hover { transform: translateY(-3px); box-shadow: var(--sh2); }
.site .laporan-card-title { font-size: 17px; font-weight: 700; }
.site .laporan-card-nominal { font-size: 16px; font-weight: 700; color: var(--teal-700); }
.lcard-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 16px; }

.empty-box { grid-column: 1 / -1; }

/* ==========================================================================
   DETAIL PROGRAM
   ========================================================================== */
.crumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); padding: 22px 0 18px; flex-wrap: wrap; }
.crumb a { color: var(--muted); font-weight: 600; }
.crumb a:hover { color: var(--navy); }
.crumb .i { font-size: 13px; }
.crumb .now { color: var(--ink); font-weight: 700; max-width: 46ch; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  grid-template-areas: 'head side' 'body side';
  column-gap: 36px;
  row-gap: 8px;
  align-items: start;
  padding-bottom: 24px;
}
.detail-head { grid-area: head; }
.detail-body { grid-area: body; min-width: 0; }
.detail-side { grid-area: side; position: sticky; top: calc(var(--hh) + 20px); }

.dmedia { position: relative; border-radius: 26px; overflow: hidden; aspect-ratio: 16 / 9; background: #dfe7f3; box-shadow: var(--sh1); }
.dmedia img { width: 100%; height: 100%; object-fit: cover; }
.dmedia-flags { position: absolute; left: 18px; bottom: 18px; display: flex; gap: 8px; flex-wrap: wrap; }
.dtitle { font-size: clamp(24px, 3vw, 34px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.2; margin: 24px 0 12px; }
.dmeta { display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: 13.5px; font-weight: 600; color: var(--muted); }
.dmeta span { display: inline-flex; align-items: center; gap: 7px; }
.dmeta .i { color: var(--teal); font-size: 16px; }

.dside-card { background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 24px; box-shadow: var(--sh2); }
.dside-amount { font-size: 30px; font-weight: 700; letter-spacing: -0.03em; color: var(--navy); line-height: 1.1; }
.dside-target { font-size: 13.5px; color: var(--muted); margin: 6px 0 16px; }
.dside-target b { color: var(--ink); }
.dside-pct { display: flex; justify-content: space-between; font-size: 13px; font-weight: 700; margin-top: 10px; color: var(--muted); }
.dside-pct em { font-style: normal; color: var(--teal-700); }
.dside-stats { display: grid; grid-template-columns: repeat(3, 1fr); margin: 20px 0; border: 1px solid var(--line); border-radius: 16px; background: #F8FAFD; }
.dside-stats div { text-align: center; padding: 14px 6px; border-right: 1px solid var(--line); }
.dside-stats div:last-child { border-right: none; }
.dside-stats b { display: block; font-size: 16px; font-weight: 700; color: var(--navy); }
.dside-stats span { font-size: 11.5px; color: var(--muted); font-weight: 600; }
.dside-actions { display: flex; gap: 10px; margin-top: 12px; }
.dside-actions .action-chip { height: 44px; font-size: 13px; }
.dside-note { display: flex; gap: 10px; align-items: flex-start; margin-top: 18px; padding-top: 16px; border-top: 1px dashed var(--line); font-size: 12.5px; color: var(--muted); line-height: 1.6; }
.dside-note .i { color: var(--teal); font-size: 18px; margin-top: 1px; }

.site .tab-bar { top: var(--hh); padding: 0; margin-top: 28px; gap: 28px; background: rgba(245, 247, 251, 0.95); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); z-index: 60; }
.site .tab-item { font-size: 14.5px; padding: 14px 0; font-family: inherit; }
.site .tab-item.active { color: var(--navy); border-bottom-color: var(--teal); }
.site .tab-panel { padding: 24px 0 8px; }
.site .rich-text { font-size: 15.5px; line-height: 1.85; color: #334155; }

.site .card { background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--sh1); padding: 22px; margin-bottom: 18px; }
.site .card-title { font-size: 17px; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 16px; }
.site .card-flat { border-radius: 16px; }
.site .alokasi-item { margin-bottom: 18px; }
.site .alokasi-item:last-child { margin-bottom: 0; }

.subhead { font-size: 18px; font-weight: 700; letter-spacing: -0.02em; margin: 28px 0 14px; }
.prinsip-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.site .prinsip-item { flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 18px; margin: 0; gap: 10px; }
.site .prinsip-item .prinsip-ikon { width: 42px; height: 42px; border-radius: 12px; background: #E5F7F2; color: var(--teal-700); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.site .prinsip-title { font-size: 14.5px; font-weight: 700; }
.site .prinsip-desc { font-size: 13px; }

/* ==========================================================================
   CHECKOUT (donasi + pembayaran)
   ========================================================================== */
.checkout { max-width: 700px; margin: 0 auto; padding: 8px clamp(16px, 4vw, 24px) 56px; }
.checkout-top { padding: 26px 0 20px; }
.back-link { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 700; color: var(--muted); margin-bottom: 14px; }
.back-link:hover { color: var(--navy); }
.checkout-top h1 { font-size: clamp(24px, 3vw, 30px); font-weight: 700; letter-spacing: -0.03em; }
.checkout-top p { color: var(--muted); font-size: 14px; margin-top: 4px; }

.site .nominal-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.site .nominal-btn { height: 54px; border-radius: 14px; font-family: inherit; }
.site .nominal-btn:hover { border-color: var(--navy); }
.site .form-input, .site .form-select, .site .form-textarea { border-radius: 14px; border-color: var(--line); background: #fff; }
.site .input-prefix-wrap { border-radius: 14px; border-color: var(--line); }
.site .radio-card { border-radius: 16px; border-color: var(--line); }
.site .radio-card.selected { background: #F0FAF7; border-color: var(--teal); }
.site .toggle-row { border-radius: 16px; background: #F8FAFD; border-color: var(--line); }
.site .badge-accent { background: #DDF6EF; color: var(--teal-700); }
.site .bank-card { border-radius: 24px; padding: 26px; }
.site .ref-code-box { border-radius: 14px; }
.site .upload-box { border-radius: 16px; }
.site .program-mini-thumb { border-radius: 14px; }
.site .detail-row-total .total-value { color: var(--teal-700); }

/* bar total donasi / detail */
.site .sticky-bottom { max-width: none; left: 0; transform: none; border-radius: 20px 20px 0 0; }

/* modal & flash & toast */
.site .modal-overlay { max-width: none; }
.site .flash { top: calc(var(--hh) + 12px); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.foot { margin-top: clamp(48px, 7vw, 88px); padding-bottom: 32px; }
.foot-card { background: #fff; border: 1px solid var(--line); border-radius: 28px; box-shadow: var(--sh1); padding: clamp(24px, 4vw, 40px); }
.foot-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr; gap: 32px; }
.foot-brand p { font-size: 14px; color: var(--muted); line-height: 1.75; margin: 16px 0 18px; max-width: 360px; }
.foot-social { display: flex; gap: 10px; }
.foot-social a { width: 40px; height: 40px; border-radius: 50%; background: #EEF3FB; color: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 17px; transition: all 0.15s; }
.foot-social a:hover { background: var(--navy); color: #fff; }
.foot h4 { font-size: 14px; font-weight: 700; margin-bottom: 14px; }
.foot ul li { margin-bottom: 10px; }
.foot ul a { font-size: 14px; color: var(--muted); font-weight: 500; }
.foot ul a:hover { color: var(--navy); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; gap: 12px 24px; flex-wrap: wrap; margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 13px; color: var(--muted); }
.foot-bottom a { color: var(--muted); font-weight: 500; }
.foot-bottom a:hover { color: var(--navy); }
.foot-bottom nav { display: flex; gap: 22px; }

/* ==========================================================================
   RESPONSIF
   ========================================================================== */
@media (max-width: 1024px) {
  .site-nav { display: none; }
  .nav-search { display: none; }
  .nav-burger { display: inline-flex; }
  .pgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .fcard { max-width: 560px; }
  .pgrid-2 { grid-template-columns: minmax(0, 1fr); }
  .detail-grid { grid-template-columns: minmax(0, 1fr); grid-template-areas: 'head' 'side' 'body'; }
  .detail-side { position: static; }
  .trust-grid, .prinsip-grid { grid-template-columns: minmax(0, 1fr); }
  .lgrid { grid-template-columns: minmax(0, 1fr); }
  .legal-notes { grid-template-columns: minmax(0, 1fr); }
  .site .sticky-bottom.detail-bar { display: flex; }
}

@media (min-width: 961px) {
  .site .sticky-bottom.detail-bar { display: none; }
  .site .has-sticky-bottom.detail-wrap { padding-bottom: 0; }
  /* bar total donasi mengambang di dalam kolom form */
  .site .sticky-bottom.donasi-bar {
    position: sticky;
    bottom: 16px;
    left: auto;
    transform: none;
    width: auto;
    border-radius: 20px;
    border: 1px solid var(--line);
    box-shadow: var(--sh2);
    margin-top: 8px;
  }
}

@media (max-width: 620px) {
  :root { --hh: 60px; }
  .site-header-in { gap: 12px; }
  .brand-text small { display: none; }
  .brand-text b { font-size: 16px; }
  .site-actions .btn { display: none; }
  .pgrid, .pgrid-2 { grid-template-columns: minmax(0, 1fr); gap: 12px; }
  .hh-cta .btn { flex: 1 1 auto; }
  .hcard { grid-template-columns: minmax(0, 1fr); }
  .hcard-media { min-height: 0; aspect-ratio: 16 / 9; }
  .cat-row {
    flex-wrap: nowrap; overflow-x: auto; width: 100%;
    margin: 0 calc(-1 * clamp(16px, 4vw, 32px)); padding: 2px clamp(16px, 4vw, 32px) 8px;
    scrollbar-width: none;
  }
  .cat-row::-webkit-scrollbar { display: none; }

  /* kartu program: horizontal & ringkas di mobile, bukan lagi kartu besar vertikal */
  .pcard { flex-direction: row; border-radius: 16px; }
  .pcard-media { flex: 0 0 92px; width: 92px; aspect-ratio: 1 / 1; }
  .pcard-flags { display: none; }
  .pcard-body { padding: 10px 12px; }
  .pcard-org { display: none; }
  .pcard-title { font-size: 13.5px; line-height: 1.3; margin-bottom: 6px; min-height: 0; -webkit-line-clamp: 2; }
  .pcard-money { margin: 0 0 6px; }
  .pcard-money b { font-size: 14px; }
  .pcard-money span { font-size: 11px; }
  .pcard .pbar { height: 4px; }
  .pcard-meta { margin: 0; font-size: 10.5px; justify-content: flex-start; gap: 14px; }
  .pcard-meta .pcard-donatur { display: none; }
  .pcard-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 8px; }
  /* min-height wajib ikut diturunkan: .btn dasar memakai min-height 44px sehingga height saja tidak cukup */
  .pcard .btn-block { flex: 0 0 auto; width: auto; margin-top: 0; height: 30px; min-height: 30px; padding: 0 12px; font-size: 11px; line-height: 1; letter-spacing: -0.01em; box-shadow: none; }
  .foot-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 24px 16px; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
  .stat-strip { grid-template-columns: minmax(0, 1fr); }
  .site .nominal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .big-search { width: 100%; }
  .dside-card { padding: 20px; }
  .has-sticky-bottom { padding-bottom: 88px; }
  .toolbar { margin: 18px 0 20px; }
}

/* judul kartu: warna teks, bukan warna tautan */
.pcard-title a, .hcard-title a, .fcard-title a, .site .tab-item { color: inherit; }
.pcard-title a:hover, .hcard-title a:hover, .fcard-title a:hover { color: var(--navy); }
.pgrid-2 > .hcard:only-child { max-width: 100%; }

.radio-card-title, .radio-card-sub { display: block; }
.radio-card-sub { margin-top: 3px; line-height: 1.45; }

.toolbar { flex-direction: column-reverse; align-items: stretch; justify-content: flex-start; gap: 14px; }
.toolbar .big-search { width: 100%; max-width: 420px; }

/* logo gambar (wordmark muslimsolo.id) */
.brand-logo { height: 40px; width: auto; max-width: none; display: block; }
.foot-brand .brand-logo { height: 42px; }
.drawer-head .brand-logo { height: 32px; }
@media (max-width: 620px) { .site-header .brand-logo { height: 34px; } }

.kode-note { font-size: 13px; line-height: 1.7; border-radius: 16px; padding: 16px 18px; }
.kode-note strong { display: block; font-size: 14px; margin-bottom: 6px; }
.kode-note p + p { margin-top: 6px; }
.site .info-box-accent { background: #E6F7F2; color: #0B6A57; }

/* ---- penanda mendesak: titik merah berkedip ---- */
.dot-live {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #E11D2E;
  animation: dot-blink 1.1s ease-in-out infinite;
}
.dot-live::after {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(225, 29, 46, 0.45);
  animation: dot-ring 1.1s ease-out infinite;
}
@keyframes dot-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }
@keyframes dot-ring { 0% { transform: scale(0.6); opacity: 0.9; } 100% { transform: scale(1.5); opacity: 0; } }

.tag-urgent { background: #fff; color: #C81E2D; gap: 8px; box-shadow: 0 2px 8px rgba(15, 36, 71, 0.14); }
.flag-urgent { gap: 9px; }
.cat-chip .dot-live { margin: 0 3px 0 1px; }

/* ---- tombol salin no. referensi ---- */
.ref-wrap { display: inline-flex; align-items: center; gap: 10px; }
.copy-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #E6F7F2; color: var(--teal-700);
  font-family: inherit; font-size: 12.5px; font-weight: 700;
  transition: background 0.15s;
}
.copy-chip:hover { background: #D1F1E8; }

/* ==========================================================================
   DETAIL PROGRAM — gaya kartu (mengikuti mockup)
   ========================================================================== */
.detail-appbar {
  display: none;
  position: sticky; top: 0; z-index: 100;
  align-items: center; gap: 10px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.round-btn {
  width: 42px; height: 42px; flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1.5px solid var(--line); background: #fff;
  color: var(--ink); font-size: 18px;
}
.round-btn.active { background: #E6F7F2; border-color: var(--teal); color: var(--teal-700); }
.round-btn.active .i, .action-chip.active .i { fill: currentColor; }
.appbar-brand { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 0; }
.appbar-mark { width: 38px; height: 38px; padding: 4px; border-radius: 12px; border: 1px solid var(--line); background: #fff; object-fit: contain; }
.appbar-brand span { line-height: 1.2; min-width: 0; }
.appbar-brand small { display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.02em; color: var(--teal-700); }
.appbar-brand b { display: block; font-size: 14.5px; font-weight: 700; color: var(--ink); }

/* hero */
.dmedia { aspect-ratio: 16 / 10; border-radius: 26px; }
.dmedia-top { position: absolute; top: 14px; left: 14px; right: 14px; display: flex; gap: 8px; flex-wrap: wrap; }
.tag-glass { background: rgba(15, 36, 71, 0.55); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); color: #fff; }
.dmedia-bottom { position: absolute; left: 0; right: 0; bottom: 0; display: flex; align-items: center; gap: 8px; padding: 44px 18px 16px; color: #fff; font-size: 14px; font-weight: 700; background: linear-gradient(to top, rgba(3, 10, 25, 0.78), transparent); }

/* kartu info & dana */
.dside-card { padding: 22px; }
.dside-cat { margin-bottom: 12px; }
.dtitle { font-size: clamp(20px, 2.3vw, 24px); line-height: 1.28; margin: 0 0 18px; letter-spacing: -0.025em; }
.fund-box { border: 1.5px solid var(--line); border-radius: 18px; padding: 16px; margin-bottom: 14px; background: #fff; }
.fund-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.fund-label { font-size: 11px; font-weight: 700; letter-spacing: 0.02em; color: var(--muted); }
.fund-amount { font-size: 28px; font-weight: 700; letter-spacing: -0.03em; line-height: 1.15; margin-top: 4px; color: var(--ink); }
.fund-target { font-size: 13px; color: var(--muted); margin-top: 3px; }
.fund-target b { color: var(--ink); font-weight: 700; }
.fund-pct { display: inline-flex; align-items: center; gap: 6px; padding: 9px 14px; border-radius: 14px; background: var(--navy-900); color: #fff; font-size: 15px; font-weight: 700; white-space: nowrap; }
.pbar.grad i { background: linear-gradient(90deg, var(--navy-900), var(--teal)); }

.stat-tiles { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-bottom: 16px; }
.stat-t { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 14px 6px; border-radius: 16px; background: #F3F6FB; text-align: center; }
.stat-t > .i { color: var(--teal); font-size: 19px; margin-bottom: 4px; }
.stat-t b { display: inline-flex; align-items: center; gap: 7px; font-size: 18px; font-weight: 700; color: var(--navy-900); }
.stat-t b.teal { color: var(--teal-700); }
.stat-t > span { font-size: 12px; font-weight: 600; color: var(--muted); }

.btn-cta { height: 56px; font-size: 16px; background: linear-gradient(90deg, var(--navy-900), var(--navy)); }
.dside-actions .action-chip { height: 46px; border-radius: 14px; font-size: 13px; font-family: inherit; }

/* tombol download proposal PDF */
.btn-download-proposal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 44px;
  margin-top: 8px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-full);
  background: var(--color-surface);
  color: var(--color-text-primary);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}
.btn-download-proposal:hover { border-color: var(--color-border-strong); background: var(--color-gray-50); }
.btn-download-proposal [class^="ph"] { font-size: 16px; color: #E74C3C; }

/* kartu lembaga */
.org-card { display: flex; align-items: center; gap: 14px; margin-top: 16px; padding: 14px 16px; background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--sh1); }
.org-mark { position: relative; flex: 0 0 auto; width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; border: 1.5px solid var(--line); border-radius: 16px; background: #fff; }
.org-mark img { width: 38px; height: 38px; object-fit: contain; }
.org-check { position: absolute; right: -6px; bottom: -6px; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--teal); color: #fff; border: 2px solid #fff; font-size: 11px; }
.org-body { flex: 1; min-width: 0; }
.org-name { font-size: 15px; font-weight: 700; }
.org-sub { display: flex; align-items: center; gap: 5px; margin-top: 2px; font-size: 12.5px; font-weight: 700; color: var(--teal-700); }
.org-btn { padding: 8px 16px; border: 1.5px solid var(--line); border-radius: 999px; font-size: 13px; font-weight: 700; color: var(--ink); }
.org-btn:hover { border-color: var(--navy); color: var(--navy); }

/* tab segmented */
.site .tab-bar { position: static; display: flex; gap: 4px; margin-top: 0; padding: 5px; border: none; border-radius: 18px; background: #E9EEF6; -webkit-backdrop-filter: none; backdrop-filter: none; }
.site .tab-item { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 11px 8px; margin: 0; border: none; border-radius: 14px; font-size: 14px; font-weight: 700; color: var(--muted); }
.site .tab-item.active { background: #fff; color: var(--ink); border: none; box-shadow: 0 1px 4px rgba(15, 36, 71, 0.12); }
.tab-item .cnt { padding: 2px 8px; border-radius: 999px; background: #DDF6EF; color: var(--teal-700); font-size: 11px; font-weight: 700; }
.site .tab-panel { padding: 16px 0 0; }

/* kartu konten */
.card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.card-head h3 { flex: 1; min-width: 0; font-size: 17px; font-weight: 700; letter-spacing: -0.015em; }
.card-ico { width: 38px; height: 38px; flex: 0 0 auto; display: flex; align-items: center; justify-content: center; border-radius: 12px; font-size: 18px; }
.card-ico.red { background: #FDE7E9; color: #D6293A; }
.card-ico.teal { background: #E5F7F2; color: var(--teal-700); }
.card-pill { padding: 6px 12px; border-radius: 999px; background: #EEF3FB; color: var(--navy); font-size: 12px; font-weight: 700; white-space: nowrap; }
.card-sub { margin: -4px 0 16px; font-size: 13.5px; color: var(--muted); }

.alo-list { display: flex; flex-direction: column; gap: 12px; }
.alo-item { padding: 14px 16px; border-radius: 16px; background: #F5F7FB; }
.alo-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 10px; font-size: 14px; }
.alo-name { font-weight: 700; min-width: 0; }
.alo-name em { font-style: normal; font-weight: 600; color: var(--muted); }
.alo-head b { font-weight: 700; white-space: nowrap; }

/* isi deskripsi: kutipan & daftar centang */
.site .rich-text blockquote { margin: 0 0 16px; padding: 4px 0 4px 16px; border-left: 3px solid var(--teal); font-style: italic; color: #334155; }
.site .rich-text ul { list-style: none; padding: 0; margin: 0 0 16px; }
.site .rich-text ul li { position: relative; padding-left: 32px; margin-bottom: 10px; }
.site .rich-text ul li::before {
  content: ''; position: absolute; left: 0; top: 0.2em; width: 20px; height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316A085' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E") center / contain no-repeat;
}

.sticky-bottom-value small { font-size: 12px; font-weight: 700; color: var(--teal-700); }

@media (max-width: 960px) {
  .detail-appbar { display: flex; }
  body.page-detail .site-header { display: none; }
  .crumb { display: none; }
  .detail-grid { padding-top: 16px; row-gap: 16px; }
  .dside-card { box-shadow: var(--sh1); }
}
@media (max-width: 620px) {
  .dmedia { border-radius: 22px; }
  .fund-amount { font-size: 26px; }
}


.detail-body { margin-top: 14px; }

/* ---- header: logo kiri, menu tepat di tengah, pencarian mengisi kolom kanan ---- */
.site-header-in { display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); gap: 24px; }
.site-header-in .brand { justify-self: start; }
.site-nav { margin-left: 0; justify-self: center; }
.site-actions { margin-left: 0; justify-self: stretch; justify-content: flex-end; }
.nav-search { flex: 1 1 auto; min-width: 0; }
.nav-search input, .nav-search input:focus { width: 100%; }
@media (max-width: 1024px) {
  .site-header-in { display: flex; }
  .site-actions { margin-left: auto; }
}

/* ---- logo bank ---- */
.radio-card-icon.logo { width: 68px; flex: 0 0 68px; padding: 8px 10px; background: #fff; border: 1px solid var(--line); }
.radio-card.selected .radio-card-icon.logo { background: #fff; }
.radio-card-icon.logo img { width: 100%; height: auto; }
.bank-logo { position: absolute; top: 18px; right: 18px; z-index: 1; display: flex; align-items: center; justify-content: center; width: 78px; padding: 8px 10px; border-radius: 12px; background: #fff; }
.bank-logo img { width: 100%; height: auto; }

/* ==========================================================================
   NAVBAR: menu tepat di tengah layar (desktop) + menu bawah (ponsel/tablet)
   ========================================================================== */
:root { --bn-h: 66px; }

.site-header-in { display: flex; align-items: center; justify-content: space-between; grid-template-columns: none; gap: 24px; }
/* posisi menu dihitung dari lebar header penuh, bukan dari sisa ruang antara logo dan pencarian */
.site-nav { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); margin: 0; }
.site-actions { margin-left: auto; flex: 0 0 auto; justify-self: auto; }
.nav-search { flex: 0 0 auto; width: clamp(200px, 19vw, 280px); }
.nav-search input, .nav-search input:focus { width: 100%; }

.bottom-nav { display: none; }

@media (max-width: 1024px) {
  .site-header-in { justify-content: flex-start; }
  .site-nav, .nav-search, .site-actions { display: none; }

  .bottom-nav {
    display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
    padding: 6px 8px calc(6px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.97);
    -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -6px 20px rgba(15, 36, 71, 0.07);
  }
  .bn-item { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 4px 2px; font-size: 11.5px; font-weight: 700; color: var(--muted); }
  .bn-ico { display: flex; align-items: center; justify-content: center; padding: 4px 20px; border-radius: 999px; font-size: 22px; transition: background 0.15s; }
  .bn-item.active { color: var(--navy); }
  .bn-item.active .bn-ico { background: #E4ECF9; }

  /* ruang agar isi halaman & footer tidak tertutup menu bawah */
  body.site { padding-bottom: calc(var(--bn-h) + env(safe-area-inset-bottom)); }
  .site .toast { bottom: calc(var(--bn-h) + 24px + env(safe-area-inset-bottom)); }

  /* halaman dengan bar aksi sendiri (detail program & form donasi) tidak memakai menu bawah */
  body.page-detail .bottom-nav, body.page-donasi .bottom-nav { display: none; }
  body.page-detail.site, body.page-donasi.site { padding-bottom: 0; }
}

/* ---- halaman bantuan: cara donasi ---- */
.checkout .step-item a,
.faq a { color: var(--teal-700); font-weight: 600; text-decoration: underline; }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:last-child { border-bottom: none; }
.faq summary { cursor: pointer; list-style: none; padding: 14px 28px 14px 0; font-weight: 600; font-size: 15px; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-size: 20px; color: var(--teal-700); }
.faq details[open] summary::after { content: '\2212'; }
.faq details p { padding: 0 0 14px; color: var(--muted); font-size: 14px; line-height: 1.7; }
