:root {
  --navy: #082f63;
  --navy-2: #0b1c32;
  --blue: #1598d4;
  --blue-2: #0b72b5;
  --gold: #f5aa18;
  --gold-2: #ffe7a5;
  --ink: #142033;
  --body: #405064;
  --muted: #66758a;
  --line: #dbe4ee;
  --soft: #f5f8fb;
  --white: #ffffff;
  --shadow: 0 20px 55px rgba(8, 47, 99, 0.16);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--body);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

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

:focus-visible {
  outline: 3px solid rgba(21, 152, 212, 0.44);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  left: 1rem;
  top: 1rem;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy-2);
  padding: 0.7rem 1rem;
  font-weight: 900;
}

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

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

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: linear-gradient(var(--navy-2) 0 34px, rgba(255, 255, 255, 0.96) 34px);
  color: var(--navy);
  box-shadow: 0 12px 36px rgba(8, 47, 99, 0.12);
  backdrop-filter: blur(10px);
}

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

.utility-row a {
  color: var(--gold-2);
}

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

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

.brand img {
  width: 118px;
  max-height: 72px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 850;
}

.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 0.75rem;
}

.nav-links a:hover {
  background: rgba(21, 152, 212, 0.1);
  color: var(--blue-2);
}

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

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

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0.82rem 1.1rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(8, 47, 99, 0.16);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-2);
}

.btn-gold:hover {
  background: #dc9410;
}

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

.btn-blue:hover {
  background: var(--navy);
}

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

.btn-ghost {
  border: 1px solid rgba(8, 47, 99, 0.2);
  background: var(--white);
  color: var(--navy);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(8, 47, 99, 0.18);
  border-radius: 999px;
  background: rgba(21, 152, 212, 0.1);
  color: var(--navy);
}

.menu-button span,
.menu-button span::before,
.menu-button span::after {
  width: 20px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: currentColor;
}

.menu-button span {
  position: relative;
}

.menu-button span::before,
.menu-button span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-button span::before {
  top: -7px;
}

.menu-button span::after {
  top: 7px;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 122px);
  padding: clamp(2rem, 5vw, 4rem) 0;
  color: var(--white);
  background: var(--navy-2);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("/assets/photos/moving-help-main.jpeg") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(11, 28, 50, 0.92) 0%, rgba(8, 47, 99, 0.76) 44%, rgba(8, 47, 99, 0.32) 100%),
    linear-gradient(180deg, rgba(11, 28, 50, 0.18), rgba(11, 28, 50, 0.62));
}

.hero-inner {
  min-height: calc(100svh - 210px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  align-items: end;
  gap: clamp(1.25rem, 4vw, 3rem);
}

.hero-copy {
  padding: 5rem 0 1rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--blue-2);
}

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

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.06;
}

