:root {
  --red: #e51f2d;
  --red-dark: #b91420;
  --blue: #0d1b3d;
  --blue-2: #172a56;
  --white: #ffffff;
  --gray: #f4f6f9;
  --gray-2: #e3e8ef;
  --text: #171b24;
  --muted: #626b7a;
  --black-soft: #101217;
  --shadow: 0 24px 60px rgba(13, 27, 61, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
}

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

button,
input,
select {
  font: inherit;
}

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

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

.top-track-cta {
  position: absolute;
  left: 50%;
  bottom: -28px;
  z-index: 60;
  width: min(280px, calc(100% - 48px));
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 999px;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 0 rgba(0, 0, 0, 0.9), 0 22px 34px rgba(13, 27, 61, 0.24);
  font-weight: 900;
  transform: translateX(-50%);
}

.top-track-cta:hover,
.top-track-cta:focus {
  background: var(--red-dark);
  color: var(--white);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
}

.brand-logo {
  width: 58px;
  height: 58px;
  display: block;
  border-radius: 8px;
  object-fit: contain;
  background: var(--blue);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 1.13rem;
  line-height: 1;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
}

.main-menu {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 0.91rem;
  font-weight: 800;
}

.main-menu a {
  padding: 10px 0;
}

.main-menu a:hover,
.main-menu a:focus {
  color: var(--red);
}

.login-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px !important;
  border-radius: 8px;
  color: var(--white) !important;
  background: var(--blue);
}

.client-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px !important;
  border-radius: 8px;
  color: var(--white) !important;
  background: var(--red);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gray-2);
  border-radius: 8px;
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: var(--blue);
}

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

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 76px);
  padding: 82px 0 42px;
  background:
    linear-gradient(115deg, rgba(13, 27, 61, 0.96), rgba(23, 42, 86, 0.92)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 86px);
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -20% 45%;
  height: 320px;
  background: rgba(229, 31, 45, 0.18);
  transform: skewY(-8deg);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 48px;
  align-items: center;
}

.hero-content h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  line-height: 0.99;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.18rem;
  line-height: 1.7;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.is-hidden {
  display: none !important;
}

.hero .eyebrow,
.companies-band .eyebrow {
  color: #ff6f79;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 16px 28px rgba(229, 31, 45, 0.24);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--red-dark);
}

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

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

.hero-visual {
  display: grid;
  gap: 16px;
}

.route-card,
.vehicle-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.route-card {
  min-height: 230px;
  padding: 26px;
}

.route-status {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--white);
  background: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
}

.route-card strong {
  display: block;
  font-size: 1.8rem;
}

.route-card p,
.vehicle-card p {
  color: rgba(255, 255, 255, 0.74);
}

.route-line {
  position: relative;
  height: 8px;
  margin-top: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.route-line span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 68%;
  border-radius: inherit;
  background: var(--red);
}

.vehicle-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
}

.vehicle-box {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  border-radius: 8px;
  background: var(--white);
  position: relative;
}

.vehicle-box::before,
.vehicle-box::after {
  content: "";
  position: absolute;
  bottom: -8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
}

.vehicle-box::before {
  left: 8px;
}

.vehicle-box::after {
  right: 8px;
}

.floating-box {
  grid-column: 1 / -1;
  max-width: 880px;
  margin-top: 16px;
  border: 1px solid var(--gray-2);
  border-radius: 8px;
  background: var(--white);
  color: var(--text);
  box-shadow: var(--shadow);
}

.tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--gray-2);
}

.tab-button {
  min-height: 56px;
  border: 0;
  background: var(--gray);
  color: var(--muted);
  font-weight: 900;
  cursor: pointer;
}

.tab-button.is-active {
  color: var(--red);
  background: var(--white);
}

.tab-panel {
  display: none;
  padding: 22px;
}

.tab-panel.is-active {
  display: block;
}

.tracking-form,
.mini-quote-form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 900;
}

input,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--gray-2);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--text);
  background: var(--white);
}

input:focus,
select:focus {
  outline: 3px solid rgba(229, 31, 45, 0.14);
  border-color: var(--red);
}

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

