:root {
    --ink: #162331;
    --muted: #647487;
    --line: #d9e2ea;
    --surface: #ffffff;
    --soft: #f4f8fb;
    --blue: #0d6fb8;
    --blue-dark: #084d82;
    --green: #1f9a7a;
    --amber: #f0b44c;
    --shadow: 0 18px 45px rgba(22, 35, 49, .12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    background: var(--surface);
}

a {
    color: var(--blue);
    text-decoration: none;
}

a:hover {
    color: var(--blue-dark);
}

img {
    max-width: 100%;
    height: auto;
}

svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

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

.skip-link {
    position: absolute;
    left: -999px;
    top: 8px;
    z-index: 20;
    padding: 8px 12px;
    background: var(--ink);
    color: #fff;
}

.skip-link:focus {
    left: 8px;
}

.topbar {
    background: var(--ink);
    color: #d7e4ef;
    font-size: .92rem;
}

.topbar__inner,
.header-main,
.cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.topbar__inner {
    min-height: 42px;
    flex-wrap: wrap;
}

.topbar a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-weight: 700;
}

.topbar a svg {
    width: .95rem;
    height: .95rem;
    color: #7fb7e3;
}

.topbar__phones {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    justify-content: flex-end;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.header-main {
    min-height: 70px;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand img {
    display: block;
    width: 174px;
    height: auto;
    object-fit: contain;
}

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

.main-nav a {
    color: var(--ink);
    font-size: .92rem;
    font-weight: 700;
    line-height: 1.2;
    padding: 8px 10px;
    border-radius: 6px;
}

.main-nav a:hover,
.main-nav .is-active {
    background: var(--soft);
    color: var(--blue-dark);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    border-radius: 6px;
}

.hero {
    color: #fff;
    background:
        linear-gradient(115deg, rgba(7, 25, 55, .99), rgba(10, 54, 96, .94)),
        repeating-linear-gradient(135deg, rgba(255,255,255,.1) 0 1px, transparent 1px 18px);
}

.hero--home {
    min-height: 520px;
}

.hero--page {
    min-height: 360px;
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, .75fr);
    gap: 44px;
    align-items: center;
    padding: 78px 0;
}

.hero h1 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(2.1rem, 4vw, 4.6rem);
    line-height: 1.05;
    letter-spacing: 0;
}

.hero p {
    max-width: 670px;
    margin: 22px 0 0;
    color: #e5f1fb;
    font-size: 1.16rem;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--amber);
    font-weight: 800;
    text-transform: uppercase;
    font-size: .78rem;
    letter-spacing: .08em;
}

.hero__actions,
.cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 11px 18px;
    border: 1px solid var(--green);
    border-radius: 6px;
    background: var(--green);
    color: #fff;
    font-weight: 800;
}

.button:hover {
    background: #167e64;
    border-color: #167e64;
    color: #fff;
}

.button--secondary {
    background: #fff;
    border-color: #fff;
    color: var(--blue-dark);
}

.button--light {
    background: #fff;
    border-color: #fff;
    color: var(--blue-dark);
}

.button--outline-light {
    background: transparent;
    border-color: rgba(255,255,255,.65);
    color: #fff;
}

.hero-panel,
.hero-mark {
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 8px;
    background: rgba(255, 255, 255, .13);
    box-shadow: var(--shadow);
}

.hero-panel {
    display: grid;
    gap: 12px;
    padding: 22px;
}

.hero-panel div {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 10px 12px;
    border-radius: 6px;
    background: rgba(255,255,255,.14);
}

.hero-mark {
    display: grid;
    place-items: center;
    min-height: 260px;
}

.hero-mark svg {
    width: 136px;
    height: 136px;
    color: #fff;
}

.section {
    padding: 70px 0;
}

.section--muted {
    background: var(--soft);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 26px;
}

.section-heading h2,
.split h2,
.content-card h2 {
    margin: 0 0 12px;
    font-size: clamp(1.65rem, 2.2vw, 2.35rem);
    line-height: 1.15;
    letter-spacing: 0;
}

