:root {
    --navy: #0b335c;
    --navy-dark: #062744;
    --gold: #c9a227;
    --gold-dark: #a8841c;
    --blue: #2563eb;
    --purple: #7c3aed;
    --green: #059669;
    --red: #dc2626;
    --bg: #f8fafc;
    --soft: #eef4fb;
    --white: #ffffff;
    --text: #1f2937;
    --muted: #64748b;
    --border: #e5e7eb;
    --shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background:
        linear-gradient(rgba(248, 250, 252, 0.94), rgba(248, 250, 252, 0.96)),
        url('/assets/images/law-bg.jpg') center/cover fixed;
    color: var(--text);
    line-height: 1.65;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}


/* ================================
   SLC Cloned Header
================================ */

.slc-site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.04);
}

.slc-header-container {
    width: min(1220px, calc(100% - 32px));
    min-height: 90px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 230px 1fr auto;
    align-items: center;
    gap: 28px;
}

.slc-header-logo {
    display: inline-flex;
    align-items: center;
    width: 170px;
    max-width: 100%;
}

.slc-header-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.slc-header-logo span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 92px;
    height: 44px;
    border-radius: 14px;
    background: #0b335c;
    color: #ffffff;
    font-weight: 900;
    letter-spacing: 0.06em;
}

.slc-main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.slc-main-nav > a,
.slc-dropdown-toggle {
    min-height: 44px;
    padding: 0 19px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #4f4f5a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font: inherit;
    font-size: 14.5px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: 0.22s ease;
    white-space: nowrap;
}

.slc-main-nav > a:hover,
.slc-main-nav > a.active,
.slc-nav-dropdown.active > .slc-dropdown-toggle,
.slc-nav-dropdown:hover > .slc-dropdown-toggle {
    background: #eef2f8;
    color: #12345c;
}

.slc-dropdown-toggle span {
    font-size: 13px;
    line-height: 1;
    transform: translateY(-1px);
}

.slc-nav-dropdown {
    position: relative;
}

.slc-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    width: 250px;
    padding: 13px 0;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 14px;
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.14);
    transform: translateX(-50%) translateY(8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.22s ease;
}

.slc-dropdown-menu::before {
    content: "";
    position: absolute;
    top: -11px;
    left: 0;
    right: 0;
    height: 12px;
}

.slc-nav-dropdown:hover .slc-dropdown-menu,
.slc-nav-dropdown:focus-within .slc-dropdown-menu,
.slc-nav-dropdown.open .slc-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.slc-dropdown-menu a {
    display: block;
    padding: 12px 25px;
    color: #555560;
    font-size: 14.5px;
    font-weight: 800;
    line-height: 1.2;
    transition: 0.2s ease;
}

.slc-dropdown-menu a:hover {
    background: #f6f8fc;
    color: #12345c;
    padding-left: 30px;
}

.slc-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 13px;
}

.slc-call-btn,
.slc-consult-btn {
    min-height: 50px;
    padding: 0 27px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    transition: 0.24s ease;
    white-space: nowrap;
}

.slc-call-btn {
    color: #12345c;
    background: #ffffff;
    border: 2px solid #12345c;
}

.slc-call-btn:hover {
    background: #12345c;
    color: #ffffff;
    transform: translateY(-2px);
}

.slc-phone-icon {
    font-size: 16px;
    line-height: 1;
}

.slc-consult-btn {
    color: #ffffff;
    background: linear-gradient(135deg, #ed2aa0, #df148d);
    border: 2px solid transparent;
    box-shadow: 0 18px 32px rgba(223, 20, 141, 0.32);
}

.slc-consult-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 42px rgba(223, 20, 141, 0.42);
}

.slc-nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 14px;
    background: #12345c;
    padding: 10px;
    cursor: pointer;
}

.slc-nav-toggle span {
    display: block;
    height: 2px;
    background: #ffffff;
    border-radius: 999px;
    margin: 6px 0;
    transition: 0.25s ease;
}

/* Disable old header if it still exists somewhere */
.site-header {
    display: none;
}

/* Tablet */
@media (max-width: 1080px) {
    .slc-header-container {
        grid-template-columns: 190px 1fr auto;
        gap: 16px;
    }

    .slc-main-nav > a,
    .slc-dropdown-toggle {
        padding: 0 13px;
        font-size: 13.5px;
    }

    .slc-call-btn,
    .slc-consult-btn {
        padding: 0 18px;
    }
}

