:root {
  --accent-red: #dc2626;
  --accent-red-deep: #991b1b;
  --accent-red-light: #ef4444;
  --accent-rose: #e11d48;
  --alert-red: #ef4444;
  --text-primary: #111827;
  --text-secondary: #4b5563;
  --bg-light: #fffafb;
  --accent-cyan: #dc2626;
  --accent-blue: #b91c1c;
  --glass-bg: rgba(255, 255, 255, 0.5);
  --glass-bg-strong: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.65);
  --glass-shadow: 0 8px 32px rgba(153, 27, 27, 0.12);
  --glass-highlight: rgba(255, 255, 255, 0.9);
  --glass-blur: 24px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg-light);
  color: var(--text-primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  background-image:
    radial-gradient(at 12% 8%, rgba(254, 226, 226, 0.5) 0px, transparent 55%),
    radial-gradient(at 88% 18%, rgba(255, 228, 230, 0.42) 0px, transparent 55%),
    radial-gradient(at 50% 100%, rgba(255, 200, 205, 0.22) 0px, transparent 60%),
    radial-gradient(at 5% 90%, rgba(220, 38, 38, 0.06) 0px, transparent 45%);
  background-attachment: fixed;
}

/* ---------------- Bangladesh map watermark — sitewide ---------------- */
/* A single fixed watermark layer sits behind every page (home, archive,
   admin, auth) so the map reads as the site's identity, not just a login
   decoration. Auth screens additionally get a bigger, more central map
   via .auth-shell for a dedicated hero moment. */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url('/images/bd-map-bg.png');
  background-repeat: no-repeat;
  background-position: 108% 8%;
  background-size: 620px;
  opacity: 0.16;
  filter: saturate(1.4);
  pointer-events: none;
  z-index: 0;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url('/images/bd-map-bg.png');
  background-repeat: no-repeat;
  background-position: -10% 112%;
  background-size: 480px;
  opacity: 0.1;
  filter: saturate(1.4);
  pointer-events: none;
  z-index: 0;
  transform: scaleX(-1);
}
body > * { position: relative; z-index: 1; }

@media (max-width: 860px) {
  body::before { background-size: 380px; background-position: 130% 4%; }
  body::after { background-size: 300px; background-position: -20% 108%; }
}

/* ---------------- Bangladesh map watermark (auth screens hero) ---------------- */
.auth-shell {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.auth-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/images/bd-map-bg.png');
  background-repeat: no-repeat;
  background-position: center 55%;
  background-size: min(760px, 92%);
  filter: blur(1.5px) saturate(1.5);
  opacity: 0.85;
  pointer-events: none;
  z-index: 0;
  animation: mapDrift 18s ease-in-out infinite alternate;
}
@keyframes mapDrift {
  0%   { transform: scale(1) translateY(0); }
  100% { transform: scale(1.035) translateY(-10px); }
}
.auth-shell > * { position: relative; z-index: 1; }

h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', serif; margin: 0; }
a { text-decoration: none; color: inherit; }
.bangla-text {
  font-family: 'Noto Sans Bengali', sans-serif;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.01em;
  font-size: 1.12em;
  line-height: 1.65;
}
.bangla-text strong, .bangla-text b { font-weight: 900; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 1.25rem; }

/* ==================================================================
   Liquid Glass core
   A refined "wet glass" system: layered blur + saturation, a soft
   top sheen, a hairline rim-light border, and a subtle inner glow —
   tuned so every panel reads as poured glass rather than a flat card.
   ================================================================== */
