/* Global FAQ section style */
.faq {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(6.2rem, 9vw, 8rem) 0 clamp(5rem, 8vw, 7rem);
  background:
    radial-gradient(circle at 14% 14%, rgba(201,169,97,.22), transparent 34%),
    radial-gradient(circle at 86% 18%, rgba(229,201,136,.16), transparent 32%),
    radial-gradient(circle at 50% 64%, rgba(255,255,255,.82), transparent 36%),
    linear-gradient(135deg, rgba(247,245,240,.98) 0%, #ffffff 38%, rgba(239,232,212,.86) 74%, #fbfaf6 100%);
}

.faq::before {
  content: none;
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(26,26,26,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,26,26,.035) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(180deg, transparent, black 16%, black 78%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, black 16%, black 78%, transparent);
  opacity: .7;
}

.faq::after {
  content: none;
}

.faq .container {
  position: relative;
  z-index: 1;
}

.faq-head {
  max-width: 860px;
  margin: 0 auto clamp(2.2rem, 4vw, 3.4rem);
  text-align: center;
}

.faq-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .52rem;
  min-height: 34px;
  margin-bottom: .9rem;
  padding: .42rem .9rem;
  border: 1px solid rgba(201,169,97,.24);
  border-radius: 999px;
  background: rgba(255,255,255,.68);
  box-shadow: 0 14px 36px rgba(26,26,26,.055), inset 0 1px 0 rgba(255,255,255,.82);
  color: var(--gold-deep, #8b7530);
  font-size: .72rem;
  font-weight: 820;
  letter-spacing: .18em;
  line-height: 1;
  text-transform: uppercase;
}

.faq-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold, #c9a961);
  box-shadow: 0 0 14px rgba(201,169,97,.8);
}

.faq-title {
  position: relative;
  display: grid;
  justify-items: center;
  gap: .12rem;
  margin: 0;
  line-height: .86;
  isolation: isolate;
}

.faq-title::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  width: min(78vw, 640px);
  height: min(24vw, 180px);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(201,169,97,.18), transparent 70%);
  filter: blur(24px);
  transform: translate(-50%, -50%);
}

.faq-title::after {
  content: '';
  width: min(46vw, 420px);
  height: 1px;
  margin-top: .72rem;
  background: linear-gradient(90deg, transparent, rgba(26,26,26,.2), rgba(201,169,97,.46), transparent);
}

.faq-title-main {
  display: inline-block;
  padding: .02em .16em .08em;
  background:
    radial-gradient(circle at 72% 34%, rgba(201,169,97,.48), transparent 26%),
    linear-gradient(180deg, #111 0%, #1f1f1f 48%, #8b7530 118%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-size: clamp(5.6rem, 14vw, 12rem);
  font-weight: 880;
  letter-spacing: -.055em;
  text-shadow: 0 24px 60px rgba(26,26,26,.1);
}

.faq-list {
  display: grid;
  gap: .8rem;
  width: min(900px, calc(100% - 2rem));
  max-width: 920px;
  margin: 0 auto;
  min-width: 0;
}

.faq-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(26,26,26,.08);
  border-radius: 8px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 16px 42px rgba(26,26,26,.045), inset 0 1px 0 rgba(255,255,255,.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  transition: border-color .35s ease, box-shadow .35s ease, transform .35s ease;
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold-light, #e5c988), var(--gold-deep, #8b7530));
  opacity: 0;
  transition: opacity .3s ease;
}

.faq-item:hover {
  border-color: rgba(201,169,97,.32);
  box-shadow: 0 20px 52px rgba(26,26,26,.065);
  transform: translateY(-1px);
}

.faq-item[open] {
  border-color: rgba(201,169,97,.46);
  box-shadow: 0 24px 60px rgba(26,26,26,.075);
}

.faq-item[open]::before {
  opacity: 1;
}

.faq-item summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  min-height: 76px;
  padding: 1.15rem 1.25rem;
  cursor: pointer;
  list-style: none;
  color: var(--dark, #1a1a1a);
  line-height: 1.35;
  transition: color .25s ease, background .25s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  color: var(--gold-deep, #8b7530);
  background: rgba(201,169,97,.04);
}

.faq-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201,169,97,.22);
  border-radius: 50%;
  background: rgba(201,169,97,.08);
  color: var(--gold-deep, #8b7530);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  font-feature-settings: "tnum";
}

.faq-q {
  min-width: 0;
  color: var(--dark, #1a1a1a);
  font-size: 1rem;
  font-weight: 650;
}

.faq-q sup {
  font-size: .65em;
}

.faq-toggle {
  position: relative;
  flex: 0 0 auto;
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  align-self: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(26,26,26,.12);
  border-radius: 50%;
  background: #fff;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .35s ease;
}

.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--gold-deep, #8b7530);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), opacity .25s;
}

.faq-toggle::before {
  width: 12px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}

.faq-toggle::after {
  width: 1.5px;
  height: 12px;
  transform: translate(-50%, -50%);
}

.faq-item[open] summary {
  color: var(--gold-deep, #8b7530);
  background: rgba(201,169,97,.045);
}

.faq-item[open] .faq-toggle {
  border-color: rgba(201,169,97,.45);
  transform: rotate(180deg);
}

.faq-item[open] .faq-toggle::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}

.faq-content {
  padding: 0 4.7rem 1.35rem 5.1rem;
  color: var(--text-dim, rgba(26,26,26,.68));
  font-size: .94rem;
  line-height: 1.72;
  animation: faqFadeIn .35s ease;
}

.faq-content em {
  color: var(--dark, #1a1a1a);
  font-style: italic;
  font-weight: 500;
}

@keyframes faqFadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

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

.faq-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(900px, calc(100% - 2rem));
  max-width: 920px;
  margin: clamp(1.1rem, 2vw, 1.6rem) auto 0;
  padding: clamp(1rem, 2vw, 1.25rem);
  border: 1px solid rgba(201,169,97,.16);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(248,246,240,.9)),
    rgba(255,255,255,.86);
  box-shadow: 0 14px 34px rgba(26,26,26,.055);
}

