
:root {
    --navy: #0e2241;
    --font-body: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --navy-2: #19365f;
    --navy-3: #0a1730;
    --ink: #111827;
    --muted: #667085;
    --line: #dde3ea;
    --soft: #f5f7fb;
    --white: #ffffff;
    --success: #067647;
    --error: #b42318;
    --max: 1260px;
    --radius: 22px;
    --shadow: 0 18px 50px rgba(17, 24, 39, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
}
img { max-width: 100%; display: block; }

.hero-media picture,
.service-image picture,
.case-image picture,
.insight-image picture,
.page-hero-image-frame picture,
.brand picture {
    display: block;
    height: 100%;
}
a { color: inherit; text-decoration: none; }
.container { width: min(100% - 32px, var(--max)); margin: 0 auto; }
.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;
}

.topbar {
    background: var(--navy-3);
    color: rgba(255,255,255,.86);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
}
.topbar-row {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding: 10px 0;
}
.topbar-left, .topbar-right {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}
.topbar a:hover { color: var(--white); }

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(180deg, rgba(255,255,255,.985) 0%, rgba(249,251,255,.97) 100%);
    backdrop-filter: blur(14px) saturate(145%);
    -webkit-backdrop-filter: blur(14px) saturate(145%);
    border-bottom: 1px solid rgba(17,24,39,.10);
    box-shadow:
        0 14px 34px rgba(10,23,48,.10),
        0 2px 0 rgba(255,255,255,.72) inset;
}
.site-header.menu-open {
    z-index: 180;
}
.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 1 auto;
    height: 42px;
    padding: 0;
    max-width: 220px;
}
.brand img {
    width: auto;
    height: 100%;
    max-width: 100%;
}
.header-row {
    min-height: 50px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 4px 0;
}
.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
}
.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin-left: 0;
}
.nav a {
    color: #243245;
    position: relative;
}
.nav a:hover, .nav a.is-active {
    color: var(--navy);
}
.nav-item {
    position: relative;
}
.nav-item-has-children {
    display: inline-flex;
    align-items: center;
}
.nav-parent {
    color: #243245;
    position: relative;
}
.nav-submenu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 320px;
    padding: 12px;
    display: grid;
    gap: 6px;
    background: rgba(255,255,255,.99);
    border: 1px solid rgba(17,24,39,.10);
    border-radius: 18px;
    box-shadow: 0 18px 38px rgba(10,23,48,.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 190;
}
.nav-submenu a {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    color: #243245;
}
.nav-submenu a::after {
    display: none !important;
}
.nav-submenu a:hover,
.nav-submenu a.is-active {
    background: rgba(10,23,48,.05);
    color: var(--navy);
}
.nav-item-has-children:hover .nav-submenu,
.nav-item-has-children:focus-within .nav-submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

@media (min-width: 861px) {
    .nav-item-has-children {
        padding-bottom: 18px;
        margin-bottom: -18px;
    }

    .nav-submenu {
        top: calc(100% + 4px);
        width: max-content;
        max-width: min(92vw, 560px);
    }

    .nav-submenu::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: -18px;
        height: 18px;
    }
}
.nav a.is-active::after,
.nav a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100%;
    height: 2px;
    background: var(--navy);
}
.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(17,24,39,.12);
    background: var(--white);
    border-radius: 14px;
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    margin: 0;
    border-radius: 999px;
    transition: transform .24s ease, opacity .2s ease, width .2s ease;
    transform-origin: center;
}
.nav-toggle {
    gap: 4px;
    flex-direction: column;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: .25s ease;
    border: 1px solid transparent;
}
.btn-primary {
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 12px 24px rgba(14,34,65,.18);
}
.btn-primary:hover { background: var(--navy-2); }
.header-phone {
    font-size: 13px;
    font-weight: 650;
    padding-inline: 14px;
}
.header-contact-btn {
    display: none;
    white-space: nowrap;
}
.hero-contact-btn {
    white-space: nowrap;
}
.btn-light {
    background: var(--white);
    color: var(--ink);
    border-color: rgba(17,24,39,.12);
}
.btn-light:hover { border-color: rgba(17,24,39,.2); }
.btn-outline-light {
    background: rgba(255,255,255,.08);
    color: var(--white);
    border-color: rgba(255,255,255,.2);
}
.btn-outline-light:hover { background: rgba(255,255,255,.14); }

