/**
 * OFO Development - Components.css
 * Modular CSS for Homepage Components using BEM methodology
 */

/* ======================================
   Component Animation Classes
   ====================================== */

/* Fade animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.animate-on-scroll.fade-up {
  transform: translateY(20px);
}

.animate-on-scroll.fade-down {
  transform: translateY(-20px);
}

.animate-on-scroll.fade-left {
  transform: translateX(20px);
}

.animate-on-scroll.fade-right {
  transform: translateX(-20px);
}

.animate-on-scroll.zoom-in {
  transform: scale(0.95);
}

/* Staggered delay animation helpers */
.delay-100 {
  transition-delay: 100ms;
}

.delay-200 {
  transition-delay: 200ms;
}

.delay-300 {
  transition-delay: 300ms;
}

.delay-400 {
  transition-delay: 400ms;
}

.delay-500 {
  transition-delay: 500ms;
}

/* Animate gradient shine */
@keyframes gradient-shine {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.animate-gradient-shine {
  animation: gradient-shine 3s linear infinite;
  background-size: 200% 100%;
}

/* Animate pulse */
@keyframes pulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

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

/* Carousel animation */
@keyframes carousel {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.animate-carousel {
  animation: carousel 30s linear infinite;
}

/* ======================================
   Canvas and Particles
   ====================================== */

.particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* ======================================
   Hero Section Components
   ====================================== */

/* Hero Background Component */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.2);
}

.hero-bg__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg__video {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
}

.hero-bg__video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 4000ms ease-out;
  filter: brightness(0.9) contrast(1.05);
  will-change: transform;
}

.hero-bg__gradient-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(to bottom, rgba(17, 24, 39, 0.95), rgba(17, 24, 39, 0.8), rgba(17, 24, 39, 1));
}

.hero-bg__light-effect {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: radial-gradient(ellipse at top right, rgba(251, 191, 36, 0.05), transparent, transparent);
  pointer-events: none;
}

/* Premium Badge Component */
.premium-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1rem;
  border-radius: 9999px;
  background: linear-gradient(to right, rgba(245, 158, 11, 0.2), rgba(180, 83, 9, 0.2));
  backdrop-filter: blur(4px);
  border: 1px solid rgba(245, 158, 11, 0.2);
  color: rgb(251, 191, 36);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.premium-badge__icon {
  width: 0.875rem;
  height: 0.875rem;
  margin-right: 0.375rem;
}

/* Hero Heading Component */
.hero-heading {
  font-size: 2.25rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero-heading {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  .hero-heading {
    font-size: 3.75rem;
  }
}

.hero-heading__primary {
  color: white;
  filter: drop-shadow(0 5px 15px rgba(255, 255, 255, 0.15));
}

.hero-heading__gradient {
  background: linear-gradient(to right, rgb(252, 211, 77), rgb(245, 158, 11), rgb(252, 211, 77));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Hero Description */
.hero-description {
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgb(209, 213, 219);
  font-weight: 300;
  letter-spacing: 0.025em;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.5rem;
  }
}

.hero-description__highlight {
  font-weight: 500;
  color: white;
}

/* Credentials Card Component */
.credentials-card {
  background-color: rgba(17, 24, 39, 0.3);
  backdrop-filter: blur(12px);
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  margin-top: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
  transition: border-color 0.5s ease;
}

.credentials-card:hover {
  border-color: rgba(245, 158, 11, 0.3);
}

.credentials-card__item {
  text-align: center;
  padding: 0 1rem;
  border-right: 1px solid rgba(75, 85, 99, 1);
  transition: border-color 0.5s ease;
}

.credentials-card:hover .credentials-card__item {
  border-color: rgba(217, 119, 6, 0.3);
}

.credentials-card__item:last-child {
  border-right: none;
}

.credentials-card__value {
  font-size: 1.875rem;
  font-weight: 700;
  background: linear-gradient(to right, rgb(252, 211, 77), rgb(245, 158, 11));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.credentials-card__label {
  font-size: 0.875rem;
  color: rgb(209, 213, 219);
  font-weight: 500;
  margin-top: 0.25rem;
}

/* Features List Component */
.features-list {
  background-color: rgba(17, 24, 39, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}

.features-list__heading {
  font-size: 1.125rem;
  font-weight: 500;
  color: white;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.features-list__icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
  color: rgb(251, 191, 36);
}

.features-list__items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.features-list__item {
  display: flex;
  align-items: flex-start;
}

.features-list__text {
  color: rgb(209, 213, 219);
}

.features-list__highlight {
  color: white;
}

/* CTA Buttons Component */
.cta-container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: 1rem;
}

@media (min-width: 640px) {
  .cta-container {
    flex-direction: row;
  }
}

.cta-primary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  overflow: hidden;
  color: white;
  border-radius: 0.5rem;
  transition: all 0.5s ease-out;
}

.cta-primary:hover {
  box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.3);
}

.cta-primary__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgb(245, 158, 11), rgb(180, 83, 9));
  background-size: 200% 100%;
  animation: gradient-shine 3s linear infinite;
}

