:root {
    --navy-950: #07182f;
    --navy-900: #0b2d5c;
    --navy-800: #143f73;
    --navy-700: #24578d;
    --gold: #c8a34a;
    --gold-dark: #9f7d2f;
    --green: #217a4b;
    --green-dark: #185d39;
    --ink: #1f2832;
    --muted: #68737e;
    --line: #d9dfe5;
    --line-dark: #bdc7d0;
    --soft: #f5f7f9;
    --soft-blue: #eef3f8;
    --paper: #ffffff;
    --danger: #a12f2f;
    --danger-bg: #fff3f3;
    --success: #17663d;
    --success-bg: #eef8f2;
    --max: 1180px;
    --shadow: 0 18px 45px rgba(7, 24, 47, .12);
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    background: var(--paper);
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.62;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.container {
    width: min(calc(100% - 48px), var(--max));
    margin-inline: auto;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -80px;
    z-index: 9999;
    padding: 12px 16px;
    background: #fff;
    color: #000;
    border: 2px solid #000;
}

.skip-link:focus { top: 16px; }

/* Header */
.topbar {
    min-height: 36px;
    display: flex;
    align-items: center;
    background: var(--navy-950);
    color: #dce5ee;
    border-bottom: 1px solid rgba(255,255,255,.09);
    font-size: 12px;
}

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

.site-header {
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.header-inner {
    min-height: 94px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

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

.brand-copy strong {
    display: block;
    color: var(--navy-950);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 38px;
    line-height: .98;
    font-weight: 700;
    letter-spacing: -.052em;
}

.brand-copy span {
    display: block;
    margin-top: 7px;
    color: var(--gold-dark);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .19em;
    text-transform: uppercase;
}

.header-note {
    max-width: 320px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .13em;
    line-height: 1.7;
    text-transform: uppercase;
    text-align: right;
}

.nav-shell {
    background: var(--navy-900);
    border-bottom: 3px solid var(--gold);
}

.nav-inner {
    min-height: 54px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.primary-nav {
    display: flex;
    align-items: stretch;
}

.primary-nav a {
    min-width: 132px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    border-left: 1px solid rgba(255,255,255,.11);
    transition: background-color .16s ease;
}

.primary-nav a:last-child { border-right: 1px solid rgba(255,255,255,.11); }

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a[aria-current="page"] {
    background: var(--navy-800);
}

.nav-action {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 27px;
    background: var(--green);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    transition: background-color .16s ease;
}

.nav-action:hover,
.nav-action:focus-visible { background: var(--green-dark); }

.menu-toggle {
    display: none;
    width: 54px;
    min-height: 54px;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background: currentColor;
}

/* Buttons */
.button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: background-color .16s ease, border-color .16s ease, transform .16s ease;
}

.button:hover { transform: translateY(-1px); }

.button-primary {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--green-dark);
    border-color: var(--green-dark);
}

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

.button-light:hover,
.button-light:focus-visible { background: rgba(255,255,255,.09); }

/* Home hero */
.hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(110deg, var(--navy-950) 0%, var(--navy-900) 63%, #173f6c 100%);
    color: #fff;
}

.hero::before {
    content: "";
    position: absolute;
    top: -130px;
    right: -180px;
    width: 650px;
    height: 650px;
    border: 1px solid rgba(255,255,255,.075);
    transform: rotate(28deg);
}

.hero::after {
    content: "";
    position: absolute;
    right: 120px;
    bottom: -230px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(200,163,74,.18);
    transform: rotate(28deg);
}

.hero-inner {
    position: relative;
    z-index: 2;
    min-height: 525px;
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) 400px;
    align-items: center;
    gap: 72px;
    padding-block: 66px;
}

.hero-kicker {
    margin: 0 0 15px;
    color: #e0c36f;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 780px;
    margin: 0;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(44px, 5.2vw, 68px);
    line-height: 1.04;
    letter-spacing: -.038em;
}

.hero p {
    max-width: 720px;
    margin: 23px 0 0;
    color: #dce5ed;
    font-size: 19px;
    line-height: 1.72;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.hero-card {
    background: #fff;
    color: var(--ink);
    border-top: 5px solid var(--gold);
    box-shadow: 0 22px 55px rgba(0,0,0,.22);
}

.hero-card-head {
    padding: 25px 26px 19px;
    background: #f9fafb;
    border-bottom: 1px solid var(--line);
}

.hero-card-head strong {
    display: block;
    color: var(--navy-950);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    line-height: 1.2;
}

.hero-card-head span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 13px;
}

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

.hero-card-list li {
    position: relative;
    padding: 17px 25px 17px 54px;
    border-bottom: 1px solid var(--line);
}

.hero-card-list li::before {
    content: attr(data-step);
    position: absolute;
    left: 24px;
    top: 18px;
    color: var(--gold-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 15px;
    font-weight: 700;
}

.hero-card-list strong {
    display: block;
    color: var(--navy-950);
    font-size: 14px;
}

.hero-card-list span {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
}

.hero-card-foot { padding: 20px 25px 24px; }
.hero-card-foot .button { width: 100%; }

/* Generic sections */
.section { padding: 82px 0; }
.section-soft { background: var(--soft); }

.section-heading {
    max-width: 800px;
    margin-bottom: 40px;
}

.section-heading.center {
    margin-inline: auto;
    text-align: center;
}

.eyebrow {
    display: block;
    margin-bottom: 10px;
    color: var(--navy-700);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .17em;
    text-transform: uppercase;
}

h2 {
    margin: 0;
    color: var(--navy-950);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.13;
    letter-spacing: -.027em;
}

.section-heading p {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 18px;
}

.document-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 10px 30px rgba(7,24,47,.05);
}

.document-card {
    min-height: 260px;
    padding: 30px 27px 31px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fff;
    transition: background-color .16s ease, transform .16s ease;
}

.document-card:hover { background: #fbfcfd; }

.document-card > span {
    color: var(--gold-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 13px;
    font-weight: 700;
}

.document-card h3 {
    margin: 19px 0 11px;
    color: var(--navy-950);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    line-height: 1.2;
}

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

.document-card a {
    display: inline-block;
    margin-top: 21px;
    color: var(--navy-900);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
}

.process {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fff;
}

.process article {
    min-height: 210px;
    padding: 31px 30px;
    border-right: 1px solid var(--line);
}

.process article:first-child { border-left: 1px solid var(--line); }

.process b {
    display: block;
    color: var(--gold-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 31px;
    line-height: 1;
}

.process h3 {
    margin: 18px 0 8px;
    color: var(--navy-950);
    font-size: 18px;
}

.process p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.trust-band {
    background: var(--navy-950);
    color: #fff;
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.trust-inner {
    min-height: 188px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 48px;
}

.trust-inner h2 {
    max-width: 820px;
    color: #fff;
    font-size: clamp(30px, 3.5vw, 44px);
}

.trust-inner p {
    max-width: 760px;
    margin: 10px 0 0;
    color: #cfdbe6;
}

/* Page headers */
.page-hero {
    padding: 61px 0 58px;
    background: linear-gradient(110deg, var(--navy-950), var(--navy-900));
    color: #fff;
    border-bottom: 4px solid var(--gold);
}

.page-hero h1 {
    max-width: 860px;
    margin: 0;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(40px, 5vw, 60px);
    line-height: 1.05;
    letter-spacing: -.035em;
}

.page-hero p {
    max-width: 780px;
    margin: 15px 0 0;
    color: #dbe5ee;
    font-size: 18px;
}

/* Contact and application panels */
.contact-strip,
.application-shell {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    align-items: stretch;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.contact-copy,
.application-aside {
    padding: 44px 42px;
    background: var(--navy-950);
    color: #fff;
}

.contact-copy h2,
.application-aside h2 {
    color: #fff;
    font-size: 38px;
}

.contact-copy p,
.application-aside p {
    color: #d5e0e9;
}

.contact-meta,
.application-steps {
    margin-top: 31px;
    border-top: 1px solid rgba(255,255,255,.18);
}

.contact-meta > div,
.application-steps > div {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,.18);
}

.contact-meta span,
.application-steps span {
    display: block;
    color: #9eb1c4;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.contact-meta strong,
.application-steps strong {
    display: block;
    margin-top: 4px;
    color: #fff;
    font-size: 15px;
    line-height: 1.45;
}

.application-note {
    margin-top: 28px;
    padding: 18px 19px;
    border-left: 3px solid var(--gold);
    background: rgba(255,255,255,.06);
    color: #dce5ed;
    font-size: 13px;
}

.contact-form,
.application-form {
    padding: 42px;
    background: #fff;
}

.application-form-title {
    margin-bottom: 25px;
}

.application-form-title h2 {
    font-size: 34px;
}

.application-form-title p {
    margin: 10px 0 0;
    color: var(--muted);
}

.cms-form { width: 100%; }

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 20px;
}

.form-section-heading {
    grid-column: 1 / -1;
    margin-top: 7px;
    padding: 0 0 12px;
    border-bottom: 1px solid var(--line-dark);
}

.form-section-heading:first-child { margin-top: 0; }

.form-section-heading strong {
    display: block;
    color: var(--navy-950);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    line-height: 1.2;
}

.form-section-heading span {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 13px;
}

.field.full { grid-column: 1 / -1; }

.field label {
    display: block;
    margin-bottom: 7px;
    color: var(--navy-950);
    font-size: 13px;
    font-weight: 700;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 49px;
    padding: 12px 13px;
    border: 1px solid #b9c4ce;
    border-radius: 0;
    background: #fff;
    color: var(--ink);
    outline: none;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.field textarea {
    min-height: 125px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--navy-700);
    box-shadow: 0 0 0 3px rgba(36,87,141,.10);
}

.field input::placeholder,
.field textarea::placeholder { color: #8a949e; }

.checkbox-field { align-self: end; }
.checkbox-label { font-weight: 400 !important; }
.checkbox-label input { width: auto; min-height: 0; }

.form-actions {
    grid-column: 1 / -1;
    padding-top: 7px;
}

.form-actions .button { min-width: 205px; }

.form-message {
    display: none;
    margin: 0 0 24px;
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-left-width: 4px;
    font-size: 14px;
    line-height: 1.65;
}

.form-message.zichtbaar { display: block; }
.form-message.succes {
    color: var(--success);
    background: var(--success-bg);
    border-color: #b9dfc9;
    border-left-color: var(--success);
}
.form-message.fout {
    color: var(--danger);
    background: var(--danger-bg);
    border-color: #e7b9b9;
    border-left-color: var(--danger);
}

.verborgen_veld {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

/* Generic legal pages */
.site-shell {
    width: min(calc(100% - 48px), var(--max));
    margin: 0 auto;
}

.generic-page { padding: 48px 0 78px; }

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 24px;
    color: var(--muted);
    font-size: 12px;
}

.breadcrumbs a {
    color: var(--navy-900);
    text-decoration: none;
}

.page-title {
    margin: 0 0 28px;
    color: var(--navy-950);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 4.6vw, 56px);
    line-height: 1.08;
}

.panel {
    background: #fff;
    border: 1px solid var(--line);
}

.pad { padding: 34px 36px; }

.generic-content {
    max-width: 900px;
    color: #3d4854;
}

.generic-content h2,
.generic-content h3 { color: var(--navy-950); }

.generic-content a { color: var(--navy-900); }

/* Footer */
.site-footer {
    background: var(--navy-950);
    color: #cbd6e0;
    border-top: 4px solid var(--gold);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.45fr .75fr .75fr;
    gap: 56px;
    padding: 52px 0 40px;
}

.footer-brand strong {
    display: block;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    letter-spacing: -.025em;
}

.footer-brand p {
    max-width: 470px;
    margin: 13px 0 0;
    color: #9fb0c1;
    font-size: 13px;
}

.footer-col h3 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.footer-links a {
    color: #c3cfda;
    text-decoration: none;
    font-size: 13px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-bottom {
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid rgba(255,255,255,.13);
    color: #8799aa;
    font-size: 12px;
}

/* Responsive */
@media (max-width: 1040px) {
    .hero-inner { gap: 44px; grid-template-columns: minmax(0,1fr) 365px; }
    .document-grid { grid-template-columns: repeat(2, 1fr); }
    .process { grid-template-columns: 1fr; }
    .process article,
    .process article:first-child { border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); }
    .process article:last-child { border-bottom: 0; }
}

@media (max-width: 820px) {
    .header-inner { min-height: 82px; }
    .header-note { display: none; }
    .brand-copy strong { font-size: 32px; }

    .nav-inner { position: relative; justify-content: flex-end; }
    .menu-toggle { display: block; }
    .primary-nav {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 54px;
        z-index: 100;
        flex-direction: column;
        background: var(--navy-900);
        box-shadow: var(--shadow);
    }
    .primary-nav.open { display: flex; }
    .primary-nav a {
        min-width: 0;
        min-height: 49px;
        justify-content: flex-start;
        border-left: 0;
        border-right: 0 !important;
        border-bottom: 1px solid rgba(255,255,255,.11);
    }
    .nav-action { min-height: 54px; }

    .hero-inner {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 38px;
        padding-block: 54px;
    }
    .hero-card { max-width: 600px; }
    .contact-strip,
    .application-shell { grid-template-columns: 1fr; }
    .trust-inner { grid-template-columns: 1fr; padding-block: 35px; }
    .footer-main { grid-template-columns: 1.2fr 1fr 1fr; gap: 34px; }
}

@media (max-width: 620px) {
    .container,
    .site-shell { width: min(calc(100% - 28px), var(--max)); }
    .topbar-inner { min-height: 36px; justify-content: center; text-align: center; }
    .topbar-inner span:last-child { display: none; }
    .brand-copy strong { font-size: 29px; }
    .brand-copy span { font-size: 9px; letter-spacing: .14em; }
    .nav-action { padding-inline: 15px; font-size: 12px; }

    .hero h1 { font-size: 40px; }
    .hero p { font-size: 17px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .button { width: 100%; }

    .section { padding: 60px 0; }
    .document-grid { grid-template-columns: 1fr; }
    .document-card { min-height: 0; }

    .contact-copy,
    .application-aside,
    .contact-form,
    .application-form { padding: 30px 22px; }

    .form-grid { grid-template-columns: 1fr; }
    .field.full,
    .form-section-heading,
    .form-actions { grid-column: auto; }
    .form-actions .button { width: 100%; }

    .footer-main { grid-template-columns: 1fr 1fr; gap: 34px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        padding-block: 17px;
    }
}

@media (max-width: 430px) {
    .footer-main { grid-template-columns: 1fr; }
    .footer-brand { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

/* Salarisstrook Kopen V7: documentdiensten, SEO-landingspagina's en aanvraagkeuzes */
.service-breadcrumbs {
    margin: 0 0 18px;
    color: #cbd8e4;
}

.service-breadcrumbs a { color: #fff; }
.service-breadcrumbs strong { color: #e7c972; }
.service-hero .hero-kicker { margin-bottom: 12px; }

.content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, .65fr);
    gap: 54px;
    align-items: start;
}

.seo-copy { max-width: 790px; }
.seo-copy h2 {
    margin: 0 0 17px;
    font-size: clamp(29px, 3.2vw, 42px);
}
.seo-copy h2:not(:first-of-type) { margin-top: 42px; }
.seo-copy > p { color: #46525e; font-size: 17px; }

.feature-list,
.check-list {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
}

.feature-list li,
.check-list li {
    position: relative;
    padding: 13px 0 13px 29px;
    border-bottom: 1px solid var(--line);
    color: #3c4854;
}

.feature-list li::before,
.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 13px;
    color: var(--green);
    font-weight: 800;
}

.highlight-panel {
    margin-top: 30px;
    padding: 22px 24px;
    background: #f7f4eb;
    border-left: 4px solid var(--gold);
}
.highlight-panel strong { color: var(--navy-950); }
.highlight-panel p { margin: 6px 0 0; color: #4c5660; font-size: 14px; }

.service-aside {
    position: sticky;
    top: 24px;
    padding: 30px;
    background: var(--navy-950);
    color: #fff;
    border-top: 5px solid var(--gold);
    box-shadow: var(--shadow);
}
.service-aside h2 { color: #fff; font-size: 31px; }
.service-aside .eyebrow { color: #e2c66e; }
.service-aside .check-list li { color: #d9e3ec; border-color: rgba(255,255,255,.15); }
.service-aside .check-list li::before { color: #e2c66e; }
.service-aside .button { width: 100%; margin-top: 25px; }

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    background: #fff;
}
.audience-grid article,
.audience-grid-links a {
    min-height: 190px;
    padding: 27px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fff;
}
.audience-grid h2,
.audience-grid h3 { margin: 0; color: var(--navy-950); font-size: 24px; }
.audience-grid p { margin: 11px 0 0; color: var(--muted); font-size: 14px; }
.audience-grid-links a { display: block; text-decoration: none; }
.audience-grid-links a:hover { background: #f9fbfc; }
.audience-grid-links span { display: block; margin-bottom: 18px; color: var(--gold-dark); font-family: Georgia, serif; font-weight: 700; }

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}
.related-grid a {
    min-height: 145px;
    padding: 24px;
    background: #fff;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    text-decoration: none;
}
.related-grid a:hover { background: #f9fbfc; }
.related-grid strong { display: block; color: var(--navy-950); font-size: 18px; }
.related-grid span { display: block; margin-top: 8px; color: var(--muted); font-size: 13px; }

.faq-list { border-top: 1px solid var(--line-dark); }
.faq-list details { border-bottom: 1px solid var(--line-dark); }
.faq-list summary {
    position: relative;
    padding: 21px 48px 21px 0;
    cursor: pointer;
    color: var(--navy-950);
    font-size: 18px;
    font-weight: 800;
    list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
    content: "+";
    position: absolute;
    right: 8px;
    top: 15px;
    color: var(--gold-dark);
    font-family: Georgia, serif;
    font-size: 28px;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list details div { padding: 0 52px 21px 0; color: #4e5964; }
.faq-list details p { margin: 0; }

.split-hubs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.split-hubs article {
    padding: 38px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 10px 30px rgba(7,24,47,.05);
}
.split-hubs h2 { font-size: 35px; }
.split-hubs p { color: var(--muted); }
.split-hubs .button { margin-top: 14px; }

.document-grid-wide { grid-template-columns: repeat(4, 1fr); }
.document-grid-wide .document-card { min-height: 245px; }

.document-choice-field { grid-column: auto !important; }
.document-choice-card {
    min-height: 105px;
    display: flex !important;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border: 1px solid #b9c4ce;
    background: #fff;
    cursor: pointer;
    transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.document-choice-card:hover { border-color: var(--navy-700); background: #f8fafc; }
.document-choice-card:has(input:checked) {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(33,122,75,.10);
    background: #f2f9f5;
}
.document-choice-card input {
    flex: 0 0 auto;
    width: 19px !important;
    height: 19px;
    min-height: 0 !important;
    margin: 2px 0 0;
}
.document-choice-card span { display: block; }
.document-choice-card strong { display: block; color: var(--navy-950); font-size: 15px; line-height: 1.35; }
.document-choice-card small { display: block; margin-top: 5px; color: var(--muted); font-size: 12px; line-height: 1.45; }

@media (max-width: 1050px) {
    .primary-nav a { min-width: auto; padding-inline: 15px; }
    .content-layout { grid-template-columns: 1fr; }
    .service-aside { position: static; }
    .related-grid { grid-template-columns: repeat(2, 1fr); }
    .audience-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
    .split-hubs,
    .audience-grid,
    .related-grid { grid-template-columns: 1fr; }
    .document-choice-field { grid-column: 1 / -1 !important; }
    .service-breadcrumbs { flex-wrap: wrap; }
    .seo-copy h2:not(:first-of-type) { margin-top: 34px; }
}