h1 {
  max-width: 790px;
  margin-bottom: 1rem;
  color: var(--white);
  font-size: clamp(2.75rem, 6.4vw, 5.6rem);
  font-weight: 950;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.hero-actions {
  margin-top: 1.35rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.35rem;
}

.hero-badges span {
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 0.72rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.84rem;
  font-weight: 800;
}

.quote-card {
  margin: 3rem 0 1rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  padding: clamp(1rem, 2vw, 1.45rem);
  box-shadow: var(--shadow);
}

.quote-head {
  margin-bottom: 1rem;
}

.quote-head span {
  color: var(--blue-2);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-head h2 {
  margin: 0.35rem 0 0.35rem;
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
}

.quote-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

label,
legend {
  color: var(--ink);
  font-size: 0.83rem;
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  min-height: 48px;
  margin-top: 0.32rem;
  border: 1px solid #cbd7e4;
  border-radius: 6px;
  background: #f8fbfe;
  color: var(--ink);
  padding: 0.78rem 0.85rem;
  font-weight: 700;
}

input:focus,
textarea:focus {
  border-color: var(--blue-2);
  background: var(--white);
  outline: 3px solid rgba(21, 152, 212, 0.16);
}

fieldset {
  margin: 0;
  border: 0;
  padding: 0;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  margin-top: 0.38rem;
}

.chip-list label {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 0.36rem;
  border: 1px solid #d8e2ec;
  border-radius: 999px;
  background: #f8fbfe;
  padding: 0.46rem 0.6rem;
  font-size: 0.8rem;
}

.chip-list input {
  width: 16px;
  min-height: 16px;
  margin: 0;
  accent-color: var(--blue-2);
}

.details-field {
  display: block;
  margin-top: 0.85rem;
}

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

.form-actions {
  margin-top: 1rem;
}

.form-status {
  margin: 1rem 0 0;
  border-left: 4px solid var(--blue-2);
  background: #eef8ff;
  color: var(--navy);
  padding: 0.82rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 800;
}

.sms-fallback {
  display: inline-flex;
  margin-top: 0.75rem;
  color: var(--blue-2);
  font-weight: 900;
  text-decoration: underline;
}

.trust-strip {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: -2.25rem;
  padding: 0.75rem;
  border-radius: 24px 24px 0 0;
  background: rgba(245, 248, 251, 0.92);
  box-shadow: 0 -10px 36px rgba(8, 47, 99, 0.08);
}

.trust-item {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border: 1px solid rgba(8, 47, 99, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1rem;
  box-shadow: 0 14px 32px rgba(8, 47, 99, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.trust-item:hover {
  border-color: rgba(21, 152, 212, 0.28);
  box-shadow: 0 20px 40px rgba(8, 47, 99, 0.12);
  transform: translateY(-3px);
}

.trust-item img,
.trust-stars {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  object-fit: contain;
}

.trust-stars {
  background: transparent url("/assets/badges/five-star-rating.svg") center / contain no-repeat;
}

.trust-item strong {
  display: block;
  color: var(--navy);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.2;
}

.trust-item span:not(.trust-stars) {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

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

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

.section-head h2,
.split h2,
.process-copy h2,
.cta-box h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.section-head p,
.split p,
.process-copy p {
  color: var(--muted);
  font-size: 1.03rem;
}

.intro-section {
  background: linear-gradient(180deg, var(--white), var(--soft));
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.76fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.proof-panel,
.area-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.proof-panel img,
.area-card img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.proof-panel div,
.area-card {
  padding: 1.25rem;
}

.proof-panel div {
  padding-top: 1rem;
}

.proof-panel strong,
.area-card h3 {
  display: block;
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1.2;
}

.proof-panel span,
.area-card p {
  display: block;
  margin-top: 0.55rem;
  color: var(--muted);
  font-weight: 700;
}

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

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

.service-card,
.review-card,
.steps article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(8, 47, 99, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.review-card:hover,
.steps article:hover {
  border-color: rgba(21, 152, 212, 0.32);
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(8, 47, 99, 0.13);
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.service-card div,
.review-card,
.steps article {
  padding: 1.25rem;
}

.service-card h3,
.review-card h3,
.steps h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.service-card p,
.review-card p,
.steps p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 700;
}

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

.reviews-carousel-shell {
  display: block;
}

.reviews-carousel {
  margin-top: 2.25rem;
}

.review-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.2rem 0.15rem 1.25rem;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

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

.reviews-carousel .review-card {
  flex: 0 0 calc((100% - 2rem) / 3);
  display: flex;
  flex-direction: column;
  min-height: 380px;
  padding: 1.45rem;
  border: 1px solid rgba(21, 152, 212, 0.2);
  border-bottom-color: rgba(245, 170, 24, 0.85);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 22px 48px rgba(8, 47, 99, 0.1);
  scroll-snap-align: start;
}

.reviews-carousel .review-card:hover {
  transform: translateY(-3px);
}

.review-card header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.9rem;
  align-items: center;
}

.review-avatar {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--blue-2);
  color: var(--white);
  font-weight: 950;
}

.review-card header strong {
  display: block;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.2;
}

.review-card header span:not(.review-avatar) {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.review-google {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.review-rule {
  height: 1px;
  margin: 1.25rem 0;
  background: var(--line);
}

.review-stars-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.review-stars {
  color: #ffb400;
  font-size: 1.25rem;
  letter-spacing: 0;
}

.review-verified {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #4285f4;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 950;
}

.reviews-carousel .review-card p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 750;
  line-height: 1.55;
}

.review-more {
  width: fit-content;
  margin-top: auto;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--blue-2);
  font: inherit;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.review-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.25rem;
}

.review-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(8, 47, 99, 0.25);
  cursor: pointer;
}

.review-dot.is-active {
  width: 32px;
  background: var(--blue-2);
}

.review-source {
  margin: 1.1rem auto 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.92rem;
  font-weight: 700;
}

.review-source a,
.source-note a {
  color: var(--blue-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.process-section {
  background: var(--navy-2);
  color: var(--white);
}

.process-wrap {
  display: grid;
  grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.process-copy {
  position: sticky;
  top: 142px;
}

.process-copy h2,
.process-copy p,
.steps h3 {
  color: var(--white);
}

.steps article {
  min-height: 290px;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.steps span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy-2);
  font-weight: 950;
}

.steps p {
  color: rgba(255, 255, 255, 0.76);
}

.areas-section {
  background: linear-gradient(180deg, var(--white), #f9fbfd);
}

.area-split {
  align-items: start;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.4rem;
}

.area-tags span {
  border: 1px solid rgba(21, 152, 212, 0.25);
  border-radius: 999px;
  background: #eef8ff;
  color: var(--navy);
  padding: 0.55rem 0.75rem;
  font-size: 0.86rem;
  font-weight: 850;
}

.area-card {
  display: block;
}

.area-card img {
  margin: -1.25rem -1.25rem 1rem;
  width: calc(100% + 2.5rem);
}

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

.faq-wrap {
  max-width: 940px;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(8, 47, 99, 0.07);
}

.faq-button {
  width: 100%;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 1rem 1.1rem;
  text-align: left;
  font-weight: 900;
  cursor: pointer;
}

.faq-button span:last-child {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(21, 152, 212, 0.1);
  color: var(--blue-2);
  font-size: 1.25rem;
}

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

.faq-panel {
  padding: 0 1.1rem 1.1rem;
  color: var(--muted);
  font-weight: 700;
}

.faq-panel p {
  margin-bottom: 0;
}

.cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-2) 100%);
  color: var(--white);
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-box h2 {
  max-width: 690px;
  margin: 0;
  color: var(--white);
}

.site-footer {
  background: var(--navy-2);
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr;
  gap: 2rem;
  padding: 3rem 0;
}

.footer-logo {
  width: 190px;
  max-height: 132px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.footer-grid h3 {
  color: var(--white);
  margin-bottom: 0.8rem;
}

.footer-grid a {
  display: block;
  margin: 0.35rem 0;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 750;
}

.footer-grid a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .container {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.striv-badge img {
  width: 120px;
}

.mobile-bottom {
  display: none;
}

@media (max-width: 1120px) {
  .nav-row {
    grid-template-columns: 190px 1fr auto;
  }

  .brand img {
    width: 108px;
  }

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

@media (max-width: 920px) {
  body {
    padding-bottom: 66px;
  }

  .site-header {
    background: linear-gradient(var(--navy-2) 0 34px, var(--white) 34px);
  }

  .nav-row {
    min-height: 76px;
    grid-template-columns: 1fr auto auto;
  }

  .nav-links,
  .header-actions {
    display: none;
  }

  .brand img {
    width: 100px;
    max-height: 68px;
  }

  .menu-button {
    display: grid;
  }

  .mobile-nav[data-open] {
    display: grid;
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto 1rem;
    gap: 0.35rem;
    border-top: 1px solid var(--line);
    padding-top: 0.75rem;
  }

  .mobile-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    border-radius: var(--radius);
    padding: 0.65rem 0.8rem;
    background: var(--soft);
    color: var(--ink);
    font-weight: 850;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero-copy {
    padding-top: 3.5rem;
  }

  .quote-card {
    margin-top: 0;
  }

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

  .split,
  .process-wrap,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .process-copy {
    position: static;
  }

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

  .reviews-carousel .review-card {
    flex-basis: calc((100% - 1rem) / 2);
  }

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

  .mobile-bottom {
    position: fixed;
    z-index: 1100;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -12px 32px rgba(8, 47, 99, 0.13);
  }

  .mobile-bottom a {
    min-height: 46px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--navy);
    color: var(--white);
    font-weight: 950;
  }

  .mobile-bottom a:last-child {
    background: var(--gold);
    color: var(--navy-2);
  }
}

@media (max-width: 640px) {
  .utility-row {
    justify-content: center;
    text-align: center;
    font-size: 0.76rem;
  }

  .utility-row span {
    display: none;
  }

  .container,
  .utility-row,
  .nav-row,
  .hero-inner,
  .trust-strip {
    width: min(100% - 24px, var(--max));
  }

  .brand img {
    width: 92px;
  }

  .hero {
    padding-top: 0;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(11, 28, 50, 0.86) 0%, rgba(8, 47, 99, 0.8) 46%, rgba(8, 47, 99, 0.68) 100%);
  }

  .hero-copy {
    padding-top: 2.8rem;
  }

  h1 {
    font-size: clamp(2.35rem, 14vw, 4.1rem);
  }

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

  .hero-badges span {
    font-size: 0.79rem;
  }

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

  .trust-strip {
    margin-top: 0;
    border-radius: 0;
    grid-template-columns: 1fr 1fr;
  }

  .trust-strip article {
    min-height: 86px;
    padding: 0.85rem;
  }

  .trust-item {
    align-items: flex-start;
  }

  .trust-item img,
  .trust-stars {
    width: 40px;
    height: 40px;
  }

  .section {
    padding: 3.5rem 0;
  }

  .service-card div,
  .review-card,
  .steps article {
    padding: 1rem;
  }

  .review-track {
    gap: 0.8rem;
    padding-bottom: 1rem;
  }

  .reviews-carousel .review-card {
    flex-basis: min(88%, 340px);
    min-height: 360px;
    padding: 1rem;
  }

  .review-card header {
    gap: 0.7rem;
  }

  .review-avatar,
  .review-google {
    width: 44px;
    height: 44px;
  }

  .footer-bottom .container {
    align-items: flex-start;
    flex-direction: column;
    padding: 1rem 0;
  }
}

@media (max-width: 390px) {
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .reviews-carousel .review-card {
    flex-basis: 100%;
  }

  .brand img {
    width: 84px;
  }
}
