/* ==========================================================================
   MCM Components v2 — единая система mcm.ru
   Вдохновлено mango-office: чистый, просторный, с анимациями
   ========================================================================== */

/* --- Анимации при скролле --- */
.mcm-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}
.mcm-animate.visible {
    opacity: 1;
    transform: translateY(0);
}
.mcm-animate-delay-1 { transition-delay: .1s; }
.mcm-animate-delay-2 { transition-delay: .2s; }
.mcm-animate-delay-3 { transition-delay: .3s; }
.mcm-animate-delay-4 { transition-delay: .4s; }

/* --- Секции --- */
.mcm-section {
    padding: 80px 0;
}
.mcm-section--gray {
    background: #f5f7fa;
}
.mcm-section--dark {
    background: linear-gradient(135deg, #0a1929 0%, #1a365d 100%);
    color: #fff;
}

.mcm-section-title {
    font-size: 2.4rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: .75rem;
    color: #1a1a2e;
    letter-spacing: -.02em;
}
.mcm-section--dark .mcm-section-title { color: #fff; }

.mcm-section-subtitle {
    font-size: 1.15rem;
    text-align: center;
    color: #6b7b8d;
    max-width: 640px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}
.mcm-section--dark .mcm-section-subtitle { color: rgba(255,255,255,.7); }

@media (max-width: 767px) {
    .mcm-section { padding: 50px 0; }
    .mcm-section-title { font-size: 1.7rem; }
    .mcm-section-subtitle { font-size: 1rem; margin-bottom: 2rem; }
}

/* --- Hero v2 --- */
.mcm-hero {
    background: linear-gradient(135deg, #0a2463 0%, var(--primary-blue) 50%, #2a8ac8 100%);
    color: #fff;
    padding: 0 0 70px;
    position: relative;
    overflow: hidden;
}

.mcm-hero__breadcrumbs {
    padding: 14px 0 0;
    font-size: .85rem;
    color: rgba(255,255,255,.5);
}
.mcm-hero__breadcrumbs a {
    color: rgba(255,255,255,.7);
    text-decoration: none;
}
.mcm-hero__breadcrumbs a:hover {
    color: var(--primary-orange);
}

.mcm-hero__content {
    padding-top: 40px;
}

.mcm-hero__title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 1.4rem;
    color: #fff;
    letter-spacing: -.03em;
    text-shadow: 0 2px 20px rgba(0,0,0,.15);
}
.mcm-hero__title span {
    color: var(--primary-orange);
}

.mcm-hero__subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,.85);
    margin-bottom: 1.8rem;
    max-width: 560px;
    line-height: 1.7;
}

.mcm-hero__features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}
.mcm-hero__features li {
    padding: 7px 0;
    font-size: 1.05rem;
    color: rgba(255,255,255,.9);
    display: flex;
    align-items: center;
    gap: 12px;
}
.mcm-hero__features li::before {
    content: '';
    width: 22px; height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M13.485 1.431a1.473 1.473 0 0 1 2.104 2.062l-7.09 9.07a1.473 1.473 0 0 1-2.17.065L2.3 8.6a1.473 1.473 0 0 1 2.085-2.083l2.85 2.85 5.25-7.936z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
}

/* Hero animation area */
.mcm-hero__visual {
    position: relative;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mcm-hero__anim {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Floating icons animation */
.mcm-float-icon {
    position: absolute;
    width: 56px; height: 56px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0,0,0,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    animation: mcmFloat 4s ease-in-out infinite;
}
.mcm-float-icon:nth-child(2) { animation-delay: .5s; }
.mcm-float-icon:nth-child(3) { animation-delay: 1s; }
.mcm-float-icon:nth-child(4) { animation-delay: 1.5s; }
.mcm-float-icon:nth-child(5) { animation-delay: 2s; }
.mcm-float-icon:nth-child(6) { animation-delay: 2.5s; }

@keyframes mcmFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
}

/* Central hub */
.mcm-hero__hub {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 120px; height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2.5rem;
    box-shadow: 0 0 0 15px rgba(255,107,53,.15), 0 0 0 30px rgba(255,107,53,.08), 0 0 60px rgba(255,107,53,.2);
    z-index: 2;
}

/* Pulsing rings */
.mcm-hero__ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.12);
}
.mcm-hero__ring--1 {
    width: 200px; height: 200px;
    animation: mcmPulse 3s ease-in-out infinite;
}
.mcm-hero__ring--2 {
    width: 280px; height: 280px;
    animation: mcmPulse 3s ease-in-out infinite .5s;
}
.mcm-hero__ring--3 {
    width: 360px; height: 360px;
    animation: mcmPulse 3s ease-in-out infinite 1s;
}
@keyframes mcmPulse {
    0%, 100% { opacity: .3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: .6; transform: translate(-50%, -50%) scale(1.05); }
}

