:root {
  --faq-primary: rgb(111 86 253);
  --faq-secondary: rgb(236 72 153);
  --faq-base-100: rgb(17 24 39);
  --faq-base-200: rgb(24 33 47);
  --faq-base-300: rgb(31 41 55);
  --faq-base-400: rgb(40 50 63);
  --faq-heading: rgb(255 255 255);
  --faq-content: rgb(156 163 175);
  --faq-border: rgb(40 50 63);
  --faq-success: rgb(52 211 153);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.faq-page,
.info-page {
  min-height: 100vh;
  background-color: var(--faq-base-100);
  color: var(--faq-content);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100%;
}

.sub-page-header {
  background-color: rgba(24, 33, 47, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--faq-border);
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
}

.sub-page-header-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sub-page-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--faq-heading);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.025em;
  transition: opacity 0.15s;
}

.sub-page-logo:hover {
  opacity: 0.85;
}

.sub-page-logo svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.sub-page-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.sub-page-nav a {
  text-decoration: none;
  color: var(--faq-content);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.15s;
}

.sub-page-nav a:hover {
  color: var(--faq-heading);
}

.sub-page-nav a.active {
  color: rgb(111 86 253);
}

.sub-page-main {
  max-width: 1024px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
  width: 100%;
}

.sub-page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.8125rem;
  color: var(--faq-content);
}

.sub-page-breadcrumb a {
  color: rgb(111 86 253);
  text-decoration: none;
  transition: color 0.15s;
}

.sub-page-breadcrumb a:hover {
  color: rgb(140 120 253);
}

.sub-page-breadcrumb span {
  color: var(--faq-content);
  opacity: 0.5;
}

.sub-page-hero {
  margin-bottom: 3.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--faq-border);
}

.sub-page-hero h1 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--faq-heading);
  line-height: 1.15;
  margin: 0 0 1rem;
}

@media (min-width: 640px) {
  .sub-page-hero h1 {
    font-size: 2.5rem;
  }
}

@media (min-width: 768px) {
  .sub-page-hero h1 {
    font-size: 3rem;
  }
}

.sub-page-hero p {
  font-size: 1.0625rem;
  color: var(--faq-content);
  max-width: 600px;
  line-height: 1.65;
  margin: 0;
}

.sub-page-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background-color: rgba(111, 86, 253, 0.12);
  border: 1px solid rgba(111, 86, 253, 0.25);
  color: rgb(140 120 253);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.faq-section {
  margin-bottom: 3rem;
}

.faq-section-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgb(111 86 253);
  margin: 0 0 1.5rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--faq-border);
  border-radius: 1rem;
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--faq-border);
  background-color: var(--faq-base-200);
  transition: background-color 0.15s;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item.open {
  background-color: var(--faq-base-300);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  list-style: none;
  transition: background-color 0.15s;
}

.faq-question:hover {
  background-color: var(--faq-base-300);
}

.faq-question h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--faq-heading);
  margin: 0;
  line-height: 1.4;
  flex: 1;
}

.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--faq-content);
  transition: transform 0.2s ease, color 0.15s;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: rgb(111 86 253);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.5rem;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-answer p {
  font-size: 0.9375rem;
  color: var(--faq-content);
  line-height: 1.7;
  margin: 0 0 0.75rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer a {
  color: rgb(111 86 253);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s;
}

.faq-answer a:hover {
  color: rgb(140 120 253);
}

.faq-answer ul,
.faq-answer ol {
  padding-left: 1.5rem;
  margin: 0.5rem 0 0.75rem;
  color: var(--faq-content);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.faq-answer ul li,
.faq-answer ol li {
  margin-bottom: 0.375rem;
}

.info-section {
  margin-bottom: 3.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--faq-border);
}

.info-section:last-of-type {
  border-bottom: none;
  margin-bottom: 2rem;
}

.info-section h2 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--faq-heading);
  margin: 0 0 1.25rem;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .info-section h2 {
    font-size: 1.75rem;
  }
}

.info-section p {
  font-size: 0.9375rem;
  color: var(--faq-content);
  line-height: 1.75;
  margin: 0 0 1rem;
  max-width: 700px;
}

.info-section p:last-child {
  margin-bottom: 0;
}

.info-section a {
  color: rgb(111 86 253);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s;
}

.info-section a:hover {
  color: rgb(140 120 253);
}

.info-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .info-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .info-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.info-card {
  background-color: var(--faq-base-200);
  border: 1px solid var(--faq-border);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: background-color 0.15s, border-color 0.15s;
}

.info-card:hover {
  background-color: var(--faq-base-300);
  border-color: rgba(111, 86, 253, 0.3);
}

.info-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(111, 86, 253, 0.12);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.info-card-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: rgb(111 86 253);
}

.info-card h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--faq-heading);
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.info-card p {
  font-size: 0.875rem;
  color: var(--faq-content);
  line-height: 1.6;
  margin: 0;
  max-width: none;
}

