/* module: site.css */
:root {
  --navy: #071a38;
  --navy-2: #0d2b58;
  --blue: #0b5ee8;
  --blue-dark: #0746b5;
  --blue-soft: #eaf2ff;
  --yellow: #ffc400;
  --yellow-dark: #e8a900;
  --orange: #f47a16;
  --red: #e4382c;
  --green: #1d9b5f;
  --text: #0b1935;
  --muted: #53617a;
  --line: #dbe3ef;
  --soft: #f5f8fc;
  --white: #fff;
  --shadow: 0 12px 34px rgba(7, 26, 56, 0.09);
  --container: 1200px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.modal-open,
body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

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

button {
  border: 0;
}

svg {
  width: 1.2em;
  height: 1.2em;
  flex: 0 0 auto;
  stroke-width: 2;
}

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

h1,
h2,
h3 {
  color: var(--text);
  line-height: 1.12;
}

h1 {
  margin-bottom: 22px;
  font-size: 54px;
  font-weight: 800;
}

h2 {
  margin-bottom: 18px;
  font-size: 42px;
  font-weight: 800;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 750;
}

p {
  color: var(--muted);
}

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

.container--narrow {
  max-width: 930px;
}

.section {
  padding: 88px 0;
}

.section--soft {
  background: var(--soft);
}

.section--tint {
  background: #eef5ff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 42px;
}

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

.section-heading--left {
  text-align: left;
}

.section-heading h2 {
  margin-bottom: 12px;
}

.section-heading p {
  margin-bottom: 0;
  font-size: 19px;
}

.lead {
  font-size: 19px;
}

.stars {
  color: #ffb400;
  font-size: 0.92em;
  letter-spacing: 0;
  white-space: nowrap;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 7px;
  background: var(--blue);
  color: var(--white);
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.btn:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.btn:focus-visible,
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(11, 94, 232, 0.28);
  outline-offset: 2px;
}

.btn--small {
  min-height: 44px;
  padding: 10px 16px;
  font-size: 14px;
}

.btn--wide {
  width: 100%;
}

.btn--yellow {
  background: var(--yellow);
  color: var(--text);
}

.btn--yellow:hover {
  background: var(--yellow-dark);
  color: var(--text);
}

.btn--blue {
  background: var(--blue);
  color: var(--white);
}

.btn--red {
  background: var(--red);
}

.btn--red:hover {
  background: #bd251d;
}

.btn--outline {
  border-color: var(--blue);
  background: var(--white);
  color: var(--blue);
}

.btn--outline:hover {
  background: var(--blue-soft);
  color: var(--blue-dark);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 750;
}

.text-link:hover {
  color: var(--blue-dark);
}

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

.brand img {
  width: 64px;
  height: 39px;
  flex: none;
  object-fit: contain;
}

.brand-type {
  display: grid;
  color: var(--navy);
  line-height: 0.93;
}

.brand-type strong {
  font-size: 20px;
  letter-spacing: 0;
}

.brand-type b {
  margin-top: 4px;
  color: #1291d2;
  font-size: 20px;
  letter-spacing: 3px;
}

.brand-type small {
  margin-top: 7px;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 4px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 6px 18px rgba(7, 26, 56, 0.04);
}

.header-meta {
  border-bottom: 1px solid #e7edf5;
  background: #f8faff;
}

.header-meta__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
  color: var(--muted);
  font-size: 12px;
}

.header-meta__inner > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.header-meta__inner svg {
  color: var(--blue);
}

.platform-rating b {
  color: var(--text);
}

.header-main {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 26px;
}

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

.main-nav a {
  position: relative;
  padding: 29px 0;
  color: #23314a;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-dark);
  font-weight: 800;
  white-space: nowrap;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  cursor: pointer;
}

.hero {
  overflow: hidden;
  padding-top: 44px;
  background: var(--white);
}

.hero-grid {
  min-height: 548px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(440px, 0.96fr);
  align-items: center;
  gap: 34px;
}

.hero-copy {
  z-index: 2;
  padding: 28px 0 38px;
}

.hero-copy h1 {
  max-width: 680px;
  margin-bottom: 18px;
}

.hero-lead {
  margin-bottom: 22px;
  font-size: 20px;
}

.hero-lead span {
  display: block;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 24px;
}

.hero-badges > span {
  min-height: 70px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-content: center;
  column-gap: 8px;
  padding: 10px 12px;
  border: 1px solid #dce6f5;
  border-radius: 7px;
  background: #f8fbff;
}

.hero-badges svg {
  grid-row: 1 / 3;
  align-self: center;
  color: var(--blue);
  font-size: 24px;
}

.hero-badges b {
  font-size: 13px;
}

.hero-badges small {
  color: var(--muted);
  font-size: 11px;
}

.hero-actions {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 1.05fr;
  gap: 8px;
}

.hero-action {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid #bdccea;
  border-radius: 7px;
  background: var(--white);
  color: var(--blue-dark);
}

.hero-action:hover {
  border-color: var(--blue);
  background: var(--blue-soft);
}

.hero-action > svg {
  font-size: 24px;
}

.hero-action span {
  display: grid;
  min-width: 0;
}

.hero-action b {
  font-size: 14px;
  line-height: 1.2;
}

.hero-action small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}

.hero-action--primary {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--text);
}

.hero-action--primary:hover {
  border-color: var(--yellow-dark);
  background: var(--yellow-dark);
}

.hero-action--estimate {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

.hero-action--estimate small {
  color: #dce9ff;
}

.hero-action--estimate:hover {
  background: var(--blue-dark);
  color: var(--white);
}

.hero-response {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0 0;
  color: #66738b;
  font-size: 12px;
}

.hero-response svg {
  color: var(--blue);
}

.hero-media {
  position: relative;
  align-self: stretch;
  min-height: 520px;
}

.hero-media__backdrop {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 88%;
  height: 88%;
  border-radius: 8px 8px 0 0;
  background: #eaf4ff;
}

.hero-media > img {
  position: absolute;
  z-index: 2;
  right: -36px;
  bottom: -10px;
  width: 112%;
  max-width: none;
  max-height: 530px;
  object-fit: contain;
  object-position: right bottom;
}

.technician-card {
  position: absolute;
  z-index: 3;
  right: 12px;
  bottom: 28px;
  width: 268px;
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 0 10px;
  padding: 14px 16px;
  border: 1px solid #cbd9ea;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.technician-card .status-dot {
  width: 9px;
  height: 9px;
  margin-top: 5px;
  border-radius: 50%;
  background: #18a85d;
  box-shadow: 0 0 0 4px rgba(24, 168, 93, 0.14);
}

.technician-card div {
  display: grid;
}

.technician-card small,
.technician-card span {
  color: var(--muted);
  font-size: 11px;
}

.technician-card b {
  font-size: 17px;
}

.technician-card > strong {
  grid-column: 2;
  width: max-content;
  margin-top: 7px;
  padding: 3px 8px;
  border-radius: 99px;
  background: #e8f8ef;
  color: var(--green);
  font-size: 10px;
}

.hero-stats {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #d8e2ef;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background: var(--white);
  box-shadow: 0 -8px 25px rgba(7, 26, 56, 0.05);
}

.hero-stats > div {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px;
  border-right: 1px solid var(--line);
}

.hero-stats > div:last-child {
  border-right: 0;
}

.hero-stats svg {
  color: var(--blue);
  font-size: 30px;
}

.hero-stats strong {
  color: var(--blue);
  font-size: 25px;
}

.hero-stats span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.hero-stats b {
  color: var(--text);
  font-size: 14px;
}

.problems-layout {
  display: grid;
  grid-template-columns: 350px minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.problem-list {
  display: grid;
  gap: 9px;
}

.problem-button {
  min-height: 70px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid #dce3ed;
  border-left: 4px solid transparent;
  border-radius: 8px;
  background: var(--white);
  text-align: left;
  box-shadow: 0 4px 10px rgba(7, 26, 56, 0.035);
  cursor: pointer;
}

.problem-button > span:first-child {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 22px;
}

.problem-button > span:nth-child(2) {
  display: grid;
  min-width: 0;
}

.problem-button b {
  font-size: 15px;
}

.problem-button small {
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.problem-button > svg {
  color: #20324d;
}

.problem-button:hover,
.problem-button.is-active {
  border-color: #93b8fa;
  border-left-color: var(--blue);
  background: #f5f9ff;
}

.problem-visual {
  min-width: 0;
}

.house-stage {
  position: relative;
  height: 568px;
  overflow: hidden;
  border: 1px solid #dce3ed;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.house-stage > img {
  position: absolute;
  top: -164px;
  left: -423px;
  width: 1415px;
  max-width: none;
}

.zone-hotspot {
  position: absolute;
  z-index: 2;
  width: 24px;
  height: 24px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(11, 94, 232, 0.2);
  opacity: 0.35;
  transition: opacity 0.18s ease, transform 0.18s ease, background-color 0.18s ease;
}

.zone-hotspot.is-active {
  background: var(--yellow);
  box-shadow: 0 0 0 7px rgba(255, 196, 0, 0.3);
  opacity: 1;
  transform: scale(1.15);
}

.zone-hotspot--ac {
  bottom: 94px;
  left: 11%;
}

.zone-hotspot--furnace {
  bottom: 80px;
  left: 46%;
}

.zone-hotspot--thermostat {
  top: 177px;
  right: 19%;
}

.zone-hotspot--airflow {
  top: 322px;
  right: 29%;
}

.zone-hotspot--drain {
  right: 35%;
  bottom: 23px;
}

.problem-answer {
  min-height: 86px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  margin-top: 12px;
  padding: 14px 16px;
  border: 1px solid #cfe0f8;
  border-radius: 8px;
  background: var(--white);
}

.problem-answer [data-problem-label] {
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.problem-answer p {
  margin: 2px 0 0;
  font-size: 13px;
}

.cta-band {
  min-height: 126px;
  display: grid;
  grid-template-columns: 76px minmax(260px, 1fr) minmax(260px, auto);
  align-items: center;
  gap: 22px;
  margin-top: 30px;
  padding: 20px 26px;
  border: 1px solid #cfdef5;
  border-radius: 8px;
  background: #eff5ff;
}

.cta-band__icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #dce9ff;
  color: var(--blue);
  font-size: 32px;
}

.cta-band__copy h3 {
  margin-bottom: 4px;
  font-size: 22px;
}

.cta-band__copy p {
  margin: 0;
  font-size: 15px;
}

.cta-band > .btn {
  min-width: 260px;
  min-height: 58px;
}

.cta-band > small {
  grid-column: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: -15px;
  color: var(--muted);
  font-size: 11px;
}

.cta-band--urgent {
  border-color: #dce5f2;
  background: var(--white);
}

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

.service-card {
  position: relative;
  min-height: 180px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  gap: 12px 15px;
  padding: 23px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 7px 20px rgba(7, 26, 56, 0.045);
}

.service-card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 25px;
}

.service-card h3 {
  margin: 2px 0 6px;
  font-size: 18px;
}

.service-card p {
  margin: 0;
  font-size: 13px;
}

.service-card > a {
  grid-column: 1 / 3;
  justify-self: end;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid #cbd9ef;
  border-radius: 6px;
  color: var(--blue);
}

.service-card:hover {
  border-color: #97baf4;
  transform: translateY(-2px);
}

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

.case-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(7, 26, 56, 0.055);
}

.case-card__images {
  height: 220px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.case-card__images figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
}

.case-card__images figure:first-child {
  border-right: 2px solid var(--white);
}

.case-card__images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-card__images figure:first-child img {
  filter: grayscale(0.75) brightness(0.72);
}

.case-card__images figcaption {
  position: absolute;
  bottom: 9px;
  left: 9px;
  padding: 4px 8px;
  border-radius: 99px;
  background: rgba(7, 26, 56, 0.84);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.case-card__images figure:last-child figcaption {
  background: var(--green);
}

.case-card__body {
  padding: 20px;
}

.category {
  display: inline-flex;
  margin-bottom: 9px;
  padding: 4px 9px;
  border-radius: 99px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.case-card__body h3 {
  min-height: 48px;
  font-size: 20px;
}

.case-card__body p,
.case-card__body strong {
  display: flex;
  align-items: center;
  gap: 7px;
}

.case-card__body p {
  margin-bottom: 8px;
  font-size: 13px;
}

.case-card__body strong {
  min-height: 42px;
  margin-bottom: 16px;
  color: var(--green);
  font-size: 12px;
}

.case-card__body .btn {
  width: 100%;
  min-height: 44px;
  font-size: 13px;
}

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

.step-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(7, 26, 56, 0.05);
}

.step-card__media {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.step-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-card__media span {
  position: absolute;
  bottom: 12px;
  left: 15px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.step-card__body {
  padding: 21px;
}

.step-card__body p {
  min-height: 50px;
  margin-bottom: 15px;
  font-size: 14px;
}

.step-card__body small {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--blue);
  font-weight: 700;
}

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

.why-grid article {
  min-height: 136px;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 22px;
  border: 1px solid #d2dff1;
  border-radius: 8px;
  background: var(--white);
}

.why-grid article > span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 27px;
}

.why-grid h3 {
  margin-bottom: 5px;
  font-size: 18px;
}

.why-grid p {
  margin-bottom: 0;
  font-size: 13px;
}

.review-platforms {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: -18px 0 28px;
}

.review-platforms > span {
  display: grid;
  grid-template-columns: auto auto;
  gap: 0 10px;
  min-width: 220px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
}

.review-platforms small {
  grid-column: 1 / 3;
  color: var(--muted);
}

.review-slider {
  position: relative;
}

.review-track {
  display: grid;
  grid-auto-columns: calc((100% - 32px) / 3);
  grid-auto-flow: column;
  gap: 16px;
  overflow-x: auto;
  padding: 4px 2px 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.review-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  min-height: 272px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 7px 18px rgba(7, 26, 56, 0.045);
  scroll-snap-align: start;
}

.review-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 13px;
}

.review-card__head > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.review-card__head h3 {
  margin-bottom: 1px;
  font-size: 16px;
}

.review-card__head small {
  color: var(--muted);
}

.review-card p {
  min-height: 98px;
  margin-top: 13px;
  font-size: 14px;
}

.review-card .verified {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-weight: 700;
}

.slider-buttons {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 5px;
}

.slider-buttons button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid #bcd0ed;
  border-radius: 50%;
  background: var(--white);
  color: var(--blue);
  cursor: pointer;
}

.slider-buttons button:hover {
  border-color: var(--blue);
  background: var(--blue-soft);
}

.areas-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 22px;
  align-items: stretch;
}

.map-frame,
.area-panel {
  min-height: 490px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.map-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.area-panel {
  padding: 25px;
}

.area-panel h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.area-panel h3 svg {
  color: var(--blue);
}

.area-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px 8px;
  margin: 20px 0 24px;
}

.area-list span {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #34415a;
  font-size: 12px;
}

.area-list svg {
  color: var(--blue);
}

.service-feature-section {
  border-top: 1px solid #eef2f7;
}

.service-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 650px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-feature--reverse .service-feature__content {
  order: 2;
}

.service-feature--reverse .service-feature__media {
  order: 1;
}

.service-feature__content {
  padding: 50px 45px;
}

.service-feature__content h2 {
  font-size: 40px;
}

.mode {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 7px 11px;
  border-radius: 99px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.mode--heat {
  background: #fff1df;
  color: var(--orange);
}

.problem-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 12px;
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
}

.problem-checks li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 650;
}

.problem-checks svg {
  width: 34px;
  height: 34px;
  padding: 8px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
}

.mode--heat ~ .problem-checks svg,
.service-feature--reverse .problem-checks svg {
  background: #fff1df;
  color: var(--orange);
}

.feature-actions {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 10px;
}

.feature-actions .btn {
  min-height: 68px;
}

.feature-actions .btn small {
  font-size: 11px;
  font-weight: 600;
}

.safety-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0 0;
  padding: 14px;
  border: 1px solid #f3d7a0;
  border-radius: 7px;
  background: #fff8e9;
  color: #5d4e32;
  font-size: 12px;
}

.safety-note svg {
  color: var(--orange);
  font-size: 19px;
}

.service-feature__media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--soft);
}

.service-feature__media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-feature__media--crop > img {
  object-position: left center;
  transform: scale(1.28);
  transform-origin: left center;
}

.proof-row {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.proof-row > span {
  min-height: 112px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 4px;
  padding: 10px;
  border: 1px solid #dbe3ef;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  text-align: center;
}

.proof-row svg {
  color: var(--blue);
  font-size: 25px;
}

.service-feature--reverse .proof-row svg {
  color: var(--orange);
}

.proof-row b {
  font-size: 13px;
}

.proof-row small {
  color: var(--muted);
  font-size: 10px;
}

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

.urgent-grid article {
  min-height: 250px;
  padding: 24px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  text-align: center;
}

.urgent-grid article > span {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  margin: 0 auto 19px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 31px;
}

.urgent-grid article:nth-child(2) > span {
  background: #fff1df;
  color: var(--orange);
}

.urgent-grid article:nth-child(4) > span {
  background: #efebff;
  color: #6d56d7;
}

.urgent-grid h3 {
  font-size: 19px;
}

.urgent-grid p {
  font-size: 13px;
}

.safety-band {
  min-height: 92px;
  display: grid;
  grid-template-columns: 58px auto 1fr;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
  padding: 16px 24px;
  border: 1px solid #efca7f;
  border-radius: 8px;
  background: #fff8e9;
}

.safety-band > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--yellow-dark);
  font-size: 29px;
}

.safety-band h3,
.safety-band p {
  margin: 0;
}

.safety-band p {
  padding-left: 18px;
  border-left: 1px solid #efca7f;
  color: #33415a;
  font-size: 14px;
}

.safety-band p b {
  color: var(--red);
}

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

.article-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.article-card__media {
  height: 190px;
  display: block;
  overflow: hidden;
  background: var(--soft);
}

.article-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.article-card:hover .article-card__media img {
  transform: scale(1.03);
}

.article-card__body {
  padding: 18px;
}

.article-card h3 {
  min-height: 70px;
  margin-bottom: 9px;
  font-size: 20px;
}

.article-card h3 a:hover {
  color: var(--blue);
}

.article-card p {
  min-height: 82px;
  font-size: 13px;
}

