:root {
  --navy: #061827;
  --navy-2: #0b2436;
  --ink: #101923;
  --muted: #5d6875;
  --line: #dfe6ee;
  --paper: #ffffff;
  --soft: #f5f8fb;
  --yellow: #ffc400;
  --gold: #f0a000;
  --teal: #1b6d72;
  --success: #17633a;
  --shadow: 0 16px 40px rgba(6, 24, 39, 0.12);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

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

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

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

.topbar {
  color: #dfeaf5;
  background: var(--navy);
  font-size: 0.92rem;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 45px;
}

.topbar-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.topbar a,
.topbar strong {
  color: #fff;
}

.mini-icon {
  width: 18px;
  height: 18px;
  color: var(--yellow);
  flex: 0 0 auto;
}

.topbar-item,
.emergency-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(16, 25, 35, 0.08);
  box-shadow: 0 10px 24px rgba(6, 24, 39, 0.06);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 360px;
  max-width: 62vw;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 800;
  border-bottom: 3px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active {
  color: #00192b;
  border-color: var(--yellow);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--navy);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.nav-toggle::before {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 -7px 0 currentColor, 0 7px 0 currentColor;
  content: "";
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
}

.nav-toggle span::before {
  transform: translateY(-7px);
}

.nav-toggle span::after {
  transform: translateY(5px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  color: var(--navy);
  background: var(--yellow);
  border: 2px solid var(--yellow);
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.1;
  box-shadow: 0 10px 20px rgba(240, 160, 0, 0.22);
  cursor: pointer;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn:hover,
.btn:focus-visible {
  background: #ffd63d;
  border-color: #ffd63d;
}

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

.btn-dark:hover,
.btn-dark:focus-visible {
  background: var(--navy-2);
  border-color: var(--navy-2);
}

.btn-outline {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: none;
}

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

.section {
  padding: 78px 0;
}

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

.section-eyebrow {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.section-lead {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

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

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 900;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.home-hero {
  min-height: 680px;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6, 24, 39, 0.97) 0%, rgba(6, 24, 39, 0.92) 38%, rgba(6, 24, 39, 0.14) 67%, rgba(6, 24, 39, 0) 100%),
    linear-gradient(0deg, rgba(6, 24, 39, 0.22), rgba(6, 24, 39, 0.22));
  content: "";
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-angle {
  position: absolute;
  inset: 0 auto 0 46%;
  z-index: 2;
  width: 24%;
  background: linear-gradient(109deg, rgba(6, 24, 39, 1) 0 48%, rgba(6, 24, 39, 0) 49%);
  opacity: 0.92;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  align-items: center;
  min-height: 680px;
  padding: 68px 0 44px;
}

.home-hero .hero-content {
  grid-template-columns: minmax(0, 1fr) minmax(288px, 360px);
  column-gap: clamp(28px, 4vw, 48px);
  align-items: center;
}

.home-hero .hero-copy {
  max-width: min(100%, 600px);
}

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

.hero-google-block {
  width: 100%;
  margin-bottom: 22px;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-trust-strip {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  max-width: 100%;
}

.hero-reviews-link {
  flex: 0 0 auto;
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-reviews-link:hover,
.hero-reviews-link:focus-visible {
  color: #ffd63d;
}

.hero-review-slider {
  margin-top: 0;
  position: relative;
  padding: 0 34px;
}

.hero-review-aside {
  width: 100%;
  justify-self: end;
  max-width: 430px;
}

.hero-review-slides {
  display: grid;
  grid-template-areas: "stack";
  position: relative;
  min-height: 23.5rem;
}

.hero-review-slide {
  grid-area: stack;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
  pointer-events: none;
}

.hero-review-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.g-review-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-height: 23.5rem;
  padding: 32px 28px 26px;
  background: #fff;
  border: 1px solid #dadce0;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.28), 0 2px 8px rgba(60, 64, 67, 0.1);
}

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

.g-review-card__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  color: #fff;
  background: #1a73e8;
  border-radius: 50%;
  font-size: 0.95rem;
  font-weight: 900;
}

.g-review-card__avatar--b {
  background: #ea8600;
}

.g-review-card__avatar--c {
  background: #137333;
}

.g-review-card__who {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.g-review-card__name {
  color: #202124;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
}

.g-review-card__when {
  color: #70757a;
  font-size: 0.78rem;
  line-height: 1.2;
}

.g-review-card__stars {
  margin: 0 0 14px;
  color: #fbbc04;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  line-height: 1;
}

.g-review-card__text {
  margin: 0;
  color: #3c4043;
  font-size: 0.95rem;
  line-height: 1.62;
}

.hero .g-review-card__text {
  color: #3c4043;
}

.g-review-card__foot {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #f1f3f4;
}

.hero-review-arrow {
  position: absolute;
  top: calc(50% - 18px);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--navy);
  background: var(--yellow);
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(6, 24, 39, 0.24);
  cursor: pointer;
}

.hero-review-arrow span {
  line-height: 1;
  font-size: 1.15rem;
  font-weight: 900;
}

.hero-review-arrow--prev {
  left: 6px;
}

.hero-review-arrow--next {
  right: 6px;
}

.hero-review-arrow:hover,
.hero-review-arrow:focus-visible {
  background: #ffd63d;
}

.hero-review-arrow:focus-visible {
  outline: 3px solid rgba(255, 196, 0, 0.45);
  outline-offset: 3px;
}

.g-review-card__google-mark {
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}

.g-review-card__g {
  color: #4285f4;
}

.g-review-card__o1 {
  color: #ea4335;
}

.g-review-card__o2 {
  color: #fbbc05;
}

.g-review-card__g2 {
  color: #4285f4;
}

.g-review-card__l {
  color: #34a853;
}

.g-review-card__e {
  color: #ea4335;
}

.g-review-card__posted {
  color: #70757a;
  font-size: 0.76rem;
  font-weight: 600;
}

.hero-review-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.hero-review-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.2s ease, width 0.2s ease, border-radius 0.2s ease;
}

.hero-review-dot:hover,
.hero-review-dot:focus-visible {
  background: rgba(255, 255, 255, 0.55);
}

.hero-review-dot:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}

.hero-review-dot.is-active {
  width: 22px;
  border-radius: 4px;
  background: var(--yellow);
}

.hero-trust-strip strong {
  color: #fff;
  font-size: 0.98rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-trust-strip strong span {
  color: var(--yellow);
}

.hero-kicker {
  margin: 0 0 18px;
  color: var(--yellow);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 5.25rem);
  line-height: 1;
  letter-spacing: 0;
}

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

.hero p {
  max-width: 540px;
  margin: 22px 0 0;
  color: #edf4fa;
  font-size: clamp(1.02rem, 2vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 870px;
  margin-top: 48px;
}

.hero-feature {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  color: var(--yellow);
  background: rgba(255, 196, 0, 0.16);
  border-radius: 50%;
  line-height: 0;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

.hero-feature strong {
  display: block;
  color: #fff;
  font-size: 0.96rem;
}

.hero-feature > span:not(.feature-icon),
.hero-feature > span:not(.feature-icon) span {
  display: block;
  color: #cfdae4;
  font-size: 0.86rem;
}

.call-card {
  position: absolute;
  right: max(32px, calc((100vw - var(--container)) / 2));
  bottom: 42px;
  z-index: 4;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  width: min(360px, calc(100vw - 48px));
  padding: 22px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.call-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 50%;
  line-height: 0;
}

.call-card-icon svg {
  width: 28px;
  height: 28px;
}

.google-icon {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0;
}

.trust-card {
  align-items: center;
  grid-template-columns: auto 1fr;
  width: min(410px, calc(100vw - 48px));
}

.trust-card strong {
  color: var(--navy);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-copy small {
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.avatar-stack {
  display: flex;
  align-items: center;
  min-width: 154px;
}

.avatar-stack span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-left: -12px;
  color: #fff;
  background: linear-gradient(135deg, #0b2436, #1b6d72);
  border: 3px solid #fff;
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(6, 24, 39, 0.16);
}

.avatar-stack span:first-child {
  margin-left: 0;
}

.avatar-stack span:nth-child(2) {
  background: linear-gradient(135deg, #f0a000, #e53935);
}

.avatar-stack span:nth-child(3) {
  background: linear-gradient(135deg, #7dd3fc, #1b6d72);
}

.avatar-stack span:nth-child(4) {
  background: linear-gradient(135deg, #102033, #5d6875);
}

.avatar-stack span:nth-child(5) {
  color: var(--navy);
  background: var(--yellow);
}

.stars,
.review-stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
  letter-spacing: 1px;
  line-height: 1;
}

.trust-card .stars {
  margin: 6px 0 7px;
  font-size: 1.08rem;
}

.call-card small {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.call-card strong {
  display: block;
  color: var(--navy);
  font-size: 1.55rem;
  line-height: 1.2;
}

.call-card > span:not(.call-card-icon),
.call-card > span:not(.call-card-icon) > span:not(.stars) {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.trust-card .stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
  font-size: 1.08rem;
  letter-spacing: 1px;
  line-height: 1;
}

.page-hero {
  min-height: 360px;
}

.page-hero .hero-content {
  min-height: 360px;
  padding: 72px 0;
}

.page-hero .hero-copy {
  max-width: 760px;
}

.crumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.grid {
  display: grid;
  gap: 20px;
}

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

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

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

.card {
  min-width: 0;
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(16, 25, 35, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(6, 24, 39, 0.08);
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 254px;
  text-align: left;
}

.service-card .feature-icon {
  margin-bottom: 20px;
  color: var(--navy);
  background: #fff6d8;
}

.service-card h3,
.card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.22rem;
  line-height: 1.2;
}

.service-card p,
.card p {
  margin: 0;
  color: var(--muted);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 22px;
  color: var(--gold);
  font-weight: 900;
}

.reviews-section {
  background: #fff;
}

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

.review-card {
  min-width: 0;
  padding: 28px;
  background: var(--soft);
  border: 1px solid rgba(16, 25, 35, 0.08);
  border-radius: var(--radius);
}

.review-stars {
  margin-bottom: 18px;
  font-size: 1.05rem;
}

.review-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.22rem;
}

.review-card p {
  margin: 0;
  color: var(--muted);
}

.review-meta {
  display: block;
  margin-top: 22px;
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 900;
}

.landing-page {
  background: var(--soft);
}

.landing-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(16, 25, 35, 0.08);
  box-shadow: 0 10px 24px rgba(6, 24, 39, 0.06);
}

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

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

.landing-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 900;
  white-space: nowrap;
}

.landing-phone svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.landing-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.landing-hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6, 24, 39, 0.97) 0%, rgba(6, 24, 39, 0.92) 48%, rgba(6, 24, 39, 0.52) 100%),
    linear-gradient(0deg, rgba(6, 24, 39, 0.24), rgba(6, 24, 39, 0.24));
  content: "";
}

.landing-hero .hero-image {
  opacity: 0.92;
}

.landing-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.62fr);
  gap: 46px;
  align-items: center;
  min-height: 720px;
  padding: 64px 0;
}

.landing-proof {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.landing-proof strong {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.landing-proof strong > span {
  color: var(--yellow);
}

.landing-hero h1 {
  max-width: 720px;
  margin: 24px 0 0;
  font-size: clamp(2.7rem, 5.6vw, 5.1rem);
  line-height: 1;
}

.landing-hero p {
  max-width: 640px;
  margin: 22px 0 0;
  color: #e8f0f7;
  font-size: 1.12rem;
}

.landing-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.landing-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 900;
}

.landing-badge::before {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 50%;
  content: "✓";
  font-size: 0.72rem;
}

.landing-form-card {
  padding: 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.landing-form-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: 1.65rem;
  line-height: 1.12;
}

.landing-form-card p {
  margin: 8px 0 14px;
  color: var(--muted);
  font-size: 0.96rem;
}

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

.landing-form .field {
  gap: 5px;
}

.landing-form input,
.landing-form select,
.landing-form textarea {
  min-height: 44px;
}

.landing-form textarea {
  min-height: 92px;
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.landing-trust-band {
  background: #fff;
  border-bottom: 1px solid rgba(16, 25, 35, 0.08);
}

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

.landing-trust-item {
  padding: 26px 22px;
  border-right: 1px solid var(--line);
}

.landing-trust-item:last-child {
  border-right: 0;
}

.landing-trust-item strong {
  display: block;
  color: var(--navy);
  font-size: 1.05rem;
}

.landing-trust-item span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

.landing-split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: start;
}

.landing-service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.landing-service-list .card {
  padding: 22px;
}

.landing-final {
  color: #fff;
  background: var(--navy);
}

.landing-final-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.landing-final h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.landing-final p {
  margin: 0;
  color: #d7e3ee;
}

.thank-you-page {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(6, 24, 39, 0.95), rgba(6, 24, 39, 0.82)),
    url("../images/hvac-hero.png") center right / cover no-repeat;
}

.thank-you-hero {
  display: grid;
  align-items: center;
  min-height: calc(100vh - 82px);
  padding: 72px 0;
}

.thank-you-panel {
  max-width: 760px;
  margin: 0 auto;
  padding: 42px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.thank-you-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  margin-bottom: 18px;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 900;
}

.thank-you-panel h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1;
}

