main {
  position: relative;
}

.hero-header-over-strip {
  max-width: 720px;
}

.hero-header-over-strip .hero-title {
  margin-bottom: var(--space-3);
}

.hero-header-over-strip .hero-subtitle {
  position: relative;
  z-index: 2;
}

.hero-strip-wrapper {
  margin-top: var(--space-8);
}

.themed-strip {
  border-radius: 26px;
  background: radial-gradient(circle at 0 0, rgba(79, 124, 255, 0.24) 0, transparent 55%),
    rgba(3, 7, 24, 0.96);
  box-shadow: var(--shadow-elevated);
}

.themed-strip-card--wide {
  min-width: 320px;
}

.themed-strip-card--medium {
  min-width: 260px;
}

.themed-strip-card--narrow {
  min-width: 220px;
}

.section-heading h2 {
  margin-bottom: var(--space-3);
}

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

.themed-section-grid--image-right {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.9fr);
}

.themed-section-grid--image-left {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.15fr);
}

.themed-section-grid--reverse-on-mobile {
  grid-auto-flow: dense;
}

.themed-image-col {
  align-self: stretch;
}

.themed-image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border-subtle);
  box-shadow: var(--shadow-elevated);
  background: radial-gradient(circle at 0 0, rgba(79, 124, 255, 0.22) 0, transparent 55%),
    #050817;
}

.themed-image-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0, rgba(79, 214, 255, 0.28) 0, transparent 65%);
  mix-blend-mode: screen;
  opacity: 0.6;
  pointer-events: none;
}

.themed-image-frame--lighting::before {
  background: radial-gradient(circle at 20% 0, rgba(207, 216, 255, 0.35) 0, transparent 70%);
}

.themed-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.themed-bullet-list {
  display: grid;
  gap: var(--space-2);
  padding-left: 0;
}

.themed-bullet-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}

.themed-bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-accent-cyan) 0, var(--color-primary) 55%, transparent 100%);
  box-shadow: 0 0 12px rgba(79, 214, 255, 0.6);
}

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

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

.themed-quote {
  font-style: italic;
  color: var(--color-text-soft);
}

.themed-quote-meta {
  margin-top: var(--space-3);
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-text-muted);
}

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

.themed-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: var(--space-4);
  align-items: flex-start;
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-subtle);
  background: radial-gradient(circle at 0 0, rgba(79, 124, 255, 0.16) 0, transparent 55%),
    rgba(4, 8, 27, 0.96);
  box-shadow: var(--shadow-soft);
}

.themed-step-index {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--font-size-md);
  color: var(--color-accent-moon);
  border: 1px solid var(--color-border-strong);
  background: radial-gradient(circle at 0 0, rgba(79, 214, 255, 0.3) 0, transparent 60%),
    rgba(3, 7, 24, 0.98);
  box-shadow: var(--shadow-glow-primary);
}

.themed-step-title {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-2);
}

.themed-step-body p {
  margin-bottom: 0;
}

.themed-booking-cta .btn-primary {
  min-width: 260px;
}

@media (max-width: 960px) {
  .hero-strip-wrapper {
    margin-top: var(--space-6);
  }

  .themed-section-grid,
  .themed-section-grid--image-right,
  .themed-section-grid--image-left {
    grid-template-columns: minmax(0, 1fr);
  }

  .themed-section-grid--reverse-on-mobile > :first-child {
    order: 2;
  }

  .themed-section-grid--reverse-on-mobile > :last-child {
    order: 1;
  }

  .themed-step {
    grid-template-columns: minmax(0, 1fr);
  }

  .themed-step-index {
    width: 2.1rem;
    height: 2.1rem;
  }

  .themed-booking-cta .btn-primary {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .hero-header-over-strip {
    text-align: left;
  }

  .themed-strip-card--wide,
  .themed-strip-card--medium,
  .themed-strip-card--narrow {
    min-width: 70vw;
  }

  .themed-cta-inline {
    flex-direction: column;
  }
}
