/* ===========================
   FONDPP.INFO — Gov Style
   =========================== */

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

:root {
  --blue:       #0060AE;
  --blue-dark:  #004A88;
  --blue-nav:   #005099;
  --blue-light: #E8F2FA;
  --white:      #FFFFFF;
  --bg:         #F4F7FA;
  --border:     #CDD5DE;
  --text:       #1A1A1A;
  --text-mid:   #444;
  --text-muted: #777;
  --red:        #C0392B;
  --max-w:      1160px;
}

html { scroll-behavior: smooth; }

body {
  font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
}

img { max-width: 100%; display: block; }
a  { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; color: var(--blue-dark); }
ul { list-style: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── TOP INFO BAR ── */
.topbar {
  background: var(--blue-dark);
  color: rgba(255,255,255,.85);
  font-size: .8rem;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.topbar-contacts { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar-item     { display: flex; align-items: center; gap: 5px; }
.topbar-item a   { color: rgba(255,255,255,.85); }
.topbar-item a:hover { color: #fff; text-decoration: underline; }

.topbar-social { display: flex; gap: 8px; }
.topbar-social a {
  color: rgba(255,255,255,.7);
  font-size: .78rem;
  border: 1px solid rgba(255,255,255,.25);
  padding: 2px 7px;
  border-radius: 2px;
}
.topbar-social a:hover { background: rgba(255,255,255,.15); color: #fff; text-decoration: none; }

/* ── HEADER ── */
.header {
  background: var(--white);
  border-bottom: 2px solid var(--blue);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 70px;
  gap: 24px;
}

.header-donate { margin-left: auto; }

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-icon {
  width: auto;
  height: 60px;
  background: none;
  display: block;
  border-radius: 0;
  flex-shrink: 0;
  object-fit: contain;
}

.logo-name {
  font-size: 1rem;
  font-weight: bold;
  color: var(--blue);
  line-height: 1.2;
  display: block;
}

.logo-sub {
  font-size: .7rem;
  color: var(--text-muted);
  letter-spacing: .02em;
  display: block;
}

.header-donate {
  background: var(--blue);
  color: #fff;
  padding: 8px 20px;
  font-size: .88rem;
  font-weight: bold;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.header-donate:hover { background: var(--blue-dark); text-decoration: none; color: #fff; }

/* ── NAV BAR ── */
.navbar {
  background: var(--blue-nav);
  border-bottom: 3px solid var(--blue-dark);
}

.navbar-inner {
  display: flex;
  align-items: stretch;
}

.navbar-inner a {
  display: block;
  padding: 12px 18px;
  font-size: .88rem;
  color: rgba(255,255,255,.9);
  border-right: 1px solid rgba(255,255,255,.12);
  transition: background .15s;
}
.navbar-inner a:hover,
.navbar-inner a.active {
  background: rgba(0,0,0,.15);
  color: #fff;
  text-decoration: none;
}

/* ── BURGER ── */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--blue);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--blue-nav);
  border-top: 1px solid rgba(255,255,255,.12);
}
.mobile-nav a {
  display: block;
  padding: 11px 20px;
  font-size: .9rem;
  color: rgba(255,255,255,.9);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-nav a:hover { background: rgba(0,0,0,.15); color: #fff; text-decoration: none; }
.mobile-nav.open { display: flex; }

/* ── PAGE HERO (inner) ── */
.page-hero {
  background: var(--blue);
  padding: 28px 0;
  color: #fff;
}

.page-hero-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 6px;
}

.page-hero-sub { font-size: .9rem; color: rgba(255,255,255,.8); }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  margin-top: 10px;
}
.breadcrumb a { color: rgba(255,255,255,.8); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb-sep { opacity: .5; }

/* ── HERO (main) ── */
.hero {
  background: var(--blue);
  color: #fff;
  padding: 48px 0;
  border-bottom: 3px solid var(--blue-dark);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 48px;
  align-items: center;
}

.hero-title {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.25;
  margin-bottom: 14px;
}

.hero-desc {
  font-size: .95rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 24px;
  max-width: 520px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.2);
}

.hero-stat {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  padding: 14px 16px;
  border-radius: 2px;
}

.hero-stat-num {
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  display: block;
}

.hero-stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.72);
  margin-top: 4px;
  display: block;
}

/* ── HERO FORM ── */
.hero-form-wrap { flex-shrink: 0; }

.hero-form {
  background: #fff;
  border-radius: 3px;
  padding: 24px 22px 20px;
  width: 340px;
  box-shadow: 0 4px 24px rgba(0,0,0,.18);
}

.hero-form-title {
  font-size: 1rem;
  font-weight: bold;
  color: var(--blue);
  margin-bottom: 4px;
  line-height: 1.3;
}

.hero-form-sub {
  font-size: .78rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.4;
}

.hf-group { margin-bottom: 14px; }

.hf-label {
  display: block;
  font-size: .78rem;
  font-weight: bold;
  color: var(--text);
  margin-bottom: 5px;
}

.hf-req { color: #c0392b; margin-left: 1px; }

.hf-input {
  width: 100%;
  padding: 9px 11px;
  border: 1px solid var(--border);
  font-size: .88rem;
  color: var(--text);
  background: var(--white);
  border-radius: 2px;
  outline: none;
  font-family: Arial, sans-serif;
  transition: border-color .15s;
}
.hf-input:focus { border-color: var(--blue); }
.hf-input.error { border-color: #c0392b; }
.hf-input::placeholder { color: #bbb; }

/* Phone with country picker */
.hf-phone-wrap { position: relative; display: flex; }

.hf-flag-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 10px;
  border: 1px solid var(--border);
  border-right: none;
  background: var(--bg);
  cursor: pointer;
  border-radius: 2px 0 0 2px;
  white-space: nowrap;
  font-family: Arial, sans-serif;
  font-size: .82rem;
  color: var(--text);
  flex-shrink: 0;
  transition: background .15s;
  height: 36px;
}
.hf-flag-btn:hover { background: #e0e8f0; }
.hf-flag { font-size: 1rem; line-height: 1; }
.hf-dial { font-weight: bold; color: var(--blue); font-size: .82rem; }
.hf-arrow { font-size: .6rem; color: var(--text-muted); margin-left: 1px; }

.hf-phone-input {
  border-radius: 0 2px 2px 0 !important;
  flex: 1;
  min-width: 0;
}

/* Country dropdown */
.hf-country-list {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  z-index: 200;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 2px;
  min-width: 220px;
  max-height: 220px;
  overflow-y: auto;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
  padding: 4px 0;
}
.hf-country-list.open { display: block; }

.hf-country-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  font-size: .83rem;
  color: var(--text);
  cursor: pointer;
  gap: 8px;
}
.hf-country-item:hover,
.hf-country-item.active { background: var(--blue-light); color: var(--blue); }
.hf-country-item span { color: var(--text-muted); font-size: .78rem; margin-left: auto; }

/* Loss amount */
.hf-loss-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.hf-loss-item {
  position: relative;
  cursor: pointer;
}

.hf-loss-item input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}

.hf-loss-item span {
  display: block;
  padding: 8px 10px;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: .78rem;
  font-weight: bold;
  color: var(--text);
  text-align: center;
  border-radius: 2px;
  line-height: 1.4;
  transition: border-color .15s, background .15s, color .15s;
  cursor: pointer;
}
.hf-loss-item span small {
  display: block;
  font-weight: normal;
  font-size: .72rem;
  color: var(--text-muted);
}

.hf-loss-item input:checked + span {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}
.hf-loss-item input:checked + span small { color: rgba(255,255,255,.78); }
.hf-loss-item:hover span { border-color: var(--blue); }

/* Submit */
.hf-submit {
  width: 100%;
  padding: 11px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 2px;
  font-size: .92rem;
  font-weight: bold;
  font-family: Arial, sans-serif;
  cursor: pointer;
  margin-top: 14px;
  margin-bottom: 10px;
  transition: background .15s;
}
.hf-submit:hover { background: var(--blue-dark); }
.hf-submit:disabled { background: #aaa; cursor: default; }

.hf-note {
  font-size: .7rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
}
.hf-note a { color: var(--blue); }

/* Hero form success */
.hf-success {
  text-align: center;
  padding: 24px 16px;
}
.hf-success-icon { font-size: 2.4rem; margin-bottom: 10px; }
.hf-success-title { font-size: 1rem; font-weight: bold; color: var(--blue); margin-bottom: 6px; }
.hf-success-text  { font-size: .82rem; color: var(--text-muted); }

@media (max-width: 768px) {
  .hero-form-wrap { width: 100%; }
  .hero-form { width: 100%; box-sizing: border-box; }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  font-size: .88rem;
  font-weight: bold;
  font-family: Arial, sans-serif;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 2px;
  text-decoration: none;
  transition: background .15s, border-color .15s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue-dark);
}
.btn-primary:hover { background: var(--blue-dark); text-decoration: none; color: #fff; }

.btn-white {
  background: #fff;
  color: var(--blue);
  border-color: #fff;
}
.btn-white:hover { background: #e8f2fa; text-decoration: none; color: var(--blue); }

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover { background: var(--blue-light); text-decoration: none; }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); text-decoration: none; color: #fff; }

.btn-donate {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue-dark);
  font-weight: bold;
}
.btn-donate:hover { background: var(--blue-dark); text-decoration: none; color: #fff; }

/* ── SECTIONS ── */
.section       { padding: 40px 0; }
.section--gray { background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section--blue { background: var(--blue); color: #fff; }

.sec-label {
  font-size: .78rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--blue);
  display: block;
  margin-bottom: 6px;
}
.section--blue .sec-label { color: rgba(255,255,255,.7); }

.sec-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.3;
  border-left: 4px solid var(--blue);
  padding-left: 12px;
}
.section--blue .sec-title { color: #fff; border-left-color: rgba(255,255,255,.5); }

.sec-sub {
  font-size: .9rem;
  color: var(--text-mid);
  margin-bottom: 28px;
  padding-left: 16px;
}
.section--blue .sec-sub { color: rgba(255,255,255,.78); }

.sec-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
  flex-wrap: wrap;
}
.sec-header .sec-title { margin-bottom: 0; }

/* ── CARDS ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid var(--border);
  display: block;
}

.card-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--white);
  background: var(--blue);
  padding: 2px 8px;
  margin-bottom: 8px;
}

.card-title {
  font-size: .95rem;
  font-weight: bold;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.35;
}

.card-text {
  font-size: .87rem;
  color: var(--text-mid);
  flex: 1;
  margin-bottom: 14px;
}

/* Progress bar */
.progress-wrap { margin-bottom: 12px; }

.progress-meta {
  display: flex;
  justify-content: space-between;
  font-size: .78rem;
  font-weight: bold;
  color: var(--text-mid);
  margin-bottom: 5px;
}

.progress-bar {
  height: 6px;
  background: var(--border);
  border-radius: 0;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--blue);
  transition: width 1s ease;
}

/* ── NEWS LIST ── */
.news-list { display: flex; flex-direction: column; gap: 0; }

.news-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  border: 1px solid var(--border);
  border-bottom: none;
  background: var(--white);
}
.news-item:last-child { border-bottom: 1px solid var(--border); }

.news-item-img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
  display: block;
  border-right: 1px solid var(--border);
}

.news-item-body { padding: 18px 20px; }

.news-item-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  background: var(--blue);
  padding: 2px 8px;
  margin-bottom: 8px;
}