.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--white);
    background: #08101e;
    overflow: hidden;
}
.hero::before,
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.hero::before {
    z-index: 1;
    background: linear-gradient(90deg, rgba(8,16,30,.84) 0%, rgba(8,16,30,.70) 38%, rgba(8,16,30,.30) 72%, rgba(8,16,30,.14) 100%);
}
.hero::after {
    z-index: 1;
    background: linear-gradient(180deg, rgba(0,0,0,.04) 0%, rgba(0,0,0,.12) 100%);
}
.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-media picture,
.hero-media img {
    width: 100%;
    height: 100%;
}
.hero-media img {
    object-fit: cover;
    object-position: center center;
}
.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 30px clamp(28px, 3.5vw, 58px) 64px;
}
.hero-copy {
    max-width: 760px;
    margin-left: clamp(22px, 2.4vw, 40px);
}
.hero-meta {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}
.hero-kicker,
.hero-location {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.hero-location {
    background: rgba(255,255,255,.05);
}
.hero h1 {
    margin: 0 0 18px;
    font-family: var(--font-display);
    font-size: clamp(36px, 5.4vw, 68px);
    font-weight: 800;
    line-height: 1.03;
    letter-spacing: -0.03em;
    word-spacing: 0.08em;
    text-transform: none;
    max-width: 820px;
}
.hero p {
    margin: 0 0 24px;
    max-width: 640px;
    font-size: 18px;
    line-height: 1.45;
    color: rgba(255,255,255,.88);
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 24px;
}
.trust-line {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.trust-line span {
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.06);
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,.9);
}
.logo-strip {
    background: var(--white);
    border-bottom: 1px solid var(--line);
}
.logo-strip-row {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
    padding: 28px 0;
}
.logo-chip {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fbfcfe;
    color: #7a8394;
    font-weight: 800;
}

.section { padding: 90px 0; }
.section-soft { background: var(--soft); }
.section-dark { background: var(--navy); color: var(--white); }
.section-head {
    max-width: 860px;
    margin-bottom: 36px;
}
.section-head h2 {
    margin: 0 0 14px;
    font-family: var(--font-display);
    font-size: clamp(34px, 4vw, 50px);
    font-weight: 750;
    line-height: 1.1;
    letter-spacing: -.03em;
}
.section-head p {
    margin: 0;
    font-size: 18px;
    color: var(--muted);
}
.section-dark .section-head p { color: rgba(255,255,255,.78); }

.grid { display: grid; gap: 24px; }
.services-grid,
.case-grid,
.insight-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.sector-grid,
.stats-grid,
.process-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
}
.service-card,
.case-card,
.insight-card,
.copy-card,
.contact-card,
.faq-item,
.stats-card,
.process-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.service-image, .case-image, .insight-image {
    aspect-ratio: 16 / 10;
    background-color: #d9e3ef;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}
.case-image img,
.page-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-body, .case-body, .insight-body {
    padding: 26px;
}
.service-body h3, .case-body h3, .insight-body h3 {
    margin: 0 0 10px;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
}
.service-body p, .case-body p, .insight-body p {
    margin: 0 0 16px;
    color: var(--muted);
}
.card-link {
    font-weight: 650;
    color: var(--navy);
}
.copy-card { padding: 30px; }
.copy-card p { margin: 0 0 16px; color: var(--muted); }
.copy-card ul { margin: 0; padding-left: 20px; color: var(--muted); }
.copy-card li + li { margin-top: 10px; }
.sector-card {
    padding: 24px;
    border-radius: 18px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    font-size: 20px;
    font-weight: 700;
    font-family: var(--font-display);
}
.sector-card p {
    margin: 10px 0 0;
    font-size: 15px;
    font-weight: 400;
    color: rgba(255,255,255,.74);
}
.stats-card {
    padding: 30px 24px;
    text-align: center;
}
.stats-value {
    font-family: var(--font-display);
    font-size: 44px;
    line-height: 1;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
}
.stats-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--muted);
}
.process-card { padding: 28px; }
.step-number {
    width: 54px; height: 54px;
    display: inline-flex;
    align-items: center; justify-content: center;
    border-radius: 50%;
    background: #eef3fa;
    color: var(--navy);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 16px;
}
.process-card h3 { margin: 0 0 10px; font-size: 22px; line-height: 1.2; }
.process-card p { margin: 0; color: var(--muted); }

