/* ===========================
   FREE DAY UI FRAMEWORK
   GLOBALS & RESET
   =========================== */

/* Шрифт Montserrat с поддержкой кириллицы */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap&subset=cyrillic');

/* Глобальные переменные */
:root {
  --color-accent: #7CFC00;
  --color-accent-dark: #32cd32;
  --color-accent-hover: #39e639;
  --color-accent-active: #2eb82e;

  --color-bg-dark: #212529;
  --color-bg-card: rgba(0, 0, 0, 0.55);
  --color-bg-glass: rgba(255, 255, 255, 0.04);

  --color-text-main: #ffffff;
  --color-text-muted: rgba(255, 255, 255, 0.75);
  --color-text-soft: rgba(255, 255, 255, 0.85);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 18px;

  --shadow-soft: 0 0 12px rgba(0, 0, 0, 0.4);
  --shadow-medium: 0 0 18px rgba(0, 0, 0, 0.6);
  --shadow-strong: 0 0 30px rgba(0, 0, 0, 0.5);
}

/* Сброс и базовые стили */
html, body {
  margin: 0;
  padding: 0;
  background-color: var(--color-bg-dark);
  font-family: 'Montserrat', sans-serif;
  color: var(--color-text-main);
  min-height: 100%;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: 0.2s ease;
}

a:hover {
  color: var(--color-accent-hover);
}

img {
  max-width: 100%;
  display: block;
}

section {
  padding: 40px 0;
}



/* ===========================
   TYPOGRAPHY
   =========================== */

/* Основные заголовки секций */
.section-title-fd {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 6px;
  text-align: left;
  line-height: 1.2;
}

/* Подзаголовки секций */
.section-subtitle-fd {
  font-size: 1rem;
  color: var(--color-text-soft);
  margin-bottom: 40px;
  text-align: left;
  line-height: 1.4;
}

/* Маленькие заголовки (например, в карточках) */
.title-sm-fd {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-main);
  letter-spacing: 0.04em;
}

/* Мелкий текст */
.text-muted-fd {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* Eyebrow (верхний маленький текст) */
.eyebrow-fd {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Списки */
.list-fd {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.list-fd li {
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.9;
  margin-bottom: 4px;
  position: relative;
  padding-left: 16px;
}

.list-fd li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-accent);
}


/* ===========================
   BUTTONS — FREE DAY CTA
   =========================== */

/* Большая кнопка (основная) */
.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-accent), #6be000);
  color: #000;
  font-weight: 700;
  border-radius: 999px;
  padding: 12px 32px;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  box-shadow: 0 0 18px rgba(124, 252, 0, 0.5);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    opacity 0.18s ease;
  cursor: pointer;
  border: none;
}

/* Маленькая кнопка */
.cta-button--sm {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-accent), #6be000);
  color: #000;
  font-weight: 700;
  border-radius: 999px;
  padding: 6px 18px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 0 12px rgba(124, 252, 0, 0.4);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    opacity 0.18s ease;
  cursor: pointer;
  border: none;
}

/* Hover (общий для обеих кнопок) */
.cta-button:hover,
.cta-button--sm:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(124, 252, 0, 0.8);
  background: linear-gradient(135deg, #9aff3a, var(--color-accent));
  color: #000; /* фиксируем цвет текста */
}

/* Active (общий) */
.cta-button:active,
.cta-button--sm:active {
  transform: translateY(0);
  box-shadow: 0 0 12px rgba(124, 252, 0, 0.4);
  background: linear-gradient(135deg, var(--color-accent-dark), var(--color-accent));
  color: #000; /* фиксируем цвет текста */
}

/* Disabled (общий) */
.cta-button:disabled,
.cta-button.disabled,
.cta-button--sm:disabled,
.cta-button--sm.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Wide version */
.cta-button--wide {
  width: 100%;
  max-width: 320px;
  text-align: center;
}




/* ===========================
   FORM INPUTS — FREE DAY
   =========================== */

