:root {
    --primary: #4A90B8;
    --primary-dark: #2C5F7C;
    --primary-light: #E8F4F9;
    --secondary: #7EB5A6;
    --secondary-light: #E8F6F2;
    --accent: #D4A574;
    --white: #FFFFFF;
    --gray-50: #F8FAFB;
    --gray-100: #F0F4F7;
    --gray-200: #E2E8EF;
    --gray-300: #CBD5E0;
    --gray-600: #5D6D7E;
    --gray-800: #2C3E50;
    --text: #2C3E50;
    --text-light: #4A5F6F;
    --text-muted: #5D6D7E;
    --border: #E2E8EF;
    --shadow-sm: 0 1px 2px rgba(44, 62, 80, 0.06);
    --shadow-md: 0 4px 16px rgba(44, 62, 80, 0.08);
    --shadow-lg: 0 12px 32px rgba(44, 62, 80, 0.10);
    --shadow-xl: 0 20px 48px rgba(44, 62, 80, 0.12);
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-main);
    color: var(--text);
    background-color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: #ffffff;
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition), box-shadow var(--transition);
    padding: 0 1.5rem;
}

.header.scrolled {
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
    background: rgba(255, 255, 255, 0.95);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    height: 70px;
}

.header nav {
    flex: 1;
    min-width: 0;
    display: flex;
    justify-content: flex-end;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1.15rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 12px;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(0.65rem, 1.2vw, 2rem);
    list-style: none;
    flex-wrap: nowrap;
}

.nav-links a.nav-link {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition);
    position: relative;
    padding: 0.25rem 0;
}

.nav-links a.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition);
}

.nav-links a.nav-link:hover { color: var(--primary-dark); }
.nav-links a.nav-link:hover::after { width: 100%; }

.nav-links a.btn-primary {
    color: #fff;
    padding: 0.7rem 1.6rem;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: normal;
    line-height: 1.25;
    -webkit-font-smoothing: antialiased;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 0.7rem 1.6rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(74, 144, 184, 0.3);
    white-space: nowrap;
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(74, 144, 184, 0.4);
}

.header .btn-primary:hover { transform: none; }

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--primary-dark);
    padding: 0.65rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid var(--primary);
    transition: all var(--transition);
}

.btn-outline:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1101;
}

.burger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--primary-dark);
    border-radius: 4px;
    transition: all var(--transition);
}

.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-max-item { display: none; }

.nav-close { display: none; }

/* «Услуги и цены» дублирует «Услуги» — прячем в десктоп-хедере, показываем в мобильном меню */
.nav-links li:has(> a[href="/uslugi/"]) { display: none; }

.nav-max-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.85rem 1.2rem;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white !important;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(74, 144, 184, 0.35);
}

.nav-max-link img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    border-radius: 6px;
    background: white;
    padding: 2px;
    display: block;
    flex-shrink: 0;
}

/* ========== PAGE LAYOUT ========== */
.section {
    padding: 80px 1.5rem;
    scroll-margin-top: 80px;
}

.section-container {
    max-width: 820px;
    margin: 0 auto;
}

.section-container--wide {
    max-width: 1200px;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary-dark);
    background: var(--primary-light);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    border: 1px solid rgba(44, 95, 124, 0.12);
}

.page-hero {
    padding: 120px 1.5rem 48px;
    background: linear-gradient(170deg, #F8FAFB 0%, #E8F4F9 55%, #F8FAFB 100%);
}

.page-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.4rem);
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

.page-lead {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.75;
    max-width: 720px;
}

.page-content {
    background: var(--white);
}

.page-content h2 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--gray-800);
    margin: 2.5rem 0 1rem;
    letter-spacing: -0.01em;
}

.page-content h2:first-child { margin-top: 0; }

.page-content p,
.page-content li {
    color: var(--text-light);
    line-height: 1.75;
    font-size: 0.98rem;
}

.page-content p { margin-bottom: 1rem; }

.page-content ul,
.page-content ol {
    margin: 0 0 1.25rem 1.25rem;
    padding: 0;
}

.page-content li { margin-bottom: 0.5rem; }

.page-content a {
    color: var(--primary-dark);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(74, 144, 184, 0.45);
    transition: color var(--transition), border-color var(--transition);
}

.page-content a:not(.btn-primary):not(.btn-outline):not(.max-inline-link):not(.max-booking-link):hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.page-content a.btn-primary,
.cta-block a.btn-primary {
    color: #fff;
    border-bottom: none;
}

.page-content a.btn-primary:hover,
.cta-block a.btn-primary:hover {
    color: #fff;
}

.page-content a.btn-outline,
.cta-block a.btn-outline {
    color: var(--primary-dark);
    border: 2px solid var(--primary) !important;
    text-decoration: none;
    box-sizing: border-box;
}

