:root {
    --sd-primary: #0752a4;
    --sd-primary-dark: #063e7d;
    --sd-cyan: #079ec4;
    --sd-navy: #002f66;
    --sd-navy-deep: #002854;
    --sd-topbar: #002f63;
    --sd-text: #16263b;
    --sd-muted: #53657a;
    --sd-light: #f4f7fa;
    --sd-border: #dbe2e9;
    --sd-white: #ffffff;
    --sd-container: 1296px;
    --sd-font: Arial, "Segoe UI", Helvetica, sans-serif;
    --sd-shadow: 0 3px 12px rgba(0, 41, 86, 0.12);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--sd-white);
    color: var(--sd-text);
    font-family: var(--sd-font);
    font-size: 15px;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

body.menu-open {
    overflow: hidden;
}

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

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

a:hover,
a:focus {
    color: var(--sd-primary-dark);
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 0.65em;
    color: var(--sd-navy);
    font-weight: 700;
    line-height: 1.16;
}

p {
    margin: 0 0 1em;
}

.site {
    min-height: 100vh;
}

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

.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.screen-reader-text:focus,
.skip-link:focus {
    position: fixed !important;
    z-index: 100000;
    top: 8px;
    left: 8px;
    width: auto;
    height: auto;
    padding: 12px 18px;
    clip: auto;
    background: #fff;
    color: #002f66;
    box-shadow: var(--sd-shadow);
}

:focus-visible {
    outline: 3px solid #45baf0;
    outline-offset: 2px;
}

/* Top bar */
.utility-bar {
    position: relative;
    z-index: 1200;
    min-height: 35px;
    background: linear-gradient(90deg, #00356d 0%, #002959 60%, #002650 100%);
    color: #fff;
    font-size: 12px;
}

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

.utility-bar__contact,
.utility-bar__tools {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.utility-item,
.utility-search-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    white-space: nowrap;
}

.utility-item svg,
.utility-search-toggle svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.utility-item:hover,
.utility-item:focus,
.utility-search-toggle:hover,
.utility-search-toggle:focus {
    color: #b9dcff;
}

.utility-search-toggle {
    padding: 0;
    border: 0;
    background: transparent;
}

.utility-divider {
    width: 1px;
    height: 17px;
    background: rgba(255, 255, 255, 0.7);
}

.header-search {
    position: absolute;
    inset: 35px 0 auto;
    z-index: 1201;
    padding: 12px 0;
    background: #fff;
    border-bottom: 1px solid var(--sd-border);
    box-shadow: 0 10px 24px rgba(0, 38, 80, 0.18);
}

.header-search__inner {
    display: flex;
    justify-content: flex-end;
}

.search-form {
    display: flex;
    width: min(100%, 520px);
}

.search-form label {
    flex: 1;
}

.search-field {
    width: 100%;
    min-height: 42px;
    padding: 8px 13px;
    border: 1px solid #b6c4d3;
    border-radius: 3px 0 0 3px;
}

.search-submit {
    min-width: 110px;
    border: 0;
    border-radius: 0 3px 3px 0;
    background: var(--sd-primary);
    color: #fff;
    font-weight: 700;
}

/* Header */
.site-header {
    position: sticky;
    z-index: 1100;
    top: 0;
    min-height: 90px;
    background: rgba(255, 255, 255, 0.985);
    border-bottom: 1px solid #d5dbe1;
    box-shadow: 0 2px 9px rgba(0, 35, 72, 0.08);
}

.admin-bar .site-header {
    top: 32px;
}

.header-grid {
    min-height: 90px;
    display: grid;
    grid-template-columns: 355px minmax(550px, 1fr) 245px;
    align-items: center;
    gap: 20px;
}

.site-branding {
    min-width: 0;
}

.custom-logo-link {
    display: inline-flex;
    align-items: center;
}

.custom-logo {
    width: auto;
    max-height: 76px;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: var(--sd-navy);
}

.brand-mark:hover,
.brand-mark:focus {
    color: var(--sd-navy);
}

.brand-mark__shield {
    width: 62px;
    height: 72px;
    flex: 0 0 auto;
}

.brand-mark__text {
    display: grid;
    min-width: 0;
}

.brand-mark__text strong {
    color: #052f67;
    font-size: clamp(20px, 1.65vw, 27px);
    font-weight: 800;
    letter-spacing: 0.005em;
    line-height: 1.05;
    white-space: nowrap;
}

.brand-mark__text small {
    margin-top: 5px;
    color: #0752a4;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.main-navigation {
    justify-self: stretch;
}

.main-navigation ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(19px, 2.15vw, 38px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-navigation li {
    position: relative;
    margin: 0;
}

.main-navigation a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 90px;
    color: #080f18;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

.main-navigation a:hover,
.main-navigation a:focus,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
    color: var(--sd-primary);
}

.main-navigation .current-menu-item > a::after,
.main-navigation .current_page_item > a::after,
.sd-front-page .main-navigation > ul > li:first-child > a::after {
    position: absolute;
    right: 0;
    bottom: 18px;
    left: 0;
    height: 2px;
    background: var(--sd-primary);
    content: "";
}

.main-navigation .sub-menu {
    position: absolute;
    top: calc(100% - 12px);
    left: -18px;
    z-index: 1500;
    width: 260px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--sd-border);
    box-shadow: 0 14px 35px rgba(0, 38, 80, 0.18);
}