.cta-band {
    display: grid;
    grid-template-columns: 1.25fr auto;
    gap: 24px;
    align-items: center;
    background: linear-gradient(135deg, #102848 0%, #1d3f68 100%);
    border-radius: 28px;
    padding: 36px;
    color: var(--white);
}
.cta-band h2 { margin: 0 0 10px; font-size: clamp(30px, 4vw, 44px); line-height: 1.1; }
.cta-band p { margin: 0; max-width: 760px; color: rgba(255,255,255,.84); }
.case-meta, .insight-meta {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 650;
    color: var(--navy);
}
.faq-list { display: grid; gap: 16px; }
.faq-item summary {
    list-style: none;
    cursor: pointer;
    position: relative;
    padding: 20px 22px;
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 700;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    color: var(--navy);
}
.faq-item[open] summary::after { content: '–'; }
.faq-answer { padding: 0 22px 22px; color: var(--muted); }

.contact-grid {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 24px;
}
.contact-card { padding: 30px; }
.contact-card h2 {
    margin: 0 0 14px;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 750;
    line-height: 1.1;
}
.contact-card p { margin: 0 0 18px; color: var(--muted); }
.contact-points { display: grid; gap: 12px; }
.contact-point {
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px 16px;
    font-weight: 550;
}
.contact-point-feature {
    background: linear-gradient(180deg, rgba(14,34,65,.98) 0%, rgba(20,46,83,.96) 100%);
    border-color: rgba(14,34,65,.28);
    color: var(--white);
    box-shadow: 0 14px 28px rgba(14,34,65,.12);
}
.contact-point-label {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.72);
}
.contact-point-value,
.contact-point-feature a {
    color: var(--white);
    font-size: 18px;
    font-weight: 750;
    line-height: 1.2;
    word-break: break-word;
}
.form-grid { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; margin-bottom: 8px; font-size: 14px; font-weight: 800; }
input, textarea {
    width: 100%;
    border: 1px solid rgba(17,24,39,.88);
    border-radius: 14px;
    padding: 14px 16px;
    font: inherit;
    color: var(--ink);
    background: var(--white);
    box-shadow: none;
    transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}
input:focus,
textarea:focus {
    outline: none;
    border-color: #111827;
    box-shadow: 0 0 0 1px rgba(17,24,39,.14);
}
input.is-invalid,
textarea.is-invalid {
    border-color: #d92d20 !important;
    background: #fff6f5;
    box-shadow: 0 0 0 1px rgba(217,45,32,.10);
}
input.is-valid,
textarea.is-valid {
    border-color: #111827;
    background: #ffffff;
}
textarea { min-height: 160px; resize: vertical; }
.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}
.form-message {
    margin-bottom: 16px;
    padding: 14px 16px;
    border-radius: 14px;
    font-weight: 800;
}
.form-success {
    background: rgba(18, 183, 106, .10);
    color: var(--success);
    border: 1px solid rgba(18, 183, 106, .18);
}
.form-error {
    background: rgba(240, 68, 56, .10);
    color: var(--error);
    border: 1px solid rgba(240, 68, 56, .18);
}
.breadcrumbs {
    border-bottom: 1px solid var(--line);
    background: #fbfcfe;
}
.breadcrumbs ol {
    margin: 0;
    padding: 14px 0;
    list-style: none;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
}
.breadcrumbs li::after {
    content: "/";
    margin-left: 10px;
}
.breadcrumbs li:last-child::after { display: none; }
.breadcrumbs a:hover { color: var(--navy); }

