.faq-page {
  background: #111;
  color: #fff;
}

.faq-hero {
  position: relative;
  padding: 140px 20px 60px;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.62) 38%,
      rgba(0, 0, 0, 0.42) 66%,
      rgba(0, 0, 0, 0.6) 100%
    ),
    linear-gradient(180deg, #1a1a1a 0%, #101010 100%);
}

.faq-shell {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-kicker {
  display: inline-block;
  margin: 0 0 18px;
  color: #fff;
  opacity: 0.9;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.faq-title {
  margin: 0 0 20px;
  color: #fcd500;
  font-family: "Archivo Black", sans-serif;
  text-transform: uppercase;
  line-height: 1.05;
  font-size: clamp(2.2rem, 4.5vw, 4.2rem);
  max-width: 900px;
}

.faq-lead {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
  font-size: 1.05rem;
  margin: 0 0 28px;
}

.faq-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.faq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 15px 24px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.faq-btn-primary {
  background: #fcd500;
  border-color: #fcd500;
  color: #111;
}

.faq-btn-primary:hover {
  background: #ffdf32;
  border-color: #ffdf32;
  transform: translateY(-2px);
}

.faq-btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
}

.faq-btn-secondary:hover {
  background: #fff;
  color: #111;
  border-color: #fff;
  transform: translateY(-2px);
}

.faq-section {
  position: relative;
  padding: 70px 20px 80px;
  background: #111;
}

.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(252, 213, 0, 0.06) 0%,
      rgba(252, 213, 0, 0.02) 18%,
      rgba(0, 0, 0, 0) 42%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.04));
  pointer-events: none;
}

.faq-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 24px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
  padding: 18px 20px;
}

.faq-item summary {
  cursor: pointer;
  color: #fff;
  font-weight: 800;
  line-height: 1.45;
}

.faq-item p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

.faq-side-card {
  background: linear-gradient(
    90deg,
    rgba(252, 213, 0, 0.12),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(252, 213, 0, 0.16);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
  padding: 24px;
}

.faq-side-card h2 {
  margin: 0 0 12px;
  color: #fcd500;
  font-family: "Archivo Black", sans-serif;
  text-transform: uppercase;
  line-height: 1.15;
  font-size: 1.5rem;
}

.faq-side-card p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
}

.faq-side-card .faq-btn {
  width: 100%;
  min-width: 0;
}

@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .faq-hero {
    padding: 110px 20px 40px;
  }

  .faq-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .faq-btn {
    width: 100%;
    min-width: 0;
  }
}
