:root {
  --mp-blue: #0b6bcb;
  --mp-blue-dark: #0756a6;
  --mp-blue-light: #e9f3ff;
  --mp-navy: #0b1624;
  --mp-navy-2: #122236;
  --mp-ink: #182230;
  --mp-muted: #5d6978;
  --mp-line: #dbe3ec;
  --mp-soft: #f4f7fa;
  --mp-white: #ffffff;
  --mp-green: #0d8c61;
  --mp-warning: #f2a51a;
  --mp-radius: 18px;
  --mp-radius-sm: 11px;
  --mp-shadow: 0 18px 60px rgba(11, 22, 36, 0.10);
  --mp-shadow-sm: 0 8px 30px rgba(11, 22, 36, 0.08);
  --mp-container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--mp-ink);
  background: var(--mp-white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--mp-blue); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--mp-blue-dark); }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4 { margin: 0 0 .7em; color: var(--mp-navy); line-height: 1.1; letter-spacing: -.035em; }
h1 { font-size: clamp(2.7rem, 6vw, 5.4rem); }
h2 { font-size: clamp(2rem, 4vw, 3.55rem); }
h3 { font-size: clamp(1.18rem, 2vw, 1.48rem); }
p { margin: 0 0 1.2em; }
ul { margin-top: 0; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.mp-skip-link { position: fixed; z-index: 9999; top: 12px; left: 12px; transform: translateY(-160%); padding: 10px 14px; color: #fff; background: var(--mp-navy); border-radius: 7px; }
.mp-skip-link:focus { transform: translateY(0); }
.mp-container { width: min(calc(100% - 40px), var(--mp-container)); margin-inline: auto; }
.mp-section { padding: 100px 0; }
.mp-section-soft { background: var(--mp-soft); }
.mp-section-dark { color: #dce6f3; background: var(--mp-navy); }
.mp-section-dark h2, .mp-section-dark h3 { color: #fff; }
.mp-kicker, .mp-card-eyebrow {
  margin: 0 0 12px;
  color: var(--mp-blue);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.mp-section-dark .mp-kicker, .mp-final-cta .mp-kicker { color: #7fc0ff; }
.mp-final-cta .mp-kicker { color: #fff; }

/* Buttons */
.mp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  border: 1px solid var(--mp-blue);
  border-radius: 10px;
  color: #fff;
  background: var(--mp-blue);
  box-shadow: 0 8px 24px rgba(11,107,203,.24);
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.mp-button:hover { transform: translateY(-2px); color: #fff; background: var(--mp-blue-dark); box-shadow: 0 12px 32px rgba(11,107,203,.30); }
.mp-button:focus-visible, .mp-menu-toggle:focus-visible, input:focus-visible, select:focus-visible, summary:focus-visible { outline: 3px solid rgba(11,107,203,.35); outline-offset: 3px; }
.mp-button-small { min-height: 44px; padding: 11px 18px; font-size: .9rem; }
.mp-button-full { width: 100%; }
.mp-button-ghost { border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.08); box-shadow: none; }
.mp-button-ghost:hover { border-color: #fff; background: rgba(255,255,255,.16); }
.mp-button-ghost-dark { color: var(--mp-navy); border-color: var(--mp-line); background: #fff; box-shadow: none; }
.mp-button-ghost-dark:hover { color: var(--mp-blue); border-color: var(--mp-blue); background: var(--mp-blue-light); }
.mp-button-light { color: var(--mp-blue-dark); border-color: #fff; background: #fff; }
.mp-button-light:hover { color: var(--mp-navy); background: #f1f7ff; }
.mp-final-cta .mp-button-light,
.mp-section-dark .mp-button-light { color: #064b91 !important; border-color: #fff !important; background: #fff !important; }
.mp-final-cta .mp-button-light:hover,
.mp-section-dark .mp-button-light:hover { color: var(--mp-navy) !important; background: #f1f7ff !important; }
.mp-button-sms { color: var(--mp-blue-dark); border-color: #a8c8e8; background: #eef7ff; box-shadow: none; }
.mp-button-sms:hover { color: #fff; border-color: var(--mp-blue-dark); background: var(--mp-blue-dark); }
.mp-text-link { display: inline-flex; font-weight: 800; text-decoration: none; }
.mp-text-link-light { display: block; margin-top: 14px; color: #fff; font-weight: 700; text-align: center; }
.mp-section-dark .mp-text-link { color: #8bc8ff; }
.mp-section-dark .mp-text-link:hover { color: #fff; }

/* Header */
.mp-topbar { color: #dbe8f7; background: #07111d; font-size: .81rem; }
.mp-topbar-inner { display: flex; justify-content: space-between; gap: 20px; padding-block: 8px; }
.mp-topbar a { color: #fff; font-weight: 800; text-decoration: none; }
.mp-header { position: sticky; z-index: 100; top: 0; border-bottom: 1px solid rgba(11,22,36,.08); background: rgba(255,255,255,.96); backdrop-filter: blur(14px); }
.admin-bar .mp-header { top: 32px; }
.mp-header-inner { display: flex; align-items: center; min-height: 78px; gap: 26px; }
.mp-header .mp-header-call { color: #fff !important; border-color: #0756a6 !important; background: #0756a6 !important; }
.mp-header .mp-header-call:hover { color: #fff !important; background: #064886 !important; }
.mp-brand { display: inline-flex; align-items: center; flex: 0 0 auto; gap: 12px; color: var(--mp-navy); text-decoration: none; }
.mp-brand:hover { color: var(--mp-navy); }
.mp-brand .custom-logo-link { display: flex; }
.mp-brand .custom-logo { width: auto; max-width: 260px; max-height: 52px; }
.mp-brand-mark { display: grid; width: 46px; height: 46px; place-items: center; color: #fff; background: var(--mp-blue); border-radius: 12px; font-size: .95rem; font-weight: 900; }
.mp-brand strong { display: block; font-size: 1rem; letter-spacing: -.02em; }
.mp-brand small { display: block; margin-top: 1px; color: var(--mp-muted); font-size: .71rem; font-weight: 750; letter-spacing: .09em; text-transform: uppercase; }
.mp-nav { margin-left: auto; }
.mp-nav ul { display: flex; align-items: center; gap: 26px; padding: 0; margin: 0; list-style: none; }
.mp-nav li { position: relative; }
.mp-nav a { display: block; padding: 26px 0; color: var(--mp-ink); font-size: .91rem; font-weight: 760; text-decoration: none; }
.mp-nav a:hover, .mp-nav .current-menu-item > a { color: var(--mp-blue); }
.mp-nav .sub-menu { position: absolute; display: none; top: calc(100% - 8px); left: -18px; width: 260px; padding: 10px; border: 1px solid var(--mp-line); border-radius: 14px; background: #fff; box-shadow: var(--mp-shadow-sm); }
.mp-nav .sub-menu a { padding: 10px 12px; border-radius: 8px; }
.mp-nav .sub-menu a:hover { background: var(--mp-blue-light); }
.mp-nav li:hover > .sub-menu, .mp-nav li:focus-within > .sub-menu { display: block; }
.mp-menu-toggle { display: none; width: 46px; height: 42px; padding: 9px; border: 0; background: transparent; }
.mp-menu-toggle > span:not(.screen-reader-text) { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--mp-navy); transition: transform .2s ease, opacity .2s ease; }

/* Hero */
.mp-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #e8f0f9;
  background: #081624;
}
.mp-hero::before { position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, rgba(5,14,24,.98) 0%, rgba(5,18,32,.94) 46%, rgba(8,25,43,.76) 100%); content: ''; }
.mp-hero-media { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.mp-hero::after { position: absolute; z-index: -1; right: -120px; bottom: -200px; width: 520px; height: 520px; border: 1px solid rgba(255,255,255,.10); border-radius: 50%; content: ''; box-shadow: 0 0 0 80px rgba(255,255,255,.025), 0 0 0 160px rgba(255,255,255,.018); }
.mp-hero-grid { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(360px,.65fr); align-items: center; gap: 72px; min-height: 720px; padding-block: 76px; }
.mp-eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 20px; color: #b8d8f9; font-size: .78rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.mp-eyebrow span { width: 24px; height: 2px; background: #4aa6ff; }
.mp-hero h1 { max-width: 820px; margin-bottom: 22px; color: #fff; font-size: clamp(3rem, 6vw, 5.8rem); }
.mp-hero h1 em { color: #64b2ff; font-style: normal; }
.mp-hero-lead { max-width: 690px; color: #d2deeb; font-size: clamp(1.05rem, 1.7vw, 1.3rem); }
.mp-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 32px 0 40px; }
.mp-hero-trust { display: flex; gap: 32px; padding: 0; margin: 0; list-style: none; }
.mp-hero-trust li { padding-right: 28px; border-right: 1px solid rgba(255,255,255,.18); }
.mp-hero-trust li:last-child { border-right: 0; }
.mp-hero-trust strong, .mp-hero-trust span { display: block; }
.mp-hero-trust strong { color: #fff; font-size: .96rem; }
.mp-hero-trust span { color: #9fb0c2; font-size: .76rem; }

/* Form */
.mp-form-card { padding: 32px; color: var(--mp-ink); background: rgba(255,255,255,.98); border-radius: var(--mp-radius); box-shadow: 0 28px 80px rgba(0,0,0,.27); }
.mp-form-card h2 { margin-bottom: 8px; font-size: 1.75rem; }
.mp-form-card > p:not(.mp-kicker) { color: var(--mp-muted); font-size: .93rem; }
.mp-callback-form label { display: block; color: var(--mp-ink); font-size: .84rem; font-weight: 780; }
.mp-callback-form label span { color: #d53f3f; }
.mp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mp-callback-form input:not([type="checkbox"]), .mp-callback-form select { width: 100%; min-height: 46px; padding: 11px 12px; margin: 6px 0 13px; color: var(--mp-ink); border: 1px solid #cfd9e5; border-radius: 8px; background: #fff; }
.mp-callback-form textarea { width: 100%; min-height: 104px; padding: 11px 12px; margin: 6px 0 13px; color: var(--mp-ink); border: 1px solid #cfd9e5; border-radius: 8px; background: #fff; resize: vertical; }
.mp-callback-form input::placeholder { color: #8c98a7; }
.mp-callback-form textarea::placeholder { color: #8c98a7; }
.mp-callback-form input:focus, .mp-callback-form select:focus { border-color: var(--mp-blue); box-shadow: 0 0 0 3px rgba(11,107,203,.11); outline: 0; }
.mp-callback-form textarea:focus { border-color: var(--mp-blue); box-shadow: 0 0 0 3px rgba(11,107,203,.11); outline: 0; }
.mp-consent { display: flex !important; align-items: flex-start; gap: 9px; margin: 2px 0 16px; color: var(--mp-muted) !important; font-size: .76rem !important; font-weight: 600 !important; }
.mp-consent input { flex: 0 0 auto; margin-top: 4px; accent-color: var(--mp-blue); }
.mp-form-actions { display: grid; gap: 9px; }
.mp-form-help { margin: 12px 0 0 !important; color: var(--mp-muted) !important; font-size: .73rem !important; text-align: center; }
.mp-form-note { margin: 12px 0 0 !important; text-align: center; font-size: .78rem !important; }
.mp-form-note a { color: #0756a6 !important; font-weight: 900; text-decoration: underline; }
.mp-form-card, .mp-form-card h2, .mp-form-card label { color: var(--mp-ink) !important; }
.mp-form-card .mp-kicker { color: #0756a6 !important; }
.mp-honeypot { position: absolute !important; left: -9999px !important; }
.mp-alert { padding: 10px 12px; margin: 0 0 16px; border-radius: 8px; font-size: .83rem; }
.mp-alert-success { color: #075f40; background: #def7ec; }
.mp-alert-error { color: #8b2323; background: #ffe7e7; }

/* Homepage sections */
.mp-emergency-bar { color: #fff; background: var(--mp-blue); }
.mp-emergency-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.mp-emergency-grid > div { display: flex; align-items: center; gap: 18px; padding: 22px 28px; border-right: 1px solid rgba(255,255,255,.23); }
.mp-emergency-grid > div:last-child { border-right: 0; }
.mp-emergency-grid span { color: rgba(255,255,255,.58); font-size: 1.35rem; font-weight: 900; }
.mp-emergency-grid p, .mp-emergency-grid strong { display: block; margin: 0; }
.mp-emergency-grid p { color: #fff; font-size: .83rem; line-height: 1.35; }
.mp-emergency-grid strong { color: #fff; font-size: .95rem; }
.mp-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 48px; }
.mp-section-heading h2 { max-width: 740px; margin: 0; }
.mp-section-heading > p { max-width: 440px; margin: 0 0 7px; color: var(--mp-muted); }
.mp-section-heading.mp-centered { justify-content: center; text-align: center; }
.mp-service-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 18px; }
.mp-service-card { display: flex; flex-direction: column; min-height: 390px; padding: 28px; border: 1px solid var(--mp-line); border-radius: var(--mp-radius); background: #fff; box-shadow: 0 1px 0 rgba(0,0,0,.02); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.mp-service-card:hover { transform: translateY(-5px); border-color: #a9cdef; box-shadow: var(--mp-shadow-sm); }
.mp-service-icon { display: grid; width: 50px; height: 50px; place-items: center; margin-bottom: 30px; color: var(--mp-blue); border-radius: 13px; background: var(--mp-blue-light); font-size: 1rem; font-weight: 900; }
.mp-service-card h3, .mp-service-card h2 { margin-bottom: 12px; font-size: 1.42rem; }
.mp-service-card > p:not(.mp-card-eyebrow) { color: var(--mp-muted); font-size: .91rem; }
.mp-service-card .mp-price { display: block; margin-top: auto; padding-top: 18px; color: var(--mp-navy); font-size: .88rem; }
.mp-service-card > a { display: flex; justify-content: space-between; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--mp-line); font-size: .86rem; font-weight: 800; text-decoration: none; }
.mp-split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; gap: 0; }
.mp-photo-panel { min-height: 610px; padding: 0; margin: 0; overflow: hidden; border-radius: var(--mp-radius) 0 0 var(--mp-radius); background: var(--mp-navy-2); }
.mp-photo-panel img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; object-position: center; }
.mp-content-panel { display: flex; flex-direction: column; justify-content: center; padding: 56px 64px; border-radius: 0 var(--mp-radius) var(--mp-radius) 0; background: var(--mp-navy-2); }
.mp-content-panel > p:not(.mp-kicker) { color: #afbdcb; }
.mp-check-list { padding: 0; margin: 24px 0 32px; list-style: none; }
.mp-check-list li { position: relative; padding: 0 0 18px 34px; margin-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.10); }
.mp-check-list li::before { position: absolute; top: 3px; left: 0; display: grid; width: 20px; height: 20px; place-items: center; color: #fff; background: var(--mp-blue); border-radius: 50%; content: '✓'; font-size: .68rem; font-weight: 900; }
.mp-check-list strong, .mp-check-list span { display: block; }
.mp-check-list strong { color: inherit; }
.mp-check-list span { color: #95a6b8; font-size: .84rem; }
.mp-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
.mp-steps > div { position: relative; padding-top: 16px; }
.mp-steps > div:not(:last-child)::after { position: absolute; top: 35px; right: -14px; width: calc(100% - 64px); height: 1px; transform: translateX(50%); background: var(--mp-line); content: ''; }
.mp-steps span { position: relative; z-index: 1; display: grid; width: 44px; height: 44px; place-items: center; margin-bottom: 22px; color: #fff; background: var(--mp-blue); border: 6px solid var(--mp-blue-light); border-radius: 50%; font-size: .8rem; font-weight: 900; }
.mp-steps h3 { margin-bottom: 8px; font-size: 1.05rem; }
.mp-steps p { color: var(--mp-muted); font-size: .87rem; }
.mp-reviews-section { background: #eef4fa; }
.mp-rating { display: block; color: var(--mp-ink); text-align: right; text-decoration: none; }
.mp-rating strong, .mp-rating span { display: block; }
.mp-rating strong { font-size: 1.9rem; }
.mp-rating span { color: var(--mp-muted); font-size: .8rem; }
.mp-review-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.mp-review-grid blockquote { position: relative; padding: 30px; margin: 0; border: 1px solid #d7e2ee; border-radius: var(--mp-radius); background: #fff; box-shadow: 0 10px 40px rgba(11,22,36,.05); }
.mp-review-grid blockquote::before { display: block; margin-bottom: 16px; color: var(--mp-warning); content: '★★★★★'; font-size: .78rem; letter-spacing: .12em; }
.mp-review-grid blockquote p { font-size: .96rem; }
.mp-review-grid blockquote footer { display: flex; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--mp-line); font-size: .78rem; }
.mp-review-grid blockquote span { color: var(--mp-muted); }
.mp-review-disclaimer { margin: 18px 0 0; color: var(--mp-muted); font-size: .73rem; text-align: center; }
.mp-area-section { overflow: hidden; }
.mp-area-grid { display: grid; grid-template-columns: 1.25fr .75fr; align-items: center; gap: 70px; }
.mp-area-grid > div > p:not(.mp-kicker) { color: var(--mp-muted); }
.mp-area-list { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.mp-area-list span { padding: 8px 12px; border: 1px solid var(--mp-line); border-radius: 999px; color: var(--mp-ink); background: #fff; font-size: .78rem; font-weight: 720; }
.mp-map-card { position: relative; display: grid; min-height: 360px; place-content: center; overflow: hidden; color: #fff; border-radius: var(--mp-radius); background: radial-gradient(circle at 25% 20%, #318ce7, transparent 38%), linear-gradient(135deg, #0756a6, #0b1624); text-align: center; box-shadow: var(--mp-shadow); }
.mp-map-card::before, .mp-map-card::after { position: absolute; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; content: ''; }
.mp-map-card::before { width: 330px; height: 330px; top: -100px; right: -120px; }
.mp-map-card::after { width: 220px; height: 220px; bottom: -80px; left: -70px; }
.mp-map-card span { position: relative; font-size: 6rem; font-weight: 950; line-height: 1; letter-spacing: -.08em; }
.mp-map-card strong { position: relative; font-size: 1.2rem; }
.mp-map-card p { position: relative; margin: 8px 0 0; color: #bbd4ec; font-size: .86rem; }
.mp-final-cta { padding: 70px 0; color: #fff; background: var(--mp-blue); }
.mp-final-cta h2 { margin-bottom: 10px; color: #fff; }
.mp-final-cta p:not(.mp-kicker) { margin: 0; color: #fff; }
.mp-final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.mp-final-cta .mp-text-link-light { color: #fff !important; }

/* Inner pages */
.mp-simple-hero { padding: 94px 0; color: #d6e1ed; background: linear-gradient(135deg, #0b1624, #122b47); }
.mp-simple-hero h1 { max-width: 860px; color: #fff; font-size: clamp(2.8rem, 5.5vw, 5rem); }
.mp-simple-hero p:not(.mp-kicker) { max-width: 700px; color: #c1cedb; font-size: 1.13rem; }
.mp-simple-hero .mp-button { margin-top: 12px; }
.mp-page-hero { padding: 72px 0; background: var(--mp-soft); }
.mp-page-hero-grid { display: grid; grid-template-columns: minmax(0,1.08fr) minmax(360px,.62fr); align-items: center; gap: 64px; }
.mp-page-hero h1 { font-size: clamp(2.8rem, 5.6vw, 5.2rem); }
.mp-page-hero .mp-hero-lead { color: var(--mp-muted); }
.mp-page-hero .mp-eyebrow { color: var(--mp-blue-dark); }
.mp-page-hero .mp-eyebrow span { background: var(--mp-blue); }
.mp-page-hero .mp-form-card { box-shadow: var(--mp-shadow); }
.mp-breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; color: var(--mp-muted); font-size: .76rem; }
.mp-breadcrumb a { color: var(--mp-muted); text-decoration: none; }
.mp-page-price { display: inline-flex; padding: 8px 12px; margin-top: 10px; color: #075e43; border-radius: 8px; background: #dcf5ea; font-size: .86rem; }
.mp-service-detail-grid, .mp-contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: start; gap: 72px; }
.mp-problem-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0; margin: 28px 0 0; list-style: none; }
.mp-problem-list li { position: relative; padding: 16px 16px 16px 44px; border: 1px solid var(--mp-line); border-radius: 10px; background: #fff; font-weight: 750; }
.mp-problem-list li::before { position: absolute; top: 17px; left: 16px; display: grid; width: 20px; height: 20px; place-items: center; color: #fff; background: var(--mp-blue); border-radius: 50%; content: '✓'; font-size: .66rem; }
.mp-info-card { padding: 34px; color: #dce6f0; border-radius: var(--mp-radius); background: var(--mp-navy); }
.mp-info-card strong { display: block; margin-bottom: 10px; color: #fff; font-size: 1.6rem; }
.mp-info-card a { color: #8bc8ff !important; font-size: 1.45rem; font-weight: 900; text-decoration: underline; }
.mp-info-card .mp-info-rating { margin: 20px 0 0; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.14); }
.mp-info-card .mp-info-rating a { color: #fff !important; font-size: .86rem; }
.mp-service-copy { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.mp-service-copy p { color: #394555; }
.mp-service-image { margin: 28px 0 0; overflow: hidden; border-radius: var(--mp-radius-sm); box-shadow: var(--mp-shadow-sm); }
.mp-service-image img { width: 100%; aspect-ratio: 700 / 470; object-fit: cover; }
.mp-related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.mp-related-grid article { padding: 28px; border: 1px solid var(--mp-line); border-radius: var(--mp-radius); background: #fff; box-shadow: var(--mp-shadow-sm); }
.mp-related-grid article p:not(.mp-card-eyebrow) { color: var(--mp-muted); }
.mp-related-grid article a { font-weight: 800; text-decoration: none; }
.mp-faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; }
.mp-faq-layout > div:first-child > p:not(.mp-kicker) { color: var(--mp-muted); }
.mp-faq-list details { border-bottom: 1px solid var(--mp-line); }
.mp-faq-list summary { position: relative; padding: 22px 40px 22px 0; color: var(--mp-navy); cursor: pointer; font-weight: 820; list-style: none; }
.mp-faq-list summary::-webkit-details-marker { display: none; }
.mp-faq-list summary::after { position: absolute; top: 20px; right: 0; content: '+'; color: var(--mp-blue); font-size: 1.5rem; line-height: 1; }
.mp-faq-list details[open] summary::after { content: '−'; }
.mp-faq-list details p { padding-right: 40px; color: var(--mp-muted); }
.mp-about-split { align-items: center; gap: 70px; }
.mp-about-split .mp-photo-panel { border-radius: var(--mp-radius); }
.mp-about-split .mp-check-list { color: var(--mp-ink); }
.mp-about-split .mp-check-list li { border-bottom-color: var(--mp-line); }
.mp-about-split .mp-check-list span { color: var(--mp-muted); }
.mp-prose { max-width: 820px; }
.mp-prose h2, .mp-prose h3 { margin-top: 1.5em; }
.mp-prose p, .mp-prose li { color: #394555; }
.mp-prose a { font-weight: 750; }
.mp-inline-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.mp-price-notice { padding: 18px 20px; margin: 0 0 28px; color: #394555; border: 1px solid #bfd8ef; border-radius: 12px; background: #eef7ff; }
.mp-table-wrap { overflow-x: auto; border: 1px solid var(--mp-line); border-radius: var(--mp-radius); background: #fff; box-shadow: var(--mp-shadow-sm); }
.mp-price-table { width: 100%; min-width: 680px; border-collapse: collapse; }
.mp-price-table th, .mp-price-table td { padding: 18px 20px; border-bottom: 1px solid var(--mp-line); text-align: left; vertical-align: top; }
.mp-price-table th { color: #fff; background: var(--mp-navy); font-size: .86rem; letter-spacing: .04em; text-transform: uppercase; }
.mp-price-table tr:last-child td { border-bottom: 0; }
.mp-price-table td:nth-child(2) { color: var(--mp-navy); font-weight: 850; white-space: nowrap; }
.mp-price-table a { font-weight: 800; text-decoration: none; }
.mp-zone-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.mp-zone-card { padding: 24px; border: 1px solid var(--mp-line); border-radius: var(--mp-radius-sm); background: #fff; text-align: center; }
.mp-zone-card h2, .mp-zone-card h3 { margin-bottom: 8px; font-size: 1.25rem; }
.mp-zone-card p { margin: 0; color: var(--mp-muted); font-size: .86rem; }
.mp-large-phone { font-size: 1.55rem; font-weight: 900; }
.mp-post-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.mp-post-card { padding: 28px; border: 1px solid var(--mp-line); border-radius: var(--mp-radius); }
.mp-post-card > p { color: var(--mp-muted); font-size: .76rem; }
.mp-post-card h2 { font-size: 1.35rem; }
.mp-post-card h2 a { color: var(--mp-navy); text-decoration: none; }

/* Footer */
.mp-footer { padding: 76px 0 24px; color: #aab9c9; background: #07111d; }
.mp-footer h2, .mp-footer h3 { color: #fff; }
.mp-footer h2 { font-size: 1.45rem; }
.mp-footer h3 { font-size: .9rem; letter-spacing: .08em; text-transform: uppercase; }
.mp-footer-grid { display: grid; grid-template-columns: 1.2fr .8fr 1fr; gap: 70px; }
.mp-footer ul { padding: 0; margin: 0; list-style: none; }
.mp-footer li { margin-bottom: 7px; }
.mp-footer a { color: #d6e4f2; text-decoration: none; }
.mp-footer a:hover { color: #fff; }
.mp-footer-phone { display: inline-block; margin-top: 6px; color: #70b8ff !important; font-size: 1.35rem; font-weight: 900; }
.mp-footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 24px; margin-top: 58px; border-top: 1px solid rgba(255,255,255,.10); font-size: .74rem; }
.mp-footer-bottom p { margin: 0; }
.mp-mobile-call { display: none; }

@media (max-width: 1080px) {
  .mp-header-call { display: none; }
  .mp-nav ul { gap: 19px; }
  .mp-hero-grid, .mp-page-hero-grid { grid-template-columns: 1fr 390px; gap: 40px; }
  .mp-service-grid { grid-template-columns: 1fr 1fr; }
  .mp-service-card { min-height: 340px; }
}

@media (max-width: 860px) {
  .admin-bar .mp-header { top: 46px; }
  .mp-topbar-inner span { display: none; }
  .mp-topbar-inner { justify-content: center; }
  .mp-header-inner { min-height: 68px; }
  .mp-menu-toggle { display: block; margin-left: auto; }
  .mp-menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .mp-menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .mp-menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mp-nav { position: fixed; inset: 68px 0 auto; display: none; max-height: calc(100vh - 68px); overflow-y: auto; padding: 16px 20px 28px; background: #fff; box-shadow: 0 20px 30px rgba(11,22,36,.15); }
  .admin-bar .mp-nav { top: 114px; }
  .mp-nav.is-open { display: block; }
  .mp-nav ul { display: block; }
  .mp-nav a { padding: 13px 4px; border-bottom: 1px solid var(--mp-line); }
  .mp-nav .sub-menu { position: static; display: block; width: auto; padding: 0 0 0 18px; border: 0; border-radius: 0; box-shadow: none; }
  .mp-nav .sub-menu a { padding: 10px 4px; font-size: .84rem; }
  .mp-hero-grid, .mp-page-hero-grid { grid-template-columns: 1fr; }
  .mp-hero-grid { min-height: auto; padding-block: 66px; }
  .mp-hero-copy { max-width: 700px; }
  .mp-hero .mp-form-card { max-width: 620px; }
  .mp-emergency-grid { grid-template-columns: 1fr; }
  .mp-emergency-grid > div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .mp-emergency-grid > div:last-child { border-bottom: 0; }
  .mp-section { padding: 76px 0; }
  .mp-section-heading { display: block; }
  .mp-section-heading > p { margin-top: 18px; }
  .mp-split, .mp-area-grid, .mp-service-detail-grid, .mp-contact-grid, .mp-faq-layout, .mp-service-copy { grid-template-columns: 1fr; }
  .mp-photo-panel { min-height: 440px; border-radius: var(--mp-radius) var(--mp-radius) 0 0; }
  .mp-content-panel { padding: 44px; border-radius: 0 0 var(--mp-radius) var(--mp-radius); }
  .mp-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .mp-steps > div::after { display: none; }
  .mp-review-grid { grid-template-columns: 1fr 1fr; }
  .mp-related-grid { grid-template-columns: 1fr 1fr; }
  .mp-zone-grid { grid-template-columns: 1fr 1fr; }
  .mp-area-grid, .mp-faq-layout { gap: 44px; }
  .mp-final-cta-inner { align-items: flex-start; }
  .mp-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  body { padding-bottom: 66px; font-size: 16px; }
  .mp-container { width: min(calc(100% - 28px), var(--mp-container)); }
  .mp-topbar { font-size: .76rem; }
  .mp-header-inner { min-height: 64px; }
  .mp-brand-mark { width: 40px; height: 40px; border-radius: 10px; }
  .mp-brand strong { font-size: .91rem; }
  .mp-brand small { font-size: .62rem; }
  .mp-brand .custom-logo { max-width: 190px; max-height: 42px; }
  .mp-nav { top: 64px; text-align: center; }
  .admin-bar .mp-nav { top: 110px; }
  .mp-section { padding: 62px 0; }
  .mp-hero-grid { gap: 38px; padding-block: 54px; }
  .mp-hero h1 { font-size: clamp(2.7rem, 14vw, 4.2rem); }
  .mp-hero-lead { font-size: 1rem; }
  .mp-hero-actions { display: grid; grid-template-columns: 1fr; }
  .mp-hero-actions .mp-button { width: 100%; }
  .mp-hero-trust { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  .mp-hero-trust li { padding-right: 12px; }
  .mp-hero-trust li:nth-child(2) { border-right: 0; }
  .mp-hero-trust li:last-child { grid-column: 1 / -1; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.17); }
  .mp-hero-copy,
  .mp-page-hero-grid > div:first-child,
  .mp-simple-hero .mp-container,
  .mp-section-heading,
  .mp-service-card,
  .mp-service-detail-grid > div,
  .mp-service-copy > div,
  .mp-faq-layout > div,
  .mp-content-panel,
  .mp-area-grid > div,
  .mp-contact-grid > div,
  .mp-related-grid article,
  .mp-footer-grid > div,
  .mp-footer-bottom { text-align: center; }
  .mp-eyebrow, .mp-hero-actions, .mp-area-list { justify-content: center; }
  .mp-form-card { padding: 22px; border-radius: 14px; text-align: center; }
  .mp-callback-form label { text-align: center; }
  .mp-callback-form input:not([type="checkbox"]), .mp-callback-form select, .mp-callback-form textarea { text-align: center; }
  .mp-consent { justify-content: center; text-align: center !important; }
  .mp-form-row { grid-template-columns: 1fr; gap: 0; }
  .mp-service-grid, .mp-review-grid, .mp-problem-list, .mp-post-grid, .mp-related-grid { grid-template-columns: 1fr; }
  .mp-zone-grid { grid-template-columns: 1fr; }
  .mp-service-card { min-height: 0; padding: 24px; }
  .mp-service-icon { margin: 0 auto 22px; }
  .mp-service-card > a { justify-content: center; gap: 10px; }
  .mp-problem-list li { padding: 48px 14px 15px; text-align: center; }
  .mp-problem-list li::before { top: 15px; left: 50%; transform: translateX(-50%); }
  .mp-content-panel { padding: 32px 24px; }
  .mp-photo-panel { min-height: 340px; }
  .mp-steps { grid-template-columns: 1fr; }
  .mp-steps > div { display: block; padding: 0; text-align: center; }
  .mp-steps span { margin: 0 auto 16px; }
  .mp-steps p { grid-column: auto; }
  .mp-rating { margin-top: 22px; text-align: center; }
  .mp-review-grid blockquote, .mp-emergency-grid > div { text-align: center; }
  .mp-emergency-grid > div { flex-direction: column; gap: 6px; }
  .mp-review-grid blockquote footer { justify-content: center; gap: 18px; }
  .mp-faq-list summary, .mp-faq-list details p { padding-right: 34px; padding-left: 34px; text-align: center; }
  .mp-map-card { min-height: 290px; }
  .mp-final-cta-inner { display: block; }
  .mp-final-cta-inner > div:last-child { margin-top: 28px; }
  .mp-final-cta .mp-button { width: 100%; }
  .mp-inline-links { justify-content: center; }
  .mp-page-hero { padding: 54px 0; }
  .mp-simple-hero { padding: 66px 0; }
  .mp-breadcrumb { margin-bottom: 22px; }
  .mp-info-card { padding: 26px; text-align: center; }
  .mp-info-card a, .mp-footer-phone { overflow-wrap: anywhere; font-size: 1.2rem; }
  .mp-about-split { gap: 34px; }
  .mp-footer { padding-top: 58px; }
  .mp-footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .mp-footer-bottom { display: block; margin-top: 40px; }
  .mp-footer-bottom p + p { margin-top: 8px; }
  .mp-mobile-call { position: fixed; z-index: 200; right: 0; bottom: 0; left: 0; display: flex; align-items: center; justify-content: center; gap: 12px; min-height: 66px; padding: 8px 18px; color: #fff !important; background: #0756a6; box-shadow: 0 -8px 30px rgba(11,22,36,.18); text-align: center; text-decoration: none; }
  .mp-mobile-call:hover { color: #fff; background: var(--mp-blue-dark); }
  .mp-mobile-call span { font-size: .76rem; }
  .mp-mobile-call strong { font-size: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
