/* FOOTER */
.footer{
    position:relative;
    margin-top:64px;
    background:#03060d;
    border-top:none;
}

.footer::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:2px;
    background:linear-gradient(90deg,
        rgba(26,140,255,0) 0%,
        rgba(77,168,255,.9) 20%,
        rgba(140,210,255,1) 50%,
        rgba(77,168,255,.9) 80%,
        rgba(26,140,255,0) 100%);
    box-shadow:
        0 0 12px rgba(41,151,255,.8),
        0 0 26px rgba(26,140,255,.45),
        0 0 44px rgba(26,140,255,.2);
}

.footer::after{
    content:'';
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:56px;
    pointer-events:none;
    background:linear-gradient(180deg,rgba(26,140,255,.14) 0%,rgba(26,140,255,0) 100%);
}

.footer > .container{
    position:relative;
    z-index:1;
}

.footer-grid{
    display:grid;
    grid-template-columns:minmax(240px,1.45fr) 1fr 1fr minmax(250px,1.2fr);
    gap:40px 56px;
    padding:56px 0 44px;
}

.footer-brand .logo{
    display:inline-flex;
    margin-bottom:20px;
}

.footer-slogan{
    margin:0 0 22px;
    max-width:300px;
    font-size:14px;
    line-height:1.65;
    color:rgba(255,255,255,.82);
}

.footer-social{
    display:flex;
    align-items:center;
    gap:12px;
}

.footer-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.28);
    background:transparent;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    flex-shrink:0;
    color:rgba(255,255,255,.75);
    text-decoration:none;
    transition:color .2s,border-color .2s,background .2s;
}

.footer-social a:hover{
    color:#fff;
    border-color:rgba(255,255,255,.5);
    background:rgba(255,255,255,.06);
}

.footer-social .icon{
    display:block;
    width:15px;
    height:15px;
    flex-shrink:0;
}

.footer-social .icon--fill{
    width:12px;
    height:12px;
}

.footer-social a[aria-label="Instagram"] .icon{
    width:14px;
    height:14px;
    stroke-width:1.65;
}

.footer-social a[aria-label="YouTube"] .icon,
.footer-social a[aria-label="Telegram"] .icon{
    width:10px;
    height:10px;
}

.footer-social a[aria-label="Telegram"] .icon{
    transform:translate(-1px,1px);
}

.footer-col h4,
.footer-subscribe h4{
    font-family:var(--font-primary);
    font-size:12px;
    font-weight:800;
    letter-spacing:.1em;
    text-transform:uppercase;
    color:#fff;
    margin:0 0 18px;
}

.footer-col ul{
    list-style:none;
    margin:0;
    padding:0;
}

.footer-col li{margin-bottom:11px}

.footer-col li:last-child{margin-bottom:0}

.footer-col a{
    color:rgba(255,255,255,.5);
    text-decoration:none;
    font-size:14px;
    line-height:1.4;
    transition:color .2s;
}

.footer-col a:hover{color:#fff}

.footer-subscribe-desc{
    margin:-8px 0 16px;
    font-size:13px;
    line-height:1.55;
    color:rgba(255,255,255,.5);
}

.footer-subscribe-form{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.footer-subscribe input{
    width:100%;
    height:46px;
    border:1px solid rgba(255,255,255,.18);
    border-radius:8px;
    background:#0a1018;
    color:#fff;
    padding:0 14px;
    font-size:14px;
    outline:none;
    transition:border-color .2s;
}

.footer-subscribe input::placeholder{color:rgba(255,255,255,.38)}

.footer-subscribe input:focus{border-color:rgba(255,255,255,.32)}

.footer-subscribe .btn{
    width:100%;
    height:46px;
    font-size:11px;
    font-weight:700;
    letter-spacing:.08em;
}

.footer-subscribe .btn:disabled{
    opacity:.72;
    cursor:wait;
}

.footer-flash[hidden]{
    display:none;
}

.hp-field{
    position:absolute;
    left:-9999px;
    width:1px;
    height:1px;
    opacity:0;
    pointer-events:none;
}

.footer-flash{
    margin:0 0 12px;
    padding:10px 12px;
    border-radius:6px;
    font-size:13px;
    line-height:1.4;
}

.footer-flash--ok{
    background:rgba(46,160,67,.15);
    color:#8fd19e;
}

.footer-flash--err{
    background:rgba(248,81,73,.12);
    color:#f0a8a4;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    padding:18px 0 22px;
}

.footer-bottom-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    flex-wrap:wrap;
    font-size:13px;
    color:rgba(255,255,255,.45);
}

.footer-bottom-inner p{
    margin:0;
}

.footer-bottom-credit a{
    color:rgba(255,255,255,.62);
    text-decoration:none;
    transition:color .2s;
}

.footer-bottom-credit a:hover{
    color:#8ec8ff;
}