.article-card .text-link {
  font-size: 13px;
}

.blog-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.blog-actions .btn {
  min-width: 250px;
}

.faq-list {
  overflow: hidden;
  border: 1px solid #cdd8e7;
  border-radius: 8px;
  background: var(--white);
}

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

.faq-question {
  width: 100%;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 22px;
  background: var(--white);
  color: var(--text);
  font-size: 17px;
  font-weight: 750;
  text-align: left;
  cursor: pointer;
}

.faq-question[aria-expanded="true"] {
  background: #edf4ff;
}

.faq-answer {
  padding: 18px 22px 21px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.quick-request {
  background: var(--white);
}

.quick-request__shell {
  overflow: hidden;
  border: 1px solid #d7e0ec;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.quick-request__bar {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 20px;
  background: var(--blue);
  color: var(--white);
  font-size: 16px;
  font-weight: 750;
  text-align: center;
}

.quick-request .lead-form {
  padding: 26px 34px 28px;
}

.lead-form {
  position: relative;
}

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

.field {
  display: grid;
  gap: 7px;
}

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

.field > span:first-child {
  color: var(--text);
  font-size: 14px;
  font-weight: 750;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #c6d1df;
  border-radius: 7px;
  background: var(--white);
  color: var(--text);
}

.field input,
.field select {
  min-height: 54px;
  padding: 0 14px;
}

.field select {
  appearance: none;
  padding-right: 40px;
  background-image: linear-gradient(45deg, transparent 50%, #24334b 50%), linear-gradient(135deg, #24334b 50%, transparent 50%);
  background-position: calc(100% - 19px) 23px, calc(100% - 14px) 23px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.field textarea {
  min-height: 104px;
  resize: vertical;
  padding: 14px;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
}

.phone-field {
  position: relative;
  display: block;
}

.phone-field > svg {
  position: absolute;
  z-index: 2;
  top: 17px;
  left: 14px;
  color: var(--navy);
  pointer-events: none;
}

.phone-field input {
  padding-left: 45px;
}

.form-consent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 20px 0 17px;
  color: #4a5970;
  font-size: 11px;
  text-align: center;
}

.form-consent a {
  color: var(--blue);
  text-decoration: underline;
}

.form-note,
.form-status {
  margin: 12px 0 0;
  text-align: center;
}

.form-note {
  color: var(--muted);
  font-size: 12px;
}

.form-status {
  min-height: 20px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
}

.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.site-footer {
  padding: 62px 0 0;
  background: #071727;
  color: #dce6f2;
}

.site-footer .brand-type strong,
.site-footer .brand-type small {
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.8fr 0.8fr 0.9fr;
  gap: 54px;
}

.footer-contact > p {
  margin: 22px 0 28px;
  color: #b9c4d2;
}

.footer-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 27px;
  font-weight: 800;
}

.footer-phone svg {
  color: #348cff;
}

.footer-call-link {
  display: inline-block;
  margin: 5px 0 24px 54px;
  color: #4b9bff;
  text-decoration: underline;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #cbd5e1;
}

.contact-list svg {
  margin-top: 3px;
  color: #348cff;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 3px;
}

.footer-column h2 {
  margin-bottom: 17px;
  padding-bottom: 15px;
  border-bottom: 1px solid #415063;
  color: #4b9bff;
  font-size: 15px;
  text-transform: uppercase;
}

.footer-column > a:not(.btn) {
  min-height: 47px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--white);
  font-size: 14px;
}

.footer-column > a:hover {
  color: #77b5ff;
}

.footer-column > a svg {
  color: #b4c0d0;
}

.footer-request {
  margin-top: 48px;
}

.footer-bottom {
  margin-top: 46px;
  padding: 24px 0 34px;
  border-top: 1px solid #415063;
  color: #aab6c5;
  font-size: 13px;
}

.mobile-actions {
  display: none;
}

.lead-modal[hidden] {
  display: none;
}

.lead-modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 16, 34, 0.78);
  cursor: default;
}

.modal-dialog {
  position: relative;
  z-index: 2;
  width: min(960px, 100%);
  max-height: calc(100vh - 48px);
  display: grid;
  grid-template-columns: 39% 61%;
  overflow: auto;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.modal-close {
  position: absolute;
  z-index: 4;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
}

.modal-offer {
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 42px 38px;
  background: var(--navy);
  color: var(--white);
}

.modal-offer .brand-type strong,
.modal-offer .brand-type small {
  color: var(--white);
}

.modal-offer h2 {
  margin: 0;
  color: var(--white);
  font-size: 43px;
}

.modal-offer h2 span {
  color: var(--yellow);
}

.modal-offer p {
  margin: 13px 0 0;
  color: #e6edf7;
  font-size: 18px;
}

.modal-offer > strong {
  display: grid;
  justify-items: center;
  padding: 20px;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--text);
  font-size: 38px;
  line-height: 1;
}

.modal-offer > strong small {
  margin-top: 8px;
  font-size: 15px;
}

.modal-form {
  display: grid;
  align-content: center;
  padding: 56px 46px 34px;
}

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

.lead-form--compact .field--full {
  grid-column: auto;
}

.lead-form--compact .btn {
  margin-top: 18px;
}

