:root {
  --blue: #1f70ad;
  --blue-dark: #0f2c4a;
  --yellow: #f7dd57;
  --charcoal: #161616;
  --body: #333333;
  --muted: #68717d;
  --surface: #fafbfd;
  --line: #dfe5eb;
  --white: #ffffff;
  --green: #10b981;
  --red: #dc2626;
  --shadow: 0 18px 45px rgba(15, 44, 74, 0.14);
  --shadow-lift: 0 24px 58px rgba(15, 44, 74, 0.18);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--body);
  font-family: Montserrat, Inter, "Source Sans 3", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: var(--white);
}

body.no-bottom-bar {
  padding-bottom: 0;
}

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

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

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  left: 1rem;
  top: 1rem;
  transform: translateY(-140%);
  background: var(--yellow);
  color: var(--charcoal);
  padding: 0.65rem 1rem;
  border-radius: 999px;
  font-weight: 800;
}

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

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  color: var(--blue-dark);
  background: linear-gradient(var(--blue-dark) 0 34px, var(--white) 34px);
  box-shadow: 0 10px 30px rgba(15, 44, 74, 0.12);
}

.motion-ready .site-header {
  animation: headerDrop 520ms ease both;
}

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

.utility-row {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
}

.nav-row {
  min-height: 82px;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 190px;
  max-height: 54px;
  object-fit: contain;
  transition: transform 180ms ease;
}

.brand:hover img {
  transform: translateY(-1px) scale(1.02);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.84rem;
  font-weight: 700;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  padding: 0.9rem 0.42rem;
  white-space: nowrap;
}

.nav-link::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.7;
}

.nav-link:not([aria-haspopup])::after {
  display: none;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 248px;
  padding: 0.55rem;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--blue-dark);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 0.55rem 0.7rem;
  border-radius: 6px;
  color: var(--blue-dark);
  font-weight: 700;
  font-size: 0.88rem;
}

.dropdown a:hover {
  background: var(--surface);
  color: var(--blue);
}

.header-actions,
.hero-actions,
.cta-actions,
.form-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.35rem;
}

.header-actions {
  flex-wrap: nowrap;
}

@media (max-width: 1280px) {
  .header-actions .btn-blue {
    display: none;
  }
}

.form-note {
  max-width: 760px;
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.header-actions .btn {
  min-height: 44px;
  padding-inline: 1rem;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.82rem 1.25rem;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(15, 44, 74, 0);
  transition: background 140ms ease, color 140ms ease, transform 140ms ease, box-shadow 140ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15, 44, 74, 0.16);
}

.btn:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

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

.btn-yellow:hover {
  background: #e6c83d;
}

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

.btn-blue:hover {
  background: #185c91;
}

.btn-outline {
  color: var(--blue);
  border: 1.5px solid var(--blue);
  background: transparent;
}

.text-uppercase {
  text-transform: uppercase;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(31, 112, 173, 0.28);
  border-radius: 999px;
  color: var(--blue-dark);
  background: rgba(31, 112, 173, 0.08);
  font-size: 1.35rem;
}

.hero {
  min-height: 720px;
  display: grid;
  align-items: end;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(15, 44, 74, 0.68) 0%, rgba(15, 44, 74, 0.42) 48%, rgba(15, 44, 74, 0.08) 100%),
    url("assets/photos/hero-truck.jpg") center / cover no-repeat;
}

.hero-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 6rem 0 3rem;
}

.motion-ready .hero-inner > * {
  animation: heroRise 720ms ease both;
}

.motion-ready .hero-inner > *:nth-child(2) {
  animation-delay: 110ms;
}

.motion-ready .hero-inner > *:nth-child(3) {
  animation-delay: 190ms;
}

.motion-ready .hero-inner > *:nth-child(4) {
  animation-delay: 270ms;
}

