.hero--themes {
  background: var(--gradient-warm-light);
}

.hero-blob-1 {
  width: 340px;
  height: 340px;
  top: -80px;
  left: -40px;
}

.hero-blob-2 {
  width: 280px;
  height: 280px;
  right: -60px;
  bottom: -40px;
}

.hero-image-card {
  position: relative;
  overflow: hidden;
}

.hero-image-card__img {
  border-radius: var(--radius-lg);
}

.hero-image-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--space-4);
  background: linear-gradient(to top, rgba(12, 19, 38, 0.6), transparent 55%);
}

.hero-image-card__stats {
  display: flex;
  gap: var(--space-4);
  align-items: flex-end;
}

.hero-image-card__stat-label {
  font-size: var(--font-size-xs);
  color: #e5e7eb;
}

.hero-image-card__stat-value {
  font-size: var(--font-size-2xl);
  font-weight: 600;
  color: #ffffff;
  line-height: var(--line-height-tight);
}

.hero-image-card__stat-caption {
  font-size: var(--font-size-xs);
  color: #e5e7eb;
}

.small-text {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.hero-card-floating--themes {
  max-width: 360px;
}

.section-heading--center {
  text-align: center;
}

.section-heading--center .section__subtitle {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  color: var(--color-text-muted);
}

.subnav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  padding: 0.5rem 0;
}

.subnav__link {
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: var(--font-size-xs);
  color: var(--color-gray-700);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid transparent;
}

.subnav__link--active {
  background: var(--color-primary-soft);
  color: var(--color-graphite);
  border-color: rgba(122, 223, 79, 0.6);
}

.themes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
}

@media (max-width: 1024px) {
  .themes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

.theme-card__media {
  margin-bottom: var(--space-3);
}

.theme-card__img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.theme-card__list {
  list-style: none;
  padding-left: 0;
  margin: var(--space-3) 0 0;
}

.theme-card__list li {
  position: relative;
  padding-left: 1.2rem;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.theme-card__list li + li {
  margin-top: 0.5rem;
}

.theme-card__list li::before {
  content: "";
  position: absolute;
  left: 0.2rem;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-primary);
}

.theme-card__cta {
  margin-top: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.themes-next-step {
  background: var(--gradient-warm-light);
}

.themes-next-step__content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  align-items: center;
  justify-content: space-between;
}

.themes-next-step__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

@media (min-width: 768px) {
  .themes-next-step__actions {
    align-items: flex-end;
  }
}

.themes-faq-grid {
  align-items: flex-start;
}

.themes-faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

@media (max-width: 768px) {
  .hero__content {
    text-align: left;
  }

  .hero-image-card__overlay {
    padding: var(--space-3);
  }

  .themes-next-step__content {
    flex-direction: column;
    align-items: flex-start;
  }

  .themes-next-step__actions {
    width: 100%;
  }

  .themes-next-step__actions .btn {
    width: 100%;
    justify-content: center;
  }
}