.input-fd {
  width: 100%;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  box-shadow: none;
  transition: 
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.input-fd::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

/* Фокус */
.input-fd:focus {
  border-color: rgba(124, 252, 0, 0.7);
  background: rgba(0, 0, 0, 0.75);
  box-shadow: 0 0 12px rgba(124, 252, 0, 0.35);
  outline: none;
  color: #fff;
}

/* Автовставка (Chrome autofill) */
input.input-fd:-webkit-autofill {
  background-color: rgba(0, 0, 0, 0.65) !important;
  -webkit-text-fill-color: #fff !important;
  box-shadow: 0 0 0px 1000px rgba(0, 0, 0, 0.65) inset !important;
  transition: background-color 5000s ease-in-out 0s;
}

/* Лейблы */
.label-fd {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
  font-size: 0.95rem;
}


/* ===========================
   CHECKBOX — FREE DAY
   =========================== */

.checkbox-fd {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

/* Скрываем стандартный чекбокс */
.checkbox-fd input[type="checkbox"] {
  display: none;
}

/* Коробка */
.checkbox-fd .box {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-sm);
  background-color: transparent;
  position: relative;
  transition: 
    border-color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

/* Галочка */
.checkbox-fd input[type="checkbox"]:checked + .box::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 9px;
  border: solid var(--color-accent);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Hover эффект */
.checkbox-fd:hover .box {
  border-color: var(--color-accent);
  box-shadow: 0 0 6px rgba(124, 252, 0, 0.4);
}

/* Текст */
.checkbox-fd .label {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  user-select: none;
}


/* ===========================
   CARDS — FREE DAY
   =========================== */

/* 1) Базовая карточка (крупные секции) */
.card-fd {
  background: var(--color-bg-glass);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-strong);
  padding: 40px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Mobile адаптация */
@media (max-width: 767.98px) {
  .card-fd {
    padding: 24px 18px;
  }
}

/* 2) Тёмная карточка (формы, загрузка, требования) */
.card-fd-dark {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 24px 22px;
  box-shadow: var(--shadow-medium);
}

/* 3) Стеклянная карточка (новости, промо) */
.card-fd-glass {
  position: relative;
  height: 320px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  display: flex;
  align-items: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
}

/* Нижняя стеклянная подложка */
.card-fd-glass .glass-footer {
  width: 100%;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 0.9rem;
}

.card-fd-glass .glass-footer h5 {
  margin-top: 5px;
  font-size: 1.1rem;
  font-weight: 700;
}

.card-fd-glass .glass-footer p {
  margin: 6px 0;
  font-size: 0.85rem;
}

/* 4) Акцентные бейджи */
.badge-fd {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(124, 252, 0, 0.6);
  color: var(--color-accent);
  background: rgba(0, 0, 0, 0.5);
  display: inline-block;
}


/* ===========================
   HERO BANNER — FREE DAY
   =========================== */

.hero-banner {
  height: 385px;
  padding: 0;
  overflow: hidden;
  background: #000;
}


/* Слайдер */
.hero-slides {
  position: relative;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--bg, #000);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  z-index: 1;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

/* Затемнение */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 2;
}

/* Контент внутри */
.hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  height: 100%;
  padding: 0 20px;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Блок с картинкой */
.hero-image-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

/* Картинка */
.hero-side-image {
  width: auto;
  height: 650px;
  max-height: 100%;
  object-fit: contain;
}



/* Стрелки */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.2);
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s, background 0.3s;
  z-index: 5;
}

.hero-banner:hover .hero-arrow {
  opacity: 0.4;
}

.hero-arrow:hover {
  opacity: 0.8;
  background: rgba(0,0,0,0.4);
}

.hero-arrow.prev { left: 20px; }
.hero-arrow.next { right: 20px; }

/* ===========================
   MOBILE
   =========================== */
@media (max-width: 767.98px) {

  /* Отступ под фиксированный navbar */
  .hero-banner {
    padding-top: 64px;
    height: 480px;
  }

  .hero-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  /* Картинка на мобильных */
  .hero-side-image {
    max-height: 240px;
    object-fit: contain;
  }

  .hero-arrow {
    font-size: 1.6rem;
  }
}



/* ===========================
   FEATURE BLOCK — FREE DAY
   =========================== */

.feature-block {
  background: var(--color-bg-glass);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-strong);
  padding: 40px 40px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

/* Eyebrow */
.feature-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}

/* Title */
.feature-title {
  font-family: 'Cinzel', serif;
  font-size: 2.1rem;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

/* Subtitle */
.feature-subtitle {
  font-weight: 600;
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 20px;
}

/* Badges */
.feature-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 20px;
}

.feature-badge {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(124, 252, 0, 0.6);
  color: var(--color-accent);
  background: rgba(0, 0, 0, 0.5);
}

/* List */
.feature-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.feature-list li {
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.9;
  margin-bottom: 4px;
  position: relative;
  padding-left: 16px;
}

.feature-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-accent);
}

/* Image + Stats */
.feature-image-wrap {
  position: relative;
  display: inline-block;
}

.feature-image {
  border-radius: 14px;
  box-shadow: none;
}

.feature-stats {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  background: rgba(0, 0, 0, 0.75);
  border-radius: 999px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}

.feature-stat-item {
  text-align: center;
  min-width: 60px;
}

.feature-stat-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-accent);
}

.feature-stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.8;
}

/* Mobile */
@media (max-width: 767.98px) {
  .feature-block {
    padding: 24px 18px;
  }

  .feature-title {
    font-size: 1.7rem;
  }

  .feature-subtitle {
    font-size: 1rem;
  }

  .feature-stats {
    position: static;
    transform: none;
    margin-top: 10px;
  }
}


/* ===========================
   REQUIREMENTS (СИСТЕМНЫЕ ТРЕБОВАНИЯ)
   =========================== */

.requirements-panels {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1rem;
}

.requirements-panel {
  flex: 1 1 260px;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 20px 22px;
  box-shadow: var(--shadow-medium);
}

.requirements-heading {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  color: var(--color-text-soft);
}

