/* ============================================================
   Masjid Al Madinah Al Munawwarah — Stylesheet
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --green-dark:  #0d5c2e;
  --green-mid:   #1a7a3e;
  --green-light: #2d9b5a;
  --green-pale:  #e8f5ed;
  --gold:        #c9a227;
  --gold-light:  #f0c040;
  --gold-pale:   #fdf8e6;
  --white:       #ffffff;
  --gray-light:  #f5f7f5;
  --gray-mid:    #e0e0e0;
  --text-dark:   #1a2e1a;
  --text-mid:    #444444;
  --text-light:  #777777;
  --shadow:      0 4px 20px rgba(0,0,0,.08);
  --shadow-md:   0 8px 30px rgba(0,0,0,.12);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  all 0.3s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Poppins', sans-serif; color: var(--text-mid); line-height: 1.7; background: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }
button { font-family: 'Poppins', sans-serif; }

/* ---- Layout ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section-gray { background: var(--gray-light); }

/* ---- Section Header ---- */
.section-header { text-align: center; margin-bottom: 60px; }
.section-badge {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-mid);
  font-size: .78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px;
  padding: 6px 18px; border-radius: 50px; margin-bottom: 16px;
  border: 1px solid rgba(26,122,62,.2);
}
.section-title { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; color: var(--text-dark); margin-bottom: 14px; }
.section-divider { color: var(--gold); font-size: 1.4rem; margin-bottom: 14px; }
.section-desc { color: var(--text-light); font-size: .95rem; max-width: 600px; margin: 0 auto; }
.subsection-title {
  font-size: 1.2rem; font-weight: 600; color: var(--text-dark);
  margin-bottom: 28px; padding-bottom: 12px;
  border-bottom: 2px solid var(--green-pale);
  display: flex; align-items: center; gap: 10px;
}
.subsection-title i { color: var(--green-mid); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px;
  font-size: .95rem; font-weight: 600; cursor: pointer;
  transition: var(--transition); border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary { background: var(--green-mid); color: var(--white); border-color: var(--green-mid); }
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,122,62,.4); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn-outline:hover { background: rgba(255,255,255,.15); border-color: var(--white); }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--text-dark); border-color: var(--gold); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,162,39,.5); }
.btn-large { padding: 18px 40px; font-size: 1.05rem; }
.btn-small { padding: 10px 22px; font-size: .85rem; }

/* ---- Fade-In Animation ---- */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0; transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(13,92,46,.97);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-logo {
  width: 44px; height: 44px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--text-dark);
}
.nav-title { display: flex; flex-direction: column; line-height: 1.2; }
.nav-main { font-size: .95rem; font-weight: 700; color: var(--white); }
.nav-sub  { font-size: .72rem; color: var(--gold-light); }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-link {
  color: rgba(255,255,255,.85); font-size: .88rem; font-weight: 500;
  padding: 8px 14px; border-radius: 6px; transition: var(--transition);
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,.1); }
.nav-link.active { color: var(--gold-light); }
.nav-donate {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: var(--text-dark) !important; font-weight: 700 !important;
  padding: 8px 20px !important; border-radius: 50px !important;
}
.nav-donate:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(201,162,39,.45); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 26px; height: 2.5px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   HERO — DASHBOARD
   ============================================================ */
#home {
  min-height: 100vh;
  background: linear-gradient(160deg, #0a3a1c 0%, #0f5c2a 50%, #0a3a1c 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0 60px;
}

/* geometric mosque-pattern overlay */
#home::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.045' stroke-width='1'%3E%3Ccircle cx='60' cy='60' r='50'/%3E%3Ccircle cx='60' cy='60' r='35'/%3E%3Ccircle cx='60' cy='60' r='20'/%3E%3Cline x1='10' y1='60' x2='110' y2='60'/%3E%3Cline x1='60' y1='10' x2='60' y2='110'/%3E%3Cline x1='25' y1='25' x2='95' y2='95'/%3E%3Cline x1='95' y1='25' x2='25' y2='95'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 120px 120px;
}

