@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: #039444;
  --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;
  --z-header: 100;
  --z-float: 30;
  --z-modal: 200;
  --legal-sticky-top: calc(var(--site-header-height, 88px) + 24px);
  --legal-scroll-offset: calc(var(--site-header-height, 88px) + 32px);
  --site-header-height: 88px;
}

* {
  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-x: clip;
  overflow-y: visible;
  padding-bottom: 0;
}

main:has(.legal-shell) {
  overflow: visible;
}

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,
.mini-app__phone,
.provider img {
  transition: transform .28s ease, filter .28s ease;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 88px;
  padding: 8px max(68px, 5vw);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transition: min-height .28s ease, padding .28s ease, background-color .25s ease, border-color .25s ease, box-shadow .25s ease, backdrop-filter .25s ease, -webkit-backdrop-filter .25s ease;
}

.site-header.is-scrolled {
  min-height: 84px;
  padding-top: 6px;
  padding-bottom: 6px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(7, 17, 27, 0.06);
  box-shadow: 0 10px 28px rgba(7, 17, 27, .1);
}

@media (min-width: 1025px) {
  .site-header.is-scrolled {
    -webkit-backdrop-filter: blur(18px) saturate(1.15);
    backdrop-filter: blur(18px) saturate(1.15);
  }
}

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

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

.site-header .logo img,
.footer-logo.logo img {
  border-radius: 12px;
}

.site-header .logo {
  display: grid;
  flex: 0 0 auto;
  width: 76px;
  height: 76px;
  padding: 6px;
  place-items: center;
  overflow: hidden;
  border-radius: 16px;
  background: var(--green);
  box-shadow: 0 14px 30px rgba(7, 17, 27, .14);
  transition: width .28s ease, height .28s ease, padding .28s ease, border-radius .28s ease, box-shadow .28s ease, transform .28s ease;
}

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

.site-header.is-scrolled .logo {
  width: 58px;
  height: 58px;
  padding: 4px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(7, 17, 27, .1);
}

.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;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(22px, 2.4vw, 40px);
}

.nav {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.55vw, 44px);
  font-size: 13px;
  font-weight: 500;
  transform: translate(-50%, -50%);
}

.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;
  padding: 0 24px;
  gap: 10px;
  font-size: 14px;
  letter-spacing: .2px;
}

.download-icon {
  display: inline-grid;
  flex-shrink: 0;
  place-items: center;
  width: 20px;
  height: 20px;
}

.download-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.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, 5vw) 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:not(.hero__service-title) {
  display: block;
  color: var(--green);
}

.hero__service-title {
  display: block;
  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: var(--green);
  font-size: 14px;
}

.app-cta span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  color: var(--green);
}

.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;
  overflow: hidden;
  pointer-events: none;
}

.hero__image picture,
.hero__image img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__image img {
  object-fit: cover;
  object-position: center top;
}

.hero__phone {
  --hero-phone-width: 150px;
  --hero-track-width: 210px;
  position: absolute;
  right: max(24px, 5vw);
  bottom: 54px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: start;
  width: var(--hero-track-width);    
}

.hero__phone > img {
  display: block; 
  align-self: left;
  justify-self: left;
  width: var(--hero-phone-width);
  max-width: 100%;
  height: auto;
  border-radius: 23px;
  filter: drop-shadow(0 22px 20px rgba(0, 0, 0, .22));  
  object-fit: contain;
}

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

.status-list {
  --status-line: #c8d0d7;
  --status-node-size: 10px;
  --status-icon-size: 40px;
  position: relative;
  display: grid;
  gap: 0;
  width: 100%;
  margin: 0;
  padding: 4px 0;
  list-style: none;
  background: transparent;
  box-shadow: none;
}

.status-list::before {
  position: absolute;
  top: calc(var(--status-icon-size) / 2);
  bottom: calc(var(--status-icon-size) / 2);
  left: calc(var(--status-node-size) / 2 - 1px);
  border-left: 2px dashed var(--status-line);
  content: "";
}

.status-list li {
  position: relative;
  display: grid;
  grid-template-columns: var(--status-node-size) var(--status-icon-size) minmax(0, 1fr);
  align-items: center;
  column-gap: 8px;
  padding: 8px 0;
}

.status-list li::after {
  position: absolute;
  top: 50%;
  left: calc(var(--status-node-size) + 1px);
  width: 10px;
  border-top: 2px dotted var(--status-line);
  content: "";
  transform: translateY(-50%);
}

.status-list__node {
  position: relative;
  z-index: 1;
  width: var(--status-node-size);
  height: var(--status-node-size);
  border: 3px solid #cfd6dc;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(191, 196, 200, .28);
  justify-self: center;
}

.status-list li.done .status-list__node {
  border-color: var(--green);
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(11, 174, 97, .18);
}

.status-list__icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: var(--status-icon-size);
  height: var(--status-icon-size);
  place-items: center;
  border-radius: 50%;
  background: #b8bec5;
  color: #fff;
  font-size: 15px;
  box-shadow: 0 6px 14px rgba(7, 17, 27, .1);
}

.status-list li.done .status-list__icon {
  background: var(--green);
  box-shadow: 0 8px 18px rgba(11, 174, 97, .22);
}

.status-list__icon i {
  line-height: 1;
}

.status-list__icon img {
  display: block;
  width: 78%;
  height: 78%;
  object-fit: contain;
  object-position: center;
  filter: brightness(0) invert(1);
  transform: none;
  border-radius: 0;
  pointer-events: none;
}

.status-list__copy strong {
  display: block;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.15;
}

.status-list li:not(.done) .status-list__copy strong {
  color: #9eb0bc;
}

.status-list__copy span {
  display: block;
  margin-top: 1px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
}

.hero .status-list__copy span {
  color: rgba(255, 255, 255, .92);
  text-shadow: 0 1px 4px rgba(7, 17, 27, .45);
}

.features,
.review-band,
.footer {
  width: max(1240px, calc(90%));
  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;
  grid-template-rows: 72px 42px minmax(44px, auto);
  align-items: center;
  align-content: start;
  justify-items: center;
  min-height: 178px;
  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: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-inline: auto;
}

.features span img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 72px;
  max-height: 72px;
  margin-inline: auto;
  object-fit: contain;
}

.features article:nth-child(1) span img,
.features article:nth-child(2) span img,
.features article:nth-child(3) span img,
.features article:nth-child(4) span img,
.features article:nth-child(5) span img {
  width: 100%;
  max-width: 72px;
  max-height: 72px;
}

.features h3 {
  width: 100%;
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

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

.features p {
  width: 100%;
  margin-top: 6px;
  text-align: center;
}

.section-pad {
  padding: 66px max(68px, 5vw) 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;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto;
  justify-items: center;
  align-content: start;
  gap: 0;
  min-height: 232px;
  padding: 34px 24px 24px;
  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%;
  left: calc(100% + 25px);
  color: var(--green);
  font-size: 30px;
  content: "\22EF\203A";
  transform: translate(-50%, -50%);
}

.step-grid b {
  position: absolute;
  top: 34px;
  left: 24px;
  display: flex;
  align-items: center;
  height: 72px;
  margin: 0;
  color: #dfe2e5;
  font-size: 58px;
  font-style: italic;
  line-height: 1;
}

.step-grid span{
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  justify-self: center;
  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);
}

.service-card > span i {
  color: #fff;
  font-size: 34px;
}

.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 {
  grid-column: 1 / -1;
  grid-row: 2;
  margin: 14px 0 6px;
  font-size: 15px;
  line-height: 1.2;
}

.step-grid p {
  grid-column: 1 / -1;
  grid-row: 3;
  margin: 0;
}
.service-card h3 {
  margin: 24px 0 6px;
  min-height: 2.4em;
  padding: 0 12px;
  font-size: 15px;
  line-height: 1.2;
  text-transform: uppercase;
}

.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(3, minmax(0, 1fr));
  gap: 15px;
}

.service-slider-controls {
  display: none;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  padding-bottom: 72px;
  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;
  cursor: pointer;
  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: 32px;
  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.webp");
}

.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/lockout_image.webp");
}

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

.service-card--advisor .service-photo {
  background-image: url("../images/advisor.webp");
  background-position: center top;
}

.service-card > span {
  position: absolute;
  top: 88px;
  left: 50%;
  z-index: 1;
  width: 82px;
  height: 82px;
  font-size: 26px;
  transform: translateX(-50%);
  pointer-events: none;
}

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

.service-card__link {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: block;
  width: auto;
  height: auto;
  margin: 0;
  border-radius: inherit;
  background: transparent;
  color: transparent;
  font-size: 0;
  text-decoration: none;
  box-shadow: none;
}

.service-card__link i {
  position: absolute;
  left: 50%;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 18px;
  box-shadow: 0 10px 22px rgba(230, 35, 40, .24);
  transform: translateX(-50%);
  transition: background .2s ease, box-shadow .2s ease;
  pointer-events: none;
}

.service-card:hover .service-card__link i,
.service-card:focus-within .service-card__link i,
.service-card__link:hover i,
.service-card__link:focus-visible i {
  background: #d9141f;
  color: #fff;
  box-shadow: 0 14px 28px rgba(230, 35, 40, .32);
}

.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,
.service-card:nth-child(6) > span img {
  width: 70%;
  height: 70%;
}

.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);
}

@media (min-width: 1101px) {
  .review-band {
    grid-template-columns: 142px minmax(0, 1fr) minmax(0, 1fr) minmax(390px, 420px);
    grid-template-rows: minmax(176px, auto) auto;
    row-gap: 12px;
  }

  .review-band .score {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .review-band .quote:nth-of-type(1) {
    grid-column: 2;
    grid-row: 1;
  }

  .review-band .quote:nth-of-type(2) {
    grid-column: 3;
    grid-row: 1;
  }

  .review-band .review-controls {
    grid-column: 2 / 4;
    grid-row: 2;
    align-self: start;
    justify-content: center;
    padding-bottom: 0;
  }

  .review-band .mini-app {
    grid-column: 4;
    grid-row: 1 / 3;
  }
}

.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 minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 18px;
  align-items: start;
  padding: 14px 16px;
  min-height: 176px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 12px;
  background: rgba(255, 255, 255, .04);
  transition: border-color .25s ease, transform .25s ease, background .25s ease;
  touch-action: pan-y;
  cursor: grab;
}

.quote:hover,
.quote:focus-within {
  border-color: rgba(11, 174, 97, .58);
  background: rgba(11, 174, 97, .08);
  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: 2px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  object-fit: cover;
}

.quote p {
  max-height: 110px;
  overflow-y: auto;
  padding-right: 6px;
  font-size: 14px;
  line-height: 1.6;
  scrollbar-width: thin;
  scrollbar-color: rgba(11, 174, 97, .82) rgba(255, 255, 255, .08);
}

.quote p::-webkit-scrollbar {
  width: 6px;
}

.quote p::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, .08);
  border-radius: 999px;
}

.quote p::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(11, 174, 97, .95), rgba(9, 125, 187, .9));
  border-radius: 999px;
}

.quote p::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(16, 199, 113, 1), rgba(10, 154, 228, .95));
}

.quote small {
  margin-top: 2px;
  color: #d9e4ec;
  font-size: 12px;
  letter-spacing: .01em;
}

.mini-app {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 114px;
  gap: 16px;
  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: 12px;
  margin-top: 16px;
}

.review-band .store-badge {
  background: #050608;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.review-band .store-badge img {
  filter: none;
}

.review-band .store-badge b {
  color: rgba(255, 255, 255, 0.78);
}

.review-band .store-badge:hover,
.review-band .store-badge:focus-visible {
  background: #171b21;
  color: #fff;
  box-shadow: none;
}

