.hero-thematic {
  padding-block: var(--space-16) var(--space-12);
  background-image: radial-gradient(circle at top left, rgba(228, 179, 75, 0.28), transparent 55%),
                    radial-gradient(circle at bottom right, rgba(255, 75, 106, 0.28), transparent 55%),
                    url('/assets/images/thematic-event-main.webp');
  background-size: auto, auto, cover;
  background-position: top left, bottom right, center;
  background-repeat: no-repeat;
}

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

.hero-thematic__subtitle {
  max-width: 36rem;
}

.hero-thematic__cta-group {
  margin-top: var(--space-5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.hero-thematic__meta {
  margin-top: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.hero-thematic__meta-text {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.hero-thematic__media {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-thematic__image {
  max-width: 420px;
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-strong);
  border: 1px solid var(--color-border-strong);
}

.themed-intro {
  max-width: 48rem;
  margin-bottom: var(--space-8);
}

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

.themed-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: var(--space-3);
}

.themed-card__media {
  margin-top: var(--space-3);
}

.themed-card__image {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-subtle);
}

.themed-list,
.themed-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
}

.themed-list li::before,
.themed-bullets li::before {
  content: "\2022";
  margin-right: 0.45rem;
  color: var(--color-primary);
}

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

.themed-checklist {
  list-style: none;
  padding: 0;
  margin: var(--space-4) 0;
  display: grid;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
}

.themed-checklist li::before {
  content: "✔";
  margin-right: 0.5rem;
  color: var(--color-success);
  font-size: 0.8rem;
}

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

.themed-fullwidth-btn {
  width: 100%;
  justify-content: center;
}

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

.themed-steps {
  counter-reset: steps-counter;
  list-style: none;
  padding: 0;
  margin: var(--space-4) 0 0;
  display: grid;
  gap: var(--space-4);
}

.themed-steps li {
  position: relative;
  padding-left: 2.5rem;
}

.themed-steps li::before {
  counter-increment: steps-counter;
  content: counter(steps-counter);
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #f2cf73, #e4b34b);
  color: #111;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.themed-steps h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-1);
}

.themed-aside {
  align-self: stretch;
}

.themed-mini-form {
  margin-top: var(--space-3);
  display: grid;
  gap: var(--space-3);
}

.themed-mini-form__note {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  margin-bottom: 0;
}

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

.themed-testimonials {
  margin-top: var(--space-4);
  display: grid;
  gap: var(--space-3);
}

.themed-testimonial {
  margin: 0;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-subtle);
  background-color: rgba(15, 11, 26, 0.85);
}

.themed-testimonial blockquote {
  margin: 0 0 var(--space-2) 0;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.themed-testimonial figcaption {
  font-size: var(--font-size-xs);
  color: var(--color-text);
}

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

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

.themed-bottom-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

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

@media (max-width: 960px) {
  .hero-thematic__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-thematic__media {
    order: -1;
  }

  .hero-thematic {
    padding-block: var(--space-12) var(--space-10);
    background-position: center;
  }
}

@media (max-width: 768px) {
  .themed-bottom-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-thematic__cta-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .themed-fullwidth-btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .hero-thematic {
    padding-block: var(--space-10) var(--space-8);
  }

  .themed-testimonial {
    padding-inline: var(--space-3);
  }
}