/* Mobile */
@media (max-width: 900px) {
    .slc-header-container {
        min-height: 78px;
        grid-template-columns: 1fr auto;
    }

    .slc-header-logo {
        width: 150px;
    }

    .slc-nav-toggle {
        display: block;
        grid-column: 2;
        grid-row: 1;
    }

    .slc-main-nav {
        grid-column: 1 / -1;
        display: none;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        width: 100%;
        padding: 16px;
        margin-bottom: 16px;
        background: #ffffff;
        border: 1px solid rgba(226, 232, 240, 0.95);
        border-radius: 22px;
        box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    }

    .slc-main-nav.open {
        display: flex;
    }

    .slc-main-nav > a,
    .slc-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        min-height: 48px;
        border-radius: 14px;
        padding: 0 16px;
    }

    .slc-nav-dropdown {
        width: 100%;
    }

    .slc-dropdown-menu {
        position: static;
        width: 100%;
        margin-top: 8px;
        padding: 8px;
        border-radius: 16px;
        box-shadow: none;
        background: #f8fafc;
        transform: none;
        display: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .slc-dropdown-menu::before {
        display: none;
    }

    .slc-nav-dropdown.open .slc-dropdown-menu {
        display: block;
        transform: none;
    }

    .slc-nav-dropdown:hover .slc-dropdown-menu {
        transform: none;
    }

    .slc-dropdown-menu a {
        border-radius: 12px;
        padding: 12px 14px;
    }

    .slc-dropdown-menu a:hover {
        padding-left: 18px;
    }

    .slc-header-actions {
        grid-column: 1 / -1;
        display: none;
        width: 100%;
        padding-bottom: 16px;
    }

    .slc-main-nav.open + .slc-header-actions {
        display: flex;
    }

    .slc-call-btn,
    .slc-consult-btn {
        flex: 1;
        min-height: 48px;
        padding: 0 14px;
    }
}

@media (max-width: 520px) {
    .slc-header-container {
        width: min(100% - 22px, 1220px);
    }

    .slc-header-logo {
        width: 135px;
    }

    .slc-header-actions {
        flex-direction: column;
    }

    .slc-call-btn,
    .slc-consult-btn {
        width: 100%;
    }
}


.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.nav-wrap {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    color: var(--white);
    border-radius: 16px;
    box-shadow: 0 12px 24px rgba(11, 51, 92, 0.18);
    font-size: 22px;
}

.brand strong {
    display: block;
    color: var(--navy);
    font-size: 19px;
    letter-spacing: -0.02em;
}

.brand small {
    display: block;
    color: var(--muted);
    font-size: 12px;
    margin-top: -3px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav a {
    color: #334155;
    padding: 10px 13px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    transition: 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
    background: #eef4fb;
    color: var(--navy);
}

.main-nav .nav-cta {
    background: var(--gold);
    color: var(--navy-dark);
    box-shadow: 0 12px 25px rgba(201, 162, 39, 0.25);
}

.main-nav .nav-cta:hover {
    background: var(--gold-dark);
    color: #fff;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: var(--navy);
    border-radius: 14px;
    padding: 10px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    transition: 0.25s ease;
}

.hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(11, 51, 92, 0.92), rgba(6, 39, 68, 0.78)),
        url('/assets/images/law-bg.jpg') center/cover;
}

.hero::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -160px;
    top: 110px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.38), transparent 62%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    color: #fff;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    background: rgba(201, 162, 39, 0.12);
    border: 1px solid rgba(201, 162, 39, 0.28);
    padding: 7px 13px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero h1,
.page-hero h1,
.article-hero h1 {
    margin: 18px 0;
    line-height: 1.05;
    letter-spacing: -0.055em;
}

.hero h1 {
    max-width: 820px;
    font-size: clamp(42px, 6vw, 76px);
}

.hero p {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 19px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    font-weight: 800;
    transition: 0.25s ease;
}

.btn-gold {
    background: var(--gold);
    color: var(--navy-dark);
    box-shadow: 0 18px 30px rgba(201, 162, 39, 0.28);
}

.btn-gold:hover {
    background: var(--gold-dark);
    color: #fff;
    transform: translateY(-2px);
}

.btn-light {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn-light:hover {
    background: #fff;
    color: var(--navy);
}

.btn-outline {
    background: #fff;
    color: var(--navy);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.hero-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 34px;
    padding: 34px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.hero-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 22px;
    background: linear-gradient(135deg, #fff8df, #fef3c7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 18px;
}

.hero-card h3 {
    color: var(--navy);
    font-size: 26px;
    line-height: 1.2;
    margin: 0 0 10px;
}

.hero-card p {
    color: var(--muted);
}

.hero-card ul {
    padding: 0;
    margin: 18px 0 0;
    list-style: none;
}

.hero-card li {
    padding: 12px 0 12px 30px;
    border-top: 1px solid var(--border);
    position: relative;
    font-weight: 700;
}

.hero-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 900;
}

.section {
    padding: 88px 0;
}

.soft-bg {
    background: rgba(238, 244, 251, 0.72);
}

.section-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 46px;
}