.main-navigation .sub-menu a {
    min-height: 0;
    padding: 10px 12px;
    font-size: 12px;
    text-transform: none;
    white-space: normal;
}

.main-navigation li:hover > .sub-menu,
.main-navigation li:focus-within > .sub-menu {
    display: flex;
}

.fallback-chevron {
    font-size: 15px;
    transform: translateY(-2px);
}

.header-contact-card {
    height: 73px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 9px 15px;
    background: linear-gradient(135deg, #064a92 0%, #003576 100%);
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14), var(--sd-shadow);
}

.header-contact-card__icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
}

.header-contact-card__icon svg {
    width: 31px;
    height: 31px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.header-contact-card__copy {
    display: grid;
    min-width: 0;
    line-height: 1.14;
}

.header-contact-card__copy small {
    color: #fff;
    font-size: 10px;
}

.header-contact-card__phone,
.header-contact-card__mail {
    color: #fff;
    white-space: nowrap;
}

.header-contact-card__phone {
    margin-top: 2px;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.header-contact-card__mail {
    margin-top: 5px;
    font-size: 10px;
}

.header-contact-card a:hover,
.header-contact-card a:focus {
    color: #cde8ff;
}

.menu-toggle {
    display: none;
}

/* Reference hero */
.reference-hero {
    position: relative;
    min-height: 264px;
    overflow: hidden;
    background-color: #062f5d;
    background-image: url("../images/hero-investigation.svg");
    background-position: center 47%;
    background-size: cover;
    color: #fff;
}

.reference-hero::after {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(90deg, rgba(0, 28, 62, 0.35) 0%, rgba(0, 34, 73, 0.08) 55%, rgba(0, 24, 55, 0.25) 100%);
    content: "";
}

.reference-hero__grid {
    position: relative;
    z-index: 1;
    min-height: 264px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    align-items: center;
    gap: 70px;
    padding-top: 18px;
    padding-bottom: 18px;
}

.reference-hero__copy {
    max-width: 690px;
    padding-left: 53px;
}

.reference-hero h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(34px, 3.2vw, 45px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.025em;
    text-shadow: 0 2px 8px rgba(0, 20, 45, 0.45);
}

.reference-hero__subtitle {
    margin: 8px 0 16px;
    color: #fff;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.1;
}

.reference-hero__lead {
    max-width: 650px;
    margin-bottom: 19px;
    color: #fff;
    font-size: 15px;
    line-height: 1.4;
    text-shadow: 0 1px 3px rgba(0, 20, 45, 0.55);
}

.reference-hero__actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.reference-button {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 22px;
    border: 1px solid transparent;
    border-radius: 2px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0, 20, 45, 0.2);
}

.reference-button svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.reference-button--primary {
    background: #0874d1;
}

.reference-button--primary:hover,
.reference-button--primary:focus {
    background: #0a63b1;
    color: #fff;
}

.reference-button--outline {
    border-color: rgba(255, 255, 255, 0.95);
    background: rgba(0, 32, 67, 0.28);
}

.reference-button--outline:hover,
.reference-button--outline:focus {
    background: #fff;
    color: #003b77;
}

.reference-hero__checklist {
    width: 338px;
    justify-self: end;
    margin-right: 4px;
    padding: 16px 27px;
    background: rgba(0, 25, 55, 0.82);
    border-radius: 3px;
    box-shadow: 0 5px 18px rgba(0, 18, 40, 0.28);
}

.reference-hero__checklist ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.reference-hero__checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 13px;
    line-height: 1.15;
}

