/* Trust Card — Premium FAQ (glassmorphism accordion) */
.tc-faq {
  --tc-faq-blue: #2554f4;
  --tc-faq-blue-dark: #1a3fd0;
  --tc-faq-ink: #0a0e1a;
  --tc-faq-muted: #5b6478;
  --tc-faq-line: rgba(37, 84, 244, 0.12);
  --tc-faq-glass: rgba(255, 255, 255, 0.55);
  --tc-faq-glass-strong: rgba(255, 255, 255, 0.72);
  --tc-faq-ease: cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  isolation: isolate;
  padding: 88px 0 96px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 12% 10%, rgba(37, 84, 244, 0.14), transparent 55%),
    radial-gradient(ellipse 55% 45% at 90% 80%, rgba(91, 130, 255, 0.12), transparent 50%),
    linear-gradient(180deg, #f4f6ff 0%, #eef2ff 40%, #f7f8fb 100%);
}

.tc-faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 84, 244, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 84, 244, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 15%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}

.tc-faq__container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

.tc-faq__head {
  text-align: center;
  margin-bottom: 36px;
}

.tc-faq__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--tc-faq-blue);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(37, 84, 244, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-bottom: 16px;
}

.tc-faq__title {
  font-family: "Sora", "Outfit", sans-serif;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--tc-faq-ink);
  line-height: 1.15;
  margin: 0 0 12px;
}

.tc-faq__subtitle {
  margin: 0 auto;
  max-width: 480px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--tc-faq-muted);
}

