/*** Colors ***/
/*** Dark Mode Text Colors - Accessible ***/
/*** Typography Scale - Consistent across pages ***/
@keyframes faqFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes faqSlideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes faqCardReveal {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
.faq-page-2025 {
  min-height: 100vh;
  padding-bottom: 80px;
  background: #F5F6F6;
}

.faq-hero {
  padding: 32px 0 48px 0;
  position: relative;
}
.faq-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(255, 173, 0, 0.04) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(18, 179, 185, 0.03) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

.faq-hero-content {
  width: 85vw;
  max-width: 1740.8px;
  margin: 0 auto;
  padding: 48px 56px;
  position: relative;
  z-index: 1;
  background: white;
  border-radius: 28px;
  border: 1px solid rgba(227, 230, 229, 0.4);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  animation: faqFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  text-align: center;
}
@media (min-width: 992px) {
  .faq-hero-content {
    text-align: left;
  }
}

.faq-title {
  font-size: clamp(1.75rem, 2.8vw, 2.4rem);
  font-weight: 800;
  color: #131717;
  line-height: 1.2;
  margin: 0 0 24px 0;
  position: relative;
  letter-spacing: -0.02em;
  display: inline-block;
  animation: faqSlideIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.1s backwards;
}
.faq-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 5px;
  background: linear-gradient(135deg, #12B3B9 0%, #16d7de 50%, #12B3B9 100%);
  background-size: 200% 100%;
  border-radius: 3px;
  animation: shimmer 3s linear infinite;
}
@media (min-width: 992px) {
  .faq-title::after {
    left: 0;
    transform: none;
  }
}

.faq-subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4C5B5A;
  margin: 32px 0 0 0;
  max-width: 600px;
  animation: faqFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.2s backwards;
}
@media (min-width: 992px) {
  .faq-subtitle {
    margin-left: 0;
  }
}
@media (max-width: 991px) {
  .faq-subtitle {
    margin: 32px auto 0;
  }
}

.faq-container {
  width: 85vw;
  max-width: 1740.8px;
  margin: 0 auto;
  padding-top: 40px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
  animation: faqFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.15s backwards;
}
@media (max-width: 991px) {
  .faq-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}

.faq-sidebar {
  position: sticky;
  top: 100px;
}
@media (max-width: 991px) {
  .faq-sidebar {
    position: relative;
    top: 0;
  }
}

.faq-nav {
  background: white;
  border-radius: 20px;
  padding: 24px 20px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(227, 230, 229, 0.5);
}
@media (max-width: 991px) {
  .faq-nav {
    padding: 16px;
  }
}

.faq-nav-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #707C7B;
  margin: 0 0 16px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.faq-nav-title::before {
  content: "";
  width: 5px;
  height: 16px;
  background: linear-gradient(135deg, #12B3B9 0%, #16d7de 50%, #12B3B9 100%);
  border-radius: 3px;
}
@media (max-width: 991px) {
  .faq-nav-title {
    display: none;
  }
}

.faq-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 991px) {
  .faq-nav-list {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
  }
  .faq-nav-list::-webkit-scrollbar {
    display: none;
  }
}

.faq-nav-item {
  margin: 0;
}
@media (max-width: 991px) {
  .faq-nav-item {
    flex-shrink: 0;
  }
}

.faq-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #4C5B5A;
  text-decoration: none;
  background: white;
  border: 1px solid rgba(227, 230, 229, 0.5);
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.faq-nav-link .faq-nav-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(227, 230, 229, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #707C7B;
  transition: 0.2s ease;
  flex-shrink: 0;
}
.faq-nav-link .faq-nav-text {
  flex: 1;
  text-transform: capitalize;
  white-space: nowrap;
}
.faq-nav-link .faq-nav-count {
  font-size: 0.75rem;
  font-weight: 600;
  color: #A5ADAC;
  background: rgba(227, 230, 229, 0.6);
  padding: 4px 10px;
  border-radius: 20px;
  transition: 0.2s ease;
}
.faq-nav-link:hover {
  border-color: rgba(18, 179, 185, 0.2);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  transform: translateX(4px);
}
.faq-nav-link:hover .faq-nav-icon {
  background: rgba(18, 179, 185, 0.12);
  color: #12B3B9;
}
@media (max-width: 991px) {
  .faq-nav-link:hover {
    transform: none;
  }
}
.faq-nav-link.active {
  background: #12B3B9;
  color: white;
  border-color: #12B3B9;
  box-shadow: 0 4px 16px rgba(18, 179, 185, 0.3);
}
.faq-nav-link.active .faq-nav-icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}
.faq-nav-link.active .faq-nav-count {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}
@media (max-width: 991px) {
  .faq-nav-link {
    padding: 10px 16px;
    justify-content: center;
  }
  .faq-nav-link .faq-nav-icon,
  .faq-nav-link .faq-nav-count {
    display: none;
  }
}