.reference-hero__checklist svg {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    fill: none;
    stroke: #43c6ff;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Cards */
.reference-services {
    padding: 10px 0 8px;
    background: linear-gradient(90deg, #f4f6f8 0%, #fff 50%, #f4f6f8 100%);
}

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

.reference-card {
    min-height: 306px;
    display: flex;
    flex-direction: column;
    padding: 11px 23px 10px;
    background: #fff;
    border: 1px solid #d9e0e6;
    box-shadow: 0 2px 8px rgba(0, 38, 80, 0.05);
}

.reference-card__header {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    margin-bottom: 3px;
}

.reference-card__icon {
    width: 66px;
    height: 66px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
}

.reference-card__icon--blue {
    background: linear-gradient(145deg, #0876df, #004a9f);
}

.reference-card__icon--cyan {
    background: linear-gradient(145deg, #13b4d3, #037b9e);
}

.reference-card__icon--navy {
    background: linear-gradient(145deg, #0c5eb2, #002f6b);
}

.reference-card__icon svg {
    width: 39px;
    height: 39px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.45;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.reference-card__kicker {
    display: block;
    margin-bottom: 2px;
    color: #0752a4;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.reference-card h2 {
    margin: 0;
    color: #063a78;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.18;
}

.reference-card > p {
    min-height: 40px;
    margin: 5px 0 4px;
    color: #222b35;
    font-size: 12px;
    line-height: 1.33;
}

.reference-card__links,
.reference-card__checks {
    margin: 0 0 10px;
    padding: 0;
    list-style: none;
}

.reference-card__links li,
.reference-card__checks li {
    min-height: 26px;
    border-bottom: 1px solid #d7dfe6;
}

.reference-card__links a,
.reference-card__checks li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1d2731;
    font-size: 12px;
}

.reference-card__links a {
    min-height: 26px;
}

.reference-card__links a::before {
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    border-top: 1.5px solid #0752a4;
    border-right: 1.5px solid #0752a4;
    transform: rotate(45deg);
    content: "";
}

.reference-card__links a span {
    flex: 1;
}

.reference-card__links svg,
.reference-card__checks svg {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    fill: none;
    stroke: #0752a4;
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.reference-card__checks li {
    min-height: 26px;
}

.reference-card__checks svg {
    stroke: #08a5cb;
}

.reference-card__button {
    min-height: 33px;
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 18px;
    margin-top: auto;
    padding: 8px 17px;
    background: #066bc4;
    color: #fff;
    border-radius: 2px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.reference-card__button--cyan {
    background: #079ec4;
}

.reference-card__button--navy {
    background: #064e9d;
}

.reference-card__button svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.reference-card__button:hover,
.reference-card__button:focus {
    background: #003f82;
    color: #fff;
}

/* Trust strip */
.reference-trust {
    padding: 0 0 8px;
    background: linear-gradient(90deg, #f4f6f8 0%, #fff 50%, #f4f6f8 100%);
}

.reference-trust__grid {
    min-height: 49px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: center;
    background: #fff;
    border: 1px solid #dde4ea;
}

.reference-trust__grid > div {
    min-height: 34px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 5px 17px;
    border-right: 1px solid #dbe2e8;
}

.reference-trust__grid > div:last-child {
    border-right: 0;
}

.reference-trust svg {
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    fill: none;
    stroke: #063f84;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.reference-trust span {
    display: grid;
    line-height: 1.1;
}

.reference-trust strong {
    color: #063871;
    font-size: 11px;
}

.reference-trust small {
    margin-top: 3px;
    color: #26384b;
    font-size: 10px;
}

/* Footer */
.reference-footer {
    background: linear-gradient(110deg, #00376d 0%, #002d61 50%, #003c75 100%);
    color: #fff;
}

.reference-footer__grid {
    display: grid;
    grid-template-columns: 235px 270px 230px minmax(300px, 1fr);
    gap: 30px;
    min-height: 204px;
    padding-top: 18px;
    padding-bottom: 17px;
}

.reference-footer__column {
    position: relative;
    min-width: 0;
    padding-right: 18px;
}

.reference-footer__column:not(:last-child)::after {
    position: absolute;
    top: 28px;
    right: 0;
    bottom: 5px;
    width: 1px;
    background: rgba(255, 255, 255, 0.32);
    content: "";
}

.reference-footer h2 {
    margin: 0 0 11px;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
}

.reference-footer ul {
    display: grid;
    gap: 7px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.reference-footer li {
    position: relative;
    padding-left: 11px;
    font-size: 11px;
    line-height: 1.22;
}

.reference-footer li::before {
    position: absolute;
    top: 0.42em;
    left: 0;
    width: 4px;
    height: 4px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
    content: "";
}

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

.reference-footer a:hover,
.reference-footer a:focus {
    color: #bfe2ff;
}

.reference-footer__line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 8px;
    font-size: 11px;
    line-height: 1.25;
}

.reference-footer__line--address {
    align-items: flex-start;
}

.reference-footer__line svg {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.reference-footer__partners {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) 240px;
    grid-template-rows: auto 1fr auto;
    column-gap: 22px;
}

.reference-footer__partners h2 {
    grid-column: 1 / -1;
}

.reference-footer__partners > ul {
    grid-column: 1;
}

.affiliate-notice {
    grid-column: 2;
    grid-row: 2 / 4;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    align-self: start;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 3px;
    font-size: 10px;
    line-height: 1.45;
}

.affiliate-notice svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.affiliate-notice p {
    margin: 0;
}

.reference-footer__socials {
    grid-column: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 4px;
}

.reference-footer__socials a {
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
}

.reference-footer__socials svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}

.reference-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(0, 26, 57, 0.2);
}

.reference-footer__bottom-inner {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    font-size: 10px;
}

.reference-footer__bottom p {
    margin: 0;
}

.reference-footer__bottom ul {
    display: flex;
    align-items: center;
    gap: 0;
}

.reference-footer__bottom li {
    padding: 0 22px;
    border-left: 1px solid rgba(255, 255, 255, 0.55);
}

.reference-footer__bottom li:first-child {
    border-left: 0;
}

.reference-footer__bottom li::before {
    display: none;
}

/* Generic pages, posts and Elementor */
.elementor-content-area,
.elementor-page .site-main {
    width: 100%;
}

.content-area,
.page-content,
.entry-content-wrap,
.archive-header,
.search-header {
    width: min(calc(100% - 42px), 1120px);
    margin-inline: auto;
}

.entry-content-wrap,
.page-content {
    padding-top: 55px;
    padding-bottom: 70px;
}

.entry-header {
    margin-bottom: 24px;
}

.entry-title,
.page-title {
    font-size: clamp(30px, 4vw, 50px);
}

.entry-content {
    font-size: 16px;
    line-height: 1.72;
}

.entry-content img {
    height: auto;
}

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

.card,
.post-card {
    padding: 24px;
    background: #fff;
    border: 1px solid var(--sd-border);
    box-shadow: var(--sd-shadow);
}

.widget,
.footer-widget {
    margin-bottom: 20px;
}

.wp-block-button__link,
button,
input[type="submit"] {
    border-radius: 2px;
}

/* Responsive */
@media (max-width: 1280px) {
    .header-grid {
        grid-template-columns: 315px minmax(420px, 1fr) 220px;
        gap: 14px;
    }

    .main-navigation ul {
        gap: 18px;
    }

    .main-navigation a {
        font-size: 11px;
    }

    .brand-mark__text strong {
        font-size: 22px;
    }

    .reference-hero__copy {
        padding-left: 10px;
    }

    .reference-footer__grid {
        grid-template-columns: 210px 245px 210px minmax(300px, 1fr);
        gap: 22px;
    }
}

@media (max-width: 1120px) {
    .utility-bar__contact .utility-item:first-child,
    .utility-bar__contact .utility-divider:first-of-type {
        display: none;
    }

    .header-grid {
        grid-template-columns: minmax(260px, 1fr) auto 220px;
    }

    .menu-toggle {
        width: 46px;
        height: 42px;
        display: grid;
        place-items: center;
        justify-self: end;
        border: 1px solid #b9c6d3;
        background: #fff;
        color: var(--sd-navy);
    }

    .menu-toggle__label {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
    }

    .menu-toggle__bars {
        display: grid;
        gap: 5px;
    }

    .menu-toggle__bars span {
        width: 24px;
        height: 2px;
        background: currentColor;
        transition: transform 180ms ease, opacity 180ms ease;
    }

    .menu-open .menu-toggle__bars span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-open .menu-toggle__bars span:nth-child(2) {
        opacity: 0;
    }

    .menu-open .menu-toggle__bars span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .main-navigation {
        position: fixed;
        top: 125px;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1300;
        display: none;
        padding: 24px;
        overflow-y: auto;
        background: #fff;
    }

    .admin-bar .main-navigation {
        top: 157px;
    }

    .menu-open .main-navigation {
        display: block;
    }

    .main-navigation ul {
        display: grid;
        justify-content: stretch;
        gap: 0;
    }

    .main-navigation a {
        min-height: 48px;
        display: flex;
        justify-content: space-between;
        border-bottom: 1px solid var(--sd-border);
        font-size: 14px;
    }

    .main-navigation .current-menu-item > a::after,
    .main-navigation .current_page_item > a::after,
    .sd-front-page .main-navigation > ul > li:first-child > a::after {
        display: none;
    }

    .main-navigation .sub-menu {
        position: static;
        width: auto;
        display: grid;
        padding: 0 0 0 18px;
        border: 0;
        box-shadow: none;
    }

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

    .reference-card:last-child {
        grid-column: 1 / -1;
    }

    .reference-trust__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .reference-trust__grid > div:nth-child(3) {
        border-right: 0;
    }

    .reference-trust__grid > div:nth-child(n+4) {
        border-top: 1px solid #dbe2e8;
    }

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

    .reference-footer__column:nth-child(2)::after {
        display: none;
    }

    .reference-footer__partners {
        grid-template-columns: minmax(180px, 1fr) minmax(240px, 1fr);
    }
}

@media (max-width: 820px) {
    .utility-bar__inner {
        min-height: 38px;
    }

    .utility-bar__contact .utility-divider,
    .utility-bar__contact .utility-item:last-child,
    .utility-bar__tools .utility-divider,
    .utility-bar__tools .utility-item {
        display: none;
    }

    .utility-bar__contact {
        flex: 1;
    }

    .header-grid {
        min-height: 78px;
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .header-contact-card {
        display: none;
    }

    .site-header {
        min-height: 78px;
    }

    .brand-mark__shield {
        width: 50px;
        height: 59px;
    }

    .brand-mark__text strong {
        font-size: 19px;
    }

    .brand-mark__text small {
        font-size: 11px;
    }

    .main-navigation {
        top: 116px;
    }

    .admin-bar .main-navigation {
        top: 148px;
    }

    .reference-hero {
        min-height: 0;
    }

    .reference-hero__grid {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 24px;
        padding-top: 42px;
        padding-bottom: 42px;
    }

    .reference-hero__copy {
        padding-left: 0;
    }

    .reference-hero h1 {
        font-size: 36px;
    }

    .reference-hero__subtitle {
        font-size: 19px;
    }

    .reference-hero__checklist {
        width: 100%;
        margin: 0;
    }

    .reference-services__grid {
        grid-template-columns: 1fr;
    }

    .reference-card:last-child {
        grid-column: auto;
    }

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

    .reference-trust__grid > div {
        border-top: 1px solid #dbe2e8;
    }

    .reference-trust__grid > div:nth-child(odd) {
        border-right: 1px solid #dbe2e8;
    }

    .reference-trust__grid > div:nth-child(even) {
        border-right: 0;
    }

    .reference-footer__grid {
        grid-template-columns: 1fr;
    }

    .reference-footer__column {
        padding-right: 0;
    }

    .reference-footer__column::after {
        display: none;
    }

    .reference-footer__partners {
        grid-template-columns: 1fr;
    }

    .reference-footer__partners h2,
    .reference-footer__partners > ul,
    .affiliate-notice,
    .reference-footer__socials {
        grid-column: 1;
        grid-row: auto;
    }

    .reference-footer__bottom-inner {
        align-items: flex-start;
        flex-direction: column;
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .reference-footer__bottom ul {
        flex-wrap: wrap;
    }

    .reference-footer__bottom li:first-child {
        padding-left: 0;
    }

    .posts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .site-container {
        width: min(calc(100% - 28px), var(--sd-container));
    }

    .utility-search-toggle span {
        display: none;
    }

    .brand-mark__text strong {
        font-size: 16px;
    }

    .brand-mark__text small {
        font-size: 10px;
    }

    .reference-hero h1 {
        font-size: 31px;
    }

    .reference-hero__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .reference-button {
        width: 100%;
    }

    .reference-card {
        padding: 16px;
    }

    .reference-card__header {
        grid-template-columns: 58px minmax(0, 1fr);
        gap: 12px;
    }

    .reference-card__icon {
        width: 56px;
        height: 56px;
    }

    .reference-card__icon svg {
        width: 32px;
        height: 32px;
    }

    .reference-trust__grid {
        grid-template-columns: 1fr;
    }

    .reference-trust__grid > div {
        border-right: 0 !important;
    }
}

@media (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

/* Editable footer widget areas */
.reference-footer .footer-widget,
.reference-footer .widget_block {
    margin: 0 0 14px;
}

.reference-footer .footer-widget:last-child,
.reference-footer .widget_block:last-child {
    margin-bottom: 0;
}

.reference-footer .footer-widget h2,
.reference-footer .wp-block-heading {
    margin: 0 0 11px;
    color: #fff;
    font-size: 13px;
    line-height: 1.3;
    text-transform: uppercase;
}

.reference-footer .footer-widget p,
.reference-footer .widget_block p {
    margin: 0 0 9px;
    color: #fff;
    font-size: 11px;
    line-height: 1.45;
}

.reference-footer .footer-widget .wp-block-list {
    margin: 0;
    padding: 0;
}

.reference-footer__partners.has-widgets {
    display: block;
}

.reference-footer__partners.has-widgets .affiliate-notice {
    display: block;
    margin-top: 14px;
    padding: 10px 12px;
}

.reference-footer__partners.has-widgets .affiliate-notice strong {
    display: inline;
}

/* Imported editable content */
.sd-imported-page {
    background: #fff;
    color: var(--sd-text);
}

.sd-imported-hero {
    padding: clamp(58px, 7vw, 104px) 0;
    background: linear-gradient(115deg, #002f63 0%, #064b8f 58%, #087eaa 100%);
    color: #fff;
}

.sd-imported-hero .eyebrow {
    color: #a9e6ff;
}

.sd-imported-hero h1 {
    max-width: 900px;
    margin: 10px 0 18px;
    color: #fff;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.08;
}

.sd-imported-lead {
    max-width: 860px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.65;
}

.sd-imported-section {
    padding: clamp(48px, 6vw, 82px) 0;
}

.sd-imported-section--muted {
    background: #f2f6f9;
}

.sd-imported-section h2 {
    margin-top: 0;
    color: #073b73;
}

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

.sd-imported-card {
    padding: 28px;
    border: 1px solid #dbe4eb;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0, 49, 95, 0.07);
}

.sd-imported-card h2 {
    margin: 0 0 12px;
    color: #07447f;
    font-size: 21px;
}

.sd-imported-card p {
    margin: 0;
    line-height: 1.7;
}

.sd-imported-steps {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    margin: 30px 0 0;
    padding: 0;
    counter-reset: sd-step;
    list-style: none;
}

.sd-imported-steps li {
    position: relative;
    min-height: 150px;
    padding: 56px 20px 22px;
    border: 1px solid #d5e0e8;
    border-radius: 5px;
    background: #fff;
    line-height: 1.55;
    counter-increment: sd-step;
}

.sd-imported-steps li::before {
    position: absolute;
    top: 17px;
    left: 20px;
    width: 29px;
    height: 29px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #0758a7;
    color: #fff;
    font-weight: 800;
    content: counter(sd-step);
}

.sd-imported-notice {
    padding: 24px 28px;
    border-left: 5px solid #0d7ca5;
    background: #eef7fb;
}

.sd-imported-notice strong {
    display: block;
    margin-bottom: 6px;
    color: #063b70;
}

.sd-imported-notice p {
    margin: 0;
    line-height: 1.7;
}

.sd-imported-cta {
    padding: 38px 0;
    background: #062f5f;
    color: #fff;
}

.sd-imported-cta .site-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.sd-imported-cta h2,
.sd-imported-cta p {
    margin: 4px 0;
    color: #fff;
}

.sd-imported-cta .eyebrow {
    color: #93d9f4;
}

@media (max-width: 980px) {
    .sd-imported-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 620px) {
    .sd-imported-grid,
    .sd-imported-steps {
        grid-template-columns: 1fr;
    }

    .sd-imported-cta .site-container {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* SEO content extension: keeps the supplied visual language while adding useful, indexable copy. */
.sd-seo-home{padding:64px 0 72px;background:#f4f7fb;border-top:1px solid #dbe4ee;color:#13243a}.sd-seo-home__intro{max-width:900px;margin:0 auto 34px;text-align:center}.sd-seo-home__intro h2,.sd-seo-home__process h2,.sd-seo-home__faq h2{color:#06346b;margin:8px 0 14px}.sd-seo-home__intro p,.sd-seo-home__grid p,.sd-seo-home__process p,.sd-seo-home__faq p{line-height:1.75;color:#42546a}.sd-seo-home__grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}.sd-seo-home__grid article{background:#fff;border:1px solid #dce5ef;border-radius:8px;padding:26px;box-shadow:0 8px 24px rgba(3,45,93,.06)}.sd-seo-home__grid h3{margin:0 0 12px;color:#06346b;font-size:1.12rem}.sd-seo-home__process{display:grid;grid-template-columns:1.1fr .9fr;gap:44px;align-items:start;margin-top:42px;padding:36px;background:#fff;border:1px solid #dce5ef;border-radius:8px}.sd-seo-home__process ol{counter-reset:sdsteps;display:grid;gap:14px;margin:0;padding:0;list-style:none}.sd-seo-home__process li{counter-increment:sdsteps;display:grid;grid-template-columns:38px 1fr;column-gap:12px;align-items:start}.sd-seo-home__process li:before{content:counter(sdsteps);display:grid;place-items:center;width:34px;height:34px;border-radius:50%;background:#0752a4;color:#fff;font-weight:700;grid-row:1/3}.sd-seo-home__process li strong{color:#06346b}.sd-seo-home__process li span{color:#52657a;font-size:.94rem;line-height:1.55}.sd-seo-home__faq{margin-top:48px}.sd-seo-home__faq-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}.sd-seo-home__faq details{background:#fff;border:1px solid #dce5ef;border-radius:6px;padding:18px 20px}.sd-seo-home__faq summary{cursor:pointer;color:#06346b;font-weight:700}.sd-seo-home__faq details p{margin:12px 0 0}.sd-reference-home .reference-hero__copy h1{max-width:760px}
@media(max-width:900px){.sd-seo-home__grid,.sd-seo-home__faq-grid{grid-template-columns:1fr}.sd-seo-home__process{grid-template-columns:1fr;gap:28px;padding:26px}}@media(max-width:600px){.sd-seo-home{padding:44px 0}.sd-seo-home__grid article{padding:21px}.sd-seo-home__process{padding:22px}}

.sd-breadcrumbs{margin:0 0 22px;font-size:.9rem;color:#60728a}.sd-breadcrumbs ol{display:flex;flex-wrap:wrap;gap:7px;margin:0;padding:0;list-style:none}.sd-breadcrumbs li{display:flex;align-items:center;gap:7px}.sd-breadcrumbs li:not(:last-child)::after{content:'›';color:#8da0b5}.sd-breadcrumbs a{color:#0b5cab;text-decoration:none}.sd-breadcrumbs a:hover,.sd-breadcrumbs a:focus{text-decoration:underline}.sd-breadcrumbs [aria-current=page]{color:#53657a}