/* Connecting lines (dotted) */
.mcm-hero__line {
    position: absolute;
    background: linear-gradient(90deg, transparent 50%, rgba(26,108,163,.15) 50%);
    background-size: 8px 1px;
    height: 1px;
    z-index: 1;
}

@media (max-width: 991px) {
    .mcm-hero__visual { height: 280px; margin-top: 30px; }
    .mcm-hero__hub { width: 80px; height: 80px; font-size: 1.8rem; }
    .mcm-float-icon { width: 44px; height: 44px; font-size: 1.2rem; }
}
@media (max-width: 767px) {
    .mcm-hero { padding-bottom: 40px; }
    .mcm-hero__title { font-size: 2.2rem; }
    .mcm-hero__subtitle { font-size: 1rem; }
    .mcm-hero__visual { height: 220px; }
}

/* --- Кнопки v2 --- */
.mcm-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 34px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all .25s ease;
    text-align: center;
    line-height: 1.2;
}
.mcm-btn--primary {
    background: var(--primary-orange);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255,107,53,.25);
}
.mcm-btn--primary:hover {
    background: #e85a28;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,107,53,.35);
    color: #fff;
}
.mcm-btn--secondary {
    background: #fff;
    color: var(--primary-blue);
    border: 2px solid #e0e6ed;
}
.mcm-btn--secondary:hover {
    border-color: var(--primary-blue);
    background: #f8faff;
    color: var(--primary-blue);
}
.mcm-btn--dark {
    background: #1a1a2e;
    color: #fff;
}
.mcm-btn--dark:hover {
    background: #2a2a4e;
    transform: translateY(-2px);
    color: #fff;
}

/* --- Feature-карточки v2 --- */
.mcm-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.mcm-feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
    transition: all .3s ease;
    border: 1px solid #eef1f5;
    position: relative;
    overflow: hidden;
}
.mcm-feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--primary-orange), var(--secondary-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}
.mcm-feature-card:hover::before {
    transform: scaleX(1);
}
.mcm-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,.08);
}
.mcm-feature-card__icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, #fff5f0, #ffe8dc);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 1.5rem;
}
.mcm-feature-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a2e;
}
.mcm-feature-card__text {
    font-size: .92rem;
    color: #6b7b8d;
    line-height: 1.65;
    margin: 0;
}
.mcm-feature-card__text a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}
.mcm-feature-card__text a:hover {
    color: var(--primary-orange);
}
@media (max-width: 991px) { .mcm-features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .mcm-features { grid-template-columns: 1fr; } }

/* --- Pricing v2 --- */
.mcm-pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    align-items: start;
}
.mcm-price-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 28px 28px;
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
    border: 2px solid #eef1f5;
    transition: all .3s ease;
    text-align: center;
    position: relative;
}
.mcm-price-card--popular {
    border-color: var(--primary-orange);
    box-shadow: 0 8px 30px rgba(255,107,53,.12);
}
.mcm-price-card--popular::after {
    content: 'Популярный';
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: #fff;
    padding: 5px 22px;
    border-radius: 20px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .02em;
}
.mcm-price-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,.08);
}
.mcm-price-card__name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a2e;
}
.mcm-price-card__price {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 2px;
    letter-spacing: -.03em;
}
.mcm-price-card__period {
    font-size: .9rem;
    color: #8899aa;
    margin-bottom: 24px;
}
.mcm-price-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    text-align: left;
}
.mcm-price-card__features li {
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: .92rem;
    color: #4a5a6a;
    display: flex;
    align-items: center;
    gap: 10px;
}
.mcm-price-card__features li::before {
    content: '';
    width: 18px; height: 18px;
    border-radius: 50%;
    background: #e6f7e9;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%2328a745' viewBox='0 0 16 16'%3E%3Cpath d='M13.485 1.431a1.473 1.473 0 0 1 2.104 2.062l-7.09 9.07a1.473 1.473 0 0 1-2.17.065L2.3 8.6a1.473 1.473 0 0 1 2.085-2.083l2.85 2.85 5.25-7.936z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
}

