.step-icon-wrapper {
    width: 100%;
    height: 88px;
    display:flex;
    justify-content:center;
}
.step-main-icon {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background-color: #102a8f; /* tmavomodrá */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
    position:relative;
}
.step-main-icon svg {
    width: 34px;
    height: 34px;
}
.step-badge {
    position: absolute;
    top: 4px;
    left: -18px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #102a8f;
    color: #ffffff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.18);
}

.step-icon-wrapper {
    width: 100%;
    height: 88px;
    display:flex;
    justify-content:start;
    margin-bottom:1rem;
    margin-top:1rem;
    margin-left:2rem;
}
.step-main-icon {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background-color: #102a8f; /* tmavomodrá */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
    position:relative;
}
.step-main-icon svg {
    width: 40px;
    height: 40px;
}
.step-badge {
    position: absolute;
    top: 4px;
    left: -20px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #102a8f;
    color: #ffffff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.18);
}
@media (max-width: 600px) {
    .step-icon-wrapper {
        height: 64px;
    }
    .step-main-icon {
        width: 64px;
        height: 64px;
    }
    .step-main-icon svg {
        width: 32px;
        height: 32px;
    }
}



/* EMASYS Banner Styles - Brighter Red Edition */
.emasys-banner {
    width: 100%;
    background: linear-gradient(135deg, #1f1414 0%, #2d1a1a 50%, #241616 100%);
    padding: 70px 20px;
    position: relative;
    overflow: hidden;
    border-top: 2px solid rgba(255, 82, 71, 0.4);
    border-bottom: 2px solid rgba(255, 82, 71, 0.4);
}
.emasys-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(90deg, rgba(255, 82, 71, 0.06) 1px, transparent 1px),
        linear-gradient(rgba(255, 82, 71, 0.06) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}
.emasys-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 82, 71, 0.12), transparent);
    animation: scan 8s linear infinite;
}
@keyframes scan {
    0% { left: -100%; }
    100% { left: 200%; }
}
.emasys-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.emasys-text {
    color: #ffffff;
}
.emasys-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 82, 71, 0.25), rgba(255, 107, 53, 0.25));
    color: #ff6b47;
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 82, 71, 0.5);
    box-shadow: 0 0 25px rgba(255, 82, 71, 0.4);
    animation: badge-pulse 2s ease-in-out infinite;
}
@keyframes badge-pulse {
    0%, 100% {
        box-shadow: 0 0 25px rgba(255, 82, 71, 0.4);
        border-color: rgba(255, 82, 71, 0.5);
    }
    50% {
        box-shadow: 0 0 35px rgba(255, 82, 71, 0.6);
        border-color: rgba(255, 82, 71, 0.7);
    }
}
.emasys-heading {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 20px 0;
    color: #ffffff;
    text-shadow: 0 2px 15px rgba(255, 82, 71, 0.25);
}
.emasys-description {
    font-size: 16px;
    line-height: 1.65;
    margin: 0 0 32px 0;
    color: rgba(255, 255, 255, 0.9);
}
.emasys-cta {
    display: inline-block;
    background: linear-gradient(135deg, #ff5247 0%, #ff6b35 100%);
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 82, 71, 0.6);
    border: 1px solid rgba(255, 82, 71, 0.7);
    position: relative;
    overflow: hidden;
}
.emasys-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}
.emasys-cta:hover::before {
    left: 100%;
}
.emasys-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(255, 82, 71, 0.8);
    background: linear-gradient(135deg, #ff4238 0%, #ff5a28 100%);
}
.emasys-microcopy {
    font-size: 13px;
    color: rgba(255, 107, 71, 0.75);
    margin: 18px 0 0 0;
    font-style: italic;
}
.emasys-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.emasys-icon {
    width: 100%;
    max-width: 300px;
    height: auto;
    color: #ff5247;
    filter: drop-shadow(0 0 25px rgba(255, 82, 71, 0.6));
    animation: radar-pulse 4s ease-in-out infinite;
}
.pulse-ring {
    animation: ring-pulse 2s ease-out infinite;
}
@keyframes radar-pulse {
    0%, 100% {
        opacity: 0.75;
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 25px rgba(255, 82, 71, 0.6));
    }
    50% {
        opacity: 1;
        transform: scale(1.08) rotate(180deg);
        filter: drop-shadow(0 0 35px rgba(255, 82, 71, 0.8));
    }
}
@keyframes ring-pulse {
    0% {
        r: 35;
        opacity: 0.3;
    }
    50% {
        r: 50;
        opacity: 0;
    }
    100% {
        r: 35;
        opacity: 0;
    }
}
/* Responsive */
@media (max-width: 768px) {
    .emasys-banner {
        padding: 50px 20px;
        margin: 60px 0;
    }
    .emasys-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .emasys-heading {
        font-size: 28px;
    }
    .emasys-description {
        font-size: 15px;
    }
    .emasys-visual {
        order: -1;
    }
    .emasys-icon {
        max-width: 220px;
    }
}
