.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;
}

.migi-contact-style-solid,
.migi-contact-style-rounded,
.migi-contact-style-gradient,
.migi-contact-style-thin,
.migi-contact-style-dark{
    gap:0 !important;
    overflow:hidden;
    border-radius:18px;
    box-shadow:0 18px 34px rgba(15,23,42,.22);
}

.migi-contact-style-solid .migi-tech-item,
.migi-contact-style-rounded .migi-tech-item,
.migi-contact-style-gradient .migi-tech-item,
.migi-contact-style-thin .migi-tech-item,
.migi-contact-style-dark .migi-tech-item{
    width:112px;
    height:86px;
    flex-direction:column;
    justify-content:center;
    gap:5px;
    border:0;
    border-radius:0;
    box-shadow:none;
    backdrop-filter:none;
    -webkit-backdrop-filter:none;
}

.migi-contact-style-solid .migi-tech-item::before,
.migi-contact-style-rounded .migi-tech-item::before,
.migi-contact-style-gradient .migi-tech-item::before,
.migi-contact-style-thin .migi-tech-item::before,
.migi-contact-style-dark .migi-tech-item::before,
.migi-contact-style-minimal .migi-tech-item::before,
.migi-contact-style-solid .migi-tech-item::after,
.migi-contact-style-rounded .migi-tech-item::after,
.migi-contact-style-gradient .migi-tech-item::after,
.migi-contact-style-thin .migi-tech-item::after,
.migi-contact-style-dark .migi-tech-item::after,
.migi-contact-style-minimal .migi-tech-item::after{
    display:none;
}

.migi-contact-style-solid .migi-tech-item{
    background:var(--tech-bg);
}

.migi-contact-style-rounded .migi-tech-item{
    background:var(--tech-bg);
}

.migi-contact-style-gradient .migi-tech-item{
    background:transparent;
}

.migi-contact-style-thin .migi-tech-item,
.migi-contact-style-minimal .migi-tech-item{
    background:#fff;
    border-left:4px solid var(--tech-color);
}

