:root {
  --ink: #111827;
  --muted: #5b6575;
  --line: #dce2ea;
  --panel: #f6f8fb;
  --paper: #ffffff;
  --green: #1f7a4d;
  --green-dark: #135c39;
  --blue: #1d4ed8;
  --orange: #f59e0b;
  --red: #b42318;
  --shadow: 0 18px 55px rgba(17, 24, 39, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

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

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

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  display: block;
  width: 230px;
  max-width: 36vw;
  height: auto;
  max-height: 52px;
  object-fit: contain;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--green);
  border-radius: 7px;
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.94rem;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 7px;
  color: var(--ink);
}

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

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

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

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

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

.button-primary {
  color: #fff;
  background: var(--green);
}

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

.button-secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.button-ghost {
  color: var(--green-dark);
  background: #eef8f2;
  border-color: #cfe9da;
}

.button-large {
  min-height: 52px;
  padding: 0 22px;
  font-size: 1rem;
}

.hero {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(8, 18, 28, 0.9) 0%, rgba(8, 18, 28, 0.78) 42%, rgba(8, 18, 28, 0.18) 100%),
    url("../img/hero-job-upload.svg");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 52px 0;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 52px;
  align-items: center;
}

.hero-platform {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 35%, rgba(31, 122, 77, 0.22), transparent 30%),
    linear-gradient(90deg, rgba(8, 18, 28, 0.97) 0%, rgba(8, 18, 28, 0.91) 54%, rgba(17, 24, 39, 0.86) 100%);
}

.city-market-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 86% 18%, rgba(93, 167, 214, 0.2), transparent 24%),
    linear-gradient(115deg, transparent 0 56%, rgba(230, 210, 176, 0.08) 56% 64%, transparent 64%),
    repeating-linear-gradient(105deg, transparent 0 54px, rgba(154, 190, 210, 0.08) 55px 57px);
  opacity: 0.78;
}

.city-market-hero::after {
  content: "";
  position: absolute;
  right: -70px;
  top: 76px;
  width: 360px;
  height: 560px;
  pointer-events: none;
  border-left: 2px solid rgba(180, 220, 238, 0.18);
  border-radius: 48% 0 0 45%;
  transform: rotate(8deg);
}

.city-market-hero .hero-inner {
  position: relative;
  z-index: 1;
}

.hero-results-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
}

.hero-results-grid h1 {
  font-size: clamp(3rem, 5.1vw, 4.75rem);
}

.city-market-hero .hero-results-grid h1 {
  font-size: clamp(2.55rem, 3.75vw, 3.45rem);
}

.hero-word {
  display: inline-block;
  position: relative;
  color: #68d384;
  text-shadow: 0 0 28px rgba(82, 196, 113, 0.18);
}

.hero-word::after {
  content: "";
  position: absolute;
  left: -0.04em;
  right: -0.04em;
  bottom: -0.03em;
  height: 0.24em;
  border-bottom: 0.08em solid rgba(104, 211, 132, 0.78);
  border-radius: 0 0 60% 60%;
  pointer-events: none;
  transform: rotate(-1.5deg);
}

.hero-word-local {
  color: #68d384;
}

.eyebrow {
  margin: 0 0 14px;
  color: #b9f0d0;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.65rem, 6vw, 5.75rem);
  max-width: 900px;
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3.5rem);
}

h3 {
  font-size: 1.2rem;
}

.hero p {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero .hero-caveat {
  max-width: 610px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 760px;
  margin-top: 58px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
  font-weight: 800;
}

.hero .availability-note {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 5px;
  max-width: 610px;
  margin-top: 14px;
  padding: 10px 13px;
  border: 1px solid rgba(104, 211, 132, 0.26);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(104, 211, 132, 0.1);
  font-size: 0.92rem;
  line-height: 1.35;
}

.hero .availability-note strong {
  color: #fff;
}

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

.phone-panel {
  position: absolute;
  right: 34px;
  top: 34px;
  width: 280px;
  min-height: 480px;
  padding: 26px 20px;
  border: 10px solid #0b1220;
  border-radius: 34px;
  background: #f8fafc;
  box-shadow: var(--shadow);
}

.phone-top {
  width: 72px;
  height: 8px;
  margin: 0 auto 26px;
  border-radius: 999px;
  background: #0b1220;
}

.upload-preview {
  display: grid;
  gap: 8px;
  place-items: center;
  min-height: 150px;
  padding: 18px;
  border: 2px dashed #9fceaf;
  border-radius: var(--radius);
  color: var(--ink);
  background: #eef8f2;
  text-align: center;
}

.upload-preview small,
.match-card small {
  color: var(--muted);
}

.upload-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-size: 1.7rem;
  font-weight: 900;
}

.status-pill {
  width: max-content;
  margin: 20px 0;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--green-dark);
  background: #dff4e7;
  font-weight: 900;
  font-size: 0.82rem;
}

.mini-line {
  height: 14px;
  margin: 14px 0;
  border-radius: 999px;
  background: #d8e1ea;
}

.mini-line.short {
  width: 68%;
}

.match-card {
  position: absolute;
  width: 250px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.match-card strong {
  display: block;
  margin: 6px 0 2px;
  font-size: 1.35rem;
  line-height: 1.1;
}

.card-label {
  color: var(--green-dark);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.match-card-one {
  left: 0;
  top: 105px;
}

.match-card-two {
  left: 16px;
  bottom: 104px;
  border-color: #f8d58a;
}

.match-card-two .card-label {
  color: #a16207;
}

.match-card-three {
  right: 0;
  bottom: 24px;
}

.results-preview {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.results-example::before {
  content: "PREVIEW";
  position: absolute;
  z-index: 2;
  top: 46%;
  left: 50%;
  color: rgba(31, 111, 70, 0.11);
  font-size: clamp(4.5rem, 10vw, 8rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  pointer-events: none;
  text-transform: uppercase;
  transform: translate(-50%, -50%) rotate(-18deg);
  white-space: nowrap;
}

.results-example > * {
  position: relative;
  z-index: 3;
}

.preview-pill {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  padding: 7px 10px;
  border: 1px solid #b7dfc6;
  border-radius: 999px;
  color: #1f6f46;
  background: rgba(244, 251, 247, 0.96);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.flow-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 14px;
}

.flow-strip span {
  position: relative;
  min-height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid #cfe9da;
  border-radius: 999px;
  color: var(--green-dark);
  background: #f4fbf7;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.results-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.results-title {
  display: block;
  margin-top: 5px;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.results-head p,
.media-summary p,
.results-note {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.results-head .example-disclaimer {
  max-width: 430px;
  padding: 9px 11px;
  border: 1px solid #cfe9da;
  border-radius: 7px;
  color: #1f6f46;
  background: #f4fbf7;
  font-weight: 800;
}

.hero .results-preview p {
  color: var(--muted);
}

.hero .results-preview .example-disclaimer {
  color: #1f6f46;
}

.hero .results-preview .result-summary p {
  color: rgba(255, 255, 255, 0.78);
}

.scope-pill {
  flex: 0 0 auto;
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--green-dark);
  background: #dff4e7;
  font-size: 0.82rem;
  font-weight: 900;
}

.media-summary {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  align-items: center;
  margin: 12px 0;
  padding: 12px;
  border: 1px solid #cfe9da;
  border-radius: var(--radius);
  background: #f4fbf7;
}

.media-thumb {
  min-height: 58px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: #fff;
  background: var(--green);
}

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

.detected-grid span {
  min-height: 34px;
  display: flex;
  align-items: center;
  padding: 8px 9px;
  border: 1px solid #dde7f0;
  border-radius: 7px;
  color: #334155;
  background: #f8fafc;
  font-size: 0.78rem;
  font-weight: 800;
}

.media-thumb span,
.media-thumb small {
  display: block;
  line-height: 1;
}

.media-thumb span {
  font-size: 1.35rem;
  font-weight: 900;
}

.media-thumb small {
  font-size: 0.72rem;
}

.provider-list {
  display: grid;
  gap: 10px;
}

.provider-card {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.provider-card.best {
  border-color: #8ed2a7;
  background: #effaf3;
  box-shadow: 0 10px 25px rgba(31, 122, 77, 0.12);
}

.provider-rank {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
  font-weight: 900;
}

.provider-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.provider-meta {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.84rem;
}

.provider-price {
  color: var(--green-dark);
  font-size: 1.45rem;
  font-weight: 900;
}

.badge {
  padding: 4px 7px;
  border-radius: 999px;
  color: #0f5132;
  background: #dff4e7;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.badge-best {
  color: #fff;
  background: var(--green);
}

.badge-later {
  color: #7c2d12;
  background: #ffedd5;
}

.muted-provider {
  opacity: 0.78;
}

.results-note {
  padding-top: 12px;
}

.proof-item {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.proof-item strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
}

.proof-item span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.section {
  padding: 84px 0;
}

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

.section-alt {
  background: var(--panel);
}

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

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head p,
.page-lede,
.body-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-head .guide-updated {
  width: max-content;
  max-width: 100%;
  margin-top: 14px;
  padding: 8px 11px;
  border: 1px solid #cfe9da;
  border-radius: 999px;
  color: var(--green-dark);
  background: #f4fbf7;
  font-size: 0.88rem;
  font-weight: 900;
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 18px;
}

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

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

.card {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.05);
}

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

.national-section {
  background:
    linear-gradient(90deg, rgba(246, 248, 251, 0.96), rgba(246, 248, 251, 0.9)),
    radial-gradient(circle at 80% 50%, rgba(29, 78, 216, 0.12), transparent 28%);
}

.national-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.64fr);
  gap: 34px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88)),
    repeating-linear-gradient(45deg, rgba(29, 78, 216, 0.05) 0 1px, transparent 1px 18px);
  box-shadow: var(--shadow);
}

.national-panel .eyebrow {
  color: var(--green-dark);
}

.coverage-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.national-zip {
  background: #fff;
  border: 1px solid var(--line);
}

.walkthrough-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 16%, rgba(31, 122, 77, 0.09), transparent 28%),
    #fff;
}

.walkthrough-section .section-head {
  max-width: 890px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.walkthrough-section .eyebrow {
  color: var(--green-dark);
}

.walkthrough-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(220px, 1fr));
  gap: 16px;
  overflow-x: auto;
  padding: 6px 2px 18px;
  scroll-snap-type: x mandatory;
}

.walkthrough-card {
  min-width: 220px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
  scroll-snap-align: start;
}

