/* FAQ page — smooth accordion (JS height animation) */
.tt-faq-page .tt-faq-item {
  transition: border-color 0.35s ease, box-shadow 0.4s ease;
}
.tt-faq-page .tt-faq-item.tt-faq-open,
.tt-faq-page .tt-faq-item[open] {
  border-color: rgba(18, 168, 208, 0.35);
  box-shadow: 0 18px 44px rgba(7, 24, 39, 0.1);
}
.tt-faq-page .tt-faq-item summary {
  transition: background 0.35s ease;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.tt-faq-page .tt-faq-item.tt-faq-open summary,
.tt-faq-page .tt-faq-item[open] summary {
  background: linear-gradient(180deg, rgba(232, 248, 253, 0.55) 0%, rgba(255, 255, 255, 0) 100%);
  border-bottom: 1px solid rgba(134, 162, 181, 0.14);
}
.tt-faq-page .tt-faq-item summary::after {
  transition:
    transform 0.45s cubic-bezier(0.34, 1.35, 0.64, 1),
    background 0.3s ease,
    color 0.3s ease;
}
.tt-faq-page .tt-faq-item.tt-faq-open summary::after,
.tt-faq-page .tt-faq-item[open] summary::after {
  content: "+";
  transform: rotate(45deg);
  background: #071827;
  color: #ffffff;
}

.tt-faq-page .tt-faq-body {
  height: 0;
  overflow: hidden;
  will-change: height;
}
.tt-faq-page .tt-faq-body-inner {
  overflow: hidden;
}
.tt-faq-page .tt-faq-body-inner p {
  margin: 0;
  padding: 14px 20px 22px;
  color: #557086;
  font-size: 15px;
  line-height: 1.72;
  font-weight: 600;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.4s ease 0.12s, transform 0.5s cubic-bezier(0.33, 1, 0.68, 1) 0.12s;
}
.tt-faq-page .tt-faq-item.tt-faq-open .tt-faq-body-inner p,
.tt-faq-page .tt-faq-item[open] .tt-faq-body-inner p {
  opacity: 1;
  transform: translateY(0);
}

.tt-faq-page .tt-faq-nav a {
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, color 0.25s ease;
}
.tt-faq-page .tt-faq-nav a:hover,
.tt-faq-page .tt-faq-nav a.is-active {
  border-color: rgba(18, 168, 208, 0.4);
  background: #e8f8fd;
  color: #087c9e !important;
  transform: translateX(4px);
}

@media (max-width: 760px) {
  .tt-faq-page .tt-faq-body-inner p {
    padding: 12px 16px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tt-faq-page .tt-faq-body {
    height: auto !important;
    overflow: visible !important;
  }
  .tt-faq-page .tt-faq-item:not([open]) .tt-faq-body {
    display: none;
  }
  .tt-faq-page .tt-faq-body-inner p,
  .tt-faq-page .tt-faq-item summary::after {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