/* radial vignette */
#home::after {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(255,255,255,.03) 0%, rgba(0,0,0,.25) 100%);
}

/* --- Layout wrapper --- */
.hero-container {
  position: relative;
  z-index: 1;
}

.hero-badge-row {
  text-align: center;
  margin-bottom: 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.hero-col-left,
.hero-col-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* --- Badge --- */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
  margin-bottom: 8px;
}

.pulse-dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(74,222,128,.6);
  animation: pulse-ring 1.8s infinite;
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(74,222,128,.6); }
  70%  { box-shadow: 0 0 0 8px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}

/* --- Progress Card --- */
.hero-prog-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 28px 24px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  margin-bottom: 0;
}

.prog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 18px;
}

.prog-header-left { flex: 1; }
.prog-header-right { text-align: right; flex-shrink: 0; }

.prog-pct-big {
  font-size: clamp(2.6rem, 3.8vw, 3.5rem);
  font-weight: 900;
  color: var(--gold-light);
  font-family: 'Amiri', serif;
  line-height: 1;
}

.prog-pct-label {
  font-size: .72rem;
  color: rgba(255,255,255,.45);
  margin-top: 2px;
}

.hero-prog-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 6px;
}

.hero-prog-amount {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1.1;
  margin-bottom: 4px;
  font-family: 'Poppins', sans-serif;
}

.hero-prog-target {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 0;
}

/* Progress bar */
.prog-bar-track {
  height: 10px;
  background: rgba(255,255,255,.12);
  border-radius: 50px;
  overflow: hidden;
  margin-bottom: 0;
}

.prog-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 50px;
  width: 0;
  transition: width 1.4s cubic-bezier(.4,0,.2,1);
  position: relative;
}

.prog-bar-fill::after {
  content: '';
  position: absolute;
  right: -1px; top: 50%;
  transform: translateY(-50%);
  width: 14px; height: 14px;
  background: var(--gold-light);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold-light);
}

.prog-bar-pct {
  display: flex;
  justify-content: space-between;
  font-size: .72rem;
  color: rgba(255,255,255,.5);
  margin-top: 10px;
  margin-bottom: 20px;
}

.prog-bar-pct strong { color: rgba(255,255,255,.85); }

/* --- Stat grid --- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.stat-glass {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 18px 14px;
  text-align: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
}

.stat-glass:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.2);
  transform: translateY(-3px);
}

.stat-glass .icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px;
  font-size: 1.1rem;
}

.stat-glass .val {
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-glass .lbl {
  font-size: .65rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .5px;
  line-height: 1.3;
}

/* --- Donation info card --- */
.donation-info-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px;
  padding: 28px 24px;
}

.donation-info-card .title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
}

.donation-info-card .subtitle {
  font-size: .8rem;
  margin-bottom: 20px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  gap: 12px;
}

.info-row .label {
  font-size: .8rem;
  display: flex;
  align-items: center;
  gap: 7px;
}

.info-row .value {
  font-size: .85rem;
  font-weight: 700;
  text-align: right;
}

/* --- CTA Hero Buttons --- */
.cta-hero-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  flex: 1;
  min-width: 140px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #1a2e1a;
  font-weight: 700;
  font-size: .88rem;
  padding: 13px 20px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,162,39,.5);
}

.btn-hero-secondary {
  flex: 1;
  min-width: 140px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  color: #fff;
  font-weight: 600;
  font-size: .88rem;
  padding: 13px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.2);
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}

.btn-hero-secondary:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.35);
  transform: translateY(-2px);
}

/* --- Scroll hint --- */
.scroll-hint {
  text-align: center;
  margin-top: 48px;
}

.scroll-hint a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.45);
  font-size: .75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
}

.scroll-hint a:hover { color: rgba(255,255,255,.75); }

.scroll-hint i {
  animation: bounce 2s infinite;
}

@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* legacy — kept for bounce reuse */
.scroll-indicator { color: rgba(255,255,255,.55); font-size: 1.2rem; animation: bounce 2s infinite; }

/* ============================================================
   HIGHLIGHTS
   ============================================================ */