.mini-app__phone {
  width: 120px;
  height: auto;
  border-radius: 15px;
  object-fit: contain;
  justify-self: end;
  transform: scale(1.08) translateY(2px);
  transform-origin: bottom center;
}

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

.area {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 46px;
  align-items: center;
  min-height: 515px;
  padding: 58px max(104px, 5vw) 46px;
  background-image: url(../images/map.webp);
  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-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, 5vw);
  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 {
  align-self: center;
  justify-self: stretch;
  width: 100%;
  height: auto;
  max-height: 132px;
  margin-top: 0;
  border-radius: 8px;
  overflow: hidden;
}

.provider--home .provider__people img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 132px;
  object-fit: contain;
  object-position: center;
  transform: none;
}

.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: -78px;
  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: 188px;
  min-height: 52px;
  padding: 0 20px;
  font-size: 14px;
  white-space: nowrap;
  gap: 8px;
}

.provider--home > div {
  display: grid;
  gap: 16px;
  align-content: center;
  justify-items: start;
}

.provider--home > div a {
  justify-self: start;
  min-width: 0;
  width: fit-content;
  max-width: 100%;
  white-space: normal;
  text-align: center;
  line-height: 1.25;
  padding: 12px 18px;
}

.provider a.provider__careers {
  background: var(--green);
}

.provider a.provider__careers:hover,
.provider a.provider__careers:focus-visible {
  background: #099a56;
  box-shadow: 0 12px 24px rgba(11, 174, 97, .24);
  transform: translateY(-2px);
}

.provider-cta__icon {
  display: inline-block;
  flex-shrink: 0;
  margin-right: -2px;
  font-size: 1.55em;
  font-weight: 900;
  line-height: 1;
  color: currentColor;
}

.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, 5vw) 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.webp") 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 {
  display: none;
  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;
}

.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;
}

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

.provider-landing .page-section {
  padding-top: 46px;
}

.provider-landing .page-section--last {
  padding-bottom: 46px;
}

.provider-landing .page-cta:not(.page-cta--full) {
  margin: 46px max(68px, 5vw) 0;
  padding: 36px 34px;
  border-radius: 14px;
}

.provider-landing .page-cta--full {
  margin-top: 46px;
  margin-right: 0;
  margin-left: 0;
  border-radius: 0;
}

.provider-benefits .card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.provider-benefits .info-card {
  min-height: 230px;
}

.provider-why-join .page-copy {
  max-width: 560px;
}

.provider-why-join .image-note img {
  object-fit: cover;
}

.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);
}

.text-link[href^="mailto:"],
.download-btn[href^="mailto:"],
.contact-choice__btn[href^="mailto:"],
.page-cta .download-btn {
  gap: 14px;
}

.text-link[href^="mailto:"]::after,
.download-btn[href^="mailto:"]::after,
.contact-choice__btn[href^="mailto:"]::after,
.page-cta .download-btn::after {
  content: "\203A";
  flex: 0 0 auto;
  margin-left: auto;
  color: currentColor;
  font-size: 1.55em;
  font-weight: 900;
  line-height: 1;
}

.page-hero__actions .text-link[href^="mailto:"],
.page-hero__actions a[href^="mailto:"] {
  min-width: 174px;
  justify-content: space-between;
}

.page-section {
  padding: 70px max(68px, 5vw) 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: stretch;
}

.page-intro:has(.image-note) {
  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;
}

.check-list a,
.page-copy a,
.info-card p a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: rgba(11, 174, 97, .35);
  text-underline-offset: 3px;
}

.check-list a:hover,
.check-list a:focus-visible,
.page-copy a:hover,
.page-copy a:focus-visible,
.info-card p a:hover,
.info-card p a:focus-visible {
  color: var(--green);
  text-decoration-color: currentColor;
}

.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;
  font-variant-numeric: tabular-nums;
}

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

.stat-card--phone strong {
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: -0.02em;
}

.stat-card--phone strong a {
  color: inherit;
  text-decoration: none;
}

.stat-card--phone strong a:hover,
.stat-card--phone strong a:focus-visible {
  color: var(--green);
}

.stat-card--email span a {
  color: inherit;
  text-decoration: none;
  word-break: break-word;
}

.stat-card--email span a:hover,
.stat-card--email span a:focus-visible {
  color: var(--green);
}

.video-review {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 480px;
  max-height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #07131f;
  box-shadow: 0 18px 42px rgba(7, 17, 27, .18);
}

.video-review video {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
}

.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, 5vw);
  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: 18px;
  line-height: 1.6;
}

.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[hidden] {
  display: none;
}

.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 {
  min-height: 52px;
  padding: 0 20px;
  border-radius: 6px;
  font-size: 14px;
  width: fit-content;
  gap: 10px;
}

.coverage-check .app-cta span {
  width: 20px;
  height: 20px;
}

.instant-estimate {
  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);
}

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

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

.instant-estimate__form {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(180px, .7fr) auto;
  gap: 12px;
  align-items: end;
}

.instant-estimate__form label {
  display: grid;
  gap: 9px;
  color: #9fb2bd;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
}

.instant-estimate__form select,
.instant-estimate__form input {
  width: 100%;
  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;
}

.instant-estimate__form select {
  display: none;
}

.theme-select {
  position: relative;
  width: 100%;
}

.theme-select__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  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;
  text-align: left;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}

.theme-select__button:hover,
.theme-select__button:focus-visible,
.theme-select.is-open .theme-select__button {
  border-color: rgba(11, 174, 97, .55);
  background: rgba(11, 174, 97, .12);
  outline: none;
}

.theme-select__button[aria-disabled="true"] {
  cursor: default;
  opacity: .92;
  pointer-events: none;
}

.theme-select.is-locked .theme-select__button:hover,
.theme-select.is-locked .theme-select__button:focus-visible {
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .08);
}

.theme-select.is-locked .theme-select__chevron {
  display: none;
}

.theme-select__value {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.theme-select__value.is-placeholder {
  color: #b8c5cf;
}

.theme-select__chevron {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid #d9edf1;
  border-bottom: 2px solid #d9edf1;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .2s ease;
}

.theme-select.is-open .theme-select__chevron {
  transform: rotate(225deg) translateY(-1px);
}

.theme-select__list {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  gap: 2px;
  max-height: 260px;
  margin: 0;
  padding: 8px;
  overflow: auto;
  list-style: none;
  border: 1px solid rgba(11, 174, 97, .28);
  border-radius: 10px;
  background: #0b2a38;
  box-shadow: 0 18px 36px rgba(7, 17, 27, .34);
  scrollbar-width: thin;
  scrollbar-color: rgba(11, 174, 97, .9) transparent;
}

.theme-select__list::-webkit-scrollbar {
  width: 6px;
}

.theme-select__list::-webkit-scrollbar-track {
  background: transparent;
}

.theme-select__list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(11, 174, 97, .9);
}

.theme-select__list::-webkit-scrollbar-thumb:hover {
  background: var(--dark-green);
}

.theme-select__list[hidden] {
  display: none;
}

.theme-select__option {
  display: block;
  width: 100%;
  padding: 12px 14px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.theme-select__option:hover,
.theme-select__option:focus-visible {
  background: rgba(11, 174, 97, .18);
  outline: none;
}

.theme-select__option.is-selected {
  background: rgba(11, 174, 97, .28);
  color: #fff;
}

.theme-select__option.is-placeholder {
  color: #9fb2bd;
  font-weight: 500;
}

.instant-estimate__form input::placeholder {
  color: #b8c5cf;
}

.instant-estimate__form .download-btn {
  min-height: 52px;
  min-width: 150px;
  border: 0;
  cursor: pointer;
}

.instant-estimate__form .download-btn:disabled {
  opacity: .7;
  cursor: wait;
}

.instant-estimate__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);
}

.instant-estimate__result[hidden],
.instant-estimate__actions[hidden] {
  display: none;
}

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

.instant-estimate__result span {
  color: #d9edf1;
  font-size: 14px;
  line-height: 1.6;
  white-space: pre-line;
}

.instant-estimate__result.is-error strong,
.instant-estimate__result.is-unavailable strong {
  color: #ff8d91;
}

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

.instant-estimate__actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  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: 13px;
  font-weight: 800;
  cursor: pointer;
}

.instant-estimate__actions button:first-child {
  border-color: transparent;
  background: var(--green);
}

.instant-estimate__actions button:hover,
.instant-estimate__actions button:focus-visible {
  transform: translateY(-1px);
  filter: brightness(.96);
}

@media (max-width: 920px) {
  .instant-estimate__form {
    grid-template-columns: 1fr;
  }

  .instant-estimate__form .download-btn,
  .instant-estimate__actions button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 620px) {
  .instant-estimate {
    gap: 16px;
    padding: 24px 18px;
  }

  .instant-estimate__head h3 {
    font-size: 21px;
  }

  .instant-estimate__actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

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

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

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

.coverage-popup,
.exit-popup,
.newsletter-popup,
.safety-guide-popup {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: max(16px, env(safe-area-inset-top, 0px)) max(16px, env(safe-area-inset-right, 0px)) max(16px, env(safe-area-inset-bottom, 0px)) max(16px, env(safe-area-inset-left, 0px));
  background: rgba(7, 17, 27, .72);
  backdrop-filter: blur(6px);
  -webkit-overflow-scrolling: touch;
}

body.modal-open {
  overflow: hidden;
}

.coverage-popup__panel,
.exit-popup__panel {
  margin: auto;
  flex-shrink: 0;
}

.coverage-popup__panel {
  position: relative;
  width: min(560px, 100%);
  max-height: min(calc(100dvh - 32px), 900px);
  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 {
  display: none;
  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 {
  padding-right: 44px;
}

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

.coverage-check--modal .app-cta {
  width: fit-content;
  justify-content: flex-start;
}

.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: -webkit-sticky;
  position: sticky;
  top: var(--legal-sticky-top);
  z-index: 25;
  align-self: start;
  display: grid;
  gap: 10px;
  max-height: calc(100vh - var(--legal-sticky-top) - 24px);
  padding: 22px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-card);
  scrollbar-width: thin;
  scrollbar-color: rgba(7, 17, 27, .22) transparent;
}

.legal-nav::-webkit-scrollbar {
  width: 6px;
}

.legal-nav::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(7, 17, 27, .22);
}

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

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

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

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

.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: var(--z-float);
  width: min(300px, calc(100vw - 32px));
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(7, 17, 27, .22);
  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: 44px minmax(0, 1fr) 34px;
  grid-template-rows: auto auto;
  column-gap: 10px;
  align-items: center;
  padding: 14px;
  background: var(--red);
  color: #fff;
  cursor: default;
}

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

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

.emergency-float__tap strong {
  grid-column: 2;
  grid-row: 1;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.emergency-float__tap small {
  grid-column: 2;
  grid-row: 2;
  margin-top: 2px;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
}

.emergency-float__toggle {
  grid-column: 3;
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  justify-self: end;
  align-self: center;
  width: 34px;
  height: 34px;
  margin-left: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.emergency-float__toggle:hover,
.emergency-float__toggle:focus-visible {
  background: rgba(255, 255, 255, .18);
  transform: translateY(-1px);
}

.emergency-float__toggle::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(-1px, -1px) rotate(45deg);
  transition: transform .2s ease;
}

.emergency-float.is-open .emergency-float__toggle::before {
  transform: rotate(-135deg);
}

.emergency-float__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
  padding: 22px 24px 24px;
}

.emergency-float:not(.is-open) .emergency-float__actions {
  display: none;
}

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

