

/* =========================================
   META108 FAQ SECTION
========================================= */

.faq-meta108 {
  --faq-navy-950: #020817;
  --faq-navy-900: #051229;
  --faq-navy-850: #071a36;
  --faq-navy-800: #092247;
  --faq-blue-700: #0665db;
  --faq-blue-600: #087ff5;
  --faq-blue-500: #1b9cff;
  --faq-blue-400: #55b8ff;
  --faq-blue-300: #94d4ff;
  --faq-white: #ffffff;
  --faq-text: #dcecff;
  --faq-muted: #91a9c8;
  --faq-border: rgba(103, 187, 255, 0.17);

  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 110px 20px;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(8, 127, 245, 0.17),
      transparent 34%
    ),
    linear-gradient(
      180deg,
      #030d1e 0%,
      var(--faq-navy-900) 50%,
      var(--faq-navy-950) 100%
    );
  color: var(--faq-white);
}

.faq-meta108 *,
.faq-meta108 *::before,
.faq-meta108 *::after {
  box-sizing: border-box;
}

.faq-meta108__container {
  position: relative;
  z-index: 2;
  width: min(100%, 1200px);
  margin: 0 auto;
}

/* Background Decoration */
.faq-meta108__glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(16px);
}

.faq-meta108__glow--left {
  top: 24%;
  left: -230px;
  width: 480px;
  height: 480px;
  background: rgba(6, 101, 219, 0.11);
}

.faq-meta108__glow--right {
  right: -220px;
  bottom: 4%;
  width: 500px;
  height: 500px;
  background: rgba(27, 156, 255, 0.09);
}

/* Header */
.faq-meta108__header {
  max-width: 860px;
  margin: 0 auto 52px;
  text-align: center;
}

.faq-meta108__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-bottom: 20px;
  padding: 9px 16px;
  border: 1px solid rgba(85, 184, 255, 0.25);
  border-radius: 999px;
  background: rgba(8, 127, 245, 0.09);
  color: var(--faq-blue-300);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.faq-meta108__eyebrow svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-meta108__header h2 {
  margin: 0;
  color: var(--faq-white);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.faq-meta108__header h2 span {
  display: inline-block;
  background: linear-gradient(
    90deg,
    var(--faq-blue-400),
    var(--faq-blue-500)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.faq-meta108__header p {
  max-width: 770px;
  margin: 23px auto 0;
  color: var(--faq-muted);
  font-size: 17px;
  line-height: 1.8;
}

/* Layout */
.faq-meta108__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.65fr);
  gap: 27px;
  align-items: start;
}

/* Accordion */
.faq-meta108__accordion {
  display: grid;
  gap: 13px;
}

.faq-meta108__item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--faq-border);
  border-radius: 19px;
  background:
    linear-gradient(
      145deg,
      rgba(12, 36, 72, 0.93),
      rgba(5, 18, 39, 0.98)
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 14px 35px rgba(0, 0, 0, 0.18);
  transition:
    border-color 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.faq-meta108__item::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: linear-gradient(
    180deg,
    var(--faq-blue-400),
    var(--faq-blue-700)
  );
  content: "";
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-meta108__item:hover {
  transform: translateY(-2px);
  border-color: rgba(85, 184, 255, 0.31);
}

.faq-meta108__item.is-open {
  border-color: rgba(85, 184, 255, 0.4);
  background:
    radial-gradient(
      circle at top right,
      rgba(27, 156, 255, 0.12),
      transparent 32%
    ),
    linear-gradient(
      145deg,
      rgba(9, 48, 94, 0.96),
      rgba(5, 18, 39, 0.98)
    );
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.25),
    0 0 28px rgba(8, 127, 245, 0.07);
}

.faq-meta108__item.is-open::before {
  opacity: 1;
}

.faq-meta108__question {
  margin: 0;
}

