/* =================================================================
   DIGITAL TRUST IT SERVICES - FAQ
   ================================================================= */
main { position: relative; z-index: 1; }
.faq-header { position: relative; z-index: 10; border-bottom: 1px solid var(--line); background: rgba(11, 15, 26, 0.82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.faq-header__inner { min-height: var(--header-h); display: flex; align-items: center; justify-content: space-between; }
.faq-brand { display: flex; align-items: center; gap: 11px; }
.faq-brand img { width: 40px; height: 40px; object-fit: contain; border-radius: 10px; }
.faq-brand span { display: flex; flex-direction: column; line-height: 1.05; }
.faq-brand strong { font-family: var(--font-display); font-size: 19px; }
.faq-brand small { margin-top: 4px; color: var(--gold); font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; }
.faq-nav { display: flex; gap: 24px; color: var(--ivory-dim); font-size: 13px; }
.faq-nav a { transition: color 0.25s; }
.faq-nav a:hover { color: var(--gold-bright); }

.faq-hero { position: relative; min-height: 500px; display: grid; place-items: center; overflow: hidden; background: linear-gradient(115deg, rgba(27, 77, 62, 0.28), transparent 55%), radial-gradient(circle at 85% 25%, rgba(201, 166, 89, 0.13), transparent 31%); }
.faq-hero .section-inner { width: 100%; }
.faq-hero h1 { position: relative; z-index: 1; margin-top: 16px; font-family: var(--font-display); font-size: clamp(54px, 8vw, 100px); font-weight: 500; line-height: 0.93; letter-spacing: -0.03em; animation: faq-rise 0.9s var(--ease-out) both; }
.faq-hero h1 em { color: var(--gold-bright); font-style: italic; animation: faq-glow 3s ease-in-out infinite; }
.faq-hero p { max-width: 570px; margin-top: 25px; color: var(--ivory-dim); font-size: 16px; animation: faq-rise 0.9s 0.14s var(--ease-out) both; }
.faq-hero__ring { position: absolute; right: -110px; top: -170px; width: 610px; height: 610px; border: 1px solid rgba(201, 166, 89, 0.13); border-radius: 50%; box-shadow: 0 0 0 55px rgba(201, 166, 89, 0.025), 0 0 0 110px rgba(201, 166, 89, 0.02); animation: faq-spin 24s linear infinite; }

.faq-content { padding: 92px 0 120px; }
.faq-layout { display: grid; grid-template-columns: 190px minmax(0, 790px); justify-content: space-between; gap: 70px; }
.faq-index { position: sticky; top: 30px; align-self: start; display: grid; gap: 13px; }
.faq-index a { color: var(--ivory-faint); font-size: 12px; transition: color 0.25s, padding-left 0.25s; }
.faq-index a:hover { padding-left: 5px; color: var(--gold-bright); }
.faq-group { margin-bottom: 82px; scroll-margin-top: 25px; }
.faq-group__heading { display: grid; grid-template-columns: 48px 1fr; gap: 20px; margin-bottom: 27px; }
.faq-number { color: var(--gold); font-family: var(--font-mono); font-size: 12px; }
.faq-group h2 { margin-top: 9px; font-family: var(--font-display); font-size: 42px; font-weight: 500; line-height: 1; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 21px 5px 21px 0; color: var(--ivory); font-family: var(--font-display); font-size: 22px; line-height: 1.2; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-toggle { position: relative; width: 22px; height: 22px; flex: 0 0 auto; border: 1px solid var(--gold-dim); border-radius: 50%; }
.faq-toggle::before, .faq-toggle::after { content: ""; position: absolute; left: 5px; top: 10px; width: 10px; height: 1px; background: var(--gold-bright); transition: transform 0.25s; }
.faq-toggle::after { transform: rotate(90deg); }
.faq-list details[open] .faq-toggle::after { transform: rotate(0); }
.faq-list details[open] summary { color: var(--gold-bright); }
.faq-list details p { max-width: 670px; padding: 0 42px 22px 0; color: var(--ivory-dim); font-size: 14px; line-height: 1.75; }
.faq-list details p a { color: var(--gold-bright); text-decoration: underline; text-underline-offset: 3px; }
.faq-cta { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 30px; border: 1px solid var(--gold-dim); border-radius: var(--radius-md); background: linear-gradient(105deg, rgba(27, 77, 62, 0.45), rgba(201, 166, 89, 0.07)); }
.faq-cta h2 { margin-top: 7px; font-family: var(--font-display); font-size: 32px; font-weight: 500; }

@keyframes faq-rise { from { opacity: 0; transform: translateY(25px); } to { opacity: 1; transform: translateY(0); } }
@keyframes faq-glow { 0%, 100% { text-shadow: 0 0 0 rgba(228, 198, 127, 0); } 50% { text-shadow: 0 0 23px rgba(228, 198, 127, 0.5); } }
@keyframes faq-spin { to { transform: rotate(360deg); } }

@media (max-width: 760px) {
  .faq-header__inner { min-height: 72px; padding-left: 20px; padding-right: 20px; }
  .faq-brand small { display: none; }
  .faq-nav { gap: 12px; font-size: 11px; }
  .faq-hero { min-height: 460px; }
  .faq-content { padding: 60px 0 80px; }
  .faq-layout { display: block; }
  .faq-index { position: static; display: flex; flex-wrap: wrap; gap: 8px 16px; margin-bottom: 50px; }
  .faq-index .eyebrow { width: 100%; }
  .faq-index a { padding: 5px 0; }
  .faq-group { margin-bottom: 62px; }
  .faq-group__heading { grid-template-columns: 35px 1fr; gap: 12px; }
  .faq-group h2 { font-size: 35px; }
  .faq-list summary { font-size: 19px; }
  .faq-list details p { padding-right: 0; }
  .faq-cta { align-items: flex-start; flex-direction: column; padding: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