.page-hero {
    padding: 70px 0;
    background: linear-gradient(135deg, #0f2342 0%, #1d3f68 100%);
    color: var(--white);
}
.page-hero-main {
    padding: 38px 0 62px;
}
.page-hero .eyebrow {
    display: inline-flex;
    padding: 10px 14px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 999px;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.page-hero h1 {
    margin: 0 0 14px;
    font-family: var(--font-display);
    font-size: clamp(32px, 4.4vw, 54px);
    font-weight: 800;
    line-height: 1.10;
    letter-spacing: -0.024em;
    word-spacing: 0.06em;
}
.page-hero p {
    margin: 0;
    max-width: 760px;
    color: rgba(255,255,255,.84);
    font-size: 19px;
}
.page-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 26px;
    align-items: center;
}
.page-hero-main .page-hero-grid {
    align-items: start;
}
.page-hero-main .anchor-pills,
.page-hero-main .trust-line {
    margin-top: 24px;
}
.page-hero-image {
    aspect-ratio: 16/10;
    border-radius: 24px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0 24px 60px rgba(5,10,20,.24);
}
.kpi-list {
    display: grid;
    gap: 16px;
    margin-top: 22px;
}
.kpi-item {
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
}
.kpi-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
}
.article-content p,
.case-content p {
    margin: 0 0 18px;
    color: var(--muted);
}
.article-content h2,
.case-content h2 {
    margin: 0 0 14px;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 750;
    line-height: 1.14;
}
.article-body, .case-body-content {
    max-width: 860px;
}
.article-meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}
.contact-modal[hidden] {
    display: none !important;
}
.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 20050;
    padding: 10px 10px calc(10px + env(safe-area-inset-bottom));
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.contact-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 16, 30, .62);
}
.contact-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(700px, 100%);
    max-height: min(calc(100dvh - 20px - env(safe-area-inset-bottom)), 860px);
    overflow: auto;
    overscroll-behavior: contain;
    margin: 0 auto;
    background: #eef1f5;
    color: var(--ink);
    border-radius: 24px;
    border: 1px solid rgba(17,24,39,.10);
    box-shadow: 0 28px 80px rgba(5,10,20,.28);
}
.contact-modal-head {
    padding: 18px 24px 0;
}
.contact-modal-head h2 {
    margin: 0;
    padding-right: 48px;
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.06;
}
.contact-modal-head p {
    margin: 0;
    color: #5f6879;
    font-size: 15px;
    line-height: 1.55;
}
.contact-modal-body {
    padding: 12px 24px 20px;
}
.contact-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    margin: 0;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(17,24,39,.16);
    border-radius: 999px;
    background: var(--white);
    color: var(--ink);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
}
.contact-modal-head .eyebrow {
    margin-bottom: 8px;
}
.contact-modal .form-grid {
    gap: 10px;
}
.contact-modal label {
    margin-bottom: 5px;
}
.contact-modal input,
.contact-modal textarea {
    background: var(--white);
    border-color: rgba(17,24,39,.88);
    padding: 12px 14px;
}
.contact-modal textarea {
    min-height: 92px;
    resize: none;
}
.contact-modal .btn.btn-primary {
    width: 100%;
    min-height: 52px;
}
.contact-modal .btn.btn-primary {
    width: 100%;
}
body.nav-open {
    overflow: hidden;
}

body.modal-open {
    overflow: hidden;
}
body.modal-open .mobile-sticky-cta {
    opacity: 0;
    pointer-events: none;
}

.site-footer {
    background: var(--navy-3);
    color: rgba(255,255,255,.8);
    padding: 36px 0;
}
.footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-brand {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 6px;
}
.footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    font-weight: 800;
}
.footer-nav-groups {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 28px;
    align-items: start;
}
.footer-services {
    display: grid;
    gap: 12px;
}
.footer-services strong {
    color: var(--white);
    font-size: 13px;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.footer-service-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
}
.footer-service-links a {
    color: rgba(255,255,255,.86);
}
.footer-service-links a:hover {
    color: var(--white);
}
.footer-contact-grid {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.08);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.footer-contact-card {
    display: grid;
    gap: 4px;
}
.footer-contact-card strong {
    color: var(--white);
    font-size: 13px;
    letter-spacing: .02em;
    text-transform: uppercase;
}
.footer-contact-card span,
.footer-contact-card a {
    color: rgba(255,255,255,.82);
    font-size: 14px;
}
.footer-meta {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex;
    gap: 18px;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 14px;
}
.lead-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding-left: 20px;
}
.brand-panel {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}
.brand-panel img {
    width: 100%;
    height: auto;
}

.mobile-sticky-cta {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0 14px calc(6px + env(safe-area-inset-bottom));
    z-index: 9999;
    pointer-events: none;
}
.mobile-sticky-btn {
    width: 100%;
    min-height: 58px;
    border-radius: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.01em;
    padding: 0 18px;
    pointer-events: auto;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255,255,255,.18) 0%, rgba(255,255,255,.03) 100%),
        linear-gradient(180deg, rgba(14,34,65,.84) 0%, rgba(14,34,65,.72) 100%);
    border: 1px solid rgba(255,255,255,.26);
    color: rgba(255,255,255,.96);
    backdrop-filter: blur(28px) saturate(175%);
    -webkit-backdrop-filter: blur(28px) saturate(175%);
    box-shadow:
        0 18px 40px rgba(10, 23, 48, .22),
        inset 0 1px 0 rgba(255,255,255,.24),
        inset 0 -1px 0 rgba(255,255,255,.08);
}
.mobile-sticky-btn::before {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    top: 5px;
    height: 44%;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255,255,255,.22) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}