.modal-legal {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 15px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.modal-legal span {
  width: 1px;
  background: var(--line);
}

.breadcrumbs {
  border-bottom: 1px solid var(--line);
  background: #f8faff;
}

.breadcrumbs .container {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}

.breadcrumbs a:hover {
  color: var(--blue);
}

.breadcrumbs b {
  color: var(--text);
}

.page-hero {
  padding: 62px 0;
  background: var(--soft);
}

.page-hero__grid {
  min-height: 430px;
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  align-items: center;
  gap: 50px;
}

.page-hero h1 {
  max-width: 740px;
}

.page-hero p {
  max-width: 680px;
  font-size: 19px;
}

.page-hero__actions {
  display: flex;
  gap: 10px;
  margin-top: 26px;
}

.page-hero__media {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 8px;
  background: #e7f1ff;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.page-hero__media > span {
  position: absolute;
  right: 15px;
  bottom: 15px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border-radius: 7px;
  background: var(--white);
  color: var(--blue);
  font-size: 12px;
  font-weight: 750;
  box-shadow: var(--shadow);
}

.service-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.service-page-grid > div {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.detail-list {
  display: grid;
  gap: 11px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 8px 12px;
  border-bottom: 1px solid #e6ebf2;
}

.detail-list svg {
  color: var(--blue);
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.compare-panel {
  min-height: 470px;
  padding: 30px;
  border: 1px solid;
  border-radius: 8px;
  background: var(--white);
}

.compare-panel > span {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  font-size: 32px;
}

.compare-panel > p {
  padding-bottom: 18px;
  border-bottom: 1px solid;
}

.compare-panel ul {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.compare-panel li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.compare-panel--blue {
  border-color: #8db5f5;
}

.compare-panel--blue > span,
.compare-panel--blue li svg {
  color: var(--blue);
}

.compare-panel--blue > span {
  background: var(--blue-soft);
}

.compare-panel--blue > p {
  border-color: #cbdcf7;
}

.compare-panel--yellow {
  border-color: #edc768;
}

.compare-panel--yellow > span,
.compare-panel--yellow li svg {
  color: var(--yellow-dark);
}

.compare-panel--yellow > span {
  background: #fff4cf;
}

.compare-panel--yellow > p {
  border-color: #ecdcae;
}

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

.season-card {
  min-height: 430px;
  padding: 24px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  text-align: center;
}

.season-card > span {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  border-radius: 50%;
  color: var(--white);
  font-size: 32px;
}

.season-card h3 {
  display: inline-block;
  padding: 4px 11px;
  border-radius: 99px;
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
}

.season-card > b {
  min-height: 55px;
  display: block;
  margin: 12px 0 18px;
}

.season-card ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  text-align: left;
}

.season-card li {
  display: flex;
  gap: 8px;
}

.season-card--spring > span,
.season-card--spring h3 {
  background: #49a84f;
}

.season-card--spring li svg {
  color: #49a84f;
}

.season-card--summer > span,
.season-card--summer h3 {
  background: #ffae00;
}

.season-card--summer li svg {
  color: #ffae00;
}

.season-card--fall > span,
.season-card--fall h3 {
  background: #f1760b;
}

.season-card--fall li svg {
  color: #f1760b;
}

.season-card--winter > span,
.season-card--winter h3 {
  background: #3e8bed;
}

.season-card--winter li svg {
  color: #3e8bed;
}

.checks-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.05fr 0.8fr;
  gap: 16px;
  align-items: stretch;
}

.checks-layout > article {
  padding: 26px;
  border: 1px solid #8eb8f7;
  border-radius: 8px;
  background: var(--white);
}

.checks-layout > article h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
}

.checks-layout > article ul {
  display: grid;
  gap: 15px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.checks-layout > article li {
  display: flex;
  gap: 9px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
}

.checks-layout > article li svg {
  color: var(--blue);
}

.checks-layout .checks-layout__heat {
  border-color: #f2ad53;
}

.checks-layout .checks-layout__heat h3,
.checks-layout .checks-layout__heat li svg {
  color: var(--orange);
}

.checks-photo {
  overflow: hidden;
  border-radius: 8px;
}

.checks-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price-section {
  background: var(--white);
}

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

.price-card {
  position: relative;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  text-align: center;
  box-shadow: 0 8px 22px rgba(7, 26, 56, 0.045);
}

.price-card.is-featured {
  border-color: var(--blue);
  background: #f7faff;
}

.popular {
  position: absolute;
  top: -14px;
  padding: 5px 13px;
  border-radius: 5px;
  background: var(--blue);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
}

.price-card > span:not(.popular) {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 32px;
}

.price-card h3 {
  min-height: 48px;
  font-size: 18px;
}

.price-card > small {
  color: var(--muted);
}

.price-card > strong {
  min-height: 64px;
  display: flex;
  align-items: center;
  color: var(--blue);
  font-size: 34px;
}

.price-card p {
  flex: 1;
  width: 100%;
  margin: 8px 0 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.price-card .btn {
  width: 100%;
  padding-inline: 8px;
  font-size: 12px;
}

.price-note,
.price-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.price-note {
  margin: 22px 0 0;
  padding: 11px;
  border-radius: 7px;
  background: var(--soft);
  font-size: 12px;
}

.price-note svg,
.price-trust svg {
  color: var(--blue);
}

.price-trust {
  margin: 24px 0 0;
}

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

.city-grid a {
  min-height: 76px;
  display: grid;
  grid-template-columns: 34px 1fr 22px;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.city-grid a > svg:first-child {
  color: var(--blue);
}

.city-grid a > span {
  display: grid;
}

.city-grid small {
  color: var(--muted);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 50px;
  align-items: start;
}

.prose {
  max-width: 820px;
}

.prose h1 {
  margin-bottom: 10px;
}

.prose h2 {
  margin-top: 40px;
  font-size: 28px;
}

.prose h3 {
  margin-top: 28px;
}

.prose p,
.prose li {
  color: #43516a;
  font-size: 16px;
}

.prose a {
  color: var(--blue);
  text-decoration: underline;
}

.article-aside {
  position: sticky;
  top: 130px;
  padding: 25px;
  border: 1px solid #bdd0eb;
  border-radius: 8px;
  background: #f3f7ff;
}

.article-aside h2 {
  font-size: 24px;
}

.article-aside .btn {
  width: 100%;
  margin-top: 9px;
}

.about-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: center;
}

.about-photo,
.contact-photo {
  height: 500px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
}

.about-photo img,
.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-hero {
  padding: 72px 0;
  background: var(--soft);
}

.contact-hero__grid {
  min-height: 520px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 46px;
}

.contact-hero h1 {
  max-width: 700px;
}

.contact-hero p {
  max-width: 650px;
  font-size: 19px;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 26px;
}

.contact-cards a {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.contact-cards a > svg {
  width: 46px;
  height: 46px;
  padding: 11px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
}

.contact-cards a span {
  display: grid;
  min-width: 0;
}

.contact-cards small {
  color: var(--muted);
}

.contact-cards b {
  overflow-wrap: anywhere;
}

.policy-content {
  max-width: 900px;
}

.policy-content h2 {
  font-size: 26px;
}

.policy-content ol {
  padding-left: 24px;
}

.thank-you {
  min-height: 620px;
  display: grid;
  place-items: center;
  padding: 80px 0;
  text-align: center;
}

.thank-you .container {
  max-width: 720px;
}

.thank-you .container > span {
  width: 94px;
  height: 94px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 45px;
}

.thank-you p {
  font-size: 18px;
}

.thank-you .btn {
  margin: 12px 8px;
}

.thank-you .text-link {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

@media (max-width: 1180px) {
  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 36px;
  }

  .header-main {
    gap: 15px;
  }

  .main-nav {
    gap: 16px;
  }

  .main-nav a {
    font-size: 13px;
  }

  .header-phone span {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .hero-actions {
    grid-template-columns: 1fr 1fr;
  }

  .hero-action--estimate {
    grid-column: 1 / -1;
  }

  .house-stage > img {
    left: -461px;
  }

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

  .price-card:nth-child(n + 4) {
    min-height: 420px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 72px;
  }

  .header-meta {
    display: none;
  }

  .header-main {
    min-height: var(--header-height);
  }

  .main-nav {
    position: fixed;
    z-index: 120;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    width: min(360px, 88vw);
    display: grid;
    align-content: start;
    gap: 0;
    padding: 22px;
    background: var(--white);
    box-shadow: -20px 0 45px rgba(7, 26, 56, 0.18);
    transform: translateX(110%);
    transition: transform 0.22s ease;
  }

  .nav-open .main-nav {
    transform: translateX(0);
  }

  .main-nav a {
    padding: 17px 8px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }

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

  .header-actions {
    margin-left: auto;
  }

  .header-actions .btn {
    display: none;
  }

  .header-phone span {
    display: inline;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.9fr;
    min-height: 520px;
  }

  .hero-media > img {
    right: -90px;
    width: 138%;
  }

  .technician-card {
    right: 0;
    bottom: 22px;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stats > div:nth-child(2) {
    border-right: 0;
  }

  .hero-stats > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .problems-layout {
    grid-template-columns: 1fr;
  }

  .problem-list {
    grid-template-columns: 1fr 1fr;
  }

  .house-stage > img {
    top: -160px;
    left: -370px;
  }

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

  .case-grid,
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .case-card:last-child,
  .step-card:last-child {
    grid-column: 1 / -1;
  }

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

  .review-track {
    grid-auto-columns: calc((100% - 16px) / 2);
  }

  .areas-layout {
    grid-template-columns: 1fr;
  }

  .map-frame {
    min-height: 430px;
  }

  .area-panel {
    min-height: auto;
  }

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

  .service-feature {
    grid-template-columns: 1fr;
  }

  .service-feature__content,
  .service-feature--reverse .service-feature__content {
    order: 1;
  }

  .service-feature__media,
  .service-feature--reverse .service-feature__media {
    order: 2;
    min-height: 540px;
  }

  .urgent-grid,
  .article-grid {
    grid-template-columns: 1fr 1fr;
  }

  .article-card h3,
  .article-card p {
    min-height: auto;
  }

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

  .footer-column:last-child {
    grid-column: 2 / 4;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 18px;
  }

  .footer-column:last-child h2 {
    grid-column: 1 / -1;
  }

  .footer-request {
    grid-column: 1 / -1;
    width: 260px;
    margin-top: 20px;
  }

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

  .page-hero__media {
    height: 340px;
  }

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

  .checks-layout {
    grid-template-columns: 1fr 1fr;
  }

  .checks-photo {
    grid-column: 1 / -1;
    grid-row: 2;
    height: 420px;
  }

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

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

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: calc(66px + env(safe-area-inset-bottom));
    font-size: 15px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 62px 0;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 19px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-heading p,
  .lead {
    font-size: 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 50px;
    height: 30px;
  }

  .brand-type strong,
  .brand-type b {
    font-size: 15px;
  }

  .brand-type b {
    letter-spacing: 2px;
  }

  .brand-type small {
    margin-top: 5px;
    font-size: 7px;
    letter-spacing: 3px;
  }

  .header-phone span {
    display: none;
  }

  .hero {
    padding-top: 20px;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-copy {
    padding: 24px 0 20px;
  }

  .hero-copy h1 {
    margin-bottom: 16px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-badges {
    grid-template-columns: 1fr;
  }

  .hero-badges > span {
    min-height: 60px;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero-action--estimate {
    grid-column: auto;
  }

  .hero-media {
    min-height: 380px;
  }

  .hero-media__backdrop {
    width: 100%;
  }

  .hero-media > img {
    right: -34px;
    width: 116%;
    max-height: 390px;
  }

  .technician-card {
    right: 4px;
    bottom: 14px;
    width: 236px;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stats > div {
    min-height: 105px;
    flex-direction: column;
    gap: 4px;
    padding: 12px;
    text-align: center;
  }

  .hero-stats strong {
    font-size: 21px;
  }

  .problem-list {
    grid-template-columns: 1fr;
  }

  .problem-button small {
    white-space: normal;
  }

  .house-stage {
    height: 310px;
  }

  .house-stage > img {
    top: -88px;
    left: -233px;
    width: 780px;
  }

  .zone-hotspot {
    width: 18px;
    height: 18px;
  }

  .zone-hotspot--ac {
    bottom: 50px;
  }

  .zone-hotspot--furnace {
    bottom: 44px;
  }

  .zone-hotspot--thermostat {
    top: 97px;
  }

  .zone-hotspot--airflow {
    top: 176px;
  }

  .zone-hotspot--drain {
    bottom: 12px;
  }

  .problem-answer {
    grid-template-columns: 1fr;
  }

  .problem-answer .btn {
    width: 100%;
  }

  .cta-band {
    grid-template-columns: 52px 1fr;
    gap: 14px;
    padding: 18px;
  }

  .cta-band__icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .cta-band__copy h3 {
    font-size: 18px;
  }

  .cta-band__copy p {
    font-size: 13px;
  }

  .cta-band > .btn {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
  }

  .cta-band > small {
    grid-column: 1 / -1;
    margin-top: -6px;
  }

  .service-grid,
  .case-grid,
  .steps-grid,
  .why-grid,
  .urgent-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 142px;
  }

  .case-card:last-child,
  .step-card:last-child {
    grid-column: auto;
  }

  .review-platforms {
    display: grid;
  }

  .review-track {
    grid-auto-columns: 100%;
  }

  .area-list {
    grid-template-columns: 1fr 1fr;
  }

  .map-frame {
    min-height: 300px;
  }

  .service-feature__content {
    padding: 32px 22px;
  }

  .service-feature__content h2 {
    font-size: 30px;
  }

  .problem-checks {
    grid-template-columns: 1fr;
  }

  .feature-actions {
    grid-template-columns: 1fr;
  }

  .service-feature__media,
  .service-feature--reverse .service-feature__media {
    min-height: 430px;
  }

  .proof-row {
    right: 8px;
    bottom: 8px;
    left: 8px;
    gap: 5px;
  }

  .proof-row > span {
    min-height: 100px;
    padding: 7px 4px;
  }

  .proof-row b {
    font-size: 11px;
  }

  .safety-band {
    grid-template-columns: 44px 1fr;
    gap: 10px;
    padding: 14px;
  }

  .safety-band h3 {
    font-size: 18px;
  }

  .safety-band p {
    grid-column: 1 / -1;
    padding: 12px 0 0;
    border-top: 1px solid #efca7f;
    border-left: 0;
  }

  .blog-actions {
    display: grid;
  }

  .blog-actions .btn {
    min-width: 0;
  }

  .quick-request__bar {
    font-size: 13px;
  }

  .quick-request .lead-form {
    padding: 22px 16px;
  }

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

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

  .form-consent {
    flex-wrap: wrap;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-column:last-child {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .footer-column:last-child h2,
  .footer-request {
    grid-column: auto;
  }

  .footer-request {
    width: 100%;
    margin-top: 18px;
  }

  .mobile-actions {
    position: fixed;
    z-index: 500;
    right: 0;
    bottom: 0;
    left: 0;
    height: calc(66px + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 1px solid #cad5e4;
    background: var(--white);
    box-shadow: 0 -8px 24px rgba(7, 26, 56, 0.14);
    transition: transform 0.2s ease;
  }

  .mobile-actions.is-hidden {
    transform: translateY(110%);
  }

  .mobile-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-right: 1px solid #dce4ef;
    font-size: 13px;
    font-weight: 800;
  }

  .mobile-actions a:last-child {
    border-right: 0;
  }

  .mobile-actions__call {
    background: var(--blue);
    color: var(--white);
  }

  .mobile-actions__request {
    background: var(--yellow);
    color: var(--text);
  }

  .lead-modal {
    padding: 10px;
  }

  .modal-dialog {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 20px);
  }

  .modal-offer {
    min-height: 260px;
    padding: 24px;
  }

  .modal-offer .brand {
    display: none;
  }

  .modal-offer h2 {
    font-size: 34px;
  }

  .modal-offer p {
    font-size: 15px;
  }

  .modal-offer > strong {
    width: 220px;
    padding: 14px;
    font-size: 29px;
  }

  .modal-form {
    padding: 28px 20px 22px;
  }

  .page-hero {
    padding: 45px 0;
  }

  .page-hero__grid,
  .service-page-grid,
  .compare-grid,
  .checks-layout,
  .about-layout,
  .contact-hero__grid {
    grid-template-columns: 1fr;
  }

  .page-hero__grid {
    min-height: auto;
  }

  .page-hero__actions {
    display: grid;
  }

  .page-hero__media {
    height: 320px;
  }

  .service-page-grid > div {
    padding: 23px;
  }

  .season-grid,
  .price-grid,
  .city-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .checks-photo {
    grid-column: auto;
    grid-row: auto;
    height: 350px;
  }

  .price-card {
    min-height: 410px;
  }

  .article-layout {
    gap: 26px;
  }

  .about-photo,
  .contact-photo {
    height: 360px;
  }

  .contact-hero {
    padding: 52px 0;
  }

  .contact-hero__grid {
    min-height: auto;
  }
}

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

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 27px;
  }

  .brand-type small {
    letter-spacing: 2px;
  }

  .hero-media {
    min-height: 345px;
  }

  .hero-media > img {
    width: 126%;
  }

  .technician-card {
    width: 215px;
  }

  .house-stage > img {
    left: -250px;
  }

  .area-list {
    grid-template-columns: 1fr;
  }

  .proof-row small {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* module: home-experience.css */
/* 2026 compact interactive home experience */
:root {
  --cyan: #18a9c9;
  --mint: #dff5ef;
  --coral: #ec684f;
  --warm: #fff2dd;
  --shadow-strong: 0 18px 48px rgba(7, 26, 56, 0.15);
}

.section {
  padding: 64px 0;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading h2 {
  font-size: 38px;
}

.section-heading p {
  font-size: 17px;
}

.section--soft {
  background: #edf9f7;
}

.section--tint {
  background: var(--warm);
}

.header-identity {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-trust {
  display: flex;
  align-items: stretch;
  gap: 0;
  border-left: 1px solid #dbe4ef;
}

.header-location,
.header-rating {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-right: 1px solid #dbe4ef;
  color: #25344e;
  white-space: nowrap;
}

.header-location {
  font-size: 9px;
  font-weight: 750;
  line-height: 1.25;
}

.header-location svg {
  width: 15px;
  color: var(--blue);
}

.header-rating {
  display: grid;
  grid-template-columns: auto auto;
  gap: 2px 6px;
  transition: background 0.18s ease;
}

.header-rating:hover {
  background: #f4f8ff;
}

.header-rating > img {
  width: 46px;
  height: auto;
  object-fit: contain;
}

.header-rating__score {
  display: grid;
  gap: 2px;
}

.header-rating__value {
  display: flex;
  align-items: center;
  gap: 3px;
}

.header-rating b {
  color: var(--text);
  font-size: 10px;
  line-height: 1;
}

.header-rating small {
  color: #efb400;
  font-size: 8px;
  line-height: 1;
}

.header-rating em {
  color: #65738a;
  font-size: 8px;
  font-style: normal;
  line-height: 1;
}

.header-rating__brand {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #d32323;
  font-size: 11px;
}

.header-rating__brand img {
  width: 17px;
  height: 17px;
}

.mobile-nav-trust {
  display: none;
}

.header-main {
  width: min(calc(100% - 48px), 1320px);
  min-height: 78px;
  gap: 18px;
}

.main-nav a {
  padding-top: 27px;
  padding-bottom: 27px;
}

.header-actions {
  gap: 10px;
}

.header-phone-block {
  position: relative;
  min-height: 42px;
  display: flex;
  align-items: center;
}

.header-hours {
  position: absolute;
  top: calc(50% + 15px);
  left: 35px;
  display: grid;
  grid-template-columns: 7px minmax(0, 1fr);
  align-items: start;
  gap: 5px;
  white-space: nowrap;
}

.header-hours__dot {
  width: 7px;
  height: 7px;
  margin-top: 2px;
  border-radius: 50%;
  background: #7d8b9f;
}

.header-hours__copy {
  display: grid;
  gap: 1px;
}

.header-hours strong,
.header-hours small {
  line-height: 1.05;
}

.header-hours strong {
  color: #53637a;
  font-size: 9px;
}

.header-hours small {
  color: #6b798d;
  font-size: 8px;
}

.header-hours[data-open="true"] .header-hours__dot {
  background: #16895c;
  box-shadow: 0 0 0 3px rgba(22, 137, 92, 0.13);
}

.header-hours[data-open="true"] strong {
  color: #16895c;
}

.header-hours[data-open="true"] small {
  color: #397860;
}

.header-hours[data-open="false"] .header-hours__dot {
  background: #c93d3d;
  box-shadow: 0 0 0 3px rgba(201, 61, 61, 0.12);
}

.header-hours[data-open="false"] strong {
  color: #c12626;
}

.header-hours[data-open="false"] small {
  color: #a34343;
}

.account-link {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid #26344a;
  border-radius: 7px;
  background: #171922;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.account-link:hover,
.account-link[aria-current="page"] {
  border-color: var(--yellow);
  transform: translateY(-1px);
}

.account-link > svg {
  width: 22px;
  height: 22px;
  color: var(--white);
  stroke-width: 2;
}

.account-link span {
  display: none;
}

.hero--coverage {
  overflow: visible;
  padding: 28px 0 34px;
  border-bottom: 1px solid #cfe1f4;
  background: #e9f4ff;
}

.hero-coverage__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 430px);
  align-items: center;
  gap: 28px;
  margin-bottom: 18px;
}

.hero-coverage__intro .eyebrow {
  margin-bottom: 9px;
}

.hero-coverage__intro h1 {
  max-width: 720px;
  margin-bottom: 8px;
  font-size: 42px;
}

.hero-coverage__intro p {
  max-width: 760px;
  margin: 0;
  font-size: 17px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 7px;
  margin-top: 17px;
}

.hero-proof > span {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid #c9dcee;
  border-radius: 7px;
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 5px 14px rgba(7, 26, 56, 0.05);
}

.hero-proof b {
  color: var(--text);
  font-size: 10px;
  white-space: nowrap;
}

.hero-callback {
  min-width: 0;
  padding: 18px;
  border: 1px solid #183b67;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(7, 26, 56, 0.18);
}

.hero-callback .eyebrow {
  margin-bottom: 5px;
  color: #62c9df;
}

.hero-callback h2 {
  margin-bottom: 4px;
  color: var(--white);
  font-size: 24px;
}

.hero-callback > p {
  margin-bottom: 12px;
  color: #c2cede;
  font-size: 12px;
}

.lead-form--hero {
  grid-template-columns: minmax(0, 1fr) 174px;
  gap: 8px;
}

.lead-form--hero .field > span:first-child {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.lead-form--hero .field input {
  min-height: 48px;
  border-color: #72849a;
}

.lead-form--hero .btn {
  min-height: 48px;
  margin: 0;
  padding-inline: 12px;
  font-size: 12px;
}

.lead-form--hero .form-note,
.lead-form--hero .form-status {
  grid-column: 1 / -1;
  margin-top: 0;
}

.lead-form--hero .form-note {
  color: #9fb0c6;
  font-size: 9px;
}

.lead-form--hero .form-status {
  min-height: 0;
  color: #ffd86a;
}

.coverage-experience {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  overflow: hidden;
  border: 1px solid #c8d9ec;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-strong);
}

.coverage-map {
  position: relative;
  min-width: 0;
  height: 100%;
  min-height: 380px;
  overflow: hidden;
  background: #dbeeff;
}

.coverage-map > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coverage-map__regions {
  position: absolute;
  z-index: 2;
  inset: 0;
}

.coverage-region {
  position: absolute;
  inset: 0;
  clip-path: var(--region);
  background: rgba(255, 193, 7, 0.58);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.18s ease;
}

.coverage-region:hover,
.coverage-region:focus-visible,
.coverage-region.is-active {
  opacity: 1;
}

.coverage-region:focus-visible {
  outline: 0;
  background: rgba(255, 193, 7, 0.72);
}

.coverage-map__status {
  position: absolute;
  z-index: 4;
  bottom: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 11px;
  border: 1px solid rgba(7, 26, 56, 0.16);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--blue);
  box-shadow: 0 8px 22px rgba(7, 26, 56, 0.14);
  pointer-events: none;
}

.coverage-map__status span {
  display: grid;
}

.coverage-map__status b {
  color: var(--text);
  font-size: 12px;
}

.coverage-map__status small {
  color: var(--muted);
  font-size: 9px;
}

.coverage-panel {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 20px;
  background: var(--navy);
  color: var(--white);
}

.coverage-panel__heading {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  padding-bottom: 13px;
  border-bottom: 1px solid #304563;
}

.coverage-panel__heading > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: var(--yellow);
  color: var(--text);
}

.coverage-panel__heading small {
  color: #73c7dc;
  font-size: 9px;
  font-weight: 800;
}

.coverage-panel h2 {
  margin: 2px 0 0;
  color: var(--white);
  font-size: 20px;
}

.coverage-panel > p {
  margin: 13px 0;
  color: #c2cede;
  font-size: 11px;
  line-height: 1.45;
}

.coverage-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}

.coverage-options button,
.coverage-summary__areas button {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid transparent;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.coverage-options button {
  min-height: 31px;
  padding: 4px 5px;
  border-bottom-color: #2d415e;
  color: #e5edf8;
  font-size: 10px;
}

.coverage-options button svg {
  color: #56c2dd;
}

.coverage-options button:hover,
.coverage-options button.is-active {
  border-color: #63809f;
  border-radius: 5px;
  background: #203858;
  color: var(--yellow);
}

.coverage-options button.is-active svg {
  color: var(--yellow);
}

.coverage-panel__foot {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  padding-top: 13px;
  color: var(--yellow);
}

.coverage-panel__foot span {
  display: grid;
}

.coverage-panel__foot b {
  color: var(--white);
  font-size: 11px;
}

.coverage-panel__foot small {
  color: #9eafc4;
  font-size: 9px;
}

#hvac-problems {
  padding: 52px 0;
  background: #edf9f7;
}

.problems-layout {
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 18px;
}

.problem-list {
  gap: 6px;
}

.problem-button {
  min-height: 54px;
  grid-template-columns: 38px minmax(0, 1fr) 18px;
  gap: 9px;
  padding: 7px 9px;
  box-shadow: none;
}

.problem-button > span:first-child {
  width: 36px;
  height: 36px;
  border-radius: 7px;
  font-size: 18px;
}

.problem-button b {
  font-size: 13px;
}

.problem-button small {
  font-size: 9px;
}

.problem-button:hover,
.problem-button.is-active {
  border-color: #77b6ae;
  border-left-color: #0c8c7d;
  background: #f7fffd;
}

.problem-button.is-active > span:first-child {
  background: #0c8c7d;
  color: var(--white);
}

.house-stage {
  height: 440px;
  display: grid;
  place-items: center;
  aspect-ratio: auto;
  border-color: #bddbd5;
  background: #d9ebf9;
}

.house-canvas {
  position: relative;
  height: 100%;
  max-width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #d9ebf9;
}

.house-canvas > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.system-zone {
  position: absolute;
  z-index: 2;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.system-zone::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  border: 2px solid rgba(11, 94, 232, 0.76);
  background: rgba(11, 94, 232, 0.14);
  clip-path: var(--zone-shape, inset(0 round 8px));
  content: "";
  opacity: 0;
  transition: opacity 0.2s ease, background-color 0.2s ease, filter 0.2s ease;
}

.system-zone:hover::before,
.system-zone:focus-visible::before {
  opacity: 0.7;
}

.system-zone.is-active::before {
  border-color: #0759bd;
  background: rgba(255, 196, 0, 0.44);
  opacity: 1;
  filter: drop-shadow(0 0 8px rgba(255, 174, 0, 0.62));
  animation: zone-breathe 1.7s ease-in-out infinite;
}

.system-zone b {
  position: absolute;
  z-index: 4;
  bottom: calc(100% + 5px);
  left: 50%;
  padding: 5px 8px;
  border-radius: 4px;
  background: var(--navy);
  color: var(--white);
  font-size: 10px;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 5px 16px rgba(7, 26, 56, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.system-zone:hover b,
.system-zone:focus-visible b,
.system-zone.is-active b {
  opacity: 1;
  transform: translate(-50%, 0);
}

.system-zone__marker {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: rgba(7, 26, 56, 0.9);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(7, 26, 56, 0.3);
  opacity: 0.82;
  transform: translate(-50%, -50%);
  transition: background-color 0.18s ease, color 0.18s ease, opacity 0.18s ease, transform 0.18s ease;
}

.system-zone__marker svg {
  width: 14px;
  height: 14px;
}

.system-zone:hover .system-zone__marker,
.system-zone:focus-visible .system-zone__marker,
.system-zone.is-active .system-zone__marker {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.12);
}

.system-zone.is-active .system-zone__marker {
  background: var(--yellow);
  color: var(--navy);
}

.system-zone:focus-visible {
  outline: none;
}

.system-zone--ac {
  --zone-shape: polygon(15% 2%, 86% 2%, 100% 91%, 0 100%);
  top: 77%;
  left: 3.5%;
  width: 13.5%;
  height: 17.5%;
}

.system-zone--furnace {
  --zone-shape: polygon(8% 0, 94% 1%, 100% 97%, 0 100%);
  top: 77.5%;
  left: 30%;
  width: 12.5%;
  height: 18%;
}

.system-zone--thermostat {
  --zone-shape: inset(6% round 50%);
  top: 52.5%;
  left: 43.3%;
  width: 5.5%;
  height: 8.5%;
}

.system-zone--airflow {
  --zone-shape: polygon(3% 30%, 14% 6%, 87% 7%, 98% 42%, 91% 96%, 11% 94%);
  top: 9%;
  left: 27.5%;
  width: 43.5%;
  height: 14.5%;
}

.system-zone--airflow b {
  top: calc(100% + 5px);
  bottom: auto;
}

.system-zone--airflow-vents {
  --zone-shape: polygon(0 31%, 33% 0, 95% 0, 100% 29%, 58% 42%, 55% 100%, 46% 100%, 44% 43%, 4% 56%);
  z-index: 1;
  top: 68.5%;
  left: 21%;
  width: 40%;
  height: 15%;
  pointer-events: none;
}

.system-zone--drain {
  --zone-shape: polygon(18% 0, 71% 0, 70% 58%, 100% 64%, 100% 100%, 65% 100%, 64% 71%, 0 66%, 0 25%, 18% 25%);
  top: 70%;
  left: 40%;
  width: 8%;
  height: 24%;
}

.problem-answer {
  min-height: 82px;
  margin-top: 8px;
  padding: 10px 13px;
  border-color: #b9dad4;
}

.problem-answer .btn {
  min-height: 46px;
}

@keyframes zone-breathe {
  50% { opacity: 0.72; filter: drop-shadow(0 0 4px rgba(255, 174, 0, 0.42)); }
}

.service-grid {
  gap: 10px;
}

.service-card {
  min-height: 150px;
  padding: 17px;
}

.section--cases {
  background: var(--navy);
}

.section--cases .section-heading h2,
.section--cases .section-heading .eyebrow {
  color: var(--white);
}

.section--cases .section-heading p {
  color: #b8c6d9;
}

.section-slider-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-slider-head .section-heading {
  margin-right: 0;
  margin-bottom: 24px;
}

.section-slider-head > .slider-buttons {
  flex: 0 0 auto;
  margin: 0 0 24px;
}

.section--cases .slider-buttons button {
  border-color: #4b607c;
  background: #162e50;
  color: var(--white);
}

.section--cases .slider-buttons button:hover {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--text);
}

.case-track {
  display: grid;
  grid-auto-columns: calc((100% - 18px) / 2);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  padding: 2px 2px 14px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.case-track::-webkit-scrollbar {
  display: none;
}

.case-card {
  display: grid;
  grid-template-columns: 44% minmax(0, 1fr);
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.case-card__media {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  background: #dfeefa;
}

.case-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-card:nth-child(2) .case-card__media img,
.case-card:nth-child(3) .case-card__media img {
  object-fit: contain;
}

.case-card__media > span {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
}

.case-card__body {
  display: flex;
  flex-direction: column;
  padding: 18px;
}

.case-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.case-card__meta > span:last-child {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--muted);
  font-size: 10px;
}

.case-card__body h3 {
  min-height: 0;
  margin: 2px 0 13px;
  font-size: 20px;
}

.case-card dl {
  display: grid;
  gap: 9px;
  margin: 0 0 14px;
}

.case-card dl div {
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.case-card dt {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.case-card dd {
  margin: 2px 0 0;
  color: var(--text);
  font-size: 11px;
}

.case-card dd svg {
  margin-right: 4px;
  color: var(--green);
  vertical-align: -2px;
}

.case-card__action {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding: 8px 0 0;
  border-top: 1px solid var(--line);
  background: transparent;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.case-card__action:hover {
  color: var(--blue-dark);
}

.step-card__media {
  height: 185px;
  background: #e9f4ff;
}

.step-card__media img {
  object-fit: contain;
  object-position: center;
}

.step-card__body {
  padding: 17px;
}

.step-card__body p {
  min-height: 42px;
  margin-bottom: 10px;
}

.why-grid {
  gap: 10px;
}

.why-grid article {
  position: relative;
  min-height: 132px;
  overflow: hidden;
  padding: 18px 18px 30px;
  border-top: 4px solid var(--blue);
  box-shadow: 0 8px 18px rgba(7, 26, 56, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.why-grid article:nth-child(2),
.why-grid article:nth-child(5) {
  border-top-color: var(--cyan);
}

.why-grid article:nth-child(3),
.why-grid article:nth-child(6) {
  border-top-color: var(--coral);
}

.why-grid article:hover {
  z-index: 2;
  border-color: var(--yellow);
  box-shadow: 0 18px 38px rgba(7, 26, 56, 0.16);
  transform: scale(1.035);
}

.why-grid article > span {
  width: 52px;
  height: 52px;
  border-radius: 7px;
}

.why-grid article small {
  position: absolute;
  right: 18px;
  bottom: 10px;
  left: 96px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--green);
  font-size: 9px;
  font-weight: 750;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.why-grid article:hover small {
  opacity: 1;
  transform: translateY(0);
}

.section--reviews {
  background: #f6f9fe;
}

.review-platforms {
  justify-content: flex-start;
  margin: -12px 0 18px;
}

.review-platforms > a {
  min-width: 240px;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  box-shadow: 0 6px 16px rgba(7, 26, 56, 0.05);
}

.review-platforms > a > span {
  display: grid;
}

.review-platforms > a > strong {
  color: #d32323;
  font-size: 19px;
}

.review-platforms > a b {
  font-size: 14px;
}

.review-platforms > a small {
  color: var(--muted);
  font-size: 9px;
}

.review-platforms > a > svg {
  color: var(--blue);
}

.review-track {
  grid-auto-columns: calc((100% - 16px) / 2);
  padding-bottom: 10px;
}

.review-shot {
  min-width: 0;
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(7, 26, 56, 0.06);
  scroll-snap-align: start;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.review-shot:hover {
  border-color: #8bb4ec;
  transform: translateY(-2px);
}

.review-shot__image {
  aspect-ratio: 16 / 8.2;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.review-shot__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.review-shot__foot {
  min-height: 58px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 9px 13px;
}

.review-shot__foot > span {
  display: grid;
}

.review-shot__foot b {
  font-size: 12px;
}

.review-shot__foot small {
  color: var(--muted);
  font-size: 9px;
}

.review-shot__foot > svg {
  color: var(--blue);
}

.review-shot--yelp {
  min-height: 304px;
  align-content: center;
  justify-items: center;
  padding: 34px;
  text-align: center;
}

.review-shot--yelp > span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #d32323;
  font-size: 29px;
}

.review-shot--yelp > b {
  margin-top: 16px;
  font-size: 21px;
}

.review-shot--yelp p {
  max-width: 340px;
  margin: 12px auto;
}

.review-shot--yelp > small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-weight: 800;
}

.section--coverage {
  padding: 42px 0;
  background: #e8f6ef;
}

.coverage-summary {
  display: grid;
  grid-template-columns: 1fr 1.15fr auto;
  align-items: center;
  gap: 28px;
}

.coverage-summary .eyebrow {
  margin-bottom: 8px;
  color: #087b70;
}

.coverage-summary h2 {
  margin-bottom: 8px;
  font-size: 31px;
}

.coverage-summary p {
  margin: 0;
  font-size: 13px;
}

.coverage-summary__areas {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.coverage-summary__areas button {
  min-height: 34px;
  padding: 5px 8px;
  border-color: #b9dcd2;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
  color: #173f43;
  font-size: 11px;
}

.coverage-summary__areas button:hover,
.coverage-summary__areas button.is-active {
  border-color: #0c8c7d;
  background: #0c8c7d;
  color: var(--white);
}

.coverage-summary > .btn {
  min-width: 190px;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  padding: 0;
  border-top: 0;
  transition: grid-template-rows 0.24s ease;
}

.faq-answer > div {
  overflow: hidden;
  padding: 0 22px;
  color: var(--muted);
  transition: padding 0.24s ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer > div {
  padding-top: 2px;
  padding-bottom: 20px;
}

.faq-item.is-open .faq-question {
  background: #e8f2ff;
}

.quick-request .lead-form {
  padding: 22px 28px 24px;
}

.cta-band {
  min-height: 104px;
  margin-top: 22px;
  padding: 15px 20px;
}

.service-feature {
  min-height: 540px;
}

.service-feature__content {
  padding: 34px 36px;
}

.service-feature__content h2 {
  font-size: 35px;
}

.problem-checks {
  margin: 21px 0 24px;
  gap: 11px;
}

.lead-form--phone {
  display: grid;
  gap: 13px;
}

.lead-form--phone .btn {
  margin-top: 2px;
}

.modal-dialog--coverage {
  width: min(780px, 100%);
  grid-template-columns: 45% 55%;
}

.modal-dialog--coverage.modal-dialog--form-only {
  width: min(470px, 100%);
  grid-template-columns: 1fr;
}

.modal-area-map {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  background: #e7eef6;
}

.modal-area-map > .modal-area-map__canvas {
  position: absolute;
  inset: 0 0 20px;
  width: 100%;
  height: auto;
}

.modal-area-map__loading {
  position: absolute;
  z-index: 2;
  inset: 0 0 20px;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 12px;
  background: #e7eef6;
  color: var(--navy);
  font-size: 13px;
}

.modal-area-map__loading[hidden] {
  display: none;
}

.modal-area-map__loading span {
  width: 34px;
  height: 34px;
  border: 3px solid rgba(11, 99, 206, 0.2);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: map-loading-spin 0.8s linear infinite;
}

@keyframes map-loading-spin {
  to {
    transform: rotate(360deg);
  }
}

.modal-area-map__credit {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  overflow: hidden;
  border-top: 1px solid #d5dfeb;
  background: #fff;
  color: #687890;
  font-size: 8px;
  line-height: 1;
  white-space: nowrap;
}

.modal-area-map__credit a {
  color: #315f98;
}

.modal-zone-location {
  position: relative;
  width: 180px;
  height: 96px;
  pointer-events: none;
  filter: drop-shadow(0 5px 10px rgba(7, 26, 56, 0.18));
  animation: modal-zone-location-in 0.24s ease-out;
}

.modal-zone-location__label {
  position: absolute;
  top: 0;
  left: 50%;
  min-width: 116px;
  padding: 7px 9px;
  border: 1px solid #aebfd3;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  font-size: 11px;
  font-weight: 850;
  line-height: 1.2;
  white-space: nowrap;
  transform: translateX(-50%);
}

.modal-zone-location__line {
  position: absolute;
  z-index: 1;
  inset: 0;
}

.modal-zone-location__line::before,
.modal-zone-location__line::after {
  position: absolute;
  height: 4px;
  border-radius: 4px;
  background: #0759bd;
  content: "";
}

.modal-zone-location__line::before {
  bottom: 23px;
  left: 50%;
  width: 46px;
  transform: rotate(-45deg);
  transform-origin: left center;
}

.modal-zone-location__line::after {
  top: 39px;
  left: calc(50% + 32px);
  width: 54px;
}

.modal-zone-location__pin {
  position: absolute;
  z-index: 2;
  bottom: 9px;
  left: calc(50% - 14px);
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #f4233c;
  box-shadow: 0 3px 8px rgba(7, 26, 56, 0.28);
}

.modal-zone-location__pin > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
}

@keyframes modal-zone-location-in {
  from {
    opacity: 0;
  }
}

.modal-dialog--coverage .modal-offer {
  min-height: 400px;
  padding: 34px;
}

.modal-dialog--coverage .modal-offer .eyebrow {
  margin-bottom: 10px;
  color: #64d3eb;
}

.modal-dialog--coverage .modal-offer h2 {
  font-size: 36px;
}

.modal-dialog--coverage .modal-form {
  padding: 30px 34px 20px;
}

.modal-dialog--coverage .lead-form--compact .btn {
  margin-top: 10px;
}

.modal-dialog--coverage .modal-legal {
  margin-top: 10px;
  padding-top: 12px;
}

.modal-trust {
  display: grid;
  gap: 9px;
  padding-top: 18px;
  border-top: 1px solid #334761;
}

.modal-trust span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #dbe6f3;
  font-size: 12px;
}

.modal-trust svg {
  color: var(--yellow);
}

.modal-form__heading {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.modal-form__heading > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: var(--blue-soft);
  color: var(--blue);
}

.modal-form__heading div {
  display: grid;
}

.modal-form__heading small {
  color: var(--muted);
  font-size: 10px;
}

.modal-form__heading strong,
.modal-form__heading h2 {
  margin: 0;
  letter-spacing: 0;
  font-size: 18px;
  line-height: 1.25;
}

.account-shell {
  min-height: calc(100vh - 111px);
  display: grid;
  align-items: center;
  padding: 24px 0;
  background: #e9f4ff;
}

.account-shell > .container,
.account-dashboard,
.account-dashboard__header,
.account-summary,
.account-dashboard__grid {
  min-width: 0;
}

.account-layout {
  width: min(100%, 690px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #c7d8eb;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-strong);
}

.account-signin {
  min-height: 0;
  display: grid;
  align-content: center;
  padding: 28px 48px;
  background: var(--white);
}

.account-signin__mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 9px;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--text);
  font-size: 21px;
}

.account-signin > h1 {
  margin: 0;
  font-size: 32px;
}

.account-auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  margin-top: 16px;
  padding: 4px;
  border: 1px solid #c7d8eb;
  border-radius: 7px;
  background: #f3f7fb;
}

.account-auth-tabs button {
  min-height: 39px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: #65748a;
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}

.account-auth-tabs button:hover {
  color: var(--blue);
}

.account-auth-tabs button.is-active {
  background: var(--white);
  color: var(--blue-dark);
  box-shadow: 0 1px 5px rgba(13, 52, 90, 0.12);
}

.account-auth-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 17px 0 19px;
  padding: 0;
  list-style: none;
}

.account-auth-steps::before {
  position: absolute;
  z-index: 0;
  top: 14px;
  right: 16.66%;
  left: 16.66%;
  height: 1px;
  background: #cad7e6;
  content: "";
}

.account-auth-steps li {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 5px;
  color: #7a8799;
}

.account-auth-steps li > span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid #cad7e6;
  border-radius: 50%;
  background: var(--white);
  font-size: 11px;
  font-weight: 850;
}

.account-auth-steps li > b {
  font-size: 10px;
}

.account-auth-steps li.is-active,
.account-auth-steps li.is-complete {
  color: var(--blue-dark);
}

.account-auth-steps li.is-active > span {
  border-color: #e8b000;
  background: var(--yellow);
  color: var(--text);
}

.account-auth-steps li.is-complete > span {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

.account-signin form {
  display: grid;
  gap: 8px;
}

.account-auth-stage {
  display: grid;
  gap: 10px;
}

.account-auth-stage[hidden] {
  display: none;
}

[data-account-password-confirm-field][hidden] {
  display: none;
}

.account-auth-destination {
  margin: 0;
  padding: 11px 13px;
  border-left: 3px solid var(--blue);
  background: #f1f6fc;
  color: var(--muted);
  font-size: 12px;
}

.account-auth-destination strong {
  color: var(--text);
}

.account-auth-actions {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 8px;
}

.account-auth-back {
  width: 50px;
  min-height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid #b9c9dc;
  border-radius: 7px;
  background: var(--white);
  color: var(--blue-dark);
  cursor: pointer;
}

.account-auth-back:hover {
  border-color: var(--blue);
  background: var(--blue-soft);
}

.account-signin .form-status {
  min-height: 15px;
  margin: 0;
  text-align: center;
}

.account-social-auth[hidden] {
  display: none;
}

.account-provider-divider {
  position: relative;
  margin: 13px 0 10px;
  text-align: center;
}

.account-provider-divider::before {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  background: #d6e0eb;
  content: "";
}

.account-provider-divider span {
  position: relative;
  z-index: 1;
  padding: 0 12px;
  background: var(--white);
  color: var(--muted);
  font-size: 10px;
}

.account-providers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.account-providers :is(a, button) {
  min-width: 0;
  min-height: 44px;
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  border: 1px solid #c7d5e5;
  border-radius: 7px;
  background: var(--white);
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.account-providers :is(a, button):hover {
  border-color: var(--blue);
  background: #f5f9ff;
}

.account-providers :is(a, button) b {
  overflow-wrap: anywhere;
  font-size: 12px;
}

.account-provider__mark {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: #eef4fb;
  color: var(--blue);
  font-size: 15px;
  font-weight: 850;
}

.account-provider__mark svg {
  width: 15px;
  height: 15px;
}

.account-provider__mark--google {
  color: #1769e0;
}

.account-provider__mark--apple {
  background: #171922;
  color: var(--white);
}

.account-privacy {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.account-identifier-field,
.password-field {
  position: relative;
  display: block;
}

.account-identifier-field > svg,
.password-field > svg {
  position: absolute;
  z-index: 2;
  top: 17px;
  left: 14px;
  color: var(--navy);
  pointer-events: none;
}

.account-identifier-field input,
.password-field input {
  padding-left: 45px;
}

.account-dashboard {
  display: grid;
  gap: 18px;
}

.account-layout[hidden],
.account-dashboard[hidden] {
  display: none;
}

.account-dashboard__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  padding: 26px 30px;
  border: 1px solid #c7d8eb;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.account-dashboard__header .eyebrow {
  color: #68d2e8;
}

.account-dashboard__header h2 {
  margin: 3px 0 5px;
  color: var(--white);
  font-size: 34px;
}

.account-dashboard__header p {
  margin: 0;
  color: #b9c8da;
  font-size: 13px;
}

.account-dashboard__actions {
  display: flex;
  align-items: center;
  gap: 13px;
}

.account-dashboard__actions > span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #9eb0c8;
  font-size: 12px;
  white-space: nowrap;
}

.account-dashboard__actions > span b {
  color: var(--white);
}

.account-dashboard__actions .btn--outline {
  border-color: #64758b;
  background: transparent;
  color: var(--white);
}

.account-dashboard__actions .btn--outline:hover {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--text);
}

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

.account-summary article {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px;
  border: 1px solid #cbd9e9;
  border-radius: 7px;
  background: var(--white);
  box-shadow: 0 7px 20px rgba(7, 26, 56, 0.06);
}

.account-summary article > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 7px;
  background: var(--blue-soft);
  color: var(--blue);
}

.account-summary article div {
  min-width: 0;
  display: grid;
}

.account-summary strong {
  overflow: hidden;
  color: var(--text);
  font-size: 22px;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-summary article:nth-child(2) strong {
  font-size: 15px;
}

.account-summary small {
  color: var(--muted);
  font-size: 10px;
}

.account-dashboard__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.72fr);
  align-items: start;
  gap: 16px;
}

.account-dashboard__side {
  display: grid;
  gap: 16px;
}

.account-panel {
  min-width: 0;
  padding: 22px;
  border: 1px solid #cbd9e9;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 7px 20px rgba(7, 26, 56, 0.06);
}

.account-panel__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 17px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.account-panel__heading .eyebrow {
  margin-bottom: 3px;
  font-size: 9px;
}

.account-panel__heading h2 {
  margin: 0;
  font-size: 22px;
}

.account-panel__heading > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: var(--blue-soft);
  color: var(--blue);
}

.account-request-list {
  display: grid;
  gap: 10px;
}

.account-request {
  padding: 16px;
  border: 1px solid #d8e2ee;
  border-left: 4px solid var(--blue);
  border-radius: 7px;
  background: #fbfdff;
}

.account-request__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 9px;
}

.account-request__head > span:first-child {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.account-status {
  padding: 4px 7px;
  border-radius: 999px;
  background: #eaf2ff;
  color: var(--blue-dark);
  font-size: 9px;
  font-weight: 800;
}

.account-status--new {
  color: #735200;
  background: #fff0ad;
}

.account-status--contacted {
  color: #084e9f;
  background: #dcecff;
}

.account-status--scheduled {
  background: #e4f6ed;
  color: #147044;
}

.account-status--in_progress {
  color: #8a3f00;
  background: #ffe6cc;
}

.account-status--completed {
  background: #edf1f6;
  color: #40516a;
}

.account-status--cancelled {
  background: #ffebea;
  color: #af2a22;
}

.account-request h3 {
  margin: 0 0 4px;
  font-size: 17px;
}

.account-request > p {
  margin-bottom: 12px;
  font-size: 12px;
}

.account-request__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.account-request__meta span,
.account-next [data-account-next-meta] span {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  font-size: 10px;
}

.account-request__meta svg,
.account-next [data-account-next-meta] svg {
  color: var(--blue);
}

.account-next > strong {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
}

.account-next > p {
  margin-bottom: 14px;
  font-size: 12px;
}

.account-next [data-account-next-meta] {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 15px;
  padding-top: 13px;
  border-top: 1px solid var(--line);
}

.account-documents > [data-account-documents] {
  display: grid;
  gap: 8px;
}

.account-document {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  padding: 9px;
  border: 1px solid #dce5ef;
  border-radius: 6px;
}

.account-document > span:first-child {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--blue-soft);
  color: var(--blue);
}

.account-document > div {
  min-width: 0;
  display: grid;
}

.account-document strong {
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-document small,
.account-document__status,
.account-documents__empty {
  color: var(--muted);
  font-size: 9px;
}

.account-document__status {
  color: var(--green);
  font-weight: 800;
}

.account-documents__empty {
  margin: 0;
}

.account-profile form,
.account-security form {
  display: grid;
  gap: 11px;
}

.account-profile .field,
.account-security .field {
  gap: 5px;
}

.account-profile .field > span:first-child,
.account-security .field > span:first-child {
  font-size: 11px;
}

.account-profile .field input,
.account-security .field input {
  min-height: 44px;
  font-size: 12px;
}

.account-profile__hint {
  margin: -1px 0 2px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.account-profile .form-status,
.account-security .form-status {
  min-height: 14px;
  margin: -2px 0 0;
  text-align: center;
}

.account-support {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  padding: 18px;
  border: 1px solid #2d4d73;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
}

.account-support > svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 7px;
  background: var(--yellow);
  color: var(--text);
}

.account-support strong {
  font-size: 13px;
}

.account-support p {
  margin: 3px 0 7px;
  color: #adbed2;
  font-size: 10px;
}

.account-support a {
  color: var(--yellow);
  font-size: 14px;
  font-weight: 800;
}

.account-empty {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border: 1px dashed #c6d6e8;
  border-radius: 7px;
  color: var(--blue);
}

.account-empty strong {
  color: var(--text);
}

.account-empty p {
  margin: 2px 0 0;
  font-size: 11px;
}

.account-empty > div {
  min-width: 0;
  flex: 1 1 auto;
}

.account-empty .btn {
  flex: 0 0 auto;
}

@media (max-width: 1180px) {
  .hero-coverage__intro h1 {
    font-size: 40px;
  }

  .coverage-experience {
    grid-template-columns: minmax(0, 1fr) 285px;
  }

  .hero-coverage__intro {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 400px);
    gap: 20px;
  }

  .hero-callback {
    padding: 16px;
  }

  .lead-form--hero {
    grid-template-columns: minmax(0, 1fr) 158px;
  }

  .case-track {
    grid-auto-columns: 60%;
  }

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

  .coverage-summary > .btn {
    grid-column: 1 / -1;
    justify-self: center;
  }
}

@media (max-width: 980px) {
  .account-link {
    width: 40px;
    height: 40px;
  }

  .hero-coverage__intro {
    grid-template-columns: minmax(0, 1fr);
    gap: 15px;
  }

  .hero-coverage__copy,
  .hero-callback {
    min-width: 0;
    max-width: 100%;
  }

  .hero-coverage__copy {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 24px;
  }

  .hero-coverage__copy .eyebrow,
  .hero-coverage__copy h1,
  .hero-coverage__copy > p {
    grid-column: 1;
  }

  .hero-coverage__copy .hero-proof {
    grid-column: 2;
    grid-row: 1 / 4;
    grid-template-columns: 1fr;
    align-self: center;
    margin-top: 0;
  }

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

  .hero-proof > span {
    grid-template-columns: auto auto;
    justify-content: center;
  }

  .coverage-experience {
    grid-template-columns: 1fr;
  }

  .coverage-map {
    height: auto;
    min-height: 0;
    aspect-ratio: 2 / 1;
  }

  .coverage-panel {
    min-height: 0;
  }

  .coverage-panel__heading {
    grid-template-columns: 38px 1fr;
  }

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

  .coverage-panel__foot {
    margin-top: 14px;
  }

  .problems-layout {
    grid-template-columns: 280px minmax(0, 1fr);
  }

  .problem-button small {
    display: none;
  }

  .case-track {
    grid-auto-columns: 72%;
  }

  .case-card {
    grid-template-columns: 42% 1fr;
  }

  .review-track {
    grid-auto-columns: 72%;
  }

  .coverage-summary {
    grid-template-columns: 1fr;
  }

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

  .coverage-summary > .btn {
    grid-column: auto;
    justify-self: start;
  }

  .account-signin {
    padding: 28px 40px;
  }

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

  .account-dashboard__grid {
    grid-template-columns: 1fr;
  }

  .account-dashboard__side {
    grid-template-columns: 1fr 1fr;
  }

  .account-support {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 48px 0;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .section-heading h2 {
    font-size: 29px;
  }

  .header-phone {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero--coverage {
    padding: 22px 0 26px;
  }

  .hero-coverage__intro {
    margin-bottom: 15px;
  }

  .hero-coverage__copy {
    display: block;
  }

  .hero-coverage__intro h1 {
    font-size: 34px;
  }

  .hero-coverage__intro p {
    font-size: 14px;
  }

  .hero-proof {
    display: flex;
    overflow-x: auto;
    margin-top: 14px;
    padding-bottom: 3px;
    scrollbar-width: none;
  }

  .hero-proof > span {
    min-width: 142px;
  }

  .hero-callback {
    padding: 15px;
  }

  .hero-callback h2 {
    font-size: 21px;
  }

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

  .lead-form--hero .form-note,
  .lead-form--hero .form-status {
    grid-column: auto;
  }

  .coverage-map {
    aspect-ratio: 2 / 1;
  }

  .coverage-map__status {
    bottom: 7px;
    left: 7px;
    padding: 5px 7px;
  }

  .coverage-map__status small {
    display: none;
  }

  .coverage-panel {
    padding: 15px;
  }

  .coverage-panel > p,
  .coverage-panel__foot {
    display: none;
  }

  .coverage-panel__heading {
    margin-bottom: 9px;
    padding-bottom: 9px;
  }

  .coverage-panel h2 {
    font-size: 17px;
  }

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

  .coverage-options button {
    font-size: 9px;
  }

  .problems-layout {
    grid-template-columns: 1fr;
  }

  .problem-list {
    display: flex;
    overflow-x: auto;
    padding-bottom: 5px;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
  }

  .problem-button {
    min-width: 210px;
    scroll-snap-align: start;
  }

  .house-stage {
    height: auto;
    aspect-ratio: 3 / 2;
  }

  .system-zone b {
    font-size: 8px;
  }

  .problem-answer {
    grid-template-columns: 1fr auto;
  }

  .problem-answer .btn {
    width: auto;
    font-size: 12px;
  }

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

  .service-card {
    min-height: 160px;
    grid-template-columns: 42px 1fr;
    padding: 13px;
  }

  .service-card__icon {
    width: 42px;
    height: 42px;
  }

  .service-card h3 {
    font-size: 15px;
  }

  .service-card p {
    font-size: 11px;
  }

  .section-slider-head {
    align-items: center;
  }

  .section-slider-head .section-heading {
    margin-bottom: 20px;
  }

  .section-slider-head > .slider-buttons {
    margin-bottom: 20px;
  }

  .slider-buttons button {
    width: 38px;
    height: 38px;
  }

  .case-track {
    grid-auto-columns: 88%;
  }

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

  .case-card__media {
    min-height: 205px;
  }

  .steps-grid {
    display: grid;
    grid-template-columns: none;
    grid-auto-columns: 86%;
    grid-auto-flow: column;
    gap: 12px;
    overflow-x: auto;
    padding: 2px 2px 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .step-card {
    scroll-snap-align: start;
  }

  .step-card:last-child {
    grid-column: auto;
  }

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

  .why-grid article {
    min-height: 176px;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 10px;
    padding: 14px;
  }

  .why-grid article:hover {
    transform: translateY(-3px);
  }

  .why-grid article small {
    display: none;
  }

  .review-platforms {
    display: flex;
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: none;
  }

  .review-platforms > a {
    min-width: 230px;
  }

  .review-track {
    grid-auto-columns: 92%;
  }

  .review-shot__image {
    aspect-ratio: 16 / 9;
  }

  .coverage-summary {
    gap: 18px;
  }

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

  .faq-question {
    min-height: 62px;
    padding: 13px 16px;
    font-size: 15px;
  }

  .faq-answer > div {
    padding-right: 16px;
    padding-left: 16px;
  }

  .modal-dialog--coverage {
    grid-template-columns: 1fr;
  }

  .modal-dialog--coverage .modal-area-map {
    min-height: 210px;
  }

  .modal-dialog--coverage .modal-offer {
    min-height: 190px;
    padding: 22px;
  }

  .modal-dialog--coverage .modal-close {
    background: var(--white);
    color: var(--navy);
    box-shadow: 0 5px 14px rgba(7, 26, 56, 0.18);
  }

  .modal-dialog--coverage .modal-offer h2 {
    font-size: 28px;
  }

  .modal-dialog--coverage .modal-offer p {
    margin-top: 8px;
    font-size: 13px;
  }

  .modal-trust,
  .modal-dialog--coverage .modal-offer .brand {
    display: none;
  }

  .modal-dialog--coverage .modal-form {
    padding: 24px 19px 19px;
  }

  .account-shell {
    min-height: 0;
    padding: 28px 0;
  }

  .account-signin {
    min-height: 0;
    padding: 28px 22px;
  }

  .account-signin > h1 {
    font-size: 32px;
  }

  .account-auth-steps {
    margin: 21px 0 24px;
  }

  .account-dashboard {
    gap: 12px;
  }

  .account-dashboard__header {
    align-items: start;
    flex-direction: column;
    gap: 17px;
    padding: 22px;
  }

  .account-dashboard__header h2 {
    font-size: 28px;
    overflow-wrap: anywhere;
  }

  .account-dashboard__actions {
    width: 100%;
    justify-content: space-between;
  }

  .account-dashboard__actions > span {
    min-width: 0;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .account-summary {
    gap: 8px;
  }

  .account-summary article {
    align-items: start;
    gap: 9px;
    padding: 12px;
  }

  .account-summary article > span {
    width: 34px;
    height: 34px;
  }

  .account-summary strong {
    font-size: 18px;
  }

  .account-summary article:nth-child(2) strong {
    overflow: visible;
    font-size: 11px;
    white-space: normal;
  }

  .account-dashboard__side {
    grid-template-columns: 1fr;
  }

  .account-support {
    grid-column: auto;
  }

  .account-panel {
    padding: 17px;
  }

  .account-request__head {
    align-items: start;
  }

  .account-request__meta {
    display: grid;
  }

  .account-empty {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .account-empty .btn {
    width: 100%;
  }

  .mobile-actions button {
    border: 0;
    border-right: 1px solid #dce4ef;
    background: var(--yellow);
    font-weight: 800;
  }
}

@media (max-width: 400px) {
  .hero-coverage__intro h1 {
    font-size: 30px;
  }

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

  .problem-answer {
    grid-template-columns: 1fr;
  }

  .problem-answer .btn {
    width: 100%;
  }

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

  .service-card {
    min-height: 126px;
  }

  .section-slider-head .section-heading p {
    display: none;
  }

  .section-slider-head > .slider-buttons {
    gap: 5px;
  }

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

  .why-grid article {
    min-height: 132px;
    grid-template-columns: 52px 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .modal-area-map__loading span,
  .modal-zone-location,
  .system-zone.is-active::before {
    animation: none !important;
  }
}

/* Photo landing hero and real municipal coverage map */
.hero--photo {
  position: relative;
  min-height: 630px;
  overflow: hidden;
  border-bottom: 1px solid #d4e0ed;
  background: #f7f8f7;
}

.hero-photo {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-photo__shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(249, 250, 249, 0.99) 0%, rgba(249, 250, 249, 0.96) 34%, rgba(249, 250, 249, 0.76) 47%, rgba(249, 250, 249, 0.08) 70%),
    linear-gradient(0deg, rgba(6, 24, 50, 0.16) 0%, transparent 25%);
  pointer-events: none;
}

.hero-photo__inner {
  position: relative;
  z-index: 2;
  min-height: 630px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  padding-top: 36px;
  padding-bottom: 20px;
}

.hero-photo__copy {
  width: min(660px, 55%);
  align-self: center;
  padding-bottom: 50px;
  transform: translateY(-16px);
}

.hero-photo__copy > .eyebrow {
  margin-bottom: 10px;
}

.hero-photo__copy h1 {
  max-width: 650px;
  margin: 0 0 12px;
  font-size: 52px;
  line-height: 1.02;
}

.hero-photo__copy h1 em {
  color: #e7aa00;
  font-style: normal;
}

.hero-photo__copy > p {
  max-width: 610px;
  margin: 0;
  color: #394861;
  font-size: 17px;
  line-height: 1.5;
}

.hero--photo .hero-proof {
  width: min(660px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
}

.hero--photo .hero-proof > span {
  min-height: 53px;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  grid-template-rows: auto auto;
  justify-content: start;
  gap: 0 8px;
  padding: 8px 10px;
  border-color: rgba(141, 162, 188, 0.45);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 7px 20px rgba(7, 26, 56, 0.08);
  backdrop-filter: blur(5px);
}

.hero--photo .hero-proof svg {
  grid-row: 1 / 3;
  width: 27px;
  height: 27px;
  align-self: center;
  padding: 5px;
  border: 1px solid #efb400;
  border-radius: 50%;
  color: #9b7300;
}

.hero--photo .hero-proof b {
  align-self: end;
  color: var(--text);
  font-size: 12px;
  white-space: normal;
}

.hero--photo .hero-proof small {
  align-self: start;
  color: var(--muted);
  font-size: 10px;
}

.hero--photo .hero-callback {
  max-width: 650px;
  margin-top: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  box-shadow: none;
}

.hero--photo .hero-callback .eyebrow {
  margin-bottom: 2px;
  color: var(--blue);
  font-size: 9px;
}

.hero--photo .hero-callback > p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 11px;
}

.hero--photo .lead-form--hero {
  max-width: 650px;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 6px;
  padding: 5px;
  border: 1px solid #b8c7d9;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 28px rgba(7, 26, 56, 0.13);
}

.hero--photo .lead-form--hero .field input {
  min-height: 48px;
  border: 0;
  background: #fff;
}

.hero--photo .lead-form--hero .btn {
  min-height: 48px;
  box-shadow: none;
}

.hero--photo .lead-form--hero .form-note,
.hero--photo .lead-form--hero .form-status {
  padding-inline: 7px;
}

.hero--photo .lead-form--hero .form-note {
  grid-column: 1 / -1;
  margin: 2px -5px -5px;
  padding: 9px 12px 8px;
  border-top: 1px solid #d5e0eb;
  border-radius: 0 0 6px 6px;
  background: #f1f6fa;
  color: #52637b;
  font-size: 10px;
}

.blog-index {
  padding-top: 46px;
}

.blog-index__heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.blog-index__heading h1 {
  margin: 6px 0 0;
  font-size: 42px;
}

.hero-metrics {
  width: 100%;
  min-height: 78px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(196, 210, 225, 0.9);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 34px rgba(7, 26, 56, 0.14);
  backdrop-filter: blur(7px);
}

.hero-metrics > span {
  min-width: 0;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-content: center;
  gap: 1px 10px;
  padding: 12px 18px;
  border-right: 1px solid #dbe4ee;
}

.hero-metrics > span:last-child {
  border-right: 0;
}

.hero-metrics svg {
  grid-row: 1 / 3;
  width: 38px;
  height: 38px;
  align-self: center;
  padding: 8px;
  border: 1px solid #e9b300;
  border-radius: 50%;
  color: #9e7800;
}

.hero-metrics b {
  align-self: end;
  overflow-wrap: anywhere;
  color: var(--text);
  font-size: 13px;
}

.hero-metrics small {
  align-self: start;
  color: var(--muted);
  font-size: 10px;
}

.section--coverage-map {
  padding: 54px 0 58px;
  background: #eef4f8;
}

.coverage-map-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.coverage-map-heading h2 {
  font-size: 38px;
}

.coverage-experience {
  grid-template-columns: minmax(0, 1fr) 330px;
  height: auto;
  min-height: 500px;
  border-color: #c4d2e1;
  background: #fff;
  box-shadow: 0 18px 44px rgba(7, 26, 56, 0.13);
}

.coverage-map {
  min-height: 500px;
  background: #e8eef3;
}

.coverage-map > .coverage-map__canvas {
  position: absolute;
  z-index: 2;
  inset: 0;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.coverage-experience.is-ready .coverage-map__canvas {
  opacity: 1;
}

.coverage-map__loading {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 10px;
  color: var(--blue);
  text-align: center;
}

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

.coverage-map__loading > svg {
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid #9db4cb;
  border-radius: 50%;
  background: #fff;
}

.coverage-map__loading span {
  display: grid;
}

.coverage-map__loading b {
  color: var(--text);
  font-size: 13px;
}

.coverage-map__loading small {
  color: var(--muted);
  font-size: 10px;
}

.coverage-map__fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coverage-map__status {
  z-index: 5;
  bottom: 14px;
  left: 14px;
}

.coverage-map__source {
  position: absolute;
  z-index: 5;
  right: 8px;
  bottom: 6px;
  padding: 3px 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.88);
  color: #4d5d70;
  font-size: 8px;
  line-height: 1.3;
}

.coverage-map__source a {
  color: #205fa6;
}

.section--coverage-map .coverage-panel {
  min-height: 0;
  overflow: hidden;
  padding: 22px;
  background: #fff;
  color: var(--text);
}

.section--coverage-map .coverage-panel__heading {
  border-bottom-color: #d9e3ed;
}

.section--coverage-map .coverage-panel__heading small {
  color: var(--blue);
}

.section--coverage-map .coverage-panel h2 {
  color: var(--text);
}

.section--coverage-map .coverage-panel > p {
  color: #52637a;
  font-size: 12px;
}

.section--coverage-map .coverage-options button {
  min-height: 34px;
  border-bottom-color: #e1e8ef;
  color: #20344f;
}

.section--coverage-map .coverage-options {
  min-height: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  flex: none;
  overflow: visible;
  padding-right: 0;
}

.section--coverage-map .coverage-panel__foot {
  flex: none;
}

.section--coverage-map .coverage-options button svg {
  color: #176fcf;
}

.section--coverage-map .coverage-options button:hover,
.section--coverage-map .coverage-options button.is-active {
  border-color: #e5b300;
  background: #fff7d8;
  color: #715400;
}

.section--coverage-map .coverage-options button.is-active svg {
  color: #a97900;
}

.section--coverage-map .coverage-panel__foot {
  margin-top: auto;
  padding: 13px;
  border: 1px solid #d9e5f0;
  border-radius: 7px;
  background: #eff7ff;
  color: var(--blue);
}

.section--coverage-map .coverage-panel__foot b {
  color: var(--text);
}

.section--coverage-map .coverage-panel__foot small {
  color: #617189;
}

.coverage-map .maplibregl-ctrl-top-right {
  top: 8px;
  right: 8px;
}

.coverage-map .maplibregl-ctrl-group {
  overflow: hidden;
  border: 1px solid #c4d3e2;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(7, 26, 56, 0.12);
}

.coverage-map .maplibregl-canvas:focus-visible {
  outline: 3px solid #ffc107;
  outline-offset: -3px;
}

.coverage-map-popup .maplibregl-popup-content {
  padding: 10px 12px;
  border: 1px solid #c9d8e8;
  border-radius: 6px;
  box-shadow: 0 10px 26px rgba(7, 26, 56, 0.17);
}

.coverage-map-popup .maplibregl-popup-tip {
  border-top-color: #fff;
}

.coverage-tooltip {
  display: grid;
  gap: 3px;
}

.coverage-tooltip strong {
  color: var(--text);
  font-size: 12px;
}

.coverage-tooltip small {
  color: #53657b;
  font-size: 10px;
  line-height: 1.35;
}

@media (max-width: 1300px) {
  .header-identity {
    gap: 8px;
  }

  .main-nav {
    gap: 16px;
  }

  .header-location {
    width: 34px;
    padding-inline: 8px;
  }

  .header-location > span {
    display: none;
  }

  .header-rating {
    padding-inline: 7px;
  }

  .header-rating small {
    display: none;
  }

  .header-phone span {
    display: none;
  }

  .header-hours {
    display: none;
  }

  .hero-photo__copy {
    width: min(620px, 58%);
  }

  .hero-photo__copy h1 {
    font-size: 46px;
  }

  .hero-metrics > span {
    padding-inline: 13px;
  }
}

@media (max-width: 980px) {
  .header-trust {
    display: none;
  }

  .mobile-nav-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #dbe4ef;
  }

  .mobile-nav-trust .header-location {
    width: auto;
    grid-column: 1 / -1;
    border: 1px solid #dbe4ef;
    border-radius: 6px;
  }

  .mobile-nav-trust .header-location > span {
    display: inline;
  }

  .mobile-nav-trust .header-rating {
    border: 1px solid #dbe4ef;
    border-radius: 6px;
  }

  .mobile-nav-trust .header-rating small {
    display: inline;
  }

  .hero--photo,
  .hero-photo__inner {
    min-height: 610px;
  }

  .hero-photo {
    object-position: 58% center;
  }

  .hero-photo__shade {
    background: linear-gradient(90deg, rgba(249, 250, 249, 0.99) 0%, rgba(249, 250, 249, 0.94) 45%, rgba(249, 250, 249, 0.34) 72%, rgba(249, 250, 249, 0.05) 100%);
  }

  .hero-photo__copy {
    width: min(590px, 67%);
  }

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

  .hero-metrics > span:nth-child(2) {
    border-right: 0;
  }

  .hero-metrics > span:nth-child(-n+2) {
    border-bottom: 1px solid #dbe4ee;
  }

  .coverage-experience {
    height: auto;
    grid-template-columns: 1fr;
  }

  .coverage-map {
    min-height: 460px;
    aspect-ratio: auto;
  }

  .section--coverage-map .coverage-panel {
    min-height: 0;
  }

  .section--coverage-map .coverage-options {
    flex: none;
    overflow: visible;
    padding-right: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .blog-index {
    padding-top: 30px;
  }

  .blog-index__heading h1 {
    font-size: 32px;
  }

  .hero--photo {
    min-height: 0;
    display: flex;
    flex-direction: column;
    background: #f7f9fb;
  }

  .hero-photo {
    position: relative;
    order: 2;
    height: 180px;
    object-position: 68% 46%;
  }

  .hero-photo__shade {
    display: none;
  }

  .hero-photo__inner {
    order: 1;
    min-height: 0;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .hero-photo__copy {
    width: 100%;
    padding-bottom: 0;
    transform: none;
  }

  .hero-photo__copy h1 {
    max-width: 100%;
    margin-bottom: 9px;
    font-size: 36px;
  }

  .hero-photo__copy > p {
    font-size: 14px;
  }

  .hero--photo .hero-proof {
    display: flex;
    width: calc(100vw - 15px);
    gap: 7px;
    overflow-x: auto;
    padding: 0 15px 4px 0;
    scroll-snap-type: x mandatory;
  }

  .hero--photo .hero-proof > span {
    min-width: 158px;
    scroll-snap-align: start;
  }

  .hero--photo .hero-callback {
    margin-top: 15px;
  }

  .hero--photo .lead-form--hero {
    grid-template-columns: 1fr;
    padding: 6px;
  }

  .hero--photo .lead-form--hero .form-note,
  .hero--photo .lead-form--hero .form-status {
    grid-column: 1 / -1;
  }

  .hero-metrics {
    display: none;
  }

  .section--coverage-map {
    padding: 44px 0 48px;
  }

  .coverage-map-heading h2 {
    font-size: 30px;
  }

  .coverage-map-heading p {
    font-size: 14px;
  }

  .coverage-experience {
    min-height: 0;
  }

  .coverage-map {
    min-height: 390px;
  }

  .section--coverage-map .coverage-panel {
    padding: 16px;
  }

  .section--coverage-map .coverage-panel > p {
    display: block;
    margin: 10px 0;
  }

  .section--coverage-map .coverage-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section--coverage-map .coverage-panel__foot {
    display: flex;
  }

  .coverage-map__status {
    bottom: 28px;
  }

  .coverage-map__status small {
    display: none;
  }
}

@media (max-width: 400px) {
  .hero-photo__copy h1 {
    font-size: 32px;
  }

  .hero-photo {
    height: 170px;
  }

  .coverage-map {
    min-height: 350px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .coverage-map__canvas {
    transition: none;
  }
}

/* module: account.css */
/* Customer account application */
.account-page {
  background: #f3f6fa;
}

.account-page main {
  min-height: 100vh;
}

.account-page [hidden] {
  display: none !important;
}

.customer-app {
  min-height: 100vh;
  background: #f3f6fa;
}

.customer-topbar {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 6px 18px rgba(7, 26, 56, 0.04);
}

.customer-topbar__inner {
  justify-content: space-between;
}

.customer-topbar__actions,
.customer-topbar__level,
.customer-topbar__gifts,
.customer-topbar__request,
.customer-topbar__profile,
.customer-topbar__site {
  display: flex;
  align-items: center;
}

.customer-topbar__actions {
  position: relative;
  gap: 12px;
  margin-left: auto;
}

.account-header-control {
  position: relative;
}

.account-header-control--rewards {
  display: flex;
  gap: 8px;
}

.customer-topbar__level,
.customer-topbar__gifts,
.customer-topbar__request,
.customer-topbar__profile {
  min-height: 42px;
  border: 1px solid #d4deea;
  border-radius: 7px;
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.customer-topbar__level:hover,
.customer-topbar__gifts:hover,
.customer-topbar__profile:hover,
.customer-topbar__level[aria-expanded="true"],
.customer-topbar__gifts[aria-expanded="true"],
.customer-topbar__profile[aria-expanded="true"] {
  border-color: #a8c3e6;
  background: #f3f7fd;
}

.customer-topbar__level {
  gap: 8px;
  padding: 0 11px;
}

.customer-topbar__level > svg {
  color: var(--blue);
}

.customer-topbar__level > span {
  display: grid;
  text-align: left;
  line-height: 1.05;
}

.customer-topbar__level small {
  color: #758399;
  font-size: 7px;
  font-weight: 800;
}

.customer-topbar__level strong {
  margin-top: 3px;
  font-size: 11px;
}

.customer-topbar__gifts {
  position: relative;
  gap: 7px;
  padding: 0 10px;
  font-size: 11px;
  font-weight: 800;
}

.customer-topbar__gifts > svg {
  color: #a87500;
}

.customer-topbar__gifts b {
  min-width: 18px;
  padding: 2px 5px;
  border-radius: 999px;
  color: #07563e;
  background: #dcf6e9;
  text-align: center;
  font-size: 8px;
}

.customer-topbar__request {
  gap: 7px;
  padding: 0 13px;
  border-color: #e5b500;
  background: var(--yellow);
  font-size: 11px;
  font-weight: 850;
}

.customer-topbar__request:hover {
  border-color: #c99d00;
  background: var(--yellow-dark);
}

.customer-topbar__profile {
  gap: 8px;
  padding: 3px 8px 3px 4px;
}

.customer-topbar__avatar {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  overflow: hidden;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-size: 11px;
  font-weight: 850;
  place-items: center;
}

.customer-topbar__profile-copy {
  min-width: 0;
  display: grid;
  text-align: left;
  line-height: 1.05;
}

.customer-topbar__profile-copy strong {
  max-width: 110px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 10px;
}

.customer-topbar__profile-copy small {
  margin-top: 3px;
  color: #7a8799;
  font-size: 8px;
}

.customer-topbar__profile > svg {
  width: 14px;
  height: 14px;
  color: #77849a;
}

.customer-topbar__site {
  min-height: 40px;
  gap: 7px;
  padding: 0 13px;
  border: 1px solid #cfdae7;
  border-radius: 6px;
  color: #394860;
  background: var(--white);
  font-size: 12px;
  font-weight: 750;
  transition: border-color 160ms ease, color 160ms ease, background-color 160ms ease;
}

.customer-topbar__site:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-soft);
}

.account-header-popover {
  position: absolute;
  z-index: 110;
  top: calc(100% + 12px);
  right: 0;
  width: 360px;
  padding: 17px;
  border: 1px solid #d5dfeb;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(7, 26, 56, 0.16);
}

.account-header-rewards header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.account-header-rewards h2 {
  margin: 3px 0 4px;
  font-size: 22px;
}

.account-header-rewards header p {
  margin: 0;
  font-size: 9px;
}

.account-header-rewards__mark {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  display: grid;
  border-radius: 7px;
  color: var(--white);
  background: var(--blue);
  place-items: center;
}

.account-header-rewards__progress {
  height: 5px;
  margin: 13px 0 15px;
  overflow: hidden;
  border-radius: 999px;
  background: #e3e9f0;
}

.account-header-rewards__progress span {
  width: 0;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: var(--blue);
  transition: width 240ms ease;
}

.account-header-gift {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid #ead797;
  border-radius: 7px;
  background: #fff9e7;
}

.account-header-gift > span {
  width: 38px;
  height: 38px;
  display: grid;
  border-radius: 6px;
  color: var(--navy);
  background: var(--yellow);
  place-items: center;
}

.account-header-gift > div {
  min-width: 0;
  display: grid;
}

.account-header-gift small {
  color: #876600;
  font-size: 7px;
  font-weight: 850;
}

.account-header-gift strong {
  margin-top: 2px;
  font-size: 11px;
}

.account-header-gift p {
  margin: 2px 0 0;
  font-size: 8px;
}

.account-header-gift > b {
  padding: 4px 6px;
  border-radius: 5px;
  color: #0b6547;
  background: #dff7eb;
  font-size: 7px;
}

.account-header-gift.is-applied > b {
  color: #0b4d9c;
  background: #e2efff;
}

.account-header-gift.is-used > b {
  color: #66758b;
  background: #e9edf2;
}

.account-header-rewards .btn {
  min-height: 42px;
  margin-top: 12px;
  font-size: 11px;
}

.account-header-profile {
  width: 270px;
  padding: 10px;
}

.account-header-profile__identity {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 8px 7px 13px;
  border-bottom: 1px solid #e2e8f0;
}

.account-header-profile__identity > div {
  min-width: 0;
  display: grid;
}

.account-header-profile__identity strong,
.account-header-profile__identity small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-header-profile__identity strong {
  font-size: 11px;
}

.account-header-profile__identity small {
  margin-top: 2px;
  color: #78859a;
  font-size: 8px;
}

.account-header-profile > button,
.account-header-profile > a {
  width: 100%;
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 9px;
  border: 0;
  border-radius: 6px;
  color: #405069;
  background: transparent;
  text-align: left;
  font-size: 10px;
  font-weight: 750;
  cursor: pointer;
}

.account-header-profile > button:hover,
.account-header-profile > a:hover {
  color: var(--blue-dark);
  background: var(--blue-soft);
}

.account-header-profile > :last-child {
  color: #b6322b;
}

.account-auth {
  min-height: calc(100vh - 78px);
  display: grid;
  padding: 36px 20px;
  place-items: center;
}

.account-signin {
  width: min(100%, 560px);
  min-height: 0;
  padding: 34px 38px;
  border: 1px solid #d8e1ec;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(11, 25, 53, 0.09);
}

.account-signin__mark {
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  border-radius: 8px;
}

.account-signin__eyebrow,
.account-kicker {
  color: var(--blue);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.account-signin > h1 {
  margin-top: 5px;
  font-size: 36px;
}

.account-signin__lead {
  margin: 8px 0 0;
  color: #69768a;
  font-size: 13px;
}

.account-auth-tabs {
  margin-top: 22px;
  border-color: #d4deea;
  background: #f4f7fa;
}

.account-auth-steps {
  margin: 21px 0 23px;
}

.account-auth-stage .field input {
  min-height: 52px;
}

.account-signin .btn {
  min-height: 50px;
}

.account-dashboard {
  width: min(100%, 1440px);
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: 238px minmax(0, 1fr);
  align-items: start;
  gap: 24px;
  margin: 0 auto;
  padding: 24px;
}

.account-sidebar {
  position: sticky;
  top: 96px;
  min-height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
  padding: 14px;
  border: 1px solid #d9e2ed;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 28px rgba(11, 25, 53, 0.05);
}

.account-sidebar__profile {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 7px 6px 17px;
  border-bottom: 1px solid #e3e9f0;
}

.account-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-size: 15px;
  font-weight: 850;
  text-transform: uppercase;
}

.account-avatar img,
.customer-topbar__avatar img,
.account-profile-photo__preview img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.account-sidebar__profile > div {
  min-width: 0;
  display: grid;
}

.account-sidebar__profile strong,
.account-sidebar__profile small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-sidebar__profile strong {
  font-size: 13px;
}

.account-sidebar__profile small {
  margin-top: 2px;
  color: #7b8799;
  font-size: 9px;
}

.account-nav {
  display: grid;
  gap: 4px;
  margin-top: 14px;
}

.account-nav button,
.account-signout {
  width: 100%;
  min-height: 42px;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  padding: 0 10px;
  border: 0;
  border-radius: 6px;
  color: #4d5b70;
  background: transparent;
  text-align: left;
  font-size: 11px;
  font-weight: 750;
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease;
}

.account-nav button:hover,
.account-nav button.is-active {
  color: var(--blue-dark);
  background: var(--blue-soft);
}

.account-nav button svg,
.account-signout svg {
  width: 18px;
  height: 18px;
}

.account-nav button b {
  min-width: 21px;
  padding: 2px 5px;
  border-radius: 999px;
  color: #5d6b80;
  background: #e7edf4;
  text-align: center;
  font-size: 9px;
}

.account-nav button.is-active b {
  color: var(--white);
  background: var(--blue);
}

.account-sidebar__support {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 9px;
  margin-top: auto;
  padding: 13px 10px;
  border: 1px solid #d9e5f5;
  border-radius: 7px;
  background: #f2f7ff;
}

.account-sidebar__support > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: var(--blue);
  background: var(--white);
}

.account-sidebar__support > div {
  min-width: 0;
  display: grid;
}

.account-sidebar__support small {
  color: #7a8799;
  font-size: 8px;
}

.account-sidebar__support strong {
  margin: 1px 0 4px;
  font-size: 10px;
}

.account-sidebar__support a {
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 850;
}

.account-signout {
  margin-top: 9px;
  color: #677589;
}

.account-signout:hover {
  color: #bd2f27;
  background: #fff1f0;
}

.account-workspace {
  min-width: 0;
  display: grid;
  gap: 18px;
}

.account-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.account-view {
  min-width: 0;
  display: grid;
  gap: 16px;
}

.account-current,
.account-panel,
.account-view[data-account-view="requests"],
.account-view[data-account-view="documents"],
.account-view[data-account-view="profile"] {
  min-width: 0;
  border: 1px solid #d9e2ed;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 7px 24px rgba(11, 25, 53, 0.045);
}

.account-current {
  padding: 22px 24px 24px;
}

.account-section-heading,
.account-panel__heading,
.account-view__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.account-section-heading {
  margin-bottom: 19px;
}

.account-section-heading h2,
.account-panel__heading h2,
.account-view__heading h2 {
  margin: 3px 0 0;
  font-size: 20px;
}

.account-text-button {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  color: var(--blue-dark);
  background: transparent;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}

.account-current__empty {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 15px;
  padding: 20px;
  border: 1px solid #dce5ef;
  border-radius: 7px;
  background: #f8fafc;
}

.account-current__empty > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: var(--blue);
  background: var(--blue-soft);
}

.account-current__empty h3 {
  margin: 0 0 4px;
  font-size: 17px;
}

.account-current__empty p {
  margin: 0;
  font-size: 11px;
}

.account-current__body {
  min-width: 0;
}

.account-current__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

.account-current__identity {
  min-width: 0;
}

.account-current__identity > span {
  color: #758298;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.account-current__identity h3 {
  margin: 5px 0 4px;
  font-size: 22px;
}

.account-current__identity p {
  margin: 0;
  font-size: 12px;
}

.account-current__details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 14px;
}

.account-current__details span {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #657389;
  font-size: 10px;
}

.account-current__details svg {
  color: var(--blue);
}

.account-progress {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 24px;
}

.account-progress::before,
.account-progress__fill {
  position: absolute;
  z-index: 0;
  top: 12px;
  right: 12.5%;
  left: 12.5%;
  height: 3px;
  border-radius: 999px;
  content: "";
}

.account-progress::before {
  background: #e0e7ef;
}

.account-progress__fill {
  right: auto;
  background: var(--blue);
  transition: width 260ms ease;
}

.account-progress__step {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 6px;
  color: #8793a5;
  text-align: center;
}

.account-progress__step span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: #dfe6ee;
  box-shadow: 0 0 0 1px #dfe6ee;
}

.account-progress__step svg {
  width: 13px;
  height: 13px;
}

.account-progress__step small {
  font-size: 9px;
  font-weight: 750;
}

.account-progress__step.is-complete,
.account-progress__step.is-current {
  color: var(--navy);
}

.account-progress__step.is-complete span,
.account-progress__step.is-current span {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 0 0 1px var(--blue);
}

.account-progress__step.is-current span {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 0 0 1px #d6a400;
}

.account-current__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #e4eaf1;
}

.account-current__footer p {
  margin: 0;
  font-size: 10px;
}

.account-current__footer a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--blue-dark);
  font-size: 10px;
  font-weight: 850;
}

.account-overview-grid,
.account-settings-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 16px;
}

.account-overview-grid--single {
  grid-template-columns: 1fr;
}

.account-panel {
  padding: 20px;
}

.account-panel__heading {
  margin: 0 0 16px;
  padding: 0 0 14px;
  border-bottom: 1px solid #e3e9f0;
}

.account-panel__heading > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: var(--blue);
  background: var(--blue-soft);
}

.account-next > strong {
  margin-bottom: 6px;
  font-size: 16px;
}

.account-next > p {
  min-height: 38px;
  margin-bottom: 12px;
  font-size: 11px;
}

.account-next [data-account-next-meta] {
  gap: 8px 14px;
  padding-top: 12px;
}

.account-next [data-account-next-meta] span {
  font-size: 9px;
}

.account-recent {
  padding-bottom: 14px;
}

.account-view[data-account-view="requests"],
.account-view[data-account-view="documents"],
.account-view[data-account-view="profile"] {
  padding: 24px;
}

.account-view__heading {
  align-items: end;
  margin-bottom: 5px;
}

.account-view__heading h2 {
  font-size: 26px;
}

.account-view__heading p {
  margin: 7px 0 0;
  font-size: 11px;
}

.account-view__metrics {
  display: flex;
  gap: 8px;
}

.account-view__metrics span,
.account-view__count {
  padding: 6px 9px;
  border: 1px solid #dce4ee;
  border-radius: 6px;
  color: #66748a;
  background: #f8fafc;
  font-size: 9px;
}

.account-view__metrics b,
.account-view__count b {
  color: var(--navy);
  font-size: 11px;
}

.account-filter-tabs {
  display: flex;
  gap: 5px;
  margin: 16px 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e3e9f0;
}

.account-filter-tabs button {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 6px;
  color: #69768a;
  background: #f0f3f7;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}

.account-filter-tabs button.is-active {
  color: var(--white);
  background: var(--blue);
}

.account-request-list {
  display: grid;
  gap: 9px;
}

.account-request {
  padding: 14px 15px;
  border: 1px solid #dce4ed;
  border-left: 1px solid #dce4ed;
  border-radius: 7px;
  background: #fbfcfe;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.account-request:hover {
  border-color: #b7cbe5;
  box-shadow: 0 7px 18px rgba(11, 25, 53, 0.06);
  transform: translateY(-1px);
}

.account-request__head {
  margin-bottom: 7px;
}

.account-request__head > span:first-child {
  font-size: 9px;
}

.account-status {
  padding: 4px 8px;
  font-size: 8px;
}

.account-request h3 {
  font-size: 15px;
}

.account-request > p {
  margin-bottom: 10px;
  font-size: 10px;
}

.account-request__meta {
  gap: 8px 15px;
}

.account-request__meta span {
  font-size: 9px;
}

.account-empty {
  min-height: 112px;
  padding: 18px;
  border: 1px dashed #cbd8e7;
  background: #f8fafc;
}

.account-documents {
  margin-top: 15px;
  box-shadow: none;
}

.account-documents > [data-account-documents] {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.account-document {
  min-height: 68px;
  padding: 11px;
  border-radius: 7px;
  background: #fbfcfe;
}

.account-document strong {
  font-size: 11px;
}

.account-document small,
.account-document__status,
.account-documents__empty {
  font-size: 9px;
}

.account-settings-grid {
  margin-top: 16px;
}

.account-profile,
.account-security {
  box-shadow: none;
}

.account-connected-signin {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
  padding: 12px;
  border: 1px solid #d9e3ee;
  border-radius: 7px;
  background: #f8fafc;
}

.account-connected-signin > div:first-child {
  display: grid;
  gap: 2px;
}

.account-connected-signin strong {
  font-size: 11px;
}

.account-connected-signin small {
  color: #748197;
  font-size: 9px;
}

.account-connected-signin__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.account-connected-signin__list > span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 8px;
  border: 1px solid #d3deea;
  border-radius: 6px;
  color: #65738a;
  background: var(--white);
  font-size: 8px;
  font-weight: 750;
}

.account-connected-signin__list > span.is-connected {
  border-color: #b9e1cf;
  color: #0b6548;
  background: #effaf5;
}

.account-connected-signin__list > span svg {
  width: 13px;
  height: 13px;
}

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

.account-connect-providers[hidden] {
  display: none;
}

.account-connect-providers :is(a, button) {
  min-height: 38px;
  font-size: 9px;
}

.account-profile form,
.account-security form {
  gap: 12px;
}

.account-profile .field input,
.account-security .field input {
  min-height: 46px;
  border-color: #ccd8e6;
  font-size: 12px;
}

.account-profile-photo {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  padding: 12px;
  border: 1px solid #d9e3ee;
  border-radius: 7px;
  background: #f8fafc;
}

.account-profile-photo__preview {
  width: 64px;
  height: 64px;
  display: grid;
  overflow: hidden;
  border: 3px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 0 0 1px #bfd0e5;
  font-size: 20px;
  font-weight: 850;
  place-items: center;
}

.account-profile-photo > div {
  min-width: 0;
  display: grid;
}

.account-profile-photo strong {
  font-size: 12px;
}

.account-profile-photo small {
  margin-top: 2px;
  color: #748197;
  font-size: 9px;
}

.account-profile-photo__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 9px;
}

.account-profile-photo__actions label,
.account-profile-photo__actions button {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 9px;
  border: 1px solid #cbd8e7;
  border-radius: 6px;
  color: #354761;
  background: var(--white);
  font-size: 9px;
  font-weight: 800;
  cursor: pointer;
}

.account-profile-photo__actions label:hover {
  border-color: var(--blue);
  color: var(--blue-dark);
}

.account-profile-photo__actions button {
  color: #a63831;
}

.account-profile-photo > input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.account-verification-list {
  display: grid;
  gap: 8px;
}

.account-verification-row {
  min-width: 0;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid #dce4ee;
  border-radius: 7px;
  background: #fbfcfe;
}

.account-verification-row > span {
  width: 34px;
  height: 34px;
  display: grid;
  border-radius: 6px;
  color: var(--blue);
  background: var(--blue-soft);
  place-items: center;
}

.account-verification-row > div {
  min-width: 0;
  display: grid;
}

.account-verification-row strong {
  font-size: 10px;
}

.account-verification-row small {
  margin-top: 2px;
  overflow: hidden;
  color: #78869a;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 8px;
}

.account-verification-row > b {
  padding: 4px 7px;
  border-radius: 5px;
  color: #6f7d90;
  background: #e9eef4;
  font-size: 7px;
  text-transform: uppercase;
}

.account-verification-row > b.is-verified {
  color: #0a6546;
  background: #dcf6e9;
}

.account-verification-row > b.is-unverified {
  color: #9a5d00;
  background: #fff0c3;
}

.account-verification-row > b.is-missing {
  color: #6f7d90;
  background: #e9eef4;
}

.account-profile__hint {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  font-size: 9px;
}

.account-profile .btn,
.account-security .btn {
  justify-self: start;
}

.account-profile .form-status,
.account-security .form-status {
  min-height: 16px;
  text-align: left;
}

.account-mobile-nav {
  display: none;
}

.account-mobile-signout {
  display: none;
}

.account-notice {
  position: fixed;
  z-index: 80;
  top: 88px;
  right: 24px;
  max-width: min(420px, calc(100vw - 32px));
  padding: 12px 15px;
  border: 1px solid #a7dfc6;
  border-radius: 7px;
  color: #09543d;
  background: #edfbf5;
  box-shadow: 0 12px 30px rgba(11, 25, 53, 0.13);
  font-size: 11px;
  font-weight: 750;
}

.account-dialog-open {
  overflow: hidden;
}

.account-request-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  padding: 18px;
  place-items: center;
}

.account-request-modal__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(7, 22, 47, 0.72);
  cursor: default;
}

.account-request-modal__panel {
  position: relative;
  width: min(100%, 680px);
  max-height: calc(100dvh - 36px);
  overflow-y: auto;
  padding: 26px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(5, 18, 40, 0.28);
}

.account-request-modal__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e0e7ef;
}

.account-request-modal__header > div {
  min-width: 0;
}

.account-request-modal__header h2 {
  margin: 3px 0 5px;
  font-size: 25px;
}

.account-request-modal__header p {
  max-width: 480px;
  margin: 0;
  font-size: 10px;
}

.account-request-modal__close {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  border: 1px solid #d7e0eb;
  border-radius: 6px;
  color: var(--navy);
  background: #f7f9fc;
  cursor: pointer;
  place-items: center;
}

.account-request-modal form {
  display: grid;
  gap: 13px;
  padding-top: 18px;
}

.account-request-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.account-request-modal .field select,
.account-request-modal .field textarea {
  width: 100%;
  border: 1px solid #cbd7e5;
  border-radius: 6px;
  color: var(--navy);
  background: var(--white);
  font: inherit;
  font-size: 12px;
}

.account-request-modal .field select {
  min-height: 48px;
  padding: 0 40px 0 13px;
}

.account-request-modal .field textarea {
  min-height: 92px;
  padding: 12px 13px;
  line-height: 1.45;
  resize: vertical;
}

.account-request-modal .field select:focus,
.account-request-modal .field textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(18, 101, 214, 0.16);
}