.highlights { padding: 60px 0; background: var(--white); }
.highlight-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.highlight-card {
  background: var(--white); border: 1px solid var(--gray-mid);
  border-radius: var(--radius); padding: 28px 24px; text-align: center;
  transition: var(--transition); position: relative; overflow: hidden;
}
.highlight-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green-mid), var(--gold));
  transform: scaleX(0); transition: var(--transition);
}
.highlight-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.highlight-card:hover::before { transform: scaleX(1); }
.highlight-icon {
  width: 60px; height: 60px; background: var(--green-pale); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 1.4rem; color: var(--green-mid);
}
.highlight-card h3 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.highlight-card p { font-size: .83rem; color: var(--text-light); margin-bottom: 16px; }
.highlight-link { font-size: .83rem; color: var(--green-mid); font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 6px; transition: var(--transition); }
.highlight-link:hover { color: var(--green-dark); gap: 10px; }

/* ============================================================
   DONATION CTA BANNER
   ============================================================ */
.donation-cta { background: linear-gradient(135deg, var(--green-dark), var(--green-mid)); padding: 50px 0; }
.cta-content { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-text { flex: 1; min-width: 280px; }
.cta-badge {
  display: inline-block; background: rgba(255,255,255,.15);
  color: var(--gold-light); font-size: .72rem; font-weight: 600;
  letter-spacing: 1.5px; padding: 5px 14px; border-radius: 50px;
  margin-bottom: 12px; text-transform: uppercase;
}
.cta-content h2 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); color: var(--white); font-weight: 700; margin-bottom: 8px; }
.cta-content p { color: rgba(255,255,255,.85); font-size: .92rem; margin-bottom: 12px; }
.mini-progress { height: 8px; background: rgba(255,255,255,.2); border-radius: 50px; overflow: hidden; max-width: 420px; }
.mini-progress-bar {
  height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 50px; animation: grow 2s ease forwards;
}
@keyframes grow { from { width: 0; } }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 50px; align-items: center; margin-bottom: 70px; }
.image-placeholder {
  background: var(--green-pale); border: 2px dashed var(--green-light);
  border-radius: var(--radius-lg); aspect-ratio: 4/3;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; font-size: 4rem; color: var(--green-mid);
}
.image-placeholder p { font-size: .88rem; color: var(--text-light); }
.about-content h3 { font-size: 1.5rem; font-weight: 700; color: var(--text-dark); margin-bottom: 14px; }
.about-content p { color: var(--text-mid); margin-bottom: 14px; font-size: .93rem; }
.info-grid {
  display: flex; flex-direction: column; gap: 14px;
  margin-top: 24px; padding: 22px;
  background: var(--green-pale); border-radius: var(--radius);
  border-left: 4px solid var(--green-mid);
}
.info-item { display: flex; align-items: flex-start; gap: 14px; }
.info-item i { color: var(--green-mid); font-size: 1.1rem; margin-top: 3px; flex-shrink: 0; }
.info-item div { display: flex; flex-direction: column; }
.info-item strong { font-size: .75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 2px; }
.info-item span { font-size: .88rem; color: var(--text-dark); font-weight: 500; }

/* Timeline */
.history-section { margin-bottom: 60px; }
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: ''; position: absolute; left: 12px; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--green-mid), var(--gold));
}
.timeline-item { position: relative; margin-bottom: 36px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
  position: absolute; left: -34px; top: 6px;
  width: 16px; height: 16px; background: var(--green-mid); border-radius: 50%;
  border: 3px solid var(--white); box-shadow: 0 0 0 3px var(--green-mid);
}
.timeline-content { background: var(--white); border: 1px solid var(--gray-mid); border-radius: var(--radius); padding: 20px 24px; transition: var(--transition); }
.timeline-content:hover { box-shadow: var(--shadow); border-color: var(--green-light); }
.timeline-content h4 { font-size: .95rem; font-weight: 600; color: var(--green-dark); margin-bottom: 8px; }
.timeline-content p { font-size: .88rem; color: var(--text-mid); }