.glass-panel, .glass-card, .glass-nav, .glass-btn, .glass-btn-secondary,
.glass-input, .glass-modal, .glass-sidebar {
  backdrop-filter: blur(var(--glass-blur)) saturate(180%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(180%);
}

.glass-panel {
  position: relative;
  background:
    linear-gradient(155deg, rgba(255,255,255,0.78) 0%, var(--glass-bg) 42%, rgba(255,255,255,0.3) 100%);
  border: 1px solid var(--glass-border);
  border-radius: 26px;
  box-shadow:
    var(--glass-shadow),
    0 1.5px 0 rgba(255,255,255,0.9) inset,
    0 0 0 1px rgba(255,255,255,0.15) inset,
    inset 0 0 48px rgba(255,255,255,0.18);
  overflow: hidden;
  isolation: isolate;
}
.glass-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(180deg, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0) 100%);
  pointer-events: none;
  border-radius: 26px 26px 0 0;
  z-index: -1;
}
.glass-panel::after {
  content: '';
  position: absolute;
  top: -40%; left: -20%;
  width: 70%; height: 90%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0) 65%);
  pointer-events: none;
  transform: rotate(-12deg);
  z-index: -1;
}

.glass-card {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  box-shadow: var(--glass-shadow), 0 1px 0 rgba(255,255,255,0.85) inset;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease, background .3s ease;
  overflow: hidden;
}
.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 45%;
  background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}
.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(153, 27, 27, 0.2), 0 1px 0 rgba(255,255,255,0.9) inset;
  background: var(--glass-bg-strong);
}

.glass-nav {
  background: rgba(255, 255, 255, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 24px rgba(153, 27, 27, 0.08), 0 1px 0 rgba(255,255,255,0.7) inset;
}

.glass-btn {
  position: relative;
  background: linear-gradient(135deg, rgba(220,38,38,0.94), rgba(153,27,27,0.94));
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  transition: transform .2s cubic-bezier(.2,.8,.2,1), box-shadow .2s ease, filter .2s ease;
  box-shadow: 0 6px 18px rgba(220,38,38,0.35), inset 0 1px 0 rgba(255,255,255,0.45), inset 0 -6px 14px rgba(0,0,0,0.12);
  cursor: pointer;
  overflow: hidden;
}
.glass-btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}
.glass-btn:hover { transform: translateY(-2px); filter: brightness(1.08); box-shadow: 0 10px 26px rgba(220,38,38,0.45), inset 0 1px 0 rgba(255,255,255,0.45); }
.glass-btn:active { transform: translateY(0); filter: brightness(0.98); }

.glass-btn-secondary {
  background: var(--glass-bg);
  color: var(--accent-red-deep);
  border: 1px solid rgba(220,38,38,0.35);
  transition: all .2s ease;
  cursor: pointer;
}
.glass-btn-secondary:hover { background: var(--glass-bg-strong); transform: translateY(-2px); }

.glass-input {
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(220,38,38,0.2);
  border-radius: 14px;
  padding: 0.75rem 1rem;
  width: 100%;
  color: var(--text-primary);
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
  font-family: inherit;
  font-size: 0.95rem;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.04);
}
.glass-input:focus {
  outline: none;
  border-color: var(--accent-red);
  background: rgba(255,255,255,0.85);
  box-shadow: 0 0 0 3px rgba(220,38,38,0.12), inset 0 1px 3px rgba(0,0,0,0.04);
}

.glass-sidebar {
  background: rgba(255,255,255,0.68);
  border-right: 1px solid rgba(255,255,255,0.5);
  box-shadow: 4px 0 24px rgba(153,27,27,0.08);
}

.glass-modal {
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}

