.help-hero {
  padding: 80px 0 60px;
}

.help-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 40px;
  align-items: center;
}

.help-hero-copy h1 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.15;
  color: #24324b;
  margin-bottom: 16px;
}

.help-hero-copy {
  animation: fade-up 0.8s ease both;
}

.help-hero-copy p {
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 24px;
}

.help-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}

.help-hero-actions .btn {
  width: min(260px, 100%);
}

.help-hero-art {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fade-up 0.9s ease 0.1s both;
}

.help-hero-art img {
  width: min(420px, 90%);
  filter: drop-shadow(0 20px 40px rgba(109, 98, 201, 0.22));
}

.help-hero-copy,
.help-hero-actions {
  padding-inline: clamp(8px, 2vw, 20px);
}

.help-faq {
  position: relative;
  padding: 60px 0 70px;
  overflow: visible;
}

.help-faq::before {
  content: "";
  position: absolute;
  width: 820px;
  height: 820px;
  border-radius: 50%;
  background: #e7eeff;
  left: -460px;
  bottom: -300px;
  z-index: -1;
}

.help-faq h2 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  text-align: center;
  margin-bottom: 32px;
  color: #24324b;
}

.faq-list {
  display: grid;
  gap: 18px;
  max-width: 820px;
  margin: 0 auto;
}

.faq-card {
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(39, 44, 78, 0.12);
  padding: 22px 24px;
  animation: fade-up 0.9s ease both;
}

.faq-card summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-weight: 600;
  color: #1f2a44;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card p {
  margin-top: 14px;
  color: var(--ink-soft);
}

.faq-card ul {
  list-style: none;
  margin: 12px 0 0;
  padding-left: 12px;
}

.faq-card li {
  position: relative;
  margin: 8px 0;
  padding-left: 18px;
  color: var(--ink-soft);
}

.faq-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1.5px solid var(--primary);
  background: transparent;
  transform: translateY(-50%);
}

.faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 2px solid var(--primary-dark);
  color: var(--primary-dark);
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}

.faq-card[open] .faq-icon {
  transform: rotate(180deg);
}

.help-cta {
  padding: 10px 0 100px;
}

.help-cta-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.help-cta-inner h3 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: #24324b;
  margin-bottom: 10px;
}

.help-cta-inner p {
  color: var(--ink-soft);
  margin-bottom: 22px;
}

@media (max-width: 900px) {
  .help-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .help-hero-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .help-hero-actions {
    justify-content: center;
  }
}

@media (max-width: 1100px) {
  .help-hero {
    padding: 100px 0 0;
  }

  .help-hero-copy {
    text-align: center;
  }

  .help-hero-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .help-faq {
    padding: 75px 0 100px;
  }

  .help-cta {
    padding: 20px 0 70px;
  }
}

@media (max-width: 750px) {
  .help-hero {
    padding: 70px 0 0;
  }

  .help-hero-actions {
    align-items: center;
  }

  .faq-card {
    padding: 18px 18px;
  }

  .faq-card summary {
    align-items: flex-start;
  }

  .faq-icon {
    width: 28px;
    height: 28px;
  }
}