.tc-faq__sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.tc-faq__tools {
  margin: 0 auto 22px;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tc-faq__search {
  position: relative;
  display: block;
}

.tc-faq__search svg {
  position: absolute;
  left: 14px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  color: var(--tc-faq-muted);
  pointer-events: none;
}

.tc-faq__search input {
  width: 100%;
  padding: 14px 16px 14px 44px;
  border-radius: 14px;
  border: 1px solid var(--tc-faq-line);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font: inherit;
  font-size: 15px;
  color: var(--tc-faq-ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.tc-faq__search input:focus {
  border-color: rgba(37, 84, 244, 0.45);
  box-shadow: 0 0 0 4px rgba(37, 84, 244, 0.12);
}

.tc-faq__chips-wrap {
  position: relative;
}

.tc-faq__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.tc-faq__chip:focus-visible {
  outline: 2px solid var(--tc-faq-blue);
  outline-offset: 2px;
}

.tc-faq__chip {
  appearance: none;
  border: 1px solid var(--tc-faq-line);
  background: rgba(255, 255, 255, 0.7);
  color: var(--tc-faq-muted);
  font: inherit;
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s var(--tc-faq-ease);
}

.tc-faq__chip:hover {
  color: var(--tc-faq-ink);
  border-color: rgba(37, 84, 244, 0.28);
}

.tc-faq__chip:active {
  transform: scale(0.97);
}

.tc-faq__chip.is-active {
  background: var(--tc-faq-blue);
  border-color: var(--tc-faq-blue);
  color: #fff;
}

.tc-faq__more {
  display: none;
  width: 100%;
  margin: 4px 0 8px;
  min-height: 44px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1.5px solid var(--tc-faq-line);
  background: rgba(255, 255, 255, 0.8);
  color: var(--tc-faq-ink);
  font: inherit;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.tc-faq__more:hover {
  border-color: rgba(37, 84, 244, 0.35);
  color: var(--tc-faq-blue);
  background: rgba(37, 84, 244, 0.06);
}

.tc-faq__more:focus-visible {
  outline: 2px solid var(--tc-faq-blue);
  outline-offset: 2px;
}

.tc-faq__empty {
  text-align: center;
  color: var(--tc-faq-muted);
  font-size: 14.5px;
  padding: 28px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.tc-faq__empty[hidden] {
  display: none !important;
}

.tc-faq__empty-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(37, 84, 244, 0.1);
  color: var(--tc-faq-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.tc-faq__empty-icon svg {
  width: 24px;
  height: 24px;
}

.tc-faq__empty p {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--tc-faq-ink);
}

.tc-faq__empty span {
  font-size: 14px;
}

.tc-faq__clear {
  margin-top: 8px;
  appearance: none;
  border: 1.5px solid var(--tc-faq-line);
  background: #fff;
  color: var(--tc-faq-ink);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.tc-faq__clear:hover {
  border-color: rgba(37, 84, 244, 0.35);
  color: var(--tc-faq-blue);
  background: rgba(37, 84, 244, 0.06);
}

.tc-faq__clear:focus-visible {
  outline: 2px solid var(--tc-faq-blue);
  outline-offset: 2px;
}

.tc-faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tc-faq__item {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: var(--tc-faq-glass);
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 10px 30px rgba(15, 23, 42, 0.05);
  transition:
    border-color 0.25s ease,
    box-shadow 0.3s var(--tc-faq-ease),
    background 0.25s ease,
    transform 0.3s var(--tc-faq-ease);
  overflow: hidden;
}

.tc-faq__item:hover {
  border-color: rgba(37, 84, 244, 0.28);
  background: var(--tc-faq-glass-strong);
  transform: translateY(-1px);
}

.tc-faq__item.is-open {
  border-color: rgba(37, 84, 244, 0.35);
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 16px 40px rgba(37, 84, 244, 0.1);
}

.tc-faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: var(--tc-faq-ink);
}

.tc-faq__question {
  font-size: 15.5px;
  font-weight: 650;
  letter-spacing: -0.015em;
  line-height: 1.35;
}

.tc-faq__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 84, 244, 0.08);
  color: var(--tc-faq-blue);
  transition:
    transform 0.35s var(--tc-faq-ease),
    background 0.25s ease,
    color 0.25s ease;
}

.tc-faq__icon svg {
  width: 16px;
  height: 16px;
  transition: transform 0.35s var(--tc-faq-ease);
}

.tc-faq__item.is-open .tc-faq__icon {
  background: var(--tc-faq-blue);
  color: #fff;
}

.tc-faq__item.is-open .tc-faq__icon svg {
  transform: rotate(180deg);
}

.tc-faq__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--tc-faq-ease);
}

.tc-faq__item.is-open .tc-faq__panel {
  grid-template-rows: 1fr;
}

.tc-faq__panel-inner {
  overflow: hidden;
  min-height: 0;
}

.tc-faq__answer {
  padding: 0 20px 20px;
  color: var(--tc-faq-muted);
  font-size: 14.5px;
  line-height: 1.65;
}

.tc-faq__answer > p {
  margin: 0 0 12px;
}

.tc-faq__answer > p:last-child {
  margin-bottom: 0;
}

.tc-faq__answer ul {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tc-faq__answer li {
  position: relative;
  padding-left: 16px;
}

.tc-faq__answer li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tc-faq-blue);
  opacity: 0.75;
}

.tc-faq__answer strong {
  color: var(--tc-faq-ink);
  font-weight: 650;
}

.tc-faq__status-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 12px 0;
  padding: 12px;
  border-radius: 14px;
  background: rgba(37, 84, 244, 0.04);
  border: 1px solid var(--tc-faq-line);
}

.tc-faq__status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 4px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  font-size: 13.5px;
}

.tc-faq__status-row:last-child {
  border-bottom: 0;
}

.tc-faq__status-name {
  color: var(--tc-faq-ink);
  font-weight: 550;
}

.tc-faq__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
  color: #0f9f6e;
}

.tc-faq__badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #12b76a;
  box-shadow: 0 0 0 3px rgba(18, 183, 106, 0.18);
}

.tc-faq__uptime {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 12px 0;
}

.tc-faq__uptime-card {
  text-align: center;
  padding: 14px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--tc-faq-line);
}

.tc-faq__uptime-card .pct {
  font-family: "Sora", "Outfit", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--tc-faq-blue);
  letter-spacing: -0.03em;
}

.tc-faq__uptime-card .lbl {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--tc-faq-muted);
}

.tc-faq__incident {
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.22);
}

