:root {
  --blue-950: #071735;
  --blue-900: #0b214b;
  --blue-800: #12356f;
  --blue-700: #17468f;
  --gold: #d8aa4c;
  --gold-light: #f2d486;
  --white: #ffffff;
  --muted: #c8d3e8;
  --text: #101828;
  --bg: #f5f7fb;
  --card: rgba(255, 255, 255, 0.92);
  --shadow: 0 24px 70px rgba(7, 23, 53, 0.18);
  --radius: 28px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  font-family: Inter, Montserrat, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

.page {
  overflow: hidden;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 32px));
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(7, 23, 53, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.logo__mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--blue-950);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 0 0 6px rgba(216, 170, 76, 0.16);
  flex: 0 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 600;
}

.nav a:hover {
  color: var(--gold-light);
}

.header__cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  text-align: center;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  touch-action: manipulation;
}

.header__cta,
.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--blue-950);
  box-shadow: 0 14px 36px rgba(216, 170, 76, 0.32);
}

.btn--blue {
  background: var(--blue-800);
  color: var(--white);
  box-shadow: 0 14px 36px rgba(18, 53, 111, 0.28);
}

.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.btn:hover,
.header__cta:hover {
  transform: translateY(-2px);
}

.burger {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  flex: 0 0 auto;
  touch-action: manipulation;
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--white);
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.mobile-menu-toggle {
  position: fixed;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.mobile-panel {
  display: none;
}

.mobile-bottom-cta {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 170px 0 90px;
  color: var(--white);
  background:
    radial-gradient(
      circle at 78% 24%,
      rgba(216, 170, 76, 0.34),
      transparent 26%
    ),
    linear-gradient(135deg, rgba(7, 23, 53, 0.96), rgba(11, 33, 75, 0.94)),
    url("https://avatars.mds.yandex.net/i?id=c3d3ee9b59b9a90d039811bc9949bd80_l-9097293-images-thumbs&n=13")
      center/cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 60px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 9px 14px;
  border: 1px solid rgba(242, 212, 134, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 24px var(--gold-light);
  flex: 0 0 auto;
}

h1 {
  max-width: 760px;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.hero__lead {
  max-width: 650px;
  margin: 28px 0 36px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__panel {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.hero__photo {
  min-height: 460px;
  border-radius: 24px;
  background:
    linear-gradient(to top, rgba(7, 23, 53, 0.8), transparent 46%),
    url("https://images.unsplash.com/photo-1599058917212-d750089bc07e?auto=format&fit=crop&w=1100&q=80")
      center/cover;
  overflow: hidden;
}

.hero__stat {
  position: absolute;
  right: 8px;
  bottom: 8px;
  left: 8px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 10px;
}

.stat-card {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue-950);
}

.stat-card strong {
  display: block;
  color: var(--blue-800);
  font-size: 26px;
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 6px;
  color: #536178;
  font-size: 12px;
  font-weight: 700;
}

section {
  padding: 96px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}

.section-kicker {
  margin-bottom: 12px;
  letter-spacing: 0.12em;
  font-size: 20px;
    color: #d8aa4c;
    font-weight: 600;
    text-transform: uppercase;
}

h2 {
  max-width: 720px;
  color: var(--blue-950);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.section-text {
  max-width: 430px;
  color: #5c6a82;
  font-size: 17px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  position: relative;
  min-height: 280px;
  padding: 28px;
  border: 1px solid rgba(10, 30, 70, 0.08);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 18px 45px rgba(7, 23, 53, 0.08);
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(216, 170, 76, 0.14);
}

.card__icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-950));
  color: var(--gold-light);
  font-size: 30px;
}

.card h3 {
  margin-bottom: 14px;
  color: var(--blue-950);
  font-size: 25px;
  letter-spacing: -0.02em;
}

.card p {
  color: #62708a;
  font-size: 16px;
}

.legacy {
  background: #F5F7FB;
}

.legacy__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.legacy__media {
  min-height: 560px;
  border-radius: 36px;
  background:
    linear-gradient(to top, rgba(7, 23, 53, 0.74), transparent 55%),
    url("https://cdnn21.img.ria.ru/images/rsport/111456/90/1114569024_0:10:3000:1698_1920x0_80_0_0_ee03b7ae8f94b4636f1fdafc073fce76.jpg")
      center/cover;
  box-shadow: var(--shadow);
}

.timeline {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.timeline__item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 20px;
  padding: 20px;
  border-radius: 22px;
  background: #f3f6fb;
}

.timeline__year {
  color: var(--blue-800);
  font-size: 24px;
  font-weight: 900;
}

.timeline__item p {
  color: #5c6a82;
}

.energy {
  color: var(--white);
  background:
    radial-gradient(
      circle at 18% 18%,
      rgba(216, 170, 76, 0.26),
      transparent 28%
    ),
    linear-gradient(135deg, var(--blue-950), var(--blue-800));
}

.energy h2,
.energy .section-text {
  color: var(--white);
}

.energy .section-text {
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.step__num {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--blue-950);
  font-weight: 900;
}

.step h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.step p {
  color: var(--muted);
  font-size: 15px;
}

.donate__grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.donate-card {
  padding: 34px;
  border-radius: 34px;
  background: var(--blue-950);
  color: var(--white);
  box-shadow: var(--shadow);
}

.donate-card h3 {
  max-width: 520px;
  margin-bottom: 16px;
  font-size: 36px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.donate-card p {
  color: var(--muted);
}

.progress {
  margin: 28px 0;
}

.progress__top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
  color: var(--gold-light);
  font-weight: 900;
}

.progress__bar {
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.progress__fill {
  width: 64%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.amounts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.amounts button {
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  font-weight: 800;
  touch-action: manipulation;
}

.amounts button:hover {
  background: rgba(216, 170, 76, 0.24);
}

.qr-card {
  display: grid;
  place-items: center;
  padding: 34px;
  border-radius: 34px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(7, 23, 53, 0.08);
  text-align: center;
}

.qr {
  display: grid;
  place-items: center;
  width: 240px;
  height: 240px;
  margin-bottom: 20px;
  border: 12px solid #edf2fb;
  border-radius: 28px;
  background:
    linear-gradient(90deg, #111 12px, transparent 12px) 0 0/36px 36px,
    linear-gradient(#111 12px, transparent 12px) 0 0/36px 36px,
    #fff;
  color: var(--blue-950);
  font-weight: 900;
}

.qr span {
  padding: 8px 12px;
  border-radius: 12px;
  background: var(--white);
}

.events {
  background: var(--white);
}

.event-list {
  display: grid;
  gap: 16px;
}

.event {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(10, 30, 70, 0.08);
  border-radius: 26px;
  background: #f8faff;
}

.event__date {
  padding: 16px;
  border-radius: 20px;
  background: var(--blue-950);
  color: var(--white);
  text-align: center;
  font-weight: 900;
}

.event__date strong {
  display: block;
  font-size: 34px;
  line-height: 1;
  color: var(--gold-light);
}

.event h3 {
  margin-bottom: 6px;
  color: var(--blue-950);
  font-size: 22px;
}

.event p {
  color: #62708a;
}

.contact {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-950), #050b18);
}

.contact h2 {
  color: var(--white);
}

.contact__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 16px;
}

.contact-info__item {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.07);
  overflow-wrap: anywhere;
}

.contact-info__item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-light);
}

.form {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.form input,
.form select,
.form textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  outline: none;
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue-950);
  font-size: 16px;
}

