:root {
  --navy: #082f49;
  --navy-deep: #05263d;
  --blue: #0f4c81;
  --blue-light: #eaf3f8;
  --orange: #f97316;
  --orange-dark: #e85d04;
  --ink: #102231;
  --muted: #5d6b76;
  --line: #dbe4ea;
  --white: #ffffff;
  --surface: #f5f8fa;
  --shadow: 0 20px 60px rgba(8, 47, 73, .12);
  --container: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img { display: block; max-width: 100%; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(8, 47, 73, .1);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -.5px;
  white-space: nowrap;
}

.brand-copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--blue);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.25px;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  color: var(--orange);
  place-items: center;
}

.brand-mark svg { width: 100%; height: 100%; stroke-width: 2; }

.main-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 34px;
}

.main-nav a {
  position: relative;
  padding: 28px 0;
  color: #263947;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transition: transform .25s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after { transform: scaleX(1); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid rgba(249, 115, 22, .3); outline-offset: 3px; }

.btn-call {
  gap: 10px;
  color: var(--white);
  background: var(--navy);
  font-size: 14px;
}

.btn-call:hover { background: var(--blue); box-shadow: 0 10px 25px rgba(15, 76, 129, .2); }
.btn-call svg, .btn-primary svg { width: 19px; height: 19px; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
  transition: .25s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(15, 76, 129, .045) 1px, transparent 1px) 0 0 / 90px 90px,
    linear-gradient(rgba(15, 76, 129, .045) 1px, transparent 1px) 0 0 / 90px 90px,
    var(--white);
}

.hero::before {
  position: absolute;
  top: -300px;
  left: -380px;
  width: 800px;
  height: 800px;
  border: 1px solid rgba(15, 76, 129, .08);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  min-height: 650px;
  align-items: stretch;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 72px 56px 72px 0;
}

.authorized-label {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-bottom: 20px;
  padding: 9px 13px;
  border: 1px solid rgba(15, 76, 129, .24);
  border-radius: 4px;
  color: var(--blue);
  background: rgba(255, 255, 255, .8);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.15px;
  text-transform: uppercase;
  gap: 8px;
}

.authorized-label svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
  stroke-width: 2.2;
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(44px, 4.35vw, 68px);
  line-height: 1.03;
  letter-spacing: -3.3px;
}

.hero h1 span { color: var(--blue); }

.hero-lead {
  max-width: 590px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.independent-notice {
  max-width: 590px;
  margin: 12px 0 0;
  color: #435563;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  align-items: center;
  margin-top: 32px;
  gap: 26px;
}

.btn-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 14px 28px rgba(249, 115, 22, .22);
}

.btn-primary:hover { background: var(--orange-dark); box-shadow: 0 18px 36px rgba(232, 93, 4, .3); }

.btn-xl {
  min-height: 60px;
  padding: 0 30px;
  gap: 11px;
  font-size: 17px;
}

