:root {
  --navy: #062b57;
  --navy-2: #021f43;
  --cyan: #13b7c6;
  --cyan-dark: #0899aa;
  --aqua-soft: #e8fbfd;
  --yellow: #ffb52e;
  --text: #11315d;
  --muted: #61728b;
  --line: #d9e5ee;
  --surface: #ffffff;
  --surface-soft: #f6fbfe;
  --shadow: 0 18px 42px rgba(6, 43, 87, 0.14);
  --radius: 8px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

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

.skip-link {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 20;
  padding: 10px 14px;
  color: #fff;
  background: var(--navy);
  border-radius: var(--radius);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(217, 229, 238, 0.8);
  backdrop-filter: blur(16px);
}

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

.brand img {
  width: 112px;
  max-height: 44px;
  object-fit: contain;
}

.main-nav {
  position: fixed;
  inset: 66px 0 auto;
  display: grid;
  gap: 4px;
  padding: 18px 16px 24px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: translateY(-125%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.main-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.main-nav a {
  padding: 12px 8px;
  color: var(--navy);
  font-weight: 500;
  border-radius: var(--radius);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--cyan-dark);
  background: var(--aqua-soft);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.phone-pill {
  display: none;
}

.header-quote {
  display: inline-flex;
  flex-shrink: 0;
  min-height: 40px;
  padding: 9px 16px;
  font-size: 0.88rem;
  line-height: 1.08;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(8, 153, 170, 0.16);
}

.header-quote-label--desktop {
  display: none;
}

.header-quote-label--mobile {
  display: inline;
}

.menu-toggle {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(217, 229, 238, 0.95);
  border-radius: var(--radius);
  box-shadow: 0 8px 18px rgba(6, 43, 87, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  background: var(--navy);
  border-radius: 99px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(6, 43, 87, 0.16);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
}

.btn-dark {
  color: #fff;
  background: var(--navy);
}

.btn-outline {
  color: var(--navy);
  background: #fff;
  border-color: var(--navy);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  color: #fff;
  background: var(--navy);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section {
  padding: 58px 0;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--cyan-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading {
  width: min(100%, 760px);
  margin: 0 auto 30px;
  text-align: center;
}

.section-heading h2,
.final-cta h2,
.zone-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.7rem, 2.2vw, 2.35rem);
  line-height: 1.12;
}

.section-heading p:not(.eyebrow),
.zone-copy p,
.final-cta p {
  margin: 12px 0 0;
  color: var(--muted);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 30px 0 82px;
  background: linear-gradient(180deg, #fff 0%, #f6fbfe 100%);
}

.hero::after {
  display: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 20px;
}

.hero-copy {
  max-width: 720px;
}

.hero-copy h1 {
  margin: 0;
  max-width: 700px;
  color: var(--navy);
  font-size: clamp(2.05rem, 8vw, 3.35rem);
  line-height: 1.08;
}

.hero-copy h1::first-line {
  color: var(--navy);
}

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

.desktop-break {
  display: none;
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 16px 0 0;
  color: var(--navy);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 700;
}

.hero-location::before {
  content: "";
  width: 13px;
  height: 13px;
  border: 3px solid var(--cyan-dark);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.hero-lead {
  max-width: 560px;
  margin: 15px 0 0;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.5;
  font-weight: 500;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 24px 0;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-badges span::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 14px;
  height: 14px;
  color: var(--cyan-dark);
  font-size: 0.58rem;
  line-height: 1;
  border: 2px solid var(--cyan);
  border-radius: 50%;
}

.hero-ctas {
  display: grid;
  gap: 12px;
  max-width: 430px;
}

.btn-phone {
  justify-content: center;
  min-width: 210px;
  padding-inline: 20px;
  line-height: 1.15;
}

.btn-phone strong {
  font-size: 1rem;
}

.hero-ctas .btn-outline {
  flex-direction: column;
  gap: 1px;
  min-width: 210px;
  line-height: 1.1;
}

.hero-ctas .btn-outline span {
  color: var(--cyan-dark);
  font-weight: 500;
}

.micro-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 0;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 600;
}

.micro-trust::before {
  content: "";
  width: 15px;
  height: 17px;
  background: var(--navy);
  clip-path: polygon(50% 0, 92% 18%, 82% 72%, 50% 100%, 18% 72%, 8% 18%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.24) 68%, rgba(255, 255, 255, 0.68) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.82) 34%, rgba(255, 255, 255, 0.28) 66%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

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

.quick-form {
  position: relative;
  z-index: 2;
  width: min(100%, 390px);
  justify-self: center;
  margin-top: 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(217, 229, 238, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.quick-form h2 {
  margin: 0;
  color: var(--navy);
  font-size: 1.22rem;
  line-height: 1.2;
}

.quick-form p {
  margin: 8px 0 16px;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.45;
}

.callback-form {
  display: grid;
  gap: 10px;
}

.field {
  position: relative;
}

.field-compact label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.field label {
  display: block;
  margin-bottom: 5px;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 800;
}

.field input,
.field select {
  width: 100%;
  min-height: 43px;
  padding: 11px 13px;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
  font-size: 0.9rem;
}

.field input:focus,
.field select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(19, 183, 198, 0.14);
}

.form-submit {
  width: 100%;
  min-height: 46px;
  margin-top: 2px;
  font-size: 0.9rem;
}

.form-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  text-align: center;
}

.form-note::before {
  content: "";
  width: 9px;
  height: 11px;
  background: var(--navy);
  clip-path: polygon(50% 0, 92% 18%, 82% 72%, 50% 100%, 18% 72%, 8% 18%);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--cyan-dark);
  font-weight: 800;
}

.form-status:empty {
  display: none;
}

.jotform-shell {
  width: min(100%, 420px);
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.jotform-shell iframe {
  display: block;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 539px;
  min-height: 539px;
  margin-top: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
}

.confirmation-main {
  background: #fff;
}

.confirmation-hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 74px);
  padding: 48px 0 58px;
  background: linear-gradient(180deg, #fff 0%, #f6fbfe 100%);
}

.confirmation-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.confirmation-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.68) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.86) 38%, rgba(255, 255, 255, 0.34) 74%, rgba(255, 255, 255, 0.08) 100%);
  pointer-events: none;
}