.faq-section {
  margin-bottom: 48px;
  scroll-margin-top: 100px;
}
.faq-section:last-of-type {
  margin-bottom: 0;
}

.faq-section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(209, 213, 213, 0.35);
}

.faq-section-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #12B3B9 0%, #16d7de 50%, #12B3B9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  box-shadow: 0 4px 16px rgba(18, 179, 185, 0.25);
  flex-shrink: 0;
}

.faq-section-title {
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-weight: 700;
  color: #131717;
  margin: 0;
  line-height: 1.3;
  flex: 1;
}

.faq-section-count {
  font-size: 0.82rem;
  color: #707C7B;
  background: rgba(227, 230, 229, 0.6);
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 500;
}

.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-accordion {
  background: white;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(227, 230, 229, 0.6);
  overflow: hidden;
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.faq-accordion:nth-child(1) {
  animation: faqCardReveal 0.3s cubic-bezier(0.16, 1, 0.3, 1) 0.25s backwards;
}
.faq-accordion:nth-child(2) {
  animation: faqCardReveal 0.3s cubic-bezier(0.16, 1, 0.3, 1) 0.3s backwards;
}
.faq-accordion:nth-child(3) {
  animation: faqCardReveal 0.3s cubic-bezier(0.16, 1, 0.3, 1) 0.35s backwards;
}
.faq-accordion:nth-child(4) {
  animation: faqCardReveal 0.3s cubic-bezier(0.16, 1, 0.3, 1) 0.4s backwards;
}
.faq-accordion:nth-child(5) {
  animation: faqCardReveal 0.3s cubic-bezier(0.16, 1, 0.3, 1) 0.45s backwards;
}
.faq-accordion:nth-child(6) {
  animation: faqCardReveal 0.3s cubic-bezier(0.16, 1, 0.3, 1) 0.5s backwards;
}
.faq-accordion:nth-child(7) {
  animation: faqCardReveal 0.3s cubic-bezier(0.16, 1, 0.3, 1) 0.55s backwards;
}
.faq-accordion:nth-child(8) {
  animation: faqCardReveal 0.3s cubic-bezier(0.16, 1, 0.3, 1) 0.6s backwards;
}
.faq-accordion:nth-child(9) {
  animation: faqCardReveal 0.3s cubic-bezier(0.16, 1, 0.3, 1) 0.65s backwards;
}
.faq-accordion:nth-child(10) {
  animation: faqCardReveal 0.3s cubic-bezier(0.16, 1, 0.3, 1) 0.7s backwards;
}
.faq-accordion:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border-color: rgba(18, 179, 185, 0.15);
}
.faq-accordion.open {
  border-color: rgba(18, 179, 185, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
.faq-accordion.open .faq-accordion-header {
  background: rgba(18, 179, 185, 0.04);
}
.faq-accordion.open .faq-accordion-icon {
  background: #12B3B9;
  color: white;
}
.faq-accordion.open .faq-accordion-icon i {
  transform: rotate(45deg);
}
.faq-accordion.open .faq-accordion-number {
  background: #12B3B9;
  color: white;
}

.faq-accordion-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  cursor: pointer;
  transition: background 0.2s ease;
  user-select: none;
}
.faq-accordion-header:hover {
  background: rgba(245, 246, 246, 0.5);
}

.faq-accordion-number {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(227, 230, 229, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #707C7B;
  flex-shrink: 0;
  transition: 0.2s ease;
}

.faq-accordion-question {
  flex: 1;
  font-size: 1rem;
  font-weight: 600;
  color: #4C5B5A;
  line-height: 1.5;
  margin: 0;
}

.faq-accordion-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(227, 230, 229, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #707C7B;
  flex-shrink: 0;
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-accordion-icon i {
  font-size: 12px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
}

.faq-accordion-answer {
  padding: 15px 20px 20px 64px;
  font-size: 0.95rem;
  color: #707C7B;
  line-height: 1.75;
}
.faq-accordion-answer p {
  margin: 0 0 14px 0;
  color: inherit;
}
.faq-accordion-answer p:last-child {
  margin-bottom: 0;
}
.faq-accordion-answer a {
  color: #FFAD00;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}
.faq-accordion-answer a:hover {
  color: rgba(255, 173, 0, 0.8470588235);
  text-decoration: underline;
}
.faq-accordion-answer ul, .faq-accordion-answer ol {
  margin: 14px 0;
  padding-left: 20px;
}
.faq-accordion-answer ul li, .faq-accordion-answer ol li {
  margin-bottom: 8px;
  color: inherit;
}
.faq-accordion-answer strong, .faq-accordion-answer b {
  color: #131717;
  font-weight: 600;
}
.faq-accordion-answer h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #12B3B9;
  margin: 20px 0 10px 0;
}
.faq-accordion-answer h3:first-child {
  margin-top: 0;
}

.faq-accordion.open .faq-accordion-body {
  opacity: 1;
}

.faq-help-section {
  margin-top: 56px;
  padding: 40px 48px;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
  text-align: center;
  animation: faqFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.4s backwards;
}

.faq-help-title {
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-weight: 700;
  color: #131717;
  margin: 0 0 10px 0;
}

.faq-help-text {
  font-size: 1rem;
  color: #707C7B;
  margin: 0 0 24px 0;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.faq-help-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: #12B3B9;
  color: white;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 14px;
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(18, 179, 185, 0.3);
}
.faq-help-button i {
  font-size: 16px;
  transition: transform 0.2s ease;
}
.faq-help-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(18, 179, 185, 0.4);
  color: white;
}
.faq-help-button:hover i {
  transform: translateX(4px);
}

.faq-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 991px) {
  .faq-hero-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.faq-hero--centered .faq-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.faq-hero-text {
  animation: faqSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.faq-hero-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 28px 0 20px 0;
}
.faq-hero--centered .faq-hero-badges {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 20px 0 16px 0;
}

.faq-hero-badge {
  display: inline-flex;
  align-items: center;
  background: white;
  padding: 12px 16px;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(227, 230, 229, 0.5);
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  width: fit-content;
}
.faq-hero-badge i {
  color: #12B3B9;
  font-size: 1.1rem;
  margin-right: 12px;
  flex-shrink: 0;
}
.faq-hero-badge span {
  font-weight: 600;
  color: #4C5B5A;
  font-size: 0.9rem;
}
.faq-hero-badge:nth-child(1) {
  animation: faqSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.23s backwards;
}
.faq-hero-badge:nth-child(2) {
  animation: faqSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.31s backwards;
}
.faq-hero-badge:nth-child(3) {
  animation: faqSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.39s backwards;
}
.faq-hero-badge:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-color: rgba(18, 179, 185, 0.2);
  transform: translateX(6px);
}
.faq-hero--centered .faq-hero-badge:nth-child(1) {
  animation: faqFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.48s backwards;
}
.faq-hero--centered .faq-hero-badge:nth-child(2) {
  animation: faqFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.56s backwards;
}
.faq-hero--centered .faq-hero-badge:nth-child(3) {
  animation: faqFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.64s backwards;
}
.faq-hero--centered .faq-hero-badge:hover {
  transform: translateY(-3px);
}

.faq-hero-hashtags {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: faqFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.5s backwards;
}
.faq-hero--centered .faq-hero-hashtags {
  justify-content: center;
  animation-delay: 0.7s;
}

.faq-hashtag {
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: #707C7B;
  transition: 0.2s ease;
}
.faq-hashtag i {
  color: #12B3B9;
  font-size: 0.7rem;
  margin-right: 2px;
}
.faq-hashtag:hover {
  color: #12B3B9;
}

.faq-search-wrapper {
  animation: faqFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.3s backwards;
  position: relative;
}
.faq-hero--centered .faq-search-wrapper {
  width: 100%;
  max-width: 550px;
  animation-delay: 0.2s;
}

.faq-search {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 2px solid rgba(227, 230, 229, 0.6);
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.faq-search:focus-within {
  border-color: #12B3B9;
  box-shadow: 0 16px 48px rgba(18, 179, 185, 0.12), 0 8px 24px rgba(0, 0, 0, 0.1), 0 0 0 4px rgba(18, 179, 185, 0.1);
}

.faq-search-icon {
  position: absolute;
  left: 20px;
  color: #707C7B;
  font-size: 1rem;
  pointer-events: none;
  transition: color 0.2s ease;
}
.faq-search:focus-within .faq-search-icon {
  color: #12B3B9;
}

.faq-search-input {
  width: 100%;
  padding: 18px 50px 18px 52px;
  border: none;
  background: transparent;
  font-size: 1rem;
  color: #131717;
  outline: none;
}
.faq-search-input::placeholder {
  color: #707C7B;
}

.faq-search-clear {
  position: absolute;
  right: 16px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: rgba(227, 230, 229, 0.6);
  color: #707C7B;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
}
.faq-search-clear.visible {
  display: flex;
}
.faq-search-clear:hover {
  background: rgba(18, 179, 185, 0.15);
  color: #12B3B9;
}

.faq-search-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 8px 24px rgba(18, 179, 185, 0.08);
  border: 1px solid rgba(227, 230, 229, 0.5);
  max-height: 300px;
  overflow-y: auto;
  display: none;
  z-index: 100;
}
.faq-search-results.active {
  display: block;
}

.faq-search-result {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  text-decoration: none;
  color: #4C5B5A;
  border-bottom: 1px solid rgba(227, 230, 229, 0.4);
  transition: all 0.2s ease;
  font-size: 0.92rem;
}
.faq-search-result:last-child {
  border-bottom: none;
}
.faq-search-result:hover {
  background: rgba(18, 179, 185, 0.08);
  color: #12B3B9;
}
.faq-search-result:hover i {
  color: #12B3B9;
}
.faq-search-result i {
  font-size: 14px;
  color: #A5ADAC;
  flex-shrink: 0;
  transition: color 0.2s ease;
}
.faq-search-result span {
  flex: 1;
  line-height: 1.4;
}
.faq-search-result mark {
  background: rgba(18, 179, 185, 0.2);
  color: #131717;
  padding: 1px 4px;
  border-radius: 3px;
  font-weight: 500;
}

.faq-search-no-results {
  padding: 20px;
  text-align: center;
  color: #707C7B;
  font-size: 0.95rem;
}

.faq-popular-section {
  width: 85vw;
  max-width: 1740.8px;
  margin: 0 auto 40px auto;
  animation: faqFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.4s backwards;
}

.faq-popular-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.faq-popular-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #d4a84b 0%, #f0c674 50%, #d4a84b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  box-shadow: 0 4px 16px rgba(212, 168, 75, 0.35);
}

