/* ============================================================
   FOOTER v2 — Home page (sfc-v2-footer)
   ============================================================ */
.sfc-v2-footer {
    background: #122B1C;
}
.sfc-v2-footer__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 72px 80px 56px;
}
.sfc-v2-footer__brand {
    flex: 0 0 360px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.sfc-v2-footer__logo img {
    max-height: 48px;
    width: auto;
}
.sfc-v2-footer__desc {
    max-width: 280px;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,0.55);
    margin: 0;
}
.sfc-v2-footer__socials {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}
.sfc-v2-footer__social-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-decoration: none !important;
    transition: background 0.2s;
}
.sfc-v2-footer__social-btn:hover { background: rgba(255,255,255,0.15); }
.sfc-v2-footer__nav-col {
    flex: 0 0 160px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.sfc-v2-footer__contact-col {
    flex: 0 0 240px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.sfc-v2-footer__col-title {
    font-family: 'Poppins', system-ui, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.3;
    margin: 0;
}
.sfc-v2-footer__nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.sfc-v2-footer__nav-links li a {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 15px;
    color: rgba(255,255,255,0.6) !important;
    text-decoration: none !important;
    line-height: 1;
    transition: color 0.2s;
}
.sfc-v2-footer__nav-links li a:hover { color: rgba(255,255,255,0.9) !important; }
.sfc-v2-footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.sfc-v2-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.sfc-v2-footer__contact-icon { flex-shrink: 0; margin-top: 2px; }
.sfc-v2-footer__contact-label {
    display: block;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    line-height: 1.33;
    margin-bottom: 2px;
}
.sfc-v2-footer__contact-value {
    display: block;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 15px;
    color: rgba(255,255,255,0.75) !important;
    text-decoration: none !important;
    line-height: 1.5;
}
.sfc-v2-footer__sep {
    width: calc(100% - 160px);
    margin: 0 auto;
    height: 1px;
    background: rgba(255,255,255,0.1);
}
.sfc-v2-footer__bottom {
    display: flex;
    align-items: center;
    padding: 24px 80px 32px;
}
.sfc-v2-footer__copy {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.35);
    line-height: 1.4;
}
.sfc-v2-footer__bottom-links {
    margin-left: auto;
    display: flex;
    gap: 28px;
}
.sfc-v2-footer__bottom-links a {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.35) !important;
    text-decoration: none !important;
    line-height: 1.4;
    transition: color 0.2s;
}
.sfc-v2-footer__bottom-links a:hover { color: rgba(255,255,255,0.65) !important; }
@media (max-width: 991px) {
    .sfc-v2-footer__top { flex-wrap: wrap; gap: 40px; padding: 56px 40px 48px; }
    .sfc-v2-footer__brand { flex: 0 0 100%; }
    .sfc-v2-footer__nav-col, .sfc-v2-footer__contact-col { flex: 0 0 calc(50% - 20px); }
    .sfc-v2-footer__bottom { padding: 24px 40px 32px; }
}
@media (max-width: 767px) {
    .sfc-v2-footer__top { padding: 48px 24px 40px; gap: 32px; }
    .sfc-v2-footer__nav-col, .sfc-v2-footer__contact-col { flex: 0 0 100%; }
    .sfc-v2-footer__sep { width: calc(100% - 48px); }
    .sfc-v2-footer__bottom { flex-direction: column; align-items: flex-start; gap: 16px; padding: 20px 24px 28px; }
    .sfc-v2-footer__bottom-links { margin-left: 0; }
}