.section-heading h2,
.two-col h2,
.contact-info h2,
.contact-form h2 {
    color: var(--navy);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.12;
    letter-spacing: -0.04em;
    margin: 16px 0;
}

.section-heading p {
    color: var(--muted);
    font-size: 17px;
}

.stats-band {
    padding: 34px 0;
    background: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.stats-grid div {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
}

.stats-grid strong {
    display: block;
    color: var(--navy);
    font-size: 30px;
    line-height: 1;
}

.stats-grid span {
    color: var(--muted);
    font-weight: 700;
    font-size: 14px;
}

.card-grid,
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card,
.news-card,
.value-card,
.practice-card,
.contact-form,
.contact-info,
.empty-state {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: var(--radius);
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.07);
}

.service-card {
    padding: 28px;
    transition: 0.25s ease;
}

.service-card:hover,
.news-card:hover,
.practice-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.service-icon {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    background: linear-gradient(135deg, #eef4fb, #fff8df);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 18px;
}

.service-card h3,
.news-card h3,
.practice-card h2 {
    color: var(--navy);
    margin: 0 0 10px;
    line-height: 1.25;
}

.service-card p,
.news-card p,
.practice-card p,
.value-card p {
    color: var(--muted);
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 46px;
    align-items: center;
}

.check-list {
    display: grid;
    gap: 13px;
    margin-top: 24px;
}

.check-list span {
    position: relative;
    padding-left: 34px;
    font-weight: 700;
    color: #334155;
}

.check-list span::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -2px;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 150, 105, 0.1);
    color: var(--green);
    font-weight: 900;
}

.image-panel {
    min-height: 420px;
    border-radius: 34px;
    padding: 28px;
    background:
        linear-gradient(135deg, rgba(11, 51, 92, 0.72), rgba(201, 162, 39, 0.32)),
        url('/assets/images/law-bg.jpg') center/cover;
    display: flex;
    align-items: flex-end;
}

.glass-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 26px;
    padding: 28px;
    backdrop-filter: blur(16px);
}

.glass-card h3 {
    color: var(--navy);
    margin-top: 0;
}

.news-card {
    overflow: hidden;
    transition: 0.25s ease;
}

.news-image {
    height: 230px;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-body {
    padding: 24px;
}

.meta,
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.meta span:first-child,
.article-meta span:first-child {
    color: var(--gold-dark);
}

.news-card h3 a:hover,
.read-more:hover {
    color: var(--gold-dark);
}

.read-more {
    color: var(--navy);
    font-weight: 900;
}

.center {
    text-align: center;
}

.mt-30 {
    margin-top: 30px;
}

.cta-section {
    padding: 64px 0 94px;
}

.cta-box {
    background:
        linear-gradient(135deg, rgba(11, 51, 92, 0.94), rgba(6, 39, 68, 0.92)),
        url('/assets/images/law-bg.jpg') center/cover;
    color: #fff;
    border-radius: 34px;
    padding: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    box-shadow: var(--shadow);
}

.cta-box h2 {
    margin: 10px 0;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
}

.page-hero,
.article-hero {
    background:
        linear-gradient(135deg, rgba(11, 51, 92, 0.94), rgba(6, 39, 68, 0.88)),
        url('/assets/images/law-bg.jpg') center/cover;
    color: #fff;
    padding: 105px 0;
}

.page-hero h1,
.article-hero h1 {
    max-width: 900px;
    font-size: clamp(40px, 5vw, 68px);
}

.page-hero p,
.article-hero p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
}

.practice-list {
    display: grid;
    gap: 22px;
}

.practice-card {
    padding: 30px;
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 24px;
    transition: 0.25s ease;
}

.practice-icon {
    width: 76px;
    height: 76px;
    border-radius: 24px;
    background: linear-gradient(135deg, #eef4fb, #fff8df);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
}

.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 34px;
}

.filter-pills a {
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: #fff;
    color: #334155;
    font-weight: 800;
}

.filter-pills a.active,
.filter-pills a:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}

.pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 38px;
}

.pagination a {
    min-width: 42px;
    height: 42px;
    border-radius: 14px;
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    font-weight: 800;
}

.pagination a.active,
.pagination a:hover {
    background: var(--gold);
    color: var(--navy-dark);
}

.article-wrap {
    max-width: 900px;
}

.article-image {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: 30px;
    margin-bottom: 34px;
    box-shadow: var(--shadow);
}

.article-content {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 34px;
    color: #334155;
    font-size: 18px;
    white-space: normal;
}

.article-back {
    margin-top: 28px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 32px;
    align-items: start;
}

.contact-info,
.contact-form,
.value-card,
.empty-state {
    padding: 32px;
}

.contact-item {
    padding: 18px 0;
    border-top: 1px solid var(--border);
}

.contact-item strong,
.contact-item span {
    display: block;
}

