:root {
  --ink: #171717;
  --ink-soft: #2a2927;
  --paper: #f5f3ee;
  --paper-deep: #ebe7df;
  --white: #fff;
  --red: #dc332b;
  --red-dark: #b9211b;
  --gold: #f2b84b;
  --muted: #706d66;
  --line: #d9d4ca;
  --shadow: 0 24px 70px rgba(16, 15, 13, 0.18);
  --radius: 6px;
  --shell: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

.top-strip {
  color: #d9d6cf;
  background: #0d0d0d;
  font-size: 0.78rem;
}

.top-strip__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-strip p {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.top-strip a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
}

.top-strip svg {
  width: 14px;
}

.pulse-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: #57c266;
  box-shadow: 0 0 0 4px rgba(87, 194, 102, 0.13);
}

.site-header {
  position: relative;
  z-index: 50;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.site-header.is-sticky {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.09);
  animation: headerDrop 0.3s ease both;
}

@keyframes headerDrop {
  from {
    transform: translateY(-100%);
  }
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand__mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--red);
  clip-path: polygon(50% 0, 61% 23%, 84% 14%, 77% 38%, 100% 50%, 76% 60%, 83% 86%, 60% 77%, 50% 100%, 40% 77%, 17% 86%, 24% 60%, 0 50%, 23% 38%, 16% 14%, 39% 23%);
  font-size: 0.82rem;
  font-weight: 900;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__text strong {
  font-size: 0.98rem;
  letter-spacing: 0.09em;
}

.brand__text small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav > a:not(.button) {
  position: relative;
  font-size: 0.88rem;
  font-weight: 650;
}

.main-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

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

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

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: 0.2s ease;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  color: var(--white);
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 7px 0 var(--red-dark);
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}

.button:hover {
  background: #e94239;
  transform: translateY(-2px);
  box-shadow: 0 9px 0 var(--red-dark);
}

.button:active {
  transform: translateY(4px);
  box-shadow: 0 3px 0 var(--red-dark);
}

.button--small {
  min-height: 42px;
  padding-inline: 18px;
  box-shadow: none;
}

.button--small:hover {
  box-shadow: none;
}

.button--full {
  width: 100%;
  margin-top: 19px;
}

.button--full svg {
  width: 18px;
}

.button--light {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
  box-shadow: 0 7px 0 #bdbab4;
}

.button--light:hover {
  color: var(--ink);
  background: #fff9ed;
  box-shadow: 0 9px 0 #bdbab4;
}

.button--outline-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: none;
}

.button--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: var(--white);
  background: #161616;
}

.hero__photo,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__photo {
  left: 50%;
  background: url("assets/canadian-tow.jpg") 47% center / cover no-repeat;
}

.hero__shade {
  background:
    linear-gradient(90deg, #171717 0%, #171717 44%, rgba(23, 23, 23, 0.9) 53%, rgba(23, 23, 23, 0.18) 78%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.4), transparent 50%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: calc(50% - 60px);
  width: 150px;
  background: var(--red);
  opacity: 0.8;
  clip-path: polygon(0 0, 35% 0, 100% 100%, 65% 100%);
}

.hero__grid {
  position: relative;
  z-index: 3;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(440px, 0.75fr);
  align-items: center;
  gap: 78px;
  padding-block: 58px;
}

.hero__grid > * {
  min-width: 0;
}

.hero__copy {
  padding-bottom: 30px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.eyebrow--dark {
  color: var(--red);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-transform: uppercase;
}

h1 {
  max-width: 650px;
  margin-bottom: 22px;
  font-size: clamp(3.4rem, 5.1vw, 5.8rem);
}

h1 em,
h2 em {
  color: var(--red);
  font-style: normal;
}

.hero__lead {
  max-width: 580px;
  margin-bottom: 24px;
  color: #c8c5bf;
  font-size: 1.05rem;
}

.hero__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 23px;
  margin-bottom: 31px;
}

.hero__checks span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.83rem;
  font-weight: 700;
}

.hero__checks svg {
  width: 18px;
  color: var(--gold);
  stroke-width: 3;
}

.hero__call {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hero__call-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
}

.hero__call svg {
  width: 19px;
}

.hero__call > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.hero__call small {
  color: #9c9993;
  font-size: 0.69rem;
}

