:root {
    --navy-950: #04111d;
    --navy-900: #071827;
    --navy-850: #0a2032;
    --navy-800: #0d2940;
    --blue-700: #165e7f;
    --blue-600: #1d769a;
    --blue-500: #2899bd;
    --teal-400: #4fd1c5;
    --teal-300: #79e1d7;
    --orange-500: #ef744b;
    --orange-400: #f58a64;
    --cream: #f6f3ed;
    --paper: #fbfaf7;
    --white: #ffffff;
    --ink: #132330;
    --muted: #5e6c77;
    --line: #dce3e5;
    --success: #1f8d70;
    --warning: #b76828;
    --shadow-sm: 0 12px 30px rgba(4, 17, 29, .08);
    --shadow-md: 0 24px 70px rgba(4, 17, 29, .14);
    --shadow-lg: 0 36px 100px rgba(4, 17, 29, .22);
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 30px;
    --container: 1200px;
    --header-height: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
    font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
    line-height: 1.1;
    letter-spacing: -.035em;
}
h1 { font-size: clamp(3rem, 6.5vw, 6.5rem); margin-bottom: 24px; }
h2 { font-size: clamp(2.1rem, 4.2vw, 4.2rem); margin-bottom: 20px; }
h3 { font-size: 1.4rem; margin-bottom: 12px; }
p { margin-bottom: 20px; }
::selection { color: var(--white); background: var(--orange-500); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 112px 0; position: relative; }
.section--muted { background: #eff2f1; }
.section--dark { color: var(--white); background: var(--navy-900); overflow: hidden; }
.section--dark::before {
    content: "";
    position: absolute;
    width: 680px;
    height: 680px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(40, 153, 189, .2), transparent 68%);
    top: -320px;
    right: -220px;
    pointer-events: none;
}
.icon { width: 24px; height: 24px; flex: none; }
.icon--small { width: 18px; height: 18px; }
.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;
}
.skip-link {
    position: fixed;
    z-index: 999;
    left: 16px;
    top: -100px;
    padding: 12px 18px;
    color: var(--white);
    background: var(--navy-900);
    border-radius: 0 0 8px 8px;
}
.skip-link:focus { top: 0; }

.eyebrow {
    margin-bottom: 14px;
    color: var(--blue-600);
    font-size: .77rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.section--dark .eyebrow,
.page-hero .eyebrow,
.home-hero .eyebrow { color: var(--teal-300); }
.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.button-row--center { justify-content: center; }
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 52px;
    padding: 0 23px;
    color: var(--white);
    background: var(--orange-500);
    border: 1px solid var(--orange-500);
    border-radius: 999px;
    font-size: .94rem;
    font-weight: 800;
    box-shadow: 0 10px 26px rgba(239, 116, 75, .22);
    transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--orange-400); border-color: var(--orange-400); box-shadow: 0 14px 32px rgba(239, 116, 75, .3); }
.button:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid rgba(79, 209, 197, .65); outline-offset: 3px; }
.button--small { min-height: 44px; padding-inline: 18px; font-size: .86rem; }
.button--ghost { color: var(--white); background: transparent; border-color: rgba(255, 255, 255, .32); box-shadow: none; }
.button--ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.58); }
.button--light { color: var(--navy-900); background: var(--white); border-color: var(--white); box-shadow: none; }
.button--light:hover { color: var(--navy-900); background: var(--teal-300); border-color: var(--teal-300); }
.button--outline { color: var(--navy-900); background: transparent; border-color: #a8b6bd; box-shadow: none; }
.button--outline:hover { color: var(--white); background: var(--navy-900); border-color: var(--navy-900); }
.button--ghost-dark { color: var(--navy-900); background: transparent; border-color: rgba(7, 24, 39, .28); box-shadow: none; }
.button--ghost-dark:hover { color: var(--white); background: var(--navy-900); border-color: var(--navy-900); }
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue-700);
    font-weight: 800;
}
.text-link .icon { transition: transform .2s ease; }
.text-link:hover .icon { transform: translateX(4px); }
.section--dark .text-link { color: var(--teal-300); }