.requirements-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.requirements-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.requirements-list li:last-child {
  border-bottom: none;
}

.req-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.75;
}

.req-value {
  font-size: 0.95rem;
  opacity: 0.95;
}


/* ===========================
   DOWNLOAD SECTION
   =========================== */

.download-section .card-fd {
  text-align: left;
}

.download-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 24px 20px 26px;
  box-shadow: var(--shadow-medium);
}

.download-title {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.download-text {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 20px;
}

.download-buttons .cta-button {
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
}


/* ===========================
   INSTALL SECTION
   =========================== */

.install-list {
  counter-reset: install-counter;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.install-list li {
  position: relative;
  padding-left: 42px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.95;
}

.install-list li::before {
  counter-increment: install-counter;
  content: counter(install-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(124, 252, 0, 0.7);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}


/* ===========================
   FAQ SECTION
   =========================== */

.faq-section .card-fd {
  padding-top: 30px;
  padding-bottom: 30px;
}

/* Аккордеон */
.faq-accordion .accordion-item {
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.faq-accordion .accordion-item + .accordion-item {
  margin-top: 0.6rem;
}

.faq-accordion .accordion-button {
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 16px;
  box-shadow: none !important;
}

.faq-accordion .accordion-button::after {
  content: '⮟';
  font-size: 0.8rem;
  color: var(--color-accent);
  transform: rotate(0deg);
  transition: transform 0.25s ease;
  background-image: none !important;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: rgba(0, 0, 0, 0.75);
  color: var(--color-accent);
}

.faq-accordion .accordion-body {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.85);
  color: #f0f0f0;
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.4);
  line-height: 1.6;
  font-size: 0.95rem;
  padding: 16px 20px;
}

.faq-accordion .accordion-body li {
  margin-bottom: 6px;
  font-size: 0.95rem;
  opacity: 0.95;
}


/* ===========================
   MOBILE TWEAKS
   =========================== */

@media (max-width: 767.98px) {
  .requirements-panels {
    flex-direction: column;
  }

  .download-buttons .cta-button {
    max-width: 100%;
  }

  .install-list li {
    padding-left: 34px;
  }

  .install-list li::before {
    width: 22px;
    height: 22px;
    font-size: 0.75rem;
  }
}

/* ===========================
   UTILITIES — FREE DAY
   =========================== */

/* Shadows */
.shadow-soft {
  box-shadow: var(--shadow-soft);
}

.shadow-medium {
  box-shadow: var(--shadow-medium);
}

.shadow-strong {
  box-shadow: var(--shadow-strong);
}

/* Radiuses */
.radius-sm {
  border-radius: var(--radius-sm);
}

.radius-md {
  border-radius: var(--radius-md);
}

.radius-lg {
  border-radius: var(--radius-lg);
}

.radius-xl {
  border-radius: var(--radius-xl);
}

/* Text alignment */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

/* Spacing */
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.pt-1 { padding-top: 8px; }
.pt-2 { padding-top: 16px; }
.pt-3 { padding-top: 24px; }
.pt-4 { padding-top: 32px; }

.pb-1 { padding-bottom: 8px; }
.pb-2 { padding-bottom: 16px; }
.pb-3 { padding-bottom: 24px; }
.pb-4 { padding-bottom: 32px; }

/* Flex helpers */
.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  justify-content: space-between;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

/* Width helpers */
.w-100 {
  width: 100%;
}

.max-w-1100 {
  max-width: 1100px;
  margin: 0 auto;
}

/* Fade-in animation */
.fade-in {
  animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}


/* ===========================
   FORM — FREE DAY UI
   =========================== */

/* Карточка формы */
.form-card-fd {
  background: rgba(0, 0, 0, 0.55);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);

  /* Исправлено: убран пробел */
  max-width: 500px;
  margin: 0 auto;

  /* Добавляем стиль как у card-fd-dark */
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-image: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0.04),
    rgba(0, 0, 0, 0.4)
  );
}

/* Заголовок формы */
.form-card-fd h2 {
  text-align: center;
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* Label */
.form-card-fd label {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
  color: #e5e5e5;
  letter-spacing: 0.03em;
}

/* Поля ввода */
.form-card-fd input[type="text"],
.form-card-fd input[type="password"],
.form-card-fd input[type="email"] {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 0.95rem;
  transition: 0.2s ease;
}

/* Фокус */
.form-card-fd input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 12px rgba(124, 252, 0, 0.4);
  background: rgba(255, 255, 255, 0.12);
}

/* Ошибки */
.form-card-fd .text-danger {
  font-size: 0.8rem;
  margin-top: 4px;
}

/* Отступы между полями */
.form-card-fd .form-group {
  margin-bottom: 18px;
}

/* Кнопка регистрации — центрируем */
.form-card-fd .cta-button--wide {
  display: block;
  margin: 20px auto 0;
}

.donate-page .donate-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.donate-page .donate-card-body {
  width: 100%;
  height: 200px;
  padding: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.donate-page .donate-max-height {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}





