:root {
  --ink: #0a0b0d;
  --ink-2: #111318;
  --ink-3: #1a1d23;
  --paper: #f5f6f7;
  --paper-2: #eceef1;
  --line: rgba(255,255,255,.14);
  --line-dark: rgba(10,11,13,.13);
  --muted: #aeb4bd;
  --muted-dark: #5c646e;
  --red: #ed1522;
  --red-deep: #b70713;
  --red-soft: #ff4d57;
  --white: #ffffff;
  --max: 1180px;
  --shadow: 0 22px 56px rgba(0,0,0,.21);
  --radius: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.sr-only { position: absolute; height: 1px; width: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); white-space: nowrap; }
.skip-link { position: absolute; left: 12px; top: -100px; z-index: 99; background: var(--white); color: var(--ink); padding: 12px 16px; border-radius: 10px; }
.skip-link:focus { top: 12px; }

.utility-bar { background: #07080a; color: #d6d9de; border-bottom: 1px solid rgba(255,255,255,.08); font-size: .74rem; letter-spacing: .02em; }
.utility-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.utility-inner p { margin: 0; display: flex; align-items: center; gap: 8px; }
.utility-inner a { color: var(--white); font-size: .76rem; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 5px rgba(237,21,34,.12); }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(12,13,16,.98); border-bottom: 1px solid rgba(255,255,255,.09); transition: box-shadow .2s ease, background .2s ease; }
.site-header.is-scrolled { box-shadow: 0 8px 25px rgba(0,0,0,.24); }
.header-inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { flex: 0 0 auto; width: 154px; padding: 4px 0; }
.brand img { width: 100%; height: 72px; object-fit: contain; object-position: left center; }
.site-nav { display: flex; align-items: center; justify-content: flex-end; gap: 26px; }
.site-nav > a { position: relative; color: #d7d9dd; font-size: .82rem; font-weight: 800; letter-spacing: .01em; white-space: nowrap; transition: color .18s ease; }
.site-nav > a:not(.nav-cta)::after { content: ''; position: absolute; bottom: -12px; left: 0; width: 100%; height: 2px; background: var(--red); transform: scaleX(0); transform-origin: right; transition: transform .18s ease; }
.site-nav > a:hover, .site-nav > a.is-active { color: var(--white); }
.site-nav > a:hover:not(.nav-cta)::after, .site-nav > a.is-active:not(.nav-cta)::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { background: var(--red); color: var(--white)!important; padding: 12px 15px; border: 1px solid var(--red); box-shadow: 0 10px 22px rgba(237,21,34,.2); }
.nav-cta:hover { background: var(--red-deep); border-color: var(--red-deep); }
.menu-toggle { display: none; width: 46px; height: 42px; border: 1px solid rgba(255,255,255,.24); background: transparent; padding: 11px; }
.menu-toggle span:not(.sr-only) { display: block; width: 100%; height: 2px; background: var(--white); margin: 4px 0; }

.hero { position: relative; overflow: hidden; background: var(--ink); color: var(--white); isolation: isolate; }
.hero::before { content: ''; position: absolute; inset: 0; z-index: -3; background: radial-gradient(circle at 80% 35%, rgba(237,21,34,.20), transparent 26%), radial-gradient(circle at 73% 80%, rgba(255,255,255,.06), transparent 25%), linear-gradient(120deg,#08090b 0%,#111318 58%,#0a0b0d 100%); }
.hero::after { content: ''; position: absolute; inset: 0; z-index: -2; opacity: .29; background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px); background-size: 52px 52px; mask-image: linear-gradient(to right, black 0%, transparent 74%); }
.hero-inner { min-height: 645px; display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(340px, .98fr); align-items: center; gap: 62px; padding: 82px 0 74px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 17px; color: #f8c5c8; font-size: .74rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow::before { content: ''; display: block; width: 28px; height: 2px; background: var(--red); }
h1, h2, h3 { margin: 0; line-height: 1.04; }
h1 { max-width: 760px; font-family: 'Barlow Condensed', Impact, sans-serif; font-size: clamp(3.1rem, 5.8vw, 5.45rem); font-weight: 700; letter-spacing: -.04em; }
h1 .accent { display: block; color: var(--red); }
.hero-copy { max-width: 640px; margin: 24px 0 0; color: #d6d9df; font-size: 1.05rem; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 30px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 52px; padding: 0 20px; border: 1px solid transparent; border-radius: 2px; color: var(--white); background: var(--red); font-size: .83rem; font-weight: 800; letter-spacing: .025em; transition: transform .18s ease, background .18s ease, box-shadow .18s ease; }
.button:hover { transform: translateY(-2px); background: var(--red-deep); box-shadow: 0 15px 30px rgba(237,21,34,.24); }
.button-outline { background: transparent; border-color: rgba(255,255,255,.48); color: var(--white); }
.button-outline:hover { background: rgba(255,255,255,.09); border-color: var(--white); box-shadow: none; }
.hero-note { display: flex; gap: 10px; align-items: flex-start; margin: 19px 0 0; max-width: 650px; color: #aeb4bd; font-size: .77rem; line-height: 1.55; }
.hero-note::before { content: '✓'; color: var(--red-soft); font-weight: 800; }

.hero-panel { position: relative; min-height: 440px; display: grid; align-items: center; justify-items: center; }
.hero-panel::before { content: ''; position: absolute; width: 410px; height: 410px; border-radius: 50%; background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.09); box-shadow: inset 0 0 0 26px rgba(255,255,255,.012), 0 0 0 18px rgba(237,21,34,.035); }
.hero-logo { position: relative; z-index: 1; width: min(420px, 92%); filter: drop-shadow(0 30px 26px rgba(0,0,0,.48)); }
.hero-route { position: absolute; z-index: 2; top: 30px; right: 3px; display: flex; align-items: center; gap: 10px; padding: 10px 14px; background: #17191e; border: 1px solid rgba(255,255,255,.12); box-shadow: 0 12px 32px rgba(0,0,0,.28); color: var(--white); font-size: .74rem; font-weight: 700; }
.hero-route .pin { width: 9px; height: 9px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 5px rgba(237,21,34,.12); }
.hero-job-card { position: absolute; z-index: 2; left: -10px; bottom: 36px; width: 246px; padding: 17px 18px; background: rgba(18,20,25,.95); border: 1px solid rgba(255,255,255,.13); box-shadow: 0 18px 40px rgba(0,0,0,.28); }
.hero-job-card span { display: block; color: #aeb4bd; font-size: .68rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.hero-job-card strong { display: block; margin-top: 5px; color: var(--white); font-size: .96rem; }
.hero-job-card i { display: block; width: 100%; height: 4px; margin-top: 14px; background: linear-gradient(to right, var(--red) 0 61%, rgba(255,255,255,.15) 61%); }

.trust-strip { position: relative; z-index: 5; margin-top: -38px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); background: #17191e; border: 1px solid rgba(255,255,255,.14); box-shadow: var(--shadow); }
.trust-item { min-height: 112px; padding: 25px 25px 22px; border-right: 1px solid rgba(255,255,255,.1); }
.trust-item:last-child { border-right: 0; }
.trust-item b { display: block; color: var(--white); font-size: .93rem; }
.trust-item span { display: block; margin-top: 5px; color: #aeb4bd; font-size: .77rem; }
.trust-item::before { content: ''; display: block; width: 20px; height: 3px; margin-bottom: 13px; background: var(--red); }

.section { padding: 112px 0; }
.section-light { background: var(--paper); }
.section-dark { background: var(--ink); color: var(--white); }
.section-grey { background: var(--paper-2); }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 48px; }
.section-header-copy { max-width: 690px; }
.section-kicker { display: inline-flex; align-items: center; gap: 9px; margin: 0 0 13px; color: var(--red-deep); font-size: .72rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.section-kicker::before { content: ''; width: 24px; height: 2px; background: var(--red); }
.section-dark .section-kicker { color: #ff9aa1; }
.section-title { font-family: 'Barlow Condensed', Impact, sans-serif; font-size: clamp(2.45rem, 4.2vw, 4.15rem); font-weight: 700; letter-spacing: -.03em; }
.section-intro { max-width: 580px; margin: 17px 0 0; color: var(--muted-dark); font-size: 1rem; }
.section-dark .section-intro { color: #bcc1c9; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--red-deep); font-size: .84rem; font-weight: 800; }
.text-link:hover { color: var(--red); }
.section-dark .text-link { color: #ff858e; }

.split-feature { display: grid; grid-template-columns: .94fr 1.06fr; gap: 78px; align-items: center; }
.feature-plate { position: relative; min-height: 500px; overflow: hidden; padding: 38px; background: #121419; color: var(--white); box-shadow: var(--shadow); }
.feature-plate::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 74% 26%, rgba(237,21,34,.31), transparent 23%), linear-gradient(120deg, transparent 46%, rgba(255,255,255,.05) 46% 47%, transparent 47%); }
.feature-plate::after { content: ''; position: absolute; inset: 0; opacity: .19; background-image: linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px); background-size: 30px 30px; }
.feature-inner { position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; }
.feature-tag { align-self: flex-start; padding: 8px 11px; background: var(--red); font-size: .68rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.feature-plate h3 { max-width: 390px; margin-top: 22px; font-family: 'Barlow Condensed', Impact, sans-serif; font-size: 3.3rem; letter-spacing: -.025em; }
.feature-plate p { max-width: 390px; margin: 14px 0 0; color: #d2d6dc; font-size: .93rem; }
.feature-mark { position: absolute; right: -47px; top: 42px; width: 360px; opacity: .26; transform: rotate(-8deg); }
.feature-content h2 { font-family: 'Barlow Condensed', Impact, sans-serif; font-size: clamp(2.45rem, 4vw, 4rem); letter-spacing: -.03em; }
.feature-content > p { margin: 20px 0 0; color: var(--muted-dark); }
.check-list { display: grid; gap: 0; margin: 30px 0 34px; padding: 0; list-style: none; border-top: 1px solid var(--line-dark); }
.check-list li { padding: 15px 0; border-bottom: 1px solid var(--line-dark); display: flex; gap: 13px; align-items: flex-start; font-size: .91rem; font-weight: 600; }
.check-list li::before { content: '✓'; flex: 0 0 auto; color: var(--red); font-weight: 900; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.service-card { position: relative; overflow: hidden; min-height: 248px; padding: 31px 28px; background: var(--white); border: 1px solid rgba(10,11,13,.12); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.service-card:hover { transform: translateY(-5px); border-color: rgba(237,21,34,.44); box-shadow: 0 18px 34px rgba(10,11,13,.10); }
.service-number { display: block; margin-bottom: 36px; color: var(--red); font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: .08em; }
.service-card h3 { font-size: 1.08rem; line-height: 1.3; }
.service-card p { margin: 11px 0 0; color: var(--muted-dark); font-size: .84rem; line-height: 1.65; }
.service-card a::after { content: ''; position: absolute; inset: 0; }
.service-arrow { display: inline-flex; margin-top: 18px; color: var(--red-deep); font-size: 1rem; font-weight: 900; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); }
.process-card { position: relative; min-height: 270px; padding: 29px 27px; border-right: 1px solid var(--line); }
.process-card:last-child { border-right: 0; }
.process-card span { display: block; color: var(--red-soft); font-family: 'Barlow Condensed', sans-serif; font-size: 1.05rem; font-weight: 700; letter-spacing: .1em; }
.process-card h3 { margin-top: 42px; font-size: 1.08rem; }
.process-card p { margin: 12px 0 0; color: #b7bdc6; font-size: .84rem; }
.process-card::after { content: '→'; position: absolute; right: -12px; top: 50%; z-index: 2; width: 24px; height: 24px; transform: translateY(-50%); display: grid; place-items: center; background: var(--red); color: var(--white); border-radius: 50%; font-size: .75rem; }
.process-card:last-child::after { display: none; }

.rate-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 24px; }
.rate-card { padding: 42px; background: var(--white); border: 1px solid rgba(10,11,13,.11); }
.rate-card.featured { background: #15171c; border-color: #15171c; color: var(--white); }
.rate-label { color: var(--red-deep); font-size: .73rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.rate-card.featured .rate-label { color: #ff9aa1; }
.rate-card h3 { margin-top: 14px; font-family: 'Barlow Condensed', Impact, sans-serif; font-size: 2.8rem; letter-spacing: -.025em; }
.rate-card h3 b { color: var(--red); }
.rate-card p { margin: 15px 0 0; color: var(--muted-dark); font-size: .91rem; }
.rate-card.featured p { color: #c3c8d0; }
.rate-list { display: grid; gap: 12px; margin: 25px 0 0; padding: 0; list-style: none; }
.rate-list li { display: flex; gap: 9px; font-size: .82rem; }
.rate-list li::before { content: '✓'; color: var(--red); font-weight: 900; }

.coverage-block { position: relative; overflow: hidden; padding: 52px; background: #15171c; color: var(--white); }
.coverage-block::before { content: ''; position: absolute; inset: auto -20px -160px auto; width: 460px; height: 460px; border-radius: 50%; border: 1px solid rgba(255,255,255,.1); box-shadow: 0 0 0 40px rgba(255,255,255,.03),0 0 0 80px rgba(237,21,34,.04); }
.coverage-copy { position: relative; z-index: 1; max-width: 710px; }
.coverage-copy h2 { font-family: 'Barlow Condensed', Impact, sans-serif; font-size: clamp(2.45rem, 4vw, 4.1rem); letter-spacing: -.03em; }
.coverage-copy p { margin: 17px 0 0; color: #bfc4cd; }
.area-tags { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 9px; margin-top: 29px; }
.area-tags span { padding: 9px 12px; border: 1px solid rgba(255,255,255,.18); color: #eceef0; font-size: .77rem; font-weight: 700; }

.callout { padding: 88px 0; background: linear-gradient(113deg, #b80713, var(--red) 50%, #d20d19); color: var(--white); }
.callout-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.callout h2 { max-width: 690px; font-family: 'Barlow Condensed', Impact, sans-serif; font-size: clamp(2.5rem, 4vw, 4rem); letter-spacing: -.03em; }
.callout p { max-width: 620px; margin: 13px 0 0; color: #ffe0e2; }
.callout .button { flex: 0 0 auto; background: var(--white); color: var(--ink); box-shadow: none; }
.callout .button:hover { background: #f0f0f0; }

.page-hero { position: relative; overflow: hidden; padding: 93px 0 79px; background: var(--ink); color: var(--white); }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 78% 36%, rgba(237,21,34,.22), transparent 24%), linear-gradient(120deg, #08090b, #16181d); }
.page-hero .container { position: relative; }
.page-hero h1 { max-width: 730px; font-size: clamp(3rem, 5vw, 4.9rem); }
.page-hero p { max-width: 700px; margin: 20px 0 0; color: #c4c9d0; font-size: 1rem; }
.breadcrumb { margin: 0 0 17px; color: #ffb4ba; font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }

.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 70px; align-items: start; }
.prose h2 { margin-top: 45px; font-family: 'Barlow Condensed', Impact, sans-serif; font-size: 2.4rem; letter-spacing: -.02em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 28px; font-size: 1.14rem; }
.prose p, .prose li { color: var(--muted-dark); font-size: .96rem; }
.prose ul { padding-left: 20px; }
.prose li + li { margin-top: 8px; }
.sidebar-card { padding: 27px; background: #17191e; color: var(--white); }
.sidebar-card h2 { font-size: 1.18rem; }
.sidebar-card p { margin: 10px 0 0; color: #c1c6cf; font-size: .85rem; }
.sidebar-card .button { width: 100%; margin-top: 20px; }
.sidebar-card + .sidebar-card { margin-top: 15px; background: var(--white); color: var(--ink); border: 1px solid rgba(10,11,13,.11); }
.sidebar-card + .sidebar-card p { color: var(--muted-dark); }

.service-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.detail-card { padding: 31px; background: var(--white); border: 1px solid var(--line-dark); }
.detail-card h2 { font-size: 1.18rem; }
.detail-card p { margin: 10px 0 0; color: var(--muted-dark); font-size: .87rem; }
.detail-card ul { margin: 17px 0 0; padding: 0; list-style: none; }
.detail-card li { padding: 8px 0; border-top: 1px solid var(--line-dark); color: #343941; font-size: .83rem; }
.detail-card li::before { content: '—'; margin-right: 8px; color: var(--red); font-weight: 800; }

.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 64px; }
.person-card { padding: 36px; background: #15171c; color: var(--white); }
.person-card + .person-card { margin-top: 17px; background: var(--white); color: var(--ink); border: 1px solid var(--line-dark); }
.person-card .role { color: #ff9aa1; font-size: .7rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.person-card + .person-card .role { color: var(--red-deep); }
.person-card h2 { margin-top: 9px; font-family: 'Barlow Condensed', Impact, sans-serif; font-size: 2.6rem; letter-spacing: -.02em; }
.person-card p { margin: 10px 0 0; color: #c1c6cf; font-size: .88rem; }
.person-card + .person-card p { color: var(--muted-dark); }

.faq-list { border-top: 1px solid var(--line-dark); }
details { border-bottom: 1px solid var(--line-dark); }
summary { position: relative; padding: 21px 43px 21px 0; cursor: pointer; list-style: none; font-size: 1rem; font-weight: 800; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; position: absolute; top: 14px; right: 0; color: var(--red); font-size: 1.7rem; font-weight: 500; }
details[open] summary::after { content: '−'; }
details p { max-width: 870px; margin: -2px 0 20px; color: var(--muted-dark); font-size: .9rem; }

.contact-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: start; }
.contact-ways { display: grid; gap: 13px; margin-top: 29px; }
.contact-way { display: flex; align-items: center; gap: 14px; padding: 18px; background: #17191e; color: var(--white); }
.contact-way-icon { display: grid; place-items: center; flex: 0 0 auto; width: 39px; height: 39px; border: 1px solid rgba(255,255,255,.22); color: #ff959d; }
.contact-way-icon svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-way span { display: block; color: #b4bbc5; font-size: .72rem; }
.contact-way b { display: block; margin-top: 1px; font-size: .9rem; }
.contact-form { padding: 38px; background: var(--white); border: 1px solid var(--line-dark); box-shadow: 0 15px 34px rgba(10,11,13,.07); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 17px; }
.form-field { display: grid; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { color: #272c33; font-size: .74rem; font-weight: 800; letter-spacing: .03em; }
.form-field input, .form-field select, .form-field textarea { width: 100%; border: 1px solid #cdd1d6; border-radius: 0; padding: 13px 14px; background: #fff; color: var(--ink); font-size: .9rem; outline: none; transition: border-color .18s ease, box-shadow .18s ease; }
.form-field textarea { min-height: 126px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(237,21,34,.12); }
.form-check { display: flex; align-items: flex-start; gap: 10px; margin-top: 16px; color: var(--muted-dark); font-size: .77rem; line-height: 1.5; }
.form-check input { margin-top: 3px; accent-color: var(--red); }
.form-check a { color: var(--red-deep); text-decoration: underline; }
.form-hint { margin: 13px 0 0; color: var(--muted-dark); font-size: .73rem; }
.form-message { margin-bottom: 20px; padding: 14px 15px; border-left: 3px solid var(--red); background: #fff1f2; color: #651219; font-size: .84rem; }
.form-message.success { border-color: #188747; background: #eff9f3; color: #0b5930; }
.honeypot { position: absolute!important; left: -10000px!important; top: auto!important; width: 1px!important; height: 1px!important; overflow: hidden!important; }

.policy-card { padding: 27px; border-left: 3px solid var(--red); background: #fff; box-shadow: 0 8px 22px rgba(10,11,13,.05); }
.policy-card p { margin: 0; color: var(--muted-dark); font-size: .86rem; }

.site-footer { background: #08090b; color: var(--white); padding: 68px 0 23px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .85fr 1.1fr; gap: 42px; }
.footer-brand img { width: 180px; height: 96px; object-fit: contain; object-position: left center; }
.footer-brand p { max-width: 325px; margin: 13px 0 0; color: #aeb4bd; font-size: .83rem; }
.footer-phone { display: inline-block; margin-top: 18px; color: #fff; font-size: .9rem; font-weight: 800; }
.site-footer h2 { margin: 0 0 17px; color: #ff9aa1; font-size: .76rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li + li { margin-top: 10px; }
.site-footer li, .site-footer section > p { color: #b4bbc5; font-size: .8rem; }
.site-footer li a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 54px; padding-top: 21px; border-top: 1px solid rgba(255,255,255,.1); color: #8d949e; font-size: .73rem; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 18px; }
.footer-bottom a:hover { color: var(--white); }
.mobile-call { display: none; }

@media (max-width: 1040px) {
  .site-nav { gap: 18px; }
  .site-nav > a { font-size: .77rem; }
  .hero-inner { gap: 30px; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > section:last-child { grid-column: 2 / -1; }
}

@media (max-width: 850px) {
  .utility-inner { min-height: 35px; }
  .utility-inner p { font-size: .67rem; }
  .utility-inner a { display: none; }
  .header-inner { min-height: 74px; }
  .brand { width: 125px; }
  .brand img { height: 63px; }
  .menu-toggle { display: block; }
  .site-nav { position: fixed; top: 109px; left: 0; right: 0; bottom: 0; display: none; align-items: stretch; flex-direction: column; justify-content: flex-start; gap: 0; padding: 24px 20px 135px; overflow-y: auto; background: #0e1014; }
  .site-nav.is-open { display: flex; }
  .site-nav > a { padding: 17px 3px; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 1rem; }
  .site-nav > a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin-top: 22px; padding: 16px; text-align: center; border-bottom: 0!important; }
  .hero-inner { min-height: auto; grid-template-columns: 1fr; gap: 5px; padding: 69px 0 90px; }
  .hero-panel { min-height: 330px; margin-top: 12px; }
  .hero-panel::before { width: 300px; height: 300px; }
  .hero-logo { width: 310px; }
  .hero-route { right: 0; top: 15px; }
  .hero-job-card { left: 0; bottom: 2px; }
  .trust-strip { margin-top: -31px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .split-feature, .rate-grid, .about-grid, .contact-layout { grid-template-columns: 1fr; gap: 38px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-card:nth-child(2) { border-right: 0; }
  .process-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .process-card:nth-child(2)::after { display: none; }
  .content-grid { grid-template-columns: 1fr; gap: 35px; }
  .sidebar { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .sidebar-card + .sidebar-card { margin-top: 0; }
  .callout-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid > section:last-child { grid-column: auto; }
}

@media (max-width: 580px) {
  body { padding-bottom: 72px; }
  .container { width: min(calc(100% - 28px), var(--max)); }
  .utility-inner p { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  h1 { font-size: clamp(2.9rem, 14vw, 4.3rem); }
  .hero-copy { font-size: .94rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-panel { min-height: 290px; }
  .hero-logo { width: 275px; }
  .hero-panel::before { width: 255px; height: 255px; }
  .hero-route { top: 10px; max-width: 190px; font-size: .67rem; }
  .hero-job-card { width: 218px; padding: 14px; }
  .trust-grid, .services-grid, .process-grid, .service-detail-grid, .footer-grid, .sidebar, .form-grid { grid-template-columns: 1fr; }
  .trust-item, .trust-item:nth-child(2) { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .trust-item:last-child { border-bottom: 0; }
  .section { padding: 76px 0; }
  .section-header { display: block; margin-bottom: 35px; }
  .section-header > .text-link { margin-top: 19px; }
  .feature-plate { min-height: 410px; padding: 27px; }
  .feature-plate h3 { font-size: 2.9rem; }
  .feature-mark { right: -86px; width: 315px; }
  .service-card { min-height: auto; padding: 26px; }
  .service-number { margin-bottom: 24px; }
  .process-card { min-height: 220px; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-card h3 { margin-top: 28px; }
  .process-card::after { display: none; }
  .rate-card, .coverage-block, .contact-form { padding: 27px 22px; }
  .coverage-block { padding-bottom: 44px; }
  .callout { padding: 64px 0; }
  .page-hero { padding: 68px 0 61px; }
  .page-hero h1 { font-size: clamp(2.8rem, 13.5vw, 4.1rem); }
  .footer-grid { gap: 34px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; margin-top: 42px; }
  .mobile-call { position: fixed; z-index: 55; left: 0; right: 0; bottom: 0; min-height: 70px; display: flex; align-items: center; justify-content: center; gap: 10px; background: var(--red); color: var(--white); box-shadow: 0 -8px 24px rgba(0,0,0,.22); }
  .mobile-call-icon { display: grid; place-items: center; width: 37px; height: 37px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; }
  .mobile-call small { display: block; margin-bottom: -2px; color: #ffd2d5; font-size: .64rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
  .mobile-call strong { display: block; font-size: .95rem; }
}