.account-reward-option {
  min-height: 62px;
  display: grid;
  grid-template-columns: 20px 36px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid #ead58c;
  border-radius: 7px;
  background: #fff9e8;
  cursor: pointer;
}

.account-reward-option input {
  width: 16px;
  height: 16px;
  accent-color: var(--blue);
}

.account-reward-option > span {
  width: 36px;
  height: 36px;
  display: grid;
  border-radius: 6px;
  color: var(--navy);
  background: var(--yellow);
  place-items: center;
}

.account-reward-option > div {
  min-width: 0;
  display: grid;
}

.account-reward-option strong {
  font-size: 11px;
}

.account-reward-option small {
  margin-top: 2px;
  color: #71684b;
  font-size: 9px;
}

.account-reward-option > svg {
  color: #19875f;
}

.account-request-form__actions {
  display: flex;
  justify-content: flex-end;
  gap: 9px;
  padding-top: 3px;
}

.account-request-form__actions .btn {
  min-height: 44px;
}

.account-request-modal .form-status {
  min-height: 16px;
  margin: 0;
  text-align: right;
}

@media (max-width: 1040px) {
  .customer-topbar__actions {
    gap: 7px;
  }

  .customer-topbar__site {
    width: 42px;
    justify-content: center;
    padding: 0;
  }

  .customer-topbar__site span,
  .customer-topbar__profile-copy {
    display: none;
  }

  .customer-topbar__profile {
    width: 42px;
    justify-content: center;
    padding: 3px;
  }

  .customer-topbar__profile > svg {
    display: none;
  }

  .account-dashboard {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 16px;
    padding: 18px;
  }

  .account-sidebar {
    top: 90px;
    min-height: calc(100vh - 108px);
  }

  .account-current__top {
    gap: 12px;
  }

  .account-overview-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .account-dashboard {
    min-height: calc(100vh - 78px);
    display: block;
    padding: 16px 16px 88px;
  }

  .account-sidebar {
    display: none;
  }

  .account-settings-grid {
    grid-template-columns: 1fr;
  }

  .account-mobile-nav {
    position: fixed;
    z-index: 60;
    right: 0;
    bottom: 0;
    left: 0;
    height: 70px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 6px max(8px, env(safe-area-inset-right)) max(6px, env(safe-area-inset-bottom)) max(8px, env(safe-area-inset-left));
    border-top: 1px solid #d6e0eb;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 -8px 28px rgba(11, 25, 53, 0.08);
    backdrop-filter: blur(12px);
  }

  .account-mobile-nav button {
    position: relative;
    min-width: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 3px;
    padding: 3px;
    border-radius: 6px;
    color: #778499;
    background: transparent;
    font-size: 8px;
    font-weight: 750;
  }

  .account-mobile-nav button svg {
    width: 20px;
    height: 20px;
  }

  .account-mobile-nav button.is-active {
    color: var(--blue-dark);
    background: var(--blue-soft);
  }

  .account-mobile-nav button b {
    position: absolute;
    top: 2px;
    right: calc(50% - 19px);
    min-width: 16px;
    padding: 1px 4px;
    border: 2px solid var(--white);
    border-radius: 999px;
    color: var(--white);
    background: var(--blue);
    font-size: 7px;
  }

  .account-mobile-signout {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 14px;
    border: 1px solid #e3c9c7;
    border-radius: 7px;
    color: #b52f28;
    background: #fff4f3;
    font-size: 11px;
    font-weight: 800;
  }
}