.news-item-title {
  font-size: .98rem;
  font-weight: bold;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.35;
}

.news-item-text {
  font-size: .87rem;
  color: var(--text-mid);
  margin-bottom: 12px;
}

.news-date { font-size: .78rem; color: var(--text-muted); }

/* ── STATS ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,.2);
}

.stat-card {
  text-align: center;
  padding: 28px 16px;
  border-right: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.06);
}
.stat-card:last-child { border-right: none; }

.stat-num {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.72);
  margin-top: 6px;
  display: block;
}

/* ── VALUES ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}

.value-card {
  padding: 24px 20px;
  border-right: 1px solid var(--border);
  background: var(--white);
}
.value-card:last-child { border-right: none; }
.value-card:nth-child(n+4) { border-top: 1px solid var(--border); }

.value-icon { font-size: 1.6rem; margin-bottom: 10px; display: block; }
.value-title { font-size: .95rem; font-weight: bold; color: var(--blue); margin-bottom: 6px; }
.value-text  { font-size: .87rem; color: var(--text-mid); }

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.about-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border: 1px solid var(--border);
  display: block;
}

.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.feature-row:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.feature-icon {
  width: 36px;
  height: 36px;
  background: var(--blue-light);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.feature-title { font-size: .9rem; font-weight: bold; color: var(--blue); margin-bottom: 3px; }
.feature-text  { font-size: .85rem; color: var(--text-mid); }

/* ── TEAM ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.team-card {
  border: 1px solid var(--border);
  background: var(--white);
  text-align: center;
  padding: 20px 14px;
}

.team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
  border: 2px solid var(--border);
  display: block;
}

.team-name { font-size: .9rem; font-weight: bold; color: var(--text); margin-bottom: 3px; }
.team-role { font-size: .8rem; color: var(--text-muted); }

/* ── CTA BLOCK ── */
.cta-block {
  background: var(--blue);
  color: #fff;
  padding: 36px 40px;
  border-top: 3px solid var(--blue-dark);
}

