

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

:root {
  --font-display: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  
  --bg-primary: #06040a;
  --bg-secondary: #0d0817;
  --bg-card: rgba(19, 12, 36, 0.75);
  --bg-card-hover: rgba(28, 18, 52, 0.9);
  
  --clr-primary: #a855f7;
  --clr-primary-glow: rgba(168, 85, 247, 0.4);
  --clr-violet: #7928ca;
  --clr-accent: #c084fc;
  --clr-cyan: #00f0ff;
  --clr-cyan-glow: rgba(0, 240, 255, 0.35);
  --clr-emerald: #10b981;
  --clr-rose: #f43f5e;
  --clr-gold: #fbbf24;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-highlight: rgba(168, 85, 247, 0.35);
  
  
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --dur-fast: 160ms;
  --dur-normal: 260ms;
  --dur-slow: 450ms;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden !important;
  position: relative;
  background-color: var(--bg-primary);
  color: #e2e8f0;
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}


body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 8%, black 92%, transparent);
  pointer-events: none;
  z-index: 1;
}

section {
  position: relative;
  overflow: hidden !important;
  width: 100%;
  z-index: 2;
}


.section-ambient-purple {
  background: 
    radial-gradient(circle at 20% 35%, rgba(168, 85, 247, 0.14), transparent 50%),
    radial-gradient(circle at 80% 65%, rgba(192, 132, 252, 0.08), transparent 45%),
    #05030a;
}

.section-ambient-cyan {
  background: 
    radial-gradient(circle at 80% 30%, rgba(0, 240, 255, 0.1), transparent 45%),
    radial-gradient(circle at 20% 70%, rgba(168, 85, 247, 0.1), transparent 45%),
    #05030a;
}

.section-ambient-gold {
  background: 
    radial-gradient(circle at 30% 40%, rgba(192, 132, 252, 0.12), transparent 45%),
    radial-gradient(circle at 75% 70%, rgba(168, 85, 247, 0.1), transparent 45%),
    #05030a;
}


.section-ambient-purple::before,
.section-ambient-cyan::before,
.section-ambient-gold::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 15%, transparent 85%, rgba(255, 255, 255, 0.015) 100%);
  z-index: 1;
}

h1, h2, h3, h4, .font-heading {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.font-mono {
  font-family: var(--font-mono);
  letter-spacing: -0.015em;
  font-feature-settings: "zero" 1;
}


.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 0.675rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.badge-pill-purple {
  background: rgba(168, 85, 247, 0.12);
  color: #c084fc;
  border: 1px solid rgba(168, 85, 247, 0.3);
}

.badge-pill-cyan {
  background: rgba(0, 240, 255, 0.1);
  color: #38bdf8;
  border: 1px solid rgba(0, 240, 255, 0.25);
}

.badge-pill-emerald {
  background: rgba(16, 185, 129, 0.12);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.badge-pill-rose {
  background: rgba(244, 63, 94, 0.12);
  color: #fb7185;
  border: 1px solid rgba(244, 63, 94, 0.25);
}


.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.875rem 1.85rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #a855f7 0%, #7928ca 50%, #4338ca 100%);
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  box-shadow: 
    0 0 35px rgba(168, 85, 247, 0.5),
    0 10px 25px rgba(0, 0, 0, 0.4),
    inset 0 1px 1px rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), filter var(--dur-fast) var(--ease-out);
  cursor: pointer;
  position: relative;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 
    0 0 55px rgba(168, 85, 247, 0.75),
    0 15px 35px rgba(168, 85, 247, 0.35),
    inset 0 1px 1px rgba(255, 255, 255, 0.6);
  filter: brightness(1.15);
}

.btn-primary:active {
  transform: translateY(0px) scale(0.97);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 9999px;
  background: rgba(19, 12, 36, 0.85);
  color: #f1f5f9;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: transform var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out), background-color var(--dur-fast) var(--ease-out);
  cursor: pointer;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(168, 85, 247, 0.5);
  background: rgba(30, 20, 56, 0.9);
  color: #c084fc;
}

.btn-secondary:active {
  transform: translateY(0px) scale(0.97);
}


.glass-panel {
  position: relative;
  background: linear-gradient(145deg, rgba(18, 12, 35, 0.88), rgba(10, 7, 22, 0.94));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 1.35rem;
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 20px 45px rgba(0, 0, 0, 0.6);
  transition: transform var(--dur-normal) var(--ease-out), border-color var(--dur-normal) var(--ease-out), box-shadow var(--dur-normal) var(--ease-out);
}