.faq-cta p {
  margin: 0;
  color: rgba(29,29,31,.74);
  font-size: clamp(.94rem, 1vw, 1rem);
  font-weight: 720;
}

.faq-cta-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .56rem;
  padding: .68rem .78rem .68rem 1rem;
  border: 1px solid rgba(29,29,31,.92);
  border-radius: 999px;
  background: rgba(29,29,31,.96);
  color: #fff;
  font-size: .84rem;
  font-weight: 780;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(26,26,26,.14);
  transform: translateZ(0);
  transition:
    transform .18s ease,
    background-color .18s ease,
    border-color .18s ease,
    box-shadow .18s ease;
}

.faq-cta-link span {
  width: 1.45rem;
  height: 1.45rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-light, #f2da9d), var(--gold, #c9a961));
  color: rgba(29,29,31,.96);
  font-size: .92rem;
  line-height: 1;
  transition: transform .18s ease;
}

.faq-cta-link:hover {
  border-color: rgba(201,169,97,.75);
  background: rgba(42,42,42,.98);
  color: #fff;
  box-shadow: 0 12px 28px rgba(26,26,26,.18);
  transform: translate3d(0, -1px, 0);
}

.faq-cta-link:hover span {
  transform: translateX(2px);
}

.nad-v2 .faq-item {
  box-shadow: var(--v2-shadow-soft, 0 12px 26px rgba(26,26,26,.08)) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

@media (max-width: 1024px) {
  .faq-list {
    width: min(760px, calc(100% - 2rem));
    gap: .85rem;
  }

  .faq-item {
    border-radius: 14px;
  }

  .faq-item summary {
    grid-template-columns: 2.15rem minmax(0, 1fr) 2.25rem;
    gap: .75rem;
    min-height: 76px;
    padding: 1rem;
  }

  .faq-index,
  .faq-toggle {
    width: 2.15rem;
    height: 2.15rem;
    display: inline-grid;
    place-items: center;
  }

  .faq-index {
    border: 1px solid rgba(201,169,97,.18);
    border-radius: 999px;
    background: rgba(255,255,255,.72);
    font-size: .72rem;
    letter-spacing: .08em;
  }

  .faq-q {
    font-size: clamp(.94rem, 2vw, 1.04rem);
    line-height: 1.35;
  }

  .faq-toggle {
    border: 1px solid rgba(201,169,97,.22);
  }

  .faq-content {
    padding: 0 1rem 1rem calc(1rem + 2.15rem + .75rem);
  }

  .faq-cta {
    width: min(760px, calc(100% - 2rem));
  }
}

@media (max-width: 640px) {
  .faq-eyebrow {
    min-height: 30px;
    padding: .38rem .72rem;
    font-size: .62rem;
    letter-spacing: .14em;
  }

  .faq-title {
    margin-bottom: .9rem;
  }

  .faq-title-main {
    font-size: clamp(4.2rem, 26vw, 6.8rem);
    letter-spacing: -.045em;
  }

  .faq-title::after {
    width: min(72vw, 280px);
    margin-top: .55rem;
  }

  .faq-list {
    gap: .7rem;
  }

  .faq-item summary {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: .7rem;
    min-height: 0;
    padding: 1rem;
  }

  .faq-index {
    width: 32px;
    height: 32px;
    font-size: .62rem;
  }

  .faq-q {
    font-size: .94rem;
    line-height: 1.38;
  }

  .faq-toggle {
    width: 30px;
    height: 30px;
  }

  .faq-content {
    padding: 0 1rem 1.1rem;
    font-size: .9rem;
    line-height: 1.65;
  }

  .faq-cta {
    flex-direction: column;
    align-items: stretch;
    gap: .9rem;
    padding: 1.1rem;
    text-align: center;
  }

  .faq-cta-link {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .faq-list {
    width: min(100% - 1.4rem, 430px);
  }

  .faq-item summary {
    grid-template-columns: 2rem minmax(0, 1fr) 2.1rem;
    gap: .65rem;
    min-height: 72px;
    padding: .9rem;
  }

  .faq-index,
  .faq-toggle {
    width: 2rem;
    height: 2rem;
  }

  .faq-q {
    font-size: .94rem;
  }

  .faq-content {
    padding: 0 .9rem .95rem calc(.9rem + 2rem + .65rem);
    font-size: .92rem;
    line-height: 1.58;
  }

  .faq-cta {
    width: min(100% - 1.4rem, 430px);
    align-items: stretch;
    gap: .8rem;
    padding: .9rem;
  }

  .faq-cta-link {
    width: 100%;
    min-height: 40px;
    padding: .62rem .7rem .62rem .92rem;
    font-size: .8rem;
  }

  .faq-cta-link span {
    width: 1.35rem;
    height: 1.35rem;
  }
}