.page-content a.btn-outline:hover,
.cta-block a.btn-outline:hover {
    color: var(--primary-dark);
    background: var(--primary-light);
    border-color: var(--primary) !important;
}

.max-inline-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    vertical-align: middle;
    border-bottom: none;
}

.max-inline-link img {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.page-content a.max-inline-link,
.cta-block a.max-inline-link {
    border-bottom: none;
}

.btn-outline.max-booking-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-outline.max-booking-link img {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.page-content a.btn-outline.max-booking-link,
.cta-block a.btn-outline.max-booking-link {
    border-bottom: 2px solid var(--primary) !important;
}

.breadcrumbs {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    align-items: center;
}

.breadcrumbs a {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(74, 144, 184, 0.35);
}

.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs [aria-current="page"] { color: var(--text-muted); font-weight: 500; }

/* ========== COMPONENTS ========== */
.service-links-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.85rem;
}

.service-links-list li {
    background: var(--gray-50);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    transition: box-shadow var(--transition), border-color var(--transition);
}

.service-links-list li:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.service-links-list a {
    font-weight: 600;
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 1rem;
    border-bottom: none;
    display: block;
}

.service-links-list a:hover { color: var(--primary); }

.service-links-list .desc {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 400;
    margin-top: 0.35rem;
    line-height: 1.55;
}

.price-table-wrap {
    overflow-x: auto;
    margin: 1rem 0 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    background: white;
}

.price-table th,
.price-table td {
    padding: 0.9rem 1.1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.price-table th {
    background: var(--gray-50);
    color: var(--gray-800);
    font-weight: 600;
}

.price-table tr:last-child td { border-bottom: none; }

.notice-box {
    background: #fff8f0;
    border: 1px solid rgba(212, 165, 116, 0.45);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.35rem;
    margin: 1.5rem 0;
}

.notice-box strong {
    display: block;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.notice-box p {
    margin-bottom: 0.65rem;
    font-size: 0.92rem;
}

.notice-box p:last-child { margin-bottom: 0; }

.disclaimer {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

.cta-block {
    margin-top: 2rem;
    padding: 1.75rem;
    background: var(--primary-light);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(74, 144, 184, 0.2);
    text-align: center;
}

.cta-block p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
}

.cta-phone {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-decoration: none;
    border-bottom: none;
}

.page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 2rem;
    align-items: center;
}
.page-hero-grid .page-lead {
    margin-bottom: 0;
}
.page-hero-photo {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(44, 62, 80, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.6);
}
.page-hero-photo img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}
@media (max-width: 800px) {
    .page-hero-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .page-hero-photo {
        max-width: 520px;
    }
    .page-hero-photo img {
        height: 220px;
    }
}

.related-links {
    margin-top: 2.5rem;
    padding: 1.5rem 1.75rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.related-links h2 {
    font-size: 1.1rem;
    margin: 0 0 0.85rem;
}

.related-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
}

.related-links a {
    display: inline-block;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    padding: 0.4rem 0.85rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 50px;
    transition: all var(--transition);
    border-bottom: 1px solid var(--border);
}

@media (hover: hover) {
    .related-links a:hover {
        color: var(--primary-dark);
        background: var(--primary-light);
        border-color: var(--primary);
    }
}

.hub-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 1rem;
    border-bottom: 1px solid rgba(74, 144, 184, 0.45);
}

.hub-link:hover { color: var(--primary); }

/* ========== FAQ ========== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.faq-item {
    background: var(--gray-50);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-item summary {
    padding: 1.1rem 1.25rem;
    font-weight: 600;
    color: var(--gray-800);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-size: 1.25rem;
    color: var(--primary);
    flex-shrink: 0;
}

.faq-item[open] summary::after { content: '−'; }

.faq-item p {
    padding: 0 1.25rem 1.15rem;
    font-size: 0.92rem;
    margin-bottom: 0;
}

.faq-item p a {
    color: var(--primary-dark);
    font-weight: 600;
}

/* ========== FOOTER ========== */
.footer {
    background: #1B3A4B;
    color: rgba(255, 255, 255, 0.8);
    padding: 2rem 1.5rem;
    font-size: 0.9rem;
}

.footer-inner {
    max-width: none;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
}

.footer-copy {
    margin: 0;
    max-width: 360px;
    line-height: 1.5;
}

.footer-nav-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.75rem;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: nowrap;
    gap: 0.45rem 0.95rem;
}

.footer-nav {
    flex: 1;
    min-width: 200px;
}

.footer-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.footer-nav-list a {
    white-space: nowrap;
}

.footer-nav-list a,
.footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color var(--transition);
}

.footer a:hover { color: white; }

.footer-max {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
}

.footer-max img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    border-radius: 6px;
    display: block;
    flex-shrink: 0;
}

.footer-b17 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
}
.footer-b17:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}
.footer-b17 img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 6px;
    display: block;
    flex-shrink: 0;
}

