.themed-hero {
  padding-top: var(--space-16);
  padding-bottom: var(--space-12);
}

.themed-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: var(--space-8);
  align-items: center;
}

.themed-hero__lead {
  font-size: var(--font-size-lg);
  max-width: 36rem;
}

.themed-hero__actions {
  margin-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.themed-hero__meta {
  margin-top: var(--space-3);
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}

.themed-hero__figure {
  max-width: 460px;
  margin-left: auto;
}

.themed-hero__image {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--color-border-strong);
}

.themed-section-header {
  max-width: 46rem;
  margin: 0 auto var(--space-8);
  text-align: center;
}

.themed-section-header--compact {
  margin-bottom: var(--space-6);
}

.themed-section-header p {
  color: var(--color-text-muted);
}

.themed-grid {
  margin-top: var(--space-4);
}

.themed-grid--spacing-top {
  margin-top: var(--space-8);
}

.themed-card__figure {
  margin-top: var(--space-4);
}

.themed-card__figure img {
  border-radius: var(--radius-lg);
}

.themed-card--compact {
  height: 100%;
}

.themed-card--highlight {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-medium);
}

.themed-list,
.themed-bullets {
  margin-top: var(--space-3);
  padding-left: 1.1rem;
}

.themed-list li,
.themed-bullets li {
  color: var(--color-text-muted);
  margin-bottom: 0.35rem;
}

.themed-steps {
  counter-reset: themed-step;
  list-style: none;
  padding-left: 0;
}

.themed-steps li {
  position: relative;
  padding-left: 2.2rem;
  margin-bottom: var(--space-3);
  color: var(--color-text-muted);
}

.themed-steps li::before {
  counter-increment: themed-step;
  content: counter(themed-step);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  background: var(--color-primary-soft);
  color: var(--color-primary-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xs);
  font-weight: 600;
}

.themed-card__cta {
  margin-top: var(--space-4);
}

.themed-cta-bar {
  margin-top: var(--space-8);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-subtle);
  background-color: var(--color-surface-soft);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
  justify-content: space-between;
}

.themed-cta-bar__text {
  max-width: 30rem;
}

.themed-cta-bar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.themed-faq__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}

.themed-faq__item {
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-subtle);
  background-color: var(--color-surface-soft);
  padding: var(--space-3) var(--space-4);
}

.themed-faq__item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 500;
  color: var(--gray-50);
}

.themed-faq__item summary::-webkit-details-marker {
  display: none;
}

.themed-faq__item[open] {
  background-color: var(--color-surface-elevated);
}

.themed-faq__item p {
  margin-top: var(--space-2);
}

.themed-faq__cta {
  margin-top: var(--space-6);
  text-align: center;
}

.themed-faq__cta p {
  margin-bottom: var(--space-3);
}

.themed-final-cta__inner {
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border-strong);
  background: radial-gradient(circle at top left, rgba(230, 57, 99, 0.18) 0, rgba(230, 57, 99, 0) 55%),
              radial-gradient(circle at bottom right, rgba(63, 213, 161, 0.15) 0, rgba(63, 213, 161, 0) 50%),
              var(--color-surface);
  padding: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
  justify-content: space-between;
}

.themed-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

@media (max-width: 991.98px) {
  .themed-hero__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .themed-hero__figure {
    margin-left: 0;
    max-width: 100%;
  }

  .themed-faq__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 767.98px) {
  .themed-hero {
    padding-top: var(--space-12);
  }

  .themed-cta-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .themed-final-cta__inner {
    padding: var(--space-4);
  }
}
