:root {
  --ink: #122019;
  --ink-soft: #24362c;
  --muted: #5a665e;
  --green: #0f6b3c;
  --green-dark: #0a4d2d;
  --blue: #276f86;
  --lime: #bddb3f;
  --yellow: #f2c94c;
  --rust: #a34022;
  --surface: #ffffff;
  --surface-soft: #f4f7f1;
  --surface-cool: #eef5f6;
  --line: #d7e0d7;
  --shadow: 0 18px 55px rgba(18, 32, 25, 0.13);
  --shadow-soft: 0 12px 32px rgba(18, 32, 25, 0.08);
  --radius: 8px;
  --radius-sm: 6px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface-soft);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: var(--ink);
  color: var(--surface);
  border-radius: var(--radius-sm);
  transition: transform 0.2s ease;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(215, 224, 215, 0.9);
  backdrop-filter: blur(14px);
}

.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: var(--surface);
  background: var(--green);
  font-size: 14px;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-title {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.1;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.site-nav a {
  border-radius: var(--radius-sm);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  padding: 9px 11px;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: #e6efe4;
  color: var(--green-dark);
}

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

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
}

.mobile-toggle span,
.mobile-toggle span::before,
.mobile-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  content: "";
}

.mobile-toggle span {
  position: relative;
}

.mobile-toggle span::before,
.mobile-toggle span::after {
  position: absolute;
  left: 0;
}

.mobile-toggle span::before {
  top: -6px;
}

.mobile-toggle span::after {
  top: 6px;
}

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--green);
  color: var(--surface);
  box-shadow: 0 12px 25px rgba(15, 107, 60, 0.22);
}

.btn-primary:hover {
  background: var(--green-dark);
}

.btn-secondary {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 12px 25px rgba(242, 201, 76, 0.22);
}

.btn-secondary:hover {
  background: #e7bd39;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.86);
  border-color: var(--line);
  color: var(--ink);
}

.btn-outline:hover {
  border-color: var(--green);
  color: var(--green-dark);
}

.btn-small {
  min-height: 38px;
  padding: 8px 12px;
  font-size: 14px;
}

.hero {
  position: relative;
  min-height: 76svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--surface);
  background: var(--ink);
}

.hero-short {
  min-height: 420px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(18, 32, 25, 0.92), rgba(18, 32, 25, 0.62), rgba(18, 32, 25, 0.2));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  max-width: 760px;
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--lime);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-kicker::before,
.eyebrow::before {
  width: 34px;
  height: 2px;
  background: currentColor;
  content: "";
}

.hero h1 {
  margin-bottom: 18px;
  font-size: 58px;
  line-height: 1.04;
  font-weight: 900;
}

.hero p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
  max-width: 720px;
}

.fact {
  min-height: 104px;
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.fact strong {
  color: var(--surface);
  font-size: 24px;
  line-height: 1.1;
}

.fact span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.trust-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

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

.trust-item {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 20px;
  border-left: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 1px solid var(--line);
}

.trust-item strong {
  font-size: 19px;
}

.trust-item span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 78px 0;
}

.section-tight {
  padding: 54px 0;
}

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

.section-cool {
  background: var(--surface-cool);
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 34px;
}

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

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

.section-heading.center .eyebrow::after {
  width: 34px;
  height: 2px;
  background: currentColor;
  content: "";
}

.section-heading h2,
.subpage-title h1 {
  margin: 0;
  font-size: 42px;
  line-height: 1.12;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.section-heading p,
.subpage-title p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  overflow-wrap: anywhere;
}

.hero .subpage-title p {
  color: rgba(255, 255, 255, 0.88);
}

.commercial-hero-page {
  overflow: hidden;
  padding: 76px 0 66px;
  background: #fbfcf8;
  color: var(--ink);
}

.commercial-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.commercial-hero-copy h1 {
  max-width: 720px;
  margin: 0 0 20px;
  font-size: 56px;
  line-height: 1.08;
  font-weight: 900;
}