.confirmation-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.confirmation-layout {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 24px;
}

.confirmation-copy {
  max-width: 660px;
}

.confirmation-copy h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.1rem, 8vw, 3.45rem);
  line-height: 1.05;
}

.confirmation-lead {
  max-width: 580px;
  margin: 16px 0 0;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.52;
  font-weight: 500;
}

.confirmation-actions {
  display: grid;
  gap: 12px;
  max-width: 430px;
  margin-top: 26px;
}

.confirmation-reassurance {
  display: grid;
  gap: 12px;
}

.confirmation-reassurance article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 2px 14px;
  align-items: center;
  padding: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(217, 229, 238, 0.95);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(6, 43, 87, 0.08);
  backdrop-filter: blur(10px);
}

.confirmation-reassurance .trust-icon {
  grid-row: span 2;
}

.confirmation-reassurance h2 {
  margin: 0;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.2;
}

.confirmation-reassurance p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.trust-strip {
  position: relative;
  z-index: 4;
  margin-top: -42px;
  padding: 0 0 28px;
  background: linear-gradient(180deg, rgba(248, 252, 255, 0) 0, #fff 72%);
}

.trust-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.trust-grid article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 2px 14px;
  align-items: center;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(6, 43, 87, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.trust-grid article:hover {
  transform: translateY(-2px);
  border-color: rgba(19, 183, 198, 0.38);
  box-shadow: 0 16px 34px rgba(6, 43, 87, 0.11);
}

.trust-icon {
  grid-row: span 2;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--cyan-dark);
  border: 2px solid var(--cyan);
  border-radius: 50%;
  font-weight: 900;
}

.trust-grid h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1rem;
}