.faq-meta108__trigger {
  display: flex;
  width: 100%;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  color: var(--faq-white);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.faq-meta108__question-content {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
}

.faq-meta108__number {
  display: inline-flex;
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(85, 184, 255, 0.22);
  border-radius: 12px;
  background: rgba(27, 156, 255, 0.08);
  color: var(--faq-blue-300);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

.faq-meta108__toggle {
  display: inline-flex;
  width: 37px;
  height: 37px;
  flex: 0 0 37px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(85, 184, 255, 0.19);
  border-radius: 11px;
  background: rgba(27, 156, 255, 0.07);
  color: var(--faq-blue-400);
  transition:
    transform 0.35s ease,
    background-color 0.3s ease,
    color 0.3s ease;
}

.faq-meta108__toggle svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-meta108__item.is-open .faq-meta108__toggle {
  transform: rotate(180deg);
  background: linear-gradient(
    135deg,
    var(--faq-blue-500),
    var(--faq-blue-700)
  );
  color: var(--faq-white);
}

/* Answer */
.faq-meta108__answer {
  overflow: hidden;
}

.faq-meta108__answer-inner {
  padding: 0 21px 22px 75px;
}

.faq-meta108__answer-inner p {
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(103, 187, 255, 0.12);
  color: var(--faq-muted);
  font-size: 13px;
  line-height: 1.8;
}

.faq-meta108__answer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--faq-blue-400);
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
  transition:
    gap 0.3s ease,
    color 0.3s ease;
}

.faq-meta108__answer-link svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-meta108__answer-link:hover {
  gap: 12px;
  color: var(--faq-white);
}

/* Sidebar */
.faq-meta108__aside {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 17px;
}

/* Help Card */
.faq-meta108__help {
  position: relative;
  overflow: hidden;
  padding: 27px;
  border: 1px solid rgba(85, 184, 255, 0.3);
  border-radius: 24px;
  background:
    radial-gradient(
      circle at top right,
      rgba(27, 156, 255, 0.17),
      transparent 38%
    ),
    linear-gradient(
      145deg,
      rgba(8, 54, 105, 0.95),
      rgba(5, 19, 41, 0.98)
    );
  box-shadow:
    0 25px 62px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.faq-meta108__help::after {
  position: absolute;
  right: 25px;
  bottom: 0;
  left: 25px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(85, 184, 255, 0.55),
    transparent
  );
  content: "";
}

.faq-meta108__help-icon {
  display: inline-flex;
  width: 55px;
  height: 55px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid rgba(85, 184, 255, 0.28);
  border-radius: 17px;
  background: rgba(27, 156, 255, 0.11);
  color: var(--faq-blue-400);
}