.eyebrow {
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-local-title {
  display: block;
  color: var(--white);
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: 1.05;
}

.review-sources {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin-top: 0.7rem;
  padding: 0.4rem 0.65rem;
  border: 1px solid rgba(247, 221, 87, 0.48);
  border-radius: 999px;
  background: rgba(15, 44, 74, 0.48);
  color: var(--yellow);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
h4 {
  color: var(--blue-dark);
  line-height: 1.08;
}

.hero h1 {
  max-width: 750px;
  margin: 0.8rem 0 1rem;
  color: var(--white);
  font-size: clamp(2.25rem, 6vw, 4.15rem);
  font-weight: 900;
}

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

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  overflow: hidden;
  padding: 0.75rem;
  border-radius: 24px 24px 0 0;
  background: rgba(234, 246, 255, 0.68);
  backdrop-filter: blur(6px);
}

.trust-item {
  position: relative;
  min-height: 82px;
  padding: 1rem 1rem 1rem 4.15rem;
  overflow: hidden;
  border: 1px solid rgba(31, 112, 173, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--blue-dark);
  box-shadow: 0 12px 26px rgba(15, 44, 74, 0.08);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.trust-item:hover {
  border-color: rgba(31, 112, 173, 0.25);
  box-shadow: var(--shadow-lift);
  transform: translateY(-3px);
}

.trust-item strong {
  display: block;
  color: var(--charcoal);
  font-size: 1.22rem;
  line-height: 1.2;
}

.trust-item span:not(.badge-icon) {
  font-size: 1rem;
}

.badge-icon {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid rgba(31, 112, 173, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--blue);
  font-size: 1.2rem;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(15, 44, 74, 0.12);
}

.badge-stars {
  border: 0;
  background: transparent url("/assets/badges/five-star-rating.svg") center / contain no-repeat;
  border-radius: 0;
  box-shadow: none;
}

.badge-icon.large {
  position: static;
  width: 66px;
  height: 66px;
  margin-bottom: 1rem;
  font-size: 1.65rem;
}

.badge-icon img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.badge-icon.badge-image {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.badge-stars.large {
  width: 148px;
  height: 34px;
}

.count-pop {
  display: inline-block;
  color: var(--blue);
  animation: countPulse 2.7s ease-in-out infinite;
}

.trust-review::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(105deg, transparent 28%, rgba(247, 221, 87, 0.25), transparent 66%);
  transform: translateX(-120%);
  animation: trustSweep 4.4s ease-in-out infinite;
  pointer-events: none;
}

.badge-grid .testimonial {
  overflow: hidden;
}

.review-badge-section {
  padding: 3rem 0;
  background: var(--white);
}

.review-badge-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: clamp(1.25rem, 4vw, 4.5rem);
}

.review-badge-img {
  justify-self: center;
  width: auto;
  max-width: min(100%, 220px);
  max-height: 92px;
  object-fit: contain;
}

.review-badge-link {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.moverlead-badge {
  max-height: 88px;
}

.trust-badge-card strong {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--blue-dark);
  font-size: 1.18rem;
}

.section {
  padding: 5rem 0;
}

.section-gray {
  background: linear-gradient(180deg, #ffffff 0%, var(--surface) 100%);
}

.audience-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(250, 252, 255, 0.96)),
    radial-gradient(circle at 90% 0%, rgba(247, 221, 87, 0.28), transparent 22rem);
}

.audience-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--yellow), var(--blue));
}

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

.section-dark h2,
.section-dark h3,
.section-dark p {
  color: var(--white);
}

.section-head {
  max-width: 740px;
  margin-bottom: 2rem;
}

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

.section-head h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 4vw, 2.6rem);
}

.audience-head {
  position: relative;
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 0 0 1.25rem;
  border-left: 6px solid var(--yellow);
}

.audience-head h2 {
  font-size: clamp(2.35rem, 5vw, 3.35rem);
}

.audience-head p {
  max-width: 680px;
  color: #29435d;
  font-size: 1.12rem;
}

.quote-section {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 116px;
  padding: 5.5rem 0;
  background:
    linear-gradient(135deg, rgba(15, 44, 74, 0.94), rgba(31, 112, 173, 0.84) 58%, rgba(15, 44, 74, 0.9)),
    url("/assets/photos/crew-vertical.jpg") center / cover;
  color: var(--white);
}

.quote-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(247, 221, 87, 0.18), transparent 28rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 100%);
  background-size: auto, 96px 96px, 96px 96px;
  opacity: 0.42;
  pointer-events: none;
}

.quote-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(560px, 1.1fr);
  align-items: center;
  gap: 2rem;
}