.emergency-float__actions a {
  display: inline-flex;
  min-width: 188px;
  min-height: 52px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 6px;
  background: var(--green);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  width: 100%;
}

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

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

.jib-chatbot {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: calc(var(--z-float) + 2);
  font-family: "Poppins", Arial, sans-serif;
  pointer-events: none;
}

.jib-chatbot__fab {
  position: relative;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  box-shadow: 0 18px 38px rgba(7, 17, 27, .22);
  cursor: pointer;
  pointer-events: auto;
  transition: filter .2s ease, transform .2s ease;
}

.jib-chatbot__fab i {
  font-size: 24px;
}

.jib-chatbot__fab-tooltip {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 0;
  display: grid;
  gap: 2px;
  width: max-content;
  max-width: 220px;
  padding: 12px 16px;
  border-radius: 14px 14px 14px 4px;
  background: var(--green);
  color: #fff;
  box-shadow: 0 14px 30px rgba(7, 17, 27, .2);
  pointer-events: auto;
  cursor: pointer;
  animation: jibTooltipPop .25s ease;
}

.jib-chatbot__fab-tooltip[hidden] {
  display: none;
}

.jib-chatbot__fab-tooltip::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 20px;
  width: 16px;
  height: 16px;
  background: var(--green);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.jib-chatbot__fab-tooltip strong {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
}

.jib-chatbot__fab-tooltip span {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  color: #fff;
}

@keyframes jibTooltipPop {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.jib-chatbot__fab-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  display: grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 4px;
  border-radius: 999px;
  background: #e11d2e;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 0 0 2px #fff;
}

.jib-chatbot__fab-badge[hidden] {
  display: none;
}

.jib-chatbot__fab:hover,
.jib-chatbot__fab:focus-visible {
  filter: brightness(.94);
  transform: translateY(-1px);
}

.jib-chatbot.is-open .jib-chatbot__fab {
  display: none;
}

.jib-chatbot.is-open.is-minimized {
  top: auto;
}

.jib-chatbot__panel {
  display: flex;
  flex-direction: column;
  width: min(430px, calc(100vw - 32px));
  height: min(640px, calc(100dvh - var(--site-header-height, 88px) - 48px));
  max-height: min(640px, calc(100dvh - var(--site-header-height, 88px) - 48px));
  overflow: hidden;
  border: 0;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 24px 54px rgba(7, 17, 27, .26);
  pointer-events: auto;
}

.jib-chatbot__panel[hidden] {
  display: none;
}

.jib-chatbot__header {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 34px 34px 34px;
  gap: 10px;
  align-items: center;
  padding: 14px;
  background: var(--ink);
  color: #fff;
}

.jib-chatbot__header img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
}

