/* Footer — premium industrial */
.ft-footer {
    background: linear-gradient(180deg, #0c1a2e 0%, var(--brand-primary, #0B1628) 100%);
    color: rgba(255,255,255,.70);
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--brand-secondary, #00A6D6), var(--brand-accent, #FF7A1A)) 1;
}
.ft-inner { max-width: 1240px; margin: 0 auto; padding: 4.5rem 20px 2rem; }
/* lean footer: about block + 3 curated link columns in one row (menu already covers full nav) */
.ft-grid { display: grid; grid-template-columns: 2.2fr repeat(3, 1.1fr); gap: 2rem 3rem; }
.ft-about { max-width: 360px; }
.ft-col h4 {
    color: #fff; font-family: var(--font-heading, 'Space Grotesk', sans-serif);
    font-size: .82rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
    margin-bottom: 1.15rem; opacity: .95;
}
.ft-about h4 { font-size: 1.25rem; letter-spacing: -.01em; text-transform: none; margin-bottom: .9rem; }
.ft-col ul { list-style: none; }
.ft-col li { margin-bottom: .62rem; }
.ft-col a { color: rgba(255,255,255,.62); font-size: .9rem; transition: color .18s, padding-left .18s; }
.ft-col:not(.ft-about) a:hover { color: #fff; padding-left: 3px; }
.ft-about p { color: rgba(255,255,255,.62); font-size: .92rem; line-height: 1.75; margin-bottom: 1rem; }
.ft-contact { display: flex; align-items: center; gap: .55rem; font-size: .9rem; }
.ft-contact i { color: var(--brand-secondary, #00A6D6); }
.ft-contact a { color: rgba(255,255,255,.72); }
.ft-bottom {
    border-top: 1px solid rgba(255,255,255,.10); margin-top: 3rem; padding-top: 1.6rem;
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
    font-size: .84rem; color: rgba(255,255,255,.5);
}
.ft-legal a { color: rgba(255,255,255,.5); }
.ft-legal a:hover { color: var(--brand-secondary, #00A6D6); }
.ft-sep { margin: 0 .5rem; opacity: .4; }

/* tablet: about full width on top, 3 link columns below */
@media (max-width: 1100px) and (min-width: 769px) {
    .ft-grid { grid-template-columns: repeat(3, 1fr); }
    .ft-about { grid-column: 1 / -1; max-width: 560px; }
}
@media (max-width: 768px) {
    .ft-inner { padding: 3rem 20px 1.5rem; }
    .ft-grid { grid-template-columns: 1fr 1fr; gap: 1.6rem; }
    .ft-about { grid-column: 1 / -1; max-width: none; }
    .ft-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 460px) { .ft-grid { grid-template-columns: 1fr; } }