.walkthrough-card-featured {
  border-color: #9fd8b4;
  background: #f7fcf9;
}

.walkthrough-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: block;
  object-fit: cover;
  object-position: center;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  background: #f8fafc;
}

.walkthrough-card span {
  display: inline-flex;
  margin-top: 16px;
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--green-dark);
  background: #dff4e7;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.walkthrough-card h3 {
  margin-top: 10px;
}

.walkthrough-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.state-directory-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(29, 78, 216, 0.07), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
}

.state-directory-section .eyebrow {
  color: var(--green-dark);
}

.state-directory {
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1.22fr);
  gap: 22px;
  align-items: stretch;
}

.map-card,
.state-grid-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 42px rgba(17, 24, 39, 0.08);
}

.map-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  background:
    radial-gradient(circle at 82% 18%, rgba(31, 122, 77, 0.18), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f6f8fb 56%, #eef8f2 100%);
}

.map-heading h3,
.state-grid-head h3 {
  margin-top: 6px;
  font-size: 1.45rem;
}

.map-heading p,
.state-grid-head p {
  margin: 8px 0 0;
  color: var(--muted);
}

.us-map {
  min-height: 240px;
  display: grid;
  place-items: center;
  border: 1px solid #d7e6ef;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(29, 78, 216, 0.06), rgba(31, 122, 77, 0.08)),
    repeating-linear-gradient(45deg, rgba(17, 24, 39, 0.035) 0 1px, transparent 1px 18px);
}

.us-map svg {
  width: min(92%, 470px);
  height: auto;
}

.us-map path {
  fill: rgba(31, 122, 77, 0.18);
  stroke: rgba(31, 122, 77, 0.68);
  stroke-width: 5;
  stroke-linejoin: round;
}

.map-zip {
  border: 1px solid var(--line);
  background: #fff;
}

.state-grid-card {
  display: grid;
  gap: 18px;
}

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

.state-grid span {
  min-height: 36px;
  display: flex;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--muted);
  background: #fff;
  font-size: 0.9rem;
  font-weight: 800;
}

.state-grid .priority-state {
  color: var(--green-dark);
  border-color: #b7dfc6;
  background: #eef8f2;
}

.service-map-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
  gap: 22px;
  align-items: start;
}

.service-map-card {
  min-width: 0;
  justify-content: flex-start;
}

.usa-abbrev-map {
  display: grid;
  grid-template-columns: repeat(14, minmax(24px, 1fr));
  grid-template-rows: repeat(7, minmax(28px, 1fr));
  gap: 5px;
  min-height: 285px;
  padding: 16px;
  border: 1px solid #d7e6ef;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(29, 78, 216, 0.06), rgba(31, 122, 77, 0.08)),
    repeating-linear-gradient(45deg, rgba(17, 24, 39, 0.035) 0 1px, transparent 1px 18px);
}

.usa-abbrev-map span,
.usa-abbrev-map a {
  display: grid;
  place-items: center;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  background: #fff;
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1;
}

.usa-abbrev-map a {
  color: var(--green-dark);
  border-color: #a8ddb9;
  background: #eef8f2;
}

.usa-abbrev-map .map-inset {
  border-style: dashed;
}

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

.state-link-grid span,
.state-link-grid a,
.featured-state-card,
.link-list-card span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--muted);
  background: #fff;
  font-weight: 850;
}

.state-link-grid a,
.featured-state-card.active {
  color: var(--green-dark);
  border-color: #cfe9da;
  background: #f4fbf7;
}

.state-link-grid a:hover,
.state-link-grid a:focus {
  border-color: #8fd3aa;
  background: #e8f7ee;
  transform: translateY(-1px);
}

.state-link-grid small,
.featured-state-card span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

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

.featured-state-card {
  min-height: 86px;
  align-items: flex-start;
  flex-direction: column;
}

.featured-state-card strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.service-hero {
  background:
    radial-gradient(circle at 86% 20%, rgba(31, 122, 77, 0.2), transparent 30%),
    radial-gradient(circle at 14% 12%, rgba(29, 78, 216, 0.1), transparent 34%),
    linear-gradient(135deg, #f6f8fb 0%, #ffffff 54%, #eef8f2 100%);
}

.service-hero-grid,
.cta-zip-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.48fr);
  gap: 32px;
  align-items: center;
}

.hero-trust-row,
.guide-metric-row,
.map-key {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-trust-row span,
.guide-metric-row span,
.map-key span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid #cfe9da;
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.74);
  font-size: 0.84rem;
  font-weight: 900;
}

.guide-metric-row strong {
  color: var(--ink);
}

.zip-inline-form {
  display: grid;
  gap: 10px;
  padding: 20px;
  border: 1px solid #b7dfc6;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.1);
}

.zip-inline-form label {
  color: var(--ink);
}

.zip-inline-form div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.zip-inline-form input {
  min-height: 50px;
}

.zip-inline-form a {
  color: var(--green-dark);
  font-weight: 850;
}

.cta-zip-form {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.cta-zip-form label {
  color: #fff;
}

.svg-map-shell {
  position: relative;
  padding: 16px;
  border: 1px solid #cfe9da;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(29, 78, 216, 0.06), rgba(31, 122, 77, 0.12)),
    repeating-linear-gradient(45deg, rgba(17, 24, 39, 0.03) 0 1px, transparent 1px 18px);
}

.usa-svg-map {
  width: 100%;
  height: auto;
  display: block;
}

.svg-state rect {
  fill: #eef8f2;
  stroke: #b7dfc6;
  stroke-width: 1.5;
  transition: fill 0.18s ease, stroke 0.18s ease, filter 0.18s ease, transform 0.18s ease;
}

.svg-state text {
  pointer-events: none;
  text-anchor: middle;
  fill: var(--green-dark);
  font-size: 16px;
  font-weight: 900;
  dominant-baseline: middle;
}

.svg-state-link {
  cursor: pointer;
  transform-box: fill-box;
  transform-origin: center;
}

.svg-state-link rect {
  fill: #dff4e7;
  stroke: #1f7a4d;
}

.svg-state-link text {
  fill: var(--green-dark);
}

.svg-state-link:hover,
.svg-state-link:focus {
  filter: brightness(0.98);
  transform: scale(1.045);
}

.map-tooltip {
  position: absolute;
  left: 28px;
  bottom: 24px;
  z-index: 2;
  padding: 8px 10px;
  border: 1px solid #b7dfc6;
  border-radius: 7px;
  color: var(--green-dark);
  background: #fff;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.12);
  font-size: 0.85rem;
  font-weight: 900;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  pointer-events: none;
}

.svg-map-shell:has(.svg-state-link:hover) .map-tooltip,
.svg-map-shell:has(.svg-state-link:focus) .map-tooltip {
  opacity: 1;
  transform: translateY(0);
}

.state-search {
  display: grid;
  gap: 8px;
}

.state-search label {
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.state-directory-item.is-inactive {
  opacity: 1;
}

.state-directory-item.is-active {
  box-shadow: 0 10px 28px rgba(31, 122, 77, 0.1);
}

.state-directory-item[hidden],
.state-empty-message[hidden] {
  display: none;
}

.state-empty-message {
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--muted);
  background: #fff;
  font-weight: 800;
}

.featured-state-section {
  background: #fff;
}

.featured-guide-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: 28px;
  align-items: stretch;
  padding: 28px;
  border: 1px solid #dceee3;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 86% 18%, rgba(31, 122, 77, 0.14), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f6f8fb 62%, #eef8f2 100%);
  box-shadow: 0 18px 55px rgba(17, 24, 39, 0.09);
}

.featured-guide-preview {
  display: block;
  max-width: none;
  padding: 26px;
  border: 1px solid #b7dfc6;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 90% 18%, rgba(31, 122, 77, 0.16), transparent 30%),
    #fff;
  box-shadow: 0 16px 42px rgba(31, 122, 77, 0.12);
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.featured-guide-preview:hover,
.featured-guide-preview:focus {
  border-color: #8fd3aa;
  transform: translateY(-2px);
}

.featured-guide-preview strong,
.featured-guide-preview span,
.featured-guide-preview p {
  display: block;
}

.guide-status {
  width: max-content;
  margin-bottom: 16px;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--green-dark);
  background: #eef8f2;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.featured-guide-preview strong {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.1;
}

.featured-guide-preview p {
  max-width: 620px;
  color: var(--muted);
}

.guide-link {
  color: var(--green-dark);
  font-weight: 900;
}

.map-key {
  margin-top: 0;
}

.map-key span {
  background: #fff;
}

.map-key i {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  border: 1px solid #b7dfc6;
  background: #eef8f2;
}

.map-key .key-lock {
  border-color: var(--blue);
  background: rgba(29, 78, 216, 0.12);
}

.visual-feature-grid,
.stat-callout-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.visual-feature-card,
.stat-callout {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.05);
}

.line-icon {
  width: 48px;
  height: 48px;
  display: block;
  margin-bottom: 18px;
  border: 2px solid #b7dfc6;
  border-radius: 8px;
  position: relative;
  background: #eef8f2;
}

.line-icon::before,
.line-icon::after {
  position: absolute;
  content: "";
}

.icon-truck::before {
  left: 9px;
  top: 15px;
  width: 25px;
  height: 13px;
  border: 2px solid var(--green-dark);
  border-radius: 3px;
}

.icon-truck::after {
  left: 12px;
  bottom: 8px;
  width: 24px;
  height: 6px;
  border-left: 6px solid var(--green-dark);
  border-right: 6px solid var(--green-dark);
}

.icon-scale::before {
  left: 13px;
  top: 9px;
  width: 18px;
  height: 18px;
  border: 2px solid var(--green-dark);
  border-radius: 50%;
}

.icon-scale::after {
  left: 12px;
  bottom: 8px;
  width: 22px;
  height: 8px;
  border: 2px solid var(--green-dark);
  border-top: 0;
  border-radius: 0 0 8px 8px;
}

.icon-clock::before {
  left: 10px;
  top: 10px;
  width: 24px;
  height: 24px;
  border: 2px solid var(--green-dark);
  border-radius: 50%;
}

.icon-clock::after {
  left: 23px;
  top: 16px;
  width: 9px;
  height: 12px;
  border-left: 2px solid var(--green-dark);
  border-bottom: 2px solid var(--green-dark);
}

.visual-feature-card p,
.stat-callout p {
  color: var(--muted);
}

