:root {
    --primary: #005eb8;
    --primary-dark: #003d78;
    --primary-deep: #002f5f;
    --primary-soft: #e8f2fb;
    --accent: #007f6d;
    --accent-soft: #e7f5f2;
    --page: #f4f6f8;
    --surface: #ffffff;
    --surface-muted: #f8fafc;
    --text: #17212b;
    --text-soft: #425466;
    --muted: #64748b;
    --border: #d8e0e8;
    --border-strong: #c3ced9;
    --shadow-sm: 0 4px 14px rgba(15,35,55,.06);
    --shadow-md: 0 14px 36px rgba(15,35,55,.10);
    --shadow-lg: 0 24px 60px rgba(15,35,55,.14);
    --radius-md: 16px;
    --radius-lg: 24px;
    --focus: 0 0 0 4px rgba(0,94,184,.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    min-height: 100%;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
    background: var(--page);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
button, input { font: inherit; }

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

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

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

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    text-decoration: none;
}

.brand-mark {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(145deg, var(--primary), var(--primary-dark));
    box-shadow: 0 8px 20px rgba(0,94,184,.22);
}

.brand-mark svg { width: 23px; height: 23px; }
.brand-copy { min-width: 0; }

.brand-title {
    display: block;
    font-size: 17px;
    font-weight: 800;
    color: var(--primary-deep);
}

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

.header-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link {
    padding: 9px 11px;
    border-radius: 9px;
    color: var(--text-soft);
    font-size: 14px;
    font-weight: 650;
    text-decoration: none;
}

.nav-link:hover {
    color: var(--primary);
    background: var(--primary-soft);
}

.btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 10px 16px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 750;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    user-select: none;
    transition: transform .12s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}

.btn svg { width: 17px; height: 17px; flex: 0 0 auto; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn:focus-visible,
.nav-link:focus-visible,
.chip:focus-visible,
.footer-link:focus-visible {
    outline: none;
    box-shadow: var(--focus);
}

.btn-primary {
    color: #fff;
    background: var(--primary);
    box-shadow: 0 8px 18px rgba(0,94,184,.20);
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    color: var(--primary-dark);
    background: #fff;
    border-color: #9bbbd8;
}

.btn-secondary:hover {
    background: var(--primary-soft);
    border-color: var(--primary);
}

.btn-white {
    color: var(--primary-deep);
    background: #fff;
    box-shadow: 0 10px 24px rgba(0,32,65,.16);
}

.btn-white:hover { background: #f4f9fd; }

.hero-wrap { padding: 32px 0 0; }

.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border-radius: var(--radius-lg);
    color: #fff;
    background:
        linear-gradient(100deg, rgba(0,47,95,.98) 0%, rgba(0,61,120,.94) 48%, rgba(0,94,184,.78) 100%),
        url("/resources/hero-mdt.png") center / cover no-repeat;
    box-shadow: var(--shadow-lg);
}

.hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 480px;
    height: 480px;
    right: -170px;
    top: -250px;
    border-radius: 50%;
    border: 80px solid rgba(255,255,255,.07);
}

.hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 260px;
    height: 260px;
    right: 18%;
    bottom: -210px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
}

.hero-inner {
    min-height: 440px;
    display: grid;
    grid-template-columns: minmax(0,1.35fr) minmax(280px,.65fr);
    gap: 52px;
    align-items: center;
    padding: 58px 58px 52px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 7px 10px;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 999px;
    color: rgba(255,255,255,.94);
    background: rgba(255,255,255,.10);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #69dfc8;
    box-shadow: 0 0 0 4px rgba(105,223,200,.14);
}

h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(34px,4.5vw,54px);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.hero-subtitle {
    max-width: 690px;
    margin: 20px 0 0;
    color: rgba(255,255,255,.86);
    font-size: 18px;
    line-height: 1.62;
}

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

.hero-note {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    max-width: 690px;
    margin-top: 20px;
    color: rgba(255,255,255,.74);
    font-size: 13px;
}

.hero-note svg {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    margin-top: 1px;
}

.hero-summary {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.summary-card {
    display: grid;
    grid-template-columns: 44px minmax(0,1fr);
    gap: 13px;
    align-items: center;
    padding: 15px;
    border: 1px solid rgba(255,255,255,.20);
    border-radius: 14px;
    background: rgba(255,255,255,.11);
    box-shadow: 0 12px 30px rgba(0,25,55,.14);
    backdrop-filter: blur(8px);
}

.summary-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: #fff;
    background: rgba(255,255,255,.14);
}

