.faq-main {
  overflow: hidden;
}

.faq-hero,
.faq-list-section {
  width: min(1420px, calc(100% - 120px));
  margin: 0 auto;
}

.faq-hero {
  min-height: 660px;
  padding: 72px 0 56px;
  display: grid;
  grid-template-columns: minmax(520px, 0.9fr) minmax(520px, 1fr);
  gap: 76px;
  align-items: center;
  position: relative;
}

.faq-hero::before {
  position: absolute;
  inset: 54px -80px auto auto;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(253, 99, 0, 0.12);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.faq-kicker,
.faq-section-label {
  color: var(--fdv-orange);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.faq-kicker {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.faq-kicker i {
  width: 54px;
  height: 2px;
  display: inline-block;
  background: var(--fdv-orange-light);
}

.faq-title {
  max-width: 600px;
  margin: 0;
  color: var(--fdv-navy-text);
  font-size: 78px;
  font-weight: 800;
  line-height: 0.98;
}

.faq-title span {
  display: block;
  color: var(--fdv-orange);
}

.faq-intro {
  max-width: 590px;
  margin: 30px 0 0;
  color: var(--fdv-muted);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.75;
}

.faq-search {
  max-width: 560px;
  margin-top: 48px;
}

.faq-search-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.faq-search-field {
  height: 72px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  border: 1px solid rgba(4, 20, 46, 0.12);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 36px rgba(4, 20, 46, 0.08);
}

.faq-search-field.is-shaking {
  animation: faq-search-shake 320ms ease;
}

@keyframes faq-search-shake {
  0%,
  100% {
    transform: translateX(0);
  }

  20%,
  60% {
    transform: translateX(-8px);
  }

  40%,
  80% {
    transform: translateX(8px);
  }
}

.faq-search-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--fdv-navy-text);
}

.faq-search-icon svg,
.faq-question svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-search-field input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--fdv-navy-text);
  font-size: 18px;
  font-weight: 500;
}

.faq-search-field input::placeholder {
  color: rgba(78, 85, 105, 0.82);
}

.faq-hero-media {
  position: relative;
  z-index: 1;
  min-height: 560px;
  margin: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.faq-hero-media::before {
  position: absolute;
  right: 4%;
  bottom: 24px;
  width: 76%;
  height: 70%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 0 0 1px rgba(4, 20, 46, 0.06);
  content: "";
  z-index: -1;
}

.faq-hero-media img {
  width: min(470px, 78%);
  max-height: 610px;
  object-fit: contain;
  filter: drop-shadow(0 34px 34px rgba(4, 20, 46, 0.14));
}

.faq-list-section {
  padding: 34px 0 100px;
}

.faq-list-head {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.faq-section-label {
  margin: 0 0 12px;
  color: var(--fdv-navy-text);
  font-size: 42px;
  text-transform: none;
}

.faq-list-head h2 {
  margin: 0;
  color: var(--fdv-muted);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}

.faq-accordion {
  width: min(920px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(4, 20, 46, 0.09);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 28px rgba(4, 20, 46, 0.06);
}

.faq-question {
  width: 100%;
  min-height: 76px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 0;
  background: transparent;
  color: var(--fdv-navy-text);
  cursor: pointer;
  text-align: left;
}

.faq-question span {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.4;
}

.faq-question svg {
  flex: 0 0 auto;
  color: var(--fdv-navy-text);
  transition:
    color 160ms ease,
    transform 180ms ease;
}

.faq-item.is-open .faq-question {
  color: var(--fdv-orange);
}

.faq-item.is-open .faq-question svg {
  color: var(--fdv-orange);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.faq-answer-inner {
  margin: 0 24px 24px;
  padding: 22px 24px;
  border: 1px solid rgba(4, 20, 46, 0.07);
  border-radius: 9px;
  background: #f4f8fd;
}

.faq-answer-inner p {
  margin: 0;
  color: var(--fdv-muted);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
}

.faq-answer-inner p + .faq-answer-link {
  margin-top: 18px;
}

.faq-answer-link {
  display: inline-flex;
  color: var(--fdv-orange);
  font-size: 15px;
  font-weight: 800;
}

.faq-empty {
  width: min(920px, 100%);
  margin: 22px auto 0;
  padding: 22px;
  border: 1px dashed rgba(4, 20, 46, 0.18);
  border-radius: 13px;
  color: var(--fdv-muted);
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}

@media (min-width: 1000px) and (max-width: 1500px) {
  .faq-hero,
  .faq-list-section {
    width: min(1120px, calc(100% - 64px));
  }

  .faq-hero {
    min-height: 560px;
    padding: 58px 0 48px;
    grid-template-columns: minmax(380px, 0.9fr) minmax(390px, 1fr);
    gap: 48px;
  }

  .faq-hero::before {
    width: 520px;
    height: 520px;
  }

  .faq-title {
    font-size: clamp(50px, 4.2vw, 60px);
  }

  .faq-intro {
    margin-top: 24px;
    font-size: 16.5px;
    line-height: 1.62;
  }

  .faq-search {
    margin-top: 36px;
  }

  .faq-search-field {
    height: 64px;
  }

  .faq-search-field input {
    font-size: 16px;
  }

  .faq-hero-media {
    min-height: 460px;
  }

  .faq-hero-media img {
    width: min(390px, 76%);
    max-height: 520px;
  }

  .faq-list-section {
    padding-bottom: 86px;
  }

  .faq-section-label {
    font-size: 36px;
  }

  .faq-list-head h2 {
    font-size: 16px;
  }

  .faq-question {
    min-height: 68px;
    padding: 0 24px;
  }

  .faq-question span {
    font-size: 17px;
  }

  .faq-answer-inner p {
    font-size: 15px;
  }
}

@media (min-width: 1000px) and (max-width: 1179px) {
  .faq-hero {
    width: min(840px, calc(100% - 64px));
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .faq-hero-media {
    min-height: 380px;
  }

  .faq-hero-media img {
    width: min(330px, 72%);
  }

  .faq-list-section {
    width: min(840px, calc(100% - 64px));
  }
}
