
                :root{
                  --ocean-1:#12345F;
                  --ocean-2:#247FAE;
                  --ocean-3:#68DDF8;
                  --ocean-4:#D8F8FF;

                  --gold-1:#7168E8;
                  --gold-2:#9B93FF;
                  --gold-3:#E4E1FF;

                  --bg-dark:#07172F;
                  --card:#153D68;
                  --card-2:#2B6F9A;

                  --text:#F5FCFF;
                  --muted:rgba(226,243,252,.82);

                  --line:rgba(104,221,248,.55);
                  --soft-line:rgba(216,248,255,.20);

                  --shadow:rgba(8,39,76,.22);
                  --glow:rgba(104,221,248,.26);
                }

                .faq-wrap {
                  width: min(100%, 1040px);
                  max-width: 1040px;
                  margin: 18px auto 22px;
                  padding: 0;
                  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
                  color: var(--text);
                  box-sizing: border-box;
                }

                .faq-box {
                  position: relative;
                  border-radius: 20px;
                  background: linear-gradient(135deg,
                      var(--ocean-1) 0%,
                      var(--ocean-2) 40%,
                      var(--ocean-3) 78%,
                      var(--ocean-4) 100%);
                  padding: 18px;
                  overflow: hidden;
                  border: 1px solid var(--line);
                  box-shadow:
                    0 16px 36px rgba(36,127,174,.18),
                    inset 0 1px 0 rgba(255,255,255,.30);
                }

                .faq-box::before {
                  content: "";
                  position: absolute;
                  inset: 0;
                  padding: 2px;
                  border-radius: 20px;
                  background: linear-gradient(135deg, #D8F8FF,
                      #E4E1FF,
                      #68DDF8,
                      #247FAE,
                      #9B93FF);
                  -webkit-mask:
                    linear-gradient(#000 0 0) content-box,
                    linear-gradient(#000 0 0);
                  -webkit-mask-composite: xor;
                  mask-composite: exclude;
                  filter: drop-shadow(0 0 10px rgba(155,147,255,.30)) drop-shadow(0 0 22px rgba(104,221,248,.22));
                  animation: neonPulse 1.8s ease-in-out infinite;
                  pointer-events: none;
                }

                .faq-box::after {
                  content: "";
                  position: absolute;
                  top: -10%;
                  right: -4%;
                  width: 34%;
                  height: 135%;
                  background: linear-gradient(135deg,
                      rgba(155,147,255,.38),
                      rgba(255,255,255,.10));
                  clip-path: polygon(34% 0, 100% 0, 100% 100%, 0 100%);
                  pointer-events: none;
                }

                @keyframes neonPulse {

                  0%,
                  100% {
                    opacity: .72;
                    filter: drop-shadow(0 0 10px rgba(155,147,255,.28)) drop-shadow(0 0 22px rgba(104,221,248,.20));
                  }

                  50% {
                    opacity: 1;
                    filter: drop-shadow(0 0 14px rgba(155,147,255,.42)) drop-shadow(0 0 34px rgba(104,221,248,.30));
                  }
                }

                .faq-header {
                  position: relative;
                  z-index: 1;
                  display: flex;
                  align-items: flex-start;
                  justify-content: space-between;
                  gap: 12px;
                  margin-bottom: 12px;
                }

                .faq-title {
                  font-size: clamp(18px, 2.2vw, 22px);
                  font-weight: 750;
                  letter-spacing: .2px;
                  line-height: 1.25;
                  color: #315B82;
                  text-shadow: 0 1px 0 rgba(255,255,255,.22);
                }

                .faq-sub {
                  margin-top: 6px;
                  color: rgba(49,91,130,.82);
                  font-size: 13px;
                  line-height: 1.45;
                }

                .faq-list {
                  position: relative;
                  z-index: 1;
                  display: flex;
                  flex-direction: column;
                  gap: 10px;
                }

                .faq-item {
                  background: linear-gradient(180deg,#153D68,#071A34);
                  border-radius: 14px;
                  border: 1px solid var(--soft-line);
                  overflow: hidden;
                  box-shadow:
                    inset 0 1px 0 rgba(255, 255, 255, 0.08),
                    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
                }

                .faq-q {
                  width: 100%;
                  display: flex;
                  align-items: center;
                  justify-content: space-between;
                  gap: 12px;
                  padding: 14px 14px;
                  cursor: pointer;
                  background: transparent;
                  border: none;
                  color: var(--text);
                  text-align: left;
                  font-weight: 600;
                  font-size: 13.5px;
                  line-height: 1.5;
                }

                .faq-q:hover {
                  background: rgba(216,248,255,.08);
                }

                .faq-arrow {
                  flex: 0 0 auto;
                  width: 26px;
                  height: 26px;
                  border-radius: 999px;
                  display: grid;
                  place-items: center;
                  border: 1px solid rgba(155,147,255,.35);
                  background: rgba(104,221,248,.12);
                  color: #9B93FF;
                  transition: transform .22s ease, background .22s ease, border-color .22s ease;
                }

                .faq-q[aria-expanded="true"] .faq-arrow {
                  transform: rotate(180deg);
                  background: rgba(155,147,255,.14);
                  border-color: rgba(155,147,255,.45);
                }

                .faq-a {
                  max-height: 0;
                  overflow: hidden;
                  transition: max-height .28s ease;
                }

                .faq-a-inner {
                  padding: 0 14px 14px 14px;
                  color: rgba(241,249,253,.92);
                  font-size: 14px;
                  line-height: 1.6;
                }

                @media (prefers-reduced-motion: reduce) {
                  .faq-box::before {
                    animation: none;
                  }

                  .faq-a {
                    transition: none;
                  }

                  .faq-arrow {
                    transition: none;
                  }
                }

                @media (max-width: 640px) {
                  .faq-wrap {
                    width: calc(100% - 24px);
                    max-width: none;
                  }
                }

                @media (max-width: 520px) {
                  .faq-box {
                    padding: 14px;
                    border-radius: 16px;
                  }

                  .faq-q {
                    padding: 12px 12px;
                    font-size: 14.5px;
                  }

                  .faq-a-inner {
                    padding: 0 12px 12px 12px;
                  }
                }

                .faq-q {
                  text-transform: none !important;
                  letter-spacing: 0 !important;
                  font-weight: 600;
                  font-size: 13.5px;
                  line-height: 1.5;
                }
              