.migi-contact-style-dark .migi-tech-item{
    background:linear-gradient(180deg,#17202a,#111820);
}

.migi-contact-style-solid .migi-tech-item + .migi-tech-item::after,
.migi-contact-style-rounded .migi-tech-item + .migi-tech-item::after,
.migi-contact-style-gradient .migi-tech-item + .migi-tech-item::after,
.migi-contact-style-thin .migi-tech-item + .migi-tech-item::after,
.migi-contact-style-dark .migi-tech-item + .migi-tech-item::after,
.migi-contact-style-minimal .migi-tech-item + .migi-tech-item::after{
    content:'';
    display:block;
    position:absolute;
    top:0;
    left:22px;
    right:22px;
    height:1px;
    background:rgba(255,255,255,.28);
}

.migi-contact-style-thin .migi-tech-item + .migi-tech-item::after,
.migi-contact-style-minimal .migi-tech-item + .migi-tech-item::after{
    background:#e5e7eb;
}

.migi-contact-style-solid .migi-tech-icon,
.migi-contact-style-rounded .migi-tech-icon,
.migi-contact-style-gradient .migi-tech-icon,
.migi-contact-style-thin .migi-tech-icon,
.migi-contact-style-dark .migi-tech-icon{
    width:34px;
    height:34px;
}

.migi-contact-style-solid .migi-icon-core,
.migi-contact-style-rounded .migi-icon-core,
.migi-contact-style-gradient .migi-icon-core,
.migi-contact-style-thin .migi-icon-core,
.migi-contact-style-dark .migi-icon-core{
    width:34px;
    height:34px;
    border-radius:50%;
    box-shadow:none;
    background:transparent;
}

.migi-contact-style-thin .migi-icon-core,
.migi-contact-style-minimal .migi-icon-core{
    color:var(--tech-color);
}

.migi-contact-style-dark .migi-icon-core{
    color:#ffd76a;
}

.migi-contact-style-solid .migi-tech-slider,
.migi-contact-style-rounded .migi-tech-slider,
.migi-contact-style-gradient .migi-tech-slider,
.migi-contact-style-thin .migi-tech-slider,
.migi-contact-style-dark .migi-tech-slider{
    width:100%;
    height:auto;
    flex:0 0 auto;
}

.migi-contact-style-solid .migi-tech-default,
.migi-contact-style-rounded .migi-tech-default,
.migi-contact-style-gradient .migi-tech-default,
.migi-contact-style-thin .migi-tech-default,
.migi-contact-style-dark .migi-tech-default{
    position:static;
    height:auto;
    padding:0 10px;
    align-items:center;
    text-align:center;
}

.migi-contact-style-solid .migi-tech-actions,
.migi-contact-style-rounded .migi-tech-actions,
.migi-contact-style-gradient .migi-tech-actions,
.migi-contact-style-thin .migi-tech-actions,
.migi-contact-style-dark .migi-tech-actions,
.migi-contact-style-minimal .migi-tech-actions,
.migi-contact-style-circle .migi-tech-actions{
    display:none;
}

.migi-contact-style-solid .migi-tech-item.has-actions:hover .migi-tech-default,
.migi-contact-style-rounded .migi-tech-item.has-actions:hover .migi-tech-default,
.migi-contact-style-gradient .migi-tech-item.has-actions:hover .migi-tech-default,
.migi-contact-style-thin .migi-tech-item.has-actions:hover .migi-tech-default,
.migi-contact-style-dark .migi-tech-item.has-actions:hover .migi-tech-default,
.migi-contact-style-minimal .migi-tech-item.has-actions:hover .migi-tech-default{
    opacity:1;
    visibility:visible;
    transform:none;
}

.migi-contact-style-solid .migi-t-title,
.migi-contact-style-rounded .migi-t-title,
.migi-contact-style-gradient .migi-t-title,
.migi-contact-style-dark .migi-t-title{
    display:none;
}

.migi-contact-style-solid .migi-t-phone,
.migi-contact-style-rounded .migi-t-phone,
.migi-contact-style-gradient .migi-t-phone,
.migi-contact-style-dark .migi-t-phone{
    color:#fff;
    font-size:14px;
    font-weight:700;
    letter-spacing:0;
    text-shadow:none;
}

.migi-contact-style-thin .migi-t-title{
    display:none;
}

.migi-contact-style-thin .migi-t-phone,
.migi-contact-style-minimal .migi-t-phone{
    color:#273142;
    font-size:13px;
    letter-spacing:0;
    text-shadow:none;
}

.migi-contact-style-circle{
    gap:14px !important;
}

.migi-contact-style-circle .migi-tech-item{
    width:74px;
    height:74px;
    border-radius:50%;
    background:var(--tech-bg);
    border:0;
    box-shadow:0 12px 24px rgba(15,23,42,.22);
    overflow:visible;
}

.migi-contact-style-circle .migi-tech-item::after,
.migi-contact-style-circle .migi-tech-item::before{
    display:none;
}

.migi-contact-style-circle .migi-tech-icon{
    width:74px;
    height:74px;
}

.migi-contact-style-circle .migi-icon-core{
    width:74px;
    height:74px;
    border-radius:50%;
    background:transparent;
    box-shadow:none;
}

.migi-contact-style-circle .migi-tech-slider{
    display:none;
}

.migi-contact-style-minimal{
    gap:0 !important;
    overflow:hidden;
    border:1px solid #e2e8f0;
    border-radius:18px;
    box-shadow:0 14px 30px rgba(15,23,42,.14);
}

.migi-contact-style-minimal .migi-tech-item{
    width:104px;
    height:86px;
    flex-direction:column;
    justify-content:center;
    gap:5px;
    background:#fff;
    border:0;
    border-left:0;
    border-radius:0;
    box-shadow:none;
    backdrop-filter:none;
    -webkit-backdrop-filter:none;
}

.migi-contact-style-minimal .migi-tech-icon{
    width:34px;
    height:34px;
}

.migi-contact-style-minimal .migi-icon-core{
    width:34px;
    height:34px;
    border-radius:50%;
    background:transparent;
    box-shadow:none;
}

.migi-contact-style-minimal .migi-tech-slider{
    width:100%;
    height:auto;
    flex:0 0 auto;
}

.migi-contact-style-minimal .migi-tech-default{
    position:static;
    height:auto;
    padding:0 10px;
    align-items:center;
    text-align:center;
}

.migi-contact-style-minimal .migi-t-title{
    display:none;
}

.migi-contact-style-gradient{
    background:linear-gradient(180deg,#5d4ee7,#d93f9c,#ff9d20);
}

.migi-contact-style-gradient .migi-tech-item:first-child{
    border-radius:18px 18px 0 0;
}

.migi-contact-style-gradient .migi-tech-item:last-child{
    border-radius:0 0 18px 18px;
}

.migi-contact-style-rounded{
    border-radius:30px;
}

.migi-contact-style-rounded .migi-tech-item:first-child{
    border-radius:30px 30px 0 0;
}

.migi-contact-style-rounded .migi-tech-item:last-child{
    border-radius:0 0 30px 30px;
}

.migi-contact-style-thin{
    border:1px solid #e5e7eb;
}

.migi-contact-style-thin .migi-tech-item{
    width:94px;
}

.migi-contact-modal[hidden]{
    display:none;
}

.migi-contact-modal{
    position:fixed;
    inset:0;
    z-index:100000;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:22px;
}

.migi-contact-modal__backdrop{
    position:absolute;
    inset:0;
    background:rgba(15,23,42,.62);
    backdrop-filter:blur(5px);
}

.migi-contact-modal__dialog{
    position:relative;
    z-index:1;
    width:min(680px,100%);
    max-height:min(760px,calc(100vh - 44px));
    overflow:auto;
    padding:0;
    background:#fff;
    border:1px solid rgba(226,232,240,.9);
    border-radius:18px;
    box-shadow:0 28px 70px rgba(15,23,42,.26);
}

.migi-contact-modal__close{
    position:absolute;
    top:10px;
    right:12px;
    width:34px;
    height:34px;
    border:0;
    border-radius:50%;
    background:#f2f4f7;
    color:#101828;
    font-size:24px;
    line-height:1;
    cursor:pointer;
}

.migi-contact-modal__head{
    display:flex;
    gap:18px;
    align-items:center;
    padding:42px 42px 28px;
}

.migi-contact-modal__icon{
    display:flex;
    width:72px;
    height:72px;
    align-items:center;
    justify-content:center;
    flex:0 0 auto;
    border-radius:50%;
    color:#2563eb;
    background:#eff6ff;
    box-shadow:0 12px 34px rgba(37,99,235,.14);
}

.migi-contact-modal__icon svg{
    width:34px;
    height:34px;
    fill:none;
    stroke:currentColor;
    stroke-width:2;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.migi-contact-modal__head h2{
    margin:0;
    color:#0f172a;
    font-size:34px;
    line-height:1.15;
    letter-spacing:0;
}

.migi-contact-modal__head p{
    margin:8px 0 0;
    color:#667085;
    font-size:17px;
}

.migi-contact-modal__box{
    margin:0 42px 36px;
    padding:22px;
    border:1px solid #e4e7ec;
    border-radius:14px;
    background:#fff;
}

.migi-contact-modal__box h3{
    margin:0 0 16px;
    color:#101828;
    font-size:17px;
}

.migi-contact-modal__content{
    padding:20px;
    border:1px solid #dbe4f0;
    border-radius:12px;
    background:#f8fbff;
    color:#101828;
    font-size:15px;
    line-height:1.65;
}

.migi-contact-modal__foot{
    display:flex;
    justify-content:flex-end;
    gap:12px;
    padding:20px 42px 28px;
    border-top:1px solid #eaecf0;
}

.migi-contact-modal__secondary{
    min-width:110px;
    height:42px;
    border:1px solid #d0d5dd;
    border-radius:10px;
    background:#fff;
    color:#101828;
    font-weight:700;
    cursor:pointer;
}

@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;
    }
}