.stat-callout strong {
  display: block;
  color: var(--green-dark);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 0.9;
}

.stat-callout span {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-weight: 900;
}

.comparison-section {
  background: #fff;
}

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

.compare-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.05);
}

.old-way {
  background: #fff7ed;
  border-color: #fed7aa;
}

.price-lock-way {
  background: #eef8f2;
  border-color: #b7dfc6;
}

.compare-kicker {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

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

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
}

.check-list.negative li::before {
  content: "!";
  background: var(--orange);
}

.check-list.positive li::before {
  content: "+";
  background: var(--green);
}

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

.option-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.05);
}

.option-card span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--green-dark);
  background: #dff4e7;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.option-card p {
  color: var(--muted);
}

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

.job-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.job-photo-card {
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(17, 24, 39, 0.08);
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.02) 0%, rgba(17, 24, 39, 0.2) 44%, rgba(17, 24, 39, 0.86) 100%),
    linear-gradient(135deg, #dbeafe, #dcfce7);
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
}

.job-photo-card div {
  width: 100%;
  padding: 20px;
  color: #fff;
}

.job-photo-card span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 9px;
  border-radius: 999px;
  color: #052e16;
  background: #bbf7d0;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.job-photo-card strong,
.job-photo-card small {
  display: block;
}

.job-photo-card strong {
  font-size: 1.18rem;
  line-height: 1.12;
}

.job-photo-card small {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
}

.job-photo-card.furniture {
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.02) 0%, rgba(17, 24, 39, 0.25) 42%, rgba(17, 24, 39, 0.88) 100%),
    radial-gradient(circle at 28% 26%, rgba(255, 255, 255, 0.78) 0 10%, transparent 11%),
    linear-gradient(135deg, #94a3b8, #1f2937);
}

.job-photo-card.garage {
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.02) 0%, rgba(17, 24, 39, 0.25) 42%, rgba(17, 24, 39, 0.88) 100%),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.16) 0 14px, transparent 14px 28px),
    linear-gradient(135deg, #475569, #1f7a4d);
}

.job-photo-card.debris {
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.02) 0%, rgba(17, 24, 39, 0.25) 42%, rgba(17, 24, 39, 0.88) 100%),
    radial-gradient(circle at 68% 26%, rgba(245, 158, 11, 0.48) 0 12%, transparent 13%),
    linear-gradient(135deg, #64748b, #92400e);
}

.job-photo-card.cleanout {
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.02) 0%, rgba(17, 24, 39, 0.25) 42%, rgba(17, 24, 39, 0.88) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.13) 0 9px, transparent 9px 26px),
    linear-gradient(135deg, #1d4ed8, #111827);
}

.service-tile {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 1)),
    #fff;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.05);
}

.service-tile span {
  font-weight: 900;
  font-size: 1.08rem;
}

.service-tile small {
  color: var(--muted);
}

.zip-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 34px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.zip-check {
  padding: 22px;
  border-radius: var(--radius);
  background: var(--panel);
}

.zip-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 10px;
}

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

.factor {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.factor strong,
.factor span {
  display: block;
}

.factor span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.94rem;
}

.data-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(31, 122, 77, 0.1), transparent 24%),
    linear-gradient(135deg, #0d1420, #172338);
  color: #fff;
}

.data-section .eyebrow {
  color: #b9f0d0;
}

.data-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 36px;
  align-items: center;
}

.data-panel .page-lede {
  color: rgba(255, 255, 255, 0.76);
}

.pricing-table-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.table-head,
.pricing-row {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 14px;
  align-items: center;
}

.table-head {
  padding: 16px 18px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-row {
  padding: 17px 18px;
  border-bottom: 1px solid var(--line);
}

.pricing-row:last-child {
  border-bottom: 0;
}

.pricing-row strong {
  color: var(--green-dark);
}

.pricing-row span {
  color: var(--muted);
}

.pricing-links-section {
  background: #fff;
}

.pricing-links-section .eyebrow {
  color: var(--green-dark);
}

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

.link-list-card {
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.05);
}

.link-list-card h3 {
  margin-bottom: 4px;
}

.link-list-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid #dceee3;
  border-radius: 7px;
  color: var(--green-dark);
  background: #f4fbf7;
  font-weight: 800;
}

.link-list-card a::after {
  content: ">";
  color: var(--green);
  font-weight: 900;
}

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

.standard-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.standard-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-weight: 900;
}

.standard-card strong,
.standard-card p {
  display: block;
}

.standard-card p {
  color: var(--muted);
}

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

.process-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.process-card span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 7px;
  color: #fff;
  background: var(--ink);
  font-weight: 900;
}

.process-card p {
  color: var(--muted);
}

.stat {
  font-size: 2.35rem;
  font-weight: 900;
  line-height: 1;
}

.step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
}

.step-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: white;
  background: var(--ink);
  font-weight: 900;
}

.notice {
  padding: 18px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: var(--radius);
  color: #7c2d12;
}

.answer-box {
  padding: 28px;
  border: 1px solid #b7dfc6;
  border-radius: var(--radius);
  background: #eef8f2;
}

.answer-box h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.state-conversion-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(93, 167, 214, 0.2), transparent 30%),
    radial-gradient(circle at 12% 82%, rgba(217, 191, 136, 0.16), transparent 32%),
    linear-gradient(90deg, rgba(8, 18, 28, 0.98) 0%, rgba(10, 24, 36, 0.94) 55%, rgba(21, 40, 48, 0.88) 100%);
}

.state-conversion-hero .grid-2 {
  align-items: center;
}

.state-hero-panel {
  background:
    linear-gradient(145deg, #ffffff 0%, #f4fbf7 100%);
  box-shadow: 0 18px 46px rgba(17, 24, 39, 0.08);
}

.state-results-preview {
  border-color: rgba(214, 232, 239, 0.36);
}

.state-results-preview .flow-strip {
  padding-right: 96px;
}

.state-hero-zip-form {
  max-width: 590px;
  margin-top: 24px;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.state-hero-zip-form label {
  color: #fff;
}

.state-hero-zip-form input {
  border-color: rgba(255, 255, 255, 0.26);
}

.state-hero-zip-form a {
  color: #c8f4d1;
}

.compact-section-head {
  max-width: 860px;
}

.section-california-visual {
  background:
    linear-gradient(90deg, rgba(233, 245, 251, 0.95), rgba(255, 251, 242, 0.84)),
    #f8fafc;
}

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

.visual-feature-grid article {
  padding: 22px;
  border: 1px solid #d8e9ef;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 32px rgba(17, 24, 39, 0.06);
}

.visual-feature-grid strong,
.visual-feature-grid p {
  display: block;
}

.visual-feature-grid p {
  color: var(--muted);
}

.visual-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, #eef8f2, #e9f5fb);
}

.visual-icon::before,
.visual-icon::after {
  content: "";
  position: absolute;
}

.icon-phone::before {
  width: 20px;
  height: 30px;
  border: 3px solid var(--green-dark);
  border-radius: 6px;
}

.icon-phone::after {
  bottom: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green-dark);
}

.icon-calendar::before {
  width: 25px;
  height: 22px;
  border: 3px solid #24546b;
  border-top-width: 7px;
  border-radius: 5px;
}

.icon-compare::before {
  width: 27px;
  height: 18px;
  border-top: 3px solid var(--green-dark);
  border-bottom: 3px solid var(--green-dark);
}

.icon-compare::after {
  width: 9px;
  height: 9px;
  border-right: 3px solid var(--green-dark);
  border-bottom: 3px solid var(--green-dark);
  transform: rotate(-45deg);
}

.state-range-grid,
.metro-grid,
.check-grid,
.special-item-grid,
.load-guide-grid,
.company-profile-grid,
.core-factor-grid {
  display: grid;
  gap: 14px;
}

.state-range-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.range-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.05);
}

.range-card strong,
.range-card span {
  display: block;
}

.range-card span {
  margin: 8px 0;
  color: var(--green-dark);
  font-size: 1.35rem;
  font-weight: 900;
}

.range-card p {
  color: var(--muted);
}

.state-pricing-ladder .range-card {
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.state-pricing-ladder .range-card::after {
  content: "";
  position: absolute;
  inset: auto 16px 16px auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(31, 122, 77, 0.08);
}

.ladder-icon {
  position: absolute;
  top: 18px;
  left: 20px;
  display: block;
  width: 56px;
  height: 30px;
  border: 2px solid #16233a;
  border-radius: 6px;
  background: #eef8f2;
}

.ladder-icon::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  bottom: 5px;
  width: var(--fill, 18%);
  border-radius: 3px;
  background: var(--green);
}

.ladder-icon::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -2px;
  width: 7px;
  height: 14px;
  border-radius: 0 3px 3px 0;
  background: #16233a;
}

.ladder-single { --fill: 16%; }
.ladder-small { --fill: 24%; }
.ladder-quarter { --fill: 32%; }
.ladder-half { --fill: 55%; }
.ladder-full { --fill: 92%; }
.ladder-review {
  background: #fff7ed;
}

.ladder-review::before {
  width: 18px;
  background: #d6a84f;
}

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

.metro-grid span,
.metro-grid a,
.special-item-grid span,
.city-directory-grid .link-list-card span {
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  font-weight: 800;
}

.metro-grid a {
  color: var(--green-dark);
  border-color: #cfe9da;
  background: #f4fbf7;
}

.metro-grid a:hover,
.metro-grid a:focus {
  border-color: #8fd3aa;
  background: #e8f7ee;
}

.california-region-section {
  background:
    linear-gradient(135deg, #f7efe0 0%, #f8fafc 42%, #e9f5fb 100%);
}

.california-hub-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.52fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.california-map-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid #d8e9ef;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 18%, rgba(93, 167, 214, 0.24), transparent 28%),
    linear-gradient(150deg, #e9f5fb 0%, #fffaf2 58%, #eef8f2 100%);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.07);
}

.california-map-card::before {
  content: "";
  position: absolute;
  left: 34%;
  top: 8%;
  width: 34%;
  height: 78%;
  border: 3px solid rgba(36, 84, 107, 0.35);
  border-radius: 48% 24% 42% 28%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 250, 242, 0.66));
  transform: rotate(-12deg);
}

.california-map-card::after {
  content: "";
  position: absolute;
  left: 48%;
  bottom: 5%;
  width: 22%;
  height: 26%;
  border-right: 3px solid rgba(36, 84, 107, 0.24);
  border-bottom: 3px solid rgba(36, 84, 107, 0.24);
  border-radius: 0 0 70% 24%;
  transform: rotate(8deg);
}