.mobile-sticky-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.10);
    pointer-events: none;
}
.mobile-sticky-btn span,
.mobile-sticky-btn {
    text-shadow: 0 1px 0 rgba(0,0,0,.16);
}
.mobile-sticky-call {
    color: rgba(255,255,255,.96);
}

.case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 16px;
}
.case-tags span {
    padding: 7px 10px;
    border-radius: 999px;
    background: #eef3fa;
    color: var(--navy);
    font-size: 13px;
    font-weight: 700;
}
.project-trust-line {
    margin-top: 20px;
}
.project-trust-line a {
    color: inherit;
}
.page-hero-image-frame {
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.1);
}
.mini-location-stack {
    display: grid;
    gap: 12px;
    margin-top: 18px;
    color: var(--muted);
}
.mini-location-stack strong {
    color: var(--ink);
}
.compact-kpi-list {
    margin-top: 0;
}
.cta-band-project {
    grid-template-columns: 1fr auto;
}
.cta-band-actions {
    display: grid;
    gap: 12px;
}
.city-cluster + .city-cluster {
    margin-top: 54px;
}
.city-cluster-head {
    margin-bottom: 24px;
}
.industry-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.industry-proof-card h3 {
    margin: 0 0 10px;
    font-family: var(--font-display);
    font-size: 24px;
    line-height: 1.2;
}
.industry-proof-links {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}
.industry-proof-links a {
    color: var(--navy);
    font-weight: 700;
}
.section-cta-inline {
    margin-top: 28px;
}
@media (max-width: 1180px) {
    .services-grid,
    .case-grid,
    .insight-grid,
    .sector-grid,
    .stats-grid,
    .process-grid,
    .contact-grid,
    .two-col,
    .cta-band,
    .logo-strip-row,
    .page-hero-grid,
    .industry-proof-grid {
        grid-template-columns: 1fr 1fr;
    }

    .header-row {
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 14px;
        padding: 6px 0;
    }
}


@media (max-width: 980px) {
    .header-phone {
        display: none !important;
    }
}