.hero__call strong {
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.quote-card {
  color: var(--ink);
  background: var(--white);
  border-top: 5px solid var(--red);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 30px 24px;
}

.quote-card__heading {
  margin-bottom: 20px;
}

.step-label {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--red);
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.quote-card h2 {
  margin-bottom: 7px;
  font-size: 2rem;
}

.quote-card__heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field {
  position: relative;
}

.field--wide {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 5px;
  color: #3c3a36;
  font-size: 0.72rem;
  font-weight: 750;
}

.field label span {
  color: #918e87;
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 43px;
  display: block;
  padding: 9px 12px;
  color: var(--ink);
  background: #f7f5f1;
  border: 1px solid #ddd9d1;
  border-radius: 2px;
  outline: none;
  font-size: 0.82rem;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.field textarea {
  min-height: 64px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #aaa69e;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: var(--white);
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(220, 51, 43, 0.09);
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--red);
}

.field__error {
  display: none;
  margin-top: 3px;
  color: var(--red);
  font-size: 0.66rem;
}

.field.has-error .field__error {
  display: block;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 14px;
  color: #74716b;
  font-size: 0.67rem;
  line-height: 1.45;
  cursor: pointer;
}

.consent input {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin: 1px 0 0;
  accent-color: var(--red);
}

.consent-error {
  display: none;
  color: var(--red);
  font-size: 0.66rem;
}

.consent-error.is-visible {
  display: block;
}

.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 12px 0 0;
  color: #8c8880;
  font-size: 0.65rem;
  text-align: center;
}

.form-note svg {
  width: 13px;
}

.trust-bar {
  position: relative;
  z-index: 4;
  color: var(--white);
  background: var(--red);
}

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

.trust-bar__grid > div {
  min-height: 114px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.21);
}

.trust-bar__grid > div:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.21);
}

.trust-bar strong {
  color: rgba(255, 255, 255, 0.24);
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 2.25rem;
  font-style: italic;
}

.trust-bar span {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.trust-bar b {
  font-size: 0.84rem;
  text-transform: uppercase;
}

.trust-bar small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
}

.section {
  padding: 110px 0;
}

.section-heading {
  max-width: 560px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading h2,
.difference h2,
.coverage h2,
.final-cta h2 {
  margin-bottom: 19px;
  font-size: clamp(2.5rem, 4.2vw, 4.4rem);
}

.section-heading p,
.difference .intro {
  color: var(--muted);
}

.process {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(23, 23, 23, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 23, 23, 0.022) 1px, transparent 1px),
    var(--paper);
  background-size: 38px 38px;
}

.process__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 54px;
}

.process__grid::before {
  content: "";
  position: absolute;
  top: 64px;
  right: 15%;
  left: 15%;
  border-top: 2px dashed #c7c1b7;
}

.process-card {
  position: relative;
  min-height: 305px;
  padding: 37px 31px 30px;
  background: var(--white);
  border-bottom: 4px solid transparent;
  box-shadow: 0 10px 35px rgba(23, 23, 23, 0.07);
  text-align: center;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.process-card:hover {
  border-color: var(--red);
  transform: translateY(-7px);
}

.process-card__number {
  position: absolute;
  top: 18px;
  right: 20px;
  color: #e5e1da;
  font-size: 2rem;
  font-weight: 900;
}

.icon-box {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin: 0 auto 25px;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 9px var(--paper);
}

.icon-box svg {
  width: 28px;
}

.process-card h3 {
  margin-bottom: 10px;
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.process-card p {
  color: var(--muted);
  font-size: 0.88rem;
}

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

.difference__grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  align-items: center;
  gap: 90px;
}

.difference__photo {
  position: relative;
  height: 570px;
  padding-left: 25px;
}

.difference__photo::before {
  content: "";
  position: absolute;
  top: -22px;
  bottom: 35px;
  left: 0;
  width: 55%;
  background: var(--red);
}

.difference__photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 55%;
  filter: saturate(0.78) contrast(1.04);
}

.difference__badge {
  position: absolute;
  z-index: 2;
  right: -30px;
  bottom: -18px;
  width: 170px;
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
  background: var(--ink);
  border-left: 5px solid var(--gold);
  text-transform: uppercase;
}

.difference__badge strong {
  color: var(--gold);
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 2.1rem;
}