.cta-block h2 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 8px;
}

.cta-block p {
  font-size: .9rem;
  color: rgba(255,255,255,.82);
  margin-bottom: 20px;
  max-width: 560px;
}

.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── DONATE ── */
.donate-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}

.donate-method {
  padding: 24px 20px;
  border-right: 1px solid var(--border);
  background: var(--white);
}
.donate-method:nth-child(2n) { border-right: none; }
.donate-method:nth-child(n+3) { border-top: 1px solid var(--border); }

.donate-method-icon { font-size: 1.6rem; margin-bottom: 10px; }
.donate-method-title { font-size: 1rem; font-weight: bold; color: var(--blue); margin-bottom: 8px; }
.donate-method-text  { font-size: .87rem; color: var(--text-mid); margin-bottom: 16px; }

.donate-detail {
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--blue);
  padding: 12px 14px;
  font-size: .82rem;
  color: var(--text);
  margin-top: 12px;
}

.donate-detail code {
  font-family: 'Courier New', monospace;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1px 5px;
  font-size: .8rem;
  color: var(--blue);
}

/* Amount buttons */
.amount-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }

.amount-btn {
  padding: 8px 18px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
  font-size: .87rem;
  font-family: Arial, sans-serif;
  font-weight: bold;
  cursor: pointer;
  border-radius: 2px;
  transition: background .15s, border-color .15s;
}
.amount-btn:hover, .amount-btn.active {
  border-color: var(--blue);
  background: var(--blue-light);
  color: var(--blue);
}