.tracking-code-field {
  min-height: 48px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0;
  border: 1px solid var(--gray-2);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.tracking-code-field span {
  height: 100%;
  display: inline-flex;
  align-items: center;
  padding: 0 12px 0 14px;
  color: var(--blue);
  background: var(--gray);
  font-weight: 900;
}

.tracking-code-field input {
  min-height: 46px;
  border: 0;
  border-radius: 0;
  padding-left: 12px;
}

.tracking-code-field:focus-within {
  outline: 3px solid rgba(229, 31, 45, 0.14);
  border-color: var(--red);
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.quote-total {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(229, 31, 45, 0.22);
  border-radius: 8px;
  color: var(--blue);
  background: rgba(229, 31, 45, 0.06);
  font-size: 1rem;
  font-weight: 900;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 28px 0 8px;
}

.quick-actions a {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border: 1px solid var(--gray-2);
  border-radius: 8px;
  color: var(--blue);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(13, 27, 61, 0.07);
  font-weight: 900;
  text-align: center;
}

.quick-actions a:hover,
.quick-actions a:focus {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.returns-banner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-top: 22px;
  padding: 30px;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(13, 27, 61, 0.98), rgba(23, 42, 86, 0.96)),
    linear-gradient(90deg, rgba(229, 31, 45, 0.18), rgba(255, 255, 255, 0));
  box-shadow: var(--shadow);
}

.returns-banner::after {
  content: "0";
  position: absolute;
  right: 28px;
  bottom: -52px;
  color: rgba(255, 255, 255, 0.08);
  font-size: 12rem;
  font-weight: 900;
  line-height: 1;
}

.returns-copy {
  position: relative;
  z-index: 1;
}

.returns-badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--white);
  background: var(--red);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.returns-banner h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
}

.returns-banner p {
  max-width: 720px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.65;
}

.returns-banner .btn {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.delivery-time-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: center;
  gap: 24px;
  margin-top: 18px;
  padding: 28px 30px;
  border: 1px solid var(--gray-2);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(13, 27, 61, 0.08);
}

.delivery-time-copy h2 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.06;
}

.delivery-time-copy p {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.delivery-time-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.delivery-time-grid article {
  min-height: 120px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 18px;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
  text-align: center;
}

.delivery-time-grid article:first-child {
  background: var(--red);
}

.delivery-time-grid strong {
  font-size: 2rem;
  line-height: 1;
}

.delivery-time-grid span {
  font-weight: 900;
}

.section-block {
  padding: 74px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading h2,
.coverage-copy h2 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.coverage-copy p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.05rem;
}

.compact {
  margin-bottom: 0;
}

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

.service-grid article,
.client-track article {
  border: 1px solid var(--gray-2);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(13, 27, 61, 0.08);
}

.service-grid article {
  min-height: 216px;
  padding: 26px;
}

.service-grid span {
  color: var(--red);
  font-weight: 900;
}

.service-grid h3 {
  margin: 18px 0 10px;
  color: var(--blue);
  font-size: 1.22rem;
}

.service-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.other-services {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 34px;
  align-items: start;
  border-top: 1px solid var(--gray-2);
}

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

.pill-grid span {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 18px;
  border-left: 4px solid var(--red);
  border-radius: 8px;
  color: var(--blue);
  background: var(--gray);
  font-weight: 900;
}

.companies-band {
  padding: 72px 0;
  color: var(--white);
  background: var(--blue);
}

.companies-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.companies-grid h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.06;
}

.companies-grid p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

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

.metric-grid article {
  min-height: 140px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: var(--blue-2);
}

.metric-grid strong {
  font-size: 1.3rem;
}

.metric-grid span {
  color: rgba(255, 255, 255, 0.74);
}

.client-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 4px 0 18px;
}

.client-carousel::before,
.client-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 80px;
  pointer-events: none;
}

.client-carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--white), rgba(255, 255, 255, 0));
}

.client-carousel::after {
  right: 0;
  background: linear-gradient(270deg, var(--white), rgba(255, 255, 255, 0));
}

.client-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: client-scroll 42s linear infinite;
}

.client-carousel:hover .client-track {
  animation-play-state: paused;
}

.client-track article {
  flex: 0 0 185px;
  min-height: 112px;
  display: grid;
  place-items: center;
  padding: 18px;
  color: var(--blue);
  font-size: 1rem;
  font-weight: 900;
  text-align: center;
}

.client-track img {
  display: block;
  width: min(132px, 100%);
  max-height: 72px;
  object-fit: contain;
}

@keyframes client-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 7px));
  }
}

.coverage-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: center;
  border-top: 1px solid var(--gray-2);
}

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

.coverage-cards article {
  min-height: 150px;
  display: grid;
  place-items: center;
  padding: 22px;
  border-radius: 8px;
  color: var(--white);
  font-size: 1.45rem;
  font-weight: 900;
  text-align: center;
}

.active-city {
  background: var(--red);
}

.active-city:nth-child(2) {
  background: var(--blue);
}

.soon-city {
  grid-column: 1 / -1;
  background: var(--black-soft);
}

.contact-section {
  text-align: center;
  border-top: 1px solid var(--gray-2);
}

.contact-section .section-heading {
  margin: 0 auto;
}

.contact-actions {
  justify-content: center;
}