.difference__badge span {
  font-size: 0.63rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

.difference__copy {
  max-width: 510px;
}

.difference .intro {
  margin-bottom: 27px;
}

.benefit-list {
  display: grid;
  gap: 16px;
  margin-bottom: 32px;
}

.benefit-list > div {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.benefit-list__icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  margin-top: 1px;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
}

.benefit-list__icon svg {
  width: 15px;
  stroke-width: 3;
}

.benefit-list > div > span:last-child {
  display: flex;
  flex-direction: column;
}

.benefit-list strong {
  font-size: 0.9rem;
}

.benefit-list small {
  color: var(--muted);
  font-size: 0.8rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  border-bottom: 2px solid var(--red);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--red);
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.coverage {
  padding: 95px 0;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 50%, rgba(220, 51, 43, 0.14), transparent 35%),
    var(--ink);
}

.coverage__grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 30px;
}

.coverage__copy p {
  max-width: 460px;
  margin-bottom: 28px;
  color: #bbb8b1;
}

.coverage__map svg {
  width: 100%;
  overflow: visible;
}

.map-shape {
  fill: #272725;
  stroke: #4a4945;
  stroke-width: 3;
}

.map-line {
  fill: none;
  stroke: #5b5954;
  stroke-dasharray: 8 10;
  stroke-width: 2;
}

.map-pin circle:first-child {
  fill: rgba(220, 51, 43, 0.12);
  stroke: var(--red);
  stroke-width: 2;
  animation: mapPulse 2.4s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.map-pin circle:last-child {
  fill: var(--red);
  stroke: none;
}

.map-pin:nth-of-type(2) circle {
  animation-delay: 0.5s;
}

.map-pin:nth-of-type(3) circle {
  animation-delay: 0.9s;
}

@keyframes mapPulse {
  50% {
    opacity: 0.6;
    transform: scale(1.25);
  }
}

.faq {
  background: var(--paper-deep);
}

.faq__grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 100px;
}

.faq .text-link {
  margin-top: 12px;
}

.accordion details {
  border-top: 1px solid #cac5bc;
}

.accordion details:last-child {
  border-bottom: 1px solid #cac5bc;
}