.contact-item strong {
    color: var(--navy);
}

.contact-form {
    display: grid;
    gap: 16px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    color: #334155;
    font-weight: 800;
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 13px 15px;
    font: inherit;
    color: var(--text);
    background: #fff;
    outline: none;
    transition: 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.12);
}

.alert {
    padding: 14px 16px;
    border-radius: 16px;
    font-weight: 700;
}

.alert.success {
    background: rgba(5, 150, 105, 0.1);
    color: #047857;
}

.alert.error {
    background: rgba(220, 38, 38, 0.1);
    color: #b91c1c;
}

.empty-state {
    grid-column: 1 / -1;
    text-align: center;
}

/* ================================
   SLC Footer
================================ */

.slc-footer {
    position: relative;
    background: #0d1b2f;
    color: rgba(255, 255, 255, 0.72);
    overflow: hidden;
}

.slc-footer-topline {
    height: 3px;
    width: 100%;
    background: #e83a9a;
}

.slc-footer-inner {
    padding: 82px 0 0;
}

.slc-footer-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.7fr 0.85fr;
    gap: 90px;
    padding-bottom: 76px;
}

.slc-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #ffffff;
    margin-bottom: 22px;
}

.slc-footer-logo {
    width: 50px;
    height: 50px;
    border-radius: 999px;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex: 0 0 auto;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.slc-footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

.slc-footer-logo span {
    color: #0d1b2f;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.slc-footer-brand-text strong {
    display: block;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.slc-footer-brand-text small {
    display: block;
    margin-top: 5px;
    color: #ff9acb;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.slc-footer-about p {
    max-width: 350px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15.5px;
    line-height: 1.55;
}

.slc-footer h4 {
    position: relative;
    display: inline-block;
    margin: 0 0 34px;
    color: #ffffff;
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.slc-footer h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -14px;
    width: 32px;
    height: 2px;
    background: #e83a9a;
    border-radius: 999px;
}

.slc-footer-links nav {
    display: grid;
    gap: 17px;
}

.slc-footer a {
    transition: 0.25s ease;
}

.slc-footer-links a,
.slc-footer-contact a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    font-weight: 600;
}

.slc-footer-links a:hover,
.slc-footer-contact a:hover {
    color: #ffffff;
}

.slc-footer-contact p {
    margin: 0 0 17px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15.5px;
    font-weight: 600;
}

.slc-socials {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
}

.slc-socials a {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.055);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 900;
    line-height: 1;
}

.slc-socials a:hover {
    background: #e83a9a;
    color: #ffffff;
    transform: translateY(-2px);
}

.slc-footer-bottom {
    min-height: 86px;
    border-top: 1px solid rgba(255, 255, 255, 0.075);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.slc-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 14.5px;
}

.slc-footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.slc-footer-bottom-links > a {
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    font-weight: 600;
}

.slc-footer-bottom-links > a:hover {
    color: #ffffff;
}

.slc-return-top {
    border: 0;
    min-height: 38px;
    padding: 0 20px;
    border-radius: 999px;
    background: #244b88;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font: inherit;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 18px 36px rgba(36, 75, 136, 0.32);
    transition: 0.25s ease;
}

.slc-return-top span {
    font-size: 18px;
    line-height: 1;
}

.slc-return-top:hover {
    background: #2d5aa3;
    transform: translateY(-2px);
}

@media (max-width: 980px) {
    .slc-footer-inner {
        padding-top: 58px;
    }

    .slc-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 44px;
        padding-bottom: 56px;
    }

    .slc-footer-about {
        grid-column: 1 / -1;
    }

    .slc-footer-about p {
        max-width: 620px;
    }
}

@media (max-width: 650px) {
    .slc-footer-inner {
        padding-top: 46px;
    }

    .slc-footer-grid {
        grid-template-columns: 1fr;
        gap: 38px;
        padding-bottom: 44px;
    }

    .slc-footer-bottom {
        min-height: auto;
        padding: 24px 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .slc-footer-bottom-links {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .slc-return-top {
        padding: 0 17px;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 960px) {
    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 82px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: #fff;
        padding: 14px;
        border: 1px solid var(--border);
        border-radius: 22px;
        box-shadow: var(--shadow);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        border-radius: 14px;
    }

    .hero {
        min-height: auto;
        padding: 90px 0;
    }

    .hero-inner,
    .two-col,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .card-grid,
    .news-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 22px, 1180px);
    }

    .nav-wrap {
        min-height: 74px;
    }

    .main-nav {
        top: 74px;
    }

    .brand small {
        display: none;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-card,
    .contact-info,
    .contact-form,
    .article-content {
        padding: 24px;
    }

    .card-grid,
    .news-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .practice-card {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 64px 0;
    }

    .page-hero,
    .article-hero {
        padding: 78px 0;
    }
}