.commercial-hero-copy p {
  max-width: 650px;
  color: var(--ink-soft);
  font-size: 21px;
  font-weight: 700;
}

.commercial-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.commercial-badge {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 14px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  color: var(--ink);
  font-weight: 900;
}

.commercial-actions {
  display: grid;
  gap: 14px;
  max-width: 620px;
}

.business-quote-link {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 2px solid #12be62;
  border-radius: var(--radius);
  padding: 18px 22px;
  background: #08100b;
  color: var(--surface);
  box-shadow: 0 14px 30px rgba(18, 190, 98, 0.24);
  font-size: 22px;
  font-weight: 900;
}

.business-quote-link span:last-child {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
}

.business-call-strip {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: var(--radius);
  padding: 14px 18px;
  background: #2d3f50;
  color: var(--surface);
  font-size: 19px;
  font-weight: 900;
}

.commercial-visual {
  position: relative;
  min-height: 560px;
}

.commercial-photo {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(440px, 100%);
  overflow: hidden;
  border: 10px solid #19c768;
  border-radius: 48% 48% 8px 8px;
  background: var(--green);
  box-shadow: var(--shadow);
}

.commercial-photo img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
}

.float-card {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(215, 224, 215, 0.9);
  border-radius: var(--radius);
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  color: var(--ink);
  font-weight: 900;
}

.float-card.one {
  top: 76px;
  left: 12px;
}

.float-card.two {
  top: 188px;
  left: 130px;
}

.float-card.three {
  top: 302px;
  left: 34px;
}

.float-card.four {
  bottom: 42px;
  left: 0;
}

.sector-card {
  min-height: 100%;
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.sector-card strong {
  color: var(--green-dark);
  font-size: 13px;
}

.sector-card h3 {
  margin-bottom: 0;
  font-size: 22px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.sector-card p {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.commercial-plan {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr auto;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.commercial-plan h3 {
  margin-bottom: 4px;
  font-size: 22px;
}

.commercial-plan p {
  margin: 0;
  color: var(--muted);
}

.commercial-plan .price {
  justify-self: end;
}

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

.grid > *,
.split > * {
  min-width: 0;
}

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

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

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

.media-panel {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow-soft);
}

.media-panel img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.copy-block h2 {
  margin-bottom: 16px;
  font-size: 38px;
  line-height: 1.14;
}

.copy-block p {
  color: var(--muted);
  font-size: 18px;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
}

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

.plain-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.card,
.service-card,
.price-card,
.equipment-card,
.value-card,
.process-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.card {
  padding: 24px;
}

.service-card,
.price-card,
.equipment-card,
.value-card,
.process-card {
  min-height: 100%;
  display: grid;
}

.service-card {
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
}

.service-card-top {
  min-height: 148px;
  display: grid;
  align-content: end;
  padding: 18px;
  color: var(--surface);
  background: var(--ink);
  background-position: center;
  background-size: cover;
  position: relative;
}

.service-card-top::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 32, 25, 0.2), rgba(18, 32, 25, 0.88));
  content: "";
}

.service-card-top > * {
  position: relative;
}

.service-card-top .tag {
  justify-self: start;
  margin-bottom: 58px;
  color: var(--ink);
  background: var(--yellow);
}

.service-card-body {
  padding: 20px;
}

.service-card h3,
.equipment-card h3,
.price-card h3,
.value-card h3,
.process-card h3 {
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.service-card p,
.equipment-card p,
.price-card p,
.value-card p,
.process-card p {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.service-card-footer,
.price-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px 20px;
}

.price {
  display: grid;
  gap: 0;
}

.price strong {
  color: var(--green-dark);
  font-size: 24px;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 12px;
}

.tag,
.status-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--green-dark);
  background: #e4f2de;
  font-size: 12px;
  font-weight: 900;
}

.status-pill.blue {
  color: #184d60;
  background: #dff0f4;
}

.status-pill.yellow {
  color: #573f00;
  background: #fff0bd;
}