.accordion summary {
  min-height: 71px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  list-style: none;
  text-transform: uppercase;
  cursor: pointer;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary span {
  position: relative;
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  border: 1px solid #aaa59b;
  border-radius: 50%;
}

.accordion summary span::before,
.accordion summary span::after {
  content: "";
  position: absolute;
  top: 11px;
  left: 6px;
  width: 11px;
  height: 1px;
  background: currentColor;
}

.accordion summary span::after {
  transform: rotate(90deg);
  transition: transform 0.2s ease;
}

.accordion details[open] summary {
  color: var(--red);
}

.accordion details[open] summary span::after {
  transform: rotate(0);
}

.accordion details p {
  max-width: 650px;
  padding: 0 50px 24px 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.final-cta {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

.final-cta__image,
.final-cta__overlay {
  position: absolute;
  inset: 0;
}

.final-cta__image {
  background: url("assets/canadian-tow.jpg") center 75% / cover no-repeat;
  filter: grayscale(0.35);
}

.final-cta__overlay {
  background: rgba(15, 15, 15, 0.78);
}

.final-cta__content {
  position: relative;
  z-index: 1;
}

.final-cta p {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.final-cta h2 {
  max-width: 850px;
  margin-inline: auto;
}

.final-cta__content > div {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.site-footer {
  padding-top: 68px;
  color: #aaa7a0;
  background: #111;
}

.footer__main {
  display: grid;
  grid-template-columns: 1.7fr 0.7fr 1fr 1.15fr;
  gap: 55px;
  padding-bottom: 55px;
}

.brand--footer .brand__text strong {
  color: var(--white);
}

.footer__brand p,
.footer__main > div:last-child p {
  max-width: 300px;
  margin: 20px 0 0;
  font-size: 0.8rem;
}

.footer__main h3 {
  margin: 0 0 17px;
  color: var(--white);
  font-size: 0.73rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer__main > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.78rem;
}

.footer__main a:hover {
  color: var(--white);
}

.text-link--light {
  margin-top: 7px;
  color: var(--white);
}

.footer__bottom {
  min-height: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #2b2b2b;
  font-size: 0.66rem;
}

.footer__bottom a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.mobile-actions {
  display: none;
}

.toast {
  position: fixed;
  z-index: 200;
  right: 22px;
  bottom: 22px;
  max-width: 360px;
  padding: 13px 18px;
  color: var(--white);
  background: #222;
  border-left: 4px solid var(--gold);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.28);
  font-size: 0.82rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: 0.25s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1050px) {
  .main-nav {
    gap: 22px;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.83fr);
    gap: 40px;
  }

  .difference__grid,
  .faq__grid {
    gap: 60px;
  }
}

@media (max-width: 880px) {
  .nav-toggle {
    position: relative;
    z-index: 2;
    display: block;
    flex: 0 0 auto;
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: 78px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 25px 20px;
    background: var(--white);
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: 0.25s ease;
  }

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

  .main-nav > a:not(.button) {
    padding: 16px 5px;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }

  .main-nav .button {
    margin-top: 20px;
  }

  .hero,
  .hero__grid {
    min-height: auto;
  }

  .hero__photo {
    left: 0;
  }

  .hero__shade {
    background: rgba(16, 16, 16, 0.82);
  }

  .hero::before {
    left: auto;
    right: 8%;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-block: 75px;
  }

  .hero__copy {
    max-width: 650px;
    padding: 0;
  }

  .quote-card {
    max-width: 620px;
  }

  .trust-bar__grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-bar__grid > div,
  .trust-bar__grid > div:first-child {
    border: 1px solid rgba(255, 255, 255, 0.18);
  }

  .process__grid {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin-inline: auto;
  }

  .process__grid::before {
    display: none;
  }

  .difference__grid {
    grid-template-columns: 0.92fr 1fr;
    gap: 45px;
  }

  .difference__photo {
    height: 500px;
  }

  .coverage__grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .faq__grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .footer__main {
    grid-template-columns: 1.5fr 0.8fr 1fr;
  }

  .footer__main > div:last-child {
    display: none;
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: 61px;
  }

  .shell {
    width: calc(100vw - 30px);
    max-width: calc(100vw - 30px);
    margin-inline: 15px;
  }

  .top-strip p {
    display: none;
  }

  .top-strip__inner {
    justify-content: center;
  }

  .nav-wrap {
    min-height: 69px;
  }

  .main-nav {
    top: 69px;
  }

  .brand__mark {
    width: 38px;
    height: 38px;
  }

  .hero__grid {
    padding-block: 55px 45px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.75rem, 13.2vw, 4.15rem);
    overflow-wrap: normal;
  }

  .hero__lead {
    max-width: 100%;
    font-size: 0.95rem;
  }

  .hero__checks {
    gap: 10px 17px;
  }

  .quote-card {
    width: 100%;
    max-width: 100%;
    padding: 24px 19px 20px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .field--wide {
    grid-column: auto;
  }

  .trust-bar__grid {
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }

  .trust-bar__grid > div {
    min-height: 105px;
    padding: 15px;
  }

  .trust-bar strong {
    display: none;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading h2,
  .difference h2,
  .coverage h2,
  .final-cta h2 {
    font-size: clamp(2.3rem, 11vw, 3.4rem);
  }

  .process__grid {
    margin-top: 35px;
  }

  .difference__grid {
    grid-template-columns: 1fr;
  }

  .difference__photo {
    width: calc(100% - 20px);
    height: 430px;
  }

  .difference__badge {
    right: -20px;
  }

  .coverage {
    padding: 75px 0 55px;
  }

  .coverage__grid {
    grid-template-columns: 1fr;
  }

  .coverage__map {
    margin-top: 25px;
  }

  .faq__grid {
    gap: 30px;
  }

  .accordion summary {
    min-height: 67px;
    font-size: 0.92rem;
  }

  .final-cta {
    min-height: 470px;
  }

  .final-cta__content > div {
    flex-direction: column;
    align-items: stretch;
  }

  .footer__main {
    grid-template-columns: 1fr 1fr;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 20px;
  }

  .mobile-actions {
    position: fixed;
    z-index: 100;
    right: 0;
    bottom: 0;
    left: 0;
    height: 61px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    color: var(--white);
    background: var(--ink);
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.18);
  }

  .mobile-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .mobile-actions a:last-child {
    background: var(--red);
  }

  .mobile-actions svg {
    width: 18px;
  }

  .toast {
    right: 15px;
    bottom: 76px;
    left: 15px;
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
