/* ============================================================
   MONITOR DASHBOARD — повністю самодостатні стилі
   Кольори: navy #0e1e40, gold #d7a40a, light #f8f9fb
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0e1e40;
  --navy-deep:  #0a1733;
  --gold:       #d7a40a;
  --gold-hover: #b8890a;
  --light:      #f8f9fb;
  --white:      #ffffff;
  --text:       #374151;
  --muted:      #6b7280;
  --border:     #e5e7eb;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--light);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── HEADER ── */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-emblem {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  line-height: 1.2;
}
.logo-text span {
  font-size: .72rem;
  font-weight: 400;
  color: rgba(255,255,255,.6);
}
.nav-list {
  display: flex;
  list-style: none;
  gap: 4px;
}
.nav-list a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: .85rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color .2s, background .2s;
}
.nav-list a:hover {
  color: #fff;
  background: rgba(255,255,255,.1);
}
.lang-toggle {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 6px;
  padding: 5px 10px;
  cursor: pointer;
  font-size: .8rem;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  font-family: 'Montserrat', sans-serif;
  transition: border-color .2s, color .2s;
}
.lang-toggle:hover { border-color: var(--gold); color: var(--gold); }

.btn-support {
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 20px;
  transition: background .2s;
  white-space: nowrap;
}
.btn-support:hover { background: var(--gold-hover); }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding: 72px 0 64px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: rgba(215,164,10,.18);
  color: var(--gold);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(215,164,10,.3);
  margin-bottom: 20px;
}
.hero-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 18px;
}
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
  font-size: .9rem;
  padding: 12px 28px;
  border-radius: 24px;
  transition: background .2s, transform .1s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-hover); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-weight: 600;
  font-size: .9rem;
  padding: 12px 28px;
  border-radius: 24px;
  border: 1.5px solid rgba(255,255,255,.35);
  transition: border-color .2s, color .2s;
  display: inline-block;
}
.btn-outline:hover { border-color: rgba(255,255,255,.7); color: #fff; }

.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-placeholder {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  width: 100%;
  height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,.5);
  font-size: .85rem;
}
.image-placeholder-icon { font-size: 2.5rem; }

/* ── STATS ── */
.stats {
  background: var(--white);
  padding: 52px 0;
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  background: var(--light);
  border-radius: 12px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  text-align: center;
  transition: box-shadow .2s;
}
.stat-card:hover { box-shadow: 0 4px 16px rgba(14,30,64,.1); }
.stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 4px;
}
.stat-desc {
  font-size: .75rem;
  color: var(--muted);
}

/* ── SECTION HEADER ── */
.publications { padding: 60px 0; background: var(--white); }
.section-header { margin-bottom: 36px; }
.section-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.section-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
}