/* Visi Misi */
.visi-misi { display: grid; grid-template-columns: 1fr 1.6fr; gap: 28px; }
.visi-card { background: linear-gradient(135deg, var(--green-dark), var(--green-mid)); border-radius: var(--radius-lg); padding: 32px; text-align: center; color: var(--white); }
.misi-card { background: var(--green-pale); border: 1px solid rgba(26,122,62,.15); border-radius: var(--radius-lg); padding: 32px; }
.vm-icon { width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin: 0 auto 16px; }
.visi-card .vm-icon { background: rgba(255,255,255,.15); color: var(--gold-light); }
.misi-card .vm-icon { background: var(--green-mid); color: var(--white); }
.visi-card h3, .misi-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; }
.misi-card h3 { color: var(--text-dark); }
.visi-card p { font-size: .92rem; line-height: 1.75; opacity: .9; }
.misi-card ul { display: flex; flex-direction: column; gap: 10px; }
.misi-card li { display: flex; align-items: flex-start; gap: 10px; font-size: .88rem; color: var(--text-mid); }
.misi-card li i { color: var(--green-mid); margin-top: 4px; flex-shrink: 0; }

/* ============================================================
   NILAI-NILAI YAYASAN
   ============================================================ */
.values-section { margin-top: 3.5rem; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 1.5rem;
}
.value-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  border: 2px solid var(--gray-mid);
  transition: var(--transition);
}
.value-item:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(201,162,39,.15);
}
.value-icon {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.3rem; color: var(--white);
}
.value-item h4 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.value-item p  { font-size: .82rem; color: var(--text-light); line-height: 1.65; }

/* ============================================================
   STRUKTUR ORGANISASI (dalam #about)
   ============================================================ */
.org-section { margin-top: 3.5rem; }
.org-intro {
  font-size: .93rem; color: var(--text-mid);
  margin-bottom: 2rem; line-height: 1.75;
}
.org-wrapper {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  margin-bottom: 24px;
  overflow-x: auto;
}
.org-wrapper-title {
  display: flex; align-items: center; gap: 10px;
  font-size: 1rem; font-weight: 700; color: var(--text-dark);
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--green-pale);
}
.org-wrapper-title i { color: var(--green-mid); font-size: 1.1rem; }

/* Chart layout */
.org-chart {
  display: flex; flex-direction: column; align-items: center;
  min-width: 560px;
}
.org-row {
  display: flex; justify-content: center; align-items: center;
  gap: 16px; width: 100%;
}
.org-row-multi  { gap: 48px; }
.org-row-bidang { gap: 12px; flex-wrap: wrap; }

.org-vline {
  width: 2px; height: 28px;
  background: linear-gradient(to bottom, var(--green-mid), var(--green-light));
}
.org-hline-mid {
  height: 2px; flex: 1; max-width: 80px;
  background: linear-gradient(to right, var(--green-mid), var(--green-light));
}

/* Node base */
.org-node {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  background: var(--white);
  border: 2px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 14px 16px;
  min-width: 100px; text-align: center;
  transition: var(--transition);
  cursor: default;
}
.org-node:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.org-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--white);
}
.org-role { font-size: .75rem; font-weight: 600; color: var(--text-dark); line-height: 1.3; }