@media (max-width: 600px) {
  .customer-topbar__actions {
    gap: 6px;
  }

  .customer-topbar__gifts,
  .customer-topbar__site {
    display: none;
  }

  .account-header-control--rewards {
    gap: 0;
  }

  .account-header-popover {
    position: fixed;
    top: 68px;
    right: 14px;
    left: 14px;
    width: auto;
    max-height: calc(100dvh - 82px);
    overflow-y: auto;
  }

  .account-auth {
    min-height: calc(100vh - 78px);
    padding: 18px 12px;
  }

  .account-signin {
    padding: 25px 20px;
  }

  .account-signin > h1 {
    font-size: 30px;
  }

  .account-signin__lead {
    font-size: 11px;
  }

  .account-providers {
    grid-template-columns: 1fr;
  }

  .account-auth-steps li > b {
    font-size: 8px;
  }

  .account-dashboard {
    padding: 12px 12px 84px;
  }

  .account-current,
  .account-panel,
  .account-view[data-account-view="requests"],
  .account-view[data-account-view="documents"],
  .account-view[data-account-view="profile"] {
    padding: 16px;
  }

  .account-section-heading {
    margin-bottom: 14px;
  }

  .account-section-heading h2,
  .account-panel__heading h2 {
    font-size: 17px;
  }

  .account-current__empty {
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 14px;
  }

  .account-current__empty > span {
    width: 42px;
    height: 42px;
  }

  .account-current__empty .btn {
    grid-column: 1 / -1;
    width: 100%;
  }

  .account-current__top {
    display: grid;
  }

  .account-current__identity h3 {
    font-size: 18px;
  }

  .account-progress {
    gap: 2px;
    margin-top: 20px;
  }

  .account-progress__step small {
    max-width: 62px;
    font-size: 7px;
    line-height: 1.2;
  }

  .account-current__footer {
    align-items: start;
    flex-direction: column;
  }

  .account-view__heading {
    align-items: start;
    flex-direction: column;
  }

  .account-view__heading h2 {
    font-size: 22px;
  }

  .account-documents > [data-account-documents] {
    grid-template-columns: 1fr;
  }

  .account-empty {
    align-items: start;
  }

  .account-profile-photo {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .account-profile-photo__preview {
    width: 54px;
    height: 54px;
  }

  .account-verification-row {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .account-verification-row > b {
    grid-column: 2;
    justify-self: start;
  }

  .account-notice {
    top: 76px;
    right: 12px;
    left: 12px;
    max-width: none;
  }

  .account-request-modal {
    align-items: end;
    padding: 8px;
  }

  .account-request-modal__panel {
    width: 100%;
    max-height: calc(100dvh - 16px);
    padding: 20px 16px;
  }

  .account-request-modal__header h2 {
    font-size: 22px;
  }

  .account-request-form__grid {
    grid-template-columns: 1fr;
  }

  .account-request-form__actions {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
  }

  .account-request-form__actions .btn {
    width: 100%;
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .customer-topbar__level > span,
  .customer-topbar__request span {
    display: none;
  }

  .customer-topbar__level,
  .customer-topbar__request {
    width: 42px;
    padding: 0;
    justify-content: center;
  }
}

@media (max-width: 390px) {
  .account-text-button {
    font-size: 0;
  }

  .account-text-button svg {
    width: 20px;
    height: 20px;
  }
}

/* module: dispatcher.css */
/* Dispatcher workspace */
.dispatcher-page {
  background: #eef4fb;
}

.dispatcher-page main {
  min-height: 100vh;
}

.dispatcher-page [hidden] {
  display: none !important;
}

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

.dispatcher-page .icon-button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  padding: 0;
  flex: 0 0 42px;
  place-items: center;
  border: 1px solid #ccd8e8;
  border-radius: 6px;
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease, background-color 160ms ease;
}

.dispatcher-page .icon-button:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-soft);
}

