.intro-centered-simple__content-area {
    max-width: 48rem;
}

.intro-centered-simple__text-block {
    max-width: 42rem;
}

/* sticky intro + hover CTA / links */
.services__intro {
  align-self: flex-start;
}

@media (min-width: 992px) {
  .services__intro {
    position: sticky;
    top: 6rem;
    z-index: 2;
  }
}

.services__hero-cta--lift {
  transition: filter 0.2s ease, transform 0.2s ease;
}

.services__hero-cta--lift:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.services__link--lift {
  transition: filter 0.2s ease;
}

.services__link--lift:hover {
  filter: brightness(1.12);
}

.perks-stat-bars__thumb {
    width: 4rem;
    height: 4rem;
    transition: transform 0.3s ease;
}

@media (min-width: 640px) {
    .perks-stat-bars__wrap:hover .perks-stat-bars__card {
        transform: scale(1.05);
    }

    .perks-stat-bars__wrap:hover .perks-stat-bars__thumb {
        transform: scale(1.05);
    }
}

/* process editor — brand mark sizing */
.process-editor__brand {
    letter-spacing: 0.04em;
}

/* process editor — hero bar between mega words */
.process-editor__hero-bar {
    flex: 1 1 6rem;
    height: 0.65rem;
    min-width: 3rem;
    max-width: 100%;
    align-self: flex-end;
    margin-bottom: 0.35em;
}

/* process editor — oversized condensed display type */
.process-editor__mega {
    letter-spacing: -0.06em;
    line-height: 0.82;
}

.process-editor__mega--lead {
    font-size: clamp(3.5rem, 16vw, 11rem);
}


.process-editor__mega--stack {
    font-size: clamp(3rem, 13vw, 9rem);
    margin-top: -0.08em;
}

/* process editor — italic accent word in kicker */
.process-editor__kicker {
    font-size: clamp(1.75rem, 4.5vw, 3.75rem);
}

.process-editor__kicker-accent {
    display: inline-block;
    font-size: clamp(2.25rem, 6vw, 5rem);
    line-height: 0.95;
    vertical-align: baseline;
    margin-inline: 0.15em;
}

/* process editor — vertical step nav */
.process-editor__nav-btn {
    appearance: none;
    -webkit-appearance: none;
    font: inherit;
    cursor: pointer;
    outline-offset: -2px;
    transition: opacity 200ms ease, transform 200ms ease;
}

.process-editor__nav-btn.is-active {
    transform: translateX(0.25rem);
}

.process-editor__nav-btn.is-active .process-editor__nav-label {
    color: var(--tw-primary-900, var(--bs-primary));
    font-weight: 700;
}

.process-editor__nav-btn:not(.is-active) .process-editor__nav-label {
    opacity: 0.72;
}

.process-editor__panel {
    animation: process-editor-panel-in 280ms ease;
}

@keyframes process-editor-panel-in {
    from {
        opacity: 0;
        transform: translateY(0.5rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1023px) {
    .process-editor__hero-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .process-editor__hero-bar {
        width: 70%;
        flex: none;
        margin-bottom: 0;
    }

    .process-editor__kicker {
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    .process-editor__nav-btn,
    .process-editor__panel {
        animation: none;
        transition: none;
    }

    .process-editor__nav-btn.is-active {
        transform: none;
    }
}

/* faq v24 — luxe slide stage (click nav) */
.luxe-slides__stage {
  min-height: 100vh;
  min-height: 100dvh;
}

.luxe-slides__bg-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.luxe-slides__slide.is-active {
  animation: luxe-slide-fade-in 400ms ease;
}

.luxe-slides__slide.hidden {
  display: none !important;
}

@keyframes luxe-slide-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.luxe-slides__rule {
  width: 1px;
}

.luxe-slides__rule--tall {
  height: 3rem;
}

@media (min-width: 768px) {
  .luxe-slides__rule--tall {
    height: 4rem;
  }
}

.luxe-slides__eyebrow {
  letter-spacing: 0.35em;
}

.luxe-slides__headline {
  max-width: 56rem;
}

.luxe-slides__lead {
  max-width: 42rem;
}

.luxe-slides__section-title {
  width: 100%;
}

/* Sidebar: round only the inner (right) edge */
.luxe-slides__nav-panel {
  height: 100%;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

.luxe-slides__step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0;
  border: 0;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  cursor: pointer;
  outline-offset: 2px;
}

.luxe-slides__step-num {
  opacity: 0.7;
  font-size: 1.125rem;
  font-weight: 400;
  transition: opacity 250ms ease, font-size 250ms ease, font-weight 250ms ease;
}

.luxe-slides__step.is-active .luxe-slides__step-num {
  opacity: 1;
  font-size: 1.5rem;
  font-weight: 700;
}

.luxe-slides__step-mark {
  width: 2px;
  height: 2.5rem;
  opacity: 0;
  flex-shrink: 0;
  transition: opacity 250ms ease;
}

@media (min-width: 768px) {
  .luxe-slides__step-mark {
    height: 3rem;
  }
}

.luxe-slides__step.is-active .luxe-slides__step-mark {
  opacity: 1;
}