.contact-section .mini-quote-form {
  max-width: 820px;
  margin: 28px auto 0;
  padding: 24px;
  border: 1px solid var(--gray-2);
  border-radius: 8px;
  background: var(--gray);
  box-shadow: 0 16px 34px rgba(13, 27, 61, 0.08);
  text-align: left;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.25fr 0.9fr;
  gap: 54px;
  padding: 46px max(16px, calc((100% - 1180px) / 2));
  color: var(--white);
  background: #565656;
}

.footer-column h2 {
  display: inline-flex;
  margin: 0 0 22px;
  padding: 8px 14px;
  color: var(--white);
  background: var(--red);
  font-size: 1rem;
  font-style: italic;
  line-height: 1;
  transform: skewX(-12deg);
}

.footer-column h2,
.footer-column h2 * {
  letter-spacing: 0;
}

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

.footer-list li,
.footer-links a {
  position: relative;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.45;
}

.footer-list li::before,
.footer-links a::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--red);
  vertical-align: middle;
}

.footer-button {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--red);
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
}

.footer-social {
  display: grid;
  align-content: start;
  justify-items: end;
  gap: 28px;
}

.social-icons {
  display: flex;
  gap: 22px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--red);
  background: var(--white);
  font-size: 1.2rem;
  font-weight: 900;
}

.social-icons svg {
  width: 21px;
  height: 21px;
}

.social-icons .instagram-icon {
  width: 23px;
  height: 23px;
}

.footer-brand-block {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: right;
}

.footer-brand-block img {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  object-fit: contain;
  background: var(--blue);
}

.footer-brand-block strong,
.footer-brand-block span {
  display: block;
}

.footer-brand-block strong {
  font-size: 1.2rem;
}

.footer-brand-block span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.client-page {
  background: var(--gray);
}

.client-main {
  min-height: calc(100vh - 76px);
  padding: 44px 0 72px;
}

.client-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.client-hero h1 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.client-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.7;
}

.commercial-card {
  overflow: hidden;
  border: 1px solid var(--gray-2);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.commercial-card-header {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
  color: var(--white);
  background: #071018;
}

.commercial-card-header h2 {
  margin: 0;
  font-size: 1.2rem;
}

.header-icon {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-weight: 900;
}

.commercial-form {
  padding: 28px;
}

.commercial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 72px;
  row-gap: 34px;
}

.commercial-grid label {
  position: relative;
  font-weight: 700;
}

.commercial-grid input,
.commercial-grid select {
  min-height: 38px;
  border-width: 0 0 1px;
  border-radius: 0;
  padding: 0;
  background: transparent;
}

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

@media (max-width: 1020px) {
  .menu-toggle {
    display: inline-flex;
  }

  .main-menu {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 16px 18px;
    background: var(--white);
    border-bottom: 1px solid var(--gray-2);
  }

  .main-menu.is-open {
    display: flex;
  }

  .main-menu a {
    padding: 14px 0;
  }

  .login-link {
    margin-top: 8px;
  }

  .client-link {
    margin-top: 8px;
  }

  .top-track-cta {
    bottom: -24px;
    min-height: 48px;
    width: min(260px, calc(100% - 36px));
  }

  .hero-inner,
  .other-services,
  .companies-grid,
  .coverage-section {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 540px;
  }

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

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

  .returns-banner {
    grid-template-columns: 1fr;
  }

  .delivery-time-banner {
    grid-template-columns: 1fr;
  }

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

  .commercial-grid {
    column-gap: 34px;
  }

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

  .footer-social {
    grid-column: 1 / -1;
    justify-items: start;
  }

  .footer-brand-block {
    text-align: left;
  }
}

@media (max-width: 660px) {
  .section-shell,
  .hero-inner,
  .nav-shell {
    width: calc(100% - 24px);
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  .hero-lead {
    font-size: 1.04rem;
  }

  .input-row,
  .mini-grid,
  .service-grid,
  .pill-grid,
  .metric-grid,
  .quick-actions,
  .coverage-cards {
    grid-template-columns: 1fr;
  }

  .floating-box {
    margin-top: 0;
  }

  .returns-banner {
    padding: 24px;
  }

  .returns-banner .btn {
    width: 100%;
  }

  .delivery-time-banner {
    padding: 22px;
  }

  .delivery-time-grid {
    grid-template-columns: 1fr;
  }

  .tab-panel,
  .service-grid article {
    padding: 20px;
  }

  .coverage-cards article {
    min-height: 116px;
  }

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

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

  .static-menu {
    display: flex;
    position: static;
    flex-direction: row;
    padding: 0;
    border: 0;
  }

  .commercial-form {
    padding: 20px;
  }

  .commercial-grid {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }

  .commercial-actions {
    align-items: stretch;
    flex-direction: column;
  }
}