.glass-panel:hover {
  transform: translateY(-3px);
  border-color: rgba(168, 85, 247, 0.45);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 25px 65px rgba(0, 0, 0, 0.75),
    0 0 35px rgba(168, 85, 247, 0.14);
}

.feature-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.feature-card .cta-bottom {
  margin-top: auto;
}


.media-ambient-glow {
  position: relative;
  z-index: 2;
}

.media-ambient-glow::after {
  content: "";
  position: absolute;
  inset: -12px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.22) 0%, rgba(0, 240, 255, 0.08) 50%, transparent 75%);
  filter: blur(60px);
  border-radius: 2rem;
  z-index: -1;
  pointer-events: none;
}

.media-ambient-cyan::after {
  background: radial-gradient(circle, rgba(0, 240, 255, 0.22) 0%, rgba(168, 85, 247, 0.08) 50%, transparent 75%);
}


.video-placeholder-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(145deg, #110920 0%, #06040a 100%);
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur-normal) var(--ease-out);
  cursor: pointer;
}

.video-placeholder-wrapper:hover {
  border-color: rgba(168, 85, 247, 0.5);
  box-shadow: 0 25px 60px rgba(168, 85, 247, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.video-placeholder-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(168, 85, 247, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 85, 247, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.video-placeholder-wrapper .play-badge {
  position: relative;
  z-index: 10;
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 9999px;
  background: rgba(168, 85, 247, 0.18);
  border: 2px solid #a855f7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c084fc;
  box-shadow: 0 0 35px rgba(168, 85, 247, 0.45);
  transition: transform var(--dur-fast) var(--ease-out), background-color var(--dur-fast) var(--ease-out);
}

.video-placeholder-wrapper:hover .play-badge {
  transform: scale(1.12);
  background: #a855f7;
  color: #ffffff;
  box-shadow: 0 0 50px rgba(168, 85, 247, 0.85);
}

.video-placeholder-wrapper video,
.video-placeholder-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}


.sparkle-badge {
  color: var(--clr-primary);
  text-shadow: 0 0 12px var(--clr-primary-glow);
  display: inline-block;
  animation: sparkle-pulse 3s infinite ease-in-out;
}

@keyframes sparkle-pulse {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  50% { transform: scale(1.15); filter: brightness(1.35) drop-shadow(0 0 10px var(--clr-primary)); }
}

.ambient-glow-purple {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, rgba(121, 40, 202, 0.05) 50%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  filter: blur(80px);
  z-index: 0;
}

.ambient-glow-cyan {
  position: absolute;
  width: 550px;
  height: 550px;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.1) 0%, rgba(0, 240, 255, 0) 70%);
  pointer-events: none;
  filter: blur(80px);
  z-index: 0;
}


.review-card-zh {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 1.5rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform var(--dur-normal) var(--ease-out), border-color var(--dur-normal) var(--ease-out);
}

.review-card-zh:hover {
  transform: translateY(-4px);
  border-color: rgba(168, 85, 247, 0.4);
}

.review-stars {
  color: var(--clr-gold);
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.review-quote {
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 1.5rem;
}

.review-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-top: auto;
  margin-bottom: 1.25rem;
}

.review-author-wrap {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.author-avatar-initials {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #2e1065 0%, #170736 100%);
  border: 1px solid rgba(168, 85, 247, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: #c084fc;
  font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.author-info-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: #f8fafc;
}

.author-info-sub {
  font-size: 0.75rem;
  color: #94a3b8;
}


.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-out);
}

.lang-btn:hover, .lang-btn.active {
  background: rgba(168, 85, 247, 0.25);
  border-color: var(--clr-primary);
  color: #ffffff;
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.3);
}

.lang-card-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 1.25rem;
  border-radius: 1rem;
  background: rgba(19, 12, 36, 0.85);
  border: 1px solid rgba(168, 85, 247, 0.25);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  font-weight: 700;
  color: #f1f5f9;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-out);
}

.lang-card-pill:hover, .lang-card-pill.active {
  border-color: var(--clr-primary);
  background: rgba(46, 16, 101, 0.6);
  box-shadow: 0 0 25px rgba(168, 85, 247, 0.35);
  transform: translateY(-2px);
}

.flag-badge-iso {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 900;
  padding: 0.2rem 0.45rem;
  border-radius: 0.4rem;
  background: rgba(168, 85, 247, 0.2);
  color: #c084fc;
  border: 1px solid rgba(168, 85, 247, 0.4);
}


.lightbox-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background-color: rgba(6, 4, 10, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-normal) var(--ease-out), visibility var(--dur-normal);
}