/* --- FAQ v2 --- */
.mcm-faq-item {
    background: #fff;
    border-radius: 14px;
    margin-bottom: 10px;
    border: 1px solid #eef1f5;
    overflow: hidden;
    transition: box-shadow .3s;
}
.mcm-faq-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,.04);
}
.mcm-faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    font-size: 1.02rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #1a1a2e;
    transition: color .2s;
    line-height: 1.4;
}
.mcm-faq-question:hover { color: var(--primary-orange); }
.mcm-faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-orange);
    transition: transform .3s;
    flex-shrink: 0;
    margin-left: 16px;
    width: 30px; height: 30px;
    border-radius: 50%;
    background: #fff5f0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mcm-faq-item.active .mcm-faq-question::after {
    content: '\2212';
    background: var(--primary-orange);
    color: #fff;
}
.mcm-faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s ease;
}
.mcm-faq-item.active .mcm-faq-answer {
    padding: 0 24px 20px;
    max-height: 600px;
}
.mcm-faq-answer p {
    margin: 0;
    color: #5a6a7a;
    line-height: 1.75;
    font-size: .95rem;
}
.mcm-faq-answer a {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
}
.mcm-faq-answer a:hover { color: var(--primary-orange); }

/* --- CTA v2 --- */
.mcm-cta {
    background: linear-gradient(135deg, #0a1929 0%, var(--primary-blue) 60%, #3a8fd4 100%);
    border-radius: 24px;
    padding: 60px 48px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.mcm-cta::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,53,.15) 0%, transparent 70%);
    top: -200px; right: -100px;
    pointer-events: none;
}
.mcm-cta::after {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.05) 0%, transparent 70%);
    bottom: -150px; left: -100px;
    pointer-events: none;
}
.mcm-cta__title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    letter-spacing: -.02em;
}
.mcm-cta__text {
    font-size: 1.1rem;
    opacity: .85;
    margin-bottom: 2rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    line-height: 1.7;
}
@media (max-width: 767px) {
    .mcm-cta { padding: 40px 24px; border-radius: 20px; }
    .mcm-cta__title { font-size: 1.6rem; }
}

/* --- Benefits v2 --- */
.mcm-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.mcm-benefit {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 20px;
    border-radius: 14px;
    transition: background .2s;
}
.mcm-benefit:hover {
    background: #f8faff;
}
.mcm-benefit__icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, #fff5f0, #ffe8dc);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.4rem;
}
.mcm-benefit__title {
    font-weight: 700;
    margin-bottom: 4px;
    color: #1a1a2e;
    font-size: 1.02rem;
}
.mcm-benefit__text {
    font-size: .9rem;
    color: #6b7b8d;
    margin: 0;
    line-height: 1.6;
}
@media (max-width: 767px) { .mcm-benefits { grid-template-columns: 1fr; } }

/* --- Steps v2 --- */
.mcm-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
    counter-reset: step;
    position: relative;
}
.mcm-step {
    text-align: center;
    padding: 28px 20px;
    counter-increment: step;
    position: relative;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
    border: 1px solid #eef1f5;
}
.mcm-step::before {
    content: counter(step);
    display: inline-flex;
    width: 52px; height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: #fff;
    font-size: 1.3rem;
    font-weight: 800;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 4px 12px rgba(255,107,53,.2);
}
.mcm-step__title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a2e;
}
.mcm-step__text {
    font-size: .9rem;
    color: #6b7b8d;
    line-height: 1.6;
    margin: 0;
}

/* --- Trust bar --- */
.mcm-trust {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 24px 0;
}
.mcm-trust__item {
    text-align: center;
}
.mcm-trust__number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-orange);
    display: block;
}
.mcm-trust__label {
    font-size: .85rem;
    color: #6b7b8d;
    margin-top: 4px;
}

/* --- Breadcrumbs (old, hidden) --- */
.mcm-breadcrumbs { display: none; }

/* --- Scroll animation observer (add via JS) --- */

/* --- Related products links --- */
.mcm-feature-card__text a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color .2s;
}
.mcm-feature-card__text a:hover {
    color: #e85a28;
}

/* --- Modal overrides --- */
.modal-content {
    border: none;
    box-shadow: 0 20px 60px rgba(0,0,0,.2);
}
.modal-backdrop.show {
    opacity: .6;
}

/* === Page-specific hero animations === */

/* Floating phone screens (for mobile app, softphone) */
.mcm-float-icon--phone {
    border-radius: 12px;
    background: linear-gradient(135deg, #fff, #f0f4ff);
    box-shadow: 0 8px 25px rgba(0,0,0,.12);
    padding: 8px;
}
.mcm-float-icon--phone::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 3px;
    border-radius: 2px;
    background: var(--primary-blue);
    opacity: .3;
}