.cta-primary__shine {
  position: absolute;
  right: 0;
  margin-top: -3rem;
  height: 8rem;
  width: 2rem;
  transform: translateX(3rem) rotate(12deg);
  background-color: rgba(255, 255, 255, 0.3);
  transition: all 1s ease-out;
}

.cta-primary:hover .cta-primary__shine {
  transform: translateX(-24rem);
  opacity: 0.5;
}

.cta-primary__text {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.025em;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
}

.cta-primary__icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
}

.cta-secondary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-weight: 500;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.cta-secondary:hover {
  border-color: rgba(251, 191, 36, 0.6);
  color: rgb(252, 211, 77);
}

.cta-secondary__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(217, 119, 6, 0), rgba(217, 119, 6, 0.05), rgba(217, 119, 6, 0));
  opacity: 0;
  transition: opacity 0.5s;
}

.cta-secondary:hover .cta-secondary__bg {
  opacity: 1;
}

.cta-secondary__text {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.025em;
}

.cta-secondary__icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
}

/* Dashboard Preview Component */
.dashboard-preview {
  position: relative;
}

.dashboard-preview__glow {
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: linear-gradient(to right, rgba(252, 211, 77, 0.1), rgba(245, 158, 11, 0.2), rgba(180, 83, 9, 0.1));
  filter: blur(60px);
  opacity: 0.3;
  animation: pulse 4s ease-in-out infinite;
}

.dashboard-preview__container {
  position: relative;
  background-color: rgba(17, 24, 39, 0.4);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  padding: 1.25rem;
}

.dashboard-preview__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.dashboard-preview__window-controls {
  display: flex;
  gap: 0.5rem;
}

.dashboard-preview__dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 9999px;
}

.dashboard-preview__dot--red {
  background-color: rgb(239, 68, 68);
}

.dashboard-preview__dot--yellow {
  background-color: rgb(245, 158, 11);
}

.dashboard-preview__dot--green {
  background-color: rgb(34, 197, 94);
}

.dashboard-preview__address-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dashboard-preview__url {
  height: 1rem;
  width: 6rem;
  border-radius: 0.375rem;
  background-color: rgba(75, 85, 99, 0.7);
}

.dashboard-preview__menu-icon {
  width: 1rem;
  height: 1rem;
  color: rgb(156, 163, 175);
}

.dashboard-preview__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.dashboard-preview__stat-card {
  background-color: rgba(31, 41, 55, 0.5);
  height: 6rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}

.dashboard-preview__stat-content {
  text-align: center;
}

.dashboard-preview__stat-value {
  color: rgb(251, 191, 36);
  font-size: 1.5rem;
  font-weight: 700;
}

.dashboard-preview__stat-label {
  color: rgb(156, 163, 175);
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

.dashboard-preview__chart {
  background-color: rgba(31, 41, 55, 0.5);
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.75rem;
  margin-bottom: 1rem;
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  height: 10rem;
  position: relative;
  overflow: hidden;
}

.dashboard-preview__chart-label {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  font-size: 0.75rem;
  color: rgb(156, 163, 175);
}

.dashboard-preview__chart-value {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  font-size: 0.75rem;
  color: rgb(251, 191, 36);
}

.dashboard-preview__chart-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6rem;
}

.dashboard-preview__chart-svg {
  height: 100%;
  width: 100%;
}

.dashboard-preview__chart-path {
  fill: rgba(217, 119, 6, 0.1);
  stroke: rgba(245, 158, 11, 0.8);
  stroke-width: 0.25;
  transition: all 1s;
}

.dashboard-preview__chart-dot {
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background-color: rgb(245, 158, 11);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

.dashboard-preview__controls {
  display: flex;
  gap: 0.75rem;
}

.dashboard-preview__progress {
  flex: 1;
  background-color: rgba(31, 41, 55, 0.5);
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.5rem 0.75rem;
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}

.dashboard-preview__progress-bar {
  height: 0.5rem;
  width: 75%;
  background-color: rgba(217, 119, 6, 0.7);
  border-radius: 9999px;
}

.dashboard-preview__action-button {
  background-color: rgb(245, 158, 11);
  height: 2rem;
  width: 2rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(245, 158, 11, 0.2);
}

.dashboard-preview__action-icon {
  width: 1rem;
  height: 1rem;
  color: rgb(31, 41, 55);
}

/* ======================================
   FAQ Accordion Components
   ====================================== */

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background: linear-gradient(to bottom right, rgba(31, 41, 55, 0.4), rgba(17, 24, 39, 0.4));
  backdrop-filter: blur(16px);
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  text-align: left;
  transition: background-color 0.3s;
}

.faq-question:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.faq-question span {
  font-size: 1.25rem;
  font-weight: 500;
  color: white;
}

.faq-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: rgb(251, 191, 36);
  transform: rotate(0deg);
  transition: transform 0.3s;
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer > div {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  margin-top: 0.25rem;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  color: rgb(209, 213, 219);
  margin-bottom: 0.75rem;
}

