.hero--themed {
  background-color: #020617;
}

.themed-benefits-grid {
  align-items: stretch;
}

.themed-concepts-grid {
  align-items: stretch;
}

.themed-showcase-grid {
  align-items: center;
  gap: var(--space-8);
}

.themed-showcase-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.themed-showcase-content .section-heading__title {
  margin-bottom: var(--space-2);
}

.themed-showcase-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.themed-showcase-list li {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.themed-showcase-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.themed-process-grid {
  align-items: flex-start;
  gap: var(--space-8);
}

.themed-process-list {
  counter-reset: themed-step;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.themed-process-list li {
  position: relative;
  padding-left: var(--space-6);
}

.themed-process-list li::before {
  counter-increment: themed-step;
  content: counter(themed-step);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xs);
  font-weight: 600;
}

.themed-process-list h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-2);
}

.themed-process-list--continued {
  counter-reset: themed-step 3;
}

.themed-process-cta {
  margin-top: var(--space-6);
}

.themed-addons-grid {
  align-items: stretch;
}

.themed-references-grid {
  align-items: center;
  gap: var(--space-8);
}

.themed-references-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.themed-testimonials {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.themed-flow-grid {
  align-items: stretch;
}

.themed-contact-grid {
  align-items: flex-start;
  gap: var(--space-8);
}

.themed-contact-text h3 {
  margin-bottom: var(--space-3);
}

.themed-contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.themed-contact-form-wrapper {
  background-color: var(--color-surface);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: var(--shadow-md);
  padding: var(--space-6);
}

.themed-contact-submit {
  width: 100%;
}

.themed-contact-privacy {
  margin-top: var(--space-2);
  font-size: var(--font-size-xs);
  color: var(--gray-500);
}

@media (max-width: 900px) {
  .themed-showcase-grid,
  .themed-references-grid,
  .themed-contact-grid {
    gap: var(--space-6);
  }

  .themed-contact-form-wrapper {
    padding: var(--space-4);
  }
}

@media (max-width: 640px) {
  .themed-showcase-cta {
    flex-direction: column;
  }

  .themed-contact-submit {
    width: 100%;
  }
}