.summary-icon svg { width: 22px; height: 22px; }
.summary-label { color: rgba(255,255,255,.68); font-size: 12px; font-weight: 650; }
.summary-value { margin-top: 2px; color: #fff; font-size: 15px; font-weight: 800; }

.assurance-strip {
    position: relative;
    z-index: 2;
    width: calc(100% - 64px);
    margin: -24px auto 0;
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-md);
}

.assurance-item {
    display: grid;
    grid-template-columns: 38px minmax(0,1fr);
    gap: 11px;
    align-items: center;
    min-height: 88px;
    padding: 16px 18px;
}

.assurance-item + .assurance-item { border-left: 1px solid var(--border); }

.assurance-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: var(--primary);
    background: var(--primary-soft);
    font-weight: 800;
}

.assurance-title { font-size: 13px; font-weight: 800; color: var(--text); }
.assurance-copy { margin-top: 2px; color: var(--muted); font-size: 11.5px; line-height: 1.35; }

main { padding: 58px 0 64px; }
.section { margin-top: 24px; }
.section:first-child { margin-top: 0; }

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 20px;
}

.section-kicker {
    margin: 0 0 7px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(25px,3vw,34px);
    line-height: 1.18;
    letter-spacing: -.025em;
}

.section-description {
    max-width: 680px;
    margin: 9px 0 0;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.6;
}

.service-count {
    flex: 0 0 auto;
    padding: 8px 11px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text-soft);
    background: var(--surface);
    font-size: 12px;
    font-weight: 750;
}

.controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
    padding: 13px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.search {
    flex: 1 1 440px;
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 0 14px;
    border: 1px solid var(--border-strong);
    border-radius: 11px;
    background: var(--surface-muted);
}

.search:focus-within {
    border-color: var(--primary);
    background: #fff;
    box-shadow: var(--focus);
}

.search input {
    width: 100%;
    min-width: 0;
    padding: 0;
    border: 0;
    outline: 0;
    color: var(--text);
    background: transparent;
    font-size: 14px;
}

.chips { display: flex; flex-wrap: wrap; gap: 8px; }

.chip {
    min-height: 38px;
    padding: 8px 13px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text-soft);
    background: var(--surface);
    font-size: 12px;
    font-weight: 750;
    cursor: pointer;
}

.chip[aria-pressed="true"] {
    color: var(--primary-dark);
    border-color: #8fb9de;
    background: var(--primary-soft);
}

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

.card {
    position: relative;
    overflow: hidden;
    min-height: 245px;
    display: flex;
    flex-direction: column;
    padding: 23px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg,var(--primary),#1685cc);
}

.card:hover {
    transform: translateY(-4px);
    border-color: #a8c5df;
    box-shadow: var(--shadow-md);
}

.card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.service-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: var(--primary);
    background: var(--primary-soft);
    font-size: 11px;
    font-weight: 800;
}

.availability {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 8px;
    border-radius: 999px;
    color: #176858;
    background: var(--accent-soft);
    font-size: 10.5px;
    font-weight: 800;
    text-transform: uppercase;
}

.availability::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.card h3 {
    margin: 18px 0 0;
    color: var(--primary-deep);
    font-size: 18px;
    line-height: 1.3;
}

.card-description {
    margin: 8px 0 0;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.55;
}

.meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 15px;
}

.tag {
    padding: 5px 8px;
    border: 1px solid var(--border);
    border-radius: 7px;
    color: var(--muted);
    background: var(--surface-muted);
    font-size: 11px;
    font-weight: 650;
}

.actions { margin-top: auto; padding-top: 20px; }
.actions .btn { width: 100%; }

.empty,
.no-results {
    padding: 24px;
    border: 1px dashed var(--border-strong);
    border-radius: var(--radius-md);
    color: var(--text-soft);
    background: var(--surface);
    text-align: center;
}

.no-results { display: none; }

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

.benefit-card {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.benefit-number {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    color: #fff;
    background: var(--primary);
    font-size: 13px;
    font-weight: 850;
}

.benefit-card h3 {
    margin: 17px 0 7px;
    color: var(--primary-deep);
    font-size: 17px;
}

.benefit-card p {
    margin: 0;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.65;
}

.governance-panel {
    display: grid;
    grid-template-columns: minmax(0,1.1fr) minmax(300px,.9fr);
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow-md);
}

