@keyframes rotateSquare {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.intro-pattern-overlay {
    background-image: repeating-linear-gradient(45deg, transparent, transparent 20px, currentColor 20px, currentColor 40px);
    opacity: 0.03;
    top: -20%;
    left: -30%;
    width: 100%;
    height: 100%;
    animation: rotateSquare 20s linear infinite;
}

.intro-pattern-content {
    max-width: 56rem;
}

.content-column__body {
    column-gap: 2.5rem;
}

.content-column__body p {
    break-inside: avoid;
}

@media (min-width: 768px) {
    .content-column__body {
        column-count: 2;
    }
}

@media (min-width: 1200px) {
    .content-column__body {
        column-count: 3;
    }
}

/* Block: advantages-accordion-numbered — panel collapse (JS sets max-height) */
.advantages-accordion-numbered__panel-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.steps-arrow-stack__badge-circle {
    width: 3rem;
    height: 3rem;
}

.steps-arrow-stack__icon-box {
    width: 2rem;
    height: 2rem;
}

.steps-arrow-stack__sm-circle {
    width: 1.5rem;
    height: 1.5rem;
}

/* content frame tiles — animated icon stage (replaces photo area) */
.content-frame-tiles__icon-stage {
    min-height: 14rem;
}

.content-frame-tiles__icon-tile {
    width: 5.5rem;
    height: 5.5rem;
    animation: content-frame-tiles-float 6s ease-in-out infinite;
}

.content-frame-tiles__icon-ring {
    width: 7rem;
    height: 7rem;
    animation: content-frame-tiles-ring 4.5s ease-in-out infinite;
}

.content-frame-tiles__icon-pulse {
    animation: content-frame-tiles-pulse 3.5s ease-in-out infinite;
}

.content-frame-tiles__icon-glyph {
    animation: content-frame-tiles-tilt 5s ease-in-out infinite;
    transform-origin: center;
}

.content-frame-tiles__icon-stage--0 .content-frame-tiles__icon-tile {
    animation-delay: 0s;
}

.content-frame-tiles__icon-stage--0 .content-frame-tiles__icon-ring {
    animation-delay: 0.3s;
}

.content-frame-tiles__icon-stage--0 .content-frame-tiles__icon-pulse {
    animation-delay: 0s;
}

.content-frame-tiles__icon-stage--0 .content-frame-tiles__icon-glyph {
    animation-delay: 0.2s;
}

.content-frame-tiles__icon-stage--1 .content-frame-tiles__icon-tile {
    animation-delay: 0.9s;
}

.content-frame-tiles__icon-stage--1 .content-frame-tiles__icon-ring {
    animation-delay: 1.2s;
}

.content-frame-tiles__icon-stage--1 .content-frame-tiles__icon-pulse {
    animation-delay: 0.8s;
}

.content-frame-tiles__icon-stage--1 .content-frame-tiles__icon-glyph {
    animation-delay: 1s;
}

.content-frame-tiles__icon-stage--2 .content-frame-tiles__icon-tile {
    animation-delay: 1.8s;
}

.content-frame-tiles__icon-stage--2 .content-frame-tiles__icon-ring {
    animation-delay: 2.1s;
}

.content-frame-tiles__icon-stage--2 .content-frame-tiles__icon-pulse {
    animation-delay: 1.6s;
}

.content-frame-tiles__icon-stage--2 .content-frame-tiles__icon-glyph {
    animation-delay: 1.8s;
}

@keyframes content-frame-tiles-float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-0.4rem);
    }
}

@keyframes content-frame-tiles-ring {
    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.08) rotate(12deg);
        opacity: 0.35;
    }
}

@keyframes content-frame-tiles-pulse {
    0%,
    100% {
        opacity: 0.45;
    }

    50% {
        opacity: 0.15;
    }
}

@keyframes content-frame-tiles-tilt {
    0%,
    100% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(8deg) scale(1.08);
    }
}

@media (prefers-reduced-motion: reduce) {
    .content-frame-tiles__icon-tile,
    .content-frame-tiles__icon-ring,
    .content-frame-tiles__icon-pulse,
    .content-frame-tiles__icon-glyph {
        animation: none;
    }
}


@keyframes matrix-gridview-iconframe-throb-track {
    0%, 100% { opacity: 1; }
    50%       { opacity: .5; }
}
.matrix-gridview__iconframe--throb {
    animation: matrix-gridview-iconframe-throb-track 2s cubic-bezier(.4,0,.6,1) infinite;
}

