/*.hn-footer-main {
    background: radial-gradient(circle at 50% 0%, #1a222f 0%, #0f141a 100%);
    color: #cbd5e0;
    padding: 80px 0 40px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    border-top: 1px solid rgba(255,255,255,0.05);
}*/
.hn-footer-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
}
.hn-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}
.hn-footer-h {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    position: relative;
}
.hn-footer-h::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: #378dca;
}
.hn-footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.hn-footer-nav a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    width: fit-content;
}
.hn-footer-nav a:hover {
    color: #fff;
    transform: translateX(5px);
}
.hn-footer-logo {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 15px;
}
.hn-footer-logo span {
    color: #378dca;
}
.hn-footer-logo:hover, .hn-footer-logo:hover span{color:#fff; text-decoration: none;}
.hn-footer-cta p {
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 25px;
}
.hn-footer-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.hn-btn-primary, .hn-btn-outline {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}
.hn-btn-primary {
    background: #378dca;
    color: #fff !important;
    border: 1px solid transparent;
    box-shadow: 0 4px 15px rgba(55, 141, 202, 0.2);
}
.hn-btn-outline {
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff !important;
    background: rgba(255,255,255,0.03);
}

.hn-btn-primary:hover, .hn-btn-outline:hover {
    transform: translateY(-3px);
    border-color: #378dca;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    text-decoration: none;
}
.hn-btn-primary:hover {
    background: #49a1dd;
}
.hn-btn-outline:hover {
    background: rgba(55, 141, 202, 0.1);
}
.hn-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.hn-copyright {
    font-size: 13px;
    color: #475569;
}
.hn-social-icons-wrap {
    display: flex;
    gap: 15px;
    align-items: center;
}
.hn-soc-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hn-soc-icon svg {
    width: 18px;
    height: 18px;
    fill: #94a3b8;
    transition: fill 0.3s;
}
.hn-soc-icon:hover {
    background: rgba(55, 141, 202, 0.15);
    border-color: #378dca;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.hn-soc-icon:hover svg {
    fill: #fff;
}
@media (max-width: 768px) {
    .hn-footer-main { text-align: center; padding: 60px 0 30px; }
    .hn-footer-h::after { left: 50%; margin-left: -15px; }
    .hn-footer-nav a { margin: 0 auto; }
    .hn-footer-actions { justify-content: center; }
    .hn-footer-bottom { flex-direction: column-reverse; }
}

#hotengine-footer .hotengine-footer-copyright{display:none;}