:root {
  --navy-950: #03101d;
  --navy-900: #07192d;
  --navy-800: #0b2747;
  --navy-700: #123a66;
  --gold-500: #f5b400;
  --gold-400: #ffc928;
  --gold-600: #d99100;
  --gold-text: #996000;
  --white: #ffffff;
  --ink: #102033;
  --muted: #5e6a78;
  --line: #dce2e8;
  --surface: #f4f7fa;
  --success: #16784b;
  --danger: #b42318;
  --shadow-sm: 0 10px 30px rgba(3, 16, 29, .08);
  --shadow-lg: 0 20px 55px rgba(3, 16, 29, .16);
  --shadow-hero: 0 28px 80px rgba(3, 16, 29, .2);
  --radius: 22px;
  --container: 1220px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
svg { width: 1.2em; height: 1.2em; fill: currentColor; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 110px 0; }
.skip-link { position: fixed; left: 14px; top: -80px; z-index: 9999; background: var(--gold-500); color: var(--navy-950); padding: 10px 16px; font-weight: 800; border-radius: 8px; }
.skip-link:focus { top: 14px; }
:where(a, button):focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(3, 16, 29, .94);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}
.header-shell { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand img { width: 230px; height: auto; object-fit: contain; object-position: center; }
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a { color: rgba(255,255,255,.85); text-decoration: none; font-size: .93rem; font-weight: 700; padding: 12px 11px; border-radius: 9px; transition: .2s ease; white-space: nowrap; }
.main-nav a:hover, .main-nav a.active { color: #fff; background: rgba(255,255,255,.09); }
.main-nav .nav-cta { margin-left: 8px; color: var(--navy-950); background: var(--gold-500); padding-inline: 16px; }
.main-nav .nav-cta:hover { color: var(--navy-950); background: var(--gold-400); }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.18); border-radius: 10px; background: transparent; padding: 10px; cursor: pointer; }
.menu-toggle span { display: block; width: 100%; height: 2px; background: #fff; margin: 5px 0; transition: .25s; }

.hero { position: relative; isolation: isolate; overflow: hidden; color: #fff; background: radial-gradient(circle at 75% 15%, #123d68 0%, #07192d 42%, #03101d 100%); padding: 82px 0 96px; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -2; opacity: .25; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 38px 38px; }
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 5px; background: linear-gradient(90deg, transparent, var(--gold-500), transparent); }
.hero-glow { position: absolute; z-index: -1; border-radius: 50%; filter: blur(20px); opacity: .18; }
.hero-glow-one { width: 420px; height: 420px; right: -150px; top: -160px; background: var(--gold-500); }
.hero-glow-two { width: 350px; height: 350px; left: -220px; bottom: -170px; background: #2381d1; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 68px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 18px; color: var(--gold-400); text-transform: uppercase; letter-spacing: .16em; font-size: .78rem; font-weight: 900; }
.eyebrow > span { width: 36px; height: 2px; background: currentColor; }
.eyebrow.dark { color: var(--gold-text); }
.eyebrow.centered { justify-content: center; }
.hero h1 { margin: 0; max-width: 700px; font-size: clamp(2.6rem, 5vw, 5.3rem); line-height: .98; letter-spacing: -.055em; font-weight: 900; text-wrap: balance; }
.hero h1 em { color: var(--gold-500); font-style: normal; }
.hero-lead { max-width: 680px; margin: 26px 0 0; color: rgba(255,255,255,.76); font-size: 1.1rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; border: 0; border-radius: 12px; padding: 0 22px; text-decoration: none; font-weight: 900; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.button-primary { color: var(--navy-950); background: linear-gradient(135deg, var(--gold-400), var(--gold-600)); box-shadow: 0 12px 30px rgba(245,180,0,.2); }
.button-primary:hover { box-shadow: 0 16px 38px rgba(245,180,0,.32); }
.button-secondary { color: #fff; border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.06); }
.button-secondary:hover { background: rgba(255,255,255,.12); }
.button.full { width: 100%; }
.hero-points { display: flex; flex-wrap: wrap; gap: 12px 22px; margin: 30px 0 0; padding: 0; list-style: none; color: rgba(255,255,255,.72); font-size: .9rem; }
.hero-points li { display: flex; align-items: center; gap: 8px; }
.hero-points li::before { content: "✓"; display: grid; place-items: center; width: 21px; height: 21px; border-radius: 50%; color: var(--navy-950); background: var(--gold-500); font-size: .72rem; font-weight: 900; }
.hero-visual { position: relative; }
.hero-image-wrap { position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.16); border-radius: 28px; background: var(--navy-950); box-shadow: var(--shadow-hero); }
.hero-image-wrap::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); pointer-events: none; }
.hero-image-wrap img { width: 100%; height: auto; object-fit: contain; object-position: center; }
.trust-strip { position: relative; z-index: 2; margin-top: -1px; color: #fff; background: var(--navy-900); border-bottom: 1px solid rgba(255,255,255,.08); }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.trust-grid > div { display: flex; align-items: center; gap: 12px; padding: 25px 22px; border-right: 1px solid rgba(255,255,255,.1); }
.trust-grid > div:last-child { border-right: 0; }
.trust-grid strong { color: var(--gold-400); font-size: 1.08rem; }
.trust-grid span { color: rgba(255,255,255,.66); font-size: .83rem; }

.two-column { display: grid; grid-template-columns: 1fr 1fr; gap: 86px; align-items: center; }
.section-copy h2, .section-heading h2, .location-copy h2, .contact-card h2, .form-heading h2 { margin: 0; color: var(--navy-900); font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.08; letter-spacing: -.04em; text-wrap: balance; }
.section-copy > p:not(.eyebrow), .location-copy > p:not(.eyebrow) { margin: 20px 0 0; color: var(--muted); font-size: 1.02rem; }
.text-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 26px; color: var(--navy-800); text-decoration: none; font-weight: 900; }
.text-link span { color: var(--gold-text); font-size: 1.35rem; transition: transform .2s; }
.feature-panel { display: grid; gap: 18px; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg,#fff,#f2f6fa); box-shadow: var(--shadow-sm); }
.feature-item { display: flex; gap: 18px; align-items: flex-start; padding: 19px; border-radius: 16px; background: #fff; box-shadow: 0 6px 22px rgba(7,25,45,.05); }
.feature-icon { flex: 0 0 47px; display: grid; place-items: center; width: 47px; height: 47px; border-radius: 13px; color: var(--navy-900); background: var(--gold-500); }
.feature-icon svg { width: 25px; height: 25px; }
.feature-item h3 { margin: 0; color: var(--navy-900); font-size: 1.08rem; }
.feature-item p { margin: 5px 0 0; color: var(--muted); font-size: .9rem; }

.services { background: var(--surface); }
.section-heading { max-width: 790px; margin: 0 auto 52px; text-align: center; }
.section-heading > p:not(.eyebrow) { margin: 16px auto 0; color: var(--muted); max-width: 680px; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.service-card { position: relative; min-height: 310px; overflow: hidden; padding: 32px 28px 28px; border: 1px solid #e0e6ec; border-radius: 18px; background: #fff; box-shadow: 0 8px 30px rgba(7,25,45,.04); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card::before { content: ""; position: absolute; inset: auto 0 0; height: 4px; background: linear-gradient(90deg, var(--gold-600), var(--gold-400)); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.service-number { position: absolute; right: 22px; top: 18px; color: #edf1f5; font-size: 3.4rem; line-height: 1; font-weight: 900; }
.service-icon { position: relative; z-index: 1; display: grid; place-items: center; width: 56px; height: 56px; margin-bottom: 24px; border-radius: 15px; color: var(--navy-900); background: var(--gold-500); }
.service-icon svg { width: 29px; height: 29px; }
.service-card h3 { margin: 0; color: var(--navy-900); font-size: 1.22rem; }
.service-card p { margin: 12px 0 0; color: var(--muted); font-size: .94rem; }

.process { color: #fff; background: var(--navy-900); }
.section-heading.light h2 { color: #fff; }
.process-grid { counter-reset: process; display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; margin: 0; padding: 0; list-style: none; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); overflow: hidden; background: rgba(255,255,255,.1); }
.process-grid li { min-height: 270px; padding: 34px 26px; background: var(--navy-900); }
.process-grid li > span { display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 28px; border-radius: 50%; color: var(--navy-950); background: var(--gold-500); font-size: 1.1rem; font-weight: 900; box-shadow: 0 0 0 8px rgba(245,180,0,.09); }
.process-grid h3 { margin: 0; font-size: 1.18rem; }
.process-grid p { margin: 10px 0 0; color: rgba(255,255,255,.62); font-size: .9rem; }

.status-pill { display: inline-flex; padding: 6px 11px; border-radius: 999px; color: var(--navy-950); background: var(--gold-500); font-size: .76rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }

.location-grid { align-items: stretch; }
.location-copy { align-self: center; }
.area-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.area-tags span { padding: 8px 13px; border: 1px solid #d8e0e8; border-radius: 999px; color: var(--navy-800); background: #fff; font-size: .82rem; font-weight: 800; }
.map-wrap { position: relative; min-height: 480px; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-lg); background: #dce6ee; }
.service-map { width: 100%; height: 100%; min-height: 480px; background: #dce6ee; cursor: grab; }
.service-map:active { cursor: grabbing; }
.map-loading { position: absolute; z-index: 700; inset: 50% auto auto 50%; transform: translate(-50%,-50%); padding: 11px 15px; border: 1px solid rgba(3,16,29,.12); border-radius: 10px; color: var(--navy-900); background: rgba(255,255,255,.94); box-shadow: var(--shadow-sm); font-size: .86rem; font-weight: 800; pointer-events: none; transition: opacity .2s ease, visibility .2s ease; }
.map-loading.hidden { opacity: 0; visibility: hidden; }
.map-legend { position: absolute; z-index: 650; left: 14px; bottom: 14px; display: flex; flex-direction: column; gap: 5px; max-width: calc(100% - 28px); padding: 12px 14px; border: 1px solid rgba(255,255,255,.16); border-radius: 11px; color: #fff; background: rgba(3,16,29,.9); box-shadow: var(--shadow-sm); pointer-events: none; }
.map-legend strong { color: var(--gold-400); font-size: .9rem; }
.map-legend span { display: flex; align-items: center; gap: 7px; font-size: .75rem; line-height: 1.35; }
.map-legend i { flex: 0 0 28px; width: 28px; height: 0; border-radius: 0; background: transparent; }
.map-legend .legend-county { border: 0; border-top: 5px dashed #e5a000; box-shadow: 0 -1px 0 1px rgba(255,255,255,.95), 0 1px 0 1px rgba(255,255,255,.95); }
.map-legend .legend-city { border: 0; border-top: 5px dashed #0f6fff; box-shadow: 0 -1px 0 1px rgba(255,255,255,.95), 0 1px 0 1px rgba(255,255,255,.95); }
.service-map .leaflet-control-zoom { overflow: hidden; border: 1px solid rgba(3,16,29,.22); border-radius: 9px; box-shadow: 0 3px 14px rgba(3,16,29,.2); }
.service-map .leaflet-control-zoom a { display: grid; place-items: center; width: 42px; height: 42px; color: var(--navy-950); background: #fff; font-size: 1.55rem; font-weight: 900; line-height: 1; }
.service-map .leaflet-control-zoom a:hover, .service-map .leaflet-control-zoom a:focus { color: var(--navy-950); background: var(--gold-500); }
.service-map .leaflet-control-attribution { color: #44505c; background: rgba(255,255,255,.88); font-size: 10px; }
.contact { color: #fff; background: var(--navy-950); }
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 36px; align-items: start; }
.contact-card { position: sticky; top: 116px; padding: 46px 40px; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); background: linear-gradient(145deg,rgba(255,255,255,.08),rgba(255,255,255,.025)); }
.contact-card h2 { color: #fff; }
.contact-card > p:not(.eyebrow) { color: rgba(255,255,255,.65); }
.contact-method { display: flex; align-items: center; gap: 16px; margin-top: 18px; padding: 17px; border: 1px solid rgba(255,255,255,.1); border-radius: 14px; text-decoration: none; background: rgba(255,255,255,.04); transition: .2s; }
.contact-method:hover { border-color: rgba(245,180,0,.6); background: rgba(245,180,0,.07); }
.contact-icon { display: grid; place-items: center; flex: 0 0 45px; width: 45px; height: 45px; border-radius: 12px; color: var(--navy-950); background: var(--gold-500); }
.contact-method span:last-child { display: flex; flex-direction: column; }
.contact-method small { color: rgba(255,255,255,.55); }
.contact-method strong { color: #fff; font-size: 1.12rem; }
.form-card { padding: 44px; border-radius: var(--radius); color: var(--ink); background: #fff; box-shadow: var(--shadow-lg); }
.form-kicker { display: inline-flex; color: var(--gold-text); text-transform: uppercase; letter-spacing: .13em; font-size: .76rem; font-weight: 900; }
.form-heading h2 { margin-top: 8px; font-size: clamp(2rem,3vw,2.8rem); }
.form-heading p { margin: 12px 0 28px; color: var(--muted); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { position: relative; }
.full-field { grid-column: 1/-1; }
.field label { display: block; margin-bottom: 7px; color: var(--navy-900); font-size: .88rem; font-weight: 800; }
.field label span { color: var(--danger); }
.field label small { color: var(--muted); font-weight: 600; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #cfd8e1; border-radius: 10px; outline: 0; color: var(--ink); background: #fff; transition: border-color .18s, box-shadow .18s; }
.field input, .field select { height: 50px; padding: 0 14px; }
.field textarea { resize: vertical; min-height: 118px; padding: 12px 14px 28px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold-600); box-shadow: 0 0 0 4px rgba(245,180,0,.15); }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--danger); box-shadow: 0 0 0 3px rgba(180,35,24,.08); }
.field-error { display: none; margin-top: 5px; color: var(--danger); font-size: .76rem; }
.field.invalid .field-error { display: block; }
.char-count { position: absolute; right: 12px; bottom: 8px; color: #8a96a3; font-size: .72rem; }
.privacy-notice { grid-column: 1/-1; margin: 2px 0 0; padding: 14px 16px; border-left: 4px solid var(--gold-600); border-radius: 8px; color: #4e5b68; background: var(--surface); font-size: .82rem; }
.privacy-notice a { color: var(--navy-800); font-weight: 900; text-underline-offset: 2px; }
.honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; }
.submit-button { margin-top: 22px; }
.submit-button.loading { pointer-events: none; opacity: .78; }
.spinner { display: none; width: 18px; height: 18px; border: 2px solid rgba(3,16,29,.35); border-top-color: var(--navy-950); border-radius: 50%; animation: spin .7s linear infinite; }
.submit-button.loading .spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }
.form-status { display: none; margin-top: 15px; padding: 13px 15px; border-radius: 10px; font-size: .88rem; font-weight: 700; }
.form-status.success { display: block; color: var(--success); background: #eaf8f1; border: 1px solid #b9e4cf; }
.form-status.info { display: block; color: #0b466f; background: #edf7ff; border: 1px solid #b9d9ef; }
.form-status.error { display: block; color: #8e1c13; background: #fff0ee; border: 1px solid #f1c1bb; }

.site-footer { padding: 64px 0 24px; color: rgba(255,255,255,.64); background: #020b13; border-top: 1px solid rgba(255,255,255,.08); }
.footer-grid { display: grid; grid-template-columns: 1.35fr .72fr 1.05fr; gap: 54px; }
.footer-brand img { width: 300px; height: auto; object-fit: contain; object-position: center; }
.footer-brand p { max-width: 430px; }
.footer-grid h2 { margin: 0 0 14px; color: #fff; font-size: .9rem; text-transform: uppercase; letter-spacing: .1em; }
.footer-grid > :not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; }
.footer-grid a { margin: 4px 0; text-decoration: none; }
.footer-grid a:hover { color: var(--gold-400); }
.footer-grid a[aria-current="page"] { color: var(--gold-400); }
.footer-company { margin: 0; font-style: normal; overflow-wrap: anywhere; }
.footer-company strong { margin-bottom: 5px; color: rgba(255,255,255,.9); }
.footer-company span { margin: 2px 0; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); font-size: .78rem; }
.footer-bottom a { text-decoration: none; }

.mobile-actions { display: none; }
.reveal { opacity: 1; transform: none; }
.reveal-ready .reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal-ready .reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@media (max-width: 1100px) {
  .main-nav a { padding-inline: 8px; font-size: .86rem; }
  .brand img { width: 205px; height: auto; }
  .hero-grid { gap: 38px; }
  .two-column { gap: 50px; }
}

@media (max-width: 900px) {
  html { scroll-padding-top: 78px; }
  .site-header { backdrop-filter: none; }
  .header-shell { min-height: 74px; flex-wrap: wrap; padding-block: 10px; }
  .main-nav { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); width: 100%; padding-bottom: 8px; }
  .main-nav a { padding: 12px; font-size: .95rem; text-align: center; }
  .main-nav .nav-cta { grid-column: 1/-1; margin: 4px 0 0; }
  .menu-ready .header-shell { flex-wrap: nowrap; padding-block: 0; }
  .menu-ready .menu-toggle { display: block; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .menu-ready .main-nav { position: fixed; inset: 74px 0 auto; display: flex; flex-direction: column; align-items: stretch; width: auto; max-height: calc(100vh - 74px); max-height: calc(100dvh - 74px); overflow-y: auto; padding: 18px 20px 30px; border-top: 1px solid rgba(255,255,255,.08); background: var(--navy-950); transform: translateY(-120%); visibility: hidden; }
  .menu-ready.menu-animated .main-nav { transition: transform .28s ease, visibility .28s; }
  .menu-ready .main-nav.open { transform: translateY(0); visibility: visible; }
  .menu-ready .main-nav a { padding: 14px 12px; font-size: 1rem; text-align: left; }
  .menu-ready .main-nav .nav-cta { margin: 10px 0 0; text-align: center; }
  .hero { padding-top: 60px; }
  .hero-grid, .two-column, .contact-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero .eyebrow, .hero-actions, .hero-points { justify-content: center; }
  .hero-lead { margin-inline: auto; }
  .hero-visual { max-width: 680px; margin-inline: auto; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .trust-grid > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .contact-card { position: static; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 35px; }
}

@media (max-width: 650px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 78px 0; }
  .brand img { width: 195px; height: auto; }
  .hero { padding: 48px 0 72px; }
  .hero h1 { font-size: clamp(2.3rem, 12vw, 3.6rem); }
  .hero-lead { font-size: .98rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-points { flex-direction: column; align-items: center; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); justify-content: center; text-align: center; }
  .trust-grid > div:last-child { border-bottom: 0; }
  .feature-panel { padding: 15px; }
  .feature-item { padding: 16px; }
  .services-grid, .process-grid, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .process-grid li { min-height: 220px; }
  .contact-card, .form-card { padding: 28px 22px; }
  .map-wrap, .service-map { min-height: 390px; }
  .full-field { grid-column: auto; }
  .footer-grid { gap: 30px; }
  .footer-bottom { flex-direction: column; padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px)); }
  .mobile-actions { position: fixed; z-index: 900; left: 10px; right: 10px; bottom: calc(10px + env(safe-area-inset-bottom, 0px)); display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 13px; background: rgba(3,16,29,.96); box-shadow: 0 12px 38px rgba(0,0,0,.35); backdrop-filter: blur(10px); }
  .mobile-actions a { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 10px; color: #fff; text-decoration: none; font-weight: 900; font-size: .88rem; }
  .mobile-actions a + a { color: var(--navy-950); background: var(--gold-500); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal-ready .reveal { opacity: 1; transform: none; }
}

.contact-compact .contact-grid { align-items: stretch; }
.contact-compact .contact-card { position: static; height: 100%; }
.contact-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 52px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius);
  background: rgba(255,255,255,.07);
  box-shadow: var(--shadow-lg);
}
.contact-cta h2 { margin: 20px 0 0; color: #fff; font-size: clamp(2rem,3.5vw,3.2rem); line-height: 1.08; letter-spacing: -.04em; }
.contact-cta p { margin: 16px 0 26px; color: rgba(255,255,255,.68); }
.contact-cta .button { align-self: flex-start; }
.light-link { color: #fff; }

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 96px;
  color: #fff;
  background: radial-gradient(circle at 75% 15%, #123d68 0%, #07192d 42%, #03101d 100%);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .25;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 38px 38px;
}
.page-hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 880px; text-align: center; }
.page-hero h1 { margin: 0; font-size: clamp(3rem,7vw,6rem); line-height: .98; letter-spacing: -.055em; }
.page-hero p:not(.eyebrow) { max-width: 680px; margin: 20px auto 0; color: rgba(255,255,255,.74); font-size: 1.08rem; }

.portfolio-section { background: var(--surface); }
.portfolio-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.portfolio-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.portfolio-item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  width: calc(50% - 12px);
  justify-self: center;
}
.portfolio-item img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
}
.portfolio-item-labels-corrected::before,
.portfolio-item-labels-corrected::after {
  position: absolute;
  z-index: 2;
  top: 0;
  display: grid;
  place-items: center;
  box-sizing: border-box;
  min-width: 20%;
  height: 12%;
  padding: 0 2%;
  border-bottom: 2px solid rgba(245,180,0,.85);
  color: #fff;
  background: rgba(3,16,29,.98);
  box-shadow: 0 5px 14px rgba(3,16,29,.24);
  font-size: clamp(.9rem,2.7vw,2.8rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: .02em;
}
.portfolio-item-labels-corrected img { transform: scaleX(-1); }
.portfolio-item-labels-corrected::before { left: 0; content: "PRZED"; }
.portfolio-item-labels-corrected::after { right: 0; content: "PO"; }
.page-cta { padding: 70px 0; color: #fff; background: var(--navy-900); }
.page-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.page-cta h2 { margin: 0; color: #fff; font-size: clamp(2rem,4vw,3.4rem); line-height: 1.08; letter-spacing: -.04em; }
.page-cta p { margin: 12px 0 0; color: rgba(255,255,255,.66); }
.page-cta .button { flex-shrink: 0; }

.pricing-info-section { min-height: 520px; display: flex; align-items: center; background: var(--surface); }
.pricing-info-card {
  max-width: 920px;
  margin: 0 auto;
  padding: 58px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.pricing-info-card h2 { margin: 20px 0 0; color: var(--navy-900); font-size: clamp(2rem,4vw,3.4rem); line-height: 1.08; letter-spacing: -.04em; }
.pricing-info-card p { max-width: 720px; margin: 16px auto 0; color: var(--muted); }
.pricing-factors { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; max-width: 760px; margin: 28px auto 0; padding: 0; text-align: left; list-style: none; }
.pricing-factors li { position: relative; min-height: 58px; display: flex; align-items: center; padding: 12px 16px 12px 48px; border: 1px solid #dce3e9; border-radius: 12px; color: var(--navy-800); background: var(--surface); font-size: .92rem; font-weight: 800; }
.pricing-factors li::before { content: "✓"; position: absolute; left: 15px; display: grid; place-items: center; width: 23px; height: 23px; border-radius: 50%; color: var(--navy-950); background: var(--gold-500); font-size: .75rem; font-weight: 900; }
.pricing-factors li:last-child { grid-column: 1/-1; }
.pricing-info-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button-outline-dark { color: var(--navy-900); border: 1px solid #b9c4cf; background: #fff; }
.button-outline-dark:hover { border-color: var(--navy-900); background: #f7f9fb; }

.form-page-section { background: var(--surface); }
.form-page-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 34px; align-items: start; }
.form-side-card {
  position: sticky;
  top: 112px;
  padding: 40px;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(145deg,var(--navy-900),var(--navy-700));
  box-shadow: var(--shadow-lg);
}
.form-side-card h2 { margin: 0; color: #fff; font-size: clamp(2rem,3vw,2.8rem); line-height: 1.08; letter-spacing: -.04em; }
.form-side-card > p:not(.eyebrow) { color: rgba(255,255,255,.68); }
.form-side-card .contact-method { border-color: rgba(255,255,255,.12); background: rgba(255,255,255,.06); }
.form-side-card .contact-method:hover { background: rgba(255,255,255,.1); }
.thanks-actions { justify-content: center; margin-top: 28px; }

.privacy-hero h1 { font-size: clamp(2.75rem,6vw,5.25rem); }
.privacy-section { background: var(--surface); }
.privacy-card {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(30px,5vw,64px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.privacy-card > :first-child { margin-top: 0; }
.privacy-card h2 { margin: 42px 0 12px; color: var(--navy-900); font-size: clamp(1.45rem,3vw,2rem); line-height: 1.2; letter-spacing: -.025em; }
.privacy-card h3 { margin: 26px 0 8px; color: var(--navy-800); font-size: 1.05rem; }
.privacy-card p, .privacy-card li { color: #4f5d6a; }
.privacy-card p { margin: 10px 0; }
.privacy-card ul { margin: 12px 0 0; padding-left: 22px; }
.privacy-card li + li { margin-top: 7px; }
.privacy-card a { color: var(--navy-700); font-weight: 800; text-underline-offset: 2px; overflow-wrap: anywhere; }
.privacy-lead { padding: 18px 20px; border-left: 4px solid var(--gold-600); border-radius: 8px; background: #f7f9fb; }
.privacy-contact { display: grid; gap: 4px; margin: 18px 0 0; padding: 18px 20px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); font-style: normal; overflow-wrap: anywhere; }
.privacy-contact strong { color: var(--navy-900); }
.privacy-updated { color: var(--muted); font-size: .86rem; }

@media (max-width: 900px) {
  .page-hero { padding: 70px 0 74px; }
  .form-page-grid { grid-template-columns: 1fr; }
  .form-side-card { position: static; }
  .contact-cta { padding: 40px; }
}

@media (max-width: 650px) {
  .portfolio-columns { grid-template-columns: 1fr; gap: 16px; }
  .portfolio-item { grid-column: auto; width: 100%; border-radius: 12px; }
  .page-hero { padding: 56px 0 60px; }
  .page-hero p:not(.eyebrow) { font-size: .96rem; }
  .page-cta-inner { align-items: flex-start; flex-direction: column; }
  .page-cta .button { width: 100%; }
  .pricing-info-card { padding: 36px 22px; }
  .pricing-factors { grid-template-columns: 1fr; }
  .pricing-factors li:last-child { grid-column: auto; }
  .pricing-info-actions { flex-direction: column; }
  .pricing-info-actions .button { width: 100%; }
  .form-side-card, .contact-cta { padding: 28px 22px; }
  .privacy-card { padding: 30px 22px; }
  .privacy-card h2 { margin-top: 34px; }
}


/* Aktywne logo na ciemnym nagłówku i stopce. */
.brand { position: relative; isolation: isolate; }
.brand img,
.footer-brand img {
  background: transparent;
  filter: none;
}

@media (hover: hover) and (pointer: fine) {
  .main-nav .nav-cta:hover { transform: translateY(-1px); }
  .button:hover { transform: translateY(-2px); }
  .text-link:hover span { transform: translateX(5px); }
  .service-card:hover { transform: translateY(-6px); border-color: rgba(245,180,0,.45); box-shadow: 0 18px 45px rgba(7,25,45,.1); }
  .service-card:hover::before { transform: scaleX(1); }
}

/* Obrysy administracyjne rysowane nad mapą. */
.service-boundary-svg {
  position: absolute;
  inset: 0;
  z-index: 500;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}
.service-boundary-svg .service-boundary {
  fill: none;
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-boundary-svg .service-boundary-halo {
  stroke: rgba(255,255,255,.96);
  stroke-width: 9px;
  opacity: 1;
}
.service-boundary-svg .service-boundary-county {
  stroke: #e5a000;
  stroke-width: 5px;
  opacity: 1;
  stroke-dasharray: 9 5;
}
.service-boundary-svg .service-boundary-city {
  stroke: #0f6fff;
  stroke-width: 5px;
  opacity: 1;
  stroke-dasharray: 9 5;
}
