@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/poppins-400.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/poppins-500.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/poppins-600.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/poppins-700.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/poppins-800.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../fonts/poppins-900.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/poppins-700-italic.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/poppins-800-italic.woff2") format("woff2");
}

:root {
  --green: #0bae61;
  --dark-green: #078245;
  --red: #e62328;
  --ink: #07111b;
  --navy: #071723;
  --muted: #687281;
  --line: #e6ebef;
  --radius-sm: 5px;
  --radius-md: 9px;
  --radius-lg: 14px;
  --shadow-card: 0 8px 18px rgba(6, 23, 34, .08);
  --shadow-lift: 0 18px 38px rgba(6, 23, 34, .16);
  --transition-fast: .25s ease;
  --page-hero-height: 520px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  overflow-y: scroll;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  color: var(--ink);
  background: #ffffff;
  font-family: "Poppins", Arial, sans-serif;
}

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

main {
  overflow: hidden;
  padding-bottom: 0;
}

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

a,
button {
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease, opacity .2s ease, transform .2s ease, filter .2s ease;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(11, 174, 97, .35);
  outline-offset: 3px;
}

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

.logo img,
.hero__phone img,
.features img,
.step-grid img,
.service-card img,
.quote img,
.mini-app img,
.provider img {
  transition: transform .28s ease, filter .28s ease;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1250px, calc(100% - 48px));
  min-height: 72px;
  padding: 10px 24px;
  transform: translateX(-50%);
  border: 1px solid rgba(7, 17, 27, .08);
  border-radius: 14px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 14px 40px rgba(7, 17, 27, .12);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition: box-shadow .25s ease, background-color .25s ease;
}

.logo {
  display: block;
  width: 92px;
  height: auto;
}

.logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.logo:hover img,
.logo:focus-visible img {
  transform: scale(1.04);
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nav-toggle-btn {
  display: none;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.4vw, 40px);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.55vw, 44px);
  font-size: 13px;
  font-weight: 500;
}

.nav a:hover {
  color: var(--green);
}

.nav a {
  position: relative;
}

.nav a[aria-current="page"] {
  color: var(--green);
}

.nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--green);
  content: "";
  opacity: 0;
  transform: scaleX(.35);
  transition: opacity .2s ease, transform .2s ease;
}

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

.download-btn,
.app-cta,
.provider a,
.social button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 5px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.download-btn {
  min-width: 168px;
  min-height: 52px;
  font-size: 14px;
}

.download-btn:hover,
.download-btn:focus-visible,
.provider a:hover,
.provider a:focus-visible {
  background: #c9161d;
  box-shadow: 0 12px 24px rgba(230, 35, 40, .24);
  transform: translateY(-2px);
}

.download-btn:active,
.provider a:active,
.app-cta:active,
.store-badge:active,
.service-card a:active,
.review-controls button:active,
.social button:active {
  transform: translateY(0) scale(.98);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 38%) 1fr;
  align-items: center;
  min-height: 735px;
  padding: 116px max(100px, calc((100vw - 1240px) / 2)) 54px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0 39% 0 0;
  z-index: 2;
  display: none;
  background: none;
  content: "";
}

.hero::after {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 3;
  height: 165px;
  display: none;
  background: none;
  content: "";
}

.hero__content {
  position: relative;
  z-index: 4;
  max-width: 450px;
  padding-top: 32px;
}

.hero__content h1 {
  margin: 0;
  font-size: clamp(42px, 3.55vw, 56px);
  font-style: italic;
  font-weight: 900;
  line-height: 1.12;
  text-transform: uppercase;
}

.hero__content h1 span {
  display: block;
  color: var(--green);
}

.hero__service-title {
  margin: 15px 0 0;
  color: var(--red);
  font-size: clamp(20px, 1.75vw, 26px);
  font-style: italic;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero__sub {
  margin: 9px 0 34px;
  font-size: 24px;
  font-style: italic;
  font-weight: 700;
}

.app-cta {
  min-height: 66px;
  padding: 0 32px;
  gap: 12px;
  background: #159b59;
  font-size: 14px;
}

.app-cta span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  color: #159b59;
}

.app-cta span img {
  filter: brightness(0) invert(1);
}

.app-cta:hover,
.app-cta:focus-visible {
  background: #087e45;
  box-shadow: 0 14px 26px rgba(11, 174, 97, .25);
  transform: translateY(-2px);
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 27px;
}

.store-badge {
  display: grid;
  grid-template-columns: 30px auto;
  grid-template-rows: auto auto;
  column-gap: 8px;
  align-items: center;
  min-width: 157px;
  min-height: 54px;
  padding: 8px 14px;
  border-radius: 7px;
  background: #050608;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.store-badge img {
  grid-row: 1 / 3;
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.store-badge b {
  display: block;
  font-size: 8px;
  font-weight: 500;
  text-transform: none;
}

.store-badge:hover,
.store-badge:focus-visible {
  background: #171b21;
  box-shadow: 0 12px 24px rgba(7, 17, 27, .22);
  transform: translateY(-2px);
}

.rating {
  margin: 34px 0 0 12px;
  font-size: 12px;
  font-weight: 700;
}

.rating span,
.score span,
.rating__stars,
.score__stars {
  color: #ffc400;
}

.rating__stars,
.score__stars {
  letter-spacing: 4px;
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../images/hero-jib-optimized.jpg") center top / cover no-repeat;
}

.hero__phone {
  position: absolute;
  right: max(62px, calc((100vw - 1280px) / 2));
  bottom: 54px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 17px;
}

.hero__phone img {
  width: 198px;
  filter: drop-shadow(0 22px 20px rgba(0, 0, 0, .22));
}

.hero__phone:hover img {
  transform: translateY(-4px) scale(1.02);
  filter: drop-shadow(0 28px 25px rgba(0, 0, 0, .24));
}

.status-list {
  display: grid;
  gap: 15px;
  margin: 0;
  min-width: 224px;
  padding: 18px 18px 18px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .74);
  box-shadow: 0 18px 36px rgba(7, 17, 27, .16);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  list-style: none;
}

.status-list li {
  position: relative;
  padding-left: 44px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.1;
}

.status-list li::before {
  position: absolute;
  top: -2px;
  left: 0;
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 50%;
  background: #bfc4c8;
  color: #fff;
  content: "\2713";
}

.status-list li.done::before {
  background: var(--green);
}

.status-list span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
}

.features,
.review-band,
.footer {
  width: min(1240px, calc(100% - 120px));
  margin-inline: auto;
}