.jib-chatbot__header strong,
.jib-chatbot__header span {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.jib-chatbot__header strong {
  font-size: 15px;
  font-weight: 800;
}

.jib-chatbot__header span {
  margin-top: 2px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
}

.jib-chatbot__restart,
.jib-chatbot__minimize,
.jib-chatbot__close {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.jib-chatbot__restart[hidden],
.jib-chatbot__minimize[hidden] {
  display: none;
}

.jib-chatbot__close {
  grid-column: -2;
}

.jib-chatbot__restart[hidden] ~ .jib-chatbot__minimize {
  grid-column: -3;
}

.jib-chatbot__restart:hover,
.jib-chatbot__restart:focus-visible,
.jib-chatbot__minimize:hover,
.jib-chatbot__close:hover,
.jib-chatbot__minimize:focus-visible,
.jib-chatbot__close:focus-visible {
  background: rgba(255, 255, 255, .18);
  transform: translateY(-1px);
}

.jib-chatbot__body {
  display: grid;
  align-content: start;
  min-height: 0;
  padding: 12px 14px 14px;
  overflow-y: auto;
  flex: 1 1 auto;
  gap: 12px;
  background: #f6f8fa;
  scroll-behavior: smooth;
}

.jib-chatbot__body,
.jib-chatbot__search-results {
  scrollbar-width: thin;
  scrollbar-color: rgba(11, 174, 97, .9) transparent;
}

.jib-chatbot__body::-webkit-scrollbar,
.jib-chatbot__search-results::-webkit-scrollbar {
  width: 6px;
}

.jib-chatbot__body::-webkit-scrollbar-track,
.jib-chatbot__search-results::-webkit-scrollbar-track {
  background: transparent;
}

.jib-chatbot__body::-webkit-scrollbar-thumb,
.jib-chatbot__search-results::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(11, 174, 97, .9);
}

.jib-chatbot__body::-webkit-scrollbar-thumb:hover,
.jib-chatbot__search-results::-webkit-scrollbar-thumb:hover {
  background: var(--dark-green);
}

.jib-chatbot__conversation {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.jib-chatbot__search-panel {
  display: grid;
  gap: 9px;
  padding: 14px;
  border-bottom: 1px solid rgba(7, 17, 27, .08);
  background: #f6f8fa;
}

.jib-chatbot__search-results {
  display: grid;
  gap: 8px;
  max-height: min(238px, 32dvh);
  overflow-y: auto;
  padding: 10px;
  border: 1px solid rgba(11, 174, 97, .18);
  border-radius: 10px;
  background: #eefaf4;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .65);
}

.jib-chatbot__search-results .jib-chatbot__section {
  gap: 7px;
}

.jib-chatbot__search-results .jib-chatbot__option,
.jib-chatbot__search-results .jib-chatbot__accordion {
  background: rgba(255, 255, 255, .86);
}

.jib-chatbot__search-results:empty {
  display: none;
}

.jib-chatbot__message {
  display: flex;
  animation: jibChatIn .22s ease both;
}

.jib-chatbot__message--user {
  justify-content: flex-end;
}

.jib-chatbot__bubble {
  width: fit-content;
  max-width: 88%;
  padding: 11px 12px;
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 6px 16px rgba(7, 17, 27, .08);
  font-size: 13px;
  line-height: 1.45;
}

.jib-chatbot__message--user .jib-chatbot__bubble {
  background: var(--green);
  color: #fff;
}

.jib-chatbot__message--typing .jib-chatbot__bubble {
  min-width: 58px;
}

.jib-chatbot__bubble p {
  margin: 0 0 8px;
}

.jib-chatbot__bubble p:last-child {
  margin-bottom: 0;
}

.jib-chatbot__bubble ul,
.jib-chatbot__bubble ol {
  margin: 8px 0 0;
  padding-left: 18px;
}

.jib-chatbot__bubble a {
  color: var(--dark-green);
  font-weight: 800;
  text-decoration: underline;
}

.jib-chatbot__options {
  display: grid;
  max-height: none;
  padding: 0;
  overflow: visible;
  gap: 10px;
  background: transparent;
}

.jib-chatbot__section {
  display: grid;
  gap: 8px;
}

.jib-chatbot__group-title {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.jib-chatbot__search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.jib-chatbot__search {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f9fb;
  color: var(--muted);
}

.jib-chatbot__search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
}

.jib-chatbot__search input::placeholder {
  color: rgba(85, 97, 113, .78);
}

.jib-chatbot__clear-search {
  display: grid;
  min-width: 58px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.jib-chatbot__button-grid,
.jib-chatbot__chip-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.jib-chatbot__option,
.jib-chatbot__submit,
.jib-chatbot__chip {
  display: inline-flex;
  width: 100%;
  min-height: 38px;
  padding: 8px 10px;
  align-items: center;
  justify-content: flex-start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 12.5px;
  font-weight: 800;
  line-height: 1.25;
  text-align: left;
  overflow-wrap: anywhere;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}

.jib-chatbot__option,
.jib-chatbot__chip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.jib-chatbot__option > span:first-child,
.jib-chatbot__chip > span:first-child {
  min-width: 0;
}

.jib-chatbot__arrow {
  color: var(--muted);
  font: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1;
}

.jib-chatbot__option:hover,
.jib-chatbot__option:focus-visible,
.jib-chatbot__submit:hover,
.jib-chatbot__submit:focus-visible,
.jib-chatbot__chip:hover,
.jib-chatbot__chip:focus-visible {
  border-color: rgba(11, 174, 97, .58);
  background: #e8f8ef;
  transform: translateY(-1px);
}

.jib-chatbot__option--nested {
  min-height: 36px;
  font-weight: 600;
  text-align: left;
}

.jib-chatbot__accordion-panel .jib-chatbot__option:hover,
.jib-chatbot__accordion-panel .jib-chatbot__option:focus-visible {
  transform: none;
}

.jib-chatbot__see-more {
  display: inline-flex;
  width: fit-content;
  min-height: 32px;
  margin: 0 auto;
  align-items: center;
  gap: 7px;
  border: 0;
  background: transparent;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.jib-chatbot__accordion-list {
  display: grid;
  gap: 8px;
}

.jib-chatbot__accordion {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.jib-chatbot__accordion-toggle {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
  min-height: 42px;
  padding: 9px 11px;
  border: 0;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.jib-chatbot__accordion-toggle span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.jib-chatbot__accordion-toggle small {
  color: var(--muted);
  font-size: 11px;
}

.jib-chatbot__accordion.is-open .jib-chatbot__accordion-toggle {
  background: #f7fbf9;
}

.jib-chatbot__accordion-panel {
  display: grid;
  max-height: 0;
  padding: 0 9px;
  overflow: hidden;
  gap: 8px;
  opacity: 0;
  transition: max-height .24s ease, padding .24s ease, opacity .2s ease;
}

.jib-chatbot__accordion.is-open .jib-chatbot__accordion-panel {
  max-height: 900px;
  padding: 2px 9px 9px;
  opacity: 1;
}

.jib-chatbot__accordion-panel p,
.jib-chatbot__empty {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.jib-chatbot__empty {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: #f7f9fb;
}

.jib-chatbot__empty strong {
  color: var(--ink);
}

.jib-chatbot__contact-suggestion {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  padding: 7px 12px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--green);
  border-radius: 8px;
  background: #fff;
  color: var(--green);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.jib-chatbot__contact-suggestion:hover,
.jib-chatbot__contact-suggestion:focus-visible {
  background: #e8f8ef;
}

.jib-chatbot__form {
  display: grid;
  gap: 10px;
}

.jib-chatbot__form label {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.jib-chatbot__form input,
.jib-chatbot__form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 11px;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  resize: vertical;
}

.jib-chatbot__submit {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.jib-chatbot__submit:disabled {
  opacity: .64;
  cursor: wait;
}

.jib-chatbot__suggestions {
  display: grid;
  gap: 10px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(7, 17, 27, .08);
}

.jib-chatbot__suggestion-group {
  display: grid;
  gap: 7px;
}

.jib-chatbot__suggestion-group > span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.jib-chatbot__chip {
  min-height: 34px;
  padding: 8px 9px;
  background: #fff;
  font-size: 11px;
}

.jib-chatbot__chip--action {
  border-color: rgba(11, 174, 97, .4);
  background: #f3fbf7;
}

.jib-chatbot__back-menu {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  padding: 0;
  align-items: center;
  border: 0;
  background: transparent;
  color: var(--green);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.jib-chatbot__back-menu:hover,
.jib-chatbot__back-menu:focus-visible {
  color: var(--dark-green);
}

.jib-chatbot__typing {
  display: inline-flex;
  gap: 5px;
  align-items: center;
}

.jib-chatbot__typing i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--muted);
  animation: jibTypingDot .9s ease-in-out infinite;
}

.jib-chatbot__typing i:nth-child(2) {
  animation-delay: .12s;
}

.jib-chatbot__typing i:nth-child(3) {
  animation-delay: .24s;
}

.jib-chatbot__quick-actions {
  display: grid;
  gap: 8px;
  padding: 10px 14px 14px;
  border-top: 1px solid rgba(7, 17, 27, .08);
  background: #f6f8fa;
}

.jib-chatbot__quick-visible {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.jib-chatbot__quick-action {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--green);
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  overflow-wrap: anywhere;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.jib-chatbot__quick-action:hover,
.jib-chatbot__quick-action:focus-visible {
  border-color: var(--dark-green);
  background: var(--dark-green);
  transform: translateY(-1px);
}

.jib-chatbot__quick-action--primary {
  grid-column: 1 / -1;
}

.jib-chatbot__quick-action--secondary {
  min-width: 108px;
  min-height: 34px;
  border-color: rgba(11, 174, 97, .28);
  background: #fff;
  color: var(--muted);
  font-size: 10.5px;
}

.jib-chatbot__quick-action--secondary:hover,
.jib-chatbot__quick-action--secondary:focus-visible {
  border-color: rgba(11, 174, 97, .5);
  background: #f6fffa;
  color: var(--green);
}

.jib-chatbot__tools-toggle {
  width: fit-content;
  min-height: 30px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.jib-chatbot__tools-toggle:hover,
.jib-chatbot__tools-toggle:focus-visible {
  color: var(--green);
}

.jib-chatbot__tools-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.jib-chatbot__tool-pill {
  display: inline-flex;
  min-width: 108px;
  min-height: 34px;
  padding: 0 10px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-color: var(--line);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font: inherit;
  font-size: 10.5px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
}

.jib-chatbot__tool-pill:hover,
.jib-chatbot__tool-pill:focus-visible {
  border-color: rgba(11, 174, 97, .42);
  color: var(--green);
  transform: translateY(-1px);
}

.jib-chatbot__tool-pill .download-icon img {
  filter: none;
}

.jib-chatbot__status {
  min-height: 0;
  margin: 0;
  padding: 0 14px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
}

.jib-chatbot.is-minimized .jib-chatbot__panel {
  height: 86px;
  max-height: 86px;
  border-radius: 14px;
}

.jib-chatbot.is-minimized .jib-chatbot__header {
  grid-template-columns: 46px minmax(0, 1fr) 32px 32px 32px;
  gap: 8px;
  min-height: 86px;
  padding: 17px 14px;
}

.jib-chatbot.is-minimized .jib-chatbot__header img {
  width: 46px;
  height: 46px;
}

.jib-chatbot.is-minimized .jib-chatbot__restart,
.jib-chatbot.is-minimized .jib-chatbot__minimize,
.jib-chatbot.is-minimized .jib-chatbot__close {
  width: 32px;
  height: 32px;
}

.jib-chatbot.is-minimized .jib-chatbot__search-panel,
.jib-chatbot.is-minimized .jib-chatbot__body,
.jib-chatbot.is-minimized .jib-chatbot__quick-actions,
.jib-chatbot.is-minimized .jib-chatbot__status {
  display: none;
}

@keyframes jibChatIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes jibTypingDot {
  0%,
  80%,
  100% {
    opacity: .38;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

@media (max-width: 620px) {
  .jib-chatbot {
    inset: auto auto 16px 16px;
  }

  .jib-chatbot__fab {
    width: 52px;
    height: 52px;
  }

  .jib-chatbot__fab i {
    font-size: 20px;
  }

  .jib-chatbot.is-open {
    inset: calc(var(--site-header-height, 88px) + 12px) 12px 12px 12px;
    top: calc(var(--site-header-height, 88px) + 12px);
  }

  .jib-chatbot.is-open.is-minimized {
    inset: auto auto calc(env(safe-area-inset-bottom, 0px) + 84px) 16px;
  }

  .jib-chatbot__panel {
    width: 100%;
    height: 100%;
    max-height: none;
    min-height: 0;
    border: 0;
    border-radius: 12px;
  }

  .jib-chatbot.is-minimized .jib-chatbot__panel {
    position: static;
    width: min(430px, calc(100vw - 32px));
    height: auto;
    border: 1px solid rgba(7, 17, 27, .08);
    border-radius: 12px;
  }

  .jib-chatbot__header {
    grid-template-columns: 42px minmax(0, 1fr) 34px 34px 34px;
    padding: 12px;
  }

  .jib-chatbot__body {
    padding: 12px;
  }

  .jib-chatbot__search-panel {
    padding: 12px;
  }

  .jib-chatbot__quick-actions {
    padding: 10px 12px max(12px, env(safe-area-inset-bottom));
  }

  .jib-chatbot__button-grid,
  .jib-chatbot__chip-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 621px) and (max-width: 1024px) {
  .jib-chatbot.is-open {
    top: calc(var(--site-header-height, 88px) + 14px);
    bottom: 24px;
  }

  .jib-chatbot.is-open.is-minimized {
    top: auto;
  }

  .jib-chatbot__panel {
    height: 100%;
    max-height: none;
  }
}

.exit-popup__panel {
  position: relative;
  display: grid;
  width: min(520px, 100%);
  max-height: min(calc(100dvh - 32px), 720px);
  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__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 {
  position: relative;
  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;
  gap: 10px;
  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);
}

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

.app-choice[hidden] {
  display: none;
}

.app-choice__panel {
  position: relative;
  width: min(420px, 100%);
  padding: 28px 28px 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  background: linear-gradient(145deg, #081725 0%, #03101a 100%);
  box-shadow: 0 34px 70px rgba(0, 0, 0, .42);
  text-align: center;
}

.app-choice__panel::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--red) 0%, var(--green) 100%);
}

.app-choice__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  cursor: pointer;
}

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

.app-choice__close::before {
  transform: rotate(45deg);
}

.app-choice__close::after {
  transform: rotate(-45deg);
}

.app-choice__logo {
  width: 76px;
  height: auto;
  margin: 4px auto 14px;
}

.app-choice__title {
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-style: italic;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.app-choice__text {
  max-width: 300px;
  margin: 10px auto 24px;
  color: #c8d6df;
  font-size: 14px;
  line-height: 1.55;
}

.app-choice__actions {
  display: grid;
  gap: 12px;
}

.app-choice__btn {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 56px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 9px;
  background: #07131f;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.app-choice__btn img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  flex: 0 0 26px;
}

.app-choice__btn span {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.app-choice__btn b {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .75;
}

.app-choice__btn:hover,
.app-choice__btn:focus-visible {
  border-color: rgba(111, 240, 179, .45);
  background: #0b2a3a;
  transform: translateY(-2px);
}

.contact-choice {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 24px;
  background: rgba(7, 17, 27, .72);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  -webkit-overflow-scrolling: touch;
}

.contact-choice[hidden] {
  display: none;
}

.contact-choice__panel {
  position: relative;
  width: min(560px, 100%);
  max-height: min(calc(100dvh - 32px), 760px);
  padding: 28px 28px 30px;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  background: linear-gradient(145deg, #081725 0%, #03101a 100%);
  box-shadow: 0 34px 70px rgba(0, 0, 0, .42);
  text-align: center;
}

.contact-choice__panel::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--red) 0%, var(--green) 100%);
}

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

.contact-choice__close::before,
.contact-choice__close::after {
  grid-area: 1 / 1;
  width: 15px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  content: "";
}

.contact-choice__close::before {
  transform: rotate(45deg);
}

.contact-choice__close::after {
  transform: rotate(-45deg);
}

.contact-choice__close:hover,
.contact-choice__close:focus-visible {
  background: var(--green);
}

.contact-choice__logo {
  width: 76px;
  height: auto;
  margin: 4px auto 14px;
}

.contact-choice__title {
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-style: italic;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.contact-choice__text {
  max-width: 360px;
  margin: 10px auto 24px;
  color: #c8d6df;
  font-size: 14px;
  line-height: 1.55;
}

.contact-choice__actions {
  display: grid;
  gap: 12px;
}

.contact-choice__btn {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 9px;
  background: #07131f;
  color: #fff;
  text-align: left;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.contact-choice__btn i {
  width: 24px;
  font-size: 20px;
  text-align: center;
}

.contact-choice__btn span {
  display: grid;
  gap: 2px;
  line-height: 1.25;
}

.contact-choice__btn b {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .72;
}

.contact-choice__btn--phone {
  border-color: rgba(11, 174, 97, .35);
}

.contact-choice__btn:hover,
.contact-choice__btn:focus-visible {
  border-color: rgba(111, 240, 179, .45);
  background: #0b2a3a;
  transform: translateY(-2px);
}

.newsletter-popup__panel {
  position: relative;
  width: min(540px, 100%);
  max-height: min(calc(100dvh - 32px), 760px);
  overflow: auto;
  padding: 34px 30px 30px;
  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);
}

.newsletter-popup {
  align-items: center;
}

.newsletter-popup__panel::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--red) 0%, var(--green) 100%);
}

.newsletter-popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  cursor: pointer;
}

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

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

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

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

.newsletter-popup__panel h2 {
  margin: 0;
  padding-right: 44px;
  font-size: clamp(28px, 4vw, 38px);
  font-style: italic;
  font-weight: 900;
  line-height: 1.06;
  text-transform: uppercase;
}

.newsletter-popup__panel p {
  margin: 10px 0 20px;
  color: #d8e8ee;
}

.newsletter-popup__form {
  display: grid;
  justify-content: stretch;
  width: 100%;
}

.newsletter-popup__form > div,
.newsletter-popup__form [data-type="signupform"],
.newsletter-popup__form #customForm {
  width: 100% !important;
  max-width: none !important;
}

.newsletter-popup__form .quick_form_9_css,
.newsletter-popup__form #SIGNUP_HEADING,
.newsletter-popup__form #customForm,
.newsletter-popup__form #sf3z69cb6a5fe714088ecf696ce70957457ed67cc450e574fffc6a8bc050c43091fb {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.newsletter-popup__form .quick_form_9_css[name="SIGNUP_BODY"] {
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
  padding: 0 !important;
}

.newsletter-popup__form #SIGNUP_HEADING {
  padding: 0 !important;
  height: auto !important;
  margin: 0 0 14px !important;
  background: transparent !important;
  font-family: inherit !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #fff !important;
  text-align: left !important;
  line-height: 1.35 !important;
}

.newsletter-popup__form #zcampaignOptinForm {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 118px !important;
  gap: 0 !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

.newsletter-popup__form #errorMsgDiv {
  grid-column: 1 / -1 !important;
  order: 2 !important;
  width: 100% !important;
  margin: 10px 0 0 !important;
}

.newsletter-popup__form .SIGNUP_FLD {
  position: relative !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
  height: 54px !important;
}

.newsletter-popup__form .SIGNUP_FLD:has(input[name="CONTACT_EMAIL"]) {
  grid-column: 1;
  min-width: 0;
  order: 1 !important;
}

.newsletter-popup__form .SIGNUP_FLD:has(#zcWebOptin) {
  grid-column: 2;
  width: 118px !important;
  min-width: 118px !important;
  order: 1 !important;
}

.newsletter-popup__form .SIGNUP_FLD input[type="text"] {
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 18px !important;
  border: 1px solid var(--red) !important;
  border-right: 0 !important;
  border-radius: 6px 0 0 6px !important;
  background: #fff !important;
  color: #333 !important;
  font-family: inherit !important;
  font-size: 16px !important;
  box-sizing: border-box !important;
}

.newsletter-popup__form .SIGNUP_FLD input[type="button"] {
  width: 100% !important;
  height: 100% !important;
  margin: 0 0 0 -1px !important;
  padding: 0 !important;
  border: 1px solid var(--red) !important;
  border-left: 0 !important;
  border-radius: 0 6px 6px 0 !important;
  background: var(--green) !important;
  color: #fff !important;
  font-family: inherit !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  box-sizing: border-box !important;
}

.newsletter-popup__form .SIGNUP_FLD input[type="button"]:hover,
.newsletter-popup__form .SIGNUP_FLD input[type="button"]:focus-visible {
  background: #087e45 !important;
}

.safety-guide-popup {
  align-items: center;
}

.safety-guide-popup__form {
  display: grid;
  justify-content: stretch;
  width: 100%;
}

.safety-guide-popup__form > div,
.safety-guide-popup__form [data-type="signupform"],
.safety-guide-popup__form #customForm {
  width: 100% !important;
  max-width: none !important;
}

