:root {
  --faq-hero-bg: var(--background, #FAF6EF);
  --faq-card-bg: var(--white, #ffffff);
  --faq-muted: var(--neutral, #7A7073);
  --faq-primary: var(--primary, #84228A);
  --faq-shadow: 0 15px 35px rgba(132, 34, 138, 0.08);
}

.faq-hero {
  background: var(--faq-hero-bg);
  padding: 4rem 0 3rem;
  text-align: center;
  border-bottom-left-radius: 48px;
  border-bottom-right-radius: 48px;
}

.faq-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.45);
  margin-bottom: 1rem;
}

.faq-hero__title {
  font-size: clamp(2.5rem, 4vw, 3.25rem);
  font-weight: 800;
  color: var(--faq-primary);
  margin-bottom: 0.75rem;
}

.faq-hero__subtitle {
  font-size: 1.125rem;
  color: var(--faq-muted);
  max-width: 720px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.faq-search {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  border-radius: 1rem;
  padding: 0.5rem 1rem;
  box-shadow: var(--faq-shadow);
}

.faq-search i {
  color: var(--faq-muted);
  font-size: 1.3rem;
}

.faq-search input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 1rem;
  background: transparent;
}

.faq-content {
  padding: 3.5rem 0 2rem;
}

.faq-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.faq-card {
  background: var(--faq-card-bg);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--faq-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  min-height: 240px;
}

.faq-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px rgba(132, 34, 138, 0.12);
}

.faq-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(244, 163, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--primary, #84228A);
  font-size: 1.5rem;
}

.faq-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #2C3E50;
}

.faq-card p {
  color: var(--faq-muted);
  line-height: 1.65;
  font-size: 0.98rem;
}

.faq-empty {
  text-align: center;
  margin-top: 2rem;
  color: var(--faq-muted);
}

@media (max-width: 768px) {
  .faq-hero {
    padding: 3rem 1rem 2.5rem;
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
  }

  .faq-card {
    min-height: auto;
    padding: 1.5rem;
  }
}

/* =============================================
   Home page integration
   ============================================= */
.home-section {
  padding: 4rem 0;
}

.home-section--intro {
  padding-top: 3rem;
}

.home-intro-card {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.home-intro-card h2 {
  margin-top: 0.5rem;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
}

.home-intro-card p {
  margin-bottom: 0;
  color: var(--faq-muted);
  font-size: 1.05rem;
}

.home-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.home-section-header .faq-hero__subtitle {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.home-card__cta {
  margin-top: 1.25rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.75rem;
}

.home-section--values {
  background: var(--faq-hero-bg);
}

.home-value-card .faq-card__icon {
  background: rgba(132, 34, 138, 0.12);
}

@media (max-width: 768px) {
  .home-section {
    padding: 3rem 0;
  }

  .home-card__cta {
    width: 100%;
    justify-content: center;
  }
}

.faq-card__steps {
  margin: 1rem 0;
  padding-left: 1.25rem;
  color: var(--faq-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-card__steps li {
  margin-bottom: 0.5rem;
}
