body {
  color: var(--color-text);
}

.section--dark-block {
  background: radial-gradient(circle at top, #020617 0, #020617 38%, #000 100%);
}

.hero-strip__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
  margin-top: var(--space-4);
}

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

.themed-grid--reverse {
  direction: rtl;
}

.themed-grid--reverse > * {
  direction: ltr;
}

.section-heading-center {
  max-width: 720px;
}

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

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

.themed-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.themed-list--columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.55rem 1.5rem;
}

.themed-list li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  margin-right: 0.5rem;
  background: radial-gradient(circle at center, var(--color-primary-strong), transparent 70%);
}

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

.themed-card-stack {
  position: relative;
  min-height: 260px;
}

.themed-card-stack__item {
  position: absolute;
  inset: 0;
}

.themed-card-stack__item--top {
  transform: translate(8%, -5%);
}

.themed-card-stack__item--bottom {
  transform: translate(-6%, 8%);
  opacity: 0.9;
}

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

.themed-timeline {
  display: grid;
  gap: var(--space-6);
  margin-top: var(--space-6);
}

.themed-timeline__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: var(--space-4);
  align-items: flex-start;
}

.themed-timeline__marker {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  border: 1px solid var(--color-border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  color: var(--color-primary-strong);
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.16), rgba(15, 23, 42, 0.96));
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.95);
}

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

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

.themed-steps {
  counter-reset: themed-step;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.themed-steps li {
  counter-increment: themed-step;
  position: relative;
  padding-left: 1.6rem;
}

.themed-steps li::before {
  content: counter(themed-step) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-primary-strong);
}

.themed-note {
  font-size: var(--text-xs);
  color: var(--color-text-soft);
  margin-top: var(--space-2);
}

.themed-link {
  font-size: var(--text-sm);
  color: var(--color-primary-strong);
}

.themed-link:hover {
  opacity: 0.9;
}

@media (max-width: 960px) {
  .hero-strip__cta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .themed-card-stack {
    min-height: 0;
  }

  .themed-card-stack__item,
  .themed-card-stack__item--top,
  .themed-card-stack__item--bottom {
    position: static;
    transform: none;
    margin-bottom: var(--space-4);
  }

  .themed-grid--reverse {
    direction: ltr;
  }
}

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

  .themed-timeline__marker {
    margin-bottom: -0.5rem;
  }
}