.ca-region {
  position: absolute;
  z-index: 2;
  padding: 8px 10px;
  border: 1px solid rgba(31, 122, 77, 0.16);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 900;
}

.ca-region-bay { left: 13%; top: 22%; }
.ca-region-central { right: 10%; top: 42%; }
.ca-region-socal { left: 16%; bottom: 15%; }
.ca-region-inland { right: 14%; bottom: 24%; }

.section-north-carolina-visual {
  background:
    linear-gradient(90deg, rgba(234, 247, 241, 0.95), rgba(235, 244, 252, 0.86)),
    #f8fafc;
}

.north-carolina-region-section {
  background:
    linear-gradient(135deg, #eaf7f1 0%, #f8fafc 44%, #e8f1fb 100%);
}

.north-carolina-map-card {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 20% 18%, rgba(79, 134, 184, 0.18), transparent 28%),
    radial-gradient(circle at 80% 82%, rgba(47, 125, 89, 0.18), transparent 30%),
    linear-gradient(150deg, #e8f1fb 0%, #f4fbf7 58%, #fffaf2 100%);
}

.north-carolina-map-card::before,
.north-carolina-map-card::after {
  display: none;
}

.north-carolina-map-svg {
  position: relative;
  z-index: 1;
  width: min(88%, 420px);
  height: auto;
  filter: drop-shadow(0 22px 32px rgba(17, 24, 39, 0.14));
}

.north-carolina-map-svg path {
  fill: rgba(255, 255, 255, 0.9);
  stroke: rgba(36, 84, 107, 0.46);
  stroke-width: 0.16;
  vector-effect: non-scaling-stroke;
}

.north-carolina-map-card .ca-region-bay {
  left: 34%;
  top: 43%;
}

.north-carolina-map-card .ca-region-central {
  left: 25%;
  top: 62%;
  right: auto;
}

.north-carolina-map-card .ca-region-socal {
  left: auto;
  right: 12%;
  bottom: 30%;
}

.north-carolina-map-card .ca-region-inland {
  left: 10%;
  right: auto;
  bottom: auto;
  top: 35%;
}

.featured-metro-card {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  padding: 20px;
  border: 1px solid #b7dfc6;
  border-radius: var(--radius);
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(238, 248, 242, 0.96), rgba(255, 255, 255, 0.96)),
    #fff;
  box-shadow: 0 14px 32px rgba(17, 24, 39, 0.06);
}

.featured-metro-card span {
  color: var(--green-dark);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.featured-metro-card strong {
  font-size: 1.35rem;
}

.featured-metro-card small {
  color: var(--muted);
  font-size: 0.95rem;
}

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

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

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

.load-card,
.company-profile-card,
.core-factor-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.05);
}

.load-meter {
  height: 18px;
  margin-bottom: 16px;
  overflow: hidden;
  border: 1px solid #b7dfc6;
  border-radius: 999px;
  background: #eef8f2;
}

.load-meter span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--green), #73c58d);
}

.load-card strong,
.load-card p,
.company-profile-card strong,
.company-profile-card span,
.company-profile-card p {
  display: block;
}

.load-card p,
.company-profile-card p,
.core-factor-card p {
  color: var(--muted);
}

.load-visual-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(320px, 1fr);
  gap: 20px;
  align-items: center;
  margin-top: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.load-pile-visual {
  position: relative;
  min-height: 250px;
  border: 1px solid #dceee3;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(246, 248, 251, 0.4), rgba(238, 248, 242, 0.7)),
    repeating-linear-gradient(90deg, transparent 0 18%, rgba(31, 122, 77, 0.08) 18% 18.5%);
}

.pile-item {
  position: absolute;
  display: block;
  border: 2px solid rgba(17, 24, 39, 0.15);
  box-shadow: 0 12px 24px rgba(17, 24, 39, 0.08);
}

.pile-box {
  left: 12%;
  bottom: 20%;
  width: 24%;
  height: 30%;
  background: #c49a6c;
}

.pile-sofa {
  left: 30%;
  bottom: 18%;
  width: 42%;
  height: 24%;
  border-radius: 8px 8px 4px 4px;
  background: #7895b2;
}

.pile-bag {
  right: 16%;
  bottom: 17%;
  width: 18%;
  height: 28%;
  border-radius: 50% 50% 42% 42%;
  background: #111827;
}

.pile-chair {
  left: 50%;
  bottom: 42%;
  width: 18%;
  height: 20%;
  background: #b7dfc6;
  transform: rotate(-8deg);
}

.pile-lamp {
  right: 26%;
  bottom: 44%;
  width: 5%;
  height: 34%;
  background: var(--orange);
  transform: rotate(12deg);
}

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

.core-factor-card span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 7px;
  color: #fff;
  background: var(--ink);
  font-weight: 900;
}

.upload-requirement-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.upload-requirement-grid span {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 9px;
  align-items: center;
  min-height: 58px;
  padding: 10px;
  border: 1px solid #dceee3;
  border-radius: 8px;
  background: #f8fafc;
  font-weight: 900;
}

.upload-icon-mini {
  position: relative;
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, #eef8f2, #e9f5fb);
}

.upload-icon-mini::before,
.upload-icon-mini::after {
  content: "";
  position: absolute;
}

.icon-wide::before {
  inset: 8px 6px;
  border: 3px solid var(--green-dark);
  border-radius: 4px;
}

.icon-heavy::before {
  left: 8px;
  right: 8px;
  bottom: 8px;
  height: 12px;
  border-radius: 3px;
  background: #16233a;
}

.icon-heavy::after {
  left: 13px;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.icon-access::before {
  left: 8px;
  top: 9px;
  width: 20px;
  height: 16px;
  border-left: 3px solid #24546b;
  border-bottom: 3px solid #24546b;
  transform: skew(-18deg);
}

.icon-stays::before {
  left: 8px;
  top: 11px;
  width: 8px;
  height: 14px;
  border-right: 3px solid var(--green-dark);
  border-bottom: 3px solid var(--green-dark);
  transform: rotate(40deg);
}

.icon-stays::after {
  right: 8px;
  top: 9px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 3px solid #d6a84f;
}

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

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

.company-profile-card span {
  margin: 8px 0;
  color: var(--green-dark);
  font-weight: 900;
}

.section-provider-demo {
  color: #fff;
  background:
    radial-gradient(circle at 14% 18%, rgba(93, 167, 214, 0.18), transparent 30%),
    radial-gradient(circle at 84% 12%, rgba(214, 168, 79, 0.2), transparent 28%),
    linear-gradient(135deg, #0d1728 0%, #15283a 52%, #173d3d 100%);
}

.section-provider-demo .section-head .eyebrow {
  color: #a7e9ba;
}

.section-provider-demo .section-head h2,
.section-provider-demo .section-head p {
  color: #fff;
}

.section-provider-demo .section-head p {
  color: rgba(255, 255, 255, 0.78);
}

.demo-provider-grid {
  gap: 18px;
}

.demo-provider-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--ink);
  background: #fff;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.18);
}

.demo-provider-card::before {
  content: "Demo Provider";
  position: absolute;
  z-index: 2;
  top: 15px;
  right: 15px;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.company-profile-card .demo-watermark {
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 54%;
  color: rgba(19, 92, 57, 0.11);
  font-size: clamp(3.1rem, 5vw, 4.8rem);
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transform: translate(-50%, -50%) rotate(-18deg);
  pointer-events: none;
  white-space: nowrap;
}

.demo-provider-card > *:not(.demo-watermark) {
  position: relative;
  z-index: 1;
}

.demo-provider-head {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 16px;
}

.demo-provider-head strong {
  font-size: 1.24rem;
  line-height: 1.1;
}

.demo-provider-head small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 800;
}

.demo-logo {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.34);
}

.demo-logo span {
  position: relative;
  display: block;
  width: 34px;
  height: 22px;
  margin: 0;
  border: 3px solid #fff;
  border-radius: 5px;
}

.demo-logo span::before,
.demo-logo span::after {
  content: "";
  position: absolute;
  bottom: -9px;
  width: 9px;
  height: 9px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: currentColor;
}

.demo-logo span::before {
  left: 2px;
}

.demo-logo span::after {
  right: 2px;
}

.demo-logo-gold {
  color: #1e3150;
  background: linear-gradient(135deg, #d6a84f, #f2d58a);
}

.demo-logo-blue {
  color: #17405f;
  background: linear-gradient(135deg, #24546b, #5da7d6);
}

.demo-logo-blue::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 14px;
  height: 9px;
  border-top: 3px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
}

.demo-logo-valley {
  color: #214d35;
  background: linear-gradient(135deg, #2fa85d, #d6a84f);
}

.demo-logo-valley::before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 17px;
  height: 15px;
  border-radius: 50% 50% 0 0;
  background: rgba(255, 255, 255, 0.22);
}

.demo-provider-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.demo-provider-stats span {
  margin: 0;
  padding: 7px 9px;
  border-radius: 999px;
  color: var(--ink);
  background: #f4fbf7;
  font-size: 0.78rem;
  font-weight: 900;
}

.demo-provider-card p {
  margin-bottom: 16px;
}

.demo-provider-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.demo-provider-tags span {
  margin: 0;
  padding: 7px 9px;
  border-radius: 7px;
  color: var(--ink);
  background: #f6f8fb;
  font-size: 0.78rem;
  font-weight: 900;
}

.demo-provider-card b {
  display: block;
  padding: 12px;
  border-radius: 8px;
  color: var(--ink);
  background: #eef8f2;
  font-size: 0.92rem;
}

.demo-provider-gold {
  border-top: 7px solid #d6a84f;
}

.demo-provider-blue {
  border-top: 7px solid #5da7d6;
}

.demo-provider-valley {
  border-top: 7px solid #2fa85d;
}

.state-pricing-table .pricing-row {
  grid-template-columns: 0.62fr 1.38fr;
}

.city-hero {
  background:
    radial-gradient(circle at 86% 16%, rgba(31, 122, 77, 0.18), transparent 30%),
    radial-gradient(circle at 10% 12%, rgba(29, 78, 216, 0.1), transparent 34%),
    linear-gradient(135deg, #f6f8fb 0%, #ffffff 56%, #eef8f2 100%);
}

.city-hero-grid,
.city-results-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.56fr);
  gap: 34px;
  align-items: center;
}