.trust-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.cards-grid,
.reviews-grid {
  display: grid;
  gap: 22px;
}

.intervention-card,
.review-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(6, 43, 87, 0.1);
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.intervention-card:hover,
.intervention-card:focus-within,
.review-card:hover,
.review-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(19, 183, 198, 0.45);
  box-shadow: 0 22px 42px rgba(6, 43, 87, 0.14);
}

.intervention-card img {
  width: 100%;
  aspect-ratio: 16 / 8.7;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.intervention-card:hover img,
.intervention-card:focus-within img {
  transform: scale(1.025);
}

.card-body {
  position: relative;
  padding: 38px 20px 22px;
  text-align: center;
}

.card-icon {
  position: absolute;
  top: -28px;
  left: 50%;
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: var(--yellow);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(6, 43, 87, 0.12);
  transform: translateX(-50%);
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.intervention-card:hover .card-icon,
.intervention-card:focus-within .card-icon {
  background: var(--aqua-soft);
  border-color: rgba(19, 183, 198, 0.55);
  transform: translateX(-50%) translateY(-2px);
}

.intervention-card h3,
.advantages-grid h3,
.process-grid h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.15rem;
}

.intervention-card p,
.advantages-grid p,
.process-grid p,
.review-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  padding: 8px 18px;
  color: var(--cyan-dark);
  border: 1px solid var(--cyan);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform 0.22s ease, color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.text-link:hover,
.text-link:focus-visible,
.intervention-card:hover .text-link {
  color: #fff;
  background: var(--cyan-dark);
  box-shadow: 0 10px 20px rgba(8, 153, 170, 0.2);
  transform: translateY(-1px);
}

.advantages {
  background: var(--surface-soft);
}

.advantages-grid {
  display: grid;
  gap: 16px;
}

.advantages-grid article {
  padding: 20px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.advantages-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(19, 183, 198, 0.38);
  box-shadow: 0 16px 30px rgba(6, 43, 87, 0.08);
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 12px;
  color: #fff;
  background: var(--cyan);
  border-radius: 50%;
  font-weight: 900;
  transition: transform 0.24s ease, background 0.24s ease;
}

.advantages-grid article:hover .feature-icon {
  background: var(--cyan-dark);
  transform: translateY(-2px);
}

.zone-section {
  background: #fff;
}

.zone-panel {
  display: grid;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  background: linear-gradient(120deg, #f4fbff, #e7f8fb);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: box-shadow 0.26s ease, border-color 0.26s ease;
}

.zone-panel:hover {
  border-color: rgba(19, 183, 198, 0.36);
  box-shadow: 0 18px 38px rgba(6, 43, 87, 0.1);
}

.zone-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 24px;
}

.zone-copy p {
  max-width: 520px;
}

.zone-map {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  background: #eaf9fb;
}

.zone-map::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 1;
  height: 48%;
  pointer-events: none;
  background: linear-gradient(180deg, #edf9fc 0%, rgba(237, 249, 252, 0.72) 42%, rgba(237, 249, 252, 0) 100%);
}

.zone-map img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process {
  padding-top: 26px;
}

.process-grid {
  display: grid;
  gap: 18px;
}

.process-grid article {
  position: relative;
  padding: 24px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.process-grid article:hover,
.process-grid article:focus-within {
  transform: translateY(-4px);
  border-color: rgba(19, 183, 198, 0.45);
  box-shadow: 0 20px 38px rgba(6, 43, 87, 0.12);
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  color: #fff;
  background: var(--cyan);
  border-radius: 50%;
  font-weight: 900;
  transition: transform 0.24s ease, background 0.24s ease;
}

.process-grid article:hover .step-number,
.process-grid article:focus-within .step-number {
  background: var(--cyan-dark);
  transform: translateY(-2px);
}

.reviews {
  background: var(--surface-soft);
}

.review-card {
  padding: 24px;
}

.stars {
  color: var(--yellow);
  font-size: 1.2rem;
  letter-spacing: 0;
}

.review-card strong {
  display: block;
  margin-top: 18px;
  color: var(--navy);
}

.review-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 920px;
  margin-inline: auto;
}

.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease;
}