.faq-popular-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #131717;
  margin: 0;
}

.faq-popular-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 991px) {
  .faq-popular-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .faq-popular-grid {
    grid-template-columns: 1fr;
  }
}

.faq-popular-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(227, 230, 229, 0.75);
  text-decoration: none;
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.faq-popular-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, #d4a84b 0%, #f0c674 50%, #d4a84b 100%);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.faq-popular-card:nth-child(1) {
  animation: faqCardReveal 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.56s backwards;
}
.faq-popular-card:nth-child(2) {
  animation: faqCardReveal 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.62s backwards;
}
.faq-popular-card:nth-child(3) {
  animation: faqCardReveal 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.68s backwards;
}
.faq-popular-card:nth-child(4) {
  animation: faqCardReveal 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.74s backwards;
}
.faq-popular-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(18, 179, 185, 0.12), 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: rgba(212, 168, 75, 0.3);
}
.faq-popular-card:hover::before {
  opacity: 1;
}
.faq-popular-card:hover .faq-popular-card-icon {
  background: linear-gradient(135deg, #d4a84b 0%, #f0c674 50%, #d4a84b 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(212, 168, 75, 0.3);
}
.faq-popular-card:hover .faq-popular-arrow {
  transform: translateX(4px);
  color: #d4a84b;
}

.faq-popular-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(212, 168, 75, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4a84b;
  font-size: 16px;
  flex-shrink: 0;
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-popular-card-text {
  flex: 1;
  font-size: 0.92rem;
  font-weight: 600;
  color: #4C5B5A;
  line-height: 1.3;
}

.faq-popular-arrow {
  color: #A5ADAC;
  font-size: 12px;
  transition: 0.2s ease;
}

.faq-contact-section {
  margin-top: 56px;
  padding: 48px;
  background: linear-gradient(180deg, white 0%, rgba(245, 246, 246, 0.5) 100%);
  border-radius: 28px;
  border: 1px solid rgba(227, 230, 229, 0.4);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  animation: faqFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.4s backwards;
}

.faq-contact-header {
  text-align: center;
  margin-bottom: 32px;
}

.faq-contact-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 20px;
  background: linear-gradient(135deg, #d4a84b 0%, #f0c674 50%, #d4a84b 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  margin-bottom: 16px;
  box-shadow: 0 6px 20px rgba(212, 168, 75, 0.35);
}

.faq-contact-title {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #131717;
  margin: 0 0 8px 0;
}

.faq-contact-subtitle {
  font-size: 1rem;
  color: #707C7B;
  margin: 0;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.faq-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .faq-contact-grid {
    grid-template-columns: 1fr;
  }
}

.faq-contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 20px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(227, 230, 229, 0.5);
  text-decoration: none;
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
}
.faq-contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border-color: rgba(18, 179, 185, 0.2);
}
.faq-contact-card:hover .faq-contact-card-icon {
  transform: scale(1.08);
}