.announcement { color: #dff8f5; background: var(--navy-950); font-size: .78rem; }
.announcement__inner { min-height: 34px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.announcement a { display: inline-flex; align-items: center; gap: 6px; font-weight: 800; color: var(--teal-300); }
.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    background: rgba(251, 250, 247, .93);
    border-bottom: 1px solid rgba(7, 24, 39, .08);
    backdrop-filter: blur(14px);
    transition: box-shadow .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 8px 30px rgba(4, 17, 29, .1); }
.site-header__inner { min-height: var(--header-height); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 26px; }
.brand img { width: 225px; height: auto; }
.primary-nav { display: flex; justify-content: flex-end; align-items: center; gap: 25px; }
.primary-nav > a, .nav-group > a { position: relative; padding: 30px 0; font-size: .9rem; font-weight: 750; color: #243744; }
.primary-nav > a::after, .nav-group > a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 21px;
    height: 2px;
    background: var(--orange-500);
    transition: right .2s ease;
}
.primary-nav > a:hover::after, .nav-group > a:hover::after, .primary-nav [aria-current="page"]::after { right: 0; }
.nav-group { position: relative; display: flex; align-items: center; }
.nav-group__toggle { margin-left: 4px; padding: 8px 2px; color: #41525d; background: transparent; border: 0; font-weight: 800; }
.nav-dropdown {
    position: absolute;
    z-index: 10;
    top: calc(100% - 8px);
    left: -18px;
    width: 300px;
    display: grid;
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    color: var(--white);
    background: var(--navy-900);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    transition: .2s ease;
}
.nav-dropdown--small { width: 220px; }
.nav-dropdown a { padding: 10px 12px; border-radius: 8px; font-size: .86rem; font-weight: 650; color: #dce8ed; }
.nav-dropdown a:hover { color: var(--white); background: rgba(79, 209, 197, .1); }
.nav-group:hover .nav-dropdown, .nav-group:focus-within .nav-dropdown, .nav-group.submenu-open .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; color: var(--navy-900); background: transparent; border: 1px solid #ccd7da; border-radius: 50%; }
.nav-toggle__close { display: none; }
.nav-open .nav-toggle__open { display: none; }
.nav-open .nav-toggle__close { display: block; }

.home-hero {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(4, 17, 29, .99) 0%, rgba(7, 35, 55, .98) 54%, rgba(13, 65, 87, .96) 100%);
}
.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .26;
    background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to right, black, transparent 80%);
}
.home-hero__grid { position: relative; z-index: 2; min-height: 620px; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 44px; padding: 58px 0 66px; }
.home-hero__content h1 { max-width: 720px; margin-bottom: 18px; font-size: clamp(3.35rem, 4.6vw, 4.75rem); line-height: 1.03; }
.home-hero__lead { max-width: 700px; margin-bottom: 18px; color: #c9d9e0; font-size: 1.08rem; line-height: 1.62; }
.hero-trust { max-width: 690px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 32px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14); }
.hero-trust div { display: grid; gap: 2px; }
.hero-trust strong { color: var(--teal-300); font-size: 1.9rem; line-height: 1; }
.hero-trust span { color: #9eb2bd; font-size: .77rem; line-height: 1.4; }
.home-hero__visual { position: relative; align-self: stretch; display: flex; align-items: center; justify-content: center; }
.home-hero__visual > img { width: min(100%, 510px); filter: drop-shadow(0 30px 55px rgba(0,0,0,.34)); }
.status-card { position: absolute; display: flex; align-items: center; gap: 12px; min-width: 190px; padding: 14px 17px; color: var(--ink); background: rgba(255,255,255,.96); border: 1px solid rgba(255,255,255,.6); border-radius: 14px; box-shadow: var(--shadow-md); }
.status-card--top { top: 19%; right: -2%; }
.status-card--bottom { bottom: 20%; left: -5%; }
.status-card small, .status-card strong { display: block; line-height: 1.3; }
.status-card small { color: var(--muted); font-size: .67rem; }
.status-card strong { font-size: .84rem; }
.status-card .icon { color: var(--blue-600); }
.status-dot { width: 11px; height: 11px; flex: none; border-radius: 50%; background: var(--teal-400); box-shadow: 0 0 0 6px rgba(79,209,197,.18); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(10px); pointer-events: none; }
.hero-glow--one { width: 540px; height: 540px; right: -180px; top: -250px; background: rgba(79,209,197,.14); }
.hero-glow--two { width: 440px; height: 440px; left: 28%; bottom: -380px; background: rgba(239,116,75,.18); }

.trust-bar { background: var(--white); border-bottom: 1px solid var(--line); }
.trust-bar__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-bar__grid > div { min-height: 118px; display: flex; align-items: center; gap: 15px; padding: 20px 28px; border-right: 1px solid var(--line); }
.trust-bar__grid > div:first-child { border-left: 1px solid var(--line); }
.trust-bar .icon { width: 30px; height: 30px; color: var(--blue-600); }
.trust-bar span { display: grid; color: var(--muted); font-size: .77rem; line-height: 1.4; }
.trust-bar strong { color: var(--ink); font-size: .92rem; }

.section-heading { position: relative; max-width: 670px; }
.section-heading > p:not(.eyebrow) { color: var(--muted); font-size: 1.05rem; }
.section--dark .section-heading > p:not(.eyebrow) { color: #aac0ca; }
.section-heading--center { max-width: 850px; margin: 0 auto 56px; text-align: center; }
.section-heading--with-action { max-width: none; display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 50px; }
.section-heading--with-action > div { max-width: 760px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-grid--compact .service-card { min-height: 320px; }
.service-card { position: relative; min-height: 350px; display: flex; flex-direction: column; padding: 34px; overflow: hidden; background: var(--white); border: 1px solid #dfe6e7; border-radius: var(--radius-md); box-shadow: 0 7px 20px rgba(4,17,29,.035); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.service-card::after { content: ""; position: absolute; width: 180px; height: 180px; right: -100px; bottom: -120px; border-radius: 50%; background: rgba(40,153,189,.08); transition: transform .3s ease; }
.service-card:hover { transform: translateY(-8px); border-color: rgba(40,153,189,.42); box-shadow: var(--shadow-md); }
.service-card:hover::after { transform: scale(1.5); }
.service-card__icon { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 28px; color: var(--white); background: linear-gradient(145deg, var(--blue-600), var(--navy-800)); border-radius: 16px; box-shadow: 0 12px 24px rgba(22,94,127,.2); }
.service-card__icon .icon { width: 28px; height: 28px; }
.service-card h3 { font-size: 1.55rem; }
.service-card h3 a::after { content: ""; position: absolute; inset: 0; }
.service-card p:not(.eyebrow) { color: var(--muted); }
.service-card .text-link { position: relative; z-index: 2; margin-top: auto; }

.engineering-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr .9fr; align-items: center; gap: 80px; }
.engineering-grid--text-first { grid-template-columns: .9fr 1fr; }
.engineering-visual { padding: 35px; background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.02)); border: 1px solid rgba(255,255,255,.11); border-radius: var(--radius-lg); }
.process-list { display: grid; gap: 20px; margin: 34px 0; }
.process-list > div { display: grid; grid-template-columns: 46px 1fr; gap: 16px; }
.process-list > div > span { width: 42px; height: 42px; display: grid; place-items: center; color: var(--navy-900); background: var(--teal-300); border-radius: 50%; font-size: .75rem; font-weight: 900; }
.process-list strong { display: block; font-size: 1.02rem; }
.process-list p { margin: 3px 0 0; color: #a9bdc7; font-size: .9rem; }

.location-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.location-cards--large .location-card { grid-template-columns: .8fr 1.2fr; }
.location-card { overflow: hidden; display: grid; grid-template-columns: .7fr 1.3fr; min-height: 390px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.location-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.location-card__map { position: relative; display: grid; place-items: center; overflow: hidden; min-height: 270px; background: linear-gradient(145deg, var(--navy-800), var(--blue-600)); }
.location-card__map::before, .location-card__map::after { content: ""; position: absolute; border: 1px solid rgba(121,225,215,.32); border-radius: 50%; }
.location-card__map::before { width: 220px; height: 220px; }
.location-card__map::after { width: 125px; height: 125px; }
.location-card__map--fl { background: linear-gradient(145deg, #0c4057, #197796); }
.location-card__map span { position: relative; z-index: 2; width: 80px; height: 80px; display: grid; place-items: center; color: var(--white); background: var(--orange-500); border-radius: 50% 50% 50% 10%; transform: rotate(-45deg); box-shadow: 0 20px 44px rgba(0,0,0,.25); }
.location-card__map .icon { width: 36px; height: 36px; transform: rotate(45deg); }
.location-card__content { display: flex; flex-direction: column; padding: 40px; }
.location-card__content p:not(.eyebrow) { color: var(--muted); }
.location-card__actions { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 18px; margin-top: auto; padding-top: 22px; border-top: 1px solid var(--line); font-weight: 800; }
.license-chip { align-self: flex-start; padding: 7px 11px; color: var(--blue-700) !important; background: #e8f4f6; border-radius: 999px; font-size: .75rem; font-weight: 800; }

.split-layout { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 90px; }
.split-layout--reverse { grid-template-columns: 1.05fr .95fr; }
.check-panel { padding: 38px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.check-panel--dark { color: var(--white); background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); }
.check-item { display: grid; grid-template-columns: 40px 1fr; gap: 15px; align-items: start; padding: 19px 0; border-bottom: 1px solid var(--line); }
.check-panel--dark .check-item { border-color: rgba(255,255,255,.1); }
.check-item:last-child { border-bottom: 0; }
.check-item > span { width: 34px; height: 34px; display: grid; place-items: center; color: var(--success); background: rgba(79,209,197,.13); border-radius: 50%; }
.check-item .icon { width: 18px; height: 18px; }
.check-item p { margin: 4px 0 0; }
.clean-list { display: grid; gap: 13px; margin: 25px 0 32px; padding: 0; list-style: none; }
.clean-list li { display: flex; align-items: center; gap: 10px; font-weight: 650; }
.clean-list .icon { color: var(--success); }
.support-panel { padding: 30px; color: var(--white); background: var(--navy-900); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.support-panel__header { display: flex; align-items: center; gap: 16px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,.12); }
.support-panel__header > span { width: 52px; height: 52px; display: grid; place-items: center; color: var(--navy-900); background: var(--teal-300); border-radius: 14px; }
.support-panel__header small, .support-panel__header strong { display: block; }
.support-panel__header small { color: #9db2bd; }
.support-panel__rows { display: grid; margin: 14px 0 25px; }
.support-panel__rows div { display: flex; justify-content: space-between; gap: 20px; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.09); font-size: .87rem; }
.support-panel__rows span { color: #a9bdc7; }
.support-panel__rows strong { text-align: right; }
.support-panel__rows .good { color: var(--teal-300); }
.support-panel__rows .warn { color: #ffb58d; }
.support-panel > a { display: inline-flex; align-items: center; gap: 8px; color: var(--teal-300); font-weight: 800; }

.cta-section { padding-top: 40px; }
.cta-card { position: relative; overflow: hidden; display: flex; justify-content: space-between; align-items: center; gap: 50px; padding: 55px 60px; background: linear-gradient(135deg, #e9f3f1, #f7eee6); border: 1px solid #d8e4e1; border-radius: var(--radius-lg); }
.cta-card::after { content: ""; position: absolute; width: 300px; height: 300px; right: -130px; bottom: -210px; border-radius: 50%; background: rgba(239,116,75,.2); }
.cta-card--large { padding-block: 70px; }
.cta-card > div:first-child { position: relative; z-index: 1; max-width: 760px; }
.cta-card h2 { font-size: clamp(2rem, 3.6vw, 3.7rem); }
.cta-card p:not(.eyebrow) { color: var(--muted); }
.cta-card .button-row, .cta-card > .button { position: relative; z-index: 2; flex: none; }

.page-hero { position: relative; overflow: hidden; color: var(--white); background: linear-gradient(135deg, var(--navy-950), #0b3650); }
.page-hero::before { content: ""; position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(to right, black, transparent 80%); }
.page-hero__grid { position: relative; z-index: 1; min-height: 600px; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 80px; padding: 90px 0; }
.page-hero__content h1 { font-size: clamp(3.3rem, 5.7vw, 6.1rem); }
.page-hero__lead { max-width: 780px; color: #c3d5dd; font-size: 1.16rem; }
.page-hero--simple { min-height: 480px; display: grid; align-items: center; }
.page-hero__narrow { position: relative; z-index: 1; max-width: 980px; padding: 105px 0; text-align: center; }
.page-hero__narrow h1 { font-size: clamp(3rem, 5.6vw, 5.8rem); }
.page-hero__narrow .page-hero__lead { margin-inline: auto; }
.page-hero__narrow .button-row { justify-content: center; }
.page-hero--about .page-hero__grid { min-height: 610px; }
.about-stat { justify-self: center; width: 330px; height: 330px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: radial-gradient(circle at 35% 25%, rgba(79,209,197,.24), rgba(255,255,255,.05)); border: 1px solid rgba(255,255,255,.18); border-radius: 50%; box-shadow: inset 0 0 80px rgba(40,153,189,.1), 0 35px 80px rgba(0,0,0,.2); }
.about-stat strong { color: var(--teal-300); font-size: 6rem; line-height: .9; }
.about-stat span { max-width: 170px; margin-top: 14px; color: #d8e5e9; font-weight: 700; }
.about-stat p { margin: 18px 0 0; color: #8fa9b4; font-size: .8rem; text-transform: uppercase; letter-spacing: .14em; }

.service-visual { position: relative; justify-self: center; width: min(100%, 480px); aspect-ratio: 1; display: grid; place-items: center; }
.service-visual__orb { position: absolute; inset: 9%; background: radial-gradient(circle at 35% 25%, rgba(79,209,197,.35), rgba(40,153,189,.08) 45%, rgba(255,255,255,.03) 70%); border: 1px solid rgba(121,225,215,.22); border-radius: 50%; box-shadow: inset 0 0 80px rgba(79,209,197,.08); }
.service-visual__orb::before, .service-visual__orb::after { content: ""; position: absolute; border-radius: 50%; border: 1px dashed rgba(121,225,215,.24); }
.service-visual__orb::before { inset: -13%; }
.service-visual__orb::after { inset: 23%; }
.service-visual__icon { position: relative; z-index: 2; width: 120px; height: 120px; display: grid; place-items: center; color: var(--white); background: linear-gradient(145deg, var(--orange-500), #d35531); border: 1px solid rgba(255,255,255,.28); border-radius: 30px; box-shadow: 0 30px 60px rgba(0,0,0,.28); transform: rotate(-6deg); }
.service-visual__icon .icon { width: 58px; height: 58px; transform: rotate(6deg); }
.service-visual__line { position: absolute; z-index: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--teal-300), transparent); }
.service-visual__line--one { width: 100%; transform: rotate(18deg); }
.service-visual__line--two { width: 90%; transform: rotate(-35deg); }
.service-visual__status { position: absolute; z-index: 3; right: 0; bottom: 17%; display: flex; align-items: center; gap: 8px; padding: 11px 15px; color: var(--navy-900); background: var(--white); border-radius: 999px; font-size: .76rem; font-weight: 850; box-shadow: var(--shadow-md); }
.service-visual__status span { width: 9px; height: 9px; border-radius: 50%; background: var(--teal-400); box-shadow: 0 0 0 5px rgba(79,209,197,.18); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card { min-height: 285px; padding: 34px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); }
.feature-card__number { display: block; margin-bottom: 50px; color: var(--orange-500); font-size: .82rem; font-weight: 900; letter-spacing: .12em; }
.feature-card p { color: var(--muted); }
.audience-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 100px; }
.audience-visual { min-height: 470px; display: grid; place-items: center; background: radial-gradient(circle at center, rgba(40,153,189,.14), transparent 65%); }
.mini-panel { width: min(100%, 385px); overflow: hidden; background: var(--navy-900); border: 1px solid #25465a; border-radius: 24px; box-shadow: var(--shadow-lg); transform: rotate(-3deg); }
.mini-panel__header { display: flex; gap: 7px; padding: 17px 20px; background: rgba(255,255,255,.04); border-bottom: 1px solid rgba(255,255,255,.09); }
.mini-panel__header span { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.3); }
.mini-panel__header span:first-child { background: var(--orange-500); }
.mini-panel__body { min-height: 330px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--white); }
.mini-panel__shield { width: 105px; height: 105px; display: grid; place-items: center; color: var(--navy-900); background: var(--teal-300); border-radius: 30px; }
.mini-panel__shield .icon { width: 52px; height: 52px; }
.mini-panel__body p { margin: 30px 0 4px; color: #9db2bd; }
.mini-panel__body strong { font-size: 1.45rem; }
.faq-layout { position: relative; z-index: 1; display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.faq-list { display: grid; gap: 12px; }
.faq-item { background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.11); border-radius: 13px; }
.faq-item summary { position: relative; padding: 22px 55px 22px 24px; font-weight: 780; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 24px; top: 50%; transform: translateY(-50%); color: var(--teal-300); font-size: 1.5rem; font-weight: 400; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { margin: 0; padding: 0 24px 24px; color: #abc0c9; }

.location-map { position: relative; max-width: 560px; justify-self: center; }
.location-map__label { position: absolute; left: 8%; bottom: 8%; display: flex; align-items: center; gap: 12px; padding: 14px 17px; color: var(--ink); background: var(--white); border-radius: 13px; box-shadow: var(--shadow-md); }
.location-map__label > span { width: 35px; height: 35px; display: grid; place-items: center; color: var(--white); background: var(--orange-500); border-radius: 10px; }
.location-map__label strong, .location-map__label small { display: block; line-height: 1.4; }
.location-map__label small { color: var(--muted); }
.contact-number { display: inline-flex; align-items: center; gap: 14px; margin-top: 12px; color: var(--navy-900); }
.contact-number > .icon { width: 46px; height: 46px; padding: 11px; color: var(--white); background: var(--orange-500); border-radius: 50%; }
.contact-number small, .contact-number span { display: block; }
.contact-number span { font-size: 1.4rem; font-weight: 850; }
.contact-number small { color: var(--muted); font-size: .72rem; font-weight: 700; }

.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.values-grid article { padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); }
.values-grid article > span { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 22px; color: var(--white); background: var(--blue-600); border-radius: 13px; }
.values-grid p { margin: 0; color: var(--muted); font-size: .9rem; }
.about-timeline { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.about-timeline > div { min-height: 190px; padding: 26px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.11); border-radius: var(--radius-md); }
.about-timeline span { display: block; margin-bottom: 30px; color: var(--teal-300); font-size: .75rem; font-weight: 900; }
.about-timeline strong { font-size: 1.25rem; }
.about-timeline p { margin: 7px 0 0; color: #a9bdc7; }
.credentials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.credential-card { padding: 36px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.credential-card > span { width: 56px; height: 56px; display: grid; place-items: center; margin-bottom: 28px; color: var(--blue-700); background: #e7f2f4; border-radius: 16px; }
.credential-card p:not(.eyebrow) { color: var(--muted); }

.downloads-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.download-card { min-height: 330px; display: flex; flex-direction: column; padding: 34px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.download-card__icon { width: 56px; height: 56px; display: grid; place-items: center; margin-bottom: 32px; color: var(--white); background: var(--blue-600); border-radius: 16px; }
.download-card h2 { font-size: 1.65rem; }
.download-card .button { margin-top: auto; align-self: flex-start; }
.support-contacts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.support-contact { display: flex; gap: 18px; padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); }
.support-contact > span { width: 48px; height: 48px; flex: none; display: grid; place-items: center; color: var(--blue-700); background: #e8f3f5; border-radius: 14px; }
.support-contact h2 { font-size: 1.35rem; margin-bottom: 8px; }
.support-contact p { margin-bottom: 0; color: var(--muted); font-size: .83rem; }
.support-contact--alert { color: var(--white); background: var(--navy-900); border-color: var(--navy-900); }
.support-contact--alert > span { color: var(--navy-900); background: var(--teal-300); }
.support-contact--alert p { color: #a9bdc7; }

.contact-section, .quote-section { background: linear-gradient(180deg, var(--paper), #edf1f0); }
.contact-grid { display: grid; grid-template-columns: .75fr 1.25fr; align-items: start; gap: 50px; }
.contact-options { display: grid; gap: 14px; }
.contact-options article { display: flex; gap: 17px; padding: 25px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); }
.contact-options article > span { width: 48px; height: 48px; flex: none; display: grid; place-items: center; color: var(--blue-700); background: #e8f3f5; border-radius: 14px; }
.contact-options h2 { margin-bottom: 5px; font-size: 1.35rem; }
.contact-options p { margin: 0; color: var(--muted); font-size: .83rem; }
.contact-options__monitoring { color: var(--white); background: var(--navy-900) !important; border-color: var(--navy-900) !important; }
.contact-options__monitoring > span { color: var(--navy-900) !important; background: var(--teal-300) !important; }
.contact-options__monitoring p { color: #a9bdc7; }
.form-card { padding: 42px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-md); }
.form-card--wide { padding: 48px; }
.form-card h2 { font-size: 2.3rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.form-grid__full { grid-column: 1 / -1; }
.form-card label { display: grid; gap: 7px; color: #273b48; font-size: .82rem; font-weight: 800; }
.form-card label > span { color: var(--orange-500); }
.form-card input, .form-card select, .form-card textarea {
    width: 100%;
    color: var(--ink);
    background: #f9faf8;
    border: 1px solid #cfd9dc;
    border-radius: 10px;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.form-card input, .form-card select { height: 50px; padding: 0 14px; }
.form-card textarea { padding: 13px 14px; resize: vertical; }
.form-card input:focus, .form-card select:focus, .form-card textarea:focus { background: var(--white); border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(40,153,189,.1); outline: 0; }
.form-card .button { margin-top: 24px; }
.form-note { margin: 16px 0 0; color: var(--muted); font-size: .74rem; }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-alert { margin-bottom: 25px; padding: 14px 16px; border-radius: 10px; font-size: .87rem; font-weight: 700; }
.form-alert--success { color: #0f5c48; background: #e0f5ee; border: 1px solid #b7e7d7; }
.form-alert--error { color: #8b351d; background: #fff0ea; border: 1px solid #f7cabc; }
.quote-grid { display: grid; grid-template-columns: 340px 1fr; align-items: start; gap: 40px; }
.quote-sidebar { position: sticky; top: 128px; padding: 30px; color: var(--white); background: var(--navy-900); border-radius: var(--radius-md); }
.quote-sidebar h2 { font-size: 2rem; }
.quote-step { display: grid; grid-template-columns: 35px 1fr; gap: 13px; padding: 19px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.quote-step > span { width: 31px; height: 31px; display: grid; place-items: center; color: var(--navy-900); background: var(--teal-300); border-radius: 50%; font-size: .68rem; font-weight: 900; }
.quote-step strong { display: block; }
.quote-step p { margin: 3px 0 0; color: #a9bdc7; font-size: .82rem; }
.quote-sidebar__call { margin-top: 24px; padding: 17px; background: rgba(255,255,255,.06); border-radius: 12px; }
.quote-sidebar__call p { margin: 0; color: #a9bdc7; font-size: .78rem; }
.quote-sidebar__call a { color: var(--teal-300); font-size: 1.35rem; font-weight: 900; }
.form-card fieldset { margin: 0 0 38px; padding: 0 0 38px; border: 0; border-bottom: 1px solid var(--line); }
.form-card fieldset:last-of-type { margin-bottom: 0; }
.form-card legend { display: flex; align-items: center; gap: 12px; margin-bottom: 25px; padding: 0; font-size: 1.25rem; font-weight: 850; }
.form-card legend span { width: 35px; height: 35px; display: grid; place-items: center; color: var(--white); background: var(--blue-600); border-radius: 50%; font-size: .75rem; }
.checkbox-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.check-choice { position: relative; min-height: 125px; display: flex !important; flex-direction: column; align-items: flex-start; justify-content: space-between; padding: 16px; background: #f8faf9; border: 1px solid #d4dee0; border-radius: 12px; cursor: pointer; }
.check-choice input { position: absolute; width: 20px; height: 20px; top: 14px; right: 14px; accent-color: var(--blue-600); }
.check-choice > span { width: 38px; height: 38px; display: grid; place-items: center; color: var(--blue-700); background: #e6f1f3; border-radius: 10px; }
.check-choice strong { max-width: 150px; line-height: 1.25; }
.check-choice:has(input:checked) { background: #eaf5f5; border-color: var(--blue-500); box-shadow: 0 0 0 3px rgba(40,153,189,.08); }

.thank-you-section { min-height: 680px; display: grid; place-items: center; padding: 100px 0; background: radial-gradient(circle at 50% 20%, rgba(40,153,189,.15), transparent 45%), var(--paper); }
.thank-you-card { max-width: 820px; padding: 70px; text-align: center; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.thank-you-card__icon { width: 84px; height: 84px; display: grid; place-items: center; margin: 0 auto 28px; color: var(--navy-900); background: var(--teal-300); border-radius: 50%; font-size: 1.3rem; font-weight: 900; }
.thank-you-card__icon .icon { width: 42px; height: 42px; }
.thank-you-card h1 { font-size: clamp(2.3rem, 4vw, 4.2rem); }
.thank-you-card p:not(.eyebrow) { color: var(--muted); }
.legal-content { max-width: 850px; padding: 50px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); }
.legal-content h2 { margin-top: 42px; font-size: 1.75rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: var(--muted); }
.legal-note { margin-top: 45px; padding: 17px; background: #fff0e9; border-left: 4px solid var(--orange-500); }

.emergency-strip { color: var(--white); background: var(--blue-700); }
.emergency-strip__inner { min-height: 170px; display: flex; justify-content: space-between; align-items: center; gap: 35px; }
.emergency-strip .eyebrow { color: var(--teal-300); }
.emergency-strip h2 { margin: 0; font-size: clamp(1.8rem, 3vw, 3rem); }
.site-footer { color: #b7c7ce; background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 1.35fr .7fr .7fr 1fr; gap: 60px; padding: 85px 0 65px; }
.footer-brand img { width: 235px; margin-bottom: 25px; }
.footer-brand p { max-width: 390px; color: #9cb0b9; }
.license-list { display: flex; flex-wrap: wrap; gap: 8px; }
.license-list span { padding: 6px 10px; color: #c7d7dd; background: rgba(255,255,255,.05); border-radius: 999px; font-size: .68rem; }
.site-footer h3 { margin-bottom: 22px; color: var(--white); font-size: .9rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-links, .footer-contact { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; font-size: .84rem; }
.footer-links a:hover, .footer-contact a:hover { color: var(--teal-300); }
.footer-contact li { display: grid; gap: 1px; }
.footer-contact span { color: #718994; font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; }
.footer-contact a, .footer-contact strong { color: #d9e4e8; }
.footer-bottom { min-height: 72px; display: flex; justify-content: space-between; align-items: center; gap: 20px; border-top: 1px solid rgba(255,255,255,.08); font-size: .73rem; }
.footer-bottom p { margin: 0; }
.mobile-callbar { display: none; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

@media (max-width: 1120px) {
    .header-cta { display: none; }
    .site-header__inner { grid-template-columns: auto 1fr; }
    .primary-nav { gap: 20px; }
    .home-hero__grid { grid-template-columns: 1fr .78fr; }
    .status-card--top { right: 0; }
    .status-card--bottom { left: 0; }
    .trust-bar__grid { grid-template-columns: repeat(2, 1fr); }
    .trust-bar__grid > div:nth-child(3) { border-left: 1px solid var(--line); }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .downloads-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: .8fr 1.2fr; }
    .checkbox-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1.3fr repeat(3, 1fr); gap: 35px; }
}

@media (max-width: 920px) {
    :root { --header-height: 74px; }
    .section { padding: 86px 0; }
    .announcement__inner { min-height: 42px; }
    .announcement__inner > span { max-width: 75%; }
    .site-header__inner { grid-template-columns: 1fr auto; }
    .brand img { width: 205px; }
    .nav-toggle { display: inline-flex; }
    .primary-nav {
        position: fixed;
        inset: calc(42px + var(--header-height)) 0 0;
        display: block;
        padding: 25px 20px 80px;
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        transform: translateX(100%);
        color: var(--white);
        background: var(--navy-900);
        transition: .28s ease;
    }
    .nav-open .primary-nav { opacity: 1; visibility: visible; transform: translateX(0); }
    .primary-nav > a, .nav-group > a { display: block; padding: 17px 0; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.1); }
    .primary-nav > a::after, .nav-group > a::after { display: none; }
    .nav-group { display: grid; grid-template-columns: 1fr auto; }
    .nav-group__toggle { color: var(--white); padding: 15px; }
    .nav-dropdown { position: static; grid-column: 1 / -1; width: auto; max-height: 0; padding: 0 12px; overflow: hidden; opacity: 1; visibility: visible; transform: none; background: rgba(255,255,255,.04); border: 0; border-radius: 0; box-shadow: none; transition: max-height .25s ease, padding .25s ease; }
    .nav-group.submenu-open .nav-dropdown { max-height: 700px; padding: 12px; }
    .home-hero__grid, .page-hero__grid { grid-template-columns: 1fr; min-height: 0; padding: 72px 0; }
    .home-hero__content { text-align: center; }
    .home-hero__lead { margin-inline: auto; }
    .home-hero .button-row { justify-content: center; }
    .hero-trust { margin-inline: auto; text-align: left; }
    .home-hero__visual { min-height: 420px; }
    .home-hero__visual > img { width: min(88%, 480px); }
    .page-hero__content { text-align: center; }
    .page-hero__lead { margin-inline: auto; }
    .page-hero .button-row { justify-content: center; }
    .service-visual { max-width: 430px; }
    .engineering-grid, .engineering-grid--text-first, .split-layout, .split-layout--reverse, .audience-grid, .faq-layout { grid-template-columns: 1fr; gap: 55px; }
    .engineering-visual { order: 2; }
    .location-card, .location-cards--large .location-card { grid-template-columns: 1fr; }
    .location-card__map { min-height: 240px; }
    .feature-grid, .credentials-grid, .support-contacts { grid-template-columns: 1fr; }
    .feature-card { min-height: 0; }
    .feature-card__number { margin-bottom: 30px; }
    .audience-visual { min-height: 390px; }
    .faq-layout .section-heading { max-width: 760px; }
    .contact-grid, .quote-grid { grid-template-columns: 1fr; }
    .contact-options { grid-template-columns: repeat(2, 1fr); }
    .quote-sidebar { position: static; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .section { padding: 70px 0; }
    h1 { font-size: clamp(2.8rem, 14vw, 4.6rem); }
    h2 { font-size: clamp(2rem, 10vw, 3.2rem); }
    .announcement { display: none; }
    .primary-nav { inset: var(--header-height) 0 0; }
    .home-hero__grid { padding-top: 65px; }
    .home-hero__content h1 { font-size: clamp(2.9rem, 13vw, 4.35rem); }
    .hero-trust { grid-template-columns: 1fr; gap: 14px; text-align: center; }
    .hero-trust div { grid-template-columns: 60px 1fr; align-items: center; text-align: left; }
    .home-hero__visual { min-height: 330px; }
    .status-card { min-width: 155px; padding: 10px 12px; }
    .status-card--top { top: 7%; }
    .status-card--bottom { bottom: 8%; }
    .trust-bar__grid, .service-grid, .downloads-grid, .location-cards, .values-grid, .about-timeline, .contact-options { grid-template-columns: 1fr; }
    .trust-bar__grid > div { min-height: 95px; border-left: 1px solid var(--line); }
    .section-heading--with-action { display: block; }
    .section-heading--with-action .text-link { margin-top: 15px; }
    .service-card { min-height: 315px; padding: 29px; }
    .location-card__content { padding: 30px; }
    .location-card__actions { align-items: flex-start; flex-direction: column; }
    .cta-card { display: block; padding: 38px 28px; }
    .cta-card .button-row, .cta-card > .button { margin-top: 25px; }
    .page-hero--simple { min-height: 0; }
    .page-hero__narrow { padding: 78px 0; }
    .page-hero__narrow h1, .page-hero__content h1 { font-size: clamp(3rem, 13vw, 4.4rem); }
    .service-visual { max-width: 360px; }
    .service-visual__icon { width: 94px; height: 94px; border-radius: 25px; }
    .service-visual__icon .icon { width: 46px; height: 46px; }
    .service-visual__status { right: 5%; bottom: 11%; }
    .check-panel, .form-card, .form-card--wide, .legal-content { padding: 28px; }
    .feature-grid { grid-template-columns: 1fr; }
    .about-stat { width: 270px; height: 270px; }
    .about-stat strong { font-size: 5rem; }
    .form-grid, .checkbox-grid { grid-template-columns: 1fr; }
    .form-grid__full { grid-column: auto; }
    .check-choice { min-height: 105px; }
    .quote-sidebar h2 { font-size: 1.8rem; }
    .thank-you-card { padding: 45px 25px; }
    .emergency-strip__inner { min-height: 220px; align-items: flex-start; justify-content: center; flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; padding-bottom: 90px; }
    .footer-brand { grid-column: auto; }
    .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding: 20px 0 90px; }
    .mobile-callbar { position: fixed; z-index: 120; left: 12px; right: 12px; bottom: 12px; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; color: var(--white); background: var(--navy-900); border: 1px solid rgba(255,255,255,.12); border-radius: 999px; box-shadow: 0 14px 40px rgba(0,0,0,.35); }
    .mobile-callbar a { min-height: 50px; display: flex; justify-content: center; align-items: center; gap: 7px; font-size: .83rem; font-weight: 850; }
    .mobile-callbar a:last-child { color: var(--navy-900); background: var(--orange-500); }
}

/* Nationwide commercial coverage additions */
.nationwide-callout {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 36px 40px;
    margin-top: 34px;
    color: var(--white);
    background: linear-gradient(125deg, var(--navy-900), var(--blue-600));
    border: 1px solid rgba(121,225,215,.25);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}
.nationwide-callout--large { margin-top: 0; padding: 48px; }
.nationwide-callout__icon {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: rgba(79,209,197,.14);
    border: 1px solid rgba(121,225,215,.4);
    border-radius: 22px;
}
.nationwide-callout__icon .icon { width: 42px; height: 42px; }
.nationwide-callout h2,
.nationwide-callout h3 { margin-bottom: 8px; color: var(--white); }
.nationwide-callout p:not(.eyebrow) { max-width: 760px; margin: 0; color: #d6e6ec; }
.section-heading--regional { margin-top: 72px; }
.nationwide-visual {
    position: relative;
    min-height: 410px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 30% 28%, rgba(79,209,197,.22), transparent 30%),
        radial-gradient(circle at 76% 70%, rgba(239,116,75,.2), transparent 24%),
        linear-gradient(145deg, #0a2b42, #115979);
    border: 1px solid rgba(121,225,215,.28);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.nationwide-visual::before,
.nationwide-visual::after {
    content: "";
    position: absolute;
    width: 440px;
    height: 260px;
    border: 1px dashed rgba(121,225,215,.38);
    border-radius: 50%;
    transform: rotate(-8deg);
}
.nationwide-visual::after { width: 330px; height: 190px; transform: rotate(14deg); }
.nationwide-visual__map {
    position: relative;
    z-index: 2;
    width: 130px;
    height: 130px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: rgba(7,24,39,.82);
    border: 2px solid #79e1d7;
    border-radius: 50%;
    box-shadow: 0 24px 60px rgba(0,0,0,.3);
}
.nationwide-visual__map .icon { width: 62px; height: 62px; }
.nationwide-visual__point { position: absolute; z-index: 3; width: 15px; height: 15px; background: var(--orange-500); border: 4px solid rgba(255,255,255,.9); border-radius: 50%; box-shadow: 0 0 0 8px rgba(239,116,75,.14); }
.nationwide-visual__point--one { top: 23%; left: 24%; }
.nationwide-visual__point--two { top: 31%; right: 21%; }
.nationwide-visual__point--three { bottom: 23%; left: 38%; }
.nationwide-visual__label {
    position: absolute;
    z-index: 4;
    right: 24px;
    bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 18px;
    color: var(--white);
    background: rgba(7,24,39,.88);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    backdrop-filter: blur(8px);
}
.nationwide-visual__label small,
.nationwide-visual__label strong { display: block; }
.nationwide-visual__label small { color: #a9c3ce; }

@media (max-width: 900px) {
    .nationwide-callout { grid-template-columns: auto 1fr; }
    .nationwide-callout .button { grid-column: 1 / -1; justify-self: start; }
}
@media (max-width: 640px) {
    .nationwide-callout,
    .nationwide-callout--large { grid-template-columns: 1fr; padding: 30px; }
    .nationwide-callout__icon { width: 68px; height: 68px; }
    .section-heading--regional { margin-top: 54px; }
    .nationwide-visual { min-height: 330px; }
}

/* Distinct service page experiences */
.service-page { --service-accent: var(--teal-300); --service-accent-strong: var(--blue-500); --service-accent-soft: rgba(79,209,197,.16); --service-warm: var(--orange-500); }
.service-page--assessment { --service-accent: #79e1d7; --service-accent-strong: #2ca7aa; --service-accent-soft: rgba(121,225,215,.15); --service-warm: #ef744b; }
.service-page--video { --service-accent: #8bd9ff; --service-accent-strong: #2899bd; --service-accent-soft: rgba(139,217,255,.15); --service-warm: #ef744b; }
.service-page--entry { --service-accent: #b5a8ff; --service-accent-strong: #7563db; --service-accent-soft: rgba(181,168,255,.16); --service-warm: #79e1d7; }
.service-page--access { --service-accent: #80e0a7; --service-accent-strong: #2a9d68; --service-accent-soft: rgba(128,224,167,.15); --service-warm: #f5b867; }
.service-page--intrusion { --service-accent: #ff9a77; --service-accent-strong: #ef744b; --service-accent-soft: rgba(255,154,119,.15); --service-warm: #ffd084; }
.service-page--automation { --service-accent: #8bd9ff; --service-accent-strong: #7767df; --service-accent-soft: rgba(139,217,255,.14); --service-warm: #79e1d7; }
.service-page--monitoring { --service-accent: #79e1d7; --service-accent-strong: #1f8d70; --service-accent-soft: rgba(79,209,197,.15); --service-warm: #f5b867; }
.service-page--doorbell { --service-accent: #ffb58d; --service-accent-strong: #ef744b; --service-accent-soft: rgba(255,181,141,.15); --service-warm: #8bd9ff; }
.service-page--service { --service-accent: #f5c66e; --service-accent-strong: #b9892f; --service-accent-soft: rgba(245,198,110,.15); --service-warm: #79e1d7; }

.service-hero { background: linear-gradient(135deg, var(--navy-950), #0b3349 64%, #0e4150); }
.service-hero::after { content: ""; position: absolute; width: 540px; height: 540px; right: -120px; top: -180px; border-radius: 50%; background: radial-gradient(circle, var(--service-accent-soft), transparent 68%); pointer-events: none; }
.service-hero__grid { min-height: 640px; grid-template-columns: .96fr 1.04fr; gap: 74px; padding: 76px 0; }
.service-hero .page-hero__content h1 { max-width: 760px; font-size: clamp(3.2rem, 5vw, 5.45rem); }
.service-hero .page-hero__lead { max-width: 720px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 9px; margin: 27px 0 30px; }
.service-tags span { padding: 8px 12px; color: #d6e8ed; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.12); border-radius: 999px; font-size: .78rem; font-weight: 750; }

.service-experience { position: relative; width: min(100%, 620px); margin-left: auto; padding: 22px; color: var(--white); background: linear-gradient(145deg, rgba(255,255,255,.105), rgba(255,255,255,.035)); border: 1px solid rgba(255,255,255,.16); border-radius: 28px; box-shadow: 0 38px 90px rgba(0,0,0,.28); backdrop-filter: blur(12px); }
.service-experience::before { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(255,255,255,.045); border-radius: 20px; pointer-events: none; }
.service-experience__top, .service-experience__bottom { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.service-experience__top { padding: 3px 2px 18px; }
.service-experience__top > div { min-width: 0; }
.service-experience__eyebrow, .service-experience__top strong { display: block; }
.service-experience__eyebrow { margin-bottom: 2px; color: #91aeb9; font-size: .7rem; text-transform: uppercase; letter-spacing: .13em; }
.service-experience__top strong { font-size: 1rem; }
.service-experience__status { display: inline-flex; align-items: center; gap: 8px; padding: 7px 10px; color: #d9e8ec; background: rgba(4,17,29,.42); border: 1px solid rgba(255,255,255,.1); border-radius: 999px; font-size: .7rem; font-weight: 780; white-space: nowrap; }
.service-experience__status i { width: 8px; height: 8px; border-radius: 50%; background: var(--service-accent); box-shadow: 0 0 0 4px var(--service-accent-soft); }
.service-experience__bottom { padding: 18px 2px 2px; }
.service-experience__bottom > div strong, .service-experience__bottom > div span { display: block; }
.service-experience__bottom > div strong { color: var(--service-accent); font-size: 1.08rem; }
.service-experience__bottom > div span { color: #91aeb9; font-size: .72rem; }
.service-experience__icon { width: 42px; height: 42px; display: grid; place-items: center; color: var(--navy-950); background: var(--service-accent); border-radius: 12px; }
.service-experience__icon .icon { width: 22px; height: 22px; }
.service-scene { position: relative; z-index: 2; min-height: 340px; overflow: hidden; padding: 20px; background: rgba(3,14,24,.72); border: 1px solid rgba(255,255,255,.09); border-radius: 19px; }

/* Assessment scene */
.blueprint-grid { position: relative; height: 270px; overflow: hidden; border-radius: 12px; background-color: #08263a; background-image: linear-gradient(rgba(121,225,215,.085) 1px, transparent 1px), linear-gradient(90deg, rgba(121,225,215,.085) 1px, transparent 1px); background-size: 24px 24px; border: 1px solid rgba(121,225,215,.13); }
.blueprint-grid::before { content: ""; position: absolute; inset: 34px 45px; border: 2px solid rgba(121,225,215,.58); box-shadow: inset 0 0 30px rgba(121,225,215,.05); }
.blueprint-grid::after { content: ""; position: absolute; left: 44%; top: 34px; bottom: 34px; border-left: 2px solid rgba(121,225,215,.58); }
.blueprint-room { position: absolute; z-index: 2; color: #a9cbd1; font-size: .67rem; font-weight: 750; letter-spacing: .04em; }
.blueprint-room--one { left: 12%; top: 14%; }
.blueprint-room--two { left: 52%; top: 14%; }
.blueprint-room--three { left: 52%; bottom: 15%; }
.blueprint-room--four { left: 12%; bottom: 15%; }
.blueprint-pin { position: absolute; z-index: 3; width: 13px; height: 13px; border-radius: 50%; background: var(--service-warm); box-shadow: 0 0 0 7px rgba(239,116,75,.17), 0 0 24px rgba(239,116,75,.5); }
.blueprint-pin--one { left: 36%; top: 28%; }
.blueprint-pin--two { right: 20%; top: 46%; }
.blueprint-pin--three { left: 25%; bottom: 22%; }
.scene-caption { display: flex; align-items: center; gap: 11px; margin-top: 14px; color: #b9cbd2; font-size: .76rem; }
.scene-caption span { width: 28px; height: 28px; display: grid; place-items: center; color: var(--navy-950); background: var(--service-accent); border-radius: 8px; font-weight: 900; }

/* Video scene */
.camera-wall { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.camera-feed { padding: 10px; background: #0a2232; border: 1px solid rgba(139,217,255,.13); border-radius: 11px; }
.camera-feed > span, .camera-feed > small { display: block; }
.camera-feed > span { margin-bottom: 7px; color: #7ea7b6; font-size: .61rem; letter-spacing: .12em; }
.camera-feed > small { margin-top: 7px; color: #c0d6de; font-size: .67rem; }
.camera-feed__view { position: relative; height: 103px; overflow: hidden; background: linear-gradient(160deg, #163d50, #071824); border-radius: 8px; }
.camera-feed__view::before { content: ""; position: absolute; left: 12%; right: 12%; bottom: 18%; height: 39%; border: 1px solid rgba(139,217,255,.3); border-bottom: 0; transform: perspective(110px) rotateX(10deg); }
.camera-feed__view::after { content: ""; position: absolute; left: 50%; top: 12%; bottom: 0; border-left: 1px solid rgba(139,217,255,.22); }
.camera-feed__view i { position: absolute; z-index: 2; left: 25%; bottom: 23%; width: 24px; height: 35px; border-radius: 14px 14px 8px 8px; background: rgba(255,255,255,.17); }
.camera-feed__view b { position: absolute; right: 9px; top: 8px; width: 7px; height: 7px; border-radius: 50%; background: #ef744b; box-shadow: 0 0 0 4px rgba(239,116,75,.15); }

/* Entry scene */
.entry-flow { min-height: 295px; display: grid; grid-template-columns: 1fr 82px 1fr; align-items: center; gap: 8px; }
.entry-device { min-height: 220px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 18px; text-align: center; background: rgba(255,255,255,.055); border: 1px solid rgba(181,168,255,.17); border-radius: 18px; }
.entry-device > span { color: #9baeba; font-size: .66rem; text-transform: uppercase; letter-spacing: .11em; }
.entry-device > strong { max-width: 150px; margin-top: 17px; font-size: .8rem; }
.visitor-avatar { width: 82px; height: 82px; display: grid; place-items: center; margin-top: 16px; color: var(--navy-950); background: linear-gradient(145deg, var(--service-accent), #82c7ff); border-radius: 50%; }
.visitor-avatar .icon { width: 37px; height: 37px; }
.entry-connector { display: flex; align-items: center; justify-content: center; gap: 7px; }
.entry-connector::before, .entry-connector::after { content: ""; flex: 1; height: 1px; background: rgba(181,168,255,.4); }
.entry-connector i { width: 7px; height: 7px; border-radius: 50%; background: var(--service-accent); }
.entry-wave { height: 82px; display: flex; align-items: center; gap: 6px; margin-top: 16px; }
.entry-wave i { width: 6px; height: 24px; border-radius: 999px; background: var(--service-accent); }
.entry-wave i:nth-child(2), .entry-wave i:nth-child(4) { height: 48px; }
.entry-wave i:nth-child(3) { height: 72px; }

/* Access scene */
.access-log { padding: 5px; }
.access-log__summary { display: grid; grid-template-columns: 48px 1fr auto; align-items: center; gap: 13px; padding: 13px; background: rgba(128,224,167,.08); border: 1px solid rgba(128,224,167,.16); border-radius: 12px; }
.access-log__summary > span { width: 44px; height: 44px; display: grid; place-items: center; color: var(--navy-950); background: var(--service-accent); border-radius: 11px; }
.access-log__summary small, .access-log__summary strong { display: block; }
.access-log__summary small { color: #86a0ab; font-size: .64rem; }
.access-log__summary strong { font-size: .86rem; }
.access-log__summary > b { color: var(--service-accent); font-size: .75rem; }
.access-log__row { display: grid; grid-template-columns: 52px 1fr auto; align-items: center; gap: 12px; padding: 15px 8px; border-bottom: 1px solid rgba(255,255,255,.08); font-size: .76rem; }
.access-log__row time { color: #718d99; }
.access-log__row span, .access-log__row small { display: block; }
.access-log__row small { color: #718d99; }
.access-log__row b { padding: 5px 8px; border-radius: 999px; font-size: .61rem; }
.access-log__row .granted { color: #9df0bd; background: rgba(128,224,167,.1); }
.access-log__row .denied { color: #ffb08f; background: rgba(239,116,75,.11); }

/* Intrusion scene */
.zone-map { padding: 8px; }
.zone-map__building { position: relative; height: 248px; border: 2px solid rgba(255,154,119,.48); border-radius: 12px; background: rgba(239,116,75,.035); }
.zone-map__building::before { content: ""; position: absolute; left: 45%; top: 0; bottom: 0; border-left: 1px solid rgba(255,154,119,.35); }
.zone-map__building::after { content: ""; position: absolute; left: 0; right: 0; top: 52%; border-top: 1px solid rgba(255,154,119,.35); }
.zone { position: absolute; z-index: 2; display: flex; align-items: center; gap: 7px; color: #ddc4bb; font-size: .68rem; font-weight: 750; }
.zone::before { content: ""; width: 11px; height: 11px; border-radius: 50%; background: var(--service-accent); box-shadow: 0 0 0 6px var(--service-accent-soft); }
.zone--one { left: 10%; top: 16%; }
.zone--two { right: 13%; top: 16%; }
.zone--three { right: 11%; bottom: 16%; }
.zone--four { left: 10%; bottom: 16%; }
.zone-map__legend { display: flex; gap: 20px; margin-top: 14px; color: #8fa8b2; font-size: .67rem; }
.zone-map__legend span { display: flex; align-items: center; gap: 7px; }
.zone-map__legend i { width: 9px; height: 9px; border-radius: 50%; background: var(--service-accent); }
.zone-map__legend span:last-child i { background: var(--service-warm); }

/* Automation scene */
.mobile-control { width: 255px; margin: 0 auto; padding: 12px 14px 18px; background: #f4f7f8; color: var(--ink); border: 7px solid #132f40; border-radius: 34px; box-shadow: 0 24px 50px rgba(0,0,0,.25); }
.mobile-control__header { display: flex; align-items: center; justify-content: space-between; padding: 5px 3px 13px; font-size: .62rem; }
.mobile-control__header b { font-size: .75rem; }
.mobile-control__header i { width: 8px; height: 8px; border-radius: 50%; background: var(--service-accent-strong); }
.mobile-control__state { display: grid; grid-template-columns: 44px 1fr; column-gap: 11px; align-items: center; padding: 14px; color: var(--white); background: linear-gradient(135deg, #185c80, #7767df); border-radius: 16px; }
.mobile-control__state .icon { grid-row: 1 / span 2; width: 30px; height: 30px; }
.mobile-control__state small, .mobile-control__state strong { display: block; }
.mobile-control__state small { opacity: .74; font-size: .58rem; }
.mobile-control__state strong { font-size: 1rem; }
.mobile-control__tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 10px; }
.mobile-control__tiles span { min-height: 74px; display: grid; grid-template-columns: 25px 1fr; align-content: center; column-gap: 7px; padding: 10px; background: var(--white); border: 1px solid #e0e7e9; border-radius: 12px; }
.mobile-control__tiles .icon { grid-row: 1 / span 2; width: 21px; height: 21px; color: #276c91; }
.mobile-control__tiles small, .mobile-control__tiles b { display: block; line-height: 1.25; }
.mobile-control__tiles small { color: var(--muted); font-size: .54rem; }
.mobile-control__tiles b { font-size: .64rem; }

/* Monitoring scene */
.monitor-console__pulse { position: relative; height: 125px; overflow: hidden; background-image: linear-gradient(rgba(121,225,215,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(121,225,215,.07) 1px, transparent 1px); background-size: 22px 22px; border-radius: 11px; }
.monitor-console__pulse::before { content: ""; position: absolute; left: 0; right: 0; top: 63%; height: 2px; background: linear-gradient(90deg, transparent 0 10%, var(--service-accent) 10% 31%, transparent 31% 36%, var(--service-accent) 36% 42%, transparent 42% 48%, var(--service-accent) 48% 62%, transparent 62% 69%, var(--service-accent) 69% 100%); box-shadow: 0 0 16px rgba(121,225,215,.42); }
.monitor-console__pulse::after { content: ""; position: absolute; left: 36%; top: 32%; width: 45px; height: 42px; border-left: 3px solid var(--service-accent); border-bottom: 3px solid var(--service-accent); transform: skewX(-22deg) rotate(-42deg); }
.monitor-console__pulse span { position: absolute; right: 12px; top: 10px; width: 9px; height: 9px; border-radius: 50%; background: var(--service-accent); box-shadow: 0 0 0 5px var(--service-accent-soft); }
.monitor-console__rows { margin-top: 13px; }
.monitor-console__rows > div { display: grid; grid-template-columns: 68px 1fr auto; gap: 12px; padding: 13px 7px; border-bottom: 1px solid rgba(255,255,255,.08); font-size: .72rem; }
.monitor-console__rows time { color: #728d98; }
.monitor-console__rows b { color: var(--service-accent); font-size: .62rem; }

/* Doorbell scene */
.doorbell-view { width: 270px; margin: 0 auto; padding: 12px; background: #f5f7f7; border: 6px solid #163549; border-radius: 31px; box-shadow: 0 25px 55px rgba(0,0,0,.27); }
.doorbell-view__screen { position: relative; height: 230px; overflow: hidden; background: #badbea; border-radius: 20px; }
.doorbell-view__sky { position: absolute; inset: 0 0 52%; background: linear-gradient(#9cd2e8, #d7eef6); }
.doorbell-view__porch { position: absolute; inset: 38% 0 0; background: linear-gradient(135deg, #d4c5ad, #a9977e); }
.doorbell-view__porch::before { content: ""; position: absolute; left: 10%; right: 10%; top: 16%; height: 70%; border: 2px solid rgba(67,54,42,.23); }
.doorbell-view__porch span { position: absolute; left: 50%; top: 8%; width: 55px; height: 110px; background: #654839; border: 3px solid #493328; transform: translateX(-50%); }
.doorbell-view__visitor { position: absolute; z-index: 2; left: 50%; bottom: 22px; width: 57px; height: 82px; display: grid; place-items: center; color: var(--white); background: rgba(13,41,64,.84); border-radius: 28px 28px 13px 13px; transform: translateX(-50%); }
.doorbell-view__visitor .icon { width: 28px; height: 28px; }
.doorbell-view__screen small { position: absolute; z-index: 3; left: 12px; bottom: 9px; padding: 4px 8px; color: var(--white); background: rgba(4,17,29,.65); border-radius: 999px; font-size: .58rem; }
.doorbell-view__actions { display: flex; justify-content: center; gap: 12px; padding: 13px 0 2px; }
.doorbell-view__actions span { width: 36px; height: 36px; display: grid; place-items: center; color: #1a6384; background: var(--white); border: 1px solid #dce5e8; border-radius: 50%; }
.doorbell-view__actions .icon { width: 17px; height: 17px; }

/* Service diagnostics scene */
.diagnostic-panel { display: grid; gap: 8px; padding-top: 8px; }
.diagnostic-row { display: grid; grid-template-columns: 1.1fr .9fr 42px; align-items: center; gap: 12px; padding: 14px 12px; background: rgba(255,255,255,.045); border: 1px solid rgba(245,198,110,.1); border-radius: 11px; }
.diagnostic-row span strong, .diagnostic-row span small { display: block; }
.diagnostic-row span strong { font-size: .73rem; }
.diagnostic-row span small { color: #819ba6; font-size: .61rem; }
.diagnostic-row > div { height: 6px; overflow: hidden; background: rgba(255,255,255,.09); border-radius: 999px; }
.diagnostic-row > div i { display: block; width: 72%; height: 100%; background: linear-gradient(90deg, var(--service-accent-strong), var(--service-accent)); border-radius: inherit; }
.diagnostic-row:nth-child(1) > div i { width: 94%; }
.diagnostic-row:nth-child(2) > div i { width: 72%; }
.diagnostic-row:nth-child(3) > div i { width: 88%; }
.diagnostic-row:nth-child(4) > div i { width: 55%; }
.diagnostic-row > b { color: var(--service-accent); font-size: .67rem; text-align: right; }

.service-overview .check-panel { border-top: 4px solid var(--service-accent-strong); }
.service-overview .check-item > span { color: var(--service-accent-strong); background: var(--service-accent-soft); }
.signature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.signature-card { position: relative; min-height: 285px; padding: 28px; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 8px 24px rgba(4,17,29,.04); }
.signature-card::after { content: ""; position: absolute; width: 125px; height: 125px; right: -72px; bottom: -72px; border-radius: 50%; background: var(--service-accent-soft); }
.signature-card__top { display: flex; justify-content: space-between; gap: 15px; margin-bottom: 48px; }
.signature-card__top > span { color: var(--service-accent-strong); font-size: .75rem; font-weight: 900; letter-spacing: .11em; }
.signature-card__top small { color: var(--muted); font-size: .67rem; text-align: right; text-transform: uppercase; letter-spacing: .08em; }
.signature-card h3 { font-size: 1.25rem; }
.signature-card p { color: var(--muted); font-size: .91rem; }

.service-process-section::before { background: radial-gradient(circle, var(--service-accent-soft), transparent 68%); }
.service-process-layout { position: relative; z-index: 2; display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.service-process-layout .section-heading { position: sticky; top: 125px; }
.service-timeline { position: relative; display: grid; gap: 12px; }
.service-timeline::before { content: ""; position: absolute; left: 29px; top: 32px; bottom: 32px; width: 1px; background: linear-gradient(var(--service-accent), rgba(255,255,255,.1)); }
.service-timeline__item { position: relative; display: grid; grid-template-columns: 60px 1fr; gap: 20px; padding: 24px 25px 24px 0; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.09); border-radius: 15px; }
.service-timeline__item > span { position: relative; z-index: 2; width: 42px; height: 42px; display: grid; place-items: center; margin-left: 9px; color: var(--navy-950); background: var(--service-accent); border-radius: 50%; font-size: .7rem; font-weight: 900; }
.service-timeline__item h3 { margin-bottom: 7px; font-size: 1.15rem; }
.service-timeline__item p { margin: 0; color: #a8bdc6; font-size: .9rem; }

.service-audience-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.service-audience-list { grid-template-columns: 1fr 1fr; gap: 14px 20px; }
.related-services { padding: 36px; background: var(--white); border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow-sm); }
.related-services__grid { display: grid; gap: 10px; }
.related-services__grid a { display: grid; grid-template-columns: 48px 1fr 20px; align-items: center; gap: 14px; padding: 15px; border: 1px solid var(--line); border-radius: 13px; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.related-services__grid a:hover { transform: translateX(5px); border-color: var(--service-accent-strong); background: var(--service-accent-soft); }
.related-services__grid a > span { width: 44px; height: 44px; display: grid; place-items: center; color: var(--service-accent-strong); background: var(--service-accent-soft); border-radius: 11px; }
.related-services__grid a > span .icon { width: 22px; height: 22px; }
.related-services__grid strong, .related-services__grid small { display: block; }
.related-services__grid small { color: var(--muted); font-size: .7rem; }
.related-services__grid > a > .icon { color: var(--service-accent-strong); }
.service-faq-section { background: #061522; }
.service-page .cta-card { background: linear-gradient(135deg, var(--service-accent-soft), #f8eee7); border-color: rgba(22,94,127,.15); }

@media (max-width: 1100px) {
    .service-hero__grid { grid-template-columns: 1fr; gap: 50px; }
    .service-experience { width: 100%; margin: 0; }
    .signature-grid { grid-template-columns: 1fr 1fr; }
    .service-process-layout, .service-audience-layout { grid-template-columns: 1fr; gap: 55px; }
    .service-process-layout .section-heading { position: static; }
}

@media (max-width: 720px) {
    .service-hero__grid { min-height: 0; padding: 62px 0; }
    .service-hero .page-hero__content h1 { font-size: clamp(2.7rem, 13vw, 4.1rem); }
    .service-experience { padding: 15px; border-radius: 21px; }
    .service-experience__top { align-items: flex-start; }
    .service-experience__status { white-space: normal; text-align: right; }
    .service-scene { min-height: 300px; padding: 14px; }
    .signature-grid, .service-audience-list { grid-template-columns: 1fr; }
    .signature-card { min-height: 0; }
    .signature-card__top { margin-bottom: 32px; }
    .camera-feed__view { height: 84px; }
    .entry-flow { grid-template-columns: 1fr; }
    .entry-connector { transform: rotate(90deg); }
    .entry-device { min-height: 150px; }
    .service-scene--entry { min-height: 485px; }
    .access-log__row { grid-template-columns: 42px 1fr; }
    .access-log__row b { grid-column: 2; justify-self: start; }
    .service-timeline__item { grid-template-columns: 52px 1fr; padding-right: 18px; }
    .related-services { padding: 24px; }
}

/* ======================================================================
   Layout corrections: service audiences, service heroes, and About hero
   ====================================================================== */

/* Ensure browsers receive the complete service-page presentation even when
   an older stylesheet was previously cached. */
.service-hero__grid {
    min-height: 610px;
    grid-template-columns: minmax(0, .94fr) minmax(430px, 1.06fr);
    align-items: center;
    gap: clamp(48px, 5vw, 78px);
    padding: 68px 0 72px;
}
.service-hero .page-hero__content { min-width: 0; }
.service-hero .page-hero__content h1 {
    max-width: 700px;
    margin-bottom: 24px;
    font-size: clamp(3rem, 4.55vw, 5.1rem);
    line-height: .99;
    letter-spacing: -.045em;
    text-wrap: balance;
}
.service-hero .page-hero__lead {
    max-width: 690px;
    margin-bottom: 0;
    line-height: 1.65;
}
.service-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 26px 0 30px;
}
.service-tags span {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    padding: 8px 13px;
    line-height: 1.2;
    white-space: normal;
}
.service-experience {
    min-width: 0;
    width: min(100%, 610px);
}
.service-experience__top strong,
.service-experience__eyebrow,
.service-experience__status,
.service-experience__bottom strong,
.service-experience__bottom span { line-height: 1.3; }

/* "Where this service fits" now uses a deliberate two-column layout instead
   of allowing the related-service links to collapse into the copy column. */
.service-audience-section {
    background: linear-gradient(180deg, #fbfaf7 0%, #f4f5f2 100%);
}
.service-audience-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(370px, .94fr);
    align-items: start;
    gap: clamp(52px, 7vw, 104px);
}
.service-audience__content { min-width: 0; }
.service-audience__content h2 {
    max-width: 760px;
    margin-bottom: 24px;
    font-size: clamp(2.55rem, 4vw, 4.45rem);
    line-height: 1.03;
    letter-spacing: -.04em;
    text-wrap: balance;
}
.service-audience__intro {
    max-width: 680px;
    margin: 0 0 26px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
}
.service-audience-list {
    max-width: 720px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin: 0;
    padding: 0;
}
.service-audience-list li {
    min-width: 0;
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(19, 43, 59, .1);
    font-size: 1rem;
    line-height: 1.45;
}
.service-audience-list li:first-child { border-top: 1px solid rgba(19, 43, 59, .1); }
.service-audience-list__icon {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    color: var(--service-accent-strong);
    background: var(--service-accent-soft);
    border-radius: 50%;
}
.service-audience-list__icon .icon { width: 15px; height: 15px; }

.related-services {
    position: relative;
    min-width: 0;
    padding: clamp(28px, 3vw, 40px);
    overflow: hidden;
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(19, 43, 59, .12);
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(4, 17, 29, .09);
}
.related-services::before {
    content: "";
    position: absolute;
    width: 210px;
    height: 210px;
    right: -105px;
    top: -115px;
    background: var(--service-accent-soft);
    border-radius: 50%;
    pointer-events: none;
}
.related-services__header {
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
}
.related-services__header .eyebrow { margin-bottom: 10px; }
.related-services__header h3 {
    max-width: 430px;
    margin-bottom: 10px;
    font-size: clamp(1.55rem, 2.3vw, 2.15rem);
    line-height: 1.12;
}
.related-services__header > p:not(.eyebrow) {
    max-width: 470px;
    margin: 0;
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.6;
}
.related-services__grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
}
.related-services__grid a {
    min-width: 0;
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr) 34px;
    align-items: center;
    gap: 15px;
    padding: 15px 16px;
    color: var(--ink);
    background: #fbfcfb;
    border: 1px solid var(--line);
    border-radius: 15px;
}
.related-services__grid a:hover {
    transform: translateY(-2px);
    background: var(--service-accent-soft);
}
.related-services__icon {
    width: 48px !important;
    height: 48px !important;
    display: grid !important;
    place-items: center !important;
    color: var(--service-accent-strong) !important;
    background: var(--service-accent-soft) !important;
    border-radius: 13px !important;
}
.related-services__icon .icon { width: 23px !important; height: 23px !important; }
.related-services__copy {
    min-width: 0;
    width: auto !important;
    height: auto !important;
    display: block !important;
    color: inherit !important;
    background: transparent !important;
    border-radius: 0 !important;
}
.related-services__copy strong,
.related-services__copy small { display: block; }
.related-services__copy strong {
    margin-bottom: 3px;
    font-size: .98rem;
    line-height: 1.3;
}
.related-services__copy small {
    color: var(--muted);
    font-size: .72rem;
    line-height: 1.35;
}
.related-services__arrow {
    width: 32px !important;
    height: 32px !important;
    display: grid !important;
    place-items: center !important;
    color: var(--service-accent-strong) !important;
    background: transparent !important;
    border-radius: 50% !important;
}
.related-services__arrow .icon { width: 17px !important; height: 17px !important; }

/* Keep all About-page statistic content comfortably inside the circle. */
.page-hero--about .page-hero__grid {
    grid-template-columns: minmax(0, 1.18fr) minmax(350px, .82fr);
    gap: clamp(54px, 7vw, 105px);
}
.page-hero--about .page-hero__content h1 {
    max-width: 780px;
    font-size: clamp(3.25rem, 5.35vw, 5.75rem);
    line-height: 1.03;
    text-wrap: balance;
}
.about-stat {
    width: 350px;
    height: 350px;
    padding: 38px;
    overflow: hidden;
}
.about-stat__inner {
    width: 100%;
    max-width: 245px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.about-stat strong {
    display: block;
    font-size: clamp(5rem, 7vw, 6.35rem);
    line-height: .86;
}
.about-stat span {
    max-width: 190px;
    margin-top: 15px;
    font-size: 1rem;
    line-height: 1.4;
}
.about-stat__locations {
    width: 100%;
    display: grid;
    gap: 5px;
    margin-top: 22px;
    padding-top: 17px;
    border-top: 1px solid rgba(255,255,255,.14);
}
.about-stat__locations small {
    display: block;
    color: #9fb6c0;
    font-size: .68rem;
    font-weight: 750;
    line-height: 1.35;
    letter-spacing: .065em;
    text-transform: uppercase;
}

@media (max-width: 1100px) {
    .service-hero__grid {
        grid-template-columns: 1fr;
        min-height: 0;
        gap: 48px;
        padding: 64px 0 72px;
    }
    .service-hero .page-hero__content,
    .service-hero .page-hero__content h1,
    .service-hero .page-hero__lead { max-width: 820px; }
    .service-experience { width: 100%; max-width: 760px; margin: 0 auto; }
    .service-audience-layout { grid-template-columns: 1fr; gap: 48px; }
    .service-audience__content h2 { max-width: 820px; }
    .related-services { max-width: 820px; }
    .page-hero--about .page-hero__grid {
        grid-template-columns: 1fr;
        gap: 52px;
        padding: 72px 0 78px;
    }
    .about-stat { justify-self: center; }
}

@media (max-width: 720px) {
    .service-hero__grid { padding: 54px 0 62px; }
    .service-hero .page-hero__content h1 {
        font-size: clamp(2.65rem, 13vw, 4rem);
        line-height: 1.01;
    }
    .service-tags { margin: 22px 0 26px; }
    .service-tags span { flex: 1 1 calc(50% - 5px); justify-content: center; text-align: center; }
    .service-audience__content h2 { font-size: clamp(2.25rem, 10.5vw, 3.35rem); }
    .service-audience__intro { font-size: .94rem; }
    .related-services { padding: 25px 20px; border-radius: 19px; }
    .related-services__grid a { grid-template-columns: 45px minmax(0, 1fr) 28px; gap: 12px; padding: 13px; }
    .related-services__icon { width: 43px !important; height: 43px !important; }
    .page-hero--about .page-hero__content h1 { font-size: clamp(2.75rem, 13vw, 4.2rem); }
    .about-stat { width: min(310px, 86vw); height: min(310px, 86vw); padding: 30px; }
    .about-stat strong { font-size: 5rem; }
    .about-stat span { font-size: .92rem; }
    .about-stat__locations { margin-top: 17px; padding-top: 14px; }
    .about-stat__locations small { font-size: .6rem; }
}