.city-offer-strip {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(226, 242, 249, 0.65), rgba(255, 255, 255, 0.92) 45%, rgba(246, 234, 212, 0.42)),
    #fff;
}

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

.city-offer-grid div {
  min-height: 96px;
  padding: 16px;
  border: 1px solid #dceee3;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.04);
}

.city-offer-grid strong,
.city-offer-grid span {
  display: block;
}

.city-offer-grid strong {
  color: var(--ink);
}

.city-offer-grid span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.9rem;
}

.city-results-section {
  background: #fff;
}

.provider-results-panel {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid #b7dfc6;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 86% 18%, rgba(31, 122, 77, 0.13), transparent 30%),
    #fff;
  box-shadow: var(--shadow);
}

.result-summary {
  padding: 16px;
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(135deg, var(--ink), #1d4ed8);
}

.result-summary span,
.result-summary strong,
.result-summary p,
.provider-result-card strong,
.provider-result-card small,
.provider-result-card b {
  display: block;
}

.result-summary span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-summary strong {
  margin-top: 5px;
  font-size: 1.25rem;
}

.result-summary p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.provider-result-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
}

.provider-result-card.is-best {
  border-color: #8fd3aa;
  background: #f4fbf7;
}

.provider-result-card small {
  color: var(--muted);
  font-size: 0.84rem;
}

.provider-result-card b {
  color: var(--green-dark);
  font-size: 1.4rem;
}

.result-badge {
  position: absolute;
  top: -11px;
  right: 12px;
  padding: 4px 7px;
  border-radius: 999px;
  color: var(--green-dark);
  background: #dff4e7;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-bootcamp-section {
  background:
    radial-gradient(circle at 90% 12%, rgba(31, 122, 77, 0.12), transparent 28%),
    var(--panel);
}

.bootcamp-grid,
.access-time-grid {
  display: grid;
  gap: 14px;
}

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

.bootcamp-card,
.access-time-panel,
.access-time-grid div,
.self-check-panel,
.pricing-cheat-table {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.05);
}

.bootcamp-card {
  padding: 22px;
}

.bootcamp-card > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 7px;
  color: #fff;
  background: var(--green);
  font-weight: 900;
}

.bootcamp-card p,
.access-time-panel p,
.access-time-grid p,
.self-check-panel p {
  color: var(--muted);
}

.access-time-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 24px;
}

.access-time-panel .eyebrow {
  color: var(--green-dark);
}

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

.access-time-grid div {
  padding: 18px;
  box-shadow: none;
}

.access-time-grid strong,
.access-time-grid span,
.access-time-grid p {
  display: block;
}

.access-time-grid span {
  margin: 8px 0;
  color: var(--green-dark);
  font-weight: 900;
}

.pricing-cheat-table {
  margin-top: 18px;
  overflow: hidden;
}

.pricing-cheat-table .table-head,
.pricing-cheat-table .pricing-row {
  grid-template-columns: 0.45fr 0.75fr 0.9fr;
}

.pricing-cheat-table .pricing-row em {
  color: var(--muted);
  font-style: normal;
}

.self-check-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-top: 18px;
  padding: 24px;
}

.self-check-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.self-check-panel li {
  padding: 11px 12px;
  border: 1px solid #dceee3;
  border-radius: 7px;
  color: var(--ink);
  background: #f8fafc;
  font-weight: 800;
}

.washer-rule-panel,
.truck-fill-panel,
.pricing-formula-panel,
.estimate-fallback-panel {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.06);
}

.washer-rule-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: 22px;
  align-items: center;
  padding: 28px;
  overflow: hidden;
}

.washer-rule-copy h3,
.truck-fill-panel h3,
.pricing-formula-panel h3,
.estimate-fallback-panel h3 {
  margin-top: 0;
}

.washer-rule-copy p,
.truck-fill-panel p,
.pricing-formula-panel p,
.estimate-fallback-panel p,
.scenario-card p,
.lockability-card li {
  color: var(--muted);
}

.washer-visual {
  display: grid;
  gap: 18px;
  padding: 20px;
  border: 1px solid #d8efe2;
  border-radius: 9px;
  background:
    linear-gradient(135deg, rgba(47, 168, 93, 0.1), rgba(37, 99, 235, 0.08)),
    #f8fffb;
}

.washer-equation {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 3px 14px;
  align-items: center;
}

.washer-equation b {
  color: var(--green-dark);
}