.features {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 48px;
  padding: 28px 36px;
  border-radius: 14px;
  background: linear-gradient(180deg, #0d1925 0%, #07121c 100%);
  color: #fff;
}

.features article {
  display: grid;
  min-height: 178px;
  place-items: center;
  padding: 0 28px;
  border-right: 1px solid rgba(255, 255, 255, .24);
  text-align: center;
  transition: background-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.features article:hover,
.features article:focus-within {
  background: rgba(255, 255, 255, .06);
  box-shadow: 0 16px 32px rgba(0, 0, 0, .18);
  transform: translateY(-4px);
}

.features article:hover img,
.features article:focus-within img {
  transform: scale(1.08);
}

.features article:last-child {
  border-right: 0;
}

.features span {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
}

.features span img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.features article:nth-child(1) span img {
  width: 76px;
  max-width: none;
  max-height: none;
}

.features article:nth-child(2) span img {
  width: 66px;
  max-width: none;
  max-height: none;
}

.features article:nth-child(3) span img {
  width: 63px;
  max-width: none;
  max-height: none;
}

.features article:nth-child(4) span img {
  width: 58px;
  max-width: none;
  max-height: none;
}

.features article:nth-child(5) span img {
  width: 60px;
  max-width: none;
  max-height: none;
}

.features h3 {
  margin: 10px 0 6px;
  font-size: 14px;
  line-height: 1.2;
  text-transform: uppercase;
}

.features p,
.step-grid p,
.service-card p,
.quote p,
.area small,
.provider p,
.footer a,
.footer p {
  margin: 0;
  color: inherit;
  font-size: 13px;
  line-height: 1.7;
}

.section-pad {
  padding: 66px max(68px, calc((100vw - 1240px) / 2)) 0;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-bottom: 40px;
}

.section-title span {
  width: 48px;
  height: 3px;
  background: var(--green);
}

.section-title span:first-child {
  background: var(--red);
}

.section-title h2 {
  margin: 0;
  font-size: 34px;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}

.step-grid article {
  position: relative;
  display: grid;
  min-height: 232px;
  padding: 34px 24px 24px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(6, 23, 34, .05);
  text-align: center;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.step-grid article:hover,
.step-grid article:focus-within {
  border-color: rgba(11, 174, 97, .35);
  box-shadow: 0 16px 34px rgba(6, 23, 34, .12);
  transform: translateY(-5px);
}

.step-grid article:hover span img,
.step-grid article:focus-within span img {
  transform: scale(1.08) rotate(-3deg);
}

.step-grid article:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -45px;
  color: var(--green);
  font-size: 30px;
  content: "\22EF\203A";
  transform: translateY(-50%);
}

.step-grid b {
  position: absolute;
  top: 20px;
  left: 22px;
  color: #dfe2e5;
  font-size: 58px;
  font-style: italic;
  line-height: 1;
}

.step-grid span{
  z-index: 1;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 50%;
  background: url("../images/Ellipse 61.png") center / cover no-repeat;
  color: #fff;
  font-size: 33px;
  box-shadow: 0 7px 14px rgba(11, 174, 97, .18);
}
.service-card > span {
  z-index: 1;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 50%;
  background: url("../images/Ellipse -green.png") center / cover no-repeat;
  color: #fff;
  font-size: 33px;
  box-shadow: 0 7px 14px rgba(11, 174, 97, .18);
}
.step-grid span img,
.service-card > span img {
  width: 58%;
  height: 58%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.step-grid article:nth-child(3) span img {
  width: 54%;
  height: 54%;
}

.step-grid article:nth-child(1) span img {
  width: 42%;
  height: 60%;
}

.step-grid article:nth-child(2) span img {
  width: 56%;
  height: 56%;
}

.step-grid article:nth-child(4) span img {
  width: 100%;
  height: 72%;
}

.step-grid h3 {
  margin: 10px 0 6px;
  font-size: 15px;
  line-height: 1.2;
}
.service-card h3 {
  margin: 55px 0 6px;
  min-height: 2.4em;
  padding: 0 12px;
  font-size: 15px;
  line-height: 1.2;
}

.services {
  padding-top: 72px;
  padding-bottom: 52px;
}

.worry-check {
  padding-top: 62px;
}

.worry-check__panel {
  position: relative;
  width: 100%;
  padding: 40px;
  overflow: hidden;
  border: 1px solid rgba(11, 174, 97, .18);
  border-radius: 18px;
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(11, 174, 97, .16) 0%, rgba(11, 174, 97, 0) 46%),
    linear-gradient(165deg, #0b2a38 0%, #07131f 72%);
  color: #fff;
  box-shadow: 0 22px 46px rgba(6, 23, 34, .22);
}

.worry-check__panel::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--green));
  content: "";
}

.worry-check__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(11, 174, 97, .16);
  color: #6ff0b3;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.worry-check__lead {
  margin: 0;
  font-size: clamp(22px, 2.6vw, 30px);
  font-style: italic;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.worry-check__lead span {
  color: var(--green);
}

.worry-check__options {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.worry-check__options button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 22px 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 14px;
  background: rgba(255, 255, 255, .05);
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s ease, background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.worry-check__icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: url("../images/Ellipse -green.png") center / cover no-repeat;
}

.worry-check__icon img {
  width: 52%;
  height: 52%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.worry-check__options button:hover,
.worry-check__options button:focus-visible {
  border-color: rgba(11, 174, 97, .55);
  background: rgba(11, 174, 97, .16);
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(6, 23, 34, .28);
}

.worry-check__options button.is-active {
  border-color: var(--green);
  background: rgba(11, 174, 97, .24);
  box-shadow: 0 16px 32px rgba(11, 174, 97, .26);
}

.worry-check__result {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  margin-top: 26px;
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  background: rgba(255, 255, 255, .04);
}

.worry-check__result-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 22px;
  box-shadow: 0 12px 24px rgba(11, 174, 97, .28);
}

.worry-check__result-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.worry-check__response {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
}

.worry-check__hint {
  color: #9fb2bd;
  font-size: 13px;
  line-height: 1.5;
}