.thank-you-panel p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 48px;
  align-items: center;
}

.image-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 390px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  object-position: right center;
}

.experience-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: 136px;
  padding: 18px;
  color: var(--navy);
  background: var(--yellow);
  border-radius: var(--radius);
  box-shadow: 0 12px 22px rgba(6, 24, 39, 0.2);
}

.experience-badge strong {
  display: block;
  font-size: 2.35rem;
  line-height: 1;
}

.experience-badge span {
  display: block;
  margin-top: 6px;
  font-size: 0.82rem;
  font-weight: 900;
}

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

.check-list li,
.plain-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
}

.check-list li::before {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 50%;
  content: "✓";
  font-size: 0.75rem;
  font-weight: 900;
}

.plain-list li::before {
  width: 10px;
  height: 10px;
  margin-top: 8px;
  background: var(--yellow);
  border-radius: 50%;
  content: "";
}

.stats-band {
  color: #fff;
  background: var(--navy);
}

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

.stat {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
  padding: 30px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.stat:last-child {
  border-right: 0;
}

.stat svg {
  width: 42px;
  height: 42px;
  color: var(--yellow);
}

.stat strong {
  display: block;
  font-size: 1.6rem;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 5px;
  color: #cfdae4;
  font-size: 0.92rem;
}

.offer-band {
  color: var(--navy);
  background: var(--yellow);
}

.offer-grid {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 48px 0;
}

.offer-grid h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

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

.offer-item {
  padding: 18px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(6, 24, 39, 0.12);
  border-radius: var(--radius);
  font-weight: 800;
}

.cta-strip {
  color: #fff;
  background: var(--navy);
}

.cta-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: center;
  padding: 54px 0;
}