.quote-intro {
  max-width: 470px;
}

.quote-kicker {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-intro h2 {
  max-width: 12ch;
  margin: 0 0 1rem;
  color: var(--white);
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.02;
}

.quote-intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
  line-height: 1.65;
}

.quote-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 2rem;
  overflow: visible;
}

.quote-proof div {
  min-height: 104px;
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 16px 34px rgba(4, 19, 34, 0.18);
  backdrop-filter: blur(6px);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.quote-proof div:hover {
  border-color: rgba(247, 221, 87, 0.52);
  background: rgba(255, 255, 255, 0.17);
  transform: translateY(-3px);
}

.quote-proof strong,
.quote-proof span {
  display: block;
}

.quote-proof strong {
  color: var(--white);
  font-size: 1.02rem;
}

.quote-proof span {
  margin-top: 0.3rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.86rem;
  line-height: 1.35;
}

.lead-form-card {
  position: relative;
  z-index: 2;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 70px rgba(4, 19, 34, 0.32);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.field {
  grid-column: span 4;
}

.field-wide {
  grid-column: span 6;
}

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

label,
.field-label {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--blue-dark);
  font-size: 0.86rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.8rem 0.9rem;
  border: 1px solid #b9cce0;
  border-radius: 6px;
  background: #f9fbfd;
  color: var(--charcoal);
  font: inherit;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  outline: 3px solid rgba(31, 112, 173, 0.14);
  transform: translateY(-1px);
}

.google-place-autocomplete {
  display: block;
  position: relative;
  z-index: 5;
  width: 100%;
  min-height: 52px;
  color-scheme: light;
}

.google-place-autocomplete::part(input) {
  width: 100%;
  min-height: 52px;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f8fafc;
  color: var(--ink);
  font: inherit;
  box-sizing: border-box;
}

.google-place-autocomplete:focus-within::part(input) {
  border-color: var(--blue);
  background: var(--white);
  outline: 3px solid rgba(31, 112, 173, 0.14);
}

textarea {
  resize: vertical;
}

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

.check {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0.55rem 0.7rem;
  border: 1px solid #cfd8e3;
  border-radius: 6px;
  background: #fff;
  color: var(--body);
  font-weight: 700;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.check:hover {
  border-color: rgba(31, 112, 173, 0.42);
  background: #f8fbff;
  transform: translateY(-1px);
}

.check input {
  width: auto;
  min-height: auto;
}

.consent {
  display: flex;
  gap: 0.65rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.consent input {
  width: auto;
  min-height: auto;
  margin-top: 0.25rem;
}

.form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-left: 4px solid var(--green);
  background: #ecfdf5;
  color: #065f46;
  font-weight: 700;
}

.three-grid,
.service-grid,
.step-grid,
.testimonial-grid,
.area-list,
.footer-grid {
  display: grid;
  gap: 1.25rem;
}

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

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

@media (min-width: 1180px) {
  .home-service-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.feature,
.service-card,
.step,
.testimonial,
.simple-card {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.feature:hover,
.service-card:hover,
.step:hover,
.testimonial:hover,
.simple-card:hover {
  border-color: rgba(31, 112, 173, 0.24);
  box-shadow: var(--shadow-lift);
  transform: translateY(-4px);
}

.service-card-photo {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.service-card-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 520ms ease;
}

.service-card-photo:hover img {
  transform: scale(1.045);
}

.service-card-photo > div {
  padding: 1.35rem;
}

.icon-circle {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(31, 112, 173, 0.1);
  color: var(--blue);
}

.icon-circle img {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.feature h3,
.service-card h3,
.step h3 {
  font-size: 1.28rem;
}

.feature p,
.service-card p,
.step p {
  font-size: 1.02rem;
}

.article-card h2 {
  font-size: 1.35rem;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}

.article-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.25rem 0.55rem;
  border: 1px solid rgba(31, 112, 173, 0.22);
  border-radius: 999px;
  background: rgba(31, 112, 173, 0.08);
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.article-hero .article-tags {
  justify-content: center;
}

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

.article-content {
  min-width: 0;
}

.article-content > p,
.article-content li {
  font-size: 1.05rem;
  line-height: 1.75;
}

.article-content > h2,
.article-faq h2,
.article-sources h2 {
  margin-top: 2.4rem;
  font-size: 1.65rem;
}

.article-featured {
  margin: 0 0 2rem;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.article-featured img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}

.answer-box,
.checklist-panel {
  margin: 2rem 0;
  padding: 1.35rem;
  border: 1px solid rgba(31, 112, 173, 0.22);
  border-radius: var(--radius);
  background: rgba(234, 246, 255, 0.72);
}

.answer-box h2,
.checklist-panel h2 {
  margin-top: 0;
  font-size: 1.25rem;
}

.article-sidebar {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 1rem;
}

.side-link-list {
  display: grid;
  gap: 0.55rem;
}

.side-link-list a {
  display: block;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--blue);
  font-weight: 800;
}

.text-link {
  color: var(--blue);
  font-weight: 800;
  transition: color 160ms ease;
}

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

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.audience-card {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--blue-dark);
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.audience-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 680ms ease;
}

.audience-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.72));
}

