:root {
	--navy: #071b2b;
	--navy-soft: #0d293d;
	--ink: #112331;
	--muted: #5d6c76;
	--line: #dce4e8;
	--mist: #f3f7f8;
	--white: #fff;
	--blue: #087fa4;
	--blue-bright: #19afd0;
	--green: #87c8b4;
	--radius: 10px;
	--shadow: 0 18px 55px rgba(4, 24, 38, .12);
	--container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: Arial, Helvetica, sans-serif; font-size: 16px; line-height: 1.65; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
h1, h2, h3 { margin: 0; color: var(--ink); font-weight: 700; line-height: 1.1; letter-spacing: -.045em; }
h1 { max-width: 780px; font-size: clamp(3.4rem, 7vw, 6.7rem); }
h2 { font-size: clamp(2.35rem, 4.5vw, 4.35rem); }
h3 { font-size: 1.35rem; letter-spacing: -.025em; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { max-width: 850px; }
.skip-link { position: fixed; z-index: 100; top: -100px; left: 16px; padding: 10px 16px; color: var(--white); background: var(--navy); }
.skip-link:focus { top: 16px; }
.prelaunch-bar { padding: 5px 20px; color: #b7dbe5; background: #04141f; font-size: .7rem; text-align: center; text-transform: uppercase; letter-spacing: .14em; }
.eyebrow { margin-bottom: 18px; color: var(--blue); font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 22px; border: 1px solid var(--blue); border-radius: 4px; color: var(--white); background: var(--blue); font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; transition: .2s ease; }
.button:hover { border-color: var(--navy); color: var(--white); background: var(--navy); transform: translateY(-2px); }
.button-secondary { border-color: rgba(255,255,255,.42); color: var(--white); background: transparent; }
.button-secondary:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.button-small { min-height: 42px; padding-inline: 16px; font-size: .68rem; }
.button-light { border-color: var(--white); color: var(--navy); background: var(--white); }
.button-outline-light { border-color: rgba(255,255,255,.45); background: transparent; }
.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 30px; }
.button-row-center { justify-content: center; }
.text-link { color: var(--blue); font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.text-link span { padding-left: 5px; transition: padding .2s ease; }
.text-link:hover span { padding-left: 10px; }

.site-header { position: sticky; z-index: 20; top: 0; border-bottom: 1px solid rgba(255,255,255,.12); background: rgba(7,27,43,.96); }
.header-inner { display: flex; min-height: 76px; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--white); }
.header-logo { display: block; width: 230px; height: auto; }
.site-navigation { display: flex; align-items: center; gap: 20px; }
.nav-list { display: flex; align-items: center; gap: 20px; margin: 0; padding: 0; list-style: none; }
.nav-list a { color: #d1e0e6; font-size: .7rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.nav-list a:hover { color: var(--white); }
.nav-emergency { color: #ffcf91; font-size: .64rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.nav-emergency:hover { color: var(--white); }
.menu-toggle { display: none; }

.hero { position: relative; overflow: hidden; color: var(--white); background: var(--navy); }
.hero::before { position: absolute; inset: 0; background: url("../images/photos/homepage-hero.jpg") center right / cover no-repeat; content: ""; }
.hero::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,27,43,.98) 0%, rgba(7,27,43,.93) 36%, rgba(7,27,43,.58) 62%, rgba(7,27,43,.16) 100%); content: ""; }
.hero-grid { position: relative; z-index: 1; display: flex; min-height: 715px; align-items: center; padding-block: 88px; }
.hero-copy { max-width: 710px; }
.hero h1 { color: var(--white); }
.hero-text { max-width: 700px; margin-top: 24px; color: #c0d2da; font-size: 1.18rem; }
.hero-points { display: flex; flex-wrap: wrap; gap: 18px 28px; margin: 42px 0 0; padding: 0; list-style: none; color: #bbd1d9; font-size: .78rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.hero-points li::before { margin-right: 8px; color: var(--green); content: "+"; }

.section { padding-block: 112px; }
.section-light { background: var(--mist); }
.section-heading { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 55px; margin-bottom: 45px; }
.section-heading p:last-child { max-width: 520px; color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.service-card { min-height: 290px; padding: 28px; background: var(--white); transition: .2s ease; }
.service-card:hover { position: relative; z-index: 2; box-shadow: var(--shadow); transform: translateY(-5px); }
.card-visual { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.card-visual img { width: 84px; height: 84px; transition: transform .25s ease; }
.service-card:hover .card-visual img { transform: translateY(-4px) scale(1.03); }
.card-visual span, .reason-grid span { color: var(--blue); font-size: .7rem; font-weight: 700; letter-spacing: .16em; }
.service-card h3 { margin-top: 24px; }
.service-card p { color: var(--muted); font-size: .93rem; }
.service-card strong { display: block; margin-top: 26px; color: var(--blue); font-size: .67rem; letter-spacing: .11em; text-transform: uppercase; }
.service-card b { padding-left: 5px; font-size: 1rem; }

.industries { color: #c1d3da; background: var(--navy); }
.industries h2 { max-width: 560px; color: var(--white); }
.industries-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; }
.industries p:not(.eyebrow) { max-width: 580px; margin-block: 22px 30px; }
.industry-list { border-top: 1px solid rgba(255,255,255,.16); }
.industry-list a { display: flex; justify-content: space-between; padding: 17px 5px; border-bottom: 1px solid rgba(255,255,255,.16); color: var(--white); font-size: 1.05rem; font-weight: 700; }
.industry-list span { color: var(--green); }
.industries-photo-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 42px; }
.industries-photo-strip a { position: relative; overflow: hidden; min-height: 190px; border-radius: var(--radius); background: var(--navy-soft); }
.industries-photo-strip img { width: 100%; height: 100%; min-height: 190px; object-fit: cover; opacity: .8; transition: .25s ease; }
.industries-photo-strip span { position: absolute; right: 16px; bottom: 14px; left: 16px; color: var(--white); font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.industries-photo-strip a:hover img { opacity: 1; transform: scale(1.04); }
.reason-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.reason-grid div { padding: 28px; border-top: 3px solid var(--blue); background: var(--mist); }
.reason-visual { display: block; width: 82px; height: 82px; margin-bottom: 18px; }
.reason-grid h3 { margin-block: 20px 12px; }
.reason-grid p { color: var(--muted); font-size: .92rem; }

.support { position: relative; overflow: hidden; color: #c1d3da; background: var(--navy-soft); }
.support-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr .9fr; gap: 80px; align-items: center; }
.support h2 { color: var(--white); }
.support-panel > p:not(.eyebrow) { margin-top: 20px; }
.support-list { border-top: 1px solid rgba(255,255,255,.15); }
.homepage-support-photo { display: block; width: 100%; margin-bottom: 18px; border-radius: var(--radius); }
.support-list div { display: flex; gap: 25px; padding: 22px 5px; border-bottom: 1px solid rgba(255,255,255,.15); }
.support-list b { color: var(--green); font-size: .74rem; letter-spacing: .14em; }
.support-list span { color: var(--white); font-weight: 700; }
.support-emergency-link { display: inline-block; margin-top: 25px; color: #ffcf91; font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.service-area { position: relative; overflow: hidden; }
.service-area-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr .8fr; gap: 80px; align-items: end; }
.service-area p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }
.assessment { position: relative; overflow: hidden; padding-block: 105px; color: #c5d8de; text-align: center; background: var(--blue); }
.assessment-inner { position: relative; z-index: 1; max-width: 820px; }
.assessment .eyebrow { color: #b9ecf6; }
.assessment h2 { color: var(--white); }
.assessment p:not(.eyebrow) { max-width: 690px; margin: 18px auto 0; }
.section-accent { position: absolute; pointer-events: none; }
.support-accent { right: -24px; bottom: -35px; width: 330px; opacity: .2; }
.coverage-accent { right: 2%; bottom: -24px; width: 340px; opacity: .17; }
.assessment-accent { top: -18px; right: 4%; width: 230px; opacity: .22; }

.site-footer { padding-top: 76px; color: #a9bec7; background: #04141f; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .75fr .75fr 1.15fr; gap: 45px; }
.brand-footer { margin-bottom: 20px; }
.footer-logo { display: block; width: min(260px, 100%); height: auto; }
.footer-grid p { font-size: .9rem; }
.footer-grid h2 { margin-bottom: 18px; color: var(--white); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-grid ul { margin: 0; padding: 0; list-style: none; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a:not(.button):not(.brand) { color: #a9bec7; font-size: .87rem; }
.footer-grid a:hover { color: var(--white); }
.footer-phone { display: block; margin-top: 14px; }
.footer-bottom { margin-top: 52px; padding-block: 18px; border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom p { margin: 0; font-size: .75rem; }
.page-main { min-height: 55vh; padding-block: 100px; }
.page-main h1 { font-size: clamp(3rem, 7vw, 5.5rem); }
.entry-content { margin-top: 30px; }
.content-card { padding-block: 24px; border-bottom: 1px solid var(--line); }
.inner-hero { padding-block: 112px; color: #c1d3da; background: var(--navy); }
.inner-hero-photo { position: relative; overflow: hidden; background: var(--navy); }
.inner-hero-photo::before { position: absolute; inset: 0; background-position: center; background-size: cover; background-repeat: no-repeat; content: ""; }
.inner-hero-photo::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,27,43,.98) 0%, rgba(7,27,43,.9) 56%, rgba(7,27,43,.62) 100%); content: ""; }
.inner-hero-photo .inner-hero-grid { position: relative; z-index: 1; }
.inner-hero-service-areas::before { position: absolute; inset: 0; background: url("../images/photos/property-entry.jpg") center / cover no-repeat; content: ""; }
.inner-hero-why-area-labs::before { background-image: url("../images/photos/technician-site-walk.jpg"); background-position: center 44%; }
.inner-hero-support-plans::before { background-image: url("../images/photos/managed-support.jpg"); }
.inner-hero-emergency-support::before { background-image: url("../images/photos/remote-support.jpg"); }
.inner-hero-structured-cabling::before { background-image: url("../images/photos/structured-cabling.jpg"); }
.inner-hero-commercial-wifi::before { background-image: url("../images/photos/commercial-wifi.jpg"); }
.inner-hero-security-cameras::before { background-image: url("../images/photos/security-cameras.jpg"); }
.inner-hero-remote-support::before { background-image: url("../images/photos/remote-support.jpg"); }
.inner-hero-access-control::before { background-image: url("../images/photos/access-control.jpg"); }
.inner-hero-managed-it::before { background-image: url("../images/photos/managed-support.jpg"); }
.inner-hero-property-managers::before { background-image: url("../images/photos/property-entry.jpg"); }
.inner-hero-commercial-offices::before { background-image: url("../images/photos/commercial-office.jpg"); }
.inner-hero-warehouses-logistics::before { background-image: url("../images/photos/warehouse.jpg"); }
.inner-hero-medical-facilities::before { background-image: url("../images/photos/medical-office.jpg"); }
.inner-hero-multi-location-businesses::before { background-image: url("../images/photos/multi-location-operations.jpg"); }
.inner-hero-restaurants-hospitality::before { background-image: url("../images/photos/hospitality.jpg"); }
.inner-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) 190px; align-items: center; gap: 56px; }
.inner-hero h1 { color: var(--white); font-size: clamp(3.3rem, 7vw, 6rem); }
.inner-hero p:not(.eyebrow) { max-width: 760px; margin-top: 24px; color: #c1d3da; font-size: 1.12rem; }
.inner-hero-visual { display: block; width: 100%; max-height: 180px; opacity: .92; }
.contact-grid { display: grid; grid-template-columns: 1fr .78fr; gap: 76px; }
.contact-grid h2 { margin-bottom: 18px; }
.contact-grid > div:first-child > p:not(.eyebrow) { max-width: 650px; color: var(--muted); }
.contact-details { display: grid; gap: 12px; margin-top: 30px; }
.contact-details a { display: grid; padding: 16px 18px; border-left: 3px solid var(--blue); background: var(--mist); color: var(--navy); font-size: 1.08rem; font-weight: 700; }
.contact-details span { color: var(--blue); font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; }
.form-card { padding: 32px; border-top: 4px solid var(--blue); background: var(--mist); }
.form-card h3 { margin-bottom: 12px; font-size: 1.8rem; }
.form-card p:not(.eyebrow) { color: var(--muted); }
.form-card .button { margin-top: 12px; }
.form-card .ff-el-group { margin-bottom: 14px; }
.form-card .ff-el-input--label label { color: var(--navy); font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.form-card .ff-el-form-control { width: 100%; min-height: 45px; padding: 10px 12px; border: 1px solid #ccd8dc; border-radius: 2px; color: var(--ink); background: var(--white); font: inherit; }
.form-card textarea.ff-el-form-control { min-height: 120px; }
.form-card .ff-btn-submit { min-height: 48px; padding: 0 18px; border: 1px solid var(--blue); border-radius: 4px; color: var(--white); background: var(--blue); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; }
.form-card .ff-btn-submit:hover { border-color: var(--navy); color: var(--white); background: var(--navy); }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); }
.feature-grid div { min-height: 260px; padding: 30px; background: var(--mist); }
.feature-visual { display: block; width: 76px; height: 76px; margin-bottom: 16px; object-fit: contain; }
.feature-grid span, .area-grid span { color: var(--blue); font-size: .7rem; font-weight: 700; letter-spacing: .16em; }
.feature-grid h2 { margin-block: 20px 14px; font-size: 1.7rem; }
.feature-grid p { color: var(--muted); }
.area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.area-grid div, .area-grid a { padding: 25px; background: var(--mist); transition: .2s ease; }
.area-grid a:hover { position: relative; z-index: 1; box-shadow: var(--shadow); transform: translateY(-3px); }
.area-visual { display: block; width: 54px; height: 54px; margin-bottom: 14px; }
.area-grid h2 { margin-top: 20px; font-size: 1.45rem; }
.emergency-section { background: #fff9f2; }
.emergency-form-card { border-top-color: #c76628; }
.emergency-disclaimer { margin-top: 22px; padding: 14px 16px; border-left: 3px solid #c76628; color: #71401d; background: #fff0df; font-size: .88rem; }
.inner-cta { padding-block: 76px; color: #c5d8de; background: var(--blue); }
.inner-cta h2 { max-width: 760px; color: var(--white); font-size: clamp(2.2rem, 5vw, 4rem); }
.service-detail-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 70px; align-items: center; }
.service-detail-grid p:not(.eyebrow) { color: var(--muted); }
.service-photo { display: block; width: 100%; max-height: 560px; margin-top: 28px; border-radius: var(--radius); object-fit: cover; box-shadow: var(--shadow); }
.about-team-photo { display: block; width: 100%; max-height: 560px; margin-bottom: 36px; border-radius: var(--radius); object-fit: cover; box-shadow: var(--shadow); }
.content-photo { display: block; width: 100%; margin-top: 28px; border-radius: var(--radius); box-shadow: var(--shadow); }
.service-visual-panel { display: grid; gap: 20px; }
.service-page-visual { width: 112px; height: 112px; }
.service-location-visual { width: 86px; height: 86px; margin-bottom: 22px; }
.detail-list { border-top: 1px solid var(--line); }
.detail-list details { border-bottom: 1px solid var(--line); }
.detail-list summary { display: flex; gap: 14px; padding: 17px 5px; cursor: pointer; list-style: none; }
.detail-list summary::-webkit-details-marker { display: none; }
.detail-list span { color: var(--blue); font-weight: 700; }
.detail-list strong { color: var(--navy); }
.detail-list p { margin: -5px 5px 18px 25px; color: var(--muted); font-size: .94rem; }
.detail-list details[open] span { transform: rotate(45deg); }

@media (max-width: 980px) {
	.site-navigation { position: absolute; top: 100%; right: 0; left: 0; display: none; padding: 18px 20px 24px; border-top: 1px solid rgba(255,255,255,.12); background: var(--navy); }
	.site-navigation.is-open { display: block; }
	.nav-list { display: grid; gap: 0; margin-bottom: 15px; }
	.nav-list a { display: block; padding-block: 10px; }
	.menu-toggle { display: flex; align-items: center; gap: 10px; border: 0; color: var(--white); background: transparent; font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
	.menu-toggle-lines { display: grid; gap: 4px; }
	.menu-toggle-lines i { display: block; width: 20px; height: 2px; background: var(--white); }
	.hero-grid { min-height: 650px; }
	.service-grid { grid-template-columns: repeat(2, 1fr); }
	.industries-grid, .support-grid { gap: 48px; }
	.footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
	h1 { font-size: clamp(3.1rem, 15vw, 4.5rem); }
	.container { width: min(calc(100% - 28px), var(--container)); }
	.header-logo { width: 190px; }
	.section { padding-block: 78px; }
	.hero-grid { gap: 20px; padding-block: 68px 45px; }
	.hero::before { background-position: 68% center; }
	.hero::after { background: linear-gradient(90deg, rgba(7,27,43,.98) 0%, rgba(7,27,43,.93) 58%, rgba(7,27,43,.63) 100%); }
	.hero-text { font-size: 1.04rem; }
	.hero-points { display: grid; gap: 8px; margin-top: 30px; }
	.section-heading, .industries-grid, .support-grid, .service-area-grid { grid-template-columns: 1fr; gap: 24px; }
	.industries-photo-strip { grid-template-columns: 1fr; }
	.support-accent { right: -90px; width: 270px; }
	.coverage-accent { right: -90px; width: 270px; }
	.assessment-accent { right: -70px; width: 190px; }
	.contact-grid { grid-template-columns: 1fr; gap: 36px; }
	.inner-hero-grid { grid-template-columns: 1fr; gap: 28px; }
	.inner-hero-visual { width: 112px; }
	.service-detail-grid { grid-template-columns: 1fr; gap: 30px; }
	.feature-grid, .area-grid { grid-template-columns: 1fr; }
	.service-grid, .reason-grid, .footer-grid { grid-template-columns: 1fr; }
	.service-card { min-height: 245px; }
	.footer-grid { gap: 30px; }
	.site-footer { padding-top: 56px; }
}