/* Badge system */
.status-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
  backdrop-filter: blur(4px);
}
.status-verified { background: rgba(22, 163, 74, 0.1); border: 1px solid #16a34a; color: #15803d; }
.status-pending { background: rgba(245, 158, 11, 0.1); border: 1px solid #f59e0b; color: #b45309; }
.status-rejected { background: rgba(153, 27, 27, 0.1); border: 1px solid #991b1b; color: #991b1b; }
.status-neutral { background: rgba(220, 38, 38, 0.1); border: 1px solid #dc2626; color: #b91c1c; }

.gradient-text {
  background: linear-gradient(135deg, #b91c1c 0%, #dc2626 50%, #991b1b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------------- Layout helpers ---------------- */
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

.btn-block { width: 100%; padding: 0.85rem 1.25rem; border-radius: 14px; font-weight: 600; text-align: center; display: inline-block; }

.form-group { margin-bottom: 1.1rem; }
.form-label { display: block; margin-bottom: 0.4rem; font-weight: 600; font-size: 0.9rem; color: var(--text-secondary); }

.divider-text {
  display: flex; align-items: center; gap: 0.75rem;
  color: var(--text-secondary); font-size: 0.85rem; margin: 1.25rem 0;
}
.divider-text::before, .divider-text::after {
  content: ''; flex: 1; height: 1px; background: rgba(0,0,0,0.1);
}

.google-btn {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  background: rgba(255,255,255,0.8); border: 1px solid rgba(0,0,0,0.12);
  border-radius: 14px; padding: 0.75rem 1.25rem; font-weight: 600; color: #374151;
  transition: all .2s ease; cursor: pointer; width: 100%;
}
.google-btn:hover { background: #fff; box-shadow: 0 6px 18px rgba(0,0,0,0.1); transform: translateY(-1px); }

.alert { padding: 0.85rem 1.1rem; border-radius: 14px; font-size: 0.9rem; margin-bottom: 1rem; }
.alert-error { background: rgba(220,38,38,0.08); border: 1px solid rgba(220,38,38,0.3); color: #991b1b; }
.alert-success { background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.3); color: #065f46; }

/* Admin layout */
.admin-shell { display: flex; min-height: 100vh; }
.admin-main { flex: 1; padding: 1.5rem 2rem; }
.admin-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }

table.data-table { width: 100%; border-collapse: collapse; }
table.data-table th, table.data-table td {
  padding: 0.75rem 1rem; text-align: left; border-bottom: 1px solid rgba(0,0,0,0.06); font-size: 0.9rem;
}
table.data-table th { font-weight: 700; color: var(--text-secondary); text-transform: uppercase; font-size: 0.75rem; letter-spacing: 0.04em; }

@media (max-width: 768px) {
  .admin-shell { flex-direction: column; }
  .admin-main { padding: 1rem; }
}


/* Report subject picker */
.report-type-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.75rem;}
.report-type-card{display:flex;align-items:center;gap:.65rem;padding:.85rem 1rem;border:1px solid rgba(148,163,184,.28);border-radius:14px;background:rgba(255,255,255,.75);cursor:pointer;transition:.18s ease;font-size:.92rem;color:#1f2937;}
.report-type-card:hover{transform:translateY(-1px);border-color:rgba(185,28,28,.35);}
.report-type-card input{accent-color:#b91c1c;}
.report-type-card:has(input:checked){border-color:#b91c1c;background:rgba(254,242,242,.95);box-shadow:0 0 0 2px rgba(185,28,28,.08);}
@media (max-width:640px){.report-type-grid{grid-template-columns:1fr;}}

/* ==================================================================
   Home hero — distinctive split layout, map-anchored
   ================================================================== */
.hero-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
  min-height: 74vh;
  padding: 2rem 0 2rem;
}
.hero-eyebrow-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 0.9rem 0.35rem 0.5rem;
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--accent-red-deep);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.hero-eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent-red);
  box-shadow: 0 0 0 4px rgba(220,38,38,0.15);
  flex-shrink: 0;
}
.hero-title {
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  line-height: 1.22;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.hero-sub {
  color: var(--text-secondary);
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 34rem;
  margin-bottom: 0.6rem;
}
.hero-tagline {
  color: #9ca3af;
  font-size: 0.92rem;
  margin-bottom: 2.2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-hotline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.4rem;
  border-radius: 14px;
  font-weight: 700;
  color: var(--accent-red-deep);
  background: rgba(220,38,38,0.06);
  border: 1px dashed rgba(220,38,38,0.35);
}
.hero-hotline .num { font-family: 'Playfair Display', serif; font-size: 1.05rem; letter-spacing: 0.02em; }

.announcement-strip {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 1.1rem;
  border-radius: 14px;
  margin-top: 1.75rem;
  margin-bottom: -0.5rem;
  font-size: 0.88rem;
  color: var(--accent-red-deep);
  background: rgba(220,38,38,0.07);
  border: 1px solid rgba(220,38,38,0.18);
}
.announcement-strip .dot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
  background: var(--accent-red);
  box-shadow: 0 0 0 3px rgba(220,38,38,0.15);
}

.hero-map-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 460px;
}
.hero-map-stage svg { position: relative; z-index: 2; }
.hero-map-glow {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220,38,38,0.16) 0%, rgba(220,38,38,0) 70%);
  filter: blur(6px);
  z-index: 0;
  animation: pulseGlow 5s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}
.hero-stat-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  padding: 0.65rem 1rem;
  border-radius: 16px;
  min-width: 108px;
  animation: floatChip 6s ease-in-out infinite;
}
.hero-stat-chip .num { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700; color: var(--accent-red-deep); line-height: 1; }
.hero-stat-chip .lbl { font-size: 0.72rem; color: var(--text-secondary); margin-top: 0.3rem; }
@keyframes floatChip {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-stat-row {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  margin-top: 1.75rem;
}
.hero-stat-row .chip {
  padding: 0.75rem 0.5rem;
  border-radius: 14px;
  text-align: center;
}
.hero-stat-row .num { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--accent-red-deep); line-height: 1; }
.hero-stat-row .lbl { font-size: 0.66rem; color: var(--text-secondary); margin-top: 0.3rem; }

@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; min-height: auto; padding: 1.5rem 0 1rem; text-align: center; }
  .hero-sub, .hero-eyebrow-mark, .announcement-strip { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-map-stage { min-height: 300px; order: -1; }
  .hero-stat-chip { display: none; }
  .hero-stat-row { display: grid; }
}