.footer-nap {
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-nap a {
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.footer-legal {
    text-align: center;
    font-size: 0.82rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: underline;
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 30, 40, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
    z-index: 999;
}
.nav-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}
.footer-nap a[href^="tel:"],
.footer-nap a[href^="mailto:"] {
    white-space: nowrap;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1000px) {
    .header { padding: 0 1rem; }
    .nav-container { height: 64px; }
    .header nav { flex: 0; width: 0; overflow: visible; }
    .logo { flex: 1; max-width: calc(100% - 52px); }
    .logo span {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 1.02rem;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(75vw, 340px);
        height: 100vh;
        height: 100dvh;
        background: white;
        flex-direction: column;
        align-items: stretch;
        padding: 88px 1.5rem 2rem;
        gap: 1.25rem;
        box-shadow: var(--shadow-xl);
        transition: right var(--transition);
        z-index: 1000;
        overflow-y: auto;
    }
    .nav-links.active { right: 0; }
    .nav-links li { width: 100%; }
    .nav-links a.nav-link { display: block; font-size: 1rem; }
    .nav-links a.nav-link::after { display: none; }
    .burger { display: flex; margin-left: auto; }
    .nav-links .btn-primary { width: 100%; text-align: center; }
    .nav-max-item { display: list-item; width: 100%; }
    .nav-links li:has(> a[href="/uslugi/"]) { display: list-item; }
    .nav-links .nav-max-link {
        display: flex;
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }
    .nav-close {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 16px;
        right: 16px;
        width: 42px;
        height: 42px;
        padding: 0;
        border: none;
        background: transparent;
        color: var(--gray-800);
        font-size: 2rem;
        line-height: 1;
        cursor: pointer;
        z-index: 1;
    }
    .page-hero { padding-top: 100px; }
}

@media (max-width: 900px) {
    .section { padding: 60px 1rem; }
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-copy { text-align: center; max-width: none; }
    .footer-nav-title { text-align: center; }
    .footer-nav-list { justify-content: center; flex-wrap: wrap; }
}

@media (max-width: 600px) {
    .cta-actions { flex-direction: column; }
    .cta-actions .btn-primary { width: 100%; }
}

/* ========== BLOG ========== */
.article-meta {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.blog-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.4rem;
    transition: box-shadow var(--transition), transform var(--transition);
}

.blog-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.blog-card h2 {
    font-size: 1.1rem;
    margin: 0 0 0.6rem;
    line-height: 1.35;
}

.blog-card h2 a {
    color: var(--primary-dark);
    text-decoration: none;
    border-bottom: none;
    font-weight: 600;
}

.blog-card h2 a:hover { color: var(--primary); }

.blog-card p {
    font-size: 0.92rem;
    color: var(--text-light);
    margin-bottom: 0.85rem;
    line-height: 1.6;
}

.blog-card .read-more {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary-dark);
    text-decoration: none;
    border-bottom: 1px solid rgba(74, 144, 184, 0.45);
}

.blog-card .read-more:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.author-box {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;
    padding: 1.25rem 1.35rem;
    background: var(--gray-50);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.author-box img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-box p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.55;
}

.author-box a {
    font-weight: 600;
}

.score-ranges li strong {
    color: var(--gray-800);
}

.blog-hub-cta {
    margin-top: 2.5rem;
}

@media (max-width:1100px){
    .footer-nav-list { flex-wrap: wrap; }
}

/* ===== FOOTER v4 ===== */
.footer { text-align: left; }
.footer-inner { align-items: stretch; text-align: left; gap: 1.75rem; max-width: 1200px; }
.footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-start; gap: 1.5rem; }
.footer-intro { max-width: 360px; }
.footer-brand { display: inline-flex; flex-direction: column; align-items: flex-start; gap: 0.15rem; text-decoration: none; margin-bottom: 0.85rem; }
.footer-brand img { width: 48px; height: 48px; object-fit: contain; border-radius: 12px; display: block; margin-bottom: 0.3rem; }
.footer-brand-name { font-weight: 700; font-size: 1.02rem; color: #fff; }
.footer-brand-sub { font-size: 0.85rem; color: rgba(255,255,255,0.72); }
.footer-copy { text-align: left; margin: 0; max-width: none; }
.footer-nav { flex: 1; min-width: 200px; }
.footer-nav-title { text-align: left; }
.footer-nav-list { justify-content: flex-start; flex-wrap: wrap; }
.footer-actions { justify-content: flex-start; }
.footer-nap { text-align: center; }
.footer-legal { text-align: center; }
@media (max-width: 900px){ .footer-top { flex-direction: column; align-items: center; text-align: center; } .footer-intro { max-width: none; } .footer-brand { align-items: center; } .footer-copy { text-align: center; } .footer-nav-title { text-align: center; } .footer-nav-list { justify-content: center; } .footer-actions { justify-content: center; } }