.governance-content { padding: 36px; }

.governance-content h2 {
    margin: 0;
    color: var(--primary-deep);
    font-size: 28px;
}

.governance-content > p {
    margin: 13px 0 0;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.7;
}

.governance-list {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 12px 24px;
    margin-top: 24px;
}

.governance-point {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.5;
}

.governance-point > span:first-child {
    color: var(--accent);
    font-weight: 800;
}

.governance-aside {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 36px;
    color: #fff;
    background: linear-gradient(145deg,var(--primary-dark),var(--primary-deep));
}

.governance-aside-label {
    color: rgba(255,255,255,.68);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.governance-aside h3 {
    margin: 10px 0 0;
    font-size: 23px;
    line-height: 1.3;
}

.governance-aside p {
    margin: 12px 0 0;
    color: rgba(255,255,255,.76);
    font-size: 13px;
    line-height: 1.65;
}

.cta-panel {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0,1fr) auto;
    gap: 28px;
    align-items: center;
    padding: 36px;
    border-radius: var(--radius-lg);
    color: #fff;
    background: linear-gradient(115deg,var(--primary),var(--primary-dark));
    box-shadow: var(--shadow-md);
}

.cta-content,
.cta-action { position: relative; z-index: 1; }

.cta-label {
    margin: 0 0 7px;
    color: rgba(255,255,255,.70);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.cta-panel h2 { margin: 0; font-size: 27px; }

.cta-panel p {
    max-width: 780px;
    margin: 10px 0 0;
    color: rgba(255,255,255,.80);
    font-size: 14px;
    line-height: 1.65;
}

.support-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 25px 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.support-copy {
    display: flex;
    align-items: center;
    gap: 15px;
}

.support-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: var(--primary);
    background: var(--primary-soft);
    font-weight: 800;
}

.support-panel h2 {
    margin: 0;
    font-size: 18px;
    color: var(--primary-deep);
}

.support-panel p {
    margin: 4px 0 0;
    color: var(--text-soft);
    font-size: 13px;
}

footer {
    padding: 26px 0 34px;
    border-top: 1px solid var(--border);
    color: var(--muted);
    background: #fff;
    font-size: 12px;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-link {
    color: var(--text-soft);
    text-decoration: none;
}

.footer-link:hover {
    color: var(--primary);
    text-decoration: underline;
}

@media (max-width: 1000px) {
    .hero-inner {
        gap: 30px;
        padding: 48px 38px;
    }

    .assurance-strip {
        width: calc(100% - 36px);
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .assurance-item:nth-child(3) {
        border-left: 0;
        border-top: 1px solid var(--border);
    }

    .assurance-item:nth-child(4) {
        border-top: 1px solid var(--border);
    }

    .grid,
    .benefit-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }
}

@media (max-width: 760px) {

    .header-nav .nav-link { display: none; }

    .hero-inner {

        min-height: auto;

        grid-template-columns: 1fr;

        padding: 40px 24px 56px;

    }

    .hero-summary {

        display: grid;

        grid-template-columns: repeat(3,minmax(0,1fr));

    }

    .summary-card {

        grid-template-columns: 1fr;

        align-items: start;

    }

    .section-heading,

    .controls {

        align-items: stretch;

        flex-direction: column;

    }

    .search {

        flex: 0 0 auto;

        width: 100%;

        min-height: 48px;

    }

    .governance-panel,

    .cta-panel {

        grid-template-columns: 1fr;

    }

    .governance-list { grid-template-columns: 1fr; }

    .cta-action .btn { width: 100%; }

}

@media (max-width: 600px) {
    .container { width: min(100% - 22px,1180px); }
    .brand-subtitle { display: none; }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn { width: 100%; }

    .hero-summary,
    .assurance-strip,
    .grid,
    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .summary-card {
        grid-template-columns: 44px minmax(0,1fr);
    }

    .assurance-item + .assurance-item,
    .assurance-item:nth-child(3),
    .assurance-item:nth-child(4) {
        border-top: 1px solid var(--border);
        border-left: 0;
    }

    .governance-content,
    .governance-aside,
    .cta-panel {
        padding: 27px 22px;
    }

    .support-panel {
        align-items: stretch;
        flex-direction: column;
    }

    .support-panel .btn { width: 100%; }

    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    *,
    *::before,
    *::after {
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}