/* ── CHARTS ── */
.charts-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.chart-card {
  background: var(--light);
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 28px;
  box-shadow: 0 2px 8px rgba(14,30,64,.05);
  position: relative;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.chart-card:hover {
  transform: translateY(-3px);
  border-color: rgba(215,164,10,.55);
  box-shadow: 0 12px 30px rgba(14,30,64,.12);
}
.chart-card.is-focused {
  grid-column: 1 / -1;
  background: #fff;
  border-color: var(--gold);
  box-shadow: 0 18px 42px rgba(14,30,64,.16);
}
.chart-card.is-dimmed {
  opacity: .42;
}
.chart-card.is-focused .chart-wrap {
  height: 420px;
}
.chart-card.is-focused .chart-wrap--doughnut {
  height: 360px;
}
.chart-card.is-focused .chart-wrap--bar {
  height: 430px;
}
.chart-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.chart-title {
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin: 0;
}
.chart-focus-btn {
  border: 1.5px solid rgba(14,30,64,.16);
  background: #fff;
  color: var(--navy);
  border-radius: 999px;
  padding: 7px 12px;
  font-family: inherit;
  font-size: .72rem;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.chart-focus-btn:hover,
.chart-focus-btn:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  outline: none;
}
.chart-wrap { position: relative; height: 260px; }
.chart-wrap--doughnut { height: 220px; }
.chart-wrap--bar { height: 280px; }
.chart-caption {
  margin-top: 14px;
  padding: 10px 12px;
  border-left: 3px solid rgba(215,164,10,.45);
  border-radius: 0 8px 8px 0;
  background: rgba(255,255,255,.7);
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.55;
}
.chart-empty {
  text-align: center;
  color: var(--muted);
  font-size: .85rem;
  padding: 2rem 0;
}
.hidden { display: none !important; }

/* Severity legend */
.severity-legend {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  font-size: .76rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.severity-legend li { display: flex; align-items: center; gap: 8px; }
.sev {
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 3px;
  flex-shrink: 0;
}
.sev-0 { background: #b0bec5; }
.sev-1 { background: #fff176; border: 1px solid #ccc; }
.sev-2 { background: #ffb74d; }
.sev-3 { background: #ef5350; }
.sev-4 { background: var(--navy); }

/* ── CTA ── */
.cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding: 64px 0;
  text-align: center;
}
.cta-title {
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.cta-text {
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  margin-bottom: 28px;
}
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── DISCLAIMER ── */
.monitor-disclaimer {
  background: var(--light);
  padding: 18px 0;
  border-top: 1px solid var(--border);
}
.monitor-disclaimer p {
  font-size: .8rem;
  color: var(--muted);
  max-width: 820px;
  line-height: 1.6;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--navy);
  padding: 52px 0 28px;
  color: rgba(255,255,255,.65);
  font-size: .85rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo-text { color: #fff; }
.footer-brand > p {
  margin-top: 12px;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.78);
  text-decoration: none;
  transition: background .2s, border-color .2s, color .2s, transform .2s;
}

.footer-social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.footer-social-link:focus-visible {
  outline: 3px solid rgba(215,164,10,.35);
  outline-offset: 3px;
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
}

.footer-heading {
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 14px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: .82rem;
  transition: color .2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: .76rem;
  color: rgba(255,255,255,.35);
  flex-wrap: wrap;
}

/* ── LOADING ── */
.loading-overlay {
  position: fixed;
  top: 86px;
  left: 50%;
  right: auto;
  bottom: auto;
  transform: translateX(-50%);
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(14,30,64,.08);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(14,30,64,.14);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  z-index: 140;
  padding: .65rem 1rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy);
  transition: opacity .25s ease, transform .25s ease;
}
.loading-overlay.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
}
.spinner {
  width: 18px;
  height: 18px;
  border: 3px solid rgba(14,30,64,.12);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 640px) {
  .loading-overlay {
    top: 78px;
    width: calc(100% - 32px);
    max-width: 320px;
  }
  .chart-card-header {
    align-items: flex-start;
    flex-direction: column;
  }
  .chart-focus-btn {
    width: 100%;
  }
  .chart-card.is-focused .chart-wrap,
  .chart-card.is-focused .chart-wrap--doughnut,
  .chart-card.is-focused .chart-wrap--bar {
    height: 340px;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-list { display: none; }
  .charts-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 1.7rem; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}

/* ── REPORT PAGE ── */
.report-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding: 56px 0 48px;
}
.report-hero-inner { max-width: 680px; }

.report-section { padding: 56px 0 72px; }

.report-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}

/* form */
.report-form-wrap {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(215,164,10,.28);
  border-top: 5px solid var(--gold);
  padding: 40px;
  box-shadow: 0 18px 48px rgba(14,30,64,.1);
}
.report-form-heading {
  max-width: 680px;
  margin-bottom: 24px;
}
.report-form-heading span {
  display: inline-block;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.report-form-heading h2 {
  color: var(--navy);
  font-size: 1.55rem;
  line-height: 1.2;
  margin-bottom: 8px;
}
.report-form-heading p {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.65;
}
.report-guidelines {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 30px;
}
.report-guideline-card {
  background: linear-gradient(180deg, rgba(215,164,10,.1), rgba(255,255,255,.92));
  border: 1px solid rgba(215,164,10,.24);
  border-radius: 12px;
  padding: 16px;
}
.guideline-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 24px;
  padding: 0 9px;
  background: var(--navy);
  color: #fff;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.report-guideline-card h3 {
  color: var(--navy);
  font-size: .92rem;
  line-height: 1.35;
  margin-bottom: 7px;
}
.report-guideline-card p {
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.55;
}
.form-progress {
  background: linear-gradient(135deg, rgba(14,30,64,.04), rgba(215,164,10,.1));
  border: 1px solid rgba(14,30,64,.08);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 26px;
}
.form-progress-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}
.form-progress-label {
  color: var(--navy);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.form-progress-count {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
  text-align: right;
}
.form-progress-track {
  width: 100%;
  height: 8px;
  overflow: hidden;
  background: rgba(14,30,64,.1);
  border-radius: 999px;
}
.form-progress-bar {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), #f1c94b);
  border-radius: inherit;
  transition: width .22s ease;
}
.form-progress.is-complete {
  border-color: rgba(215,164,10,.55);
  box-shadow: 0 10px 26px rgba(215,164,10,.14);
}
.form-progress.is-complete .form-progress-count {
  color: var(--navy);
}
.form-group { margin-bottom: 24px; }
fieldset.form-group { border: none; padding: 0; margin-inline: 0; min-inline-size: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-label {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.req { color: var(--gold); }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: .9rem;
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--light);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(14,30,64,.1);
  background: var(--white);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-hint {
  display: block;
  margin-top: 8px;
  padding-left: 10px;
  border-left: 3px solid rgba(215,164,10,.34);
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.55;
}
.form-hint--section {
  margin: -1px 0 12px;
}
.form-error { font-size: .78rem; color: #ef5350; margin-top: 5px; min-height: 1em; }

/* severity radio */
.sev-radio-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.sev-radio {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: .85rem;
  color: var(--text);
  min-height: 84px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: var(--light);
  transition: border-color .15s, background .15s, box-shadow .15s, transform .15s;
}
.sev-radio:hover {
  background: #fff;
  border-color: rgba(215,164,10,.55);
  transform: translateY(-1px);
}
.sev-radio input { display: none; }
.sev-radio input:checked ~ .sev-copy .sev-title { font-weight: 800; }
.sev-radio:has(input:checked) {
  border-color: var(--navy);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(14,30,64,.08);
}
.sev-dot {
  width: 16px;
  height: 16px;
  border-radius: 5px;
  flex-shrink: 0;
  margin-top: 3px;
}
.sev-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}
.sev-title {
  color: var(--navy);
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.25;
}
.sev-desc {
  color: var(--muted);
  font-size: .74rem;
  line-height: 1.45;
}

/* consent */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: .85rem;
  color: var(--text);
  line-height: 1.5;
}
.form-check input { margin-top: 3px; accent-color: var(--navy); }
.form-check a { color: var(--navy); }

/* submit */
.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  background: var(--navy);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background .2s, transform .1s;
  margin-top: 8px;
}
.btn-submit:hover { background: var(--navy-deep); transform: translateY(-1px); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.btn-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}

/* success / error */
.success-msg {
  text-align: center;
  padding: 48px 24px;
}
.success-icon {
  width: 56px;
  height: 56px;
  background: #e8f5e9;
  color: #2e7d32;
  border-radius: 50%;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.success-msg h2 { font-size: 1.4rem; color: var(--navy); margin-bottom: 8px; }
.success-msg p  { color: var(--muted); font-size: .9rem; }
.error-msg {
  background: #fff3f3;
  border: 1px solid #ffcdd2;
  border-radius: 8px;
  padding: 14px 18px;
  font-size: .85rem;
  color: #c62828;
  margin-top: 16px;
}
.error-msg a { color: #c62828; }

/* sidebar */
.report-sidebar { display: flex; flex-direction: column; gap: 16px; }
.sidebar-card {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 22px;
}
.sidebar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 10px;
  background: rgba(215,164,10,.12);
  border: 1px solid rgba(215,164,10,.28);
  color: var(--gold);
}
.sidebar-icon svg {
  width: 21px;
  height: 21px;
}
.sidebar-card h3 {
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.sidebar-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sidebar-card ul li {
  font-size: .8rem;
  color: var(--muted);
  padding-left: 14px;
  position: relative;
}
.sidebar-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: .75rem;
}
.sidebar-card p { font-size: .8rem; color: var(--muted); line-height: 1.6; }

.sidebar-card--donate {
  background: linear-gradient(135deg, var(--navy) 0%, #0a1733 100%);
  border-color: var(--gold);
  border-width: 2px;
}
.sidebar-card--donate .sidebar-icon {
  background: rgba(255,255,255,.08);
  border-color: rgba(215,164,10,.42);
  color: var(--gold);
}
.sidebar-card--donate h3 { color: #fff; font-size: .95rem; }
.sidebar-card--donate p  { color: rgba(255,255,255,.72); }
.sidebar-card--donate ul li { color: rgba(255,255,255,.72); }
.btn-donate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 16px;
  transition: background .2s, transform .1s;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}
.btn-donate:hover { background: #c8960a; transform: translateY(-1px); }

@media (max-width: 768px) {
  .report-layout { grid-template-columns: 1fr; }
  .report-guidelines { grid-template-columns: 1fr; }
  .sev-radio-group { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .report-form-wrap { padding: 24px; }
  .report-form-heading h2 { font-size: 1.3rem; }
  .form-progress-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
  .form-progress-count { text-align: left; }
}

/* ── BURGER MENU ── */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.burger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: rgba(255,255,255,.85);
  border-radius: 2px;
  transition: transform .3s, opacity .3s, width .3s;
  transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; width: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 0 32px;
}
.mobile-menu a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 14px 24px;
  width: 100%;
  text-align: center;
  border-radius: 10px;
  transition: background .2s, color .2s;
}
.mobile-menu a:hover { background: rgba(255,255,255,.08); color: #fff; }
.mobile-menu .mobile-support {
  margin-top: 24px;
  background: var(--gold);
  color: var(--navy) !important;
  border-radius: 24px !important;
  font-weight: 800 !important;
}
.mobile-menu .mobile-support:hover { background: var(--gold-hover) !important; }
.mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: transparent;
  border: none;
  color: rgba(255,255,255,.7);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: color .2s;
}
.mobile-close:hover { color: #fff; }

@media (max-width: 768px) {
  .burger { display: flex; }
  .nav-list { display: none !important; }
  .lang-toggle { display: none; }
}