.faq-answer ul, .faq-answer ol {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.faq-answer li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.faq-answer li svg {
  width: 1.25rem;
  height: 1.25rem;
  color: rgb(251, 191, 36);
  margin-top: 0.125rem;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.faq-answer li span {
  color: rgb(209, 213, 219);
}

/* Numbered list in FAQ */
.faq-answer ol li {
  display: flex;
}

.faq-answer ol li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  background-color: rgba(245, 158, 11, 0.2);
  color: rgb(251, 191, 36);
  border-radius: 9999px;
  margin-right: 0.75rem;
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 600;
}

.faq-answer ol li div {
  display: flex;
  flex-direction: column;
}

.faq-answer ol li div span:first-child {
  color: white;
  font-weight: 500;
  margin-bottom: 0.25rem;
  width: auto;
  height: auto;
  background-color: transparent;
}

.faq-answer ol li div p {
  font-size: 0.875rem;
  margin-top: 0.25rem;
  margin-bottom: 0;
}

/* ======================================
   Logos Carousel Component
   ====================================== */

.logos-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 2rem 0;
}

.logos-slide {
  display: flex;
  align-items: center;
  gap: 4rem;
  animation: carousel 30s linear infinite;
}

.logo-item {
  height: 3rem;
  background: linear-gradient(145deg, rgba(31, 41, 55, 1), rgba(17, 24, 39, 1));
  border-radius: 0.5rem;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(75, 85, 99, 0.5);
  backdrop-filter: blur(8px);
}

.logo-item div {
  color: rgb(251, 191, 36);
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* ======================================
   Enterprise Solution Cards Component
   ====================================== */

.solution-card {
  background: linear-gradient(to bottom right, rgba(31, 41, 55, 0.4), rgba(17, 24, 39, 0.4));
  backdrop-filter: blur(16px);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
}

.solution-card:hover {
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-0.5rem);
}

.solution-card__corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 5rem;
  height: 5rem;
  background: linear-gradient(to bottom left, rgba(245, 158, 11, 0.2), transparent);
  border-bottom-left-radius: 3rem;
}

.solution-card__icon {
  color: rgb(251, 191, 36);
  margin-bottom: 1.25rem;
}

.solution-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

.solution-card__description {
  color: rgb(209, 213, 219);
  margin-bottom: 1.5rem;
}

.solution-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.solution-card__feature {
  display: flex;
  align-items: center;
  color: rgb(209, 213, 219);
}

.solution-card__feature-icon {
  width: 1rem;
  height: 1rem;
  color: rgb(251, 191, 36);
  margin-right: 0.5rem;
}

.solution-card__link {
  display: inline-flex;
  align-items: center;
  color: rgb(251, 191, 36);
  transition: color 0.3s;
}

.solution-card__link:hover {
  color: rgb(252, 211, 77);
}

.solution-card__link-icon {
  width: 1rem;
  height: 1rem;
  margin-left: 0.25rem;
}

/* ======================================
   Utility Classes
   ====================================== */

.text-gradient {
  background: linear-gradient(to right, rgb(252, 211, 77), rgb(245, 158, 11), rgb(252, 211, 77));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bg-blur {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Support for reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .animate-on-scroll {
    opacity: 1;
    transform: none !important;
  }
  
  .particles-canvas {
    display: none !important;
  }
}

/* ======================================
   Navbar Components
   ====================================== */

/* Navbar base */
nav {
  transition: all 0.3s ease;
}

nav.scrolled {
  background-color: rgba(17, 24, 39, 0.95) !important;
  backdrop-filter: blur(20px) !important;
}

/* Dropdown menu */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  width: 16rem;
  border-radius: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 50;
  overflow: hidden;
}

.dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  transition: background-color 0.2s;
}

.dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.dropdown-item-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.75rem;
  color: rgb(251, 191, 36);
}

.dropdown-item-content {
  flex: 1;
}

.dropdown-item-title {
  font-weight: 500;
  color: white;
  font-size: 0.875rem;
}

.dropdown-item-description {
  font-size: 0.75rem;
  color: rgb(156, 163, 175);
  margin-top: 0.25rem;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 72px; /* Height of navbar */
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(17, 24, 39, 0.98);
  backdrop-filter: blur(20px);
  z-index: 40;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  padding: 1.5rem;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-nav-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: rgb(209, 213, 219);
  font-weight: 500;
  transition: color 0.2s;
}

.mobile-nav-link:hover {
  color: rgb(251, 191, 36);
}

.mobile-dropdown-menu {
  padding-left: 1rem;
  margin-top: 1rem;
  display: none;
}

.mobile-dropdown-menu.active {
  display: block;
}

.mobile-dropdown-item {
  margin-bottom: 1.5rem;
}

.mobile-dropdown-item-title {
  font-weight: 500;
  color: white;
  margin-bottom: 0.25rem;
}

.mobile-dropdown-item-description {
  font-size: 0.875rem;
  color: rgb(156, 163, 175);
}
