.nexus-faq {
  --nexus-faq-bg: #f7fbfc;
  --nexus-faq-navy: #071b34;
  --nexus-faq-teal: #03989e;
  --nexus-faq-accent: #f8b51f;
  --nexus-faq-muted: #5b6878;
  --nexus-faq-line: #dfe8ee;
  --nexus-faq-white: #ffffff;
  --nexus-faq-support-bg: #edf8fa;
  --nexus-faq-title-color: var(--nexus-faq-navy);
  --nexus-faq-intro-text: var(--nexus-faq-muted);
  --nexus-faq-card-bg: var(--nexus-faq-white);
  --nexus-faq-question-color: var(--nexus-faq-navy);
  --nexus-faq-answer-color: #26384d;
  --nexus-faq-radius: 8px;
  --nexus-faq-shadow: 0 14px 34px rgba(7, 27, 52, 0.07);
  background: var(--nexus-faq-bg);
  box-sizing: border-box;
  color: var(--nexus-faq-navy);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0 auto;
  max-width: 1480px;
  padding: clamp(48px, 6vw, 78px) clamp(20px, 4vw, 56px) clamp(42px, 5vw, 58px);
  width: 100%;
}

.nexus-faq *,
.nexus-faq *::before,
.nexus-faq *::after {
  box-sizing: border-box;
}

.nexus-faq :where(h2, h3, p) {
  letter-spacing: 0;
  margin-top: 0;
}

.nexus-faq__header {
  margin: 0 auto 32px;
  max-width: 880px;
  text-align: center;
}