/* Donate input */
.donate-input-wrap {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  margin-bottom: 14px;
}
.donate-input-wrap:focus-within { border-color: var(--blue); }

.donate-currency {
  padding: 0 14px;
  font-weight: bold;
  color: var(--blue);
  font-size: 1rem;
  background: var(--bg);
  border-right: 1px solid var(--border);
  height: 44px;
  display: flex;
  align-items: center;
}

.donate-input {
  border: none;
  outline: none;
  padding: 0 14px;
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--text);
  flex: 1;
  height: 44px;
  font-family: Arial, sans-serif;
}

/* ── FORM ── */
.form-group { margin-bottom: 16px; }

.form-label {
  display: block;
  font-size: .85rem;
  font-weight: bold;
  color: var(--text);
  margin-bottom: 5px;
}

.form-control {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--border);
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  border-radius: 0;
  outline: none;
  font-family: Arial, sans-serif;
  transition: border-color .15s;
}
.form-control:focus { border-color: var(--blue); }
.form-control::placeholder { color: #aaa; }
textarea.form-control { resize: vertical; min-height: 120px; }

/* ── CONTACTS ── */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }

.contact-info-icon {
  width: 36px;
  height: 36px;
  background: var(--blue-light);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-label { font-size: .85rem; font-weight: bold; color: var(--blue); margin-bottom: 2px; }
.contact-value { font-size: .88rem; color: var(--text-mid); }

.map-placeholder {
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--blue);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: var(--text-muted);
  font-size: .87rem;
  margin-top: 24px;
}