.safety-guide-popup__form .quick_form_9_css,
.safety-guide-popup__form #SIGNUP_HEADING,
.safety-guide-popup__form #customForm,
.safety-guide-popup__form #sf3z69cb6a5fe714088ecf696ce70957457ed67cc450e574fffc6a8bc050c43091fb {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.safety-guide-popup__form .quick_form_9_css[name="SIGNUP_BODY"] {
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
  padding: 0 !important;
}

.safety-guide-popup__form #SIGNUP_HEADING {
  display: none !important;
}

.safety-guide-popup__form #zcampaignOptinForm {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 118px !important;
  gap: 0 !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

.safety-guide-popup__form #errorMsgDiv {
  grid-column: 1 / -1 !important;
  order: 2 !important;
  width: 100% !important;
  margin: 10px 0 0 !important;
}

.safety-guide-popup__form .SIGNUP_FLD {
  position: relative !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
  height: 54px !important;
}

.safety-guide-popup__form .SIGNUP_FLD:has(input[name="CONTACT_EMAIL"]) {
  grid-column: 1;
  min-width: 0;
  order: 1 !important;
}

.safety-guide-popup__form .SIGNUP_FLD:has(#zcWebOptin) {
  grid-column: 2;
  width: 118px !important;
  min-width: 118px !important;
  order: 1 !important;
}

.safety-guide-popup__form .SIGNUP_FLD input[type="text"] {
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 18px !important;
  border: 1px solid var(--red) !important;
  border-right: 0 !important;
  border-radius: 6px 0 0 6px !important;
  background: #fff !important;
  color: #333 !important;
  font-family: inherit !important;
  font-size: 16px !important;
  box-sizing: border-box !important;
}

.safety-guide-popup__form .SIGNUP_FLD input[type="button"] {
  width: 100% !important;
  height: 100% !important;
  margin: 0 0 0 -1px !important;
  padding: 0 !important;
  border: 1px solid var(--red) !important;
  border-left: 0 !important;
  border-radius: 0 6px 6px 0 !important;
  background: var(--green) !important;
  color: #fff !important;
  font-family: inherit !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  box-sizing: border-box !important;
}

.safety-guide-popup__form .SIGNUP_FLD input[type="button"]:hover,
.safety-guide-popup__form .SIGNUP_FLD input[type="button"]:focus-visible {
  background: #087e45 !important;
}

.safety-guide-popup__panel {
  position: relative;
  width: min(480px, 100%);
  max-height: min(calc(100dvh - 32px), 760px);
  overflow: auto;
  padding: 34px 30px 30px;
  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);
}

.safety-guide-popup__panel::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--red) 0%, var(--green) 100%);
}

.safety-guide-popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  cursor: pointer;
}

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

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

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

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

.safety-guide-popup__panel h2 {
  margin: 0;
  padding-right: 44px;
  font-size: clamp(24px, 3.4vw, 32px);
  font-style: italic;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.safety-guide-popup__panel p {
  margin: 10px 0 20px;
  color: #d8e8ee;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 480px) {
  .safety-guide-popup__form #zcampaignOptinForm {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .safety-guide-popup__form .SIGNUP_FLD:has(#zcWebOptin) {
    width: 100% !important;
    min-width: 0 !important;
  }

  .safety-guide-popup__form .SIGNUP_FLD input[type="text"],
  .safety-guide-popup__form .SIGNUP_FLD input[type="button"] {
    border-radius: 6px !important;
    border-right: 1px solid var(--red) !important;
    border-left: 1px solid var(--red) !important;
  }
}

.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, 5vw) clamp(108px, 12vw, 132px);
  overflow: hidden;
  background: #07111b;
  color: #fff;
}

.footer::after {
  content: "JIB ROADSIDE ASSISTANCE";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: clamp(72px, 9vw, 108px);
  overflow: hidden;
  font-family: "Poppins", sans-serif;
  font-size: clamp(52px, 8.5vw, 132px);
  font-weight: 600;
  line-height: 0.88;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  opacity: 0.2;
  background: linear-gradient(
    180deg,
    rgba(111, 106, 124, 0.55) 0%,
    rgba(102, 97, 114, 0.48) 12%,
    rgba(88, 83, 99, 0.38) 28%,
    rgba(64, 61, 76, 0.28) 48%,
    rgba(36, 45, 60, 0.16) 68%,
    rgba(7, 17, 27, 0.04) 88%,
    rgba(7, 17, 27, 0) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-mask-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.42) 0%,
    rgba(0, 0, 0, 0.22) 45%,
    rgba(0, 0, 0, 0.08) 72%,
    transparent 100%
  );
  mask-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.42) 0%,
    rgba(0, 0, 0, 0.22) 45%,
    rgba(0, 0, 0, 0.08) 72%,
    transparent 100%
  );
}

.footer > * {
  position: relative;
  z-index: 1;
}

.footer-logo {
  width: 150px;
}

.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 .footer-email-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 96px;
  width: min(280px, 100%);
  min-height: 48px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.social .footer-email-form > input {
  min-width: 0;
  padding: 0 18px;
  font: inherit;
  border: 1px solid var(--red);
  border-right: 0;
  border-radius: 5px 0 0 5px;
  background: #fff;
  min-height: 48px;
}

.social .footer-email-form > button {
  width: 96px;
  min-width: 96px;
  border: 1px solid var(--red);
  border-left: 0;
  border-radius: 0 5px 5px 0;
  background: var(--green);
  min-height: 48px;
  font-size: 14px;
  text-transform: uppercase;
}

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

.footer-email-form__status {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.45;
  color: #9eb0bc;
}

.footer-email-form__status.is-success {
  color: #8fe8b8;
}

/* Zoho Campaigns footer newsletter */
.social [data-type="signupform"] {
  width: min(280px, 100%);
  margin-top: 0;
}

.social [data-type="signupform"] #customForm {
  width: 100%;
  margin: 0;
  padding: 0;
}

.social .quick_form_9_css[name="SIGNUP_BODY"] {
  width: 100% !important;
  max-width: 280px !important;
  height: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}

.social #SIGNUP_HEADING {
  padding: 0 !important;
  height: auto !important;
  margin: 28px 0 12px !important;
  background: transparent !important;
  font-family: inherit !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: normal !important;
  color: #fff !important;
  text-align: left !important;
  line-height: 1.2 !important;
}

.social #zcampaignOptinForm {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 96px !important;
  gap: 0 !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

.social #errorMsgDiv {
  grid-column: 1 / -1 !important;
  order: 2 !important;
  width: 100% !important;
  margin: 10px 0 0 !important;
}

.social .SIGNUP_FLD:has(input[name="CONTACT_EMAIL"]) {
  order: 1 !important;
}

.social .SIGNUP_FLD:has(#zcWebOptin) {
  order: 1 !important;
}

.social .SIGNUP_FLD {
  position: relative !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
  height: 48px !important;
}

.social .SIGNUP_FLD:has(input[name="CONTACT_EMAIL"]) {
  grid-column: 1;
  min-width: 0;
}

.social .SIGNUP_FLD:has(#zcWebOptin) {
  grid-column: 2;
  width: 96px !important;
  min-width: 96px !important;
}

.social .SIGNUP_FLD input[type="text"] {
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 18px !important;
  border: 1px solid var(--red) !important;
  border-right: 0 !important;
  border-radius: 5px 0 0 5px !important;
  background: #fff !important;
  color: #333 !important;
  font-family: inherit !important;
  font-size: 13px !important;
  box-sizing: border-box !important;
}

.social .SIGNUP_FLD input[type="button"] {
  width: 100% !important;
  height: 100% !important;
  margin: 0 0 0 -1px !important;
  padding: 0 !important;
  border: 1px solid var(--red) !important;
  border-left: 0 !important;
  border-radius: 0 5px 5px 0 !important;
  background: var(--green) !important;
  color: #fff !important;
  font-family: inherit !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  box-sizing: border-box !important;
}

.social .SIGNUP_FLD input[type="button"]:hover,
.social .SIGNUP_FLD input[type="button"]:focus-visible {
  background: #087e45 !important;
}

.copyright {
  position: absolute;
  right: max(72px, calc((100vw - 1220px) / 2));
  bottom: 28px;
  left: max(72px, calc((100vw - 1220px) / 2));
  z-index: 2;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .82);
  font-size: 11px;
  line-height: 1.55;
  text-align: center;
}

.footer .copyright {
  font-size: 11px;
  font-weight: 400;
  line-height: 1.55;
}

.footer .copyright a {
  display: inline;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
}

.copyright a:hover,
.copyright a:focus-visible {
  color: #fff;
  text-decoration: underline;
  transform: none;
}

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

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 108px 24px 34px;
    background-color: #fff;
    background-image: url("../images/mobile.png");
    background-position: center bottom;
    background-size: min(100%, 680px) auto;
    background-repeat: no-repeat;
    text-align: center;
  }

  .hero::before {
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, .88) 30%, rgba(255, 255, 255, .35) 58%, transparent 75%);
  }

  .hero__image {
    position: relative;
    inset: auto;
    order: -1;
    height: 400px;
    margin: -108px -24px 0;
  }

  .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: 14px;
  }

  .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;
    --hero-phone-width: 200px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: min(100%, 400px);
    max-width: calc(100% - 32px);    
    margin: 32px auto 0;
    padding: 0 0 8px;
  }

  .hero__phone > img {
    display: block;    
    align-self: left;
    justify-self: left;
    width: var(--hero-phone-width);
  }

  .status-list {
    flex: 0 1 auto;
    width: auto;
    min-width: 0;
    max-width: 210px;
    margin: 0;    
    --status-icon-size: 34px;
    --status-node-size: 9px;
  }

  .status-list li {
    column-gap: 2px;
    padding: 6px 0;
  }

  .status-list__icon {
    font-size: 14px;
  }

  .status-list__copy strong {
    font-size: 11px;
  }

  .status-list__copy span {
    font-size: 9px;
  }

  .hero .status-list__copy span {
    color: var(--muted);
    text-shadow: none;
  }

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

  .features article {
    min-height: auto;
    padding: 12px 10px;
    border-right: 0;
    border-bottom: 0;
  }

  .features {
    gap: 8px 12px;
  }

  .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 {
    position: relative;
    isolation: isolate;
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 54px 24px 48px;
    text-align: center;
    background-image: none;
  }

  .area::before {
    position: absolute;
    inset: auto 0 0;
    z-index: 0;
    width: 100%;
    height: min(62%, 320px);
    background: url("../images/map.webp") center bottom / min(520px, 110%) auto no-repeat;
    opacity: .26;
    content: "";
    pointer-events: none;
  }

  .area::after {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(180deg, #fff 0%, #fff 48%, rgba(255, 255, 255, .97) 72%, rgba(255, 255, 255, .9) 100%);
    content: "";
    pointer-events: none;
  }

  .area__copy {
    position: relative;
    z-index: 1;
    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;
    min-height: auto;
    margin-top: 0;
    padding: 62px 48px max(168px, calc(148px + env(safe-area-inset-bottom, 0px)));
  }

  .footer::after {
    height: clamp(56px, 8vw, 84px);
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 600;
    letter-spacing: 0.05em;
    opacity: 0.16;
  }

  .copyright {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-column: 1 / -1;
    max-width: 100%;
    margin-top: 8px;
    margin-bottom: 0;
    padding: 18px 0 0;
    font-size: 10px;
    line-height: 1.65;
    color: rgba(255, 255, 255, .88);
    text-align: center;
    word-break: break-word;
  }
}

