.nav-link {
  font-size: 0.875rem;
  color: #6e8060;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #84cc16;
}

.nav-link--active {
  color: #84cc16;
  font-weight: 600;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  visibility: hidden;
}

.mobile-menu.is-open {
  pointer-events: auto;
  visibility: visible;
}

.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu.is-open .mobile-menu__backdrop {
  opacity: 1;
}

.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  height: 100%;
  width: min(100%, 320px);
  flex-direction: column;
  border-left: 1px solid #202a18;
  background: #141810;
  padding: 1.25rem 1.5rem 2rem;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.45);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu.is-open .mobile-menu__panel {
  transform: translateX(0);
}

.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #202a18;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-menu__link {
  display: block;
  border-radius: 0.5rem;
  padding: 0.875rem 1rem;
  font-size: 0.9375rem;
  color: #e8f0e0;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.mobile-menu__link:hover {
  background: #0d1608;
  color: #84cc16;
}

.mobile-menu__link--active {
  background: #0d1608;
  color: #84cc16;
  font-weight: 600;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.site-logo__icon {
  flex-shrink: 0;
  border-radius: 9999px;
  border: 2px solid #202a18;
}

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

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes pulse-accent {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(132, 204, 22, 0.35);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(132, 204, 22, 0);
  }
}

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

.animate-fade-up {
  animation: fade-up 0.7s ease-out forwards;
}

.animate-fade-in {
  animation: fade-in 0.6s ease-out forwards;
}

.animate-pulse-accent {
  animation: pulse-accent 2.4s ease-in-out infinite;
}

.animate-stat-pop {
  animation: stat-pop 0.5s ease-out forwards;
}

.animate-delay-100 {
  animation-delay: 0.1s;
}

.animate-delay-200 {
  animation-delay: 0.2s;
}

.animate-delay-300 {
  animation-delay: 0.3s;
}

.animate-delay-400 {
  animation-delay: 0.4s;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cookie-banner-enter {
  animation: fade-up 0.45s ease-out forwards;
}

.swiper-reviews .swiper-button-prev,
.swiper-reviews .swiper-button-next {
  color: #84cc16;
}

.swiper-reviews .swiper-pagination-bullet-active {
  background: #84cc16;
}

.legal-prose h1 {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.25;
  color: #e8f0e0;
}

.legal-prose h2 {
  margin-top: 2.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #e8f0e0;
}

.legal-prose h3 {
  margin-top: 1.5rem;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #e8f0e0;
}

.legal-prose p,
.legal-prose li {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #6e8060;
}

.legal-prose p {
  margin-top: 1rem;
}

.legal-prose ul,
.legal-prose ol {
  margin-top: 1rem;
  padding-left: 1.5rem;
}

.legal-prose ul {
  list-style-type: disc;
}

.legal-prose ol {
  list-style-type: decimal;
}

.legal-prose li {
  margin-top: 0.5rem;
}

.legal-prose a {
  color: #84cc16;
  text-decoration: underline;
}

.legal-prose a:hover {
  color: #65a30d;
}

.legal-prose em {
  color: #6e8060;
}

.legal-prose h1 {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.25;
  color: #e8f0e0;
}

.legal-prose h2 {
  margin-top: 2rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #e8f0e0;
}

.legal-prose h3 {
  margin-top: 1.25rem;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #e8f0e0;
}

.legal-prose p,
.legal-prose li {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #6e8060;
}

.legal-prose p {
  margin-top: 0.75rem;
}

.legal-prose ul,
.legal-prose ol {
  margin-top: 0.75rem;
  padding-left: 1.5rem;
}

.legal-prose ul {
  list-style-type: disc;
}

.legal-prose ol {
  list-style-type: decimal;
}

.legal-prose li + li {
  margin-top: 0.375rem;
}

.legal-prose a {
  color: #84cc16;
  text-decoration: underline;
}

.legal-prose a:hover {
  color: #65a30d;
}

.legal-prose em {
  font-style: italic;
  color: #6e8060;
}

.form-field--error {
  border-color: #ef4444 !important;
}

.form-field__error {
  display: block;
  margin-top: 0.375rem;
  font-size: 0.75rem;
  color: #f87171;
}

.form-toast {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 70;
  max-width: min(100% - 2rem, 22rem);
  border-radius: 0.75rem;
  border: 1px solid #84cc16;
  background: #141810;
  padding: 1rem 1.25rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateX(1.5rem);
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.form-toast.is-visible {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.form-toast__title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #e8f0e0;
}

.form-toast__text {
  margin-top: 0.375rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #6e8060;
}

.faq-item__button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: #e8f0e0;
  transition: color 0.2s ease;
}

.faq-item__button:hover {
  color: #84cc16;
}

.faq-item__icon {
  flex-shrink: 0;
  color: #84cc16;
  transition: transform 0.25s ease;
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-item.is-open .faq-item__panel {
  grid-template-rows: 1fr;
}

.faq-item__content {
  overflow: hidden;
}

.faq-item__answer {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: #6e8060;
}

.article-prose h2 {
  margin-top: 2rem;
  font-size: 1.375rem;
  font-weight: 600;
  color: #e8f0e0;
}

.article-prose h3 {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #e8f0e0;
}

.article-prose p,
.article-prose li {
  font-size: 1rem;
  line-height: 1.75;
  color: #6e8060;
}

.article-prose p {
  margin-top: 1rem;
}

.article-prose ul,
.article-prose ol {
  margin-top: 1rem;
  padding-left: 1.5rem;
}

.article-prose ul {
  list-style-type: disc;
}

.article-prose ol {
  list-style-type: decimal;
}

.article-prose li + li {
  margin-top: 0.5rem;
}

.article-prose a {
  color: #84cc16;
  text-decoration: underline;
}

.article-prose a:hover {
  color: #65a30d;
}

@media (prefers-reduced-motion: reduce) {
  .animate-fade-up,
  .animate-fade-in,
  .animate-pulse-accent,
  .animate-stat-pop,
  .cookie-banner-enter,
  .reveal-on-scroll {
    animation: none;
    transition: none;
    opacity: 1;
    transform: none;
  }
}