@media (max-width: 860px) {
    .topbar-row,
    .topbar-left,
    .topbar-right {
        justify-content: center;
    }

    .topbar-hours {
        display: none;
    }

    .services-grid,
    .case-grid,
    .insight-grid,
    .sector-grid,
    .stats-grid,
    .process-grid,
    .contact-grid,
    .two-col,
    .cta-band,
    .form-row,
    .logo-strip-row,
    .page-hero-grid {
        grid-template-columns: 1fr;
    }

    .site-header {
        overflow: visible;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(255,255,255,.98);
        box-shadow: 0 10px 24px rgba(10,23,48,.08);
    }

    .header-row {
        min-height: 48px;
        position: relative;
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        gap: 8px;
        padding: 3px 0;
    }

    .header-phone {
        display: none !important;
    }

    .mobile-sticky-cta {
        display: block;
    }

    body {
        padding-bottom: 108px;
    }

    .brand {
        display: inline-flex;
        align-items: center;
        flex: 1 1 auto;
        max-width: min(48vw, 200px);
        height: 40px;
        position: relative;
        z-index: 181;
    }

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

    .header-actions {
        gap: 8px;
        flex: 0 0 auto;
        margin-left: 0;
    }

    .header-contact-btn {
        display: inline-flex;
        min-height: 42px;
        height: 42px;
        padding-inline: 16px;
        font-size: 12px;
        border-radius: 14px;
    }

    .nav-toggle {
        display: none;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        position: relative;
        z-index: 181;
    }

    .nav {
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin-top: 8px;
        padding-top: 8px;
        border-top: 1px solid rgba(221,227,234,.96);
    }
    .nav-item-has-children {
        display: block;
    }

    .nav-parent {
        display: block;
        padding: 14px 0;
        border-top: 1px solid rgba(221,227,234,.95);
    }

    .nav-submenu {
        position: static;
        transform: none;
        min-width: 0;
        padding: 0 0 8px 14px;
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        gap: 0;
    }

    .nav-submenu a {
        padding: 12px 0;
        border-top: 1px solid rgba(221,227,234,.95);
        border-radius: 0;
        font-size: 13px;
        background: transparent !important;
    }

    .nav a {
        padding: 14px 0;
        border-top: 1px solid rgba(221,227,234,.95);
    }

    .nav a:first-child {
        border-top: 0;
    }

    .nav a::after { display: none !important; }

    html.js-ready .header-row {
        min-height: 48px;
        flex-wrap: nowrap;
    }

    html.js-ready .nav-toggle {
        display: inline-flex;
    }

    html.js-ready .nav {
        display: none;
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        margin-top: 0;
        padding: 8px 18px;
        border-top: 0;
        background: #ffffff;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: 1px solid rgba(221,227,234,.96);
        border-radius: 24px;
        box-shadow: 0 18px 40px rgba(17,24,39,.10);
        z-index: 180;
        max-height: calc(100dvh - 96px);
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-y;
    }

    html.js-ready .nav.is-open {
        display: flex;
    }

    body.nav-open {
        overflow: hidden;
    }

    .hero {
        min-height: 500px;
    }

    .hero-media img {
        object-position: 60% center;
    }

    .hero-inner { padding: 24px 18px 56px; }
    .hero-copy { margin-left: 0; }
    .hero h1 {
        font-size: clamp(42px, 10vw, 58px);
        line-height: 1.06;
        word-spacing: 0.10em;
    }
    .hero p { font-size: 18px; }
    .hero-actions { gap: 10px; }
    .hero-contact-btn {
        display: none;
    }
    .hero-phone-btn {
        width: 100%;
    }
    .page-hero-main { padding: 30px 0 52px; }
    .page-hero h1 {
        font-size: clamp(36px, 8vw, 46px);
        line-height: 1.12;
        word-spacing: 0.08em;
    }
    .section { padding: 70px 0; }

    .mobile-sticky-btn {
        background: linear-gradient(180deg, rgba(14,34,65,.96) 0%, rgba(14,34,65,.90) 100%);
        border: 1px solid rgba(255,255,255,.12);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: 0 14px 28px rgba(10,23,48,.18);
    }

    .mobile-sticky-btn::before {
        display: none;
    }

    .contact-modal {
        padding: 4px 4px calc(4px + env(safe-area-inset-bottom));
        align-items: flex-start;
    }

    .contact-modal-dialog {
        width: 100%;
        max-height: calc(100dvh - 8px - env(safe-area-inset-bottom));
        margin: 0;
        border-radius: 18px;
    }

    .contact-modal-head,
    .contact-modal-body {
        padding-left: 14px;
        padding-right: 14px;
    }

    .contact-modal-head {
        padding-top: 14px;
    }

    .contact-modal-body {
        padding-top: 10px;
        padding-bottom: 14px;
    }

    .contact-modal-head h2 {
        font-size: 22px;
    }

    .contact-modal label {
        font-size: 13px;
        margin-bottom: 4px;
    }

    .contact-modal input,
    .contact-modal textarea {
        padding: 11px 12px;
        border-radius: 12px;
    }

    .contact-points-compact,
    .modal-form-grid .form-row,
    .contact-form-grid-simple .form-row {
        grid-template-columns: 1fr;
    }

    .contact-modal textarea {
        min-height: 76px;
    }

    .contact-modal .btn.btn-primary {
        min-height: 48px;
    }
}


.hero p,
.section-head p,
.service-body p,
.case-body p,
.insight-body p,
.copy-card p,
.contact-card p,
.faq-answer,
.article-content p,
.case-content p,
.page-hero p {
    font-weight: 400;
    line-height: 1.72;
}

.topbar-item,
.nav a,
.btn,
.logo-chip,
.card-link,
.case-meta,
.insight-meta,
.breadcrumbs ol,
.footer-links,
label,
.contact-point,
.hero-kicker,
.trust-line span {
    font-family: var(--font-body);
}

.section-head h2,
.service-body h3,
.case-body h3,
.insight-body h3,
.process-card h3,
.contact-card h2,
.page-hero h1,
.article-content h2,
.case-content h2,
.stats-value,
.footer-brand,
.hero h1 {
    font-family: var(--font-display);
}

.header-cta,
.btn-primary,
.btn-light,
.btn-outline-light {
    white-space: nowrap;
}