/* ── TIMELINE ── */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item { position: relative; margin-bottom: 28px; }

.timeline-dot {
  position: absolute;
  left: -28px;
  top: 3px;
  width: 12px;
  height: 12px;
  background: var(--blue);
  border: 2px solid var(--white);
  border-radius: 50%;
  outline: 2px solid var(--border);
}

.timeline-year  { font-size: .76rem; font-weight: bold; color: var(--blue); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 3px; }
.timeline-title { font-size: .92rem; font-weight: bold; color: var(--text); margin-bottom: 4px; }
.timeline-text  { font-size: .85rem; color: var(--text-mid); }

/* ── NOTICE ── */
.notice {
  background: var(--blue-light);
  border: 1px solid var(--border);
  border-left: 3px solid var(--blue);
  padding: 12px 16px;
  font-size: .88rem;
  color: var(--text);
  margin-bottom: 20px;
}

/* ── DIVIDER ── */
.divider {
  width: 40px;
  height: 3px;
  background: var(--blue);
  margin: 0 0 20px;
}

/* ── FOOTER ── */
.footer {
  background: #003A6B;
  color: rgba(255,255,255,.8);
  padding: 40px 0 0;
  border-top: 3px solid var(--blue-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-logo-icon {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.12);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
}

.footer-logo-name { font-weight: bold; font-size: .95rem; color: #fff; line-height: 1.2; display: block; }
.footer-logo-sub  { font-size: .68rem; color: rgba(255,255,255,.45); text-transform: uppercase; display: block; }
.footer-desc      { font-size: .85rem; margin-bottom: 18px; line-height: 1.6; }

.social-links { display: flex; gap: 6px; }
.social-link {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.75);
  font-size: .8rem;
  font-style: normal;
  border-radius: 2px;
}
.social-link:hover { background: rgba(255,255,255,.2); color: #fff; text-decoration: none; }

.footer-col-title {
  font-size: .78rem;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  padding-bottom: 8px;
}

.footer-links { display: flex; flex-direction: column; gap: 7px; }
.footer-links a { font-size: .85rem; color: rgba(255,255,255,.7); }
.footer-links a:hover { color: #fff; text-decoration: underline; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .83rem;
  margin-bottom: 10px;
}
.footer-contact-icon { color: rgba(255,255,255,.5); flex-shrink: 0; margin-top: 1px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: rgba(255,255,255,.8); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .team-grid   { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid  { grid-template-columns: repeat(2, 1fr) !important; }
  .steps-item  { border-right: 1px solid var(--border) !important; border-bottom: 1px solid var(--border); }
}

@media (max-width: 768px) {
  /* Topbar */
  .topbar { display: none; }

  /* Header */
  .header-inner  { height: 56px; }
  .logo-icon     { height: 40px; }
  .logo-name     { display: none; }
  .logo-sub      { display: none; }
  .header-donate { display: none; }
  .burger        { display: flex; margin-left: auto; }

  /* Nav */
  .navbar { display: none; }

  /* Sections */
  .section    { padding: 24px 0; }
  .sec-title  { font-size: 1.2rem; }
  .sec-header { flex-direction: column; align-items: flex-start; gap: 10px; }

  /* Hero */
  .hero          { padding: 22px 0 26px; }
  .hero-inner    { grid-template-columns: 1fr; gap: 20px; }
  .hero-img-wrap { display: none; }
  .hero-title    { font-size: 1.3rem; }
  .hero-desc     { font-size: .88rem; margin-bottom: 14px; }
  .hero-actions  { gap: 8px; }
  .hero-stats    { grid-template-columns: repeat(2, 1fr); margin-top: 16px; padding-top: 14px; gap: 8px; }
  .hero-stat     { padding: 10px 12px; }
  .hero-stat-num { font-size: 1.15rem; }
  .hero-stat-label { font-size: .7rem; }

  /* Form */
  .hero-form-wrap { width: 100%; }
  .hero-form      { width: 100%; padding: 18px 14px; box-shadow: none; border: 1px solid rgba(255,255,255,.3); }
  .hf-loss-grid   { grid-template-columns: 1fr 1fr; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 20px; }
  .about-img  { height: 200px; }

  /* Cards */
  .cards-grid { grid-template-columns: 1fr; }

  /* Values */
  .values-grid { grid-template-columns: 1fr 1fr; border: none; gap: 8px; }
  .value-card  { border: 1px solid var(--border) !important; }

  /* Stats */
  .stats-grid { border: none; gap: 8px; }
  .stat-card  { border: 1px solid rgba(255,255,255,.2) !important; padding: 18px 12px; }
  .stat-num   { font-size: 1.5rem; }

  /* Steps */
  .steps-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .steps-item { border-right: none !important; border-bottom: 1px solid var(--border) !important; padding: 18px 14px !important; }

  /* Contacts mini grid */
  .contacts-mini-grid { grid-template-columns: 1fr !important; }

  /* News */
  .news-item     { grid-template-columns: 1fr; }
  .news-item-img { height: 160px; border-right: none; border-bottom: 1px solid var(--border); }

  /* Donate */
  .donate-methods { grid-template-columns: 1fr; }
  .contacts-grid  { grid-template-columns: 1fr; }

  /* Team */
  .team-grid { grid-template-columns: repeat(2, 1fr); }

  /* CTA */
  .cta-block   { padding: 24px 0; }
  .cta-actions { gap: 8px; }
  .cta-actions .btn { justify-content: center; }

  /* Footer */
  .footer-grid   { grid-template-columns: 1fr; gap: 20px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title    { font-size: 1.15rem; }
  .hero-actions  { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .values-grid   { grid-template-columns: 1fr; }
  .steps-grid    { grid-template-columns: 1fr !important; }
  .cta-actions   { flex-direction: column; }
  .donate-methods { grid-template-columns: 1fr; }
  .donate-method  { border-right: 1px solid var(--border) !important; }
  .donate-method:nth-child(n+2) { border-top: 1px solid var(--border) !important; }
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: #1a1a1a;
  color: #e8e8e8;
  border-top: 3px solid var(--blue);
  padding: 16px 0;
  transform: translateY(100%);
  transition: transform .35s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-banner-text {
  font-size: .85rem;
  line-height: 1.55;
  flex: 1 1 400px;
}
.cookie-banner-text a { color: #7fb8e8; }
.cookie-banner-text a:hover { color: #fff; }
.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 9px 22px;
  font-size: .84rem;
  font-weight: bold;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.cookie-btn-accept {
  background: var(--blue);
  color: #fff;
}
.cookie-btn-accept:hover { background: var(--blue-dark); }
.cookie-btn-decline {
  background: transparent;
  color: #ccc;
  border: 1px solid #555;
}
.cookie-btn-decline:hover { border-color: #aaa; color: #fff; }
@media (max-width: 600px) {
  .cookie-banner { padding: 10px 0; }
  .cookie-banner-inner { flex-direction: row; align-items: center; gap: 10px; flex-wrap: nowrap; }
  .cookie-banner-text { font-size: .75rem; line-height: 1.4; flex: 1 1 auto; }
  .cookie-banner-actions { flex-direction: column; gap: 6px; flex-shrink: 0; width: auto; }
  .cookie-btn { padding: 6px 12px; font-size: .75rem; flex: none; text-align: center; }
}