/* Signal waves (for calltracking, 8-800, numbers) */
.mcm-hero__wave {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255,107,53,.2);
    animation: mcmWave 3s ease-out infinite;
}
.mcm-hero__wave--1 { width: 60px; height: 60px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.mcm-hero__wave--2 { width: 120px; height: 120px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: .5s; }
.mcm-hero__wave--3 { width: 180px; height: 180px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: 1s; }

@keyframes mcmWave {
    0% { opacity: .8; transform: translate(-50%,-50%) scale(1); }
    100% { opacity: 0; transform: translate(-50%,-50%) scale(2.5); }
}

/* Data flow lines (for CRM integrations) */
.mcm-hero__dataflow {
    position: absolute;
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--primary-orange), transparent);
    animation: mcmDataflow 2s linear infinite;
}
@keyframes mcmDataflow {
    0% { top: -20%; opacity: 0; }
    30% { opacity: 1; }
    70% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* Rotating gear (for settings, Asterisk) */
.mcm-float-icon--gear {
    animation: mcmGear 8s linear infinite !important;
}
@keyframes mcmGear {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Bounce effect for CTA-focused pages */
.mcm-float-icon--bounce {
    animation: mcmBounce 2s ease-in-out infinite !important;
}
@keyframes mcmBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-25px); }
}

/* Typing dots (for chat/omnichannel) */
.mcm-hero__typing {
    position: absolute;
    display: flex;
    gap: 4px;
    padding: 12px 16px;
    background: #fff;
    border-radius: 16px 16px 16px 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,.08);
}
.mcm-hero__typing span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-orange);
    animation: mcmTyping 1.4s ease-in-out infinite;
}
.mcm-hero__typing span:nth-child(2) { animation-delay: .2s; }
.mcm-hero__typing span:nth-child(3) { animation-delay: .4s; }
@keyframes mcmTyping {
    0%, 60%, 100% { transform: translateY(0); opacity: .4; }
    30% { transform: translateY(-8px); opacity: 1; }
}

/* Counter animation (for stats/analytics pages) */
.mcm-hero__counter {
    position: absolute;
    font-family: monospace;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-orange);
    text-shadow: 0 0 20px rgba(255,107,53,.3);
    animation: mcmCounter 3s steps(20) infinite;
}
@keyframes mcmCounter {
    0% { opacity: .3; }
    50% { opacity: 1; }
    100% { opacity: .3; }
}

/* Shield icon glow (for security/banking pages) */
.mcm-float-icon--secure {
    box-shadow: 0 0 0 4px rgba(40,167,69,.15), 0 8px 25px rgba(0,0,0,.08) !important;
}
.mcm-float-icon--secure::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 20px;
    border: 2px solid rgba(40,167,69,.2);
    animation: mcmShieldPulse 2s ease-in-out infinite;
}
@keyframes mcmShieldPulse {
    0%, 100% { opacity: .3; transform: scale(1); }
    50% { opacity: .8; transform: scale(1.05); }
}

/* === Orbit animation (carousel page) === */
.mcm-hero__orbit-container {
    position: absolute;
    width: 100%; height: 100%;
    top: 0; left: 0;
}
.mcm-hero__orbit-item {
    position: absolute;
    width: 56px; height: 56px;
    background: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(0,0,0,.15);
    top: 50%; left: 50%;
    animation: mcmOrbit linear infinite;
}
.mcm-hero__orbit-item:nth-child(1) { animation-duration: 12s; }
.mcm-hero__orbit-item:nth-child(2) { animation-duration: 16s; animation-delay: -3s; }
.mcm-hero__orbit-item:nth-child(3) { animation-duration: 20s; animation-delay: -7s; }
.mcm-hero__orbit-item:nth-child(4) { animation-duration: 24s; animation-delay: -11s; }
.mcm-hero__orbit-item:nth-child(5) { animation-duration: 28s; animation-delay: -16s; }

@keyframes mcmOrbit {
    0%   { transform: rotate(0deg)   translateX(130px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(130px) rotate(-360deg); }
}

@media (max-width: 991px) {
    .mcm-hero__orbit-item { width: 44px; height: 44px; font-size: 1.2rem; }
    @keyframes mcmOrbit {
        0%   { transform: rotate(0deg)   translateX(90px) rotate(0deg); }
        100% { transform: rotate(360deg) translateX(90px) rotate(-360deg); }
    }
}