/* Typography refinement */
body {
    line-height: 1.68;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.topbar-item,
.logo-chip,
.footer-links,
label,
.hero-kicker,
.hero-location,
.page-hero .eyebrow,
.form-message {
    font-weight: 600;
}

.btn {
    font-weight: 650;
}

.service-body h3,
.case-body h3,
.insight-body h3,
.process-card h3,
.kpi-item strong {
    font-weight: 680;
}

.footer-links {
    font-weight: 600;
}

.logo-chip {
    font-weight: 600;
}

label {
    font-weight: 600;
}

.hero-kicker,
.page-hero .eyebrow {
    letter-spacing: 0.075em;
}

@media (max-width: 860px) {
    .topbar {
        font-size: 13px;
    }

    .topbar-row {
        min-height: 44px;
        padding: 8px 0;
    }
}

.project-kpi-list { margin-top: 0; }
.project-kpi-list .kpi-item span { display: block; margin-top: 6px; color: var(--muted); }


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

.copy-card-title {
    margin: 0 0 14px;
    font-family: var(--font-display);
    font-size: 28px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--navy);
}

.page-hero .trust-line {
    margin-top: 24px;
}

.copy-card p:last-child,
.copy-card ul:last-child {
    margin-bottom: 0;
}

@media (max-width: 860px) {
    .detail-grid {
        grid-template-columns: 1fr;
    }
}


.logo-strip-soft {
    border-bottom: 0;
    background: var(--soft);
}
.hero-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
    max-width: 960px;
}
.hero-proof-card,
.trust-ribbon-card,
.proof-panel {
    border-radius: 18px;
    border: 1px solid rgba(17,24,39,.1);
    padding: 18px;
}
.hero-proof-card {
    background: rgba(255,255,255,.08);
}
.hero-proof-card strong,
.trust-ribbon-card strong,
.proof-panel h3 {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
}
.hero-proof-card span,
.trust-ribbon-card span {
    display: block;
    font-size: 14px;
    line-height: 1.5;
}
.hero-proof-card span {
    color: rgba(255,255,255,.84);
}
.trust-ribbon-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding: 22px 0;
}
.trust-ribbon-card {
    background: var(--white);
    box-shadow: var(--shadow);
}
.trust-ribbon-card span {
    color: var(--muted);
}
.service-image,
.insight-image,
.page-hero-image-frame {
    overflow: hidden;
}
.service-image img,
.insight-image img,
.page-hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.proof-panel {
    background: var(--white);
    box-shadow: var(--shadow);
    margin-top: 22px;
}
.proof-panel-soft {
    background: var(--soft);
    box-shadow: none;
}
.form-notice {
    background: #fffaeb;
    color: #b54708;
    border: 1px solid #fedf89;
}
.form-actions-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}
.form-helper {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 14px;
}
.dual-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}
@media (max-width: 900px) {
    .hero-proof-grid,
    .trust-ribbon-grid {
        grid-template-columns: 1fr;
    }
}

.proof-metrics-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.proof-metric-card {
    background: var(--soft);
    border: 1px solid rgba(17,24,39,.08);
    border-radius: 16px;
    padding: 16px;
}

.proof-metric-value {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    color: var(--navy);
    margin-bottom: 8px;
}

.proof-metric-label {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.response-list {
    display: grid;
    gap: 14px;
}

.response-item {
    border: 1px solid rgba(17,24,39,.08);
    border-radius: 16px;
    background: var(--white);
    padding: 16px 18px;
    box-shadow: var(--shadow);
}

.response-item p {
    margin: 0;
}

.urgent-panel {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}

.urgent-panel-item {
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    color: rgba(255,255,255,.96);
    font-size: 14px;
}

.hero-action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

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

@media (max-width: 640px) {
    .proof-metrics-grid {
        grid-template-columns: 1fr;
    }
}


.anchor-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}
.anchor-pills a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(17,24,39,.12);
    background: rgba(255,255,255,.85);
    color: var(--ink);
    font-size: 14px;
    font-weight: 600;
}
.anchor-pills a:hover {
    border-color: rgba(17,24,39,.24);
}
.hub-jump-grid,
.industry-support-grid,
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}
.hub-jump-card,
.industry-support-card,
.faq-card {
    height: 100%;
}
.text-link-list,
.industry-proof-links {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}
.text-link-list a,
.industry-proof-links a {
    color: var(--navy);
    font-weight: 600;
    line-height: 1.45;
}
.text-link-list a:hover,
.industry-proof-links a:hover {
    text-decoration: underline;
}
@media (max-width: 860px) {
    .hub-jump-grid,
    .industry-support-grid,
    .faq-grid,
    .industry-proof-grid {
        grid-template-columns: 1fr;
    }
    .industry-proof-card {
        padding: 24px;
    }
    .anchor-pills {
        gap: 10px;
    }
}


