/* ── FOOTER ─────────────────────────────────────────────── */
footer {
    background: #0d1525;
    padding: 64px 0 0;
}

.footer-brand {
    font-family: "Manrope", sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    color: #fff;
}

.footer-brand b {
    color: #4d9fff;
}

.footer-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
    margin: 14px 0 20px;
}

.socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    text-decoration: none;
    margin-right: 6px;
    transition: all 0.18s;
}

.socials a:hover {
    background: var(--blue);
    color: #fff;
}

.footer-h {
    font-family: "Manrope", sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.18s;
}

.footer-links a:hover {
    color: #fff;
}

.nl-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    padding: 11px 15px;
    font-size: 0.875rem;
    color: #fff;
    font-family: "Source Sans 3", sans-serif;
    outline: none;
    margin-bottom: 10px;
    transition: border 0.2s;
}

.nl-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.nl-input:focus {
    border-color: var(--blue-mid);
}

.nl-btn {
    width: 100%;
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 11px;
    font-family: "Manrope", sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.nl-btn:hover {
    background: var(--blue-mid);
}

.footer-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    margin-top: 48px;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bar span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-bar a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    margin-left: 14px;
    transition: color 0.18s;
}

.footer-bar a:hover {
    color: #fff;
}



.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: opacity .2s;
}

.footer-contact-item:hover {
    opacity: 1;
}

.footer-contact-item:hover span {
    color: #fff;
}

.footer-contact-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    color: #4d9fff;
    flex-shrink: 0;
    transition: background .2s, border-color .2s;
}

.footer-contact-item:hover .footer-contact-icon {
    background: #004a99;
    border-color: #004a99;
    color: #fff;
}

.footer-contact-item span {
    font-family: 'Source Sans 3', sans-serif;
    font-size: .875rem;
    color: rgba(255, 255, 255, .6);
    transition: color .2s;
}