.cta-grid h2 {
  margin: 0 0 12px;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.08;
}

.cta-grid p {
  margin: 0;
  color: #d7e3ee;
}

.quick-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
}

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

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

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

label {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cfd9e3;
  border-radius: var(--radius);
  outline: 0;
}

input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin: 3px 0 0;
  padding: 0;
  accent-color: var(--yellow);
}

label:has(input[type="checkbox"]) {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink);
}

textarea {
  min-height: 136px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 196, 0, 0.22);
}

.quick-form input {
  border-color: rgba(255, 255, 255, 0.24);
}

.form-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}

.form-status {
  display: none;
  color: var(--success);
  font-weight: 800;
}

.form-status.is-visible {
  display: block;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(310px, 0.7fr);
  gap: 28px;
  align-items: start;
}

.contact-card {
  padding: 34px;
}

.card .section-title,
.contact-card .section-title,
.price-card .section-title {
  font-size: clamp(1.7rem, 3vw, 2.55rem);
}

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

.contact-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
}

.contact-list .feature-icon {
  width: 44px;
  height: 44px;
}

.contact-list .feature-icon svg {
  width: 22px;
  height: 22px;
}

.service-detail {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
}

.price-card {
  color: #fff;
  background: var(--navy);
}

.price-card h3,
.price-card p,
.price-card label {
  color: #fff;
}