@media (max-width: 768px) {
    .hero-phone-btn {
        display: none;
    }
}


#contact-form {
    scroll-margin-top: 110px;
}

@media (max-width: 640px) {
    .footer-contact-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 860px) {
    .footer-nav-groups {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .footer-service-links {
        grid-template-columns: 1fr;
    }
}


form select {
    width: 100%;
    border: 1px solid rgba(17,24,39,.14);
    border-radius: 14px;
    padding: 14px 16px;
    min-height: 52px;
    background: var(--white);
    color: var(--ink);
    font: inherit;
}

.footer-meta a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 640px) {
    .brand {
        max-width: min(47vw, 190px);
        height: 44px;
    }

    .brand img {
        width: auto;
        height: 100%;
    }

    .header-contact-btn {
        min-height: 34px;
        padding-inline: 10px;
        font-size: 11px;
    }
}


/* Premium conversion/SEO refresh: restrained bright accents, stronger readability, operator-service focus. */
:root {
    --accent: #f7b531;
    --accent-2: #35b6c8;
    --accent-soft: rgba(247, 181, 49, .14);
    --cyan-soft: rgba(53, 182, 200, .12);
    --premium-glow: 0 22px 60px rgba(14, 34, 65, .13);
}

body {
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fe 34%, #ffffff 100%);
}

.hero::before {
    background:
        radial-gradient(circle at 18% 22%, rgba(247,181,49,.24), transparent 28%),
        radial-gradient(circle at 84% 18%, rgba(53,182,200,.18), transparent 26%),
        linear-gradient(90deg, rgba(6,16,35,.91) 0%, rgba(14,34,65,.72) 48%, rgba(14,34,65,.34) 100%);
}

.btn-primary {
    border-color: rgba(247,181,49,.42);
    background: linear-gradient(135deg, var(--navy) 0%, #1f4d7c 100%);
    box-shadow: 0 14px 32px rgba(14,34,65,.18);
}

.btn-primary:hover,
.btn-light:hover,
.btn-outline-light:hover {
    transform: translateY(-1px);
}

.btn-primary:focus-visible,
.btn-light:focus-visible,
.btn-outline-light:focus-visible,
.nav a:focus-visible,
form input:focus-visible,
form textarea:focus-visible,
form select:focus-visible {
    outline: 3px solid rgba(247,181,49,.55);
    outline-offset: 3px;
}

.hero-kicker,
.eyebrow-dark,
.intent-label {
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hero-kicker,
.intent-label {
    color: var(--accent);
}

.section-head p,
.copy-card p,
.service-card p,
.case-card p,
.insight-card p,
.contact-card p {
    color: #526174;
}

.section-priority {
    background:
        radial-gradient(circle at 8% 0%, rgba(247,181,49,.20), transparent 28%),
        radial-gradient(circle at 96% 4%, rgba(53,182,200,.16), transparent 28%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.priority-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 34px;
    align-items: center;
}

.priority-card-grid,
.service-intent-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.priority-card,
.service-intent-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(14,34,65,.10);
    box-shadow: var(--premium-glow);
}

.priority-card::before,
.service-intent-card::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.eyebrow-dark,
.intent-label {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 800;
}

.eyebrow-dark {
    color: #1f4d7c;
}

.dual-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.service-intent-strip {
    padding: 28px 0 8px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.service-intent-card {
    padding: 26px;
    border-radius: var(--radius);
    background: rgba(255,255,255,.93);
}

.service-intent-card h2 {
    margin: 0 0 10px;
    font-size: clamp(22px, 2vw, 28px);
    line-height: 1.16;
    color: var(--navy);
}

.service-intent-card p {
    margin: 0;
    color: #526174;
}

.logo-chip,
.trust-ribbon-card,
.copy-card,
.service-card,
.contact-card {
    border-color: rgba(14,34,65,.10);
}

.trust-ribbon-card strong,
.priority-card h3,
.copy-card strong {
    color: var(--navy);
}

.contact-modal-head {
    background:
        radial-gradient(circle at 22% 8%, rgba(247,181,49,.18), transparent 30%),
        linear-gradient(135deg, var(--navy), #183d69);
}

@media (max-width: 980px) {
    .priority-grid,
    .priority-card-grid,
    .service-intent-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero::before {
        background: linear-gradient(180deg, rgba(6,16,35,.88) 0%, rgba(14,34,65,.76) 100%);
    }

    .service-intent-card {
        padding: 22px;
    }
}