@media (max-width: 1024px) {
  .site-header {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .site-header.is-scrolled {
    background: #fff;
  }

  .hero .hero-actions-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    flex-wrap: nowrap;
  }

  .hero .hero-actions-row .app-cta {
    margin-bottom: 0;
    flex: 0 0 auto;
  }

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

  .site-header {
    top: 0;
    align-items: center;
    width: 100%;
    min-height: 80px;
    padding: 10px 24px;
    border-radius: 0;
  }

  .site-header.is-scrolled {
    min-height: 66px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .site-header .logo {
    width: 66px;
    height: 66px;
    padding: 5px;
    border-radius: 14px;
  }

  .site-header.is-scrolled .logo {
    width: 54px;
    height: 54px;
    padding: 4px;
    border-radius: 12px;
  }

  .nav {
    position: static;
    top: auto;
    transform: none;
  }

  .nav-panel {
    flex: 0 1 auto;
  }

  .nav-toggle-btn {
    position: relative;
    z-index: 12;
    display: grid;
    width: 36px;
    height: 36px;
    margin-left: auto;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 8px 18px rgba(7, 17, 27, .14);
    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: 58%;
    height: 2px;
    border-radius: 3px;
    background: rgba(255, 255, 255, .96);
    transition: transform .22s ease, opacity .18s ease;
  }

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

  .nav-toggle-btn span:nth-child(2) {
    width: 44%;
    transform: translateX(-8%);
  }

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

  .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% + 14px);
    right: 0;
    z-index: 11;
    display: flex;
    flex: none;
    width: min(340px, calc(100vw - 48px));
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    border: 0;
    border-radius: 12px;
    background: #fff;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow: 0 24px 48px rgba(7, 17, 27, 0.22);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .22s ease, transform .22s ease;
  }

  .nav-panel::before {
    content: "";
    position: absolute;
    top: -7px;
    right: 22px;
    width: 14px;
    height: 14px;
    background: #fff;
    box-shadow: -3px -3px 6px rgba(7, 17, 27, 0.05);
    transform: rotate(45deg);
  }

  .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;
  }

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

  .hero__phone {
    margin: 32px auto 0;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: min(100%, 400px);
    --hero-phone-width: 144px;
    gap: 16px;
  }

  .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;
  }

  .mini-app__phone {
    display: none;
  }

  .mini-app {
    grid-template-columns: 1fr;
    max-width: 100%;
    justify-self: stretch;
  }

  .review-band .store-row {
    justify-content: center;
  }

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

@media (min-width: 769px) and (max-width: 1024px) {
  .nav-toggle-btn {
    width: 46px;
    height: 46px;
  }

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

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

  .hero {
    grid-template-columns: minmax(360px, 38%) 1fr;
    align-items: center;
    min-height: 735px;
    padding: 104px 58px 0;
    text-align: left;
  }

  .features {
    margin-top: 0;
  }

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

  .hero__image {
    position: absolute;
    inset: 0;
    order: initial;
    height: auto;
    margin: 0;
  }

  .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: 24px;
    bottom: 54px;
    --hero-phone-width: 198px;
    --hero-track-width: 260px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: var(--hero-track-width);
    justify-content: initial;
    gap: 14px;
    margin: 0;
  }

  .hero__phone > img {
    width: 150px;
  }

  .status-list {
    width: 100%;
    max-width: none;
  }

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

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

  .review-band {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 30px;
    padding-bottom: 28px;
    position: relative;
    padding-right: 56px;
    padding-left: 56px;
  }

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

  .score {
    justify-self: center;
  }

  .quote {
    border-left: 0;
  }

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

  .mini-app {
    margin-top: 4px;
    max-width: 430px;
    justify-self: center;
  }

  .review-band {
    gap: 23px;
    min-height: 232px;
    padding: 28px 40px;
    border-radius: 0;
  }

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

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

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

  .review-controls {
    position: absolute;
    top: 56%;
    right: 12px;
    left: 12px;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: auto;
    margin: 0;
    padding: 0;
    transform: translateY(-50%);
    pointer-events: none;
  }

  .review-controls button {
    pointer-events: auto;
  }

  .mini-app {
    max-width: 430px;
    grid-template-columns: 1fr;
    justify-self: center;
    text-align: center;
  }

  .mini-app .store-row {
    justify-content: center;
  }

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

  .area {
    grid-template-columns: .78fr 1.22fr;
    gap: 34px;
    align-items: center;
    min-height: 515px;
    padding: 58px 48px 46px;
    text-align: left;
    background-image: url("../images/map.webp");
    background-position: right center;
    background-repeat: no-repeat;
    background-size: auto 100%;
  }

  .area::before,
  .area::after {
    display: none;
  }

  .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: 172px;
    padding: 0 26px 0 18px;
  }

  .provider--home {
    width: 100%;
    margin-top: 0;
    border-radius: 0;
  }

  .footer {
    grid-template-columns: 1.1fr repeat(3, .8fr);
    gap: 34px;
    min-height: auto;
    margin-top: 0;
    padding: 86px 42px max(168px, calc(148px + env(safe-area-inset-bottom, 0px)));
  }

  .footer-logo {
    grid-column: auto;
    width: 105px;
  }

  .social {
    grid-column: 2 / -1;
    grid-row: 2;
    margin-top: 6px;
  }

  .copyright {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-column: 1 / -1;
    max-width: 100%;
    margin-top: 8px;
    margin-bottom: 0;
    padding: 18px 0 0;
    font-size: 10px;
    text-align: center;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .footer .social {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 12px;
    align-items: start;
  }

  .footer .social > h2 {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
  }

  .footer .social__icons {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    justify-self: start;
    flex-wrap: nowrap;
    margin-top: 0;
  }

  .footer .social [data-type="signupform"] {
    grid-column: 1;
    grid-row: 3;
    width: min(340px, 100%);
    max-width: none;
    margin-top: 8px;
    align-self: start;
    justify-self: start;
  }

  .footer .social [data-type="signupform"] #customForm {
    width: 100% !important;
  }

  .footer .social .quick_form_9_css[name="SIGNUP_BODY"] {
    width: 100% !important;
    max-width: 100% !important;
  }

  .footer .social #zcampaignOptinForm {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 84px !important;
    width: 100% !important;
    padding: 0 !important;
  }

  .footer .social .SIGNUP_FLD:has(input[name="CONTACT_EMAIL"]) {
    width: 100% !important;
    min-width: 0 !important;
    display: block !important;
  }

  .footer .social .SIGNUP_FLD:has(#zcWebOptin) {
    width: 84px !important;
    min-width: 84px !important;
    display: block !important;
  }

  .footer .social #SIGNUP_HEADING {
    margin: 14px 0 10px !important;
  }
}

@media (max-width: 768px) {
  .emergency-float {
    right: max(10px, env(safe-area-inset-right, 0px));
    bottom: max(10px, env(safe-area-inset-bottom, 0px));
    width: min(190px, calc(100vw - 24px));
    border-radius: 10px;
    box-shadow: 0 10px 26px rgba(7, 17, 27, .22);
  }

  .emergency-float:not(.is-open) .emergency-float__actions {
    display: none;
  }

  .emergency-float__tap {
    grid-template-columns: 32px 1fr 28px;
    column-gap: 8px;
    padding: 10px 12px;
    cursor: pointer;
  }

  .emergency-float__tap span {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .emergency-float__tap span img {
    width: 18px;
    height: 18px;
  }

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

  .emergency-float__tap small {
    display: block;
    margin-top: 1px;
    font-size: 10px;
    line-height: 1.1;
  }

  .emergency-float__toggle {
    width: 28px;
    height: 28px;
    margin-left: 0;
  }

  .emergency-float__toggle::before {
    width: 8px;
    height: 8px;
    border-right-width: 2px;
    border-bottom-width: 2px;
  }

  .emergency-float.is-open {
    width: min(190px, calc(100vw - 24px));
  }

  .emergency-float.is-open .emergency-float__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px 14px 14px;
  }

  .emergency-float.is-open .emergency-float__actions p {
    font-size: 12px;
    line-height: 1.25;
  }

  .emergency-float.is-open .emergency-float__actions a {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    font-size: 13px;
  }

  .coverage-popup,
  .newsletter-popup,
  .exit-popup,
  .contact-choice,
  .app-choice {
    align-items: center;
    padding: max(12px, env(safe-area-inset-top, 0px)) 12px max(12px, env(safe-area-inset-bottom, 0px)) 12px;
  }

  .coverage-popup__panel,
  .newsletter-popup__panel,
  .exit-popup__panel,
  .contact-choice__panel,
  .app-choice__panel {
    width: min(100%, calc(100vw - 24px));
    max-height: min(calc(100dvh - 24px), 900px);
  }

  .newsletter-popup__close,
  .coverage-popup__close,
  .exit-popup__close,
  .contact-choice__close,
  .app-choice__close {
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
  }

  .newsletter-popup__panel {
    padding: 22px 16px 18px;
    border-radius: 12px;
  }

  .newsletter-popup__panel h2 {
    font-size: clamp(20px, 6.2vw, 28px);
    line-height: 1.15;
    padding-right: 40px;
  }

  .newsletter-popup__panel p {
    font-size: 14px;
    line-height: 1.45;
  }

  .coverage-popup__panel {
    padding: 22px 16px 18px;
  }

  .coverage-check--modal .coverage-check__head {
    padding-right: 40px;
  }

  .coverage-check--modal .coverage-check__head h3 {
    font-size: clamp(18px, 5.6vw, 24px);
    line-height: 1.2;
  }

  .coverage-check--modal .coverage-check__head p {
    font-size: 13px;
    line-height: 1.5;
  }

  .coverage-check--modal .coverage-check__controls {
    flex-direction: column;
    align-items: stretch;
  }

  .coverage-check--modal .coverage-check__controls input,
  .coverage-check--modal .coverage-check__controls .download-btn,
  .coverage-check--modal .app-cta {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }

  .contact-choice__panel,
  .app-choice__panel {
    padding: 22px 16px 18px;
    border-radius: 12px;
  }

  .contact-choice__logo,
  .app-choice__logo {
    width: 64px;
    margin-top: 8px;
    margin-bottom: 12px;
  }

  .contact-choice__title,
  .app-choice__title {
    font-size: clamp(20px, 6.2vw, 24px);
    line-height: 1.15;
    padding-inline: 8px;
  }

  .contact-choice__text,
  .app-choice__text {
    max-width: none;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.45;
  }

  .contact-choice__actions,
  .app-choice__actions {
    gap: 10px;
  }

  .contact-choice__btn,
  .app-choice__btn {
    width: 100%;
    min-height: 52px;
    padding: 12px 14px;
    gap: 12px;
  }

  .contact-choice__btn span,
  .app-choice__btn span {
    min-width: 0;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .contact-choice__btn span {
    font-size: 13px;
    line-height: 1.25;
  }

  .contact-choice__btn b {
    font-size: 9px;
  }

  .contact-choice__btn i {
    flex: 0 0 24px;
  }

  .newsletter-popup__form .SIGNUP_FLD {
    height: 50px !important;
  }

  .newsletter-popup__form #zcampaignOptinForm {
    grid-template-columns: minmax(0, 1fr) 104px !important;
  }

  .newsletter-popup__form .SIGNUP_FLD:has(#zcWebOptin) {
    width: 104px !important;
    min-width: 104px !important;
  }

  .newsletter-popup__form .SIGNUP_FLD input[type="text"] {
    font-size: 15px !important;
  }

  .newsletter-popup__form .SIGNUP_FLD input[type="button"] {
    font-size: 12px !important;
  }

  .footer {
    padding: 48px 24px max(168px, calc(148px + env(safe-area-inset-bottom, 0px)));
  }

  .footer::after {
    height: clamp(40px, 6vw, 56px);
    opacity: 0.12;
  }

  .copyright {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-column: 1 / -1;
    max-width: 100%;
    margin-top: 12px;
    margin-bottom: 0;
    padding: 20px 0 0;
    font-size: 10px;
    line-height: 1.65;
    text-align: center;
    word-break: break-word;
  }

  .site-header {
    top: 0;
    width: 100%;
    padding-inline: 24px;
  }

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

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

  .hero::before {
    display: none;
  }

  .hero__image {
    margin-right: -30px;
    margin-left: -30px;
    height: 450px;
  }

  .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;
    margin-top: 14px;
  }

  .hero .app-cta {
    margin-bottom: 0;
  }

  .rating {
    margin-left: 0;
  }

  .hero__phone {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: min(100%, 400px);
    --hero-phone-width: 140px;
    margin: 28px auto 0;
    padding-bottom: 8px;
  }

  .hero__phone > img {
    flex: 0 0 var(--hero-phone-width);
    width: var(--hero-phone-width);
  }

  .status-list {
    --status-icon-size: 34px;
    --status-node-size: 9px;
    flex: 0 1 auto;
    max-width: 208px;
  }

  .status-list li {
    column-gap: 8px;
    padding: 6px 0;
  }

  .status-list__icon {
    font-size: 14px;
  }

  .status-list__copy strong {
    font-size: 11px;
  }

  .status-list__copy span {
    font-size: 9px;
  }

  .features {
    padding: 30px 24px;
  }

  .features article {
    min-height: auto;
    padding: 10px 8px;
    border-right: 0;
    border-bottom: 0;
  }

  .features {
    gap: 6px 10px;
  }

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

  .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;
  }

  .service-photo {
    height: 148px;
    margin-bottom: 22px;
    background-position: center;
    background-size: cover;
  }

  .service-card > span {
    top: 96px;
    width: 62px;
    height: 62px;
  }

  .service-card h3 {
    margin-top: 14px;
    min-height: auto;
  }

  .service-card p {
    flex: 0 0 auto;
  }

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

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

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

  .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;
    padding-bottom: 28px;
  }

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

  .score {
    justify-self: center;
  }

  .quote {
    border-left: 0;
  }

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

  .mini-app {
    margin-top: 4px;
  }

  .area ul {
    justify-content: center;
  }

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

  .provider__people {
    width: 100%;
    max-width: 420px;
    height: 245px;
    margin-top: 0;
    justify-self: center;
  }

  .provider__people img {
    width: 100%;
    max-width: 420px;
    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;
  }

  .social #SIGNUP_HEADING {
    margin: 28px 0 10px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    line-height: 1.2 !important;
  }

  .social .SIGNUP_FLD {
    height: 38px !important;
  }

  .social .SIGNUP_FLD input[type="text"] {
    font-size: 11px !important;
    padding: 0 12px !important;
  }

  .social .SIGNUP_FLD input[type="button"] {
    font-size: 10px !important;
  }

  .social #zcampaignOptinForm {
    grid-template-columns: minmax(0, 1fr) 84px !important;
  }

  .social .SIGNUP_FLD:has(#zcWebOptin) {
    width: 84px !important;
    min-width: 84px !important;
  }
 
  }