.info-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .info-stat-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.info-stat {
  background-color: var(--faq-base-200);
  border: 1px solid var(--faq-border);
  border-radius: 1rem;
  padding: 1.25rem 1rem;
  text-align: center;
}

.info-stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--faq-heading);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 0.375rem;
}

.info-stat-label {
  font-size: 0.8125rem;
  color: var(--faq-content);
  font-weight: 500;
}

.info-step-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.info-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.info-step-number {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, rgb(111 86 253), rgb(236 72 153));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
  margin-top: 0.125rem;
}

.info-step-content h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--faq-heading);
  margin: 0 0 0.375rem;
}

.info-step-content p {
  font-size: 0.9rem;
  color: var(--faq-content);
  line-height: 1.65;
  margin: 0;
  max-width: none;
}

.sub-page-cta {
  margin-top: 3rem;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, rgba(111, 86, 253, 0.12), rgba(236, 72, 153, 0.08));
  border: 1px solid rgba(111, 86, 253, 0.2);
  border-radius: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

@media (min-width: 640px) {
  .sub-page-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.sub-page-cta-text h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--faq-heading);
  margin: 0 0 0.375rem;
}

.sub-page-cta-text p {
  font-size: 0.875rem;
  color: var(--faq-content);
  margin: 0;
}

.sub-page-cta-buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.btn-primary-sub {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: rgb(111 86 253);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.5rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background-color 0.15s, opacity 0.15s;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary-sub:hover {
  background-color: rgb(89 69 202);
}

.btn-secondary-sub {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: transparent;
  color: var(--faq-heading);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.5rem;
  text-decoration: none;
  border: 1px solid var(--faq-border);
  transition: background-color 0.15s, border-color 0.15s;
  cursor: pointer;
  white-space: nowrap;
}

.btn-secondary-sub:hover {
  background-color: var(--faq-base-300);
  border-color: rgba(111, 86, 253, 0.4);
}

.btn-home-sub {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background-color: rgb(111 86 253);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 0.5rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background-color 0.15s;
  cursor: pointer;
}

.btn-home-sub:hover {
  background-color: rgb(89 69 202);
}

.btn-home-sub svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.return-home-section {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--faq-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.return-home-section p {
  font-size: 0.875rem;
  color: var(--faq-content);
  margin: 0;
}

.sub-page-footer {
  border-top: 1px solid var(--faq-border);
  background-color: var(--faq-base-200);
  padding: 2rem 1.5rem;
  margin-top: auto;
}

.sub-page-footer-inner {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 640px) {
  .sub-page-footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.sub-page-footer p {
  font-size: 0.8125rem;
  color: var(--faq-content);
  opacity: 0.7;
  margin: 0;
}

.sub-page-footer-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.sub-page-footer-links a {
  font-size: 0.8125rem;
  color: var(--faq-content);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.15s, color 0.15s;
}

.sub-page-footer-links a:hover {
  opacity: 1;
  color: var(--faq-heading);
}

.inline-link {
  color: rgb(111 86 253);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s;
}

.inline-link:hover {
  color: rgb(140 120 253);
}

.highlight-box {
  background-color: rgba(111, 86, 253, 0.08);
  border: 1px solid rgba(111, 86, 253, 0.2);
  border-radius: 0.75rem;
  padding: 1.125rem 1.25rem;
  margin: 1.25rem 0;
  font-size: 0.9rem;
  color: rgb(197 187 254);
  line-height: 1.65;
}

.highlight-box strong {
  color: rgb(111 86 253);
  font-weight: 600;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  background-color: var(--faq-base-300);
  border: 1px solid var(--faq-border);
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--faq-content);
}

.divider {
  height: 1px;
  background-color: var(--faq-border);
  margin: 2.5rem 0;
  border: none;
}

.info-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .info-two-col {
    grid-template-columns: 1fr 1fr;
  }
}

.info-two-col-text h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--faq-heading);
  margin: 0 0 0.75rem;
}

.info-two-col-text p {
  font-size: 0.9rem;
  color: var(--faq-content);
  line-height: 1.7;
  margin: 0 0 0.75rem;
}

.info-two-col-text p:last-child {
  margin-bottom: 0;
}

.pill-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.1875rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  background-color: rgba(111, 86, 253, 0.12);
  border: 1px solid rgba(111, 86, 253, 0.2);
  color: rgb(140 120 253);
}

.pill-success {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.1875rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  background-color: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.2);
  color: rgb(52 211 153);
}

@media (max-width: 639px) {
  .sub-page-main {
    padding: 2rem 1rem 4rem;
  }

  .sub-page-hero h1 {
    font-size: 1.75rem;
  }

  .faq-question {
    padding: 1rem 1.125rem;
  }

  .faq-answer {
    padding: 0 1.125rem 1.125rem;
  }

  .info-section h2 {
    font-size: 1.375rem;
  }

  .sub-page-header-inner {
    padding: 0.875rem 1rem;
  }

  .info-stat-number {
    font-size: 1.5rem;
  }
}