.faq-contact-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #12B3B9 0%, #16d7de 50%, #12B3B9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(18, 179, 185, 0.3);
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-contact-card-icon--whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.faq-contact-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #131717;
  margin-bottom: 4px;
}

.faq-contact-card-desc {
  font-size: 0.88rem;
  color: #707C7B;
}

body.darkmode .faq-page-2025 {
  background: #131717;
}
body.darkmode .faq-hero::before {
  background-image: radial-gradient(circle at 20% 30%, rgba(18, 179, 185, 0.06) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(18, 179, 185, 0.04) 0%, transparent 40%);
}
body.darkmode .faq-hero-content {
  background: rgba(19, 23, 23, 0.97);
  border-color: rgba(57, 68, 68, 0.5);
}
body.darkmode .faq-title {
  color: #ffffff;
}
body.darkmode .faq-subtitle {
  color: #A5ADAC;
}
body.darkmode .faq-nav {
  background: rgba(38, 46, 45, 0.97);
  border-color: rgba(57, 68, 68, 0.5);
}
body.darkmode .faq-nav-title {
  color: #A5ADAC;
}
body.darkmode .faq-nav-link {
  background: #262E2D;
  border-color: rgba(57, 68, 68, 0.8);
  color: #E3E6E5;
}
body.darkmode .faq-nav-link .faq-nav-icon {
  background: rgba(57, 68, 68, 0.6);
  color: #A5ADAC;
}
body.darkmode .faq-nav-link .faq-nav-count {
  background: rgba(57, 68, 68, 0.6);
  color: #A5ADAC;
}
body.darkmode .faq-nav-link:hover {
  border-color: rgba(18, 179, 185, 0.3);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}
