/* Декор: клики проходят к контенту */
.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: transform 0.3s ease;
}

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

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

.features-deck {
    position: relative;
    height: 340px;
}

.features-deck__card {
    position: absolute;
    inset: 0;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}

.features-deck .feat-card-hover:hover {
    transform: none;
    box-shadow: none !important;
}

.features-deck__card[data-offset="0"] {
    transform: translateY(0) scale(1);
    opacity: 1;
    z-index: 5;
}

.features-deck__card[data-offset="1"] {
    transform: translateY(14px) scale(0.97);
    opacity: 0.6;
    z-index: 4;
}

.features-deck__card[data-offset="2"] {
    transform: translateY(25px) scale(0.94);
    opacity: 0.38;
    z-index: 3;
}

.features-deck__card[data-offset="3"] {
    transform: translateY(33px) scale(0.91);
    opacity: 0.18;
    z-index: 2;
}

.features-deck__card[data-offset="hidden"] {
    transform: translateY(-10px) scale(1.01);
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}

@keyframes features-deck-pulse-kf {
    0%, 100% { opacity: 1; }
    50% { opacity: .5; }
}

@keyframes features-deck-spin-kf {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes features-deck-bounce-kf {
    0%, 100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(0.8,0,1,1); }
    50% { transform: none; animation-timing-function: cubic-bezier(0,0,0.2,1); }
}

.features-deck__decor--pulse {
    filter: blur(48px);
    animation: features-deck-pulse-kf 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.features-deck__decor--spin {
    animation: features-deck-spin-kf 1s linear infinite;
}

.features-deck__decor--bounce {
    transform: rotate(12deg);
    animation: features-deck-bounce-kf 1s infinite;
}

.features-deck__decor--line {
    transform: rotate(-12deg);
}

.features-deck__decor--rotate-12 {
    transform: rotate(12deg);
}

.features-deck__decor--rotate-minus-6 {
    transform: rotate(-6deg);
}

.features-deck__btn--hover:hover {
    transform: scale(1.05);
}

/* -- Feature card hover -- */
.feat-card-hover {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feat-card-hover:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,.12) !important;
}

/* -- Icon box sizing -- */
.feat-icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 2.5rem;
    min-height: 2.5rem;
}
.feat-icon-box--lg {
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
}
.feat-icon-box--xl {
    width: 5rem;
    height: 5rem;
    border-radius: 1rem;
}
.feat-icon-box--circle {
    border-radius: 50%;
}

/* -- Nav/filmstrip button hover -- */
.feat-btn-nav {
    transition: transform 0.15s ease, background-color 0.15s ease;
}
.feat-btn-nav:hover {
    transform: scale(1.1);
}

/* -- Table row hover -- */
.feat-table-row-hover {
    transition: background-color 0.15s ease;
}
.feat-table-row-hover:hover {
    background-color: var(--bs-primary-bg-subtle) !important;
}

/* -- Accordion item hover -- */
.feat-accordion-hover summary:hover {
    background-color: var(--bs-primary-bg-subtle);
    border-radius: 0.75rem;
}

/* -- DL item hover -- */
.feat-dl-item-hover {
    transition: background-color 0.15s ease;
    border-radius: 0.5rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}
.feat-dl-item-hover:hover {
    background-color: var(--bs-primary-bg-subtle);
}

/* -- Deck button hover -- */
.feat-deck-btn {
    transition: filter 0.2s ease, transform 0.15s ease;
}
.feat-deck-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}
/* BS-mode decorative shapes � subtle, non-intrusive */
.features-deck__decor--bs-blob {
    width: 16rem;
    height: 16rem;
    background-color: var(--bs-primary-bg-subtle);
    opacity: 0.35;
    filter: blur(48px);
}
.features-deck__decor--bs-shape {
    opacity: 0.15;
}
.features-deck__decor--bs-line {
    border-left: 1px solid var(--bs-primary-border-subtle);
    opacity: 0.2;
}
/* advantages collage — CSS multi-column masonry (no BS analog); cards must not split across columns */

/* decor sizes/positions live here so they render in Bootstrap too (BS has no w-N/h-N/inset utilities) */
.advantages-collage__orb {
    width: 20rem;
    height: 20rem;
    top: -6rem;
    left: -4rem;
}

.advantages-collage__ring {
    width: 16rem;
    height: 16rem;
    bottom: -4rem;
    right: -4rem;
}

.advantages-collage {
    column-count: 1;
    column-gap: 1.5rem;
}

.advantages-collage__cell {
    break-inside: avoid;
}

@media (min-width: 640px) {
    .advantages-collage {
        column-count: 2;
    }
}

@media (min-width: 1024px) {
    .advantages-collage {
        column-count: 3;
    }
}

.content-disclaimer-logo__mark {
    width: 5rem;
    height: 5rem;
}

.content-disclaimer-logo__mark--small {
    width: 3rem;
    height: 3rem;
}

.content-disclaimer-logo__mark--large {
    width: 6rem;
    height: 6rem;
}

.content-disclaimer-logo__mark svg {
    display: block;
    width: 100%;
    height: 100%;
}