/* Home sections */
.section-heading {
  display: flex; align-items: baseline; gap: 0.85rem; margin-bottom: 1.75rem;
}
.section-heading .idx {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--accent-red);
  opacity: 0.55;
}
.section-heading h2 { font-size: 1.6rem; color: var(--text-primary); }

.stat-tile {
  position: relative;
  padding: 1.75rem 1.5rem;
  text-align: left;
}
.stat-tile .num { font-size: 2.3rem; font-weight: 800; font-family: 'Playfair Display', serif; }
.stat-tile .lbl { color: #6b7280; font-size: 0.9rem; margin-top: 0.35rem; }
.stat-tile .glyph { position: absolute; top: 1.5rem; right: 1.5rem; opacity: 0.18; }

/* ==================================================================
   Home — advanced public index sections
   ================================================================== */

/* CTA banner (report submission prompt) */
.cta-banner {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  padding: 2.5rem 2.25rem;
  background: linear-gradient(120deg, #7f1d1d 0%, #b91c1c 45%, #dc2626 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 20px 50px rgba(153, 27, 27, 0.35);
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('/images/bd-map-bg.png');
  background-repeat: no-repeat;
  background-position: 108% 50%;
  background-size: 340px;
  opacity: 0.14;
  filter: brightness(4);
  pointer-events: none;
}
.cta-banner-text { position: relative; z-index: 1; max-width: 34rem; }
.cta-banner-text .eyebrow { font-size: 0.8rem; letter-spacing: 0.06em; opacity: 0.85; margin-bottom: 0.5rem; display:block; }
.cta-banner-text h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); color: #fff; line-height: 1.4; margin-bottom: 0.5rem; }
.cta-banner-text p { font-size: 0.92rem; opacity: 0.88; line-height: 1.7; }
.cta-banner-actions { position: relative; z-index: 1; display: flex; gap: 0.85rem; flex-wrap: wrap; }
.cta-btn-light {
  background: #fff; color: #991b1b; font-weight: 700;
  padding: 0.85rem 1.75rem; border-radius: 14px; border: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  transition: transform .2s ease, box-shadow .2s ease;
  display: inline-block;
}
.cta-btn-light:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(0,0,0,0.24); }
.cta-btn-ghost {
  background: rgba(255,255,255,0.12); color: #fff; font-weight: 600;
  padding: 0.85rem 1.75rem; border-radius: 14px; border: 1px solid rgba(255,255,255,0.45);
  transition: all .2s ease; display: inline-block;
}
.cta-btn-ghost:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); }