.audience-card > div {
  position: relative;
  z-index: 1;
  padding: 1.35rem;
}

.audience-card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-4px);
}

.audience-card:hover img {
  transform: scale(1.055);
}

.audience-card h3,
.audience-card p {
  color: var(--white);
}

.step-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--charcoal);
  font-weight: 900;
}

.step h3 {
  line-height: 1.16;
}

.map-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.map-panel {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
}

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

.area-list a {
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--blue-dark);
  font-weight: 800;
  transition: border-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.area-list a:hover {
  border-color: rgba(31, 112, 173, 0.35);
  color: var(--blue);
  box-shadow: 0 12px 28px rgba(15, 44, 74, 0.1);
  transform: translateY(-2px);
}

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

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

.faq-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  border: 0;
  background: transparent;
  color: var(--blue-dark);
  font: inherit;
  font-size: 1.05rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-button span:last-child {
  color: var(--blue);
  font-size: 1.4rem;
  transition: transform 160ms ease;
}

.faq-item.is-open .faq-button span:last-child {
  transform: rotate(45deg);
}

.faq-panel {
  max-width: 760px;
  padding: 0 0 1.2rem;
  color: var(--muted);
}

.cta-band {
  padding: 2.25rem 0;
  background: var(--yellow);
  color: var(--charcoal);
}

.cta-band.blue {
  background: var(--blue-dark);
  color: var(--white);
}

.cta-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cta-inner h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
}

.site-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
  grid-template-columns: repeat(4, 1fr) 1.35fr;
  padding: 4rem 0 2.5rem;
}

.footer-col h3 {
  color: var(--white);
  font-size: 1rem;
}

.footer-col a {
  display: block;
  padding: 0.2rem 0;
}

.footer-logo {
  width: 230px;
  margin-bottom: 1rem;
}

.striv-credit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.striv-credit img {
  width: 96px;
  height: auto;
  border-radius: 4px;
  mix-blend-mode: screen;
}

.socials {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
}

.socials a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-weight: 900;
  transition: background 160ms ease, transform 160ms ease;
}

.socials a:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1rem 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.86rem;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.stars {
  color: #eab308;
  letter-spacing: 0.04em;
  animation: starTwinkle 2.6s ease-in-out infinite;
}

.motion-ready .motion-reveal {
  opacity: 1;
  transform: none;
  transition:
    opacity 620ms ease var(--reveal-delay, 0ms),
    transform 620ms ease var(--reveal-delay, 0ms);
}

.motion-ready .motion-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes countPulse {
  0%,
  100% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.08);
  }
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes trustSweep {
  0%,
  45% {
    transform: translateX(-120%);
  }
  75%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes starTwinkle {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.22);
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .count-pop,
  .trust-review::after,
  .stars {
    animation: none;
  }

  .motion-ready .motion-reveal {
    opacity: 1;
    transform: none;
  }
}

.mobile-bottom {
  display: none;
}

.drawer {
  position: fixed;
  z-index: 1500;
  inset: 0;
  display: none;
  background: rgba(0, 0, 0, 0.54);
}

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

.drawer-panel {
  margin-left: auto;
  width: min(420px, 92vw);
  min-height: 100%;
  padding: 1.3rem;
  background: var(--white);
  color: var(--blue-dark);
}