.washer-icon,
.washer-stack::before,
.washer-stack::after {
  display: block;
  border: 3px solid #16233a;
  border-radius: 9px;
  background:
    radial-gradient(circle at 50% 48%, transparent 0 14px, #16233a 15px 17px, transparent 18px),
    linear-gradient(#eaf5ef, #fff);
}

.washer-icon {
  grid-row: span 2;
  width: 58px;
  height: 64px;
  box-shadow: inset 0 -8px 0 rgba(47, 168, 93, 0.13);
}

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

.washer-scale > div {
  display: grid;
  gap: 6px;
  align-content: start;
  min-height: 148px;
  padding: 12px;
  border: 1px solid #dfe7ee;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.washer-scale strong {
  color: var(--ink);
  font-size: 1.35rem;
}

.washer-scale small {
  color: var(--muted);
  font-weight: 800;
}

.washer-stack {
  position: relative;
  display: block;
  width: 42px;
  height: 42px;
}

.washer-stack::before,
.washer-stack::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 38px;
  border-width: 2px;
  border-radius: 7px;
}

.washer-stack::before {
  left: 0;
  bottom: 0;
}

.washer-stack::after {
  right: 0;
  top: 0;
}

.washer-stack.one::after {
  display: none;
}

.washer-stack.five,
.washer-stack.ten,
.washer-stack.full {
  width: 74px;
}

.washer-stack.ten,
.washer-stack.full {
  width: 90px;
}

.washer-stack.full {
  filter: drop-shadow(12px 0 0 rgba(47, 168, 93, 0.18)) drop-shadow(24px 0 0 rgba(37, 99, 235, 0.1));
}

.state-washer-panel {
  margin-top: 0;
  background:
    radial-gradient(circle at 80% 18%, rgba(93, 167, 214, 0.12), transparent 28%),
    linear-gradient(135deg, #fffaf2 0%, #ffffff 46%, #eef8f2 100%);
}

.washer-price-diagram {
  display: grid;
  gap: 16px;
}

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

.washer-meter-strip {
  display: grid;
  grid-template-columns: repeat(20, minmax(0, 1fr));
  gap: 4px;
  padding: 12px;
  border: 1px solid #d8efe2;
  border-radius: 9px;
  background:
    linear-gradient(90deg, rgba(238, 248, 242, 0.92), rgba(233, 245, 251, 0.84));
}

.washer-meter-strip span {
  display: block;
  aspect-ratio: 0.82;
  border: 2px solid rgba(36, 84, 107, 0.32);
  border-radius: 5px;
  background:
    radial-gradient(circle at 50% 54%, rgba(47, 168, 93, 0.2) 0 26%, transparent 27%),
    rgba(255, 255, 255, 0.82);
}

.washer-price-grid article {
  display: grid;
  gap: 7px;
  min-height: 170px;
  padding: 14px;
  border: 1px solid #d8efe2;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.78);
}

.washer-price-grid strong,
.washer-price-grid em,
.washer-price-grid b {
  display: block;
}

.washer-price-grid em {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.washer-price-grid b {
  color: var(--green-dark);
  font-size: 1.08rem;
}

.truck-fill-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: 20px;
  align-items: center;
  padding: 24px;
}

.truck-volume-visual {
  padding: 18px;
  border: 1px solid #dfe7ee;
  border-radius: 9px;
  background: #f8fafc;
}

.truck-box {
  display: flex;
  height: 72px;
  overflow: hidden;
  border: 3px solid #16233a;
  border-radius: 10px 18px 18px 10px;
  background: #fff;
}

.truck-box span {
  display: block;
  min-width: 12%;
  border-right: 2px solid #fff;
  background: linear-gradient(180deg, #54c878, #2f8b55);
}

.truck-box span:first-child {
  background: linear-gradient(180deg, #cfe9db, #9ed5b4);
}

.truck-box span:nth-child(2) {
  background: linear-gradient(180deg, #9fd9b8, #62b985);
}

.truck-box span:last-child {
  border-right: 0;
  background: linear-gradient(180deg, #276749, #183d2d);
}

.truck-markers {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.pricing-formula-panel {
  padding: 24px;
}

.pricing-formula-grid,
.scenario-card-grid,
.lockability-grid {
  display: grid;
  gap: 14px;
}

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

.pricing-formula-grid article {
  padding: 18px;
  border: 1px solid #dfe7ee;
  border-radius: 8px;
  background: #f8fafc;
}

.pricing-formula-grid span,
.scenario-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-formula-grid strong {
  display: block;
  margin-bottom: 10px;
}

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

.scenario-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.06);
}

.scenario-card strong,
.scenario-card em,
.scenario-card span,
.scenario-card p,
.scenario-card small {
  display: block;
  margin-right: 18px;
  margin-left: 18px;
}

.scenario-card strong {
  margin-top: 18px;
  font-size: 1.05rem;
}

.scenario-card em {
  width: max-content;
  max-width: calc(100% - 36px);
  margin-top: 8px;
  margin-bottom: 10px;
  padding: 5px 8px;
  border: 1px solid #d6e8ef;
  border-radius: 999px;
  color: #24546b;
  background: #f1f8fb;
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 900;
}

.scenario-card small {
  margin-bottom: 18px;
  color: var(--green-dark);
  font-size: 1.05rem;
  font-weight: 900;
}

.scenario-visual {
  position: relative;
  min-height: 132px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.07), transparent),
    linear-gradient(180deg, rgba(214, 232, 239, 0.76), rgba(246, 234, 212, 0.34)),
    #edf4f8;
}

.scenario-visual::before {
  z-index: 1;
}

.scenario-visual::after {
  z-index: 2;
}

.scenario-visual {
  overflow: hidden;
}

.scenario-visual::before,
.scenario-visual::after {
  content: "";
  position: absolute;
  border-radius: 7px;
  background: #16233a;
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.18);
}

.scenario-couch {
  border-bottom: 4px solid #9dc9dd;
  background:
    linear-gradient(90deg, rgba(37, 99, 235, 0.14), transparent 34%),
    linear-gradient(180deg, #e6f4fb, #f7efe0);
}

.scenario-couch::before {
  left: 28px;
  bottom: 34px;
  width: 108px;
  height: 42px;
  background: #2f8b55;
}

.scenario-couch::after {
  right: 32px;
  bottom: 34px;
  width: 52px;
  height: 74px;
  background: #ffffff;
  border: 3px solid #16233a;
}

.scenario-garage {
  border-bottom: 4px solid #d9bf88;
  background:
    linear-gradient(180deg, #f7efe0, #f8fafc 58%),
    #f8fafc;
}

.scenario-garage::before {
  left: 26px;
  bottom: 30px;
  width: 126px;
  height: 76px;
  background:
    linear-gradient(90deg, #9ca3af 0 20%, #2f8b55 20% 46%, #d6a84f 46% 72%, #16233a 72%);
}

.scenario-garage::after {
  right: 32px;
  bottom: 28px;
  width: 48px;
  height: 90px;
  background: #d7dde5;
}

.scenario-apartment {
  border-bottom: 4px solid #24546b;
  background:
    repeating-linear-gradient(90deg, rgba(36, 84, 107, 0.08) 0 12px, transparent 12px 30px),
    linear-gradient(180deg, #e9f5fb, #fff);
}

.scenario-apartment::before {
  left: 26px;
  bottom: 25px;
  width: 154px;
  height: 82px;
  background:
    linear-gradient(90deg, #fff 0 22%, #2f8b55 22% 48%, #d6a84f 48% 68%, #16233a 68%);
  border: 3px solid #16233a;
}

.scenario-apartment::after {
  right: 28px;
  bottom: 26px;
  width: 34px;
  height: 88px;
  background: #2f8b55;
}

.scenario-debris {
  border-bottom: 4px solid #8b5e34;
  background:
    linear-gradient(135deg, rgba(217, 191, 136, 0.4), transparent 45%),
    linear-gradient(180deg, #f8fafc, #f4ead9);
}

.scenario-debris::before {
  left: 22px;
  right: 22px;
  bottom: 28px;
  width: auto;
  height: 56px;
  clip-path: polygon(0 68%, 14% 40%, 28% 62%, 42% 26%, 55% 70%, 72% 34%, 100% 78%, 100% 100%, 0 100%);
  background: linear-gradient(90deg, #475569, #8b5e34, #1f7a4d);
}

.scenario-debris::after {
  right: 38px;
  bottom: 76px;
  width: 76px;
  height: 14px;
  transform: rotate(-16deg);
  background: #16233a;
}

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

.lockability-card {
  padding: 24px;
  border: 1px solid #d8efe2;
  border-radius: var(--radius);
  background: #f6fbf8;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.05);
}

.lockability-card.needs-review {
  border-color: #eadcc5;
  background: #fffaf2;
}

.lockability-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 18px;
}

.estimate-fallback-panel {
  padding: 24px;
  border-color: #cfe4f7;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(47, 168, 93, 0.08)),
    #fff;
}

.city-pricing-table .table-head,
.city-pricing-table .pricing-row {
  grid-template-columns: 0.45fr 0.32fr 1fr;
}

.city-pricing-table .pricing-row em {
  color: var(--muted);
  font-style: normal;
}

.quote-signal-grid,
.vetting-grid,
.mobile-pricing-cards,
.pricing-detail-grid,
.san-diego-coverage-grid {
  display: grid;
  gap: 14px;
}

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

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

.vetting-grid article {
  padding: 20px;
  border: 1px solid #d8e9ef;
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(240, 249, 244, 0.95)),
    #fff;
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.05);
}

.vetting-grid strong {
  display: block;
  color: var(--green-dark);
  font-size: 1.05rem;
}

.vetting-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.quote-signal-grid > div {
  padding: 20px;
  border: 1px solid #d8e9ef;
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(245, 250, 250, 0.96)),
    #fff;
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.05);
}

.quote-signal-grid strong,
.quote-signal-grid p {
  display: block;
}

.quote-signal-grid p,
.mobile-pricing-cards p,
.map-note p {
  color: var(--muted);
}

.signal-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 9px;
  background: linear-gradient(135deg, #eef8f2, #e9f5fb);
}

.signal-icon::before {
  color: var(--green-dark);
  font-weight: 900;
}

.signal-price::before {
  content: "$";
  font-size: 1.25rem;
}

.signal-reviews::before {
  content: "4.7";
  font-size: 0.88rem;
}

.signal-calendar::before {
  content: "";
  width: 20px;
  height: 18px;
  border: 3px solid var(--green-dark);
  border-top-width: 6px;
  border-radius: 4px;
}

.signal-scope::before {
  content: "";
  width: 21px;
  height: 21px;
  border: 3px solid var(--green-dark);
  border-radius: 50%;
  box-shadow: 8px 8px 0 -4px #eef8f2, 8px 8px 0 -1px var(--green-dark);
}

.mobile-pricing-cards {
  display: none;
}

.pricing-detail-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 16px;
}

.pricing-detail-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.05);
}

.item-pricing-grid article {
  position: relative;
  min-height: 230px;
  padding-top: 76px;
  overflow: hidden;
}

.item-pricing-grid article::after {
  content: "";
  position: absolute;
  right: -28px;
  top: -34px;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: rgba(104, 211, 132, 0.12);
}

.item-price-icon {
  position: absolute;
  left: 18px;
  top: 18px;
  width: 46px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, #eef8f2, #e9f5fb);
}

.item-price-icon::before,
.item-price-icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.icon-couch::before {
  left: 8px;
  right: 8px;
  bottom: 10px;
  height: 14px;
  border: 3px solid var(--green-dark);
  border-top: 0;
  border-radius: 4px 4px 7px 7px;
}

.icon-couch::after {
  left: 11px;
  right: 11px;
  bottom: 23px;
  height: 10px;
  border: 3px solid var(--green-dark);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  box-shadow:
    -9px 8px 0 -5px var(--green-dark),
    9px 8px 0 -5px var(--green-dark);
}

.icon-mattress::before {
  left: 7px;
  right: 7px;
  bottom: 11px;
  height: 16px;
  border: 3px solid var(--green-dark);
  border-radius: 5px;
  transform: skewX(-8deg);
}

.icon-mattress::after {
  left: 12px;
  top: 12px;
  width: 12px;
  height: 7px;
  border: 2px solid var(--green-dark);
  border-radius: 4px;
}

.icon-hottub::before {
  left: 8px;
  right: 8px;
  bottom: 9px;
  height: 18px;
  border: 3px solid var(--green-dark);
  border-radius: 4px 4px 12px 12px;
  background: linear-gradient(to bottom, transparent 0 5px, var(--green-dark) 5px 8px, transparent 8px);
}

.icon-hottub::after {
  left: 9px;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green-dark);
  box-shadow:
    10px -3px 0 -1px var(--green-dark),
    20px 2px 0 var(--green-dark),
    27px -4px 0 -1px var(--green-dark);
}

.icon-piano::before {
  left: 9px;
  top: 8px;
  width: 28px;
  height: 26px;
  border: 3px solid var(--green-dark);
  border-radius: 5px 5px 3px 3px;
}

.icon-piano::after {
  left: 13px;
  right: 13px;
  bottom: 11px;
  height: 7px;
  border-top: 3px solid var(--green-dark);
  background: repeating-linear-gradient(90deg, var(--green-dark) 0 2px, transparent 2px 6px);
}

.pricing-detail-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-detail-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.1rem;
}

.pricing-detail-grid p {
  margin: 0;
  color: var(--muted);
}

.cleanout-pricing-grid article {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(239, 246, 255, 0.95)),
    #fff;
}

.mobile-pricing-cards article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.05);
}

.mobile-pricing-cards span,
.mobile-pricing-cards strong {
  display: block;
}

.mobile-pricing-cards span {
  color: var(--muted);
  font-weight: 900;
}

.mobile-pricing-cards strong {
  margin: 8px 0;
  color: var(--green-dark);
  font-size: 1.8rem;
}

.city-step-grid,
.city-provider-grid {
  display: grid;
  gap: 14px;
}

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

.city-step-card,
.city-provider-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.05);
}

.city-step-card span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 7px;
  color: #fff;
  background: var(--green);
  font-weight: 900;
}

.city-step-card p,
.city-provider-card p {
  color: var(--muted);
}

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

.provider-profile-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(230, 210, 176, 0.58), transparent 28%),
    radial-gradient(circle at 88% 34%, rgba(93, 167, 214, 0.16), transparent 26%),
    linear-gradient(135deg, #fbf4ea 0%, #f6ead9 58%, #edf7f1 100%);
}

.provider-profile-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(115deg, transparent 0 58px, rgba(31, 122, 77, 0.06) 59px 61px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 40%);
}

.provider-profile-section .container {
  position: relative;
  z-index: 1;
}

.provider-profile-section .eyebrow {
  color: #1f6f46;
}

.provider-profile-section .section-head {
  max-width: 820px;
}

.provider-standard-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: -8px 0 22px;
  padding: 12px;
  border: 1px solid rgba(31, 122, 77, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 12px 28px rgba(84, 67, 45, 0.08);
}

.provider-standard-strip strong,
.provider-standard-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 11px;
  border-radius: 999px;
  font-weight: 900;
}

.provider-standard-strip strong {
  color: #fff;
  background: var(--ink);
}

.provider-standard-strip span {
  color: #1f6f46;
  background: rgba(244, 251, 247, 0.94);
  border: 1px solid rgba(31, 122, 77, 0.15);
}

.provider-profile-section .city-provider-grid {
  align-items: stretch;
}

.provider-profile-section .city-provider-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-color: rgba(31, 122, 77, 0.15);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 38px rgba(84, 67, 45, 0.12);
}

.provider-card-head {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.provider-avatar {
  width: 38px;
  height: 38px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), #245f42);
  font-weight: 900;
}

.city-provider-card strong,
.city-provider-card span,
.city-provider-card p,
.city-provider-card em,
.city-provider-card b,
.load-card small {
  display: block;
}

.city-provider-card .provider-rating {
  margin: 8px 0;
  color: var(--green-dark);
  font-weight: 900;
}

.city-provider-card em {
  margin-top: auto;
  color: #7c5f2a;
  font-size: 0.88rem;
  font-style: normal;
  font-weight: 900;
}

.city-provider-card b {
  width: max-content;
  margin-top: 16px;
  padding: 8px 10px;
  border: 1px solid #cfe9da;
  border-radius: 7px;
  color: var(--green-dark);
  background: #f4fbf7;
  font-size: 0.88rem;
}