body.darkmode .faq-nav-link:hover .faq-nav-icon {
  background: rgba(18, 179, 185, 0.2);
  color: #17e0e7;
}
body.darkmode .faq-nav-link.active {
  background: #12B3B9;
  color: white;
  border-color: #12B3B9;
}
body.darkmode .faq-nav-link.active .faq-nav-icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}
body.darkmode .faq-nav-link.active .faq-nav-count {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}
body.darkmode .faq-section-header {
  border-bottom-color: rgba(57, 68, 68, 0.5);
}
body.darkmode .faq-section-title {
  color: #ffffff;
}
body.darkmode .faq-section-count {
  background: rgba(57, 68, 68, 0.6);
  color: #A5ADAC;
}
body.darkmode .faq-accordion {
  background: rgba(38, 46, 45, 0.98);
  border-color: rgba(57, 68, 68, 0.75);
}
body.darkmode .faq-accordion:hover {
  border-color: rgba(18, 179, 185, 0.25);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}
body.darkmode .faq-accordion.open {
  border-color: rgba(18, 179, 185, 0.35);
}
body.darkmode .faq-accordion.open .faq-accordion-header {
  background: rgba(18, 179, 185, 0.08);
}
body.darkmode .faq-accordion-header:hover {
  background: rgba(57, 68, 68, 0.3);
}
body.darkmode .faq-accordion-number {
  background: rgba(57, 68, 68, 0.6);
  color: #A5ADAC;
}
body.darkmode .faq-accordion.open .faq-accordion-number {
  background: #12B3B9;
  color: white;
}
body.darkmode .faq-accordion-question {
  color: #E3E6E5;
}
body.darkmode .faq-accordion-icon {
  background: rgba(57, 68, 68, 0.6);
  color: #A5ADAC;
}
body.darkmode .faq-accordion.open .faq-accordion-icon {
  background: #12B3B9;
  color: white;
}
body.darkmode .faq-accordion-answer {
  color: #A5ADAC;
}
body.darkmode .faq-accordion-answer a {
  color: #ffba29;
}
body.darkmode .faq-accordion-answer a:hover {
  color: #ffc64d;
}
body.darkmode .faq-accordion-answer strong, body.darkmode .faq-accordion-answer b {
  color: #E3E6E5;
}
body.darkmode .faq-accordion-answer h3 {
  color: #17e0e7;
}
body.darkmode .faq-help-section {
  background: rgba(38, 46, 45, 0.97);
  border-color: rgba(57, 68, 68, 0.5);
}
body.darkmode .faq-help-title {
  color: #ffffff;
}
body.darkmode .faq-help-text {
  color: #A5ADAC;
}
body.darkmode .faq-hero-badge {
  background: rgba(38, 46, 45, 0.97);
  border-color: rgba(18, 179, 185, 0.2);
}
body.darkmode .faq-hero-badge span {
  color: #E3E6E5;
}
body.darkmode .faq-hero-badge:hover {
  background: rgba(38, 46, 45, 0.95);
  border-color: rgba(18, 179, 185, 0.35);
}
body.darkmode .faq-hashtag {
  color: #A5ADAC;
}
body.darkmode .faq-hashtag:hover {
  color: #17e0e7;
}
body.darkmode .faq-search {
  background: rgba(38, 46, 45, 0.97);
  border-color: rgba(57, 68, 68, 0.6);
}
body.darkmode .faq-search:focus-within {
  border-color: #12B3B9;
}
body.darkmode .faq-search-input {
  color: #E3E6E5;
}
body.darkmode .faq-search-input::placeholder {
  color: #A5ADAC;
}
body.darkmode .faq-search-icon {
  color: #A5ADAC;
}
body.darkmode .faq-search-clear {
  background: rgba(57, 68, 68, 0.6);
  color: #A5ADAC;
}
body.darkmode .faq-search-clear:hover {
  background: rgba(18, 179, 185, 0.2);
  color: #17e0e7;
}
body.darkmode .faq-search-results {
  background: rgba(38, 46, 45, 0.98);
  border-color: rgba(57, 68, 68, 0.5);
}
body.darkmode .faq-search-result {
  color: #E3E6E5;
  border-bottom-color: rgba(57, 68, 68, 0.4);
}
body.darkmode .faq-search-result i {
  color: #A5ADAC;
}
body.darkmode .faq-search-result:hover {
  background: rgba(18, 179, 185, 0.1);
  color: #17e0e7;
}
body.darkmode .faq-search-result:hover i {
  color: #17e0e7;
}
body.darkmode .faq-search-result mark {
  background: rgba(18, 179, 185, 0.25);
  color: #E3E6E5;
}
body.darkmode .faq-search-no-results {
  color: #A5ADAC;
}
body.darkmode .faq-popular-title {
  color: #ffffff;
}
body.darkmode .faq-popular-card {
  background: rgba(38, 46, 45, 0.98);
  border-color: rgba(57, 68, 68, 0.75);
}
body.darkmode .faq-popular-card:hover {
  border-color: rgba(212, 168, 75, 0.4);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}