.text-link {
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.text-link span { color: var(--orange); }

.hero-promises {
  display: flex;
  margin-top: 39px;
  gap: 28px;
}

.hero-promises > div {
  display: flex;
  align-items: center;
  min-width: 156px;
  gap: 12px;
}

.hero-promises > div + div {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.promise-icon {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  place-items: center;
}

.promise-icon svg { width: 25px; height: 25px; }
.hero-promises p { margin: 0; }
.hero-promises strong, .hero-promises small { display: block; }
.hero-promises strong { color: var(--navy); font-size: 17px; }
.hero-promises small { margin-top: 2px; color: var(--muted); font-size: 12px; }

.hero-media {
  position: relative;
  min-width: 0;
}

.hero-media::before {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  width: 90px;
  background: linear-gradient(90deg, #fff, transparent);
  content: "";
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
  object-position: 54% center;
}

.hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media-note {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  max-width: 310px;
  padding: 15px 17px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 7px;
  background: rgba(255,255,255,.93);
  box-shadow: 0 12px 35px rgba(8,47,73,.18);
  backdrop-filter: blur(10px);
  gap: 11px;
}

.status-dot {
  flex: 0 0 11px;
  width: 11px;
  height: 11px;
  border: 3px solid #b7f3d0;
  border-radius: 50%;
  background: #17a65b;
  box-sizing: content-box;
}

.hero-media-note strong, .hero-media-note small { display: block; }
.hero-media-note strong { color: var(--navy); font-size: 13px; }
.hero-media-note small { margin-top: 3px; color: var(--muted); font-size: 11px; }

.trust-strip {
  position: relative;
  z-index: 3;
  border-block: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 8px 30px rgba(8, 47, 73, .05);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex;
  align-items: center;
  min-height: 116px;
  padding: 25px 26px;
  gap: 15px;
}

.trust-item + .trust-item { border-left: 1px solid var(--line); }

.line-icon {
  display: grid;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  color: var(--blue);
  place-items: center;
}

.line-icon svg { width: 38px; height: 38px; stroke-width: 1.6; }
.trust-item strong, .trust-item small { display: block; }
.trust-item strong { color: var(--navy); font-size: 14px; line-height: 1.35; }
.trust-item small { margin-top: 5px; color: var(--muted); font-size: 11px; line-height: 1.4; }

.section { padding: 110px 0; }

.services,
.price-section,
.why,
.reviews,
.contact-section,
.service-content,
.related-services,
.service-cta {
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  align-items: end;
  margin-bottom: 50px;
  gap: 60px;
}

.section-number {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.section-number.light { color: #ffb47d; }

.section h2, .price-section h2, .contact-section h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -2.5px;
}

.section-heading > p {
  max-width: 420px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.services { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 285px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.service-card:hover {
  z-index: 2;
  background: var(--navy);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-no {
  position: absolute;
  top: 22px;
  right: 24px;
  color: #9aabb6;
  font-size: 11px;
  font-weight: 800;
}

.service-icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 25px;
  color: var(--blue);
  place-items: center;
}

.service-icon svg { width: 56px; height: 56px; stroke-width: 1.5; }
.service-card h3 { margin: 0; color: var(--navy); font-size: 19px; }
.service-card p { min-height: 47px; margin: 10px 0 22px; color: var(--muted); font-size: 13px; line-height: 1.7; }
.service-card a { color: var(--orange); font-size: 13px; font-weight: 800; }
.service-card a span { margin-left: 4px; }
.service-card:hover h3, .service-card:hover p, .service-card:hover .service-no { color: var(--white); }
.service-card:hover .service-icon { color: #72b9e5; }

.price-section {
  padding: 0 0 110px;
  background: var(--white);
}

.price-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  overflow: hidden;
  min-height: 430px;
  padding: 72px;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 90%, rgba(31, 117, 169, .35), transparent 38%),
    var(--navy);
}

.price-panel::after {
  position: absolute;
  top: -160px;
  right: -70px;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(255,255,255,.025), 0 0 0 110px rgba(255,255,255,.018);
  content: "";
}

.price-copy { position: relative; z-index: 2; }
.price-section h2 { color: var(--white); }
.price-section h2 span { color: #8dd1f5; }
.price-copy > p:not(.section-number) { max-width: 530px; margin: 20px 0 28px; color: #c9d9e3; line-height: 1.7; }

.btn-white {
  color: var(--navy);
  background: var(--white);
  gap: 14px;
}

.payment-card {
  position: relative;
  z-index: 2;
  align-self: center;
  display: flex;
  align-items: center;
  margin-left: 35px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(8px);
  gap: 20px;
}

.payment-icon {
  display: grid;
  flex: 0 0 62px;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 50%;
  color: #8dd1f5;
  place-items: center;
}

.payment-icon svg { width: 31px; height: 31px; }
.payment-card h3 { margin: 0; font-size: 21px; line-height: 1.35; }
.payment-card p { margin: 7px 0 0; color: #c9d9e3; font-size: 13px; line-height: 1.6; }
.payment-check { margin-left: auto; color: #84e0ad; font-size: 23px; }

.why { background: var(--surface); }

.why-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 100px;
}

.why-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.why-intro > p:not(.section-number) {
  max-width: 460px;
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.local-note {
  display: flex;
  align-items: center;
  margin-top: 35px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  gap: 14px;
}

.local-note svg { flex: 0 0 36px; width: 36px; height: 36px; color: var(--orange); }
.local-note strong, .local-note small { display: block; }
.local-note strong { color: var(--navy); font-size: 14px; }
.local-note small { margin-top: 4px; color: var(--muted); font-size: 12px; }

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 70px 1fr;
  padding: 30px 8px;
  border-bottom: 1px solid var(--line);
  gap: 22px;
}

.process-list li > span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
}

.process-list h3 { margin: 0; color: var(--navy); font-size: 20px; }
.process-list p { margin: 7px 0 0; color: var(--muted); font-size: 13px; line-height: 1.7; }

.reviews { overflow: hidden; }

.reviews-heading { align-items: center; }

.review-score {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 18px;
}

.review-score > strong {
  color: var(--navy);
  font-size: 50px;
  line-height: 1;
  letter-spacing: -2px;
}

.review-score > span { color: var(--orange); font-size: 18px; letter-spacing: 3px; }
.review-score small { display: block; margin-top: 6px; color: var(--muted); font-size: 10px; letter-spacing: 0; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-card {
  margin: 0;
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--white);
}

.review-card.featured {
  color: var(--white);
  border-color: var(--navy);
  background: var(--navy);
  transform: translateY(-12px);
  box-shadow: var(--shadow);
}

.stars { color: var(--orange); font-size: 14px; letter-spacing: 4px; }

.review-card blockquote {
  min-height: 110px;
  margin: 22px 0 28px;
  color: #344956;
  font-size: 15px;
  line-height: 1.8;
}

.review-card.featured blockquote { color: #e3edf3; }

.review-card figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card figcaption > span {
  display: grid;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--blue);
  background: var(--blue-light);
  font-size: 11px;
  font-weight: 800;
  place-items: center;
}

.review-card figcaption strong, .review-card figcaption small { display: block; }
.review-card figcaption strong { color: var(--navy); font-size: 13px; }
.review-card figcaption small { margin-top: 3px; color: var(--muted); font-size: 10px; }
.review-card.featured figcaption strong { color: var(--white); }
.review-card.featured figcaption small { color: #b9cbd6; }

.contact-section {
  padding: 100px 0;
  background: var(--navy);
}

.contact-panel {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 90px;
}

.contact-copy { padding: 28px 0; }
.contact-section h2 { color: var(--white); }
.contact-copy > p:not(.section-number) { margin: 22px 0 28px; color: #c1d2dc; line-height: 1.7; }

.contact-phone {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  gap: 15px;
}

.contact-phone svg { width: 38px; height: 38px; color: var(--orange); }
.contact-phone small { display: block; margin-bottom: 2px; color: #8db1c7; font-size: 11px; font-weight: 700; }
.contact-phone span { font-size: 27px; font-weight: 800; letter-spacing: -.8px; }

.contact-bullets {
  display: flex;
  margin: 28px 0 0;
  padding: 0;
  color: #c1d2dc;
  font-size: 12px;
  list-style: none;
  gap: 25px;
}

.contact-bullets li::before { margin-right: 7px; color: #62ce91; content: "✓"; }

.service-form {
  position: relative;
  padding: 38px;
  background: var(--white);
  box-shadow: 0 28px 70px rgba(0,0,0,.18);
}

.form-head h3 { margin: 0; color: var(--navy); font-size: 25px; letter-spacing: -.7px; }
.form-head p { margin: 7px 0 25px; color: var(--muted); font-size: 13px; }

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-grid label span {
  display: block;
  margin-bottom: 7px;
  color: #435563;
  font-size: 11px;
  font-weight: 800;
}

.form-grid .full { grid-column: 1 / -1; }

.form-grid input, .form-grid select, .form-grid textarea {
  width: 100%;
  border: 1px solid #d5e0e7;
  border-radius: 4px;
  color: var(--ink);
  background: #fbfcfd;
}

.form-grid input, .form-grid select { height: 48px; padding: 0 13px; }
.form-grid textarea { min-height: 82px; padding: 13px; resize: vertical; }
.form-grid input::placeholder, .form-grid textarea::placeholder { color: #9aa8b1; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--blue); background: var(--white); }

.urgency-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  padding: 0;
  border: 0;
  gap: 12px;
}

.urgency-options legend {
  margin-bottom: 8px;
  color: #435563;
  font-size: 11px;
  font-weight: 800;
}

.urgency-options label {
  position: relative;
  cursor: pointer;
}

.urgency-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.urgency-options label span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  margin: 0;
  border: 1px solid #d5e0e7;
  border-radius: 4px;
  color: var(--muted);
  background: #fbfcfd;
  font-size: 12px;
  transition: .2s ease;
}

.urgency-options input:checked + span {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-light);
  box-shadow: inset 0 0 0 1px var(--blue);
}

.form-submit {
  width: 100%;
  min-height: 52px;
  margin-top: 18px;
  gap: 12px;
}

.form-note { margin: 10px 0 0; color: #84939c; font-size: 9px; text-align: center; }

.calculator-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  margin-top: 16px;
  padding: 17px 20px;
  border-left: 4px solid var(--orange);
  color: var(--white);
  background: var(--navy);
  gap: 20px;
}

.calculator-result small,
.calculator-result strong { display: block; }
.calculator-result small { margin-bottom: 4px; color: #9eb9c9; font-size: 9px; text-transform: uppercase; letter-spacing: 1px; }
.calculator-result strong { font-size: 20px; line-height: 1.25; }
.calculator-result a { flex: 0 0 auto; color: #ffb47d; font-size: 11px; font-weight: 800; }

.site-footer {
  color: #c4d2db;
  background: var(--navy-deep);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  padding-block: 58px;
  gap: 55px;
}

.footer-brand { color: var(--white); }
.footer-brand .brand-copy small { color: #8dd1f5; }
.footer-main > div:first-child > p { max-width: 330px; margin: 18px 0 0; font-size: 12px; line-height: 1.7; }
.footer-links, .footer-contact { display: flex; align-items: flex-start; flex-direction: column; gap: 10px; }
.footer-links strong, .footer-contact strong { margin-bottom: 6px; color: var(--white); font-size: 13px; }
.footer-links a, .footer-contact a, .footer-contact span { font-size: 11px; }
.footer-links a:hover, .footer-contact a:hover { color: var(--white); }
.footer-contact a { color: #ffab70; font-size: 15px; font-weight: 800; }

.footer-legal {
  padding: 18px 0 85px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 10px;
  text-align: center;
}

.footer-legal p { margin: 4px 0; }
.footer-legal strong { color: var(--white); }
.footer-legal a { color: #ffb47d; }

.sticky-call {
  position: fixed;
  z-index: 200;
  right: 22px;
  bottom: 20px;
  display: flex;
  align-items: center;
  min-width: 210px;
  padding: 13px 20px;
  border-radius: 7px;
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 14px 35px rgba(232, 93, 4, .38);
  gap: 12px;
}

.sticky-call svg { width: 26px; height: 26px; }
.sticky-call strong, .sticky-call small { display: block; }
.sticky-call strong { font-size: 15px; }
.sticky-call small { margin-top: 1px; font-size: 10px; opacity: .9; }

@media (max-width: 1040px) {
  .header-call { display: none; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-copy { padding-right: 28px; }
  .hero h1 { font-size: 48px; }
  .trust-item { padding-inline: 15px; }
  .trust-item small { display: none; }
  .price-panel { padding: 55px; }
  .why-grid { gap: 55px; }
  .contact-panel { gap: 50px; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .header-inner { min-height: 68px; }
  .menu-toggle { display: block; margin-left: auto; }
  .main-nav {
    position: fixed;
    top: 68px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    padding: 35px 24px;
    background: var(--white);
    gap: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
    overscroll-behavior: contain;
    transition: opacity .25s ease, visibility 0s linear .25s;
  }
  .main-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }
  .main-nav a { padding: 20px 0; border-bottom: 1px solid var(--line); font-size: 18px; }
  .main-nav a::after { display: none; }
  .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero-grid { display: flex; flex-direction: column; min-height: auto; }
  .hero-copy { padding: 66px 0 45px; }
  .hero h1 { font-size: clamp(41px, 10vw, 58px); letter-spacing: -2.6px; }
  .hero-media { margin-inline: -16px; }
  .hero-media::before { top: 0; right: 0; bottom: auto; width: auto; height: 70px; background: linear-gradient(180deg, #fff, transparent); }
  .hero-media img { height: 520px; min-height: 0; object-position: 56% center; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { min-height: 98px; }
  .trust-item:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .trust-item:nth-child(4) { border-top: 1px solid var(--line); }
  .trust-item small { display: block; }

  .section { padding: 82px 0; }
  .section-heading { grid-template-columns: 1fr; margin-bottom: 38px; gap: 20px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .price-section { padding-bottom: 82px; }
  .price-panel { grid-template-columns: 1fr; padding: 55px 42px; gap: 42px; }
  .payment-card { margin-left: 0; }
  .why-grid { grid-template-columns: 1fr; gap: 50px; }
  .why-intro { position: static; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card.featured { transform: none; }
  .review-card blockquote { min-height: auto; }
  .contact-panel { grid-template-columns: 1fr; gap: 40px; }
  .footer-main { grid-template-columns: 1.6fr 1fr 1fr; }
  .footer-contact { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  body { padding-bottom: 72px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .header-inner,
  .hero-copy,
  .price-copy,
  .payment-card,
  .contact-copy,
  .service-form,
  .footer-main > * { min-width: 0; }
  .brand { font-size: 18px; }
  .brand-copy small { max-width: 145px; white-space: normal; }
  .brand-mark { width: 31px; height: 31px; }
  .hero-copy { padding: 52px 0 34px; }
  .hero h1 { font-size: clamp(34px, 10.5vw, 41px); line-height: 1.06; letter-spacing: -2.2px; overflow-wrap: anywhere; }
  .hero-lead { margin-top: 20px; font-size: 15px; line-height: 1.65; }
  .hero-actions { align-items: stretch; flex-direction: column; margin-top: 26px; gap: 18px; }
  .btn-xl { width: 100%; }
  .text-link { text-align: center; }
  .hero-promises { justify-content: space-between; margin-top: 30px; gap: 10px; }
  .hero-promises > div { min-width: 0; gap: 9px; }
  .hero-promises > div + div { padding-left: 16px; }
  .promise-icon { flex-basis: 38px; width: 38px; height: 38px; }
  .hero-promises strong { font-size: 15px; }
  .hero-media { margin-inline: -14px; }
  .hero-media img { height: 390px; object-position: 53% center; }
  .hero-media-note { right: 14px; bottom: 14px; left: 14px; max-width: none; }

  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { min-height: 86px; padding: 18px 10px; }
  .trust-item + .trust-item { border-top: 1px solid var(--line); border-left: 0; }
  .trust-item small { display: block; }
  .line-icon { flex-basis: 42px; width: 42px; height: 42px; }

  .section { padding: 70px 0; }
  .section h2, .price-section h2, .contact-section h2 {
    font-size: clamp(30px, 9vw, 36px);
    letter-spacing: -1.8px;
    overflow-wrap: anywhere;
  }
  .section-heading > p { font-size: 14px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 250px; padding: 29px; }
  .service-card p { min-height: auto; }
  .price-section { padding-bottom: 70px; }
  .price-panel { width: 100%; padding: 50px 24px; }
  .payment-card { align-items: flex-start; padding: 22px; }
  .payment-card > div { min-width: 0; }
  .payment-card h3 { font-size: 18px; overflow-wrap: anywhere; }
  .payment-icon { flex-basis: 48px; width: 48px; height: 48px; }
  .payment-check { display: none; }
  .process-list li { grid-template-columns: 48px 1fr; padding: 25px 0; gap: 8px; }
  .review-score { justify-self: start; }
  .review-card { padding: 27px; }
  .contact-section { padding: 70px 0; }
  .contact-phone span { font-size: 23px; }
  .contact-phone { max-width: 100%; }
  .contact-phone span { overflow-wrap: anywhere; }
  .contact-bullets { align-items: flex-start; flex-direction: column; gap: 10px; }
  .service-form { margin-inline: -4px; padding: 26px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: auto; }
  .urgency-options { grid-template-columns: 1fr; }
  .calculator-result { align-items: flex-start; flex-direction: column; }
  .footer-main { grid-template-columns: 1fr 1fr; padding-block: 48px; gap: 35px 25px; }
  .footer-main > div:first-child { grid-column: 1 / -1; }
  .footer-contact { grid-column: 1 / -1; }
  .footer-legal { padding-bottom: 22px; }

  .sticky-call {
    right: 0;
    bottom: 0;
    left: 0;
    justify-content: center;
    min-width: 0;
    min-height: 64px;
    border-radius: 0;
  }
}

@media (max-width: 360px) {
  .container { width: calc(100% - 24px); }
  .brand { font-size: 16px; gap: 7px; }
  .brand-copy small { display: none; }
  .authorized-label { font-size: 9px; letter-spacing: .7px; }
  .hero-promises { flex-direction: column; align-items: flex-start; }
  .hero-promises > div + div { padding-top: 12px; padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .price-panel { padding-inline: 18px; }
  .payment-card { gap: 12px; }
  .service-form { padding-inline: 16px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-main > div:first-child,
  .footer-contact { grid-column: auto; }
}

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