.form textarea {
  min-height: 130px;
  padding-top: 16px;
  resize: vertical;
}

.footer {
  padding: 28px 0;
  background: #030713;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.support-section {
  position: relative;
  padding: 96px 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(216, 170, 76, 0.28), transparent 28%),
    linear-gradient(135deg, #071735, #12356f);
  color: #ffffff;
  overflow: hidden;
}

.support-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(30deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: 0.35;
  pointer-events: none;
}

.support-container {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.support-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 42px;
}

.support-kicker {
  margin-bottom: 12px;
  color: #f2d486;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.support-title {
  max-width: 720px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.support-lead {
  max-width: 440px;
  margin: 0;
  color: #c8d3e8;
  font-size: 17px;
  line-height: 1.55;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.support-card {
  position: relative;
  min-height: 300px;
  padding: 30px;
  border: 1px solid rgba(242, 212, 134, 0.22);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.support-card::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(216, 170, 76, 0.18);
}

.support-icon {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, #d8aa4c, #f2d486);
  color: #071735;
  font-size: 30px;
}

.support-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 25px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.support-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #c8d3e8;
  font-size: 16px;
  line-height: 1.55;
}

.support-action {
  margin-top: 40px;
  text-align: center;
}

.support-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d8aa4c, #f2d486);
  color: #071735 !important;
  font-weight: 900;
  text-decoration: none !important;
  box-shadow: 0 14px 36px rgba(216, 170, 76, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.support-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(216, 170, 76, 0.4);
}

@media (max-width: 980px) {
  .header {
    width: calc(100% - 28px);
  }

  .nav {
    display: none;
  }

  .burger {
    display: block;
  }

  .mobile-panel {
    position: fixed;
    top: 90px;
    left: 14px;
    right: 14px;
    z-index: 45;
    display: grid;
    gap: 10px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 28px;
    background: rgba(7, 23, 53, 0.96);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(18px);
    opacity: 0;
    transform: translateY(-14px);
    pointer-events: none;
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
  }

  .mobile-panel a {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.07);
    color: var(--white);
    font-weight: 800;
  }

  .mobile-panel a:last-child {
    justify-content: center;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--blue-950);
  }

  .mobile-menu-toggle:checked ~ .page .mobile-panel {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-menu-toggle:checked ~ .page .burger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-menu-toggle:checked ~ .page .burger span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle:checked ~ .page .burger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero__grid,
  .legacy__grid,
  .donate__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    gap: 34px;
  }

  .cards,
  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .section-head {
    display: block;
  }

  .section-text {
    margin-top: 18px;
  }

  .event {
    grid-template-columns: 110px 1fr;
  }

  .event .btn {
    grid-column: 1 / -1;
    width: 100%;
  }
    .support-head {
    display: block;
  }

  .support-lead {
    max-width: 100%;
    margin-top: 18px;
  }

  .support-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 92px;
  }

  body {
    padding-bottom: calc(76px + var(--safe-bottom));
  }

  .container {
    width: min(100% - 24px, 1180px);
  }

  .header {
    top: 10px;
    width: calc(100% - 20px);
    padding: 10px 12px;
    border-radius: 24px;
  }

  .logo {
    gap: 9px;
    font-size: 14px;
  }

  .logo__mark {
    width: 40px;
    height: 40px;
    font-size: 15px;
    box-shadow: 0 0 0 4px rgba(216, 170, 76, 0.14);
  }

  .header__cta {
    display: none;
  }

  .burger {
    width: 44px;
    height: 44px;
  }

  .mobile-panel {
    top: 85px;
    left: 10px;
    right: 10px;
    padding: 12px;
    border-radius: 22px;
  }

  .hero {
    min-height: auto;
    padding: 126px 0 62px;
    background-position: center top;
  }

  .hero::after {
    height: 90px;
  }

  .hero__grid {
    gap: 24px;
  }

  .eyebrow {
    max-width: 100%;
    margin-bottom: 18px;
    padding: 8px 12px;
    font-size: 11px;
    letter-spacing: 0.06em;
  }

  h1 {
    font-size: clamp(38px, 12vw, 50px);
    line-height: 0.98;
    letter-spacing: -0.045em;
  }

  .hero__lead {
    margin: 20px 0 26px;
    font-size: 17px;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .btn,
  .header__cta {
    width: 100%;
    min-height: 52px;
    padding: 0 18px;
  }

  .hero__panel {
    padding: 12px;
    border-radius: 24px;
  }

  .hero__photo {
    min-height: 280px;
    border-radius: 18px;
  }

  .hero__stat {
    position: static;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 8px;
    padding: 10px 0 0;
  }

  .stat-card {
    padding: 12px 8px;
    border-radius: 14px;
    text-align: center;
  }

  .stat-card strong {
    font-size: 22px;
  }

  .stat-card span {
    font-size: 10px;
    line-height: 1.2;
  }

  section {
    padding: 64px 0;
  }

  .section-head {
    margin-bottom: 26px;
  }

  .section-kicker {
    margin-bottom: 10px;
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  h2 {
    font-size: clamp(30px, 10vw, 40px);
    line-height: 1.05;
  }

  .section-text {
    max-width: 100%;
    font-size: 16px;
  }

  .cards,
  .steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .card {
    min-height: auto;
    padding: 22px;
    border-radius: 24px;
  }

  .card__icon {
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    border-radius: 18px;
    font-size: 26px;
  }

  .card h3 {
    font-size: 22px;
  }

  .legacy__grid,
  .contact__grid {
    gap: 24px;
  }

  .legacy__media {
    min-height: 300px;
    border-radius: 26px;
  }

  .timeline {
    gap: 12px;
    margin-top: 24px;
  }

  .timeline__item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px;
    border-radius: 20px;
  }

  .timeline__year {
    font-size: 22px;
  }

  .step {
    padding: 20px;
    border-radius: 22px;
  }

  .step__num {
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
  }

  .donate__grid {
    gap: 18px;
  }

  .donate-card,
  .qr-card {
    padding: 22px;
    border-radius: 26px;
  }

  .donate-card h3 {
    font-size: 28px;
    line-height: 1.1;
  }

  .progress {
    margin: 22px 0;
  }

  .progress__top {
    font-size: 14px;
  }

  .amounts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 18px;
  }

  .amounts button {
    width: 100%;
    min-height: 50px;
    padding: 10px 12px;
  }

  .qr {
    width: min(220px, 72vw);
    height: min(220px, 72vw);
    border-width: 10px;
    border-radius: 24px;
    background:
      linear-gradient(90deg, #111 10px, transparent 10px) 0 0/30px 30px,
      linear-gradient(#111 10px, transparent 10px) 0 0/30px 30px,
      #fff;
  }

  .event-list {
    gap: 14px;
  }

  .event {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
    border-radius: 22px;
  }

  .event__date {
    width: 100%;
    padding: 14px;
    border-radius: 18px;
  }

  .event__date strong {
    font-size: 30px;
  }

  .event h3 {
    font-size: 20px;
  }

  .form {
    padding: 18px;
    border-radius: 24px;
  }

  .form input,
  .form select,
  .form textarea {
    min-height: 52px;
    border-radius: 16px;
  }

  .footer {
    padding: 24px 0;
  }

  .footer__inner {
    display: grid;
    gap: 10px;
  }

  .mobile-bottom-cta {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: calc(10px + var(--safe-bottom));
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 22px;
    background: rgba(7, 23, 53, 0.9);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  }

  .mobile-bottom-cta .btn {
    min-height: 50px;
    padding: 0 10px;
    font-size: 14px;
  }
   .support-section {
    padding: 64px 0;
  }

  .support-container {
    width: min(100% - 24px, 1180px);
  }

  .support-head {
    margin-bottom: 26px;
  }

  .support-kicker {
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .support-title {
    font-size: clamp(30px, 10vw, 40px);
    line-height: 1.05;
  }

  .support-lead {
    font-size: 16px;
  }

  .support-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .support-card {
    min-height: auto;
    padding: 22px;
    border-radius: 24px;
  }

  .support-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    border-radius: 18px;
    font-size: 26px;
  }

  .support-card h3 {
    font-size: 22px;
  }

  .support-action {
    margin-top: 28px;
  }

  .support-btn {
    width: 100%;
    min-height: 54px;
  }
}

@media (max-width: 380px) {
  .logo span:last-child {
    max-width: 116px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .amounts,
  .mobile-bottom-cta {
    grid-template-columns: 1fr;
  }

  body {
    padding-bottom: calc(132px + var(--safe-bottom));
  }
}
.t988__pricebtn t-descr t-descr_xs {
    border-radius: 20px;
}

.mobile-panel {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: 0.3s;
}

.mobile-panel.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* блокируем скролл */
body.menu-open {
  overflow: hidden;
}

.spans {
margin-top: 13px;    
}