.tc-faq__incident + .tc-faq__incident {
  margin-top: 8px;
}

.tc-faq__incident-title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
  color: var(--tc-faq-ink);
  font-weight: 700;
  font-size: 13.5px;
}

.tc-faq__incident-date {
  font-weight: 600;
  color: #b45309;
  font-size: 12.5px;
}

.tc-faq__cta {
  margin-top: 36px;
  padding: 28px 24px;
  border-radius: 20px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.35)),
    linear-gradient(125deg, rgba(26, 63, 208, 0.08), rgba(37, 84, 244, 0.12));
  border: 1px solid rgba(37, 84, 244, 0.16);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.06);
}

.tc-faq__cta h3 {
  font-family: "Sora", "Outfit", sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--tc-faq-ink);
  margin: 0 0 8px;
}

.tc-faq__cta p {
  margin: 0 auto 18px;
  max-width: 420px;
  color: var(--tc-faq-muted);
  font-size: 14.5px;
}

.tc-faq__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: none;
  border-radius: 12px;
  background: var(--tc-faq-blue);
  color: #fff;
  font: inherit;
  font-weight: 650;
  font-size: 14.5px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(37, 84, 244, 0.28);
  transition: transform 0.25s var(--tc-faq-ease), background 0.2s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.tc-faq__cta-btn .live-chat-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.28);
  animation: tcFaqLivePulse 1.6s ease-in-out infinite;
}

@keyframes tcFaqLivePulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.28); }
  50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.12); }
}

@media (prefers-reduced-motion: reduce) {
  .tc-faq__cta-btn .live-chat-dot { animation: none; }
}

@media (hover: hover) and (pointer: fine) {
  .tc-faq__cta-btn:hover {
    background: var(--tc-faq-blue-dark);
    transform: translateY(-2px);
  }
}

.tc-faq__trigger:focus-visible {
  outline: 2px solid var(--tc-faq-blue);
  outline-offset: 2px;
  border-radius: 14px;
}

@media (max-width: 640px) {
  .tc-faq {
    padding: 56px 0 64px;
  }

  .tc-faq__container {
    padding: 0 18px;
  }

  .tc-faq__head {
    margin-bottom: 24px;
    text-align: center;
  }

  .tc-faq__subtitle {
    margin: 0 auto;
    font-size: 14.5px;
  }

  .tc-faq__tools {
    margin-bottom: 18px;
    position: sticky;
    top: 58px;
    z-index: 40;
    padding: 10px 0 12px;
    background: linear-gradient(180deg, rgba(244, 246, 255, 0.96), rgba(244, 246, 255, 0.92));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .tc-faq__search input {
    font-size: 14.5px;
    padding: 13px 14px 13px 42px;
    min-height: 44px;
  }

  .tc-faq__more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .tc-faq__list.is-collapsed .tc-faq__item:nth-child(n+6) {
    display: none;
  }

  .tc-faq__chips-wrap::before,
  .tc-faq__chips-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 2px;
    width: 28px;
    z-index: 1;
    pointer-events: none;
  }

  .tc-faq__chips-wrap::before {
    left: 0;
    background: linear-gradient(90deg, #f4f6ff, transparent);
  }

  .tc-faq__chips-wrap::after {
    right: 0;
    background: linear-gradient(270deg, #f4f6ff, transparent);
  }

  .tc-faq__chips {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 2px 18px 4px;
  }

  .tc-faq__chips::-webkit-scrollbar {
    display: none;
  }

  .tc-faq__chip {
    flex: 0 0 auto;
    font-size: 13.5px;
    padding: 11px 14px;
    min-height: 44px;
  }

  .tc-faq__trigger {
    padding: 16px;
  }

  .tc-faq__question {
    font-size: 14.5px;
  }

  .tc-faq__answer {
    padding: 0 16px 16px;
    font-size: 14px;
  }

  .tc-faq__uptime {
    grid-template-columns: 1fr;
  }

  .tc-faq__status-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .tc-faq__cta {
    padding: 22px 18px;
  }

  .tc-faq__cta h3 {
    font-size: 20px;
  }
}
