.migi-tech-contact-bar{
    position:fixed;
    display:flex;
    flex-direction:column;
}

.migi-tech-item{
    position:relative;
    display:flex;
    align-items:center;
    width:var(--migi-item-width,260px);
    height:64px;
    background:var(--migi-glass-bg,rgba(15,23,42,.72));
    backdrop-filter:blur(var(--migi-blur,20px));
    -webkit-backdrop-filter:blur(var(--migi-blur,20px));
    border-radius:18px;
    border:1px solid var(--migi-border-color,rgba(255,255,255,.15));
    box-shadow:0 12px 32px var(--migi-shadow-color,rgba(0,0,0,.30));
    text-decoration:none;
    transition:transform .38s cubic-bezier(.175,.885,.32,1.18), box-shadow .35s ease, border-color .35s ease;
    cursor:pointer;
    overflow:visible;
    isolation:isolate;
}

.migi-tech-item::before{
    content:'';
    position:absolute;
    inset:-1px;
    background:linear-gradient(45deg,transparent,var(--tech-color),transparent);
    z-index:-1;
    border-radius:19px;
    opacity:0;
    transition:opacity .35s ease;
}

.migi-tech-item::after{
    content:'';
    position:absolute;
    inset:0;
    border-radius:18px;
    background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,0));
    pointer-events:none;
}

.migi-tech-item:hover{
    transform:translateX(8px) scale(1.025);
    border-color:rgba(255,255,255,.42);
    box-shadow:0 18px 42px rgba(0,0,0,.36), 0 0 22px var(--tech-color-dim);
}

.migi-tech-item:hover::before{
    opacity:1;
}

.migi-tech-icon{
    width:64px;
    height:64px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    position:relative;
    z-index:2;
}

.migi-icon-core{
    width:46px;
    height:46px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--tech-bg);
    border-radius:14px;
    color:#fff;
    box-shadow:0 0 16px var(--tech-color-dim), inset 0 0 10px rgba(255,255,255,.24);
    position:relative;
    transition:transform .28s ease, box-shadow .28s ease;
}

.migi-tech-item:hover .migi-icon-core{
    transform:scale(1.08);
    box-shadow:0 0 24px var(--tech-color), inset 0 0 10px rgba(255,255,255,.24);
}

.migi-tech-icon svg{
    width:22px;
    height:22px;
    fill:none;
    stroke:currentColor;
    stroke-width:2;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.migi-tech-slider{
    flex-grow:1;
    height:64px;
    position:relative;
    min-width:0;
}

.migi-tech-default,
.migi-tech-actions{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    display:flex;
    justify-content:center;
    padding-left:6px;
    padding-right:16px;
    transition:all .38s cubic-bezier(.25,.8,.25,1);
}

.migi-tech-default{
    flex-direction:column;
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.migi-t-title{
    font-size:10px;
    text-transform:uppercase;
    letter-spacing:2px;
    color:var(--tech-color);
    margin-bottom:3px;
    font-weight:800;
    line-height:1.2;
}

.migi-t-phone{
    font-size:17px;
    font-weight:800;
    color:#fff;
    letter-spacing:.8px;
    line-height:1.25;
    text-shadow:0 0 8px rgba(255,255,255,.25);
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.migi-tech-actions{
    flex-direction:row;
    align-items:center;
    gap:8px;
    opacity:0;
    visibility:hidden;
    transform:translateY(14px);
}

.migi-t-btn{
    flex:1;
    height:36px;
    border:1px solid var(--tech-color);
    background:rgba(0,0,0,.34);
    color:#fff;
    border-radius:10px;
    font-size:11.5px;
    font-weight:700;
    cursor:pointer;
    transition:all .22s ease;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    white-space:nowrap;
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);
}

.migi-t-btn:hover{
    background:var(--tech-color);
    color:#000;
    box-shadow:0 0 16px var(--tech-color);
    transform:translateY(-1px) scale(1.03);
}

.migi-tech-item.has-actions:hover .migi-tech-default{
    opacity:0;
    visibility:hidden;
    transform:translateY(-14px);
}

.migi-tech-item.has-actions:hover .migi-tech-actions{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.migi-tech-item.is-pulse .migi-icon-core::after{
    content:'';
    position:absolute;
    inset:-4px;
    border-radius:16px;
    border:2px solid var(--tech-color);
    animation:migi-radar-pulse 2s infinite cubic-bezier(.25,1,.5,1);
    pointer-events:none;
}

@keyframes migi-radar-pulse{
    0%{
        transform:scale(1);
        opacity:1;
    }
    100%{
        transform:scale(1.6);
        opacity:0;
    }
}

.migi-mobile-trigger{
    display:none;
}

@media (max-width: 480px){
    .migi-tech-contact-bar{
        gap:14px !important;
    }

    .migi-tech-item{
        width:var(--migi-mobile-size,56px);
        height:var(--migi-mobile-size,56px);
        border-radius:16px;
        background:transparent;
        border:none;
        box-shadow:none;
    }

    .migi-tech-item:hover{
        transform:none;
        box-shadow:none;
    }

    .migi-tech-icon{
        width:var(--migi-mobile-size,56px);
        height:var(--migi-mobile-size,56px);
    }

    .migi-icon-core{
        width:var(--migi-mobile-size,56px);
        height:var(--migi-mobile-size,56px);
        border-radius:16px;
    }

    .migi-tech-slider{
        display:none;
    }

    .migi-mobile-trigger{
        display:block;
        position:absolute;
        inset:0;
        z-index:5;
        border-radius:16px;
    }

    .migi-tech-item.is-pulse .migi-icon-core::after{
        display:none;
    }
}