.nexus-faq__eyebrow {
  color: var(--nexus-faq-accent);
  display: block;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.2;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.nexus-faq__title {
  color: var(--nexus-faq-title-color);
  font-size: clamp(2.05rem, 4.3vw, 3.05rem);
  font-weight: 950;
  line-height: 1.12;
  margin: 0;
}

.nexus-faq__title::after {
  background: var(--nexus-faq-accent);
  content: "";
  display: block;
  height: 4px;
  margin: 18px auto 0;
  width: 72px;
}

.nexus-faq__description {
  color: var(--nexus-faq-intro-text);
  font-size: 1.07rem;
  line-height: 1.7;
  margin: 18px auto 0;
  max-width: 900px;
}

.nexus-faq__grid {
  display: grid;
  gap: 24px 26px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nexus-faq__item {
  background: var(--nexus-faq-card-bg);
  border: 1px solid var(--nexus-faq-line);
  border-radius: var(--nexus-faq-radius);
  box-shadow: 0 8px 24px rgba(7, 27, 52, 0.045);
  min-width: 0;
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.nexus-faq__item.is-open {
  box-shadow: var(--nexus-faq-shadow);
}

.nexus-faq__question {
  align-items: center;
  appearance: none;
  background: transparent;
  border: 0;
  color: var(--nexus-faq-question-color);
  cursor: pointer;
  display: grid;
  font: inherit;
  gap: 18px;
  grid-template-columns: 58px minmax(0, 1fr) 24px;
  line-height: 1.35;
  min-height: 106px;
  padding: 20px 24px;
  text-align: left;
  width: 100%;
}

.nexus-faq__question:focus-visible {
  outline: 3px solid rgba(248, 181, 31, 0.55);
  outline-offset: -3px;
}

.nexus-faq__bubble,
.nexus-faq__support-icon,
.nexus-faq__support-delay > span {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  flex: 0 0 auto;
  justify-content: center;
}

.nexus-faq__bubble {
  background: var(--nexus-faq-teal);
  color: var(--nexus-faq-white);
  height: 54px;
  width: 54px;
}

.nexus-faq__item--gold .nexus-faq__bubble {
  background: var(--nexus-faq-accent);
}

.nexus-faq__bubble svg {
  height: 30px;
  width: 30px;
}

.nexus-faq__question-text {
  color: var(--nexus-faq-question-color);
  display: block;
  font-size: 1.07rem;
  font-weight: 900;
  min-width: 0;
}

.nexus-faq__chevron {
  color: var(--nexus-faq-navy);
  display: inline-flex;
  height: 24px;
  justify-content: center;
  transition: transform 180ms ease;
  width: 24px;
}

.nexus-faq__chevron svg {
  height: 22px;
  width: 22px;
}

.nexus-faq__item.is-open .nexus-faq__chevron {
  transform: rotate(180deg);
}

.nexus-faq__answer {
  background: #eefafa;
  color: var(--nexus-faq-answer-color);
  font-size: 1rem;
  line-height: 1.75;
  padding: 24px;
}

.nexus-faq__answer[hidden] {
  display: none;
}

.nexus-faq__answer p {
  margin: 0;
}

.nexus-faq__support {
  align-items: center;
  background: var(--nexus-faq-support-bg);
  border-radius: var(--nexus-faq-radius);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.62fr) auto;
  margin-top: 42px;
  padding: 28px 38px;
}

.nexus-faq__support-copy {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: 72px minmax(0, 1fr);
  min-width: 0;
}

.nexus-faq__support-icon,
.nexus-faq__support-delay > span {
  background: var(--nexus-faq-white);
  color: var(--nexus-faq-teal);
  height: 72px;
  width: 72px;
}

.nexus-faq__support-icon svg,
.nexus-faq__support-delay svg {
  height: 42px;
  width: 42px;
}

.nexus-faq__support h3 {
  color: var(--nexus-faq-navy);
  font-size: 1.55rem;
  font-weight: 950;
  line-height: 1.18;
  margin: 0 0 8px;
}

.nexus-faq__support p {
  color: var(--nexus-faq-muted);
  font-size: 1.05rem;
  line-height: 1.55;
  margin: 0;
}

.nexus-faq__support-delay {
  align-items: center;
  border-left: 1px solid rgba(7, 27, 52, 0.14);
  display: grid;
  gap: 20px;
  grid-template-columns: 72px minmax(0, 1fr);
  min-height: 76px;
  padding-left: 34px;
}

.nexus-faq__support-delay strong {
  color: var(--nexus-faq-navy);
  display: block;
  font-size: 1.1rem;
  font-weight: 950;
  line-height: 1.35;
}

.nexus-faq__support-delay span {
  color: var(--nexus-faq-navy);
}

.nexus-faq__cta {
  align-items: center;
  background: linear-gradient(135deg, var(--nexus-faq-teal), #047b82);
  border-radius: var(--nexus-faq-radius);
  color: var(--nexus-faq-white);
  display: inline-flex;
  font-size: 1.05rem;
  font-weight: 900;
  gap: 18px;
  justify-content: center;
  min-height: 58px;
  min-width: 240px;
  padding: 16px 26px;
  text-decoration: none;
  transition: filter 180ms ease, transform 180ms ease;
  white-space: nowrap;
}

.nexus-faq__cta:hover {
  color: var(--nexus-faq-white);
  filter: brightness(1.06);
  transform: translateY(-2px);
}

.nexus-faq__cta span {
  font-size: 1.8rem;
  line-height: 0.8;
}

@media (prefers-reduced-motion: no-preference) {
  .nexus-faq__item,
  .nexus-faq__support {
    animation: nexusFaqFadeUp 560ms ease both;
  }

  .nexus-faq__item:nth-child(2) {
    animation-delay: 55ms;
  }

  .nexus-faq__item:nth-child(3) {
    animation-delay: 110ms;
  }

  .nexus-faq__item:nth-child(4) {
    animation-delay: 165ms;
  }

  .nexus-faq__item:hover {
    box-shadow: var(--nexus-faq-shadow);
    transform: translateY(-2px);
  }
}

@keyframes nexusFaqFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .nexus-faq__support {
    grid-template-columns: 1fr;
  }

  .nexus-faq__support-delay {
    border-left: 0;
    border-top: 1px solid rgba(7, 27, 52, 0.14);
    padding-left: 0;
    padding-top: 22px;
  }

  .nexus-faq__cta {
    width: max-content;
  }
}

@media (max-width: 860px) {
  .nexus-faq__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .nexus-faq {
    padding: 36px 18px;
  }

  .nexus-faq__question {
    gap: 14px;
    grid-template-columns: 50px minmax(0, 1fr) 22px;
    min-height: 92px;
    padding: 18px;
  }

  .nexus-faq__bubble {
    height: 50px;
    width: 50px;
  }

  .nexus-faq__support {
    padding: 24px;
  }

  .nexus-faq__support-copy,
  .nexus-faq__support-delay {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .nexus-faq__support-icon,
  .nexus-faq__support-delay > span {
    height: 58px;
    width: 58px;
  }

  .nexus-faq__support-icon svg,
  .nexus-faq__support-delay svg {
    height: 34px;
    width: 34px;
  }

  .nexus-faq__cta {
    min-width: 0;
    width: 100%;
  }
}