/* Filter chip row (case type quick filters on home) */
.filter-chip-row { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
.filter-chip {
  padding: 0.5rem 1.1rem; border-radius: 999px; font-size: 0.85rem; font-weight: 600;
  background: var(--glass-bg); border: 1px solid rgba(220,38,38,0.2); color: var(--text-secondary);
  transition: all .18s ease; cursor: pointer;
}
.filter-chip:hover, .filter-chip.active { background: linear-gradient(135deg, rgba(220,38,38,0.94), rgba(153,27,27,0.94)); color: #fff; border-color: transparent; transform: translateY(-1px); }

/* Case card media */
.case-card-media {
  width: 100%; height: 150px; border-radius: 14px; margin-bottom: 0.9rem;
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(220,38,38,0.12); overflow: hidden;
}
.case-card-media img { width: 100%; height: 100%; object-fit: cover; }
.case-card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 0.9rem; padding-top: 0.85rem; border-top: 1px dashed rgba(148,163,184,0.35); font-size: 0.78rem; color: #9ca3af; }
.case-card-foot .readmore { color: var(--accent-red-deep); font-weight: 700; display: inline-flex; align-items: center; gap: 0.25rem; }

/* Statistics band on home */
.stat-band { border-radius: 28px; overflow: hidden; background: linear-gradient(135deg, #111827 0%, #1f2937 100%); color: #fff; padding: 2.5rem; position: relative; }
.stat-band::before {
  content: ''; position: absolute; inset: 0;
  background-image: url('/images/bd-map-bg.png'); background-repeat: no-repeat;
  background-position: 96% 8%; background-size: 300px; opacity: 0.08; pointer-events: none;
}
.stat-band-top { position: relative; z-index: 1; display: flex; gap: 1rem; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; margin-bottom: 2rem; }
.stat-band-top h2 { color: #fff; font-size: 1.5rem; }
.stat-band-top p { color: rgba(255,255,255,0.6); font-size: 0.85rem; max-width: 30rem; }
.stat-band-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 2rem; }
.stat-band-tile { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 18px; padding: 1.25rem 1rem; text-align: center; }
.stat-band-tile .num { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 800; color: #fca5a5; }
.stat-band-tile .lbl { font-size: 0.78rem; color: rgba(255,255,255,0.65); margin-top: 0.3rem; }
.stat-bars { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.stat-bar-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.85rem; font-size: 0.82rem; }
.stat-bar-row .name { width: 38%; color: rgba(255,255,255,0.75); flex-shrink: 0; }
.stat-bar-track { flex: 1; height: 8px; border-radius: 8px; background: rgba(255,255,255,0.08); overflow: hidden; }
.stat-bar-fill { height: 100%; border-radius: 8px; background: linear-gradient(90deg, #dc2626, #fca5a5); }
.stat-bar-row .val { width: 12%; text-align: right; color: rgba(255,255,255,0.55); font-size: 0.75rem; flex-shrink: 0; }
@media (max-width: 860px) {
  .stat-band-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-bars { grid-template-columns: 1fr; }
}

/* How it works steps */
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.how-step { padding: 1.85rem 1.5rem; position: relative; }
.how-step .step-num {
  width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(220,38,38,0.94), rgba(153,27,27,0.94)); color: #fff;
  font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.1rem; margin-bottom: 1.1rem;
  box-shadow: 0 8px 18px rgba(220,38,38,0.3);
}
.how-step h3 { font-size: 1.02rem; color: #111827; margin-bottom: 0.5rem; }
.how-step p { color: #6b7280; font-size: 0.88rem; line-height: 1.7; }
@media (max-width: 860px) { .how-steps { grid-template-columns: 1fr; } }

/* Trust / transparency strip */
.trust-strip { display: flex; gap: 1.25rem; flex-wrap: wrap; justify-content: center; padding: 2rem 0; }
.trust-item { display: flex; align-items: center; gap: 0.6rem; color: var(--text-secondary); font-size: 0.85rem; }
.trust-item svg { color: var(--accent-red); flex-shrink: 0; }

/* Newsletter / helpline callout */
.helpline-callout {
  border-radius: 24px; padding: 2rem; text-align: center;
  background: linear-gradient(135deg, #fff7ed 0%, #fef2f2 100%);
  border: 1px solid rgba(220,38,38,0.15);
}
.helpline-callout h3 { font-size: 1.2rem; color: #111827; margin-bottom: 0.5rem; }
.helpline-callout p { color: #6b7280; font-size: 0.9rem; margin-bottom: 1.25rem; }

/* ==================================================================
   Advanced footer
   ================================================================== */
.site-footer {
  position: relative;
  margin-top: 5rem;
  padding-top: 4rem;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(254,242,242,0.6) 100%);
  border-top: 1px solid rgba(220,38,38,0.1);
}
.site-footer::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('/images/bd-map-bg.png');
  background-repeat: no-repeat;
  background-position: 100% 0%;
  background-size: 420px;
  opacity: 0.05;
  pointer-events: none;
}
.footer-top-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
.footer-brand-col p { color: #4b5563; font-size: 0.9rem; line-height: 1.75; max-width: 30rem; margin: 1rem 0; }
.footer-disclaimer { color: #9ca3af; font-size: 0.76rem; line-height: 1.7; padding: 0.85rem 1rem; background: rgba(255,255,255,0.5); border: 1px solid rgba(148,163,184,0.2); border-radius: 12px; }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.25rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 11px; display: flex; align-items: center; justify-content: center;
  background: var(--glass-bg); border: 1px solid rgba(220,38,38,0.2); color: var(--accent-red-deep);
  transition: all .18s ease;
}
.footer-social a:hover { background: linear-gradient(135deg, rgba(220,38,38,0.94), rgba(153,27,27,0.94)); color: #fff; transform: translateY(-2px); }
.footer-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif; color: #111827; font-weight: 700;
  margin-bottom: 1.1rem; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.65rem; font-size: 0.9rem; color: #4b5563; }
.footer-col ul a { transition: color .15s ease, padding-left .15s ease; display: inline-block; }
.footer-col ul a:hover { color: var(--accent-red-deep); padding-left: 3px; }
.footer-hotline-box {
  margin-top: 0.5rem; padding: 0.9rem 1rem; border-radius: 14px;
  background: rgba(220,38,38,0.06); border: 1px dashed rgba(220,38,38,0.3);
}
.footer-hotline-box .lbl { font-size: 0.72rem; color: var(--accent-red-deep); margin-bottom: 0.2rem; }
.footer-hotline-box .num { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: #111827; font-weight: 700; }
.footer-bottom {
  position: relative; z-index: 1;
  border-top: 1px solid rgba(220,38,38,0.1);
  padding: 1.5rem 0 2rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  font-size: 0.78rem; color: #6b7280;
}
.footer-bottom-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-bottom-links a:hover { color: var(--accent-red-deep); }
.footer-lang-badge { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.3rem 0.7rem; border-radius: 999px; background: var(--glass-bg); border: 1px solid rgba(220,38,38,0.15); font-size: 0.72rem; }
@media (max-width: 980px) {
  .footer-top-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .footer-top-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