.faq-list summary:hover,
.faq-list summary:focus-visible {
  color: var(--cyan-dark);
  background: var(--surface-soft);
}

.faq-list summary::after {
  content: "+";
  color: var(--cyan-dark);
  font-size: 1.25rem;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.final-cta {
  padding: 48px 0 0;
}

.final-panel {
  display: grid;
  gap: 24px;
  align-items: center;
  padding: 28px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(6, 43, 87, 0.96), rgba(2, 31, 67, 0.94)),
    radial-gradient(circle at right, rgba(19, 183, 198, 0.36), transparent 42%);
  border-radius: var(--radius);
}

.final-panel h2,
.final-panel p,
.final-panel .eyebrow {
  color: #fff;
}

.final-actions {
  display: grid;
  gap: 12px;
}

.final-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 900;
}

.site-footer {
  margin-top: -1px;
  padding: 48px 0 92px;
  color: rgba(255, 255, 255, 0.86);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
}

.footer-grid {
  display: grid;
  gap: 28px;
}

.footer-logo {
  width: 128px;
  max-height: 54px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.site-footer h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1rem;
}

.site-footer p {
  margin: 8px 0;
}

.site-footer a {
  display: block;
  margin: 8px 0;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: space-between;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.9rem;
}

.footer-bottom a {
  display: inline;
  margin: 0;
}

.sticky-mobile-cta {
  position: fixed;
  inset: auto 12px 12px;
  z-index: 12;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.sticky-mobile-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  color: #fff;
  background: var(--navy);
  border-radius: var(--radius);
  font-weight: 900;
}

.sticky-mobile-cta a:last-child {
  background: var(--cyan-dark);
}

:focus-visible {
  outline: 3px solid rgba(19, 183, 198, 0.55);
  outline-offset: 3px;
}