.local-context-panel {
  margin-top: 18px;
  padding: 22px;
  border: 1px solid #d6e8ef;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(157, 201, 221, 0.16), rgba(246, 234, 212, 0.24)),
    #fff;
}

.local-context-panel h3 {
  margin-bottom: 14px;
}

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

.bootcamp-load-grid {
  margin-top: 18px;
}

.load-card small {
  margin-top: 10px;
  color: var(--green-dark);
  font-weight: 900;
}

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

.san-diego-coverage-section {
  background:
    linear-gradient(180deg, #fff 0%, #f7fbfd 55%, #fff 100%);
}

.san-diego-coverage-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
  align-items: center;
}

.san-diego-map-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid #cfe4f7;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.13), transparent 34%),
    radial-gradient(circle at 84% 18%, rgba(246, 234, 212, 0.42), transparent 24%),
    linear-gradient(160deg, #f8fbff 0%, #eef8f2 100%);
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.07);
}

.san-diego-map-card::before {
  content: "";
  position: absolute;
  inset: 54px 46px 80px 130px;
  border: 2px solid #b6d7e8;
  border-radius: 48% 36% 42% 44%;
  background:
    radial-gradient(circle at 40% 34%, rgba(47, 168, 93, 0.2), transparent 0 7%, transparent 8%),
    radial-gradient(circle at 56% 53%, rgba(47, 168, 93, 0.22), transparent 0 8%, transparent 9%),
    radial-gradient(circle at 74% 48%, rgba(47, 168, 93, 0.16), transparent 0 7%, transparent 8%),
    radial-gradient(circle at 50% 76%, rgba(47, 168, 93, 0.22), transparent 0 8%, transparent 9%),
    rgba(255, 255, 255, 0.78);
}

.map-coast {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 34%;
  background:
    linear-gradient(90deg, rgba(37, 99, 235, 0.22), rgba(37, 99, 235, 0.04)),
    #e4f2fb;
  clip-path: polygon(0 0, 76% 0, 58% 20%, 72% 38%, 47% 60%, 62% 100%, 0 100%);
}

.route-line {
  position: absolute;
  z-index: 1;
  color: rgba(36, 84, 107, 0.72);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.route-line::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 24px;
  width: 2px;
  height: 165px;
  border-radius: 999px;
  background: rgba(36, 84, 107, 0.22);
}

.route-i5 {
  left: 36%;
  top: 84px;
}

.route-i805 {
  left: 52%;
  top: 110px;
}

.route-i805::before {
  height: 132px;
  transform: rotate(-8deg);
}

.route-i15 {
  right: 16%;
  top: 104px;
}

.route-i15::before {
  height: 150px;
  transform: rotate(9deg);
}

.map-pin {
  position: absolute;
  z-index: 2;
  padding: 8px 10px;
  border: 1px solid #b7dfc6;
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.08);
  font-size: 0.82rem;
  font-weight: 900;
}

.pin-north {
  top: 74px;
  left: 52%;
}

.pin-coast {
  top: 156px;
  left: 24%;
}

.pin-central {
  top: 204px;
  left: 48%;
}

.pin-east {
  top: 172px;
  right: 44px;
}

.pin-south {
  bottom: 150px;
  left: 58%;
}

.map-note {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 22px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.9);
}

.city-directory-grid .link-list-card span {
  color: var(--ink);
  background: #f8fafc;
}

.page-hero {
  padding: 82px 0 52px;
  background: var(--panel);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  color: var(--ink);
  font-size: clamp(2.3rem, 5vw, 4.7rem);
}

.page-hero .eyebrow {
  color: var(--green-dark);
}

.companies-hero {
  padding: 82px 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(31, 122, 77, 0.12), transparent 30%),
    linear-gradient(135deg, #f6f8fb 0%, #ffffff 58%, #eef8f2 100%);
  border-bottom: 1px solid var(--line);
}

.companies-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.8fr);
  gap: 40px;
  align-items: center;
}

.companies-hero h1 {
  max-width: 760px;
  font-size: clamp(2.55rem, 5vw, 4.65rem);
  line-height: 0.98;
}

.companies-hero .page-lede {
  max-width: 720px;
}

.ai-answer-card {
  padding: 22px;
  border: 1px solid #b7dfc6;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.ai-answer-top {
  padding: 18px;
  border-radius: 7px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.98), rgba(29, 78, 216, 0.82));
}

.ai-answer-top span,
.old-new-card span,
.join-path-card > span {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ai-answer-top strong {
  display: block;
  font-size: 1.2rem;
  line-height: 1.2;
}

.ai-provider-list {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}

.ai-provider {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
}

.ai-provider strong,
.ai-provider span,
.ai-provider b {
  display: block;
}

.ai-provider span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.9rem;
}

.ai-provider b {
  color: var(--green-dark);
}

.muted-provider {
  background: #f8fafc;
  opacity: 0.78;
}

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

.old-new-grid,
.join-path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.old-new-card,
.join-path-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.05);
}

.old-new-card span,
.join-path-card > span {
  color: var(--muted);
}

.old-way {
  border-top: 6px solid var(--orange);
}

.new-way,
.recommended-path {
  border-top: 6px solid var(--green);
}

.old-new-card h3,
.join-path-card h3 {
  font-size: 1.55rem;
}

.signal-card {
  align-self: start;
}

.signal-list,
.lead-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.signal-list span,
.lead-detail-grid div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  font-weight: 850;
}

.signal-list span {
  background: #f8fafc;
}

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

.offer-card {
  border-top: 5px solid #b7dfc6;
}

.launch-section {
  background:
    radial-gradient(circle at 82% 28%, rgba(31, 122, 77, 0.2), transparent 30%),
    #111827;
  color: #fff;
}

.launch-section .eyebrow,
.cta-band .eyebrow {
  color: #86efac;
}

.launch-section .page-lede {
  color: rgba(255, 255, 255, 0.78);
}

.launch-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 28px;
  align-items: center;
}

.launch-count-card {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.launch-count-card strong {
  font-size: 5.3rem;
  line-height: 0.9;
}

.launch-count-card span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.form-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 28px;
  align-items: start;
}