.lightbox-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  background: #0d0817;
  border: 1px solid rgba(168, 85, 247, 0.25);
  border-radius: 1.5rem;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.85), 0 0 50px rgba(168, 85, 247, 0.2);
  transform: scale(0.95);
  transition: transform var(--dur-normal) var(--ease-spring);
}

.lightbox-backdrop.active .lightbox-content {
  transform: scale(1);
}

.lightbox-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-out);
}

.lightbox-close-btn:hover {
  background: rgba(244, 63, 94, 0.25);
  border-color: var(--clr-rose);
  color: #fff;
  transform: scale(1.05);
}


.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(6, 4, 10, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(168, 85, 247, 0.2);
  padding: 5.5rem 1.5rem 2rem 1.5rem;
  transform: translateY(-150%);
  transition: transform var(--dur-normal) var(--ease-out);
  z-index: 90;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.85);
}

.mobile-nav-drawer.active,
.mobile-nav-drawer.open {
  transform: translateY(0);
}


.flag-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 22px;
  border-radius: 6px;
  overflow: hidden;
  border: 1.5px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1);
  padding: 0;
  opacity: 0.5;
  filter: grayscale(25%);
}

.flag-btn:hover {
  opacity: 0.9;
  filter: grayscale(0%);
  transform: translateY(-1px) scale(1.08);
  border-color: rgba(168, 85, 247, 0.4);
}

.flag-btn.active {
  opacity: 1;
  filter: grayscale(0%);
  border: 2px solid #a855f7 !important;
  box-shadow: 0 0 14px rgba(168, 85, 247, 0.75), inset 0 0 4px rgba(255, 255, 255, 0.3);
  transform: scale(1.08);
}

.flag-btn svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}



.reviews-swiper-wrapper {
  position: relative;
  width: 100%;
}

.reviews-swiper {
  width: 100%;
  padding-top: 12px;
  padding-bottom: 56px !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  overflow: hidden !important;
  position: relative;
}

.swiper-slide {
  height: auto;
  display: flex;
}

.review-card-modern {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 210px;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: 1.25rem;
  padding: 1.5rem;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  width: 100%;
}

.review-card-modern:hover {
  transform: translateY(-4px);
  border-color: var(--border-highlight);
  box-shadow: 0 12px 30px rgba(168, 85, 247, 0.15);
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.3) !important;
  opacity: 1 !important;
  transition: all 0.2s ease;
}

.swiper-pagination-bullet-active {
  background: #a855f7 !important;
  width: 24px !important;
  border-radius: 6px !important;
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.6);
}

.reviews-nav-prev,
.reviews-nav-next,
.swiper-button-next, 
.swiper-button-prev {
  position: absolute !important;
  color: #c084fc !important;
  background: rgba(13, 8, 23, 0.95);
  border: 1.5px solid rgba(168, 85, 247, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 0 15px rgba(168, 85, 247, 0.3);
  top: 45% !important;
  transform: translateY(-50%) !important;
  z-index: 40;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.reviews-nav-prev,
.swiper-button-prev {
  left: -20px !important;
}

.reviews-nav-next,
.swiper-button-next {
  right: -20px !important;
}

@media (min-width: 768px) {
  .reviews-nav-prev,
  .swiper-button-prev {
    left: -28px !important;
  }
  .reviews-nav-next,
  .swiper-button-next {
    right: -28px !important;
  }
}

@media (min-width: 1280px) {
  .reviews-nav-prev,
  .swiper-button-prev {
    left: -36px !important;
  }
  .reviews-nav-next,
  .swiper-button-next {
    right: -36px !important;
  }
}

.reviews-nav-prev:hover,
.reviews-nav-next:hover,
.swiper-button-next:hover, 
.swiper-button-prev:hover {
  background: #a855f7 !important;
  border-color: #c084fc !important;
  color: #ffffff !important;
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.7);
}

.swiper-button-next::after, 
.swiper-button-prev::after {
  font-size: 1.1rem !important;
  font-weight: 900;
}


.faq-item {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: 1rem;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover, .faq-item.active {
  border-color: rgba(168, 85, 247, 0.45);
  box-shadow: 0 6px 20px rgba(168, 85, 247, 0.12);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  gap: 1rem;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: #c084fc;
}

.faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(168, 85, 247, 0.15);
  color: #c084fc;
  font-size: 1.2rem;
  font-family: var(--font-mono);
  font-weight: bold;
  flex-shrink: 0;
  transition: transform 0.3s ease, background-color 0.2s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: #a855f7;
  color: #ffffff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.23, 1, 0.32, 1), padding 0.35s ease;
  padding: 0 1.5rem;
  color: #94a3b8;
  font-size: 0.925rem;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 1.25rem;
}