.equipment-card,
.price-card,
.value-card,
.process-card {
  padding: 22px;
}

.equipment-meta,
.price-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 18px;
}

.equipment-meta span,
.price-meta span {
  border-radius: 999px;
  padding: 6px 9px;
  background: var(--surface-soft);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
}

.equipment-card .btn,
.price-card .btn {
  align-self: end;
  margin-top: 12px;
}

.process-card {
  position: relative;
  padding-top: 58px;
}

.process-number {
  position: absolute;
  top: 18px;
  left: 22px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--surface);
  font-weight: 900;
}

.feature-band {
  padding: 40px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--surface);
  box-shadow: var(--shadow);
}

.feature-band h2 {
  margin-bottom: 10px;
  font-size: 34px;
  line-height: 1.15;
}

.feature-band p {
  color: rgba(255, 255, 255, 0.82);
}

.feature-band .grid {
  margin-top: 22px;
}

.feature-metric {
  min-height: 110px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.feature-metric strong {
  display: block;
  color: var(--lime);
  font-size: 26px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

th,
td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

thead th {
  background: #e9f2e8;
  color: var(--ink);
  font-size: 14px;
}

tbody tr:last-child td {
  border-bottom: none;
}

.notice {
  border-left: 4px solid var(--yellow);
  border-radius: var(--radius-sm);
  padding: 18px;
  background: #fff8df;
  color: #453507;
}

.quote-panel {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.quote-summary {
  display: grid;
  gap: 10px;
}

.quote-line {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-soft);
}

.quote-line button {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.quote-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-weight: 900;
}

.quote-total strong {
  color: var(--green-dark);
  font-size: 26px;
}

.quote-empty {
  color: var(--muted);
  margin: 0;
}

.quote-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 100;
  width: min(100%, 430px);
  transform: translateX(105%);
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--surface);
  box-shadow: -20px 0 55px rgba(18, 32, 25, 0.18);
  transition: transform 0.24s ease;
}

.quote-drawer.is-open {
  transform: translateX(0);
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  background: rgba(18, 32, 25, 0.48);
}

.drawer-backdrop.is-open {
  display: block;
}

.drawer-header,
.drawer-footer {
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.drawer-footer {
  border-top: 1px solid var(--line);
  border-bottom: none;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.drawer-header h2 {
  margin: 0;
  font-size: 24px;
}

.drawer-close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-soft);
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
}

.drawer-body {
  overflow-y: auto;
  padding: 20px;
}

.form {
  display: grid;
  gap: 14px;
}

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

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

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

label {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(15, 107, 60, 0.12);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--green-dark);
  font-weight: 800;
}

.contact-methods {
  display: grid;
  gap: 14px;
}

.contact-method {
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.contact-method strong {
  font-size: 18px;
}

.contact-method span,
.contact-method a {
  color: var(--muted);
}

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

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.cta {
  padding: 54px 0;
  background: var(--green-dark);
  color: var(--surface);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta h2 {
  margin-bottom: 6px;
  font-size: 34px;
  line-height: 1.15;
}

.cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  background: #0d1812;
  color: var(--surface);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 30px;
  padding: 54px 0;
}

.footer-brand p,
.footer-col p,
.footer-col a,
.footer-meta {
  color: rgba(255, 255, 255, 0.72);
}

.footer-brand .brand {
  margin-bottom: 18px;
}

.footer-col h3 {
  margin-bottom: 12px;
  font-size: 17px;
}

.footer-col nav {
  display: grid;
  gap: 8px;
}

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

.subpage-title {
  max-width: 760px;
}

.coverage-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.coverage-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--surface);
  color: var(--ink-soft);
  font-weight: 800;
}

.legal-content {
  max-width: 860px;
}