@media (min-width: 640px) {
  .hero-ctas,
  .confirmation-actions,
  .final-actions {
    display: flex;
    flex-wrap: wrap;
    max-width: none;
  }

  .cards-grid,
  .reviews-grid,
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 860px) {
  .site-header {
    position: sticky;
  }

  .header-inner {
    min-height: 86px;
    gap: 18px;
  }

  .brand img {
    width: 142px;
  }

  .main-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 8px 0;
    font-size: 0.92rem;
  }

  .header-quote {
    display: inline-flex;
    min-height: 44px;
    padding: 10px 18px;
    font-size: 0.9rem;
    box-shadow: none;
  }

  .header-quote-label--desktop {
    display: inline;
  }

  .header-quote-label--mobile {
    display: none;
  }

  .menu-toggle {
    display: none;
  }

  .hero {
    padding: 0;
    background: #fff;
  }

  .confirmation-hero {
    min-height: calc(100vh - 86px);
    padding: 0;
    background: #fff;
  }

  .hero .container {
    width: min(calc(100% - 64px), 1280px);
  }

  .confirmation-hero .container {
    width: min(calc(100% - 64px), 1120px);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
    align-items: center;
    gap: 30px;
    min-height: 580px;
    padding-block: 48px 112px;
  }

  .confirmation-layout {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
    align-items: center;
    gap: 42px;
    min-height: calc(100vh - 86px);
    padding-block: 70px 86px;
  }

  .desktop-break {
    display: block;
  }

  .hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: auto;
    min-height: 0;
    margin: 0;
  }

  .hero-media::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0) 62%, rgba(255, 255, 255, 0.42) 100%),
      linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.92) 22%, rgba(255, 255, 255, 0.58) 42%, rgba(255, 255, 255, 0.1) 62%, rgba(255, 255, 255, 0) 78%);
  }

  .confirmation-media::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0) 62%, rgba(255, 255, 255, 0.5) 100%),
      linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.92) 28%, rgba(255, 255, 255, 0.6) 48%, rgba(255, 255, 255, 0.14) 68%, rgba(255, 255, 255, 0) 84%);
  }

  .hero-media img {
    width: 114%;
    max-width: none;
    min-height: 0;
    height: 100%;
    transform: translateX(-11%);
  }

  .confirmation-media img {
    width: 114%;
    max-width: none;
    height: 100%;
    transform: translateX(-11%);
  }

  .quick-form {
    width: 100%;
    align-self: center;
    justify-self: end;
    margin-top: 0;
    padding: 22px;
  }

  .jotform-shell {
    width: min(100%, 420px);
    padding: 0;
  }

  .trust-strip {
    margin-top: -58px;
    padding-bottom: 42px;
  }

  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: none;
  }

  .trust-grid article {
    padding: 12px 18px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .trust-grid article:hover {
    box-shadow: none;
  }

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

  .section {
    padding: 72px 0;
  }

  .advantages-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .advantages-grid article {
    padding: 0 18px;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .advantages-grid article:hover {
    box-shadow: none;
  }

  .advantages-grid article + article {
    border-left: 1px solid var(--line);
  }

  .zone-panel {
    grid-template-columns: 0.78fr 1fr;
  }

  .zone-copy {
    padding: 34px;
  }

  .zone-map {
    min-height: 220px;
    height: 100%;
  }

  .zone-map::before {
    inset: 0 auto 0 0;
    width: 34%;
    height: auto;
    background: linear-gradient(90deg, #eef9fc 0%, rgba(238, 249, 252, 0.72) 38%, rgba(238, 249, 252, 0) 100%);
  }

  .final-panel {
    grid-template-columns: 1fr auto;
    padding: 38px 44px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 0.9fr;
  }

  .sticky-mobile-cta {
    display: none;
  }

  .site-footer {
    padding-bottom: 36px;
  }
}

@media (min-width: 860px) and (max-width: 1039px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 380px);
    min-height: 500px;
  }

  .hero-copy {
    grid-column: auto;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 5vw, 3rem);
  }

  .hero-media {
    inset: 0;
  }
}

@media (min-width: 1120px) {
  .phone-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--navy);
    font-weight: 500;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn,
  .trust-grid article,
  .intervention-card,
  .intervention-card img,
  .card-icon,
  .text-link,
  .advantages-grid article,
  .feature-icon,
  .zone-panel,
  .process-grid article,
  .step-number,
  .review-card,
  .faq-list summary {
    transition: none;
  }

  .btn:hover,
  .btn:focus-visible,
  .trust-grid article:hover,
  .intervention-card:hover,
  .intervention-card:focus-within,
  .intervention-card:hover img,
  .intervention-card:focus-within img,
  .intervention-card:hover .card-icon,
  .intervention-card:focus-within .card-icon,
  .text-link:hover,
  .text-link:focus-visible,
  .advantages-grid article:hover,
  .advantages-grid article:hover .feature-icon,
  .process-grid article:hover,
  .process-grid article:focus-within,
  .process-grid article:hover .step-number,
  .process-grid article:focus-within .step-number,
  .review-card:hover,
  .review-card:focus-within {
    transform: none;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .header-inner {
    min-height: 64px;
    gap: 8px;
  }

  .brand img {
    width: 104px;
    max-height: 40px;
  }

  .main-nav {
    inset: 64px 0 auto;
  }

  .header-actions {
    gap: 6px;
  }

  .header-quote {
    min-height: 38px;
    padding: 8px 12px;
    font-size: 0.82rem;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero-copy h1 {
    font-size: 2rem;
  }

  .btn {
    padding-inline: 16px;
  }

  .header-quote {
    padding-inline: 12px;
  }
}