body.darkmode .faq-popular-card-icon {
  background: rgba(212, 168, 75, 0.15);
}
body.darkmode .faq-popular-card-text {
  color: #E3E6E5;
}
body.darkmode .faq-popular-arrow {
  color: #A5ADAC;
}
body.darkmode .faq-contact-section {
  background: rgba(38, 46, 45, 0.97);
  border-color: rgba(57, 68, 68, 0.5);
}
body.darkmode .faq-contact-title {
  color: #ffffff;
}
body.darkmode .faq-contact-subtitle {
  color: #A5ADAC;
}
body.darkmode .faq-contact-card {
  background: rgba(38, 46, 45, 0.98);
  border-color: rgba(57, 68, 68, 0.75);
}
body.darkmode .faq-contact-card:hover {
  border-color: rgba(18, 179, 185, 0.35);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}
body.darkmode .faq-contact-card-title {
  color: #E3E6E5;
}
body.darkmode .faq-contact-card-desc {
  color: #A5ADAC;
}

@media (max-width: 1200px) {
  .faq-hero-content {
    padding: 40px 40px;
  }
  .faq-container {
    grid-template-columns: 200px 1fr;
    gap: 32px;
  }
}
@media (max-width: 991.98px) {
  .faq-hero {
    padding: 24px 0 32px 0;
  }
  .faq-hero-content {
    width: calc(100% - 32px);
    margin: 0 16px;
    padding: 32px 24px;
  }
  .faq-container {
    width: calc(100% - 32px);
    margin: 0 16px;
  }
  .faq-section {
    margin-bottom: 36px;
  }
  .faq-section-header {
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
  }
  .faq-section-icon {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
  .faq-section-count {
    display: none;
  }
  .faq-accordion-header {
    padding: 14px 16px;
    gap: 12px;
  }
  .faq-accordion-answer {
    padding: 0 16px 16px 58px;
  }
  .faq-help-section {
    margin-top: 40px;
    padding: 32px 24px;
  }
}
@media (max-width: 700px) {
  .faq-page-2025 {
    padding-bottom: 60px;
  }
  .faq-hero {
    padding: 16px 0 24px 0;
  }
  .faq-hero-content {
    width: calc(100% - 24px);
    margin: 0 12px;
    padding: 28px 20px;
    border-radius: 20px;
  }
  .faq-title {
    font-size: 1.5rem;
  }
  .faq-container {
    width: calc(100% - 24px);
    margin: 0 12px;
    gap: 20px;
  }
  .faq-nav {
    padding: 12px;
    border-radius: 14px;
  }
  .faq-nav-link {
    padding: 8px 14px;
    font-size: 0.85rem;
  }
  .faq-section-header {
    flex-wrap: wrap;
  }
  .faq-section-icon {
    width: 34px;
    height: 34px;
    font-size: 14px;
    border-radius: 10px;
  }
  .faq-section-title {
    flex: 1;
    font-size: 1.05rem;
  }
  .faq-accordion {
    border-radius: 10px;
  }
  .faq-accordion-header {
    padding: 12px 14px;
    gap: 10px;
  }
  .faq-accordion-number {
    width: 26px;
    height: 26px;
    font-size: 0.7rem;
    border-radius: 6px;
  }
  .faq-accordion-question {
    font-size: 0.9rem;
  }
  .faq-accordion-icon {
    width: 26px;
    height: 26px;
  }
  .faq-accordion-icon i {
    font-size: 10px;
  }
  .faq-accordion-answer {
    padding: 0 14px 14px 50px;
    font-size: 0.88rem;
  }
  .faq-help-section {
    margin-top: 32px;
    padding: 28px 20px;
    border-radius: 20px;
  }
  .faq-help-button {
    padding: 14px 24px;
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .faq-hero-content {
    width: calc(100% - 16px);
    margin: 0 8px;
    padding: 24px 16px;
  }
  .faq-container {
    width: calc(100% - 16px);
    margin: 0 8px;
  }
  .faq-accordion-list {
    gap: 10px;
  }
  .faq-accordion-answer {
    padding-left: 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .faq-hero-content,
  .faq-container,
  .faq-nav-link,
  .faq-accordion,
  .faq-help-section {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .faq-title::after {
    animation: none;
  }
  .faq-nav-link,
  .faq-accordion,
  .faq-accordion-header,
  .faq-accordion-body,
  .faq-accordion-icon i,
  .faq-help-button {
    transition-duration: 0.1s !important;
  }
}
@media print {
  .faq-page-2025 {
    padding: 0;
  }
  .faq-sidebar {
    display: none;
  }
  .faq-container {
    display: block;
    width: 100%;
  }
  .faq-accordion {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #D1D5D5;
  }
  .faq-accordion.open .faq-accordion-body {
    max-height: none;
    opacity: 1;
  }
  .faq-help-section {
    display: none;
  }
}