.themes-hero-grid {
  align-items: center;
  gap: var(--space-3xl);
}

.themes-hero-visual {
  position: relative;
  min-height: 260px;
}

.themes-hero-media {
  position: relative;
  border-radius: var(--radius-container);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.themes-hero-image {
  width: 100%;
  height: auto;
}

.themes-hero-orbit {
  position: absolute;
  inset: 10%;
  border-radius: 999px;
  border: 1px dashed rgba(199, 255, 61, 0.45);
  pointer-events: none;
}

.themes-hero-chip {
  position: absolute;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.35), transparent 55%), rgba(5, 6, 8, 0.96);
  color: var(--color-text-soft);
  font-size: var(--text-xs);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(var(--blur-soft));
  -webkit-backdrop-filter: blur(var(--blur-soft));
}

.themes-hero-chip-primary {
  top: 10%;
  left: 6%;
}

.themes-hero-chip-secondary {
  bottom: 12%;
  right: 8%;
}

.themes-hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}

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

.themes-scenarios-media {
  max-width: 640px;
}

.themes-scenarios-list {
  width: 100%;
}

.themes-scenarios-cards {
  align-items: stretch;
}

.themes-scenario-card {
  height: 100%;
}

.themes-list-check {
  list-style: none;
  padding-left: 0;
  margin-top: var(--space-md);
  display: grid;
  gap: 0.4rem;
  font-size: var(--text-sm);
  color: var(--color-text-soft);
}

.themes-list-check li {
  position: relative;
  padding-left: 1.3rem;
}

.themes-list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(199, 255, 61, 0.8);
  background: radial-gradient(circle, #c7ff3d 0, #7ae5ff 60%);
  box-shadow: 0 0 12px rgba(199, 255, 61, 0.6);
}

.themes-personalization-grid {
  align-items: center;
  gap: var(--space-2xl);
}

.themes-personalization-pills {
  margin-top: var(--space-md);
}

.themes-personalization-steps {
  margin-top: var(--space-lg);
}

.themes-personalization-cta {
  margin-top: var(--space-lg);
}

.themes-flow-grid {
  align-items: flex-start;
  gap: var(--space-2xl);
}

.themes-flow-surface {
  margin-top: var(--space-lg);
}

.themes-list-dots {
  list-style: none;
  padding-left: 0;
  display: grid;
  gap: 0.35rem;
  font-size: var(--text-sm);
  color: var(--color-text-soft);
}

.themes-list-dots li {
  position: relative;
  padding-left: 1.1rem;
}

.themes-list-dots li::before {
  content: "";
  position: absolute;
  left: 0.2rem;
  top: 0.55rem;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
}

.themes-flow-aside-inner {
  height: 100%;
}

.themes-flow-kpis {
  margin-top: var(--space-md);
}

.themes-faq-grid {
  align-items: flex-start;
  gap: var(--space-2xl);
}

.themes-faq-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.themes-final-cta {
  padding: var(--space-2xl);
}

.themes-final-cta-grid {
  align-items: center;
  gap: var(--space-2xl);
}

.themes-final-cta-actions {
  align-self: stretch;
  justify-content: space-between;
}

.themes-final-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

@media (max-width: 767px) {
  .themes-final-cta {
    padding: var(--space-xl);
  }
  .themes-final-cta-actions {
    gap: var(--space-md);
  }
}

@media (min-width: 768px) {
  .themes-hero-grid {
    gap: var(--space-3xl);
  }
  .themes-hero-visual {
    min-height: 320px;
  }
}

@media (min-width: 1024px) {
  .themes-hero-visual {
    max-width: 560px;
    margin-left: auto;
  }
}

[data-accordion-panel] {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), opacity var(--transition-base), padding-top var(--transition-base);
  opacity: 0;
}

[data-accordion-panel].is-open {
  opacity: 1;
  padding-top: 0.25rem;
}

[data-accordion-item-open="true"] > .accordion-header .accordion-icon {
  transform: rotate(45deg);
}

@media (prefers-reduced-motion: reduce) {
  [data-accordion-panel] {
    transition: none;
  }
}