.motion-ready .drawer.is-open .drawer-panel {
  animation: drawerSlide 220ms ease both;
}

@keyframes drawerSlide {
  from {
    opacity: 0;
    transform: translateX(26px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.drawer-head img {
  width: 210px;
}

.drawer-panel details {
  border-bottom: 1px solid var(--line);
  padding: 0.75rem 0;
}

.drawer-panel summary {
  font-weight: 900;
  cursor: pointer;
}

.drawer-panel a {
  display: block;
  padding: 0.45rem 0;
  font-weight: 700;
}

.page-hero {
  padding: 4rem 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--surface) 100%);
}

.breadcrumb {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.page-hero h1 {
  max-width: 850px;
  margin: 0.6rem 0 0.75rem;
  font-size: clamp(2.2rem, 5vw, 3.75rem);
}

.service-hero {
  padding: 4.5rem 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(250, 252, 255, 0.96)),
    radial-gradient(circle at 12% 20%, rgba(247, 221, 87, 0.24), transparent 32%);
}

.service-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.8fr);
  gap: 3rem;
  align-items: center;
}

.service-hero-copy h1 {
  max-width: 760px;
  margin: 0.6rem 0 1rem;
  font-size: clamp(2.35rem, 5vw, 4rem);
}

.service-hero-copy p {
  max-width: 680px;
  color: var(--body);
  font-size: 1.12rem;
}

.service-hero-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--blue-dark);
}

.service-hero-media img {
  width: 100%;
  height: min(58vw, 520px);
  min-height: 360px;
  object-fit: cover;
  transition: transform 700ms ease;
}

.service-hero-media:hover img,
.media-frame:hover img {
  transform: scale(1.035);
}

.service-hero-media figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.8rem 1rem;
  border-left: 4px solid var(--yellow);
  border-radius: 6px;
  background: rgba(15, 44, 74, 0.88);
  color: var(--white);
  font-weight: 800;
  line-height: 1.3;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1.25rem;
}

