.faq-hero {
  padding: 80px 0 60px;
  background: #fff;
}

.faq-hero-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 48px;
}

.faq-hero-copy {
  flex: 1 1 380px;
}

.faq-hero-visual {
  flex: 1 1 360px;
}

.faq-hero-visual-inner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(7, 23, 55, 0.18);
}

.faq-hero-visual-inner img {
  display: block;
  width: 100%;
  height: auto;
}

.faq-hero-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(12, 27, 51, 0.9);
  color: #fff;
  box-shadow: 0 15px 30px rgba(12, 27, 51, 0.35);
}

.faq-hero-card p {
  font-size: 14px;
  margin: 0 0 4px;
  letter-spacing: 0.08em;
}

.faq-hero-card span {
  font-size: 18px;
  font-weight: 600;
}

.faq-eyebrow {
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #1a73e8;
  margin-bottom: 16px;
}

.faq-hero h1 {
  font-size: 40px;
  margin-bottom: 20px;
  color: #0c1b33;
}

.faq-hero-text {
  font-size: 18px;
  line-height: 1.8;
  color: #516079;
  margin-bottom: 20px;
}

.faq-hero-points {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 8px;
}

.faq-hero-points li {
  padding-left: 20px;
  position: relative;
  color: #1f2e46;
  font-weight: 500;
}

.faq-hero-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1a73e8;
}

.faq-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.faq-hero--compact {
  padding: 60px 0 40px;
  background: #fff;
}

.faq-hero--compact .content-wrapper {
  max-width: 760px;
}

.faq-section {
  background: #f6f8fb;
  padding: 60px 0 40px;
}

.faq-category-block {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: 0 20px 40px rgba(12, 27, 51, 0.08);
}

.faq-category-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.faq-category-label {
  font-size: 22px;
  font-weight: 600;
  color: #0c1b33;
  margin-bottom: 4px;
}

.faq-category-desc {
  color: #516079;
  font-size: 15px;
}

.faq-items {
  border-top: 1px solid #e1e7f0;
}

.faq-item + .faq-item {
  border-top: 1px solid #e1e7f0;
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  padding: 20px 0;
  background: none;
  border: none;
  color: #0c1b33;
  text-align: left;
  cursor: pointer;
  position: relative;
}

.faq-question-title {
  flex: 1;
}

.faq-question:focus-visible {
  outline: 2px solid #1a73e8;
  outline-offset: 2px;
}

.faq-question-label {
  font-weight: 700;
  color: #1a73e8;
}

.faq-toggle-icon {
  margin-left: auto;
  width: 24px;
  height: 24px;
  position: relative;
}

.faq-toggle-icon::before,
.faq-toggle-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: #0c1b33;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.faq-toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-toggle-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.35s ease;
  opacity: 0;
}

.faq-item.is-open .faq-answer {
  opacity: 1;
}

.faq-answer-inner {
  padding: 0 0 24px 36px;
  color: #516079;
  line-height: 1.8;
}

.faq-answer-inner p {
  margin-bottom: 1em;
}

.faq-answer-inner ul {
  padding-left: 1.2em;
}

.faq-empty {
  text-align: center;
  padding: 40px;
  background: #fff;
  border-radius: 12px;
  color: #516079;
}

.faq-single {
  padding: 60px 0 100px;
  background: #f6f8fb;
}

.faq-single-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(12, 27, 51, 0.08);
}

.faq-single-question {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.faq-single-question h2 {
  margin: 0;
  font-size: 26px;
  color: #0c1b33;
}

.faq-single-answer {
  color: #516079;
  line-height: 1.9;
}

.faq-single-answer p {
  margin-bottom: 1.4em;
}

.faq-single-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

@media (max-width: 768px) {
  .faq-hero,
  .faq-hero--compact {
    padding: 48px 0;
  }

  .faq-hero h1 {
    font-size: 32px;
  }

  .faq-category-block {
    padding: 24px;
  }

  .faq-answer-inner {
    padding-left: 0;
  }

  .faq-single-card {
    padding: 28px;
  }

  .faq-single-question {
    flex-direction: column;
    align-items: flex-start;
  }

  .faq-hero-actions,
  .faq-single-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