.price-card .section-eyebrow {
  color: var(--yellow);
}

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

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.price-list strong {
  color: var(--yellow);
  text-align: right;
}

.area-card {
  min-height: 170px;
}

.area-map {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 196, 0, 0.23) 0 26%, transparent 27%),
    linear-gradient(135deg, #082033 0%, #0f3545 54%, #1b6d72 100%);
  border-radius: var(--radius);
}

.area-map::before,
.area-map::after {
  position: absolute;
  inset: 46px;
  border: 2px solid rgba(255, 196, 0, 0.46);
  border-radius: 50%;
  content: "";
}

.area-map::after {
  inset: 98px;
  border-color: rgba(255, 255, 255, 0.25);
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  font-weight: 900;
  text-align: center;
}

.map-label {
  position: absolute;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 800;
  backdrop-filter: blur(6px);
}

.map-label.one {
  left: 14%;
  top: 22%;
}

.map-label.two {
  right: 12%;
  top: 28%;
}

.map-label.three {
  left: 18%;
  bottom: 18%;
}

.map-label.four {
  right: 16%;
  bottom: 18%;
}

.site-footer {
  color: #d8e4ee;
  background: #04111d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.7fr 0.8fr;
  gap: 34px;
  padding: 58px 0 42px;
}

.footer-logo {
  width: 330px;
  max-width: 100%;
  padding: 12px;
  background: #fff;
  border-radius: var(--radius);
}

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