.service-panel {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(15, 44, 74, 0.08);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-panel:hover {
  border-color: rgba(31, 112, 173, 0.22);
  box-shadow: var(--shadow-lift);
  transform: translateY(-3px);
}

.service-panel h2 {
  margin-bottom: 1rem;
}

.service-panel-blue {
  background: var(--blue-dark);
  color: var(--white);
}

.service-panel-blue h2,
.service-panel-blue li {
  color: var(--white);
}

.check-list {
  padding-left: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin-bottom: 0.8rem;
  padding-left: 1.75rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  font-weight: 900;
}

.service-panel-blue .check-list li::before {
  color: var(--yellow);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
  gap: 2.5rem;
  align-items: start;
}

.media-frame {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 700ms ease;
}

.bullet-list {
  padding-left: 1.1rem;
}

.bullet-list li {
  margin-bottom: 0.45rem;
}

@media (max-width: 1100px) {
  .nav-links,
  .header-actions {
    display: none;
  }

  .nav-row {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 0.75rem;
  }

  .menu-button {
    display: inline-grid;
    place-items: center;
  }
}

@media (max-width: 980px) {
  .quote-shell {
    grid-template-columns: 1fr;
  }

  .quote-intro {
    max-width: 680px;
  }

  .quote-intro h2 {
    max-width: 13ch;
  }
}

@media (max-width: 820px) {
  body {
    padding-bottom: 68px;
  }

  .utility-row {
    justify-content: center;
  }

  .utility-row a {
    display: none;
  }

  .brand img {
    width: 210px;
    max-height: 64px;
  }

  .hero {
    min-height: calc(100svh - 116px);
    align-items: start;
    background:
      linear-gradient(180deg, rgba(15, 44, 74, 0.9) 0%, rgba(15, 44, 74, 0.78) 48%, rgba(15, 44, 74, 0.34) 100%),
      url("assets/photos/hero-truck.jpg") 64% center / cover no-repeat;
  }

  .hero-inner {
    width: min(100% - 56px, 520px);
    padding: 1.65rem 0 7rem;
    text-align: center;
  }

  .hero-local-title {
    margin-right: auto;
    margin-left: auto;
    max-width: 12ch;
    font-size: clamp(1.45rem, 6.5vw, 2.25rem);
    letter-spacing: 0.07em;
  }

  .review-sources {
    margin-right: auto;
    margin-left: auto;
    margin-top: 1.15rem;
    padding: 0.46rem 0.68rem;
    font-size: 0.74rem;
  }

  .hero h1 {
    margin-right: auto;
    margin-left: auto;
    max-width: 11.5ch;
    margin-top: 0.95rem;
    font-size: clamp(1.85rem, 7.2vw, 2.75rem);
    line-height: 1.04;
    text-shadow: 0 3px 18px rgba(4, 19, 34, 0.42);
  }

  .hero p {
    margin-right: auto;
    margin-left: auto;
    max-width: 15em;
    font-size: 1.22rem;
    line-height: 1.38;
    text-shadow: 0 2px 14px rgba(4, 19, 34, 0.38);
  }

  .hero-actions {
    display: none;
  }

  .hero-actions .btn {
    min-height: 58px;
    padding-inline: 1.1rem;
    font-size: 1rem;
  }

  .trust-strip,
  .review-badge-grid,
  .three-grid,
  .service-grid,
  .article-grid,
  .step-grid,
  .testimonial-grid,
  .audience-grid,
  .map-wrap,
  .footer-grid,
  .two-col,
  .article-layout,
  .service-hero-grid,
  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

  .trust-strip {
    gap: 0.85rem;
    padding: 0.85rem;
    overflow: visible;
    border-radius: 28px 28px 0 0;
    background: rgba(234, 246, 255, 0.42);
  }

  .trust-item {
    border-radius: 28px;
  }

  .review-badge-section {
    padding: 2.25rem 0;
  }

  .review-badge-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 1rem;
  }

  .review-badge-img {
    width: min(100%, 180px);
    max-height: 82px;
  }

  .quote-section {
    padding: 3.25rem 0 3.4rem;
    background:
      linear-gradient(180deg, rgba(15, 44, 74, 0.96), rgba(24, 86, 136, 0.9)),
      url("/assets/photos/crew-vertical.jpg") center / cover;
  }

  .quote-section::before {
    background:
      radial-gradient(circle at 50% 0%, rgba(247, 221, 87, 0.2), transparent 18rem),
      linear-gradient(0deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 100%);
    background-size: auto, 100% 88px;
  }

  .quote-intro h2 {
    max-width: 9.5em;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(2rem, 8vw, 2.75rem);
    text-align: center;
  }

  .quote-intro {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
  }

  .quote-kicker {
    justify-content: center;
  }

  .quote-intro p {
    max-width: 30rem;
    margin-right: auto;
    margin-left: auto;
    font-size: 1rem;
    line-height: 1.55;
  }

  .quote-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1.35rem;
  }

  .quote-proof div {
    min-height: auto;
    padding: 1rem;
    border-radius: 18px;
  }

  .lead-form-card {
    border-radius: var(--radius);
  }

  .field,
  .field-wide {
    grid-column: 1 / -1;
  }

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

  .form-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 0.85rem;
  }

  .form-actions .btn {
    width: 100%;
  }

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

  .mobile-bottom {
    position: fixed;
    z-index: 1200;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
    padding: 0.75rem;
    background: var(--charcoal);
  }

  .mobile-bottom .btn {
    min-height: 48px;
  }

  .section {
    padding: 3.5rem 0;
  }

  .service-hero {
    padding: 3.5rem 0;
  }

  .service-hero-grid {
    gap: 2rem;
  }

  .service-hero-media img {
    height: 390px;
    min-height: 0;
  }

  .service-panel {
    padding: 1.35rem;
  }

  .audience-head {
    padding: 1.35rem;
    border-left: 0;
    border-radius: 24px;
    background: var(--white);
    box-shadow: 0 18px 42px rgba(15, 44, 74, 0.08);
    text-align: center;
  }

  .audience-head h2 {
    margin-bottom: 0.6rem;
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .audience-head p {
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.55;
  }
}

@media (max-width: 520px) {
  .brand img {
    width: 200px;
  }

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

  .quote-proof div {
    min-height: 0;
  }
}
