:root {
    --blue-950: #061735;
    --blue-900: #082457;
    --blue-800: #0a3f91;
    --blue-700: #0b55c5;
    --blue-600: #0d65e8;
    --cyan: #00a5df;
    --ink: #101828;
    --muted: #546179;
    --soft: #f5f8fd;
    --line: #d7e1f1;
    --white: #ffffff;
    --success: #087f5b;
    --danger: #b42318;
    --shadow: 0 24px 70px rgba(6, 23, 53, 0.12);
    --radius: 8px;
    --container: min(100% - 32px, 1180px);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background:
        linear-gradient(90deg, rgba(10, 63, 145, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(10, 63, 145, 0.03) 1px, transparent 1px),
        var(--white);
    background-size: 64px 64px;
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
img, svg { display: block; }
img { max-width: 100%; }
a { color: inherit; }
h1, h2, h3, p { margin: 0; }
h1, h2, h3 { color: var(--blue-950); letter-spacing: 0; line-height: 1.08; }
button, input, select, textarea { font: inherit; }
.skip-link {
    position: absolute;
    left: 16px;
    top: -48px;
    z-index: 100;
    border-radius: 6px;
    background: var(--blue-950);
    color: var(--white);
    padding: 10px 14px;
    text-decoration: none;
}
.skip-link:focus { top: 16px; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.container { width: var(--container); margin-inline: auto; }
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(215, 225, 241, 0.9);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
}
.header-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    min-height: 74px;
    gap: 20px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: max-content;
    color: var(--blue-950);
    text-decoration: none;
}
.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--blue-700), var(--cyan));
    color: var(--white);
}
.brand-mark svg { width: 28px; height: 28px; }
.brand-mark path:first-child { fill: currentColor; }
.brand-mark path:last-child { fill: #bfe8ff; }
.brand-text { display: grid; line-height: 1; }
.brand-text strong { font-size: 18px; font-weight: 900; }
.brand-text span {
    margin-top: 5px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0;
}
.desktop-nav, .header-actions { display: none; }
.desktop-nav a, .mobile-menu a, .site-footer a { text-decoration: none; }
.desktop-nav > a, .nav-trigger {
    color: #27364f;
    font-size: 14px;
    font-weight: 800;
}
.desktop-nav a:hover,
.desktop-nav a:focus,
.desktop-nav .is-active,
.nav-trigger:hover,
.nav-trigger:focus,
.nav-trigger.is-active,
.mobile-menu a:hover,
.mobile-menu a:focus,
.site-footer a:hover,
.site-footer a:focus { color: var(--blue-700); }
.nav-dropdown { position: relative; }
.nav-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 24px 0;
}
.nav-trigger svg { width: 16px; height: 16px; }
.nav-trigger path, .btn path, .icon path, .menu-button path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.mega-menu {
    position: absolute;
    left: 50%;
    top: calc(100% - 4px);
    width: min(900px, calc(100vw - 48px));
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 22px;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}
.industry-menu { width: min(780px, calc(100vw - 48px)); }
.nav-dropdown:hover .mega-menu,
.nav-dropdown:focus-within .mega-menu,
.nav-dropdown.is-open .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}
.mega-intro {
    border-radius: var(--radius);
    background: var(--blue-950);
    color: var(--white);
    padding: 20px;
}
.mega-intro span {
    color: #a9d8ff;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}
.mega-intro strong {
    display: block;
    margin-top: 10px;
    font-size: 22px;
    line-height: 1.16;
}
.mega-intro p { margin-top: 12px; color: #d8e7fb; font-size: 14px; }
.mega-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.mega-list a {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 14px;
    color: var(--blue-950);
    background: #fff;
}
.mega-list a:hover, .mega-list a:focus { border-color: rgba(11, 85, 197, 0.35); background: #f8fbff; color: var(--blue-950); }
.mega-list strong { display: block; font-size: 14px; }
.mega-list span { display: block; margin-top: 4px; color: var(--muted); font-size: 12px; line-height: 1.4; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    border: 1px solid transparent;
    border-radius: 6px;
    padding: 12px 18px;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.1;
    text-decoration: none;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}
.btn svg, .text-link svg { width: 18px; height: 18px; }
.btn-primary {
    background: var(--blue-700);
    color: var(--white);
    box-shadow: 0 16px 34px rgba(11, 85, 197, 0.22);
}
.btn-primary:hover { background: var(--blue-800); color: var(--white); transform: translateY(-1px); box-shadow: 0 18px 40px rgba(11, 85, 197, 0.28); }
.btn-secondary { border-color: rgba(11, 85, 197, 0.28); background: var(--white); color: var(--blue-800); }
.btn-secondary:hover { border-color: var(--blue-700); transform: translateY(-1px); }
.btn-light { background: var(--white); color: var(--blue-800); }
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: inherit;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
}
.menu-button {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    color: var(--blue-950);
    cursor: pointer;
}
.menu-button svg { width: 22px; height: 22px; }
.mobile-menu {
    border-top: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 16px 40px rgba(6, 23, 53, 0.08);
}
.mobile-menu nav {
    display: grid;
    gap: 12px;
    padding: 18px 0;
    color: #27364f;
    font-weight: 800;
}
.mobile-menu button {
    display: flex;
    justify-content: space-between;
    border: 0;
    background: #f5f8fd;
    border-radius: var(--radius);
    padding: 12px;
    color: var(--blue-950);
    font-weight: 900;
    cursor: pointer;
}
.mobile-submenu { display: grid; gap: 9px; padding: 4px 0 8px 14px; }
.hero, .page-hero {
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}
.hero-grid, .page-hero-grid {
    display: grid;
    gap: 32px;
    padding: 42px 0 28px;
}
.hero-copy, .page-hero-copy { display: grid; align-content: center; gap: 24px; }
.hero h1, .page-hero h1 {
    max-width: 760px;
    font-size: clamp(2.35rem, 9vw, 4.25rem);
    font-weight: 900;
}
.page-hero h1 { max-width: 920px; }
.hero-copy > p, .page-hero-copy > p {
    max-width: 690px;
    color: #45556f;
    font-size: 18px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-actions .btn { width: 100%; }
.proof-grid { display: grid; gap: 12px; margin: 0; }
.proof-grid div { border-left: 3px solid var(--blue-600); padding-left: 14px; }
.proof-grid dt { color: var(--blue-950); font-weight: 900; }
.proof-grid dd { margin: 4px 0 0; color: var(--muted); font-size: 14px; }
.hero-media {
    position: relative;
    min-height: 360px;
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    background: #eaf1fa;
    box-shadow: var(--shadow);
}
.hero-media.compact { min-height: 340px; }
.hero-media img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; object-position: center; }
.hero-media.compact img { min-height: 340px; }
.hero-media figcaption {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    display: grid;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.9);
    color: var(--blue-950);
    padding: 14px;
    backdrop-filter: blur(14px);
}
.hero-media figcaption strong { font-size: 16px; }
.hero-media figcaption span { color: var(--muted); font-size: 13px; }
.trust-strip {
    display: grid;
    gap: 1px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--line);
    overflow: hidden;
    transform: translateY(24px);
}
.trust-strip article {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    align-items: start;
    background: var(--white);
    padding: 18px;
}
.icon {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius);
    background: #eaf3ff;
    color: var(--blue-700);
}
.icon svg { width: 22px; height: 22px; }
.trust-strip h2 { font-size: 15px; font-weight: 900; }
.trust-strip p { margin-top: 4px; color: var(--muted); font-size: 14px; line-height: 1.45; }
.section { padding: 86px 0; }
.section-muted {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--soft);
}
.section-navy, .cta-band { background: linear-gradient(135deg, var(--blue-950), var(--blue-800)); color: var(--white); }
.section-head { display: grid; gap: 14px; max-width: 780px; margin-bottom: 34px; }
.section-head.split { max-width: none; }
.section-label { color: var(--blue-700); font-size: 13px; font-weight: 900; text-transform: uppercase; }
.section-head h2, .why-copy h2, .contact-copy h2, .cta-band h2 { font-size: clamp(2rem, 5vw, 2.75rem); font-weight: 900; }
.section-head p, .why-copy p, .contact-copy p, .cta-band p { color: #4e5d77; font-size: 17px; }
.section-navy h2, .section-navy h3, .section-navy p, .cta-band h2, .cta-band p { color: inherit; }
.section-navy .section-label, .cta-band .section-label { color: #a9d8ff; }
.card-grid, .industry-grid, .assessment-cards, .outcome-grid, .value-grid { display: grid; gap: 14px; }
.service-card, .industry-card, .assessment-cards article, .why-list article, .process-list li, .lead-form, .detail-panel, .address-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}
.service-card, .industry-card, .assessment-cards article, .detail-panel, .address-card {
    padding: 22px;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}
.service-card:hover, .industry-card:hover, .assessment-cards article:hover {
    border-color: rgba(11, 85, 197, 0.36);
    box-shadow: 0 18px 44px rgba(6, 23, 53, 0.08);
    transform: translateY(-2px);
}
.service-icon {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius);
    background: #eaf3ff;
    color: var(--blue-700);
    font-size: 13px;
    font-weight: 900;
}
.service-card h3, .industry-card h3, .assessment-cards h3, .why-list h3, .detail-panel h3, .address-card h3 { margin-top: 18px; font-size: 19px; font-weight: 900; }
.detail-panel h3:first-child, .address-card h3:first-child { margin-top: 0; }
.service-card p, .industry-card p, .assessment-cards p, .why-list p, .detail-panel p, .address-card p { margin-top: 10px; color: var(--muted); font-size: 15px; }
.service-card a, .industry-card a, .assessment-cards a, .link-list a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: var(--blue-700);
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
}
.service-card a svg, .industry-card a svg, .assessment-cards a svg { width: 16px; height: 16px; }
.why-grid, .two-column, .contact-grid, .cta-grid {
    display: grid;
    gap: 30px;
    align-items: start;
}
.why-copy, .contact-copy { display: grid; gap: 18px; }
.why-copy p, .why-list p { color: #d8e7fb; }
.why-list { display: grid; gap: 14px; }
.why-list article {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    padding: 22px;
}
.process-list {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: process;
}
.process-list li {
    counter-increment: process;
    display: grid;
    gap: 12px;
    padding: 22px;
}
.process-list li::before {
    content: counter(process);
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: var(--blue-700);
    color: var(--white);
    font-weight: 900;
}
.process-list strong { color: var(--blue-950); font-size: 19px; }
.process-list span { color: var(--muted); font-size: 15px; }
.check-list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 34px; color: #27364f; font-weight: 700; }
.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: #eaf3ff;
    color: var(--blue-700);
    font-size: 13px;
    font-weight: 900;
}
.lead-form {
    display: grid;
    gap: 14px;
    padding: 22px;
    box-shadow: 0 18px 50px rgba(6, 23, 53, 0.08);
}
.field-row { display: grid; gap: 14px; }
.lead-form label { display: grid; gap: 7px; }
.lead-form label span { color: var(--blue-950); font-size: 14px; font-weight: 900; }
.lead-form input, .lead-form select, .lead-form textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid #cbd7e8;
    border-radius: 6px;
    background: var(--white);
    color: var(--ink);
    padding: 11px 12px;
}
.lead-form textarea { min-height: 120px; resize: vertical; }
.form-alert {
    border: 1px solid rgba(8, 127, 91, 0.24);
    border-radius: var(--radius);
    background: #eaf8f2;
    color: #056146;
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 800;
}
.form-alert.error { border-color: rgba(180, 35, 24, 0.24); background: #fff1f0; color: var(--danger); }
.form-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.form-note { color: var(--muted); font-size: 13px; }
.stacked-list { display: grid; gap: 14px; }
.stacked-list article {
    border-left: 4px solid var(--blue-700);
    background: var(--white);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: 0 12px 32px rgba(6, 23, 53, 0.06);
}
.stacked-list h3 { font-size: 18px; }
.stacked-list p { margin-top: 8px; color: var(--muted); }
.link-list { display: grid; gap: 10px; }
.link-list a { margin-top: 0; }
.cta-band { padding: 52px 0; }
.cta-grid {
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
    padding: 26px;
}
.site-footer { background: var(--blue-950); color: #e6f0ff; }
.footer-grid { display: grid; gap: 28px; padding: 44px 0; }
.footer-brand { color: var(--white); }
.site-footer p, .site-footer address, .site-footer a {
    color: #b9c9e2;
    font-size: 14px;
    font-style: normal;
}
.site-footer h2 { margin: 0 0 14px; color: var(--white); font-size: 16px; }
.site-footer section { display: grid; align-content: start; gap: 9px; }
.site-footer section:first-child { gap: 16px; }
.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding: 18px 0;
    color: #b9c9e2;
    font-size: 13px;
}
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 620ms ease, transform 620ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.btn:focus, a:focus, button:focus, input:focus, select:focus, textarea:focus {
    outline: 3px solid rgba(13, 101, 232, 0.24);
    outline-offset: 3px;
}
input:focus, select:focus, textarea:focus { border-color: var(--blue-700); }
@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;
    }
    .reveal { opacity: 1; transform: none; }
}
@media (min-width: 640px) {
    .hero-actions .btn { width: auto; }
    .proof-grid, .field-row, .trust-strip, .industry-grid, .assessment-cards, .outcome-grid, .value-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 900px) {
    :root { --container: min(100% - 48px, 1180px); }
    .header-grid { grid-template-columns: auto 1fr auto; }
    .desktop-nav { display: flex; justify-content: center; align-items: center; gap: 26px; }
    .header-actions { display: flex; align-items: center; gap: 12px; }
    .menu-button, .mobile-menu { display: none; }
    .hero-grid { grid-template-columns: 0.88fr 1.12fr; min-height: calc(100svh - 136px); align-items: center; padding: 54px 0 38px; }
    .page-hero-grid { grid-template-columns: 0.9fr 1.1fr; align-items: center; padding: 54px 0; }
    .page-hero:not(:has(.page-hero-grid)) .container { padding: 74px 0; }
    .hero-copy > p, .page-hero-copy > p { font-size: 19px; }
    .hero-media, .hero-media img { min-height: 520px; }
    .hero-media.compact, .hero-media.compact img { min-height: 360px; }
    .proof-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .trust-strip { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .section-head.split { grid-template-columns: 1fr auto; align-items: end; }
    .services-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .industry-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
    .why-grid, .two-column, .contact-grid { grid-template-columns: 0.85fr 1.15fr; }
    .why-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .process-list { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .assessment-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .outcome-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .value-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .cta-grid { grid-template-columns: 1fr auto; }
    .footer-grid { grid-template-columns: 1.3fr 0.8fr 0.9fr 1fr; }
    .footer-bottom { flex-direction: row; justify-content: space-between; }
}
@media (max-width: 1120px) and (min-width: 900px) {
    .desktop-nav { gap: 16px; }
    .header-actions .btn-secondary { display: none; }
}
@media (max-width: 520px) {
    :root { --container: min(100% - 24px, 360px); }
    .brand-text strong { font-size: 16px; }
    .section { padding: 72px 0; }
    .hero-media figcaption { position: static; border-radius: 0; border-inline: 0; border-bottom: 0; }
    body { overflow-x: hidden; }
    .site-header, .hero, .page-hero { overflow-x: hidden; }
    .hero-grid, .page-hero-grid { padding-top: 42px; }
    .hero h1, .page-hero h1 {
        max-width: 100%;
        font-size: clamp(2.45rem, 10.4vw, 3rem);
        line-height: 1.08;
    }
    .hero-copy, .page-hero-copy, .hero-copy > p, .page-hero-copy > p {
        max-width: 100%;
        min-width: 0;
    }
    .proof-grid { max-width: 100%; }
}