.dispatcher-page .icon-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.dispatcher-page .icon-button.is-loading svg {
  animation: dispatcher-spin 700ms linear infinite;
}

@keyframes dispatcher-spin {
  to {
    transform: rotate(360deg);
  }
}

.dispatcher-login {
  display: grid;
  min-height: 100vh;
  padding: 42px 24px;
  place-items: center;
  align-content: center;
  background:
    linear-gradient(90deg, rgba(11, 94, 232, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(11, 94, 232, 0.05) 1px, transparent 1px),
    #eef4fb;
  background-size: 48px 48px;
}

.dispatcher-login__brand {
  display: flex;
  margin-bottom: 22px;
  align-items: center;
  gap: 13px;
}

.dispatcher-login__brand img {
  width: 82px;
  height: 50px;
  object-fit: contain;
}

.dispatcher-login__brand span {
  display: grid;
  color: var(--navy);
  line-height: 1.1;
}

.dispatcher-login__brand strong {
  font-size: 20px;
}

.dispatcher-login__brand small {
  margin-top: 5px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 3px;
}

.dispatcher-login__panel {
  width: min(100%, 460px);
  padding: 38px;
  border: 1px solid #c9d8eb;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 22px 54px rgba(7, 26, 56, 0.12);
}

.dispatcher-login__mark {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 7px;
  color: var(--navy);
  background: var(--yellow);
}

.dispatcher-login__mark svg {
  width: 27px;
  height: 27px;
}

.dispatcher-login__panel h1 {
  margin: 7px 0 10px;
  font-size: 38px;
}

.dispatcher-login__panel > p {
  margin-bottom: 26px;
}

.dispatcher-login__panel form {
  display: grid;
  gap: 15px;
}

.dispatcher-login__field {
  position: relative;
  display: block;
}

.dispatcher-login__field > svg {
  position: absolute;
  z-index: 1;
  left: 16px;
  top: 50%;
  width: 20px;
  height: 20px;
  color: #687b98;
  transform: translateY(-50%);
}

.dispatcher-login__field input {
  width: 100%;
  padding-left: 48px;
}

.dispatcher-login__panel .form-status {
  min-height: 22px;
  margin: 0;
  color: #b42318;
  font-size: 13px;
  text-align: center;
}

.dispatcher-login__security {
  display: flex;
  margin: 20px 0 0 !important;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #667791;
  font-size: 12px;
}

.dispatcher-login__security svg {
  color: var(--green);
}

.dispatcher-workspace {
  min-height: 100vh;
}

.dispatcher-topbar {
  position: sticky;
  z-index: 40;
  top: 0;
  display: flex;
  min-height: 72px;
  padding: 10px max(24px, calc((100vw - 1520px) / 2));
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid #d1ddeb;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 3px 14px rgba(7, 26, 56, 0.05);
}

.dispatcher-topbar__brand {
  display: flex;
  min-width: 240px;
  align-items: center;
  gap: 11px;
}

.dispatcher-topbar__brand img {
  width: 64px;
  height: 39px;
  object-fit: contain;
}

.dispatcher-topbar__brand span {
  display: grid;
  line-height: 1.15;
}

.dispatcher-topbar__brand strong {
  color: var(--navy);
  font-size: 16px;
}

.dispatcher-topbar__brand small {
  margin-top: 3px;
  color: #667791;
  font-size: 11px;
}

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

.dispatcher-topbar__identity {
  display: flex;
  margin-right: 8px;
  align-items: center;
  gap: 9px;
}

.dispatcher-topbar__identity > svg {
  width: 28px;
  height: 28px;
  color: var(--blue);
}

.dispatcher-topbar__identity > span {
  display: grid;
  line-height: 1.15;
}

.dispatcher-topbar__identity strong {
  font-size: 14px;
}

.dispatcher-topbar__identity small {
  margin-top: 3px;
  color: #6b7b94;
  font-size: 11px;
  text-transform: capitalize;
}

.dispatcher-main {
  width: min(calc(100% - 48px), 1520px);
  margin: 0 auto;
  padding: 28px 0 40px;
}

.dispatcher-heading {
  display: flex;
  margin-bottom: 18px;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.dispatcher-heading h2 {
  margin: 4px 0 5px;
  font-size: 31px;
}

.dispatcher-heading p {
  margin: 0;
  font-size: 14px;
}

.dispatcher-heading__updated {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #667791;
  font-size: 12px;
}

.dispatcher-heading__updated svg {
  color: var(--blue);
}

.dispatcher-summary {
  display: grid;
  margin-bottom: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.dispatcher-summary__item {
  display: flex;
  min-height: 82px;
  padding: 16px 18px;
  align-items: center;
  gap: 13px;
  border: 1px solid #d0dceb;
  border-radius: 7px;
  background: var(--white);
}

.dispatcher-summary__item > span {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 6px;
  color: var(--blue);
  background: var(--blue-soft);
}

.dispatcher-summary__item--new > span {
  color: #6c4d00;
  background: #fff2bd;
}

.dispatcher-summary__item div {
  display: grid;
  line-height: 1.1;
}

.dispatcher-summary__item strong {
  font-size: 25px;
}

.dispatcher-summary__item small {
  margin-top: 5px;
  color: #667791;
  font-size: 12px;
}

.dispatcher-filters {
  display: grid;
  margin-bottom: 16px;
  padding: 12px;
  grid-template-columns: minmax(320px, 1fr) minmax(170px, 220px) minmax(190px, 250px) auto;
  gap: 10px;
  border: 1px solid #d0dceb;
  border-radius: 7px;
  background: var(--white);
}

.dispatcher-filters input,
.dispatcher-filters select {
  width: 100%;
  height: 44px;
  border: 1px solid #c8d5e6;
  border-radius: 6px;
  outline: none;
  background: var(--white);
}

.dispatcher-filters input:focus,
.dispatcher-filters select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(11, 94, 232, 0.12);
}

.dispatcher-filters select {
  padding: 0 34px 0 13px;
}

.dispatcher-search {
  position: relative;
}

.dispatcher-search > svg {
  position: absolute;
  z-index: 1;
  left: 14px;
  top: 50%;
  width: 18px;
  height: 18px;
  color: #70809a;
  transform: translateY(-50%);
}

.dispatcher-search input {
  padding: 0 14px 0 42px;
}

.dispatcher-filters .btn {
  min-height: 44px;
}

.dispatcher-grid {
  display: grid;
  min-height: 680px;
  grid-template-columns: minmax(330px, 420px) minmax(0, 1fr);
  align-items: stretch;
  gap: 16px;
}

.dispatcher-queue,
.dispatcher-detail {
  min-width: 0;
  border: 1px solid #ccd9e9;
  border-radius: 7px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(7, 26, 56, 0.05);
}

.dispatcher-queue {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.dispatcher-queue > header {
  display: flex;
  min-height: 72px;
  padding: 15px 18px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #dce5f0;
}

.dispatcher-queue > header h3 {
  margin: 0 0 2px;
  font-size: 17px;
}

.dispatcher-queue > header p {
  margin: 0;
  font-size: 12px;
}

.dispatcher-queue > header > svg {
  color: var(--blue);
}

.dispatcher-request-list {
  min-height: 0;
  max-height: calc(100vh - 330px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.dispatcher-request-row {
  display: grid;
  width: 100%;
  min-height: 132px;
  padding: 15px 17px;
  gap: 5px;
  border-bottom: 1px solid #e0e8f2;
  border-left: 3px solid transparent;
  text-align: left;
  background: var(--white);
  cursor: pointer;
  transition: border-color 150ms ease, background-color 150ms ease;
}

.dispatcher-request-row:hover {
  background: #f7faff;
}

.dispatcher-request-row.is-selected {
  border-left-color: var(--blue);
  background: #eef5ff;
}

.dispatcher-request-row__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.dispatcher-request-row__top time {
  color: #71819a;
  font-size: 11px;
}

.dispatcher-request-row > strong {
  overflow: hidden;
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dispatcher-request-row__problem {
  overflow: hidden;
  color: #4e5f78;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dispatcher-request-row__meta {
  display: flex;
  margin-top: 3px;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 12px;
  color: #667791;
  font-size: 11px;
}

.dispatcher-request-row__meta > span {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 4px;
}

.dispatcher-request-row__meta svg {
  width: 13px;
  height: 13px;
  color: var(--blue);
}

.dispatcher-status {
  display: inline-flex;
  width: max-content;
  min-height: 24px;
  padding: 3px 8px;
  align-items: center;
  border-radius: 4px;
  color: #31425d;
  background: #edf1f6;
  font-size: 11px;
  font-weight: 800;
}

.dispatcher-status--new {
  color: #735200;
  background: #fff0ad;
}

.dispatcher-status--contacted {
  color: #084e9f;
  background: #dcecff;
}

.dispatcher-status--scheduled {
  color: #51408b;
  background: #ece7ff;
}

.dispatcher-status--in_progress {
  color: #8a3f00;
  background: #ffe6cc;
}

.dispatcher-status--completed {
  color: #0d6d40;
  background: #d9f5e7;
}

.dispatcher-status--cancelled {
  color: #a52a23;
  background: #ffe0dd;
}

.dispatcher-queue-empty {
  display: flex;
  min-height: 180px;
  padding: 26px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #667791;
}

.dispatcher-queue-empty > svg {
  width: 30px;
  height: 30px;
  color: #8da0ba;
}

.dispatcher-queue-empty strong {
  color: var(--navy);
}

.dispatcher-queue-empty p {
  margin: 2px 0 0;
  font-size: 12px;
}

.dispatcher-pagination {
  display: flex;
  min-height: 60px;
  padding: 9px 14px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #dce5f0;
}

.dispatcher-pagination span {
  color: #667791;
  font-size: 12px;
}

.dispatcher-detail {
  min-height: 680px;
  overflow: hidden;
}

.dispatcher-detail__empty {
  display: grid;
  height: 100%;
  min-height: 500px;
  padding: 50px;
  place-items: center;
  align-content: center;
  text-align: center;
}

.dispatcher-detail__empty > span {
  display: grid;
  width: 68px;
  height: 68px;
  margin-bottom: 17px;
  place-items: center;
  border-radius: 7px;
  color: var(--blue);
  background: var(--blue-soft);
}

.dispatcher-detail__empty > span svg {
  width: 31px;
  height: 31px;
}

.dispatcher-detail__empty h3 {
  margin-bottom: 6px;
}

.dispatcher-detail__empty p {
  max-width: 390px;
  margin: 0;
}

.dispatcher-detail__header {
  display: flex;
  min-height: 106px;
  padding: 20px 24px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid #dce5f0;
}

.dispatcher-detail__header h3 {
  margin: 7px 0 4px;
  font-size: 24px;
}

.dispatcher-detail__header p {
  margin: 0;
  font-size: 12px;
}

.dispatcher-account-state {
  display: flex;
  min-width: max-content;
  padding: 8px 10px;
  align-items: center;
  gap: 7px;
  border-radius: 5px;
  color: #0e7144;
  background: #e2f7ec;
  font-size: 12px;
  font-weight: 750;
}

.dispatcher-account-state.is-unregistered {
  color: #795500;
  background: #fff1b9;
}

.dispatcher-contact {
  display: flex;
  min-height: 58px;
  padding: 10px 24px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #dce5f0;
  background: #f8fbff;
}

.dispatcher-contact a {
  display: inline-flex;
  min-height: 36px;
  padding: 7px 11px;
  align-items: center;
  gap: 7px;
  border: 1px solid #cbd9e9;
  border-radius: 5px;
  color: var(--blue-dark);
  background: var(--white);
  font-size: 13px;
  font-weight: 750;
}

.dispatcher-contact a:hover {
  border-color: var(--blue);
}

.dispatcher-detail__body {
  max-height: calc(100vh - 290px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.dispatcher-request-context {
  display: grid;
  padding: 19px 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  border-bottom: 1px solid #dce5f0;
}

.dispatcher-request-context > div {
  display: grid;
  min-width: 0;
}

.dispatcher-request-context small {
  margin-bottom: 4px;
  color: #71819a;
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}

.dispatcher-request-context strong {
  overflow-wrap: anywhere;
  font-size: 13px;
}

.dispatcher-assignment,
.dispatcher-activity {
  padding: 22px 24px;
  border-bottom: 1px solid #dce5f0;
}

.dispatcher-section-heading {
  display: flex;
  margin-bottom: 17px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.dispatcher-section-heading h3 {
  margin: 3px 0 0;
  font-size: 18px;
}

.dispatcher-section-heading > svg {
  color: var(--blue);
}

.dispatcher-form-grid {
  display: grid;
  grid-template-columns: minmax(160px, 0.7fr) minmax(230px, 1.3fr);
  gap: 12px;
}

.dispatcher-form-grid__wide {
  grid-column: 1 / -1;
}

.dispatcher-assignment form > .btn {
  margin-top: 15px;
}

.dispatcher-assignment .form-status,
.dispatcher-note-form .form-status,
.dispatcher-security-dialog .form-status {
  min-height: 20px;
  margin: 8px 0 0;
  color: #245b42;
  font-size: 12px;
}

.dispatcher-note-form {
  margin-bottom: 21px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e7f0;
}

.dispatcher-note-form textarea {
  min-height: 84px;
  resize: vertical;
}

.dispatcher-timeline {
  display: grid;
}

.dispatcher-timeline__item {
  position: relative;
  display: grid;
  min-width: 0;
  padding: 0 0 19px;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
}

.dispatcher-timeline__item:not(:last-child)::before {
  position: absolute;
  top: 29px;
  bottom: 0;
  left: 16px;
  width: 1px;
  background: #d2dfed;
  content: "";
}

.dispatcher-timeline__item > span {
  z-index: 1;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid #cbd9ea;
  border-radius: 50%;
  color: var(--blue);
  background: var(--white);
}

.dispatcher-timeline__item--note > span {
  color: #7c5700;
  background: #fff7d4;
}

.dispatcher-timeline__item svg {
  width: 15px;
  height: 15px;
}

.dispatcher-timeline__item p {
  margin: 0 0 3px;
  overflow-wrap: anywhere;
  color: var(--text);
  font-size: 13px;
}

.dispatcher-timeline__item small {
  color: #71819a;
  font-size: 11px;
}

.dispatcher-timeline__empty {
  margin: 0;
  padding: 16px;
  border: 1px dashed #cbd8e8;
  border-radius: 6px;
  text-align: center;
}

.dispatcher-security-dialog {
  width: min(calc(100% - 32px), 480px);
  padding: 32px;
  border: 1px solid #c8d6e8;
  border-radius: 8px;
  color: var(--text);
  background: var(--white);
  box-shadow: 0 30px 80px rgba(7, 26, 56, 0.28);
}

.dispatcher-security-dialog::backdrop {
  background: rgba(7, 26, 56, 0.66);
}

.dispatcher-security-dialog__close {
  position: absolute;
  top: 14px;
  right: 14px;
}

.dispatcher-security-dialog h2 {
  margin: 0 0 7px;
  font-size: 29px;
}

.dispatcher-security-dialog > p {
  margin-bottom: 22px;
}

.dispatcher-security-dialog > form:last-child {
  display: grid;
  gap: 13px;
}

@media (max-width: 1100px) {
  .dispatcher-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dispatcher-filters {
    grid-template-columns: minmax(260px, 1fr) minmax(150px, 190px) minmax(170px, 210px);
  }

  .dispatcher-filters .btn {
    grid-column: 1 / -1;
    justify-self: end;
  }

  .dispatcher-grid {
    grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
  }

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

@media (max-width: 820px) {
  .dispatcher-topbar {
    position: static;
    padding: 10px 16px;
  }

  .dispatcher-topbar__brand span,
  .dispatcher-topbar__identity {
    display: none;
  }

  .dispatcher-topbar__brand {
    min-width: 0;
  }

  .dispatcher-topbar__user .btn {
    min-width: 42px;
    padding: 0;
  }

  .dispatcher-topbar__user .btn span {
    display: none;
  }

  .dispatcher-main {
    width: min(calc(100% - 28px), 720px);
    padding-top: 21px;
  }

  .dispatcher-heading {
    align-items: start;
    flex-direction: column;
    gap: 7px;
  }

  .dispatcher-filters {
    grid-template-columns: 1fr 1fr;
  }

  .dispatcher-search {
    grid-column: 1 / -1;
  }

  .dispatcher-grid {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .dispatcher-request-list,
  .dispatcher-detail__body {
    max-height: none;
  }

  .dispatcher-detail {
    min-height: 520px;
  }
}

@media (max-width: 560px) {
  .dispatcher-login {
    padding: 28px 14px;
  }

  .dispatcher-login__brand {
    margin-bottom: 16px;
  }

  .dispatcher-login__brand img {
    width: 68px;
    height: 42px;
  }

  .dispatcher-login__brand strong {
    font-size: 16px;
  }

  .dispatcher-login__panel {
    padding: 25px 20px;
  }

  .dispatcher-login__panel h1 {
    font-size: 31px;
  }

  .dispatcher-topbar__brand img {
    width: 53px;
    height: 33px;
  }

  .dispatcher-topbar__user {
    gap: 5px;
  }

  .dispatcher-page .icon-button,
  .dispatcher-topbar__user .btn {
    width: 39px;
    height: 39px;
    min-width: 39px;
    flex-basis: 39px;
  }

  .dispatcher-main {
    width: calc(100% - 20px);
    padding: 17px 0 28px;
  }

  .dispatcher-heading h2 {
    font-size: 27px;
  }

  .dispatcher-summary {
    gap: 8px;
  }

  .dispatcher-summary__item {
    min-height: 72px;
    padding: 12px;
    gap: 9px;
  }

  .dispatcher-summary__item > span {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .dispatcher-summary__item strong {
    font-size: 21px;
  }

  .dispatcher-summary__item small {
    font-size: 10px;
  }

  .dispatcher-filters {
    padding: 9px;
    grid-template-columns: 1fr;
  }

  .dispatcher-search,
  .dispatcher-filters .btn {
    grid-column: auto;
  }

  .dispatcher-filters .btn {
    width: 100%;
  }

  .dispatcher-detail__header {
    padding: 17px;
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }

  .dispatcher-detail__header h3 {
    font-size: 21px;
  }

  .dispatcher-contact {
    padding: 10px 17px;
    align-items: stretch;
    flex-direction: column;
  }

  .dispatcher-contact a {
    width: 100%;
  }

  .dispatcher-request-context {
    padding: 17px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .dispatcher-assignment,
  .dispatcher-activity {
    padding: 19px 17px;
  }

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

  .dispatcher-form-grid__wide {
    grid-column: auto;
  }

  .dispatcher-assignment form > .btn,
  .dispatcher-note-form .btn {
    width: 100%;
  }

  .dispatcher-security-dialog {
    padding: 26px 20px;
  }
}
