/* Декор: клики проходят к контенту */
.hero-v13-decor-layer {
    pointer-events: none;
}

/* Точка в верхнем бейдже */
.hero-v13-badge-dot {
    box-sizing: border-box;
    width: 0.5rem;
    height: 0.5rem;
    flex-shrink: 0;
    border-radius: 9999px;
}

/* Иконка в карточке key-features (w-8 h-8 rounded-lg) */
.hero-v13-feature-icon {
    box-sizing: border-box;
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    overflow: hidden;
}

.hero-v13-feature-icon i {
    line-height: 1;
}

/* Плавающие точки — только размеры и позиции */
.hero-v13-dot--1 {
    position: absolute;
    top: 5rem;
    left: 4rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
}

.hero-v13-dot--2 {
    position: absolute;
    top: 8rem;
    right: 5rem;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 9999px;
}

.hero-v13-dot--3 {
    position: absolute;
    bottom: 6rem;
    left: 5rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
}

.hero-v13-dot--4 {
    position: absolute;
    bottom: 8rem;
    right: 4rem;
    width: 1rem;
    height: 1rem;
    border-radius: 9999px;
}

.hero-v13-dot--5 {
    position: absolute;
    top: 50%;
    left: 25%;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
}

.hero-v13-dot--6 {
    position: absolute;
    top: 33%;
    right: 33%;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 9999px;
}

/* Контент: как max-w-5xl / max-w-3xl в Bootstrap */
.hero-v13-area-max {
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-v13-desc-max {
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

/* Индикатор скролла внизу — без transform (конфликт с анимациями) */
.hero-v13-scroll-wrap {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    z-index: 10;
    margin-left: -0.75rem;
}

.hero-v13-scroll-track {
    width: 1.5rem;
    height: 2.5rem;
}

.hero-v13-scroll-thumb {
    width: 0.25rem;
    height: 0.75rem;
}

.hero-v13-btn-ghost {
    background-color: transparent;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.hero-v13-btn-ghost:hover,
.hero-v13-btn-ghost:focus {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff !important;
    border-color: #fff !important;
}

/* -- Button hover states -- */
.hero-btn-primary {
    transition: filter 0.2s ease, transform 0.15s ease;
}
.hero-btn-primary:hover,
.hero-btn-primary:focus {
    filter: brightness(1.12);
    transform: translateY(-1px);
}

.hero-btn-outline-secondary {
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.hero-btn-outline-secondary:hover,
.hero-btn-outline-secondary:focus {
    background-color: var(--bs-secondary) !important;
    color: #fff !important;
    border-color: var(--bs-secondary) !important;
    transform: translateY(-1px);
}

.hero-btn-outline-primary-light {
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.hero-btn-outline-primary-light:hover,
.hero-btn-outline-primary-light:focus {
    background-color: var(--bs-primary) !important;
    color: #fff !important;
    border-color: var(--bs-primary) !important;
    transform: translateY(-1px);
}
.services__tile--lift {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.services__tile--lift:hover {
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

@media (min-width: 640px) {
  .services__tile--lift:hover {
    transform: scale(1.05);
  }
}

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

@media (min-width: 640px) {
  .services__cta--lift:hover {
    transform: scale(1.05);
  }
}

.services__cta--lift:hover {
  filter: brightness(0.92);
}

/* process editorial — full-bleed banner, serif display, step list */
.process-editorial__banner {
    aspect-ratio: 21 / 5;
    max-height: 16rem;
}

.process-editorial__banner-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-editorial__headline {
    font-family: Georgia, "Times New Roman", Times, serif;
}

.process-editorial__intro {
    max-width: 42rem;
}

.process-editorial__pill {
    letter-spacing: 0.02em;
}

.process-editorial__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.process-editorial__step-num {
    display: inline-block;
    min-width: 1.75rem;
    flex-shrink: 0;
    font-variant-numeric: tabular-nums;
}

.process-editorial__step:last-child {
    border-bottom: 0;
}

@media (min-width: 768px) {
    .process-editorial__banner {
        aspect-ratio: 21 / 4;
        max-height: 18rem;
    }
}

@media (min-width: 992px) {
    .process-editorial__nav {
        border-top: 0;
        padding-top: 0.5rem;
    }
}

@media (max-width: 991px) {
    .process-editorial__banner {
        aspect-ratio: 16 / 6;
        max-height: 14rem;
    }
}

/* FAQ v13 — JS hooks */
.handbook-support-resolve-veiled {
    display: none;
}

.handbook-support-mark.handbook-support-mark-expand {
    transform: rotate(180deg);
}