.lead-form {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.form-step {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  margin: 28px 0 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.form-step:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.form-step span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: #fff;
  background: var(--ink);
  font-weight: 900;
}

.form-step h2 {
  font-size: 1.35rem;
}

.form-step p {
  margin: 6px 0 0;
  color: var(--muted);
}

.sticky-card {
  position: sticky;
  top: 96px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

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

label {
  font-weight: 800;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid #cbd5e1;
  border-radius: 7px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

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

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(31, 122, 77, 0.16);
  border-color: var(--green);
}

.help-text {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.form-status {
  margin-top: 18px;
  padding: 14px;
  border-radius: 7px;
  background: #eef8f2;
  color: var(--green-dark);
  display: none;
}

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

.sidebar-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

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

.faq-item {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-item p {
  color: var(--muted);
}

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

.provider-program-section {
  background:
    linear-gradient(135deg, #f6f8fb, #ffffff);
}

.provider-program-section .eyebrow {
  color: var(--green-dark);
}

.provider-program-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 28px;
  align-items: center;
  padding: 34px;
  border: 1px solid #b7dfc6;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 85% 20%, rgba(31, 122, 77, 0.12), transparent 28%),
    #fff;
  box-shadow: var(--shadow);
}

.founder-benefits {
  display: grid;
  gap: 12px;
}

.founder-benefits div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.founder-benefits strong,
.founder-benefits span {
  display: block;
}

.founder-benefits span {
  margin-top: 5px;
  color: var(--muted);
}

.area-pill {
  padding: 13px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-weight: 800;
}

.cta-band {
  padding: 64px 0;
  color: #fff;
  background: var(--ink);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  padding: 42px 0;
  background: #0d1420;
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 28px;
}

.site-footer a:hover {
  color: #fff;
}

.mobile-sticky-cta {
  display: none;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.fine-print {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.86rem;
}

.body-copy {
  max-width: 860px;
}

.body-copy h2 {
  margin-top: 34px;
  font-size: 1.75rem;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    padding: 12px;
  }

  .nav-links .button {
    margin-top: 8px;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(8, 18, 28, 0.92) 0%, rgba(8, 18, 28, 0.78) 100%),
      url("../img/hero-job-upload.svg");
    background-size: cover;
    background-position: center;
  }

  .state-conversion-hero {
    background:
      radial-gradient(circle at 78% 18%, rgba(93, 167, 214, 0.18), transparent 30%),
      radial-gradient(circle at 10% 82%, rgba(217, 191, 136, 0.14), transparent 32%),
      linear-gradient(180deg, rgba(8, 18, 28, 0.98) 0%, rgba(10, 24, 36, 0.94) 56%, rgba(21, 40, 48, 0.9) 100%);
  }

  .hero-proof,
  .grid-3,
  .grid-2,
  .grid-5,
  .compare-grid,
  .job-gallery,
  .link-hub-grid,
  .service-grid,
  .standards-grid,
  .option-grid,
  .state-directory,
  .hero-grid,
  .data-panel,
  .provider-program-panel,
  .zip-panel,
  .national-panel,
  .form-shell,
  .service-map-layout,
  .service-hero-grid,
  .cta-zip-grid,
  .featured-guide-showcase,
  .city-hero-grid,
  .city-results-grid,
  .washer-rule-panel,
  .truck-fill-panel,
  .quote-signal-grid,
  .san-diego-coverage-grid,
  .access-time-panel,
  .self-check-panel,
  .companies-hero-grid,
  .old-new-grid,
  .join-path-grid,
  .launch-panel,
  .california-hub-layout,
  .check-grid,
  .load-visual-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .results-preview {
    margin-top: 12px;
  }

  .platform-visual {
    min-height: 520px;
  }

  .phone-panel {
    right: 0;
  }

  .match-card-one,
  .match-card-two,
  .match-card-three {
    left: 0;
    right: auto;
  }

  .match-card-one {
    top: 18px;
  }

  .match-card-two {
    bottom: 118px;
  }

  .match-card-three {
    bottom: 20px;
  }

  .service-grid,
  .option-grid,
  .job-gallery,
  .link-hub-grid,
  .state-grid,
  .standards-grid,
  .detected-grid,
  .state-range-grid,
  .metro-grid,
  .compact-metro-grid,
  .special-item-grid,
  .load-guide-grid,
  .washer-price-grid,
  .state-standards-grid,
  .upload-requirement-grid,
  .city-offer-grid,
  .city-step-grid,
  .city-provider-grid,
  .city-load-grid,
  .city-area-grid,
  .bootcamp-grid,
  .quote-signal-grid,
  .washer-scale,
  .pricing-formula-grid,
  .scenario-card-grid,
  .lockability-grid,
  .access-time-grid,
  .company-profile-grid,
  .featured-state-grid,
  .state-link-grid,
  .visual-feature-grid,
  .stat-callout-grid,
  .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 640px) {
  body {
    padding-bottom: 76px;
  }

  .nav {
    width: min(100% - 24px, 1180px);
  }

  .brand span:last-child {
    max-width: 170px;
    line-height: 1.05;
  }

  .brand-logo {
    width: 190px;
    max-width: 58vw;
    max-height: 48px;
  }

  .section {
    padding: 46px 0;
  }

  .section-tight {
    display: none;
  }

  .companies-hero {
    padding: 58px 0;
  }

  .hero-inner {
    padding: 42px 0;
  }

  .city-market-hero::before,
  .city-market-hero::after {
    opacity: 0.28;
  }

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

  .city-market-hero .hero-results-grid h1 {
    font-size: clamp(2.22rem, 10.5vw, 2.95rem);
  }

  .state-conversion-hero .hero-results-grid h1 {
    font-size: clamp(2.05rem, 9.2vw, 2.7rem);
  }

  .hero-copy > p:not(.eyebrow):not(.hero-caveat) {
    font-size: 1.02rem;
  }

  .hero-actions,
  .section-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-caveat {
    display: none;
  }

  .trust-row {
    gap: 8px;
  }

  .trust-row span {
    font-size: 0.78rem;
  }

  .state-hero-zip-form {
    margin-top: 18px;
    padding: 14px;
  }

  .state-hero-zip-form div {
    grid-template-columns: 1fr;
  }

  .results-preview {
    padding: 18px;
    border-radius: 10px;
  }

  .results-example::before {
    top: 36%;
    font-size: 4.8rem;
    letter-spacing: 0.08em;
  }

  .preview-pill {
    top: 12px;
    right: 12px;
    padding: 6px 9px;
    font-size: 0.66rem;
  }

  .results-preview .flow-strip,
  .results-preview .detected-grid,
  .results-preview .provider-card:nth-of-type(n+3),
  .results-note {
    display: none;
  }

  .results-head {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .results-title {
    font-size: 1.45rem;
  }

  .scope-pill {
    width: max-content;
    padding: 8px 10px;
    font-size: 0.8rem;
  }

  .media-summary {
    grid-template-columns: 54px 1fr;
    padding: 10px;
  }

  .media-thumb {
    width: 48px;
    height: 48px;
  }

  .provider-card {
    grid-template-columns: 28px 1fr auto;
    gap: 9px;
    padding: 10px;
  }

  .provider-rank {
    width: 28px;
    height: 28px;
  }

  .provider-topline {
    gap: 6px;
  }

  .provider-topline strong,
  .provider-price {
    font-size: 1rem;
  }

  .provider-meta {
    font-size: 0.76rem;
  }

  .badge {
    padding: 4px 6px;
    font-size: 0.62rem;
  }

  .city-offer-strip {
    display: none;
  }

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

  .zip-panel {
    padding: 22px;
  }

  .section-head {
    margin-bottom: 22px;
  }

  .section-head h2 {
    font-size: clamp(2rem, 10vw, 2.65rem);
  }

  .zip-row,
  .factor-grid,
  .flow-strip,
  .detected-grid,
  .offer-grid,
  .vetting-grid,
  .quote-signal-grid,
  .signal-list,
  .lead-detail-grid,
  .state-range-grid,
  .metro-grid,
  .compact-metro-grid,
  .special-item-grid,
  .load-guide-grid,
  .washer-price-grid,
  .city-offer-grid,
  .city-step-grid,
  .city-provider-grid,
  .city-load-grid,
  .city-area-grid,
  .bootcamp-grid,
  .washer-rule-panel,
  .truck-fill-panel,
  .washer-scale,
  .pricing-formula-grid,
  .scenario-card-grid,
  .lockability-grid,
  .mobile-pricing-cards,
  .pricing-detail-grid,
  .san-diego-coverage-grid,
  .access-time-grid,
  .self-check-panel ul,
  .company-profile-grid,
  .core-factor-grid,
  .state-standards-grid,
  .upload-requirement-grid,
  .state-link-grid,
  .featured-state-grid,
  .visual-feature-grid,
  .stat-callout-grid,
  .table-head,
  .pricing-row,
  .service-grid,
  .option-grid,
  .job-gallery,
  .link-hub-grid,
  .state-grid,
  .standards-grid {
    grid-template-columns: 1fr;
  }

  .state-pricing-table .pricing-row {
    grid-template-columns: 1fr;
  }

  .city-pricing-table .table-head,
  .city-pricing-table .pricing-row,
  .pricing-cheat-table .table-head,
  .pricing-cheat-table .pricing-row {
    grid-template-columns: 1fr;
  }

  .city-pricing-table {
    display: none;
  }

  .mobile-pricing-cards {
    display: grid;
  }

  .city-step-grid {
    gap: 10px;
  }

  .city-step-card {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 10px 12px;
    padding: 14px;
    box-shadow: none;
  }

  .city-step-card span {
    grid-row: span 2;
    width: 32px;
    height: 32px;
    margin-bottom: 0;
  }

  .city-step-card h3 {
    font-size: 1.02rem;
  }

  .city-step-card p {
    margin: 0;
    font-size: 0.9rem;
  }

  .washer-rule-panel,
  .truck-fill-panel,
  .pricing-formula-panel,
  .access-time-panel,
  .self-check-panel,
  .estimate-fallback-panel {
    padding: 18px;
  }

  .state-pricing-ladder .range-card {
    min-height: 106px;
    padding: 14px 14px 14px 86px;
  }

  .state-pricing-ladder .range-card span {
    margin: 5px 0;
    font-size: 1.12rem;
  }

  .state-pricing-ladder .range-card p {
    margin: 0;
    font-size: 0.93rem;
  }

  .state-pricing-ladder .ladder-icon {
    top: 20px;
    left: 16px;
  }

  .washer-price-grid article {
    min-height: 132px;
  }

  .washer-meter-strip {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .washer-visual {
    padding: 14px;
  }

  .washer-scale > div {
    min-height: 120px;
  }

  .truck-fill-panel,
  .pricing-cheat-table,
  .bootcamp-load-grid,
  .local-context-panel,
  .self-check-panel {
    display: none;
  }

  .pricing-formula-grid article,
  .access-time-grid div {
    padding: 14px;
  }

  .scenario-card-grid {
    display: flex;
    gap: 12px;
    margin-right: -16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
  }

  .scenario-card {
    flex: 0 0 82%;
    scroll-snap-align: start;
  }

  .scenario-visual {
    min-height: 118px;
  }

  .city-provider-grid .city-provider-card:nth-child(n+4) {
    display: none;
  }

  .provider-profile-section .provider-standard-strip {
    align-items: stretch;
  }

  .provider-profile-section .provider-standard-strip strong,
  .provider-profile-section .provider-standard-strip span {
    width: 100%;
    justify-content: center;
  }

  .provider-profile-section .city-provider-grid {
    display: flex;
    gap: 12px;
    margin-right: -16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
  }

  .provider-profile-section .city-provider-card,
  .provider-profile-section .city-provider-card:nth-child(n+4) {
    display: flex;
    flex: 0 0 84%;
    scroll-snap-align: start;
  }

  .city-provider-card b {
    width: 100%;
    text-align: center;
  }

  .lockability-card {
    padding: 18px;
  }

  .san-diego-map-card {
    min-height: 360px;
  }

  .san-diego-map-card::before {
    inset: 56px 22px 94px 82px;
  }

  .pin-north {
    top: 74px;
    left: 44%;
  }

  .pin-coast {
    top: 142px;
    left: 16%;
  }

  .pin-central {
    top: 190px;
    left: 42%;
  }

  .pin-east {
    top: 158px;
    right: 16px;
  }

  .pin-south {
    bottom: 138px;
    left: 48%;
  }

  .mobile-sticky-cta {
    position: fixed;
    z-index: 80;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: none;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    padding: 9px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    background: rgba(17, 24, 39, 0.96);
    box-shadow: 0 18px 38px rgba(17, 24, 39, 0.28);
  }

  .mobile-sticky-cta.is-visible {
    display: grid;
  }

  .mobile-sticky-cta span {
    color: #fff;
    font-size: 0.92rem;
    font-weight: 900;
  }

  .mobile-sticky-cta .button {
    width: auto;
    min-height: 44px;
    padding: 11px 14px;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .usa-abbrev-map {
    grid-template-columns: repeat(14, minmax(18px, 1fr));
    grid-template-rows: repeat(7, minmax(24px, 1fr));
    gap: 3px;
    min-height: 230px;
    padding: 10px;
  }

  .usa-abbrev-map span,
  .usa-abbrev-map a {
    font-size: 0.62rem;
    border-radius: 4px;
  }

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

  .featured-guide-showcase {
    padding: 20px;
  }

  .svg-map-shell {
    padding: 8px;
  }

  .load-visual-panel {
    padding: 18px;
  }

  .load-pile-visual {
    min-height: 210px;
  }

  .map-card,
  .state-grid-card,
  .provider-program-panel {
    padding: 20px;
  }

  .walkthrough-grid {
    grid-template-columns: 1fr;
    overflow-x: visible;
    scroll-snap-type: none;
  }

  .walkthrough-card {
    min-width: 0;
  }

  .job-photo-card {
    min-height: 230px;
  }

  .us-map {
    min-height: 170px;
  }

  .results-head,
  .provider-card {
    grid-template-columns: 1fr;
  }

  .results-head {
    display: grid;
  }

  .provider-price {
    justify-self: start;
  }

  .media-summary {
    grid-template-columns: 1fr;
  }

  .platform-visual {
    display: none;
  }

  .phone-panel {
    position: relative;
    right: auto;
    top: auto;
    width: min(100%, 280px);
    margin-left: auto;
  }

  .match-card {
    width: min(100%, 260px);
  }

  .match-card-one {
    top: 24px;
  }

  .match-card-two {
    top: 380px;
    bottom: auto;
  }

  .match-card-three {
    bottom: 0;
  }

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

  .lead-form {
    padding: 20px;
  }

  .sticky-card {
    position: static;
  }
}