@media (max-width: 1024px) {
  .services {
    overflow: hidden;
  }

  .services .service-grid {
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    max-width: 100%;
    margin-inline: 0;
    transition: transform .3s ease;
    will-change: transform;
    touch-action: pan-y;
    cursor: grab;
    user-select: none;
  }

  .services .service-card {
    flex: 0 0 calc((100% - 32px) / 3);
    width: auto;
    min-height: 0;
  }

  .service-slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
  }

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

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

  .service-slider-controls button:hover,
  .service-slider-controls button:focus-visible {
    box-shadow: 0 8px 18px rgba(6, 23, 34, .12);
    transform: translateY(-2px);
  }

  .service-slider-controls button:disabled {
    opacity: .45;
    cursor: not-allowed;
  }
}

@media (max-width: 620px) {
  .services .service-card {
    flex-basis: calc((100% - 16px) / 2);
  }
}

@media (max-width: 425px) {
  .services .service-card {
    flex-basis: 100%;
  }
}


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

  .site-header.is-scrolled {
    min-height: 64px;
  }

  .site-header .logo {
    width: 58px;
    height: 58px;
    padding: 4px;
    border-radius: 11px;
  }

  .site-header.is-scrolled .logo {
    width: 52px;
    height: 52px;
    padding: 4px;
    border-radius: 10px;
  }

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

  .hero::before {
    display: none;
  }

  .hero__image {
    height: 420px;
  }

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

  .hero .hero-actions-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
  }

  .hero .hero-actions-row .app-cta {
    width: auto;
    margin: 0;
  }

  .hero .hero-actions-row .store-row {
    margin-top: 0;
    justify-content: center;
    width: auto;
  }

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

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

  .hero__phone {
    --hero-phone-width: 136px;
    align-items: center;
    margin: 28px auto 0;
    flex-direction: row;
    justify-content: center;
    gap: 14px;
    width: min(100%, 380px);
    padding-bottom: 8px;
  }

  .hero__phone > img {
    flex: 0 0 var(--hero-phone-width);
    width: var(--hero-phone-width);
  }

  .status-list {
    --status-icon-size: 32px;
    --status-node-size: 8px;
    flex: 0 1 auto;
    width: auto;
    max-width: 196px;
    margin: 0;
  }

  .hero .status-list__copy span {
    color: var(--muted);
    text-shadow: none;
  }

  .status-list li {
    column-gap: 7px;
    padding: 7px 0;
  }

  .status-list__icon {
    font-size: 13px;
  }

  .status-list__copy strong {
    font-size: 11px;
  }

  .status-list__copy span {
    font-size: 9px;
  }

  .features {
    padding: 34px 18px;
  }

  .features article {
    min-height: auto;
    padding: 10px 8px;
    border-right: 0;
    border-bottom: 0;
  }

  .features {
    gap: 6px 10px;
  }

  .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: 24px;
    left: 14px;
    height: 52px;
    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-photo {
    height: 142px;
    margin-bottom: 20px;
    background-position: center;
    background-size: cover;
  }

  .service-card > span {
    top: 92px;
    width: 58px;
    height: 58px;
  }

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

  .service-card h3 {
    margin-top: 12px;
    min-height: auto;
  }

  .service-card p {
    flex: 0 0 auto;
    margin-bottom: 8px;
  }

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

  .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;
  }

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

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

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

  .review-controls {
    margin-bottom: 20px;
  }

  .mini-app {
    margin-top: 6px;
  }

  .area ul {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 280px;
    margin: 22px auto 0;
  }

  .area li {
    padding-left: 28px;
    font-size: 11px;
    text-align: left;
  }

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

  .area::before {
    height: min(54%, 250px);
    opacity: .22;
  }

  .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: 180px;
    min-height: 40px;
    padding: 0 18px;
    font-size: 13px;
  }

  .provider-cta__icon {
    font-size: 16px;
  }

  .provider.provider--home,
  .provider--home {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 18px;
    min-height: 0;
    padding: 22px 16px 28px;
  }

  .provider--home h2 {
    max-width: 100%;
    margin: 0 auto;
    font-size: 22px;
    line-height: 1.2;
  }

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

  .provider--home ul {
    grid-column: auto;
    width: 100%;
    max-width: 340px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    justify-items: stretch;
  }

  .provider--home li {
    max-width: none;
    width: 100%;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
    justify-self: stretch;
    text-align: left;
  }

  .provider--home li:nth-child(3) {
    grid-column: auto;
    justify-self: stretch;
    width: 100%;
  }

  .provider--home > div {
    width: 100%;
    max-width: 340px;
    gap: 14px;
    justify-items: stretch;
  }

  .provider--home > div a,
  .provider--home a {
    grid-column: auto;
    width: 100%;
    max-width: 340px;
    min-width: 0;
    min-height: 52px;
    justify-self: stretch;
    padding: 12px 18px;
    font-size: 15px;
    white-space: normal;
  }

  .footer {
    padding: 48px 42px max(168px, calc(148px + env(safe-area-inset-bottom, 0px)));
  }

  .footer::after {
    height: clamp(44px, 7vw, 68px);
    font-size: clamp(36px, 7vw, 60px);
    font-weight: 600;
    letter-spacing: 0.04em;
    opacity: 0.14;
  }

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

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

  .footer a,
  .footer p:not(.copyright) {
    font-size: 10px;
  }

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

  .social [data-type="signupform"] {
    width: min(280px, 100%);
    max-width: 100%;
  }

  .social #SIGNUP_HEADING {
    margin: 34px 0 8px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    letter-spacing: normal !important;
    text-transform: uppercase !important;
  }

  .social #zcampaignOptinForm {
    grid-template-columns: minmax(0, 1fr) 74px !important;
  }

  .social .SIGNUP_FLD {
    height: 34px !important;
  }

  .social .SIGNUP_FLD:has(#zcWebOptin) {
    width: 74px !important;
    min-width: 74px !important;
  }

  .social .SIGNUP_FLD input[type="text"] {
    font-size: 10px !important;
    padding: 0 10px !important;
  }

  .social .SIGNUP_FLD input[type="button"] {
    font-size: 9px !important;
    letter-spacing: 0.03em;
  }

  .social .SIGNUP_FLD:has(input[name="CONTACT_EMAIL"]),
  .social .SIGNUP_FLD:has(#zcWebOptin) {
    width: auto !important;
    margin: 0 !important;
  }

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

  .copyright {
    max-width: 100%;
    padding-right: 0;
    padding-left: 0;
    font-size: 10px;
    line-height: 1.65;
    text-align: center;
  }

  .exit-popup {
    padding: max(12px, env(safe-area-inset-top, 0px)) 12px max(12px, env(safe-area-inset-bottom, 0px)) 12px;
  }

  .coverage-popup {
    padding: max(12px, env(safe-area-inset-top, 0px)) 12px max(12px, env(safe-area-inset-bottom, 0px)) 12px;
  }

  .coverage-popup__panel {
    padding: 22px 16px 18px;
  }

  .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: 0;
    width: 100%;
    min-height: 70px;
    padding: 10px 16px;
    border-radius: 0;
  }

  .site-header.is-scrolled {
    min-height: 62px;
  }

  .site-header .logo {
    width: 54px;
    height: 54px;
  }

  .site-header.is-scrolled .logo {
    width: 50px;
    height: 50px;
  }

  .nav-toggle-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
  }

  .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-bottom: 48px;
    padding-left: 16px;
    background-color: #fff;
    background-image: url("../images/mobile.png");
    background-position: 38% bottom;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
  }

  .hero__image {
    height: 455px;
    margin: -84px -16px 0;
  }

  .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 {
    --hero-phone-width: 90px;
    margin: 24px auto 0;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: min(100%, 360px);
    padding-bottom: 8px;
  }

  .hero__phone > img {
    flex: 0 0 var(--hero-phone-width);
    width: var(--hero-phone-width);
  }

  .status-list {
    --status-node-size: 8px;
    --status-icon-size: 30px;
    flex: 0 1 auto;
    width: auto;
    max-width: 184px;
    margin: 0;
  }

  .status-list li {
    column-gap: 7px;
    padding: 5px 0;
  }

  .status-list__icon {
    font-size: 13px;
  }

  .status-list__copy strong {
    font-size: 10px;
  }

  .status-list__copy 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;
  }

  .step-grid b {
    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: 0;
    padding-bottom: 68px;
    border-radius: 9px;
    scroll-snap-align: none;
  }

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

  .service-photo {
    height: 140px;
    margin-bottom: 18px;
    background-position: center;
    background-size: cover;
  }

  .service-card > span {
    top: 90px;
    width: 56px;
    height: 56px;
  }

  .service-card h3 {
    margin-top: 10px;
    min-height: auto;
  }

  .service-card p {
    flex: 0 0 auto;
    margin-bottom: 6px;
    padding: 0 11px;
  }

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

  .review-controls {
    margin-bottom: 18px;
  }

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

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

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

  .area::before {
    height: min(55%, 260px);
    opacity: .24;
  }

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

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

  .area::before {
    height: min(52%, 240px);
    opacity: .22;
  }

  .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;
  }

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

  .provider--home .provider__people {
    width: min(300px, 100%);
    height: auto;
    max-height: none;
  }

  .provider--home .provider__people img {
    width: 100%;
    height: auto;
    transform: none;
  }

  .provider--home > div {
    width: 100%;
    max-width: 340px;
    display: grid;
    gap: 14px;
    justify-items: stretch;
  }

  .provider--home h2 {
    max-width: 100%;
    font-size: 22px;
    line-height: 1.2;
  }

  .provider--home p {
    max-width: 290px;
    margin: 0 auto;
  }

  .provider--home ul {
    width: 100%;
    max-width: 340px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    justify-items: stretch;
  }

  .provider--home li {
    max-width: none;
    width: 100%;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
    justify-self: stretch;
    text-align: left;
    font-size: 13px;
  }

  .provider--home li:nth-child(3) {
    grid-column: auto;
    justify-self: stretch;
    width: 100%;
  }

  .provider--home > div a,
  .provider--home a {
    width: 100%;
    max-width: 340px;
    min-width: 0;
    min-height: 52px;
    justify-self: stretch;
    padding: 12px 18px;
    font-size: 15px;
    white-space: normal;
  }

  .footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 28px;
    padding: 44px 34px max(168px, calc(148px + env(safe-area-inset-bottom, 0px)));
  }

  .social .footer-email-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;
  }

  .provider-landing .page-cta:not(.page-cta--full) {
    margin-right: 24px;
    margin-left: 24px;
    padding: 32px 24px;
  }

  .coverage-check:not(.coverage-check--modal) {
    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));
  }

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

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

  .legal-shell {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .legal-nav {
    display: none;
  }
}

