/* Mobile auth pages - explicit media query to hide left panel */
@media (max-width: 1023px) {
  .auth-left-panel {
    display: none !important;
  }
  .auth-right-panel {
    width: 100% !important;
    max-width: 100% !important;
  }
  .auth-mobile-logo {
    display: flex !important;
    justify-content: center;
    padding: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .auth-mobile-logo {
    display: none !important;
  }
}

/* Mobile menu - solid background, no backdrop-filter */
.mobile-nav-menu {
  background-color: #091d09;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.mobile-nav-menu.open {
  max-height: 500px;
}

/* Password toggle button */
.password-toggle {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #9ca3af;
  padding: 0.25rem;
}
.password-toggle:hover {
  color: #4b5563;
}

/* Language dropdown */
.lang-dropdown-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
}
.lang-dropdown-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Also support .lang-dropdown class used on landing page */
.lang-dropdown {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
}
.lang-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Animation keyframes */
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes ken-burns {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-marquee {
  display: flex;
  animation: marquee-scroll 30s linear infinite;
  width: max-content;
}
.animate-marquee:hover {
  animation-play-state: paused;
}
.animate-ken-burns {
  animation: ken-burns 20s ease-out forwards;
}
.animate-fade-up {
  opacity: 0;
  animation: fade-up 0.6s ease-out forwards;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Accordion */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}
.accordion-content.open {
  max-height: 500px;
}
.accordion-icon {
  transition: transform 0.3s ease;
}
.accordion-icon.open {
  transform: rotate(45deg);
}

/* Pricing toggle */
.toggle-track {
  position: relative;
  width: 3.5rem;
  height: 1.75rem;
  border-radius: 9999px;
  background-color: #0d4a2a;
  cursor: pointer;
}
.toggle-thumb {
  position: absolute;
  top: 0.125rem;
  left: 0.125rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  background-color: white;
  transition: transform 0.2s;
}
.toggle-thumb.annual {
  transform: translateX(1.75rem);
}

/* Navbar scroll state */
.navbar-scrolled {
  background-color: rgba(10,31,10,0.95) !important;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* FAQ card styling */
.card-light {
  background-color: white;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

/* Primary CTA button */
button.btn-primary,
a.btn-primary,
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #f59e0b !important;
  color: #0a1f0a !important;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  transition: background-color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
  border: none !important;
  cursor: pointer;
}
button.btn-primary:hover,
a.btn-primary:hover,
.btn-primary:hover {
  background-color: #d97706 !important;
}
