/* ── Scoped Consultancy Modal Styles ── */
.bcm-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.bcm-overlay.bcm-active {
    opacity: 1;
    pointer-events: auto;
}
.bcm-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(42, 59, 77, 0.45);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}
.bcm-card {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 36rem;
    border-radius: 1.75rem;
    background: #FFFFFF;
    background-image: 
        radial-gradient(ellipse 80% 50% at 85% 0%, rgba(241, 197, 228, 0.40) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 15% 100%, rgba(95, 165, 219, 0.22) 0%, transparent 60%),
        radial-gradient(ellipse 70% 60% at 50% 50%, rgba(255, 255, 255, 0.96) 0%, #FAFBFD 100%);
    color: #2A3B4D;
    border: 1px solid rgba(241, 197, 228, 0.75);
    box-shadow: 0 30px 90px -15px rgba(42, 59, 77, 0.16), 0 0 50px rgba(241, 197, 228, 0.35);
    padding: 1.75rem;
    transform: scale(0.94) translateY(12px);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
}
.bcm-overlay.bcm-active .bcm-card {
    transform: scale(1) translateY(0);
}
.bcm-main-card {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 58rem !important;
    max-height: 90vh !important;
    max-height: 90dvh !important;
    height: 90vh !important;
    height: 90dvh !important;
    overflow: hidden !important;
    background: #F8FAFC !important;
    color: #2A3B4D !important;
    border-radius: 1.75rem !important;
    padding: 0 !important;
    border: 1px solid rgba(42, 59, 77, 0.12) !important;
    box-shadow: 0 35px 90px -15px rgba(42, 59, 77, 0.28) !important;
    position: relative !important;
}
.bcm-main-card .bcm-main-header {
    width: 100% !important;
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
    position: relative !important;
    z-index: 20 !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(14px) !important;
    border-bottom: 1px solid rgba(42, 59, 77, 0.10) !important;
    border-top-left-radius: 1.75rem !important;
    border-top-right-radius: 1.75rem !important;
}
.bcm-main-card .bcm-tab-contents {
    width: 100% !important;
    flex: 1 1 auto !important;
    min-height: 0 !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-behavior: smooth !important;
    overscroll-behavior: contain !important;
    box-sizing: border-box !important;
    padding: 1.5rem 1.75rem 2.25rem !important;
    position: relative !important;
}
.bcm-main-card .bcm-sticky-footer {
    width: 100% !important;
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
    position: relative !important;
    z-index: 20 !important;
    background: #1C2B38 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-bottom-left-radius: 1.75rem !important;
    border-bottom-right-radius: 1.75rem !important;
}
.bcm-stage-card {
    background: #ffffff;
    border: 1px solid rgba(42, 59, 77, 0.10);
    border-radius: 1.25rem;
    padding: 1.6rem 1.6rem;
    box-shadow: 0 6px 24px rgba(42, 59, 77, 0.04);
    scroll-margin-top: 1rem;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.bcm-stage-card:hover {
    box-shadow: 0 10px 30px rgba(42, 59, 77, 0.08);
}
.bcm-journey-card { overflow: hidden; }
.bcm-journey-visual {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(140px, 30%);
    align-items: center;
    gap: 1rem;
    min-height: 9.5rem;
    padding: 0.9rem 1rem 0.9rem 1.2rem;
    border-radius: 1rem;
    background: #F8FAFC;
}
.bcm-journey-copy { font-size: 1rem; font-weight: 700; line-height: 1.4; color: #2A3B4D; margin: 0; }
.bcm-journey-copy iconify-icon { margin-right: 0.4rem; vertical-align: -0.15em; }
.bcm-journey-art { width: 100%; max-height: 9rem; object-fit: contain; }
.bcm-journey-art { animation: bcm-journey-float 3.2s ease-in-out infinite; }
.bcm-journey-lottie { display: block; width: 100%; max-width: 14rem; height: 9.5rem; margin: 0 auto; }
@keyframes bcm-journey-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
.bcm-journey-card .bcm-legacy-details { display: none !important; }
.bcm-whatwedo { list-style: disc; margin: 0.75rem 0 0; padding-left: 1.15rem; display: flex; flex-direction: column; gap: 0.55rem; }
.bcm-whatwedo li { display: list-item; font-size: 0.85rem; font-weight: 700; color: #2A3B4D; line-height: 1.45; }
.bcm-whatwedo li::marker { color: inherit; }
.bcm-whatwedo li iconify-icon { display: none; }
@media (max-width: 640px) {
    .bcm-overlay {
        padding: 0.4rem 0.35rem !important;
        box-sizing: border-box !important;
    }
    .bcm-main-card {
        width: calc(100vw - 0.7rem) !important;
        max-width: calc(100vw - 0.7rem) !important;
        max-height: calc(100dvh - 0.8rem) !important;
        height: calc(100dvh - 0.8rem) !important;
        border-radius: 1rem !important;
        margin: auto !important;
    }
    .bcm-main-card .bcm-main-header {
        border-top-left-radius: 1rem !important;
        border-top-right-radius: 1rem !important;
        padding: 0.6rem 0.75rem !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
    }
    /* Hide the M-A-P buttons on small screens */
    .bcm-main-header .bcm-tabs-bar {
        display: none !important;
    }
    .bcm-main-header h2 {
        font-size: clamp(1.02rem, 4.2vw, 1.15rem) !important;
        line-height: 1.25 !important;
    }
    .bcm-main-card .bcm-tab-contents {
        padding: 0.6rem 0.5rem 0.9rem !important;
    }
    .bcm-main-card .bcm-sticky-footer {
        border-bottom-left-radius: 1rem !important;
        border-bottom-right-radius: 1rem !important;
        padding: 0.55rem 0.75rem !important;
        text-align: center !important;
    }
    .bcm-sticky-footer-inner {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        gap: 0.45rem !important;
        width: 100% !important;
    }
    .bcm-sticky-footer-title {
        width: 100% !important;
        justify-content: center !important;
        text-align: center !important;
    }
    .bcm-main-card .bcm-sticky-footer h4 {
        font-size: 0.84rem !important;
        line-height: 1.2 !important;
        text-align: center !important;
        width: 100% !important;
    }
    .bcm-sticky-footer-action {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        text-align: center !important;
    }
    #bcm-online-booking-btn {
        margin: 0 auto !important;
        justify-content: center !important;
    }
    .bcm-journey-visual {
        grid-template-columns: 1fr !important;
        text-align: left !important;
        padding: 0.55rem 0.6rem !important;
        gap: 0.5rem !important;
        border-radius: 0.75rem !important;
        min-height: 0 !important;
    }
    html[dir="rtl"] .bcm-journey-visual {
        text-align: right !important;
    }
    .bcm-journey-art, .bcm-journey-lottie, .bcm-journey-art-wrap {
        width: 100% !important;
        max-width: 13.5rem !important;
        height: 10.5rem !important;
        min-height: 9.5rem !important;
        margin: 0 auto !important;
        grid-row: 1 !important;
    }
    .bcm-journey-visual > div:first-child {
        grid-row: 2 !important;
    }
    .bcm-stage-card {
        padding: 0.75rem 0.65rem !important;
        border-radius: 0.85rem !important;
        scroll-margin-top: 0.5rem !important;
    }
    .bcm-stage-card > div:first-child {
        margin-bottom: 0.5rem !important;
        gap: 0.55rem !important;
    }
    .bcm-stage-card h3 {
        font-size: 1.15rem !important;
    }
    .bcm-character-badge {
        width: 2.25rem !important;
        height: 2.25rem !important;
        font-size: 1.1rem !important;
    }
    .bcm-journey-copy {
        font-size: 0.92rem !important;
    }
    .bcm-whatwedo {
        margin-top: 0.4rem !important;
        padding-left: 1rem !important;
        gap: 0.35rem !important;
    }
    html[dir="rtl"] .bcm-whatwedo {
        padding-left: 0 !important;
        padding-right: 1rem !important;
    }
    .bcm-whatwedo li {
        font-size: 0.82rem !important;
        line-height: 1.35 !important;
    }
    .bcm-stage-flow-indicator {
        padding: 0.35rem 0 !important;
    }
    .bcm-flow-badge {
        padding: 0.25rem 0.65rem !important;
        font-size: 0.72rem !important;
    }
    .bcm-card {
        padding: 0.85rem 0.75rem !important;
        border-radius: 1rem !important;
        width: calc(100vw - 0.7rem) !important;
        max-width: calc(100vw - 0.7rem) !important;
        margin: auto !important;
    }
    .bcm-card h3 {
        font-size: clamp(1.15rem, 4.5vw, 1.35rem) !important;
    }
    .bcm-step-item {
        padding: 0.45rem 0.6rem !important;
        gap: 0.6rem !important;
    }
    .bcm-graphic-badge {
        width: 2.5rem !important;
        height: 2.5rem !important;
    }
    .bcm-graphic-svg {
        width: 1.85rem !important;
        height: 1.85rem !important;
    }
}
@media (prefers-reduced-motion: reduce) {
    .bcm-radar-sweep-group, .bcm-radar-node, .bcm-ai-core, .bcm-ai-brain-node, .bcm-synapse-pulse, .bcm-gear-primary, .bcm-gear-secondary, .bcm-journey-art { animation: none !important; }
}
.bcm-stage-card-map {
    border-top: 4px solid #1E88E5;
}
.bcm-stage-card-advise {
    border-top: 4px solid #F472B6;
}
.bcm-stage-card-execute {
    border-top: 4px solid #F59E0B;
}
.bcm-character-badge {
    width: 3.25rem;
    height: 3.25rem;
    min-width: 3.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    font-weight: 900;
    font-family: 'Fraunces', Georgia, serif;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}
.bcm-char-map {
    background: linear-gradient(135deg, #1E88E5 0%, #3B82F6 100%);
    color: #ffffff;
}
.bcm-char-advise {
    background: linear-gradient(135deg, #ADA9E3 0%, #F472B6 100%);
    color: #ffffff;
}
.bcm-char-execute {
    background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
    color: #172430;
}
.bcm-stage-flow-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 0;
}
.bcm-flow-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(42, 59, 77, 0.15), transparent);
}
.bcm-flow-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: #ffffff;
    color: rgba(42, 59, 77, 0.7);
    cursor: pointer;
    font-size: 0.74rem;
    font-weight: 700;
    transition: all 0.2s ease;
    border: 1px solid rgba(42, 59, 77, 0.12);
    box-shadow: 0 2px 8px rgba(42, 59, 77, 0.04);
}
.bcm-flow-badge:hover {
    background: rgba(30, 136, 229, 0.08);
    color: #1E88E5;
    border-color: rgba(30, 136, 229, 0.3);
}
.bcm-chamfer-tag {
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
}
.bcm-chamfer-box {
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
}
.bcm-step-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 0.85rem 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(42, 59, 77, 0.08);
    box-shadow: 0 2px 8px rgba(42, 59, 77, 0.03);
    opacity: 0.4;
    transform: translateX(-10px);
    transition: opacity 0.45s ease, transform 0.45s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.bcm-step-item.bcm-step-active {
    opacity: 1;
    transform: translateX(0);
}
#bcm-step-1.bcm-step-active {
    background: #FFFFFF;
    border-color: rgba(95, 165, 219, 0.65);
    box-shadow: 0 8px 24px rgba(95, 165, 219, 0.18), 0 0 0 1px rgba(95, 165, 219, 0.25);
}
#bcm-step-2.bcm-step-active {
    background: #FFFFFF;
    border-color: rgba(244, 114, 182, 0.65);
    box-shadow: 0 8px 24px rgba(241, 197, 228, 0.35), 0 0 0 1px rgba(244, 114, 182, 0.25);
}
#bcm-step-3.bcm-step-active {
    background: #FFFFFF;
    border-color: rgba(251, 191, 36, 0.65);
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.22), 0 0 0 1px rgba(251, 191, 36, 0.25);
}
.bcm-tab-btn {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    background: rgba(42, 59, 77, 0.06);
    color: #2A3B4D;
    transition: all 0.2s ease;
}
.bcm-tab-btn:hover {
    background: rgba(30, 136, 229, 0.08);
    color: #1E88E5;
}
.bcm-tab-btn.active#bcm-tab-btn-map {
    background: #1E88E5;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(30, 136, 229, 0.4);
}
.bcm-tab-btn.active#bcm-tab-btn-advise {
    background: linear-gradient(135deg, #ADA9E3 0%, #F472B6 100%);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(244, 114, 182, 0.45);
}
.bcm-tab-btn.active#bcm-tab-btn-execute {
    background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
    color: #172430;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.45);
}
.bcm-progress-bar {
    height: 5px;
    width: 0%;
    border-radius: 999px;
    background: linear-gradient(90deg, #5FA5DB 0%, #ADA9E3 35%, #F1C5E4 70%, #FBBF24 100%);
    box-shadow: 0 0 10px rgba(241, 197, 228, 0.4);
    transition: width 0.08s linear;
}

/* ── RTL Overrides for Modal ── */
html[dir="rtl"] .bcm-card,
html[dir="rtl"] .bcm-main-card {
    text-align: right !important;
    direction: rtl !important;
}
html[dir="rtl"] .bcm-main-header {
    direction: rtl !important;
    text-align: right !important;
    padding: 1.15rem 1.5rem !important;
}
html[dir="rtl"] .bcm-main-header h2 {
    text-align: right !important;
}
html[dir="rtl"] .bcm-step-item {
    transform: translateX(10px);
    direction: rtl !important;
    text-align: right !important;
}
html[dir="rtl"] .bcm-step-item > div {
    text-align: right !important;
}
html[dir="rtl"] .bcm-step-item.bcm-step-active {
    transform: translateX(0);
}
html[dir="rtl"] .bcm-main-card ul {
    padding-left: 0 !important;
    padding-right: 1.15rem !important;
}
html[dir="rtl"] .bcm-whatwedo {
    padding-left: 0 !important;
    padding-right: 1.15rem !important;
    text-align: right !important;
}
html[dir="rtl"] .bcm-whatwedo li {
    text-align: right !important;
}
html[dir="rtl"] .bcm-tab-btn {
    font-family: 'Tajawal', system-ui, sans-serif;
}
html[dir="rtl"] .bcm-main-card h4,
html[dir="rtl"] .bcm-main-card h3,
html[dir="rtl"] .bcm-main-card h2,
html[dir="rtl"] .bcm-main-card p,
html[dir="rtl"] .bcm-main-card li,
html[dir="rtl"] .bcm-main-card span {
    font-family: 'Tajawal', system-ui, sans-serif !important;
    text-align: right !important;
}
html[dir="rtl"] .bcm-stage-card {
    text-align: right !important;
    direction: rtl !important;
}
html[dir="rtl"] .bcm-journey-visual {
    text-align: right !important;
    direction: rtl !important;
}
html[dir="rtl"] .bcm-journey-copy {
    text-align: right !important;
}
html[dir="rtl"] .bcm-journey-copy iconify-icon {
    margin-right: 0 !important;
    margin-left: 0.4rem !important;
}
html[dir="rtl"] .bcm-sticky-footer {
    direction: rtl !important;
    text-align: right !important;
}
html[dir="rtl"] .bcm-sticky-footer h4 {
    text-align: right !important;
}
@media (max-width: 640px) {
    html[dir="rtl"] .bcm-main-card .bcm-main-header {
        padding: 0.85rem 1rem !important;
    }
    html[dir="rtl"] .bcm-sticky-footer,
    html[dir="rtl"] .bcm-sticky-footer h4,
    html[dir="rtl"] .bcm-sticky-footer-title,
    html[dir="rtl"] .bcm-sticky-footer-action {
        text-align: center !important;
        justify-content: center !important;
    }
}
.bcm-header-actions {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}
.bcm-tabs-bar {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    direction: ltr !important;
}


/* ── Bespoke High-Clarity Animated Step Graphics ── */
.bcm-graphic-badge {
    position: relative;
    width: 3.25rem;
    height: 3.25rem;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    background: #FFFFFF;
    border: 1px solid rgba(42, 59, 77, 0.12);
    box-shadow: 0 4px 14px rgba(42, 59, 77, 0.06);
    overflow: visible;
}
.bcm-badge-map {
    border-color: rgba(95, 165, 219, 0.55);
    background: radial-gradient(circle at center, #F0F7FF 0%, #FFFFFF 85%);
}
.bcm-badge-advise {
    border-color: rgba(244, 114, 182, 0.55);
    background: radial-gradient(circle at center, #FDF2F8 0%, #FFFFFF 85%);
}
.bcm-badge-execute {
    border-color: rgba(251, 191, 36, 0.55);
    background: radial-gradient(circle at center, #FFFBEB 0%, #FFFFFF 85%);
}
.bcm-graphic-svg {
    width: 2.35rem;
    height: 2.35rem;
}
.bcm-badge-num {
    position: absolute;
    bottom: -4px;
    right: -4px;
    font-size: 0.6rem;
    font-weight: 900;
    line-height: 1;
    padding: 0.15rem 0.32rem;
    border-radius: 4px;
    background: #FFFFFF;
    color: #1E88E5;
    border: 1px solid rgba(95, 165, 219, 0.55);
    box-shadow: 0 2px 6px rgba(42, 59, 77, 0.08);
}
.bcm-badge-advise .bcm-badge-num {
    color: #DB2777;
    border-color: rgba(244, 114, 182, 0.6);
}
.bcm-badge-execute .bcm-badge-num {
    color: #D97706;
    border-color: rgba(251, 191, 36, 0.6);
}

/* ── Graphic 1: Radar Sweep Animations (MAP) ── */
.bcm-radar-ring {
    fill: none;
    stroke: rgba(95, 165, 219, 0.35);
    stroke-width: 1;
}
.bcm-radar-cross {
    stroke: rgba(95, 165, 219, 0.25);
    stroke-width: 1;
    stroke-dasharray: 2 2;
}
.bcm-radar-sweep-group {
    transform-origin: 24px 24px;
    animation: bcm-radar-spin 2.8s linear infinite;
}
@keyframes bcm-radar-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.bcm-radar-cone {
    fill: rgba(95, 165, 219, 0.22);
}
.bcm-radar-needle {
    stroke: #1E88E5;
    stroke-width: 1.5;
    stroke-linecap: round;
    filter: drop-shadow(0 0 3px rgba(30, 136, 229, 0.5));
}
.bcm-radar-node {
    fill: #1E88E5;
    animation: bcm-node-ping 2.8s infinite ease-in-out;
}
.bcm-radar-node.node-1 { animation-delay: 0.2s; }
.bcm-radar-node.node-2 { animation-delay: 0.8s; }
.bcm-radar-node.node-3 { animation-delay: 1.5s; }
.bcm-radar-node.node-4 { animation-delay: 2.1s; }
@keyframes bcm-node-ping {
    0%, 100% { opacity: 0.25; transform: scale(0.85); }
    50% { opacity: 1; transform: scale(1.35); filter: drop-shadow(0 0 5px rgba(30, 136, 229, 0.6)); }
}

/* ── Graphic 2: Neural AI & Synapse Flow Animations (ADVISE - Rose Pink / Violet) ── */
.bcm-neural-trace, .bcm-neural-trace-diag {
    fill: none;
    stroke: rgba(219, 39, 119, 0.35);
    stroke-width: 1.2;
}
.bcm-logic-gate {
    fill: #FFFFFF;
    stroke: #DB2777;
    stroke-width: 1.2;
}
.bcm-ai-core {
    fill: rgba(241, 197, 228, 0.35);
    stroke: #DB2777;
    stroke-width: 1.5;
    transform-origin: 24px 24px;
    animation: bcm-core-pulse 2.2s infinite ease-in-out;
}
@keyframes bcm-core-pulse {
    0%, 100% { transform: scale(1); stroke: #DB2777; }
    50% { transform: scale(1.1); stroke: #EC4899; filter: drop-shadow(0 0 6px rgba(219, 39, 119, 0.5)); }
}
.bcm-ai-brain-node {
    fill: #DB2777;
    animation: bcm-brain-glow 1.5s infinite alternate ease-in-out;
}
@keyframes bcm-brain-glow {
    from { fill: #8B5CF6; filter: drop-shadow(0 0 2px #8B5CF6); }
    to { fill: #DB2777; filter: drop-shadow(0 0 6px #DB2777); }
}
.bcm-synapse-pulse {
    fill: #EC4899;
    animation: bcm-synapse-travel 2s infinite ease-in-out;
}
.bcm-synapse-pulse.p1 { animation-delay: 0s; }
.bcm-synapse-pulse.p2 { animation-delay: 0.5s; }
.bcm-synapse-pulse.p3 { animation-delay: 1.0s; }
.bcm-synapse-pulse.p4 { animation-delay: 1.5s; }
@keyframes bcm-synapse-travel {
    0%, 100% { opacity: 0.2; transform: scale(0.7); }
    50% { opacity: 1; transform: scale(1.4); filter: drop-shadow(0 0 5px #EC4899); }
}

/* ── Graphic 3: Build Gears & Systems Deployment (EXECUTE) ── */
.bcm-gear-primary {
    transform-origin: 17px 31px;
    animation: bcm-gear-turn-cw 6s linear infinite;
}
.bcm-gear-secondary {
    transform-origin: 32px 24px;
    animation: bcm-gear-turn-ccw 4s linear infinite;
}
@keyframes bcm-gear-turn-cw {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes bcm-gear-turn-ccw {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}
.bcm-gear-body {
    fill: rgba(251, 191, 36, 0.2);
    stroke: #D97706;
    stroke-width: 1.2;
}
.bcm-gear-body-sm {
    fill: rgba(253, 230, 138, 0.35);
    stroke: #B45309;
    stroke-width: 1.2;
}
.bcm-gear-teeth {
    stroke: #D97706;
    stroke-width: 2.2;
    stroke-linecap: round;
}
.bcm-gear-hole, .bcm-gear-hole-sm {
    fill: #FFFFFF;
    stroke: rgba(42, 59, 77, 0.25);
    stroke-width: 1;
}
.bcm-rocket-vector {
    animation: bcm-rocket-hover 2.4s ease-in-out infinite alternate;
}
@keyframes bcm-rocket-hover {
    from { transform: translate(0, 0); }
    to { transform: translate(1.5px, -2px); }
}
.bcm-rocket-fuselage {
    fill: #FFFFFF;
    stroke: #1E88E5;
    stroke-width: 1.2;
}
.bcm-rocket-window {
    fill: #1E88E5;
}
.bcm-rocket-fin {
    fill: #F59E0B;
}
.bcm-rocket-flame {
    fill: #F59E0B;
    animation: bcm-flame-flicker 0.4s infinite alternate ease-in-out;
}
@keyframes bcm-flame-flicker {
    0% { transform: scale(0.85); opacity: 0.7; }
    100% { transform: scale(1.25); opacity: 1; filter: drop-shadow(0 0 6px #FBBF24); }
}