.site-footer p,
.site-footer li {
  color: #c8d5df;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--yellow);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  color: #a9b8c4;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

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

@media (max-width: 1040px) {
  /* Hide the whole actions group so space-between does not leave an empty
     flex item (that was centering the mobile menu between logo and right edge). */
  .nav-actions {
    display: none;
  }

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

  .grid-3,
  .reviews-grid,
  .landing-trust-grid,
  .stats-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat:nth-child(2) {
    border-right: 0;
  }

  .stat:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .hero-features {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .hero-trust-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-reviews-link {
    white-space: normal;
  }

  .call-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -24px auto 34px;
  }
}

@media (max-width: 991px) {
  .home-hero .hero-content {
    grid-template-columns: 1fr;
    row-gap: 28px;
    justify-items: stretch;
  }

  .home-hero .hero-copy {
    max-width: none;
  }

  .hero-review-aside {
    justify-self: stretch;
    max-width: none;
  }

  .hero-review-slides {
    min-height: 23.5rem;
  }
}

/* Top bar: two centered rows that reflow together (tablet and down). */
@media (max-width: 1040px) {
  .topbar .container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 0;
  }

  .topbar-list {
    justify-content: center;
    width: 100%;
    gap: 10px 16px;
  }

  .topbar .emergency-note {
    align-self: center;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 860px) {
  .main-nav {
    min-height: 72px;
  }

  .brand {
    width: 310px;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-links {
    position: absolute;
    inset: 72px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 16px 18px;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 20px 30px rgba(6, 24, 39, 0.13);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    min-height: 50px;
    padding: 0;
    border-bottom: 1px solid var(--line);
  }

  .home-hero,
  .hero-content {
    min-height: auto;
  }

  .hero-content {
    padding: 70px 0 56px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(6, 24, 39, 0.97) 0%, rgba(6, 24, 39, 0.86) 68%, rgba(6, 24, 39, 0.58) 100%),
      linear-gradient(0deg, rgba(6, 24, 39, 0.26), rgba(6, 24, 39, 0.26));
  }

  .hero-angle {
    display: none;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 12vw, 4.4rem);
  }

  .page-hero,
  .page-hero .hero-content {
    min-height: 320px;
  }

  .section {
    padding: 58px 0;
  }

  .section-head,
  .split,
  .landing-hero-grid,
  .landing-split,
  .landing-final-grid,
  .offer-grid,
  .cta-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: start;
  }

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

  .grid-2,
  .grid-3,
  .grid-4,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .offer-items {
    grid-template-columns: 1fr;
  }

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

  .landing-hero-grid {
    min-height: auto;
    padding: 48px 0;
  }

  .landing-header-actions .landing-phone {
    display: none;
  }

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

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

  .topbar {
    font-size: 0.84rem;
  }

  .topbar-item {
    white-space: normal;
  }

  .brand {
    width: 270px;
  }

  .hero-actions,
  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-feature,
  .stat,
  .service-detail,
  .contact-list li {
    grid-template-columns: 1fr;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
  }

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

  .hero-review-slider {
    padding: 0 28px;
  }

  .hero-review-slides,
  .g-review-card {
    min-height: 22.5rem;
  }

  .g-review-card {
    padding: 26px 22px 22px;
  }

  .hero-review-arrow {
    width: 38px;
    height: 38px;
  }

  .hero-review-arrow--prev {
    left: 0;
  }

  .hero-review-arrow--next {
    right: 0;
  }

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

  .landing-header-inner {
    min-height: 72px;
  }

  .landing-header .brand {
    width: 235px;
  }

  .landing-proof {
    align-items: flex-start;
    flex-direction: column;
  }

  .landing-form-card {
    padding: 22px;
  }

  .thank-you-panel {
    padding: 26px;
  }

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

  .landing-trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .landing-trust-item:last-child {
    border-bottom: 0;
  }

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

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

  .stat {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .price-list li,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .price-list strong {
    text-align: left;
  }

  .area-map {
    min-height: 360px;
  }

  .map-label {
    font-size: 0.78rem;
  }

  .map-label.one {
    left: 9%;
    top: 22%;
  }

  .map-label.two {
    right: 9%;
    top: 24%;
  }

  .map-label.three {
    left: 8%;
    bottom: 19%;
  }

  .map-label.four {
    right: 7%;
    bottom: 8%;
  }
}