/* Node color variants */
.org-pembina   { border-color: #2d7a4f; }
.org-pembina   .org-icon { background: linear-gradient(135deg, #1a472a, #2d7a4f); }
.org-pengawas  { border-color: #2e6da4; }
.org-pengawas  .org-icon { background: linear-gradient(135deg, #1e3a5f, #2e6da4); }
.org-ketua     { border-color: var(--gold); }
.org-ketua     .org-icon { background: linear-gradient(135deg, #8a6914, var(--gold)); }
.org-sekretaris { border-color: #a0522d; }
.org-sekretaris .org-icon { background: linear-gradient(135deg, #5c3317, #a0522d); }
.org-bendahara  { border-color: #8e44ad; }
.org-bendahara  .org-icon { background: linear-gradient(135deg, #4a235a, #8e44ad); }
.org-bidang    { border-color: var(--green-mid); min-width: 90px; padding: 12px 10px; }
.org-bidang    .org-icon { background: linear-gradient(135deg, var(--green-dark), var(--green-mid)); width: 36px; height: 36px; font-size: .85rem; }
.org-bidang    .org-role { font-size: .72rem; }

/* Note box */
.org-note {
  display: flex; align-items: flex-start; gap: 10px;
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-top: 8px;
}
.org-note i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.org-note p { font-size: .85rem; color: var(--text-mid); margin: 0; }

/* ============================================================
   UNITS
   ============================================================ */
.units-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.unit-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px 22px;
  text-align: center; border: 1px solid var(--gray-mid);
  transition: var(--transition); position: relative; overflow: hidden;
}
.unit-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green-mid), var(--gold));
  transform: scaleX(0); transition: var(--transition);
}
.unit-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.unit-card:hover::after { transform: scaleX(1); }
.unit-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--green-pale), #c8e6d4);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 1.6rem; color: var(--green-mid); transition: var(--transition);
}
.unit-card:hover .unit-icon { background: linear-gradient(135deg, var(--green-mid), var(--green-light)); color: var(--white); }
.unit-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.unit-card h4 { font-size: .75rem; color: var(--green-mid); font-weight: 500; margin-bottom: 12px; }
.unit-card p { font-size: .82rem; color: var(--text-light); line-height: 1.6; margin-bottom: 16px; }
.unit-tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.unit-tags span { font-size: .7rem; background: var(--green-pale); color: var(--green-mid); padding: 3px 10px; border-radius: 50px; font-weight: 500; }

/* ============================================================
   PROGRAMS
   ============================================================ */
.programs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 20px; margin-bottom: 60px; }
.program-card { background: var(--white); border-radius: var(--radius); padding: 24px 20px; border: 1px solid var(--gray-mid); transition: var(--transition); }
.program-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--green-light); }
.program-time { display: inline-block; font-size: .7rem; background: var(--gold-pale); color: var(--gold); padding: 3px 10px; border-radius: 50px; font-weight: 600; margin-bottom: 12px; border: 1px solid rgba(201,162,39,.3); }
.program-icon { font-size: 1.8rem; color: var(--green-mid); margin-bottom: 12px; }
.program-card h4 { font-size: .9rem; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.program-card p { font-size: .82rem; color: var(--text-light); }

.featured-programs { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-bottom: 60px; }
.featured-card { display: flex; align-items: flex-start; gap: 16px; background: var(--white); border-radius: var(--radius); padding: 22px; border: 1px solid var(--gray-mid); transition: var(--transition); }
.featured-card:hover { border-color: var(--green-light); box-shadow: var(--shadow); }
.featured-icon { width: 48px; height: 48px; background: linear-gradient(135deg, var(--green-mid), var(--green-light)); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.2rem; flex-shrink: 0; }
.featured-content h4 { font-size: .9rem; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.featured-content p { font-size: .82rem; color: var(--text-light); line-height: 1.6; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item { aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; }
.gallery-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--green-pale), #d0ead8);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; font-size: 2rem; color: var(--green-mid);
  transition: var(--transition); cursor: pointer;
}
.gallery-placeholder:hover { background: linear-gradient(135deg, #d8eede, #b8dcc4); }
.gallery-placeholder p { font-size: .78rem; color: var(--text-light); }

/* ============================================================
   DONATION SECTION
   ============================================================ */
.donation-section { background: linear-gradient(180deg, #f9fbf9 0%, var(--white) 100%); }

.urgency-card {
  display: flex; gap: 24px; align-items: flex-start;
  background: var(--white); border-radius: var(--radius-lg); padding: 32px;
  margin-bottom: 30px; border: 1px solid var(--gray-mid); box-shadow: var(--shadow);
}
.urgency-icon { font-size: 2rem; color: var(--gold); flex-shrink: 0; margin-top: 4px; }
.urgency-content h3 { font-size: 1.15rem; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.urgency-content p { font-size: .88rem; color: var(--text-mid); margin-bottom: 10px; line-height: 1.75; }

.quote-card {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  border-radius: var(--radius-lg); padding: 44px 40px;
  text-align: center; margin-bottom: 54px;
  position: relative; overflow: hidden;
}
.quote-card::before { content: '\201C'; position: absolute; top: -30px; left: 20px; font-size: 11rem; color: rgba(255,255,255,.05); font-family: serif; line-height: 1; }
.quote-arabic { font-family: 'Amiri', serif; font-size: clamp(1.15rem, 2.5vw, 1.5rem); color: var(--gold-light); direction: rtl; margin-bottom: 16px; line-height: 2; }
.quote-text { font-size: clamp(.88rem, 1.4vw, 1rem); color: rgba(255,255,255,.9); font-style: italic; margin-bottom: 12px; max-width: 680px; margin-left: auto; margin-right: auto; }
.quote-source { font-size: .82rem; color: var(--gold-light); font-weight: 600; }

/* Budget Table */
.budget-section { margin-bottom: 54px; }
.budget-table-wrapper { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
.budget-table { width: 100%; border-collapse: collapse; background: var(--white); }
.budget-table th { background: linear-gradient(135deg, var(--green-dark), var(--green-mid)); color: var(--white); padding: 16px 20px; text-align: left; font-size: .88rem; font-weight: 600; }
.budget-table th:last-child { text-align: right; }
.budget-table td { padding: 16px 20px; border-bottom: 1px solid var(--gray-mid); font-size: .88rem; color: var(--text-mid); }
.budget-table td:first-child { text-align: center; width: 50px; font-weight: 600; color: var(--text-light); }
.budget-table tr:hover td { background: var(--gray-light); }
.budget-item-name { display: flex; align-items: center; gap: 10px; }
.budget-item-name i { color: var(--green-mid); flex-shrink: 0; }
.budget-amount { text-align: right; font-weight: 600; color: var(--text-dark); }
.budget-total td { background: var(--gold-pale) !important; border-top: 2px solid var(--gold); }
.budget-total .total { color: var(--green-dark) !important; font-size: 1rem; }

/* Progress */
.progress-section {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px;
  margin-bottom: 50px; box-shadow: var(--shadow); border: 1px solid var(--gray-mid);
}
.progress-header { display: flex; justify-content: space-between; margin-bottom: 14px; flex-wrap: wrap; gap: 12px; }
.progress-info { display: flex; flex-direction: column; }
.progress-info.right { text-align: right; }
.progress-label { font-size: .75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 4px; }
.progress-amount { font-size: .95rem; font-weight: 700; color: var(--text-dark); }
.progress-bar-container { height: 22px; background: var(--gray-mid); border-radius: 50px; overflow: hidden; margin-bottom: 28px; }
.progress-bar {
  height: 100%; background: linear-gradient(90deg, var(--green-mid), var(--gold));
  border-radius: 50px; width: 0; transition: width 2s ease;
  display: flex; align-items: center; justify-content: flex-end; padding-right: 10px;
}
.progress-text { font-size: .72rem; font-weight: 700; color: var(--white); }
.progress-stats { display: flex; justify-content: space-around; padding-top: 22px; border-top: 1px solid var(--gray-mid); flex-wrap: wrap; gap: 16px; }
.stat { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.stat i { font-size: 1.3rem; color: var(--green-mid); }
.stat strong { font-size: 1.3rem; font-weight: 700; color: var(--text-dark); }
.stat span { font-size: .78rem; color: var(--text-light); }

/* Donation Amounts */
.donation-cards { margin-bottom: 50px; }
.donation-amounts { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.amount-btn {
  padding: 12px 24px; border: 2px solid var(--gray-mid); background: var(--white);
  border-radius: 50px; font-size: .88rem; font-weight: 600; cursor: pointer;
  transition: var(--transition); color: var(--text-dark);
}
.amount-btn:hover, .amount-btn.selected { border-color: var(--green-mid); background: var(--green-pale); color: var(--green-dark); }
.featured-amount { border-color: var(--gold); background: var(--gold-pale); color: #7a5c00; position: relative; }
.featured-amount::before {
  content: 'Populer'; position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  font-size: .62rem; background: var(--gold); color: var(--white);
  padding: 2px 8px; border-radius: 50px; white-space: nowrap;
}

/* Bank Section */
.bank-section { margin-bottom: 50px; }
.bank-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-bottom: 16px; }
.bank-card { background: var(--white); border: 1px solid var(--gray-mid); border-radius: var(--radius); padding: 24px; transition: var(--transition); }
.bank-card:hover { box-shadow: var(--shadow); border-color: var(--green-light); }
.bank-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--gray-mid); }
.bank-logo i { font-size: 1.4rem; color: var(--green-mid); }
.bank-logo span { font-size: 1rem; font-weight: 700; color: var(--text-dark); }
.bank-details { display: flex; flex-direction: column; gap: 10px; }
.bank-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.bank-label { font-size: .72rem; color: var(--text-light); text-transform: uppercase; letter-spacing: .5px; }
.bank-number-wrapper { display: flex; align-items: center; gap: 8px; }
.bank-number { font-size: .98rem; font-weight: 700; color: var(--green-dark); font-family: monospace; letter-spacing: 1px; }
.copy-btn { background: var(--green-pale); border: none; color: var(--green-mid); cursor: pointer; padding: 6px 10px; border-radius: 6px; font-size: .82rem; transition: var(--transition); }
.copy-btn:hover { background: var(--green-mid); color: var(--white); }
.bank-value { font-size: .83rem; color: var(--text-dark); font-weight: 500; text-align: right; }
.bank-note {
  font-size: .83rem; color: var(--text-light);
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; background: #fffbeb;
  border: 1px solid rgba(201,162,39,.25); border-radius: 8px;
}
.bank-note i { color: var(--gold); flex-shrink: 0; }

/* Main CTA Box */
.main-cta { text-align: center; }
.cta-box {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 50%, #218f55 100%);
  border-radius: var(--radius-lg); padding: 60px 40px;
  position: relative; overflow: hidden;
}
.cta-box::before {
  content: '';  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-icon { font-size: 2.5rem; color: var(--gold-light); margin-bottom: 16px; position: relative; animation: pulse 2.5s infinite; }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.12); } }
.cta-box h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); font-weight: 700; color: var(--white); margin-bottom: 14px; position: relative; }
.cta-box > p { font-size: .93rem; color: rgba(255,255,255,.85); margin-bottom: 28px; max-width: 580px; margin-left: auto; margin-right: auto; position: relative; }
.cta-buttons { margin-bottom: 22px; position: relative; }
.cta-hadith { font-size: .83rem !important; color: var(--gold-light) !important; font-style: italic; position: relative; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info h3 { font-size: 1.25rem; font-weight: 700; color: var(--text-dark); margin-bottom: 22px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon { width: 44px; height: 44px; background: var(--green-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--green-mid); font-size: 1rem; flex-shrink: 0; }
.contact-text { flex: 1; }
.contact-text strong { display: block; font-size: .75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 4px; }
.contact-text p, .contact-text a { font-size: .88rem; color: var(--text-mid); }
.contact-text a:hover { color: var(--green-mid); }
.social-links h4 { font-size: .88rem; font-weight: 600; color: var(--text-dark); margin-bottom: 12px; }
.social-icons { display: flex; gap: 10px; }
.social-btn { width: 42px; height: 42px; border-radius: 50%; background: var(--white); border: 1px solid var(--gray-mid); display: flex; align-items: center; justify-content: center; color: var(--text-mid); font-size: .98rem; transition: var(--transition); }
.social-btn:hover { background: var(--green-mid); color: var(--white); border-color: var(--green-mid); transform: translateY(-3px); }
.social-btn.whatsapp:hover { background: #25d366; border-color: #25d366; }
.map-placeholder {
  width: 100%; min-height: 400px; background: var(--green-pale);
  border: 2px dashed var(--green-light); border-radius: var(--radius-lg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  font-size: 3rem; color: var(--green-mid);
}
.map-placeholder p { font-size: 1.05rem; font-weight: 600; color: var(--text-dark); }
.map-placeholder span { font-size: .83rem; color: var(--text-light); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--text-dark); }
.footer-top { padding: 60px 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 40px; }
.footer-logo { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.footer-logo i { font-size: 2rem; color: var(--gold-light); }
.footer-logo span { display: block; font-size: .95rem; font-weight: 700; color: var(--white); line-height: 1.2; }
.footer-logo small { font-size: .72rem; color: var(--gold-light); }
.footer-brand > p { font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.75; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.55); font-size: .88rem; transition: var(--transition); }
.footer-social a:hover { background: var(--green-mid); color: var(--white); }
.footer-links h4, .footer-contact h4 { font-size: .83rem; font-weight: 700; color: var(--white); margin-bottom: 18px; text-transform: uppercase; letter-spacing: 1.5px; position: relative; padding-bottom: 10px; }
.footer-links h4::after, .footer-contact h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 28px; height: 2px; background: var(--gold); }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .83rem; color: rgba(255,255,255,.55); transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-links a::before { content: '\203A'; color: var(--gold); }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-contact ul { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: .83rem; color: rgba(255,255,255,.55); }
.footer-contact i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.38); }
.footer-arabic { font-family: 'Amiri', serif; color: var(--gold-light) !important; font-size: .9rem !important; opacity: .65; }

/* ============================================================
   FLOATING ELEMENTS
   ============================================================ */
.whatsapp-float {
  position: fixed; bottom: 88px; right: 24px; z-index: 999;
  width: 56px; height: 56px; background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,.4); transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.6); }
.wa-tooltip { position: absolute; right: 66px; background: rgba(0,0,0,.72); color: var(--white); font-size: .75rem; padding: 5px 12px; border-radius: 6px; white-space: nowrap; opacity: 0; pointer-events: none; transition: var(--transition); }
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

.back-to-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 44px; height: 44px; background: var(--green-mid); border: none;
  border-radius: 50%; color: var(--white); font-size: .95rem; cursor: pointer;
  box-shadow: var(--shadow); transition: var(--transition);
  opacity: 0; pointer-events: none;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--green-dark); transform: translateY(-3px); }

/* Nav overlay (mobile) */
.nav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 998; display: none; backdrop-filter: blur(2px); }
.nav-overlay.active { display: block; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .visi-misi { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .org-row-bidang { gap: 8px; }
  /* dashboard hero */
  #home { padding: 90px 0 50px; }
  .hero-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .org-wrapper  { padding: 20px 12px; }
  .org-node     { min-width: 76px; padding: 10px 8px; }
  .org-role     { font-size: .68rem; }
  .org-icon     { width: 36px; height: 36px; font-size: .85rem; }
  .section { padding: 68px 0; }
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed; top: 0; right: -100%;
    width: min(300px, 84vw); height: 100vh;
    background: var(--green-dark); flex-direction: column;
    padding: 80px 20px 24px; gap: 4px;
    transition: right .35s ease; box-shadow: -10px 0 40px rgba(0,0,0,.3);
    z-index: 999; overflow-y: auto;
  }
  .nav-menu.active { right: 0; }
  .nav-link { padding: 12px 16px; border-radius: 8px; font-size: .93rem; }
  .nav-donate { margin-top: 8px; text-align: center; border-radius: 8px !important; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-content { flex-direction: column; text-align: center; }
  .mini-progress { max-width: 100%; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .urgency-card { flex-direction: column; }
  .progress-header { flex-direction: column; }
  .progress-info.right { text-align: left; }
  .budget-table th:first-child, .budget-table td:first-child { display: none; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .cta-box { padding: 40px 22px; }
}

@media (max-width: 480px) {
  .donation-amounts { justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .units-grid { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .highlight-grid { grid-template-columns: repeat(2, 1fr); }
  .bank-cards { grid-template-columns: 1fr; }
  /* dashboard hero */
  .stat-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .stat-glass { padding: 14px 8px; }
  .stat-glass .val { font-size: 1.2rem; }
  .hero-prog-card { padding: 20px 16px; }
  .cta-hero-row { flex-direction: column; }
  .btn-hero-primary, .btn-hero-secondary { flex: unset; width: 100%; }
}