@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 {
    display: none;
  }

  .page-cta {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: stretch;
  }

  .page-cta .download-btn {
    display: inline-flex;
    width: 100%;
    justify-content: center;
  }

  .coverage-check:not(.coverage-check--modal) {
    padding: 22px 18px;
    gap: 16px;
  }

  .coverage-check:not(.coverage-check--modal) .coverage-check__head h3 {
    font-size: clamp(18px, 5.6vw, 22px);
    line-height: 1.2;
  }

  .coverage-check:not(.coverage-check--modal) .coverage-check__head p {
    font-size: 13px;
    line-height: 1.5;
  }

  .coverage-check:not(.coverage-check--modal) .coverage-check__controls {
    flex-direction: column;
    align-items: stretch;
  }

  .coverage-check:not(.coverage-check--modal) .coverage-check__controls input,
  .coverage-check:not(.coverage-check--modal) .coverage-check__controls .download-btn,
  .coverage-check:not(.coverage-check--modal) .app-cta {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }

  .coverage-check:not(.coverage-check--modal) .app-cta {
    display: flex;
    min-height: 48px;
    padding: 0 18px;
    font-size: 14px;
    gap: 9px;
  }

  .coverage-check:not(.coverage-check--modal) .app-cta span {
    width: 18px;
    height: 18px;
  }

}

@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;
  }

  .provider-benefits .card-grid {
    grid-template-columns: 1fr;
  }

  .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;
    gap: 18px;
  }

  .provider-landing .page-cta:not(.page-cta--full) {
    margin-right: 18px;
    margin-left: 18px;
    padding: 28px 18px;
  }

  .page-cta h2 {
    font-size: 24px;
  }

  .faq-list summary {
    padding: 16px 18px;
    font-size: 14px;
    line-height: 1.35;
  }

  .faq-list p {
    padding: 0 18px 18px;
    font-size: 13px;
  }

  .coverage-check:not(.coverage-check--modal) {
    padding: 22px 16px;
  }

  .coverage-check:not(.coverage-check--modal) .coverage-check__head h3 {
    font-size: 18px;
  }

  .coverage-check:not(.coverage-check--modal) .coverage-check__result {
    min-height: 64px;
  }

  .coverage-check:not(.coverage-check--modal) .app-cta {
    min-height: 44px;
    padding: 0 16px;
    font-size: 13px;
    gap: 8px;
  }

  .coverage-check:not(.coverage-check--modal) .app-cta span {
    width: 16px;
    height: 16px;
  }

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

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

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

@media (max-width: 768px) {
  .review-band {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px 16px 16px;
    border-radius: 0 0 44% 44% / 0 0 14% 14%;
  }

  .score {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
  }

  .score strong {
    font-size: 28px;
    line-height: 1;
  }

  .score .score__stars {
    font-size: 14px;
    letter-spacing: 2px;
  }

  .score p {
    max-width: none;
    margin: 0;
    font-size: 12px;
    text-align: left;
  }

  .quote {
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 10px;
    padding: 12px 14px;
    border-left: 1px solid rgba(255, 255, 255, .24);
    min-height: 100px;
    display: grid;
    grid-template-columns: 48px 1fr;
    column-gap: 12px;
    align-items: center;
    width: 100%;
  }
  
  .quote:nth-of-type(2) {
    display: none;
  }

  .quote .avatar {
    width: 44px;
    height: 44px;
    align-self: center;
  }

  .quote p {
    max-height: 60px;
    padding-right: 2px;
    overflow-y: auto;
    font-size: 13px;
    line-height: 1.28;
  }

  .quote small {
    font-size: 12px;
  }

  .review-controls {
    display: flex;
    align-self: center;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin: 4px 0 12px;
    padding-bottom: 0;
  }

  .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 {
    display: block;
    width: 34px;
    height: 34px;
  }

  .mini-app {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    margin-top: 12px;
    width: 100%;
  }

  .mini-app h3 {
    font-size: 22px;
    font-style: italic;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: 0;
  }

  .mini-app p {
    margin-top: 8px;
    margin-bottom: 0;
    font-size: 13px;
    line-height: 1.4;
  }

  .mini-app .store-row {
    margin-top: 16px;
    gap: 12px;
    justify-content: center;
  }

  .area {
    padding: 34px 16px 20px;
  }

  .area::after {
    display: none;
  }

  .area ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
  }

  .area li {
    text-align: left;
  }

  .area::before {
    height: min(75%, 420px);
    opacity: .2;
    background-position: center right;
    background-size: min(620px, 120%) auto;
  }
}

@media (max-width: 620px) {
  .footer .social {
    grid-column: 1 / -1;
    position: relative;
    padding-top: 2px;
  }

  .footer .social__icons {
    position: absolute;
    top: 0;
    right: 0;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .footer .social__icons a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .footer .social [data-type="signupform"] {
    grid-column: 1 !important;
    grid-row: 3 !important;
    width: auto !important;
    max-width: none !important;
    margin-top: 8px !important;
    align-self: start !important;
    justify-self: start !important;
  }

  .footer .social [data-type="signupform"] #customForm {
    width: 340px !important;
    max-width: 340px !important;
  }

  .footer .social .quick_form_9_css[name="SIGNUP_BODY"] {
    width: 340px !important;
    max-width: 340px !important;
  }

  .footer .social #zcampaignOptinForm {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 84px !important;
    width: 310px !important;
    padding: 0 !important;
  }

  .footer .social .SIGNUP_FLD:has(input[name="CONTACT_EMAIL"]) {
    width: 100% !important;
    min-width: 0 !important;
    display: block !important;
  }

  .footer .social .SIGNUP_FLD:has(#zcWebOptin) {
    width: 84px !important;
    min-width: 84px !important;
    display: block !important;
  }

  .footer .social #SIGNUP_HEADING {
    margin: 14px 0 10px !important;
  }
}

@media (max-width: 620px) {
  .provider--home {
    gap: 18px;
    padding: 22px 14px 26px;
  }

  .provider--home .provider__people {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .provider--home .provider__people img {
    display: block;
    width: 100%;
    max-width: none;
    border-radius: 12px;
    object-fit: cover;
  }

  .provider--home > div {
    width: 100%;
    max-width: 360px;
    gap: 14px;
    justify-items: stretch;
  }

  .provider--home h2 {
    max-width: 100%;
    font-size: 22px;
    line-height: 1.2;
  }

  .provider--home p {
    max-width: 100%;
    margin: 0 auto;
    font-size: 13px;
    line-height: 1.55;
  }

  .provider--home ul {
    width: 100%;
    max-width: 360px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    justify-items: stretch;
  }

  .provider--home li {
    max-width: none;
    width: 100%;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    justify-self: stretch;
    text-align: left;
    font-size: 13px;
  }

  .provider--home li img,
  .provider--home li:first-child img {
    width: 30px;
    height: 30px;
    object-fit: contain;
  }

  .provider--home li:nth-child(3) {
    grid-column: auto;
    justify-self: stretch;
    width: 100%;
  }

  .provider--home > div a,
  .provider--home a {
    width: 100%;
    max-width: 360px;
    min-width: 0;
    min-height: 52px;
    justify-self: stretch;
    padding: 12px 18px;
    font-size: 15px;
    white-space: normal;
  }
}

@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 > .mini-app__phone,
  .provider:hover,
  .provider li:hover img,
  .provider--home:hover,
  .provider--home li:hover img,
  .emergency-float:hover {
    transform: none;
  }
}

/* Safety guide download banner */
.safety-banner {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 24px;
  margin-top: 88px;
  padding: 14px max(24px, 5vw);
  background: linear-gradient(90deg, var(--dark-green), var(--green));
  color: #fff;
  text-align: center;
}

.safety-banner__icon {
  display: inline-flex;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

.safety-banner__icon svg {
  width: 100%;
  height: 100%;
}

.safety-banner__text {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.safety-banner__text strong {
  font-weight: 700;
}

.safety-banner__text-short {
  display: none;
}

.safety-banner__btn {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--dark-green);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.safety-banner__btn:hover,
.safety-banner__btn:focus-visible {
  box-shadow: var(--shadow-card);
  transform: translateY(-1px);
}

.safety-banner__btn svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 1024px) {
  .safety-banner {
    margin-top: 80px;
  }
}

@media (max-width: 620px) {
  .safety-banner {
    margin-top: 72px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 10px;
    padding: 10px 14px;
    text-align: left;
  }

  .safety-banner__icon {
    width: 18px;
    height: 18px;
  }

  .safety-banner__text {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 13px;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .safety-banner__text-full {
    display: none;
  }

  .safety-banner__text-short {
    display: inline;
  }

  .safety-banner__btn {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    padding: 0;
    border-radius: 50%;
  }

  .safety-banner__btn-label {
    display: none;
  }

  .safety-banner__btn svg {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 425px) {
  .safety-banner {
    margin-top: 70px;
  }
}