.faq-meta108__help-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-meta108__help-label {
  display: block;
  margin-bottom: 8px;
  color: var(--faq-blue-300);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.faq-meta108__help h3 {
  margin: 0 0 11px;
  color: var(--faq-white);
  font-size: 23px;
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -0.03em;
}

.faq-meta108__help p {
  margin: 0;
  color: var(--faq-muted);
  font-size: 12px;
  line-height: 1.7;
}

.faq-meta108__actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.faq-meta108__button {
  display: inline-flex;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border-radius: 13px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.faq-meta108__button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-meta108__button--primary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(
    135deg,
    var(--faq-blue-500),
    var(--faq-blue-700)
  );
  color: var(--faq-white);
  box-shadow:
    0 13px 29px rgba(6, 101, 219, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.faq-meta108__button--secondary {
  border: 1px solid rgba(85, 184, 255, 0.26);
  background: rgba(8, 127, 245, 0.07);
  color: var(--faq-blue-300);
}

.faq-meta108__button:hover {
  transform: translateY(-3px);
}

.faq-meta108__button--primary:hover {
  box-shadow:
    0 18px 37px rgba(6, 101, 219, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.faq-meta108__button--secondary:hover {
  border-color: rgba(85, 184, 255, 0.5);
  background: rgba(8, 127, 245, 0.14);
  color: var(--faq-white);
}

/* Topics */
.faq-meta108__topics {
  padding: 21px;
  border: 1px solid var(--faq-border);
  border-radius: 20px;
  background: rgba(6, 23, 49, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.faq-meta108__topics-title {
  display: block;
  margin-bottom: 13px;
  color: var(--faq-white);
  font-size: 13px;
  font-weight: 800;
}

.faq-meta108__topics ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.faq-meta108__topics a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 11px 12px;
  border: 1px solid rgba(103, 187, 255, 0.1);
  border-radius: 12px;
  background: rgba(3, 15, 34, 0.35);
  color: var(--faq-muted);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  transition:
    border-color 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease;
}

.faq-meta108__topics a svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-meta108__topics a:hover {
  border-color: rgba(85, 184, 255, 0.3);
  background: rgba(8, 53, 104, 0.4);
  color: var(--faq-blue-300);
}

/* Security Notice */
.faq-meta108__notice {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 18px;
  border: 1px solid var(--faq-border);
  border-radius: 18px;
  background: rgba(6, 23, 49, 0.84);
}

.faq-meta108__notice-icon {
  display: inline-flex;
  width: 41px;
  height: 41px;
  flex: 0 0 41px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(85, 184, 255, 0.22);
  border-radius: 12px;
  background: rgba(27, 156, 255, 0.08);
  color: var(--faq-blue-400);
}

.faq-meta108__notice-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-meta108__notice strong {
  display: block;
  margin-bottom: 5px;
  color: var(--faq-white);
  font-size: 13px;
}

.faq-meta108__notice p {
  margin: 0;
  color: var(--faq-muted);
  font-size: 10px;
  line-height: 1.6;
}

/* Accessibility */
.faq-meta108__trigger:focus-visible,
.faq-meta108 a:focus-visible {
  outline: 3px solid rgba(148, 212, 255, 0.75);
  outline-offset: 3px;
}

/* Tablet */
@media (max-width: 1024px) {
  .faq-meta108 {
    padding: 90px 20px;
  }

  .faq-meta108__layout {
    grid-template-columns: 1fr;
  }

  .faq-meta108__aside {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-meta108__notice {
    grid-column: 1 / -1;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .faq-meta108 {
    padding: 72px 16px;
  }

  .faq-meta108__header {
    margin-bottom: 37px;
  }

  .faq-meta108__eyebrow {
    margin-bottom: 17px;
    padding: 8px 13px;
    font-size: 10px;
  }

  .faq-meta108__header h2 {
    font-size: clamp(30px, 10vw, 41px);
    line-height: 1.15;
  }

  .faq-meta108__header p {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.75;
  }

  .faq-meta108__accordion {
    gap: 11px;
  }

  .faq-meta108__item {
    border-radius: 17px;
  }

  .faq-meta108__item:hover {
    transform: none;
  }

  .faq-meta108__trigger {
    min-height: 70px;
    gap: 13px;
    padding: 15px;
  }

  .faq-meta108__question-content {
    align-items: flex-start;
    gap: 11px;
    font-size: 14px;
    line-height: 1.5;
  }

  .faq-meta108__number {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    border-radius: 10px;
    font-size: 9px;
  }

  .faq-meta108__toggle {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .faq-meta108__answer-inner {
    padding: 0 16px 18px 60px;
  }

  .faq-meta108__answer-inner p {
    padding-top: 15px;
    font-size: 12px;
    line-height: 1.75;
  }

  .faq-meta108__aside {
    grid-template-columns: 1fr;
  }

  .faq-meta108__notice {
    grid-column: auto;
  }

  .faq-meta108__help {
    padding: 23px 19px;
    border-radius: 21px;
  }

  .faq-meta108__help h3 {
    font-size: 21px;
  }
}

/* Small Mobile */
@media (max-width: 390px) {
  .faq-meta108 {
    padding-right: 13px;
    padding-left: 13px;
  }

  .faq-meta108__header h2 {
    font-size: 29px;
  }

  .faq-meta108__trigger {
    padding-right: 13px;
    padding-left: 13px;
  }

  .faq-meta108__question-content {
    gap: 9px;
    font-size: 13px;
  }

  .faq-meta108__number {
    width: 31px;
    height: 31px;
    flex-basis: 31px;
  }

  .faq-meta108__answer-inner {
    padding-right: 14px;
    padding-left: 53px;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .faq-meta108__item,
  .faq-meta108__toggle,
  .faq-meta108__answer-link,
  .faq-meta108__button,
  .faq-meta108__topics a {
    transition: none;
  }
}