.services__tile--lift {
  transition: transform 0.3s ease;
}

.services__tile--lift:hover {
  transform: scale(1.05);
}

.services__cta--lift {
  transition: transform 0.3s ease;
}

.services__cta--lift:hover {
  transform: scale(1.05);
}

.services__marker--offset {
  top: 0.5rem;
  inset-inline-end: 0.5rem;
}

.services__marker--reveal {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.services__tile:hover .services__marker--reveal {
  opacity: 1;
}

/* v26 - blueprint grid-line background + corner ticks (currentColor keeps it theme-safe) */
.steps-blueprint__grid {
    background-image:
        linear-gradient(currentColor 1px, transparent 1px),
        linear-gradient(90deg, currentColor 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 1;
}

[data-blueprint-panel]::before,
[data-blueprint-panel]::after {
    content: "";
    position: absolute;
    width: 0.75rem;
    height: 0.75rem;
}

[data-blueprint-panel]::before {
    top: -1px;
    left: -1px;
    border-top: 2px solid;
    border-left: 2px solid;
}

[data-blueprint-panel]::after {
    bottom: -1px;
    right: -1px;
    border-bottom: 2px solid;
    border-right: 2px solid;
}

/* advantages timeline path — connector line + icon node sizing + scroll reveal + decor orb (layout/motion only, no colors) */

.advantages-path__orb {
    width: 18rem;
    height: 18rem;
    top: -5rem;
    right: -6rem;
}

.advantages-path__node {
    width: 2.5rem;
    height: 2.5rem;
}

/* vertical connector aligned to the node centre (node is 2.5rem → centre at 1.25rem) */
.advantages-path__line {
    left: 1.25rem;
    width: 2px;
}

/* scroll reveal — only armed once JS runs, so the list stays visible without JS */
.advantages-path.is-armed .advantages-path__item {
    opacity: 0;
    transform: translateY(1rem);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.advantages-path.is-armed .advantages-path__item.is-visible {
    opacity: 1;
    transform: none;
}