.legal-content h2 {
  margin-top: 34px;
  font-size: 28px;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

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

  .site-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
  }

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

  .site-nav a {
    padding: 14px;
  }

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

  .nav-actions .btn-outline {
    display: none;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 18px;
  }

  .hero-facts,
  .trust-grid,
  .grid-3,
  .grid-4,
  .footer-grid,
  .split,
  .split.reverse,
  .commercial-hero-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .commercial-hero-copy h1 {
    font-size: 42px;
  }

  .commercial-hero-copy p {
    font-size: 18px;
  }

  .commercial-visual {
    min-height: 470px;
  }

  .commercial-photo img {
    height: 420px;
  }

  .float-card.two {
    left: 84px;
  }

  .section-heading h2,
  .subpage-title h1 {
    font-size: 34px;
  }

  .copy-block h2 {
    font-size: 32px;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15px;
  }

  .brand {
    min-width: 0;
  }

  .brand-title {
    font-size: 15px;
  }

  .brand-subtitle {
    display: none;
  }

  .nav-shell {
    min-height: 68px;
  }

  .site-nav {
    top: 68px;
  }

  .nav-actions .btn-primary {
    display: none;
  }

  .hero {
    min-height: auto;
  }

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

  .hero-media::after {
    background: linear-gradient(180deg, rgba(18, 32, 25, 0.82), rgba(18, 32, 25, 0.78));
  }

  .hero-content {
    padding: 62px 0;
  }

  .hero h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 30px;
  }

  .hero:not(.hero-short) h1 {
    max-width: 330px;
  }

  .hero p {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 16px;
  }

  .hero:not(.hero-short) p {
    max-width: 340px;
  }

  .hero-actions,
  .cta-inner .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .trust-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .footer-grid,
  .split,
  .split.reverse,
  .form-grid,
  .commercial-hero-grid,
  .commercial-plan {
    grid-template-columns: 1fr;
  }

  .commercial-hero-page {
    padding: 54px 0 46px;
  }

  .commercial-hero-copy h1 {
    max-width: 350px;
    overflow-wrap: anywhere;
    font-size: 34px;
  }

  .commercial-hero-copy p {
    max-width: 350px;
    overflow-wrap: anywhere;
    font-size: 17px;
  }

  .commercial-badges {
    gap: 8px;
    margin: 22px 0;
  }

  .commercial-badge {
    min-height: 40px;
    padding: 8px 11px;
    font-size: 13px;
  }

  .business-quote-link,
  .business-call-strip {
    min-height: 58px;
    font-size: 17px;
  }

  .business-call-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    width: 100%;
    min-width: 0;
  }

  .business-call-strip span,
  .business-quote-link span {
    display: block;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .business-call-strip span:last-child {
    font-size: 15px;
    line-height: 1.35;
  }

  .commercial-visual {
    min-height: 440px;
  }

  .commercial-photo {
    width: min(290px, 80%);
    border-width: 7px;
  }

  .commercial-photo img {
    height: 340px;
  }

  .float-card {
    padding: 10px 12px;
    font-size: 13px;
  }

  .float-card.one {
    top: 26px;
    left: 0;
  }

  .float-card.two {
    top: 100px;
    left: 44px;
  }

  .float-card.three {
    top: 174px;
    left: 0;
  }

  .float-card.four {
    bottom: 24px;
    left: 0;
  }

  .commercial-plan .price {
    justify-self: start;
  }

  .hero-facts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
  }

  .fact {
    min-height: 84px;
    padding: 14px;
  }

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

  .trust-item,
  .trust-item:last-child {
    border-left: none;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 58px 0;
  }

  .section-tight {
    padding: 42px 0;
  }

  .section-heading h2,
  .subpage-title h1 {
    font-size: 30px;
  }

  .section-heading p,
  .subpage-title p,
  .copy-block p {
    font-size: 16px;
  }

  .copy-block h2 {
    font-size: 28px;
  }

  .media-panel img {
    height: 280px;
  }

  .feature-band {
    padding: 24px;
  }

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

  .quote-line {
    grid-template-columns: 1fr auto;
  }

  .quote-line .quote-price {
    grid-column: 1 / -1;
  }
}
