@keyframes site-fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes site-stat-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes site-stat-pop {
  0% {
    transform: scale(0.92);
    opacity: 0;
  }
  60% {
    transform: scale(1.04);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes site-soft-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.35);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(245, 158, 11, 0);
  }
}

.site-animate-in {
  animation: site-fade-up 0.7s ease-out both;
}

.site-animate-delay-1 {
  animation-delay: 0.1s;
}

.site-animate-delay-2 {
  animation-delay: 0.2s;
}

.site-animate-delay-3 {
  animation-delay: 0.3s;
}

.site-stat-visual {
  position: relative;
}

.site-stat-visual::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 9999px;
  border: 2px solid rgba(245, 158, 11, 0.35);
  border-top-color: rgba(245, 158, 11, 0.05);
  animation: site-stat-ring 12s linear infinite;
  pointer-events: none;
}

.site-stat-figure {
  animation: site-stat-pop 0.9s ease-out both;
}

.site-stat-figure--delay {
  animation-delay: 0.15s;
}

.site-accent-glow {
  animation: site-soft-pulse 3.2s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .site-animate-in,
  .site-animate-delay-1,
  .site-animate-delay-2,
  .site-animate-delay-3,
  .site-stat-figure,
  .site-stat-figure--delay {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .site-stat-visual::before {
    animation: none !important;
  }

  .site-accent-glow {
    animation: none !important;
    box-shadow: none !important;
  }
}

/* Font Awesome 5 Pro: явно задаём шрифт, чтобы иконки не терялись после Tailwind preflight */
i[class*="fa-"],
span[class*="fa-"] {
  font-family: "Font Awesome 5 Pro", sans-serif !important;
  font-style: normal !important;
  font-weight: 900 !important;
  font-variant: normal !important;
  line-height: 1 !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  max-width: 40rem;
  margin-inline: auto;
  display: none;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgb(18 26 12 / 0.25);
  padding: 1.5rem;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner__title { font-size: 1.125rem; font-weight: 700; color: #1f2937; margin-bottom: 0.5rem; }
.cookie-banner__text { color: #6b7280; font-size: 0.875rem; line-height: 1.6; margin-bottom: 1.25rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.cookie-panel {
  position: fixed; inset: 0; z-index: 210; display: none;
  align-items: center; justify-content: center; padding: 1rem;
  background-color: rgb(18 26 12 / 0.55);
}
.cookie-panel.is-visible { display: flex; }
.cookie-panel__dialog {
  width: min(100%, 32rem); max-height: min(90vh, 40rem); overflow: auto;
  background-color: #ffffff; border-radius: 1rem; border: 1px solid #e5e7eb;
  box-shadow: 0 25px 50px -12px rgb(18 26 12 / 0.25); padding: 1.5rem;
}
.cookie-panel__header { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.cookie-panel__header h2 { font-size: 1.25rem; font-weight: 700; color: #1f2937; }
.cookie-panel__close {
  width: 44px; height: 44px; border: 1px solid #e5e7eb; border-radius: 0.5rem;
  background-color: #ffffff; color: #1f2937; flex-shrink: 0;
}
.cookie-panel__close:hover { background-color: #e2e2e4; border-color: #0A111F; }
.cookie-panel__text { color: #6b7280; font-size: 0.875rem; line-height: 1.6; margin-bottom: 1.25rem; }
.cookie-panel__options { display: grid; gap: 1rem; margin-bottom: 1.5rem; }
.cookie-option {
  display: grid; grid-template-columns: auto 1fr; gap: 0.35rem 1rem; padding: 1rem;
  border: 1px solid #e5e7eb; border-radius: 0.75rem; background-color: #e2e2e4;
}
.cookie-option input { width: 1.25rem; height: 1.25rem; margin-top: 0.15rem; accent-color: #0A111F; }
.cookie-option__title { font-weight: 700; color: #1f2937; }
.cookie-option__desc { margin: 0; color: #6b7280; font-size: 0.875rem; }
.cookie-panel__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.cookie-toggle {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 190;
  min-width: 44px; min-height: 44px; padding: 0.7rem 0.95rem; border-radius: 999px;
  border: 1px solid #e5e7eb; background-color: #0A111F; color: #ffffff;
  box-shadow: 0 10px 15px -3px rgb(18 26 12 / 0.25); display: inline-flex; align-items: center;
  gap: 0.4rem; font-size: 0.875rem; font-weight: 600;
}
.cookie-toggle:hover { background-color: #080e1a; }
.cookie-btn {
  min-height: 44px; padding: 0.625rem 1.25rem; border-radius: 0.5rem;
  font-size: 0.875rem; font-weight: 600;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.cookie-btn--primary { background-color: #0A111F; color: #ffffff; border: 0; }
.cookie-btn--primary:hover { background-color: #080e1a; }
.cookie-btn--secondary { background-color: #e2e2e4; color: #0A111F; border: 1px solid #e5e7eb; }
.cookie-btn--secondary:hover { border-color: #0A111F; }
.cookie-btn--ghost { background-color: #ffffff; color: #6b7280; border: 1px solid #e5e7eb; }
.cookie-btn--ghost:hover { background-color: #e2e2e4; color: #0A111F; }
@media (min-width: 768px) {
  .cookie-banner { left: auto; right: 1.5rem; bottom: 5.5rem; margin-inline: 0; }
  .cookie-toggle { right: 1.5rem; bottom: 1.5rem; }
}