.content-card h3,
.content-card h4 {
    margin: 28px 0 10px;
    line-height: 1.2;
    letter-spacing: 0;
}

.content-card h3 {
    font-size: 1.35rem;
}

.content-card h4 {
    font-size: 1.12rem;
}

.section-heading p,
.split p,
.content-card p,
.side-panel p {
    color: var(--muted);
}

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

.service-card {
    padding: 22px;
    min-height: 250px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(22, 35, 49, .06);
}

.service-card .icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 6px;
    color: var(--blue);
    background: #e9f4fb;
}

.service-card h3 {
    margin: 16px 0 8px;
    font-size: 1.2rem;
    line-height: 1.25;
}

.service-card p {
    margin: 0 0 14px;
    color: var(--muted);
}

.text-link {
    font-weight: 800;
}

.split,
.content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
    gap: 34px;
    align-items: start;
}

.process-list {
    display: grid;
    gap: 12px;
}

.process-list div {
    display: flex;
    gap: 14px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.process-list strong {
    display: grid;
    place-items: center;
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
}

.article-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.article-list a {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 4px 12px;
    min-height: 92px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
}

.article-list span {
    grid-row: span 2;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background: #eef7f4;
    color: var(--green);
}

.article-list small {
    color: var(--muted);
}

.content-card,
.side-panel {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(22, 35, 49, .06);
}

.content-card {
    padding: 30px;
}

.home-content {
    max-width: 1120px;
}

.content-card p {
    font-size: 1.05rem;
}

.source-note {
    padding: 10px 12px;
    border-left: 4px solid var(--amber);
    background: #fff8eb;
    color: #7a5416;
}

.step-list {
    padding-left: 20px;
}

.step-list li {
    margin: 8px 0;
}

.locations {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.locations section {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--soft);
}

.locations h2,
.side-panel h2 {
    margin: 0 0 10px;
    font-size: 1.1rem;
}

.locations p,
.side-panel li,
.site-footer li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.side-panel {
    position: sticky;
    top: 112px;
    padding: 22px;
}

.side-panel ul,
.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.side-panel li {
    padding: 9px 0;
    border-top: 1px solid var(--line);
}

.call-line {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2rem;
    font-weight: 900;
}

.phone-list {
    display: grid;
    gap: 10px;
}

.phone-list .call-line {
    align-items: flex-start;
    font-size: 1rem;
}

.phone-list .call-line span {
    color: var(--muted);
    font-weight: 700;
}

.cta-band {
    background: linear-gradient(100deg, var(--blue-dark), var(--green));
    color: #fff;
}

.cta-band__inner {
    padding: 28px 0;
}

.cta-band strong,
.cta-band span {
    display: block;
}

.cta-band span {
    color: #e0f3ee;
}

.site-footer {
    background: #101923;
    color: #cbd6df;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr 1fr;
    gap: 30px;
    padding: 46px 0;
}

.site-footer h2 {
    color: #fff;
    margin: 0 0 12px;
    font-size: 1.12rem;
}

.site-footer a {
    color: #fff;
}

.site-footer li {
    margin: 8px 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
    padding: 16px 0;
    font-size: .95rem;
}

@media (max-width: 860px) {
    .topbar__inner {
        justify-content: center;
    }

    .topbar__phones {
        justify-content: center;
    }

    .menu-toggle {
        display: grid;
    }

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

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

    .hero__grid,
    .split,
    .content-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero__grid {
        padding: 56px 0;
    }

    .card-grid,
    .article-list {
        grid-template-columns: 1fr;
    }

    .side-panel {
        position: static;
    }

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

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

    .topbar__inner {
        gap: 8px;
        text-align: center;
    }

    .header-main {
        min-height: 64px;
    }

    .brand img {
        width: 150px;
    }

    .main-nav {
        top: 116px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .content-card {
        padding: 20px;
    }
}