.worry-check__result .app-cta {
  min-height: 52px;
  white-space: nowrap;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 318px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(6, 23, 34, .08);
  text-align: center;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.service-card:hover,
.service-card:focus-within {
  border-color: rgba(230, 35, 40, .22);
  box-shadow: 0 18px 38px rgba(6, 23, 34, .16);
  transform: translateY(-6px);
}

.service-photo {
  height: 131px;
  margin-bottom: 42px;
  background: center / cover no-repeat;
  transition: transform .35s ease, filter .35s ease;
}

.service-card:hover .service-photo,
.service-card:focus-within .service-photo {
  filter: saturate(1.08);
  transform: scale(1.04);
}

.service-card:hover > span img,
.service-card:focus-within > span img {
  transform: scale(1.1) rotate(4deg);
}

.service-card--tow .service-photo {
  background-image: url("../images/service-towing.png");
}

.service-card--jump .service-photo {
  background-image: url("../images/service-jump.png");
}

.service-card--tire .service-photo {
  background-image: url("../images/service-tire.png");
}

.service-card--lock .service-photo {
  background-image: url("../images/service-lockout.png");
}

.service-card--fuel .service-photo {
  background-image: url("../images/service-fuel.png");
}

.service-card > span {
  position: absolute;
  top: 92px;
  left: 50%;
  width: 82px;
  height: 82px;
  font-size: 26px;
  transform: translateX(-50%);
}

.service-card p {
  flex: 1 1 auto;
  margin: 0;
  padding: 0 24px;
  color: #687281;
}

.service-card a {
  display: grid;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  margin: 16px auto 20px;
  place-items: center;
  border-radius: 50%;
  background: transparent;
}

.service-card a img {
  width: 34px;
  height: 34px;
}

.service-card:nth-child(1) > span img {
  width: 70%;
  height: 70%;
}

.service-card:nth-child(2) > span img {
  width: 70%;
  height: 70%;
}

.service-card:nth-child(3) > span img {
  width: 70%;
  height: 70%;
}

.service-card:nth-child(4) > span img,
.service-card:nth-child(5) > span img {
  width: 70%;
  height: 70%;
}

.service-card a:hover,
.service-card a:focus-visible {
  filter: drop-shadow(0 8px 13px rgba(230, 35, 40, .3));
  transform: translateY(-2px) scale(1.08);
}

.review-band {
  display: grid;
  grid-template-columns: 142px 1fr 1fr 70px 360px;
  align-items: center;
  min-height: 232px;
  gap: 23px;
  padding: 28px 40px;
  border-radius: 14px;
  background: #07131f;
  color: #fff;
}

.review-controls {
  display: flex;
  gap: 5px;
  align-self: end;
  justify-content: center;
  padding-bottom: 16px;
}

.review-controls button {
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.review-controls button img {
  width: 34px;
  height: 34px;
}

.review-controls button:hover,
.review-controls button:focus-visible {
  box-shadow: 0 8px 18px rgba(255, 255, 255, .18);
  transform: translateY(-2px);
}

.score strong {
  display: block;
  font-size: 40px;
}
.score{
      display: flex;
    flex-direction: column;
    align-items: center;
}
.score p {
  max-width: 150px;
  text-align: center;
}

.quote {
  display: grid;
  grid-template-columns: 72px 1fr;
  column-gap: 18px;
  align-items: center;
  padding-left: 25px;
  border-left: 1px solid rgba(255, 255, 255, .22);
  transition: border-color .25s ease, transform .25s ease;
}

.quote:hover,
.quote:focus-within {
  border-color: rgba(11, 174, 97, .65);
  transform: translateY(-3px);
}

.quote:hover img,
.quote:focus-within img {
  transform: scale(1.06);
}

.quote .avatar {
  grid-row: span 2;
  width: 70px;
  height: 70px;
}

.quote .avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.quote small {
  color: #fff;
}

.mini-app {
  display: grid;
  grid-template-columns: 1fr 132px;
  gap: 8px;
  align-items: center;
}

.mini-app h3 {
  margin: 0;
  font-size: 23px;
  font-style: italic;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.mini-app h3 span,
.area h2 span,
.provider h2 span {
  color: var(--green);
}

.mini-app p {
  margin: 10px 0 0;
  color: #cbd4db;
  font-size: 12px;
  line-height: 1.55;
}

.mini-app .store-row {
  gap: 8px;
  margin-top: 16px;
}

.mini-app .store-badge {
  grid-template-columns: 18px auto;
  min-width: 106px;
  min-height: 37px;
  padding: 6px 8px;
  column-gap: 5px;
  font-size: 8px;
}

.mini-app .store-badge img {
  width: 16px;
  height: 16px;
}

.mini-app .store-badge b {
  font-size: 6px;
}


.mini-app img {
  width: 176px;
  transform: scale(1.42) translateY(2px);
  transform-origin: bottom center;
}

.mini-app:hover > img {
  transform: scale(1.46) translateY(-2px);
}

.area {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 46px;
  align-items: center;
  min-height: 515px;
  padding: 58px max(104px, calc((100vw - 1240px) / 2)) 46px;
  background-image: url(../images/map.png);
  background-position: center right;
  background-repeat: no-repeat;
  background-size: min(1440px, 100%) auto;
}

.area__copy {
  max-width: 450px;
}

.area__copy > p {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 16px;
  font-style: italic;
  font-weight: 700;
}

.area h2,
.provider h2 {
  margin: 0;
  font-size: 34px;
  font-style: italic;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.area h2 span {
  display: block;
}

.area ul {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.area li {
  position: relative;
  padding-left: 34px;
  font-size: 13px;
}

.area li::before {
  position: absolute;
  left: 0;
  top: -2px;
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  content: "\2713";
}

.map-card {
  display: flex;
  min-height: 396px;
  align-items: center;
  justify-content: flex-end;
}

.map-card img {
  width: min(760px, 100%);
  height: auto;
  object-fit: contain;
}

.provider {
  display: grid;
  grid-template-columns: 255px 1fr auto auto;
  gap: 34px;
  align-items: center;
  min-height: 160px;
  margin-top: 30px;
  margin-bottom: 0;
  padding: 20px 34px;
  border-radius: 9px;
  background: #0b2a38;
  color: #fff;
  transition: box-shadow .25s ease, transform .25s ease;
}

.provider--home {
  width: 100%;
  margin-inline: 0;
  border-radius: 0;
  padding: 36px max(68px, calc((100vw - 1240px) / 2));
  transition: none;
}

.provider--home:hover,
.provider--home:focus-within,
.provider.provider--home:hover,
.provider.provider--home:focus-within {
  box-shadow: none;
  transform: none;
}

.provider--home li:hover img,
.provider--home li:focus-within img {
  transform: none;
}

.provider--home .provider__people img {
  transform: translateY(10px);
}

.provider:not(.provider--home):hover,
.provider:not(.provider--home):focus-within {
  box-shadow: 0 18px 38px rgba(7, 17, 27, .18);
  transform: translateY(-3px);
}

.provider:not(.provider--home) li:hover img,
.provider:not(.provider--home) li:focus-within img {
  transform: scale(1.08);
}

.provider__people {
  align-self: end;
  height: 208px;
  margin-top: -58px;
  overflow: hidden;
}

.provider__people img {
  width: 278px;
  max-width: none;
  height: auto;
  transform: translateY(10px);
}

.provider h2 {
  max-width: 360px;
  font-size: 24px;
}

.provider h2 span {
  display: block;
}

.provider ul {
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #d9edf1;
  font-size: 12px;
}

.provider li {
  display: grid;
  grid-template-columns: 38px minmax(0, 72px);
  gap: 10px;
  align-items: center;
  max-width: 112px;
}

.provider li img {
  width: 34px;
  height: 31px;
  object-fit: contain;
}

.provider li:first-child img {
  width: 40px;
  height: 50px;
}

.provider a {
  min-width: 166px;
  min-height: 52px;
  padding: 0 18px;
  font-size: 14px;
}

.page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: start;
  height: var(--page-hero-height);
  min-height: var(--page-hero-height);
  padding: 148px max(100px, calc((100vw - 1240px) / 2)) 80px;
  overflow: hidden;
  background: linear-gradient(105deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .94) 42%, rgba(255, 255, 255, .72) 62%, rgba(255, 255, 255, .18) 100%), url("../images/hero-jib-optimized.jpg") center / cover no-repeat;
}

.page-hero--compact {
  height: var(--page-hero-height);
  min-height: var(--page-hero-height);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.page-eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 14px;
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(38px, 4.6vw, 64px);
  font-style: italic;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.page-hero h1 span,
.page-copy h2 span,
.page-cta h2 span {
  color: var(--green);
}

.page-hero__lead {
  max-width: 650px;
  margin: 20px 0 0;
  color: #3f4a55;
  font-size: 18px;
  line-height: 1.75;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 30px;
}

.page-hero__actions .app-cta {
  min-height: 52px;
  padding: 0 22px;
  gap: 10px;
}

.page-hero__actions .app-cta span {
  width: 20px;
  height: 20px;
}

.text-link {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid rgba(7, 17, 27, .14);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.text-link:hover,
.text-link:focus-visible {
  border-color: rgba(11, 174, 97, .35);
  box-shadow: 0 12px 24px rgba(7, 17, 27, .1);
  color: var(--green);
  transform: translateY(-2px);
}

.page-section {
  padding: 70px max(68px, calc((100vw - 1240px) / 2)) 0;
}

.page-section--last {
  padding-bottom: 0;
}

.page-intro {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: start;
}

.page-copy h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  font-style: italic;
  font-weight: 900;
  line-height: 1.18;
  text-transform: uppercase;
}

.page-copy p,
.info-card p,
.faq-list p,
.legal-content p,
.legal-content li,
.contact-card p,
.image-note p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.page-copy p {
  margin: 18px 0 0;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  min-height: 24px;
  padding-left: 34px;
  color: #303b45;
  font-size: 14px;
  line-height: 1.7;
}

.check-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  content: "\2713";
  font-size: 12px;
  font-weight: 900;
}

.card-grid,
.testimonial-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.card-grid--spaced {
  margin-top: 28px;
}

.info-card,
.stat-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.info-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  padding: 28px;
}

.info-card:hover,
.info-card:focus-within,
.stat-card:hover,
.contact-card:hover,
.contact-card:focus-within {
  border-color: rgba(11, 174, 97, .35);
  box-shadow: var(--shadow-lift);
  transform: translateY(-5px);
}

.info-card__icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  background: url("../images/Ellipse -green.png") center / cover no-repeat;
}

.info-card__icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.info-card h3,
.contact-card h3,
.legal-content h2,
.faq-list summary {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
}

.info-card p,
.contact-card p {
  margin: 10px 0 0;
}

.info-card p {
  flex: 1 1 auto;
  width: 100%;
}

.info-card > .text-link {
  margin-top: 18px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.stat-card {
  min-height: 140px;
  padding: 26px 22px;
  text-align: center;
}

.stat-card strong {
  display: block;
  color: var(--red);
  font-size: 34px;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.image-note {
  display: grid;
  gap: 16px;
  padding: 26px;
  border-radius: var(--radius-lg);
  background: #07131f;
  color: #fff;
}

.image-note img {
  width: 100%;
  max-height: 240px;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.image-note h3 {
  margin: 0;
  font-size: 20px;
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
}

.image-note p {
  margin: 0;
  color: #cbd4db;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 7px 16px rgba(6, 23, 34, .04);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  list-style: none;
}

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

.faq-list summary::after {
  float: right;
  color: var(--green);
  content: "+";
  font-size: 22px;
  line-height: 1;
}

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

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
}

.page-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 30px;
  padding: 36px max(68px, calc((100vw - 1240px) / 2));
  background: #0b2a38;
  color: #fff;
}

.page-cta--full {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}

.page-cta h2 {
  margin: 0;
  font-size: clamp(25px, 3vw, 36px);
  font-style: italic;
  font-weight: 900;
  line-height: 1.18;
  text-transform: uppercase;
}

.page-cta p {
  max-width: 700px;
  margin: 10px 0 0;
  color: #d9edf1;
  font-size: 14px;
  line-height: 1.7;
}

.coverage-check {
  display: grid;
  gap: 18px;
  padding: 32px;
  border: 1px solid rgba(11, 174, 97, .22);
  border-radius: 14px;
  background: linear-gradient(150deg, #0b2a38 0%, #07131f 70%);
  color: #fff;
  box-shadow: 0 16px 34px rgba(6, 23, 34, .16);
}

.coverage-check__head h3 {
  margin: 0;
  font-size: 24px;
  font-style: italic;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.coverage-check__head p {
  margin: 10px 0 0;
  color: #d9edf1;
  font-size: 14px;
  line-height: 1.7;
}

.coverage-check__form label {
  display: inline-block;
  margin-bottom: 9px;
  color: #9fb2bd;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
}

.coverage-check__controls {
  display: flex;
  gap: 12px;
}

.coverage-check__controls input {
  flex: 1 1 auto;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font: inherit;
  font-size: 14px;
}

.coverage-check__controls input::placeholder {
  color: #b8c5cf;
}

.coverage-check__controls .download-btn {
  min-width: 168px;
}

.coverage-check__result {
  display: grid;
  gap: 2px;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 9px;
  background: rgba(255, 255, 255, .06);
}

.coverage-check__result strong {
  color: #6ff0b3;
  font-size: 16px;
  font-weight: 800;
}

.coverage-check__result span {
  color: #d9edf1;
  font-size: 14px;
  line-height: 1.6;
}

.coverage-check__result.is-uncovered strong {
  color: #ff8d91;
}

.coverage-check .app-cta {
  width: fit-content;
}

.coverage-check--modal {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.coverage-popup[hidden] {
  display: none;
}

.coverage-popup {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(7, 17, 27, .72);
  backdrop-filter: blur(6px);
}

.coverage-popup__panel {
  position: relative;
  width: min(560px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 28px 28px 24px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  background: linear-gradient(145deg, #0b2a38 0%, #07111b 64%);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .38);
}

.coverage-popup__panel::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--green));
  content: "";
}

.coverage-popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  cursor: pointer;
}

.coverage-popup__close::before,
.coverage-popup__close::after {
  grid-area: 1 / 1;
  width: 15px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.coverage-popup__close::before {
  transform: rotate(45deg);
}

.coverage-popup__close::after {
  transform: rotate(-45deg);
}

.coverage-popup__close:hover,
.coverage-popup__close:focus-visible {
  background: var(--green);
}

.coverage-popup__eyebrow {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 12px;
  font-style: italic;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.coverage-check--modal .coverage-check__head h3 {
  font-size: clamp(22px, 3vw, 28px);
}

.coverage-check--modal .app-cta {
  width: 100%;
  justify-content: center;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  gap: 42px;
  align-items: start;
}

.contact-card {
  padding: 28px;
}

.contact-card a {
  display: inline-block;
  margin-top: 10px;
  color: var(--green);
  font-weight: 800;
}

.contact-card a:hover,
.contact-card a:focus-visible {
  color: var(--red);
  transform: translateX(3px);
}

.legal-shell {
  display: grid;
  grid-template-columns: minmax(210px, 270px) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 28px;
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.legal-nav a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.legal-nav a:hover,
.legal-nav a:focus-visible {
  color: var(--green);
  transform: translateX(3px);
}

.legal-content {
  display: grid;
  gap: 26px;
}

.legal-content section {
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.legal-content h2 {
  font-size: 22px;
}

.legal-content p,
.legal-content ul,
.legal-content ol {
  margin: 12px 0 0;
}

.legal-content ul,
.legal-content ol {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.emergency-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  width: min(248px, calc(100vw - 32px));
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(7, 17, 27, .24);
  transition: box-shadow .25s ease, transform .25s ease;
}

.emergency-float:hover,
.emergency-float:focus-within {
  box-shadow: 0 24px 52px rgba(7, 17, 27, .3);
  transform: translateY(-3px);
}

.emergency-float__tap {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 10px;
  align-items: center;
  padding: 13px 15px 12px;
  background: var(--red);
  color: #fff;
}

.emergency-float__tap span {
  grid-row: 1 / 3;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  font-size: 20px;
}

.emergency-float__tap span img {
  width: 23px;
  height: 23px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.emergency-float__tap strong {
  font-size: 15px;
  line-height: 1.05;
}

.emergency-float__tap small {
  font-size: 11px;
  font-weight: 700;
}

.emergency-float__actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 10px;
  align-items: center;
  padding: 12px;
}

.emergency-float__actions p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
}

.emergency-float__actions a {
  display: inline-flex;
  min-width: 92px;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.emergency-float__actions a:last-child {
  background: var(--ink);
}

.emergency-float a:hover,
.emergency-float a:focus-visible {
  filter: brightness(.94);
  transform: translateY(-1px);
}

.exit-popup[hidden] {
  display: none;
}

.exit-popup {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(7, 17, 27, .72);
  backdrop-filter: blur(6px);
}

.exit-popup__panel {
  position: relative;
  display: grid;
  width: min(520px, 100%);
  overflow: hidden;
  padding: 38px 38px 34px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 10px;
  background: linear-gradient(145deg, #0b2a38 0%, #07111b 64%);
  color: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .38);
  text-align: center;
}

.exit-popup__panel::before {
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--red), var(--green));
  content: "";
}

.exit-popup__panel::after {
  position: absolute;
  right: -52px;
  bottom: -60px;
  color: rgba(255, 255, 255, .05);
  font-size: 164px;
  font-weight: 900;
  line-height: .8;
  content: "JIB";
}

.exit-popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  cursor: pointer;
}

.exit-popup__close::before,
.exit-popup__close::after {
  grid-area: 1 / 1;
  width: 15px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.exit-popup__close::before {
  transform: rotate(45deg);
}

.exit-popup__close::after {
  transform: rotate(-45deg);
}

.exit-popup__close:hover,
.exit-popup__close:focus-visible {
  background: var(--red);
}

.exit-popup__badge {
  z-index: 1;
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 34px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(230, 35, 40, .28);
}

.exit-popup__copy,
.exit-popup__actions {
  position: relative;
  z-index: 1;
}

.exit-popup__copy p {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 22px;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.exit-popup__copy h2 {
  margin: 0;
  font-size: clamp(31px, 4vw, 46px);
  font-style: italic;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.exit-popup__copy span {
  display: block;
  max-width: 390px;
  margin: 14px auto 0;
  color: #d9edf1;
  font-size: 15px;
  line-height: 1.7;
}

.exit-popup__actions {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 26px;
}

.exit-popup__actions a {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.exit-popup__primary {
  background: var(--red);
}

.exit-popup__secondary {
  background: var(--green);
}

.exit-popup__actions small {
  color: #9fb2bd;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.exit-popup__actions a:hover,
.exit-popup__actions a:focus-visible {
  filter: brightness(.95);
  transform: translateY(-2px);
}

.footer {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr repeat(3, .8fr) 1.35fr;
  gap: 70px;
  width: 100%;
  min-height: 490px;
  margin-top: 0;
  padding: 100px max(100px, calc((100vw - 1240px) / 2)) 42px;
  overflow: hidden;
  background: #07111b;
  color: #fff;
}

.footer-logo {
  width: 112px;
  margin-top: 10px;
}

.footer h2 {
  margin: 0 0 28px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.footer a {
  display: block;
  color: #c7d0d8;
}

.footer a:hover,
.footer a:focus-visible {
  color: #fff;
  transform: translateX(3px);
}

.footer a + a {
  margin-top: 14px;
}

.social__icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer .social__icons a {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 14px;
  transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease, transform .2s ease;
}

.footer .social__icons a:hover,
.footer .social__icons a:focus-visible {
  border-color: transparent;
  background: var(--red);
  box-shadow: 0 10px 20px rgba(230, 35, 40, .26);
  color: #fff;
  transform: translateY(-2px) scale(1.06);
}

.footer .social__icons a:nth-child(2):hover,
.footer .social__icons a:nth-child(2):focus-visible,
.footer .social__icons a:nth-child(4):hover,
.footer .social__icons a:nth-child(4):focus-visible {
  background: var(--green);
  box-shadow: 0 10px 20px rgba(11, 174, 97, .24);
}

.social p {
  margin: 28px 0 12px;
}

.social form {
  display: flex;
  width: min(280px, 100%);
  min-height: 48px;
  overflow: hidden;
  border: 1px solid var(--red);
  border-radius: 5px;
  background: #fff;
}

.social input {
  min-width: 0;
  flex: 1;
  border: 0;
  padding: 0 18px;
  font: inherit;
}

.social button {
  width: 96px;
  border-radius: 0;
  background: var(--green);
  font-size: 14px;
  text-transform: uppercase;
}

.social button:hover,
.social button:focus-visible {
  background: #087e45;
}

.copyright {
  position: absolute;
  right: max(72px, calc((100vw - 1220px) / 2));
  bottom: 28px;
  left: max(72px, calc((100vw - 1220px) / 2));
  z-index: 1;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  text-align: center;
}

@media (max-width: 1180px) {
  .site-header {
    width: calc(100% - 40px);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 108px 24px 34px;
    text-align: center;
  }

  .hero::before {
    inset: 0;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, .92) 35%, rgba(255, 255, 255, 0) 70%);
  }

  .hero__image {
    position: relative;
    inset: auto;
    order: -1;
    height: 365px;
    margin: -108px -24px 0;
    background-position: 62% top;
  }

  .hero__content {
    max-width: 580px;
    margin: -300px auto 0;
    padding: 0;
  }

  .hero__content h1 {
    font-size: 38px;
  }

  .hero__service-title {
    font-size: 18px;
  }

  .hero__sub {
    margin-bottom: 16px;
    font-size: 13px;
  }

  .app-cta {
    min-height: 36px;
    padding: 0 16px;
    font-size: 14px;
  }

  .app-cta span {
    width: 14px;
    height: 14px;
  }

  .hero .store-row,
  .area .store-row {
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
  }

  .store-badge {
    min-width: 112px;
    min-height: 36px;
    font-size: 9px;
  }

  .store-badge b {
    font-size: 6px;
  }

  .rating {
    margin-top: 18px;
    font-size: 9px;
  }

  .hero__phone {
    position: relative;
    right: auto;
    bottom: auto;
    justify-content: center;
    gap: 22px;
    margin: 270px auto 0;
  }

  .hero__phone img {
    width: 195px;
  }

  .status-list {
    gap: 22px;
    text-align: left;
  }

  .features {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    border-radius: 0;
  }

  .features article {
    border-right: 1px solid rgba(255, 255, 255, .24);
    border-bottom: 1px solid rgba(255, 255, 255, .16);
  }

  .features article:nth-child(even),
  .features article:last-child {
    border-right: 0;
  }

  .features article:last-child {
    grid-column: 1 / -1;
  }

  .section-pad {
    padding: 52px 24px 0;
  }

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

  .worry-check__panel {
    width: 100%;
    padding: 32px 24px;
  }

  .worry-check__options {
    grid-template-columns: repeat(3, 1fr);
  }

  .worry-check__result {
    grid-template-columns: auto 1fr;
  }

  .worry-check__result .app-cta {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .step-grid article:not(:last-child)::after {
    display: none;
  }

  .review-band {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    border-radius: 0;
  }

  .mini-app {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 430px;
  }

  .area {
    grid-template-columns: 1fr;
    padding: 54px 24px;
    text-align: center;
  }

  .area__copy {
    margin: auto;
  }

  .area li {
    text-align: left;
  }

  .provider {
    width: 100%;
    grid-template-columns: 180px 1fr;
    margin-top: 0;
    margin-bottom: 0;
    border-radius: 0;
    padding: 20px 24px 0;
  }

  .provider--home {
    padding: 36px 24px;
  }

  .provider ul,
  .provider a {
    grid-column: 2;
  }

  .footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px;
    margin-top: 0;
    padding: 62px 48px 92px;
  }

  .copyright {
    right: 48px;
    left: 48px;
  }
}

@media (max-width: 1024px) {
  .site-header {
    top: 12px;
    align-items: flex-start;
    width: calc(100% - 32px);
    min-height: 68px;
    padding: 12px 16px;
    border-radius: 12px;
  }

  .nav-toggle-btn {
    position: relative;
    z-index: 12;
    display: grid;
    width: 44px;
    height: 44px;
    margin-left: auto;
    place-items: center;
    border: 1px solid rgba(7, 17, 27, .12);
    border-radius: 8px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 10px 24px rgba(7, 17, 27, .1);
    cursor: pointer;
  }

  .nav-toggle:focus-visible + .nav-toggle-btn {
    outline: 3px solid rgba(11, 174, 97, .35);
    outline-offset: 3px;
  }

  .nav-toggle-btn span {
    grid-area: 1 / 1;
    width: 21px;
    height: 2px;
    border-radius: 999px;
    background: var(--ink);
    transition: transform .22s ease, opacity .18s ease;
  }

  .nav-toggle-btn span:nth-child(1) {
    transform: translateY(-7px);
  }

  .nav-toggle-btn span:nth-child(3) {
    transform: translateY(7px);
  }

  .nav-toggle:checked + .nav-toggle-btn span:nth-child(1) {
    transform: rotate(45deg);
  }

  .nav-toggle:checked + .nav-toggle-btn span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked + .nav-toggle-btn span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .nav-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 11;
    display: flex;
    width: min(340px, calc(100vw - 48px));
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    border: 1px solid rgba(7, 17, 27, .08);
    border-radius: 12px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 22px 44px rgba(7, 17, 27, .16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .22s ease, transform .22s ease;
  }

  .nav-toggle:checked ~ .nav-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    font-size: 14px;
  }

  .nav a {
    padding: 13px 4px;
    border-bottom: 1px solid #edf1f4;
  }

  .nav a::after {
    display: none;
  }

  .nav-panel .download-btn {
    width: 100%;
    min-width: 0;
    min-height: 46px;
  }

  .hero {
    padding-top: 96px;
  }

  .hero__image {
    height: 430px;
    background-position: 68% top;
  }

  .hero__content {
    margin-top: -350px;
  }

  .hero__phone {
    margin-top: 318px;
    flex-direction: row;
    align-items: center;
  }

  .features {
    margin-top: 22px;
  }

  .step-grid {
    gap: 15px;
  }

  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .review-band {
    grid-template-columns: 145px 1fr 1fr;
  }

  .review-controls,
  .mini-app {
    grid-column: 1 / -1;
  }

  .provider {
    grid-template-columns: 185px 1fr;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero {
    grid-template-columns: minmax(360px, 38%) 1fr;
    align-items: center;
    min-height: 735px;
    padding: 104px 58px 44px;
    text-align: left;
  }

  .hero::before {
    inset: 0 39% 0 0;
    background: none;
  }

  .hero__image {
    position: absolute;
    inset: 0;
    order: initial;
    height: auto;
    margin: 0;
    background-position: 56% top;
    background-size: cover;
  }

  .hero__content {
    max-width: 450px;
    margin: 0;
    padding-top: 32px;
  }

  .hero__content h1 {
    max-width: none;
    margin: 0;
    font-size: clamp(42px, 3.55vw, 56px);
  }

  .hero__service-title {
    margin-top: 15px;
    font-size: clamp(20px, 1.75vw, 26px);
  }

  .hero__sub {
    margin: 9px 0 34px;
    font-size: 24px;
  }

  .app-cta {
    min-height: 66px;
    padding: 0 32px;
    font-size: 14px;
  }

  .app-cta span {
    width: 24px;
    height: 24px;
  }

  .hero .store-row {
    justify-content: flex-start;
    gap: 12px;
    margin-top: 27px;
  }

  .store-badge {
    min-width: 157px;
    min-height: 54px;
    padding: 8px 14px;
    column-gap: 8px;
    font-size: 13px;
  }

  .store-badge img {
    width: 25px;
    height: 25px;
  }

  .store-badge b {
    font-size: 8px;
  }

  .rating {
    margin: 34px 0 0 12px;
    font-size: 12px;
  }

  .hero__phone {
    position: absolute;
    right: 62px;
    bottom: 54px;
    flex-direction: column;
    align-items: flex-end;
    justify-content: initial;
    gap: 17px;
    margin: 0;
  }

  .hero__phone img {
    width: 198px;
  }

  .status-list {
    gap: 15px;
  }

  .service-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .service-card {
    grid-column: span 2;
  }

  .service-card:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .service-card:nth-child(5) {
    grid-column: 4 / span 2;
  }

  .review-band {
    width: min(1240px, calc(100% - 72px));
    grid-template-columns: 118px minmax(0, 1fr) minmax(0, 1fr) 48px 292px;
    gap: 14px;
    min-height: 232px;
    padding: 24px;
    border-radius: 14px;
    margin-top: 30px;
  }

  .quote {
    grid-template-columns: 58px minmax(0, 1fr);
    column-gap: 12px;
    padding-left: 14px;
  }

  .quote .avatar {
    width: 58px;
    height: 58px;
  }

  .review-controls,
  .mini-app {
    grid-column: auto;
  }

  .review-controls {
    padding-bottom: 12px;
  }

  .mini-app {
    max-width: none;
    grid-template-columns: minmax(0, 1fr) 112px;
    justify-self: stretch;
  }

.mini-app h3 {
    font-size: 20px;
  }

  .mini-app img {
    width: 132px;
    transform: scale(1.28) translateY(2px);
  }

  .area {
    grid-template-columns: .78fr 1.22fr;
    gap: 34px;
    align-items: center;
    min-height: 515px;
    padding: 58px 48px 46px;
    text-align: left;
  }

  .area__copy {
    margin: 0;
  }

  .area li {
    text-align: left;
  }

  .area .store-row {
    justify-content: flex-start;
  }

  .map-card {
    min-height: 396px;
    justify-content: flex-end;
    overflow: visible;
  }

  .map-card img {
    width: min(650px, 112%);
    max-width: none;
  }

  .provider {
    width: calc(100% - 72px);
    grid-template-columns: 210px minmax(190px, 1fr) auto auto;
    gap: 18px;
    min-height: 160px;
    margin-top: 20px;
    padding: 15px 24px;
    border-radius: 9px;
  }

  .provider__people {
    height: 208px;
    margin-top: -58px;
  }

  .provider__people img {
    width: 260px;
    transform: translate(-18px, 10px);
  }

  .provider h2 {
    font-size: 22px;
  }

  .provider ul,
  .provider a {
    grid-column: auto;
  }

  .provider ul {
    flex-wrap: nowrap;
    gap: 14px;
  }

  .provider li {
    grid-template-columns: 30px minmax(0, 62px);
    gap: 7px;
  }

  .provider a {
    min-width: 150px;
  }

  .footer {
    grid-template-columns: 1.1fr repeat(3, .8fr) 1.35fr;
    gap: 34px;
    min-height: 490px;
    margin-top: 0;
    padding: 86px 42px 42px;
  }

  .footer-logo {
    grid-column: auto;
  }

  .social {
    grid-column: auto;
  }

  .copyright {
    right: 42px;
    left: 42px;
  }
}

@media (max-width: 768px) {
  .site-header {
    top: 10px;
    width: calc(100% - 24px);
  }

  .nav-panel {
    width: min(320px, calc(100vw - 36px));
  }

  .hero {
    padding-right: 30px;
    padding-left: 30px;
    background-image: url("../images/mobile.png");
    background-position: center bottom;
    background-size: 100% auto;
    background-repeat: no-repeat;
    text-align: left;
  }

  .hero::before {
    display: none;
  }

  .hero__image {
    margin-right: -30px;
    margin-left: -30px;
    height: 450px;
    background-position: 72% top;
    background-image: url("../images/hero-mobile.png");
  }

  .hero__content {
    max-width: 360px;
    margin-top: -374px;
    margin-right: auto;
    margin-left: 0;
  }

  .hero__content h1 {
    margin-right: 0;
    margin-left: 0;
  }

  .hero .store-row {
    justify-content: flex-start;
  }

  .rating {
    margin-left: 0;
  }

  .hero__phone {
    margin-top: 30px;
  }

  .features {
    padding: 30px 24px;
  }

  .features article {
    min-height: 170px;
  }

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

  .service-grid {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    grid-auto-columns: unset;
    gap: 16px;
    max-width: 380px;
    margin-inline: auto;
    overflow-x: visible;
  }

  .worry-check__lead {
    font-size: 20px;
  }

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

  .service-card {
    grid-column: auto;
    width: 100%;
    min-height: 280px;
    justify-self: stretch;
  }

  .service-card:nth-child(5) {
    grid-column: auto;
    justify-self: stretch;
    width: 100%;
  }

  .review-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 30px;
  }

  .score,
  .review-controls,
  .mini-app {
    grid-column: 1 / -1;
  }

  .score {
    justify-self: center;
  }

  .quote {
    border-left: 0;
  }

  .review-controls {
    align-self: center;
    padding-bottom: 0;
  }

  .area ul {
    justify-content: center;
  }

  .provider {
    grid-template-columns: 1fr;
    gap: 16px;
    justify-items: center;
    padding: 28px 24px;
    text-align: center;
  }

  .provider__people {
    width: min(330px, 100%);
    height: 245px;
    margin-top: 0;
    justify-self: center;
  }

  .provider__people img {
    width: 330px;
    transform: translateY(6px);
  }

  .provider h2 {
    margin-inline: auto;
  }

  .provider ul {
    grid-column: auto;
    flex-wrap: wrap;
    justify-content: center;
  }

  .provider a {
    grid-column: auto;
    justify-self: center;
  }
 
  }


@media (max-width: 620px) {
  .site-header {
    min-height: 62px;
  }

  .logo {
    width: 58px;
    height: auto;
  }

  .download-btn {
    display: none;
  }

  .nav-panel .download-btn {
    display: inline-flex;
  }

  .hero {
    padding-inline: 18px;
    text-align: center;
  }

  .hero::before {
    display: none;
  }

  .hero__image {
    height: 470px;
    background-position: 72% 0;
    background-size: auto 470px;
  }

  .hero__content {
    margin-top: -394px;
  }

  .hero__content h1 {
    max-width: 310px;
    margin: auto;
    font-size: 23px;
  }

  .hero__service-title {
    font-size: 13px;
  }

  .hero__phone {
    align-items: center;
    margin-top: 302px;
  }

  .hero__phone img {
    width: 172px;
  }

  .status-list li {
    padding-left: 34px;
    font-size: 10px;
  }

  .status-list {
    min-width: 142px;
    gap: 10px;
    padding: 12px 10px;
    border-radius: 10px;
  }

  .status-list li::before {
    width: 22px;
    height: 22px;
  }

  .features {
    padding: 34px 18px;
  }

  .features article {
    min-height: 150px;
    padding: 0 14px;
  }

  .features span {
    font-size: 38px;
  }

  .features h3 {
    font-size: 11px;
  }

  .features p {
    font-size: 10px;
  }

  .section-title {
    gap: 12px;
    margin-bottom: 30px;
  }

  .section-title h2 {
    font-size: 20px;
  }

  .section-title span {
    width: 34px;
    height: 2px;
  }

  .step-grid {
    gap: 18px;
  }

  .step-grid article {
    min-height: 174px;
    padding: 24px 14px 18px;
  }

  .step-grid b {
    top: 12px;
    left: 14px;
    font-size: 42px;
  }

  .step-grid span,
  .service-card > span {
    width: 52px;
    height: 52px;
    font-size: 24px;
  }

  .step-grid h3,
  .service-card h3 {
    font-size: 14px;
  }

  .step-grid p,
  .service-card p {
    font-size: 12px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    grid-auto-columns: unset;
    gap: 14px;
    max-width: 100%;
    margin-inline: auto;
    overflow-x: visible;
    padding: 0;
    scroll-snap-type: none;
  }

  .worry-check {
    padding-top: 46px;
  }

  .worry-check__panel {
    padding: 24px 16px;
  }

  .worry-check__lead {
    font-size: 18px;
  }

  .worry-check__options {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 18px;
  }

  .worry-check__options button {
    gap: 9px;
    padding: 16px 10px;
    font-size: 12px;
  }

  .worry-check__icon {
    width: 46px;
    height: 46px;
  }

  .worry-check__result {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
    margin-top: 18px;
    padding: 18px;
    text-align: center;
  }

  .worry-check__result .app-cta {
    width: 100%;
    justify-content: center;
  }

  .worry-check__response {
    font-size: 15px;
  }

  .service-card {
    grid-column: auto;
    min-height: 260px;
    width: 100%;
    justify-self: stretch;
    scroll-snap-align: none;
  }

  .service-photo {
    height: 76px;
    margin-bottom: 30px;
  }

  .service-card > span {
    top: 54px;
  }

  .review-band {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 30px 18px 0;
  }

  .score {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .score strong {
    font-size: 21px;
  }

  .score p {
    font-size: 8px;
  }

  .quote {
    min-height: 78px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 5px;
  }

  .quote p {
    font-size: 9px;
  }

  .quote .avatar {
    width: 46px;
    height: 46px;
    border-width: 7px;
  }

  .mini-app {
    grid-template-columns: 1fr 110px;
  }

  .mini-app h3 {
    font-size: 18px;
  }

  .mini-app p {
    font-size: 9px;
  }

  .mini-app img {
    width: 118px;
  }

  .area h2 {
    font-size: 27px;
  }

  .area ul {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .area li {
    padding-left: 22px;
    font-size: 8px;
  }

  .area li::before {
    width: 16px;
    height: 16px;
    font-size: 10px;
  }

  .map-card {
    min-height: 250px;
  }

  .provider {
    justify-items: stretch;
    text-align: left;
    grid-template-columns: 155px 1fr;
    gap: 12px;
    min-height: 196px;
    padding: 16px 18px 0;
  }

  .provider__people {
    width: auto;
    height: 170px;
    margin-top: 0;
    justify-self: auto;
  }

  .provider h2 {
    font-size: 14px;
  }

  .provider p,
  .provider li {
    font-size: 8px;
  }

  .provider ul {
    grid-column: 2;
    gap: 12px;
  }

  .provider a {
    grid-column: 2;
    min-width: 128px;
    min-height: 34px;
    font-size: 14px;
  }

  .footer {
    padding: 48px 42px 92px;
  }

  .footer-logo {
    grid-column: 1 / -1;
  }

  .footer h2 {
    margin-bottom: 18px;
    font-size: 15px;
  }

  .footer a,
  .footer p {
    font-size: 10px;
  }

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

  .social form {
    max-width: 302px;
  }

  .copyright {
    right: 24px;
    left: 24px;
    font-size: 8px;
  }

  .emergency-float {
    right: 14px;
    bottom: 144px;
    width: min(224px, calc(100vw - 28px));
  }

  .emergency-float__tap {
    grid-template-columns: 30px 1fr;
    padding: 11px 12px 10px;
  }

  .emergency-float__tap span {
    width: 30px;
    height: 30px;
    font-size: 17px;
  }

  .emergency-float__tap strong {
    font-size: 13px;
  }

  .emergency-float__actions {
    gap: 7px;
    padding: 10px;
  }

  .emergency-float__actions a {
    min-width: 82px;
    min-height: 30px;
    font-size: 10px;
  }

  .exit-popup {
    padding: 18px;
  }

  .coverage-popup {
    padding: 18px;
  }

  .coverage-popup__panel {
    padding: 24px 20px 20px;
  }

  .exit-popup__panel {
    padding: 34px 22px 26px;
  }

  .exit-popup__copy p {
    font-size: 17px;
  }

  .exit-popup__copy span {
    font-size: 13px;
  }

  .exit-popup__actions {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .exit-popup__actions a {
    min-height: 46px;
  }
}

@media (max-width: 425px) {
  .site-header {
    top: 8px;
    width: calc(100% - 20px);
    min-height: 58px;
    padding: 10px 12px;
    border-radius: 10px;
  }

  .logo {
    width: 54px;
  }

  .nav-toggle-btn {
    width: 40px;
    height: 40px;
    border-radius: 7px;
  }

  .nav-panel {
    top: calc(100% + 8px);
    width: calc(100vw - 20px);
    padding: 14px;
    border-radius: 9px;
  }

  .nav a {
    padding: 11px 2px;
    font-size: 13px;
  }

  .nav-panel .download-btn {
    min-height: 42px;
    font-size: 14px;
  }

  .hero {
    padding-top: 84px;
    padding-right: 16px;
    padding-left: 16px;
    background-image: url(../images/mobile.png);
    text-align: center;
  }

  .hero__image {
    height: 455px;
    margin: -84px -16px 0;
    background-position: 73% top;
    background-size: auto 455px;
  }

  .hero__content {
    display: flex;
    flex-wrap: wrap;
    column-gap: 7px;
    row-gap: 0;
    justify-content: center;
    max-width: 100%;
    margin-top: -384px;
    margin-right: auto;
    margin-left: auto;
  }

  .hero__content h1 {
    width: 100%;
    max-width: 290px;
    margin-right: auto;
    margin-left: auto;
    font-size: 22px;
    line-height: 1.16;
  }

  .hero__service-title {
    width: 100%;
    margin-top: 8px;
    font-size: 12px;
  }

  .hero__sub {
    width: 100%;
    margin-top: 6px;
    margin-bottom: 12px;
  }

  .hero .app-cta {
    min-height: 34px;
    padding: 0 12px;
    gap: 6px;
    font-size: 14px;
  }

  .hero .store-row {
    flex-wrap: nowrap;
    gap: 7px;
    margin-top: 0;
  }

  .store-badge {
    min-width: 92px;
    min-height: 34px;
    padding: 6px 9px;
    column-gap: 6px;
    font-size: 8px;
  }

  .store-badge img {
    width: 18px;
    height: 18px;
  }

  .rating {
    width: 100%;
    margin-left: 0;
  }

  .hero__phone {
    margin-top: 30px;
    flex-direction: row;
    gap: 12px;
  }

  .hero__phone img {
    width: 158px;
  }

  .status-list {
    gap: 14px;
  }

  .status-list li {
    padding-left: 29px;
    font-size: 9px;
  }

  .status-list span {
    font-size: 8px;
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0;
    padding: 28px 14px;
  }

  .features article {
    min-height: 142px;
    padding: 0 10px;
  }

  .features span {
    width: 58px;
    height: 58px;
  }

  .section-pad {
    padding: 46px 18px 0;
  }

  .worry-check {
    padding-top: 42px;
  }

  .step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .step-grid article {
    min-height: 168px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .services {
    padding-bottom: 44px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    grid-auto-columns: unset;
    gap: 12px;
    max-width: 100%;
    overflow-x: visible;
    scroll-snap-type: none;
  }

  .service-card {
    width: 100%;
    min-height: 250px;
    padding-bottom: 12px;
    border-radius: 9px;
    scroll-snap-align: none;
  }

  .service-card:nth-child(5) {
    grid-column: auto;
    justify-self: stretch;
    width: 100%;
  }

  .service-card--tow .service-photo {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .service-card a {
    margin-bottom: 4px;
  }

  .service-card p {
    padding: 0 11px;
  }

  .review-band {
    padding: 24px 18px 0;
  }

  .mini-app {
    grid-template-columns: minmax(0, 1fr) 98px;
    gap: 6px;
  }

  .mini-app .store-row {
    flex-wrap: nowrap;
  }

  .mini-app .store-badge {
    min-width: 92px;
  }

  .area {
    min-height: auto;
    padding: 42px 18px;
  }

  .area h2 {
    font-size: 24px;
  }

  .area ul {
    margin-top: 22px;
  }

  .map-card {
    min-height: 185px;
  }

  .provider {
    grid-template-columns: 1fr;
    min-height: 160px;
    gap: 16px;
    justify-items: center;
    padding: 28px 24px;
    margin-top: 0;
    margin-bottom: 0;
    text-align: center;
  }

  .provider__people {
    width: min(330px, 100%);
    height: 245px;
    margin-top: 0;
    justify-self: center;
  }

  .provider__people img {
    width: 330px;
    transform: translateY(6px);
  }

  .provider h2 {
    margin-inline: auto;
  }

  .provider ul {
    display: flex;
    grid-column: auto;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
  }

  .provider li {
    grid-template-columns: 38px minmax(0, 72px);
    gap: 10px;
  }

  .provider li img {
    width: 34px;
    height: 31px;
  }

  .provider li:first-child img {
    width: 40px;
    height: 50px;
  }

  .provider a {
    grid-column: auto;
    justify-self: center;
    min-width: 166px;
  }

  .footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 28px;
    padding: 44px 34px 90px;
  }

  .social form {
    min-height: 42px;
  }
}

@media (max-width: 1180px) {
  :root {
    --page-hero-height: clamp(440px, 52vw, 520px);
  }

  .page-hero {
    grid-template-columns: 1fr;
    padding: 110px 24px 64px;
  }

  .page-section {
    padding: 58px 24px 0;
  }

  .page-section--last {
    padding-bottom: 0;
  }

  .page-cta {
    padding-right: 24px;
    padding-left: 24px;
  }

  .coverage-check {
    padding: 28px 24px;
  }

  .provider--home {
    padding-right: 24px;
    padding-left: 24px;
  }

  .card-grid,
  .testimonial-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 768px) {
  :root {
    --page-hero-height: clamp(400px, 62vw, 460px);
  }

  .page-hero {
    padding-top: 94px;
    padding-bottom: 56px;
  }

  .page-hero h1 {
    font-size: 36px;
  }

  .page-hero__lead {
    font-size: 15px;
  }

  .page-intro,
  .service-detail,
  .legal-shell {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .legal-nav {
    position: static;
  }

  .page-cta {
    grid-template-columns: 1fr;
  }

  .coverage-check__controls {
    flex-direction: column;
  }

  .coverage-check__controls .download-btn {
    width: 100%;
  }
}

@media (max-width: 620px) {
  :root {
    --page-hero-height: 400px;
  }

  .page-hero {
    padding: 86px 18px 52px;
    background-position: 60% top;
  }

  .page-hero h1 {
    font-size: 30px;
  }

  .page-hero__actions {
    gap: 10px;
  }

  .page-hero__actions .app-cta,
  .page-hero__actions .text-link {
    min-height: 44px;
    padding: 0 16px;
    font-size: 14px;
  }

  .page-section {
    padding: 48px 18px 0;
  }

  .page-section--last {
    padding-bottom: 0;
  }

  .card-grid,
  .testimonial-grid,
  .contact-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .info-card,
  .contact-card {
    padding: 22px;
  }

  .page-cta {
    padding: 30px 18px;
  }

  .coverage-check {
    padding: 22px 18px;
  }

  .coverage-check__head h3 {
    font-size: 20px;
  }

  .coverage-check__result {
    min-height: 64px;
  }

  .coverage-check .app-cta {
    width: 100%;
    justify-content: center;
  }

  .provider--home {
    padding: 30px 18px;
  }
}

@media (max-width: 425px) {
  .page-hero h1 {
    font-size: 26px;
  }

  .stat-card strong {
    font-size: 29px;
  }
}

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

  .hero__phone:hover img,
  .features article:hover,
  .features article:hover img,
  .step-grid article:hover,
  .step-grid article:hover span img,
  .service-card:hover,
  .service-card:hover .service-photo,
  .service-card:hover > span img,
  .quote:hover,
  .quote:hover img,
  .mini-app:hover > img,
  .provider:hover,
  .provider li:hover img,
  .provider--home:hover,
  .provider--home li:hover img,
  .emergency-float:hover {
    transform: none;
  }
}
