/*
Theme Name: MPS Express Pro
Theme URI: https://mpsexpress.com.br/
Author: Codex
Description: Tema WordPress nativo e profissional para empresa de motoboy e logistica.
Version: 3.7.0
Requires at least: 6.0
Requires PHP: 7.4
License: GPL-2.0-or-later
Text Domain: mps-express-pro
*/

:root {
  --mps-navy: #061a3d;
  --mps-blue: #082f6d;
  --mps-blue-soft: #eef4fb;
  --mps-red: #d8101a;
  --mps-red-dark: #a90008;
  --mps-text: #10213f;
  --mps-muted: #5f6b80;
  --mps-border: #dfe6f0;
  --mps-shadow: 0 18px 45px rgba(6, 26, 61, .14);
  --mps-radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--mps-text);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.45;
}

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

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

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.mps-site {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  background: #fff;
  box-shadow: none;
  overflow: hidden;
}

.mps-container {
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
}

.mps-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(223, 230, 240, .8);
  backdrop-filter: blur(10px);
}

.mps-header-inner {
  position: relative;
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 36px;
}

.mps-logo {
  flex: 0 0 auto;
}

.mps-logo img,
.mps-logo .custom-logo {
  width: 188px;
  max-height: 72px;
  height: auto;
  object-fit: contain;
}

.mps-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
}

.mps-nav a {
  color: var(--mps-navy);
}

.mps-nav a:hover {
  color: var(--mps-red);
}

.mps-menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  border: 1px solid var(--mps-border);
  border-radius: 8px;
  background: #fff;
  color: var(--mps-navy);
  cursor: pointer;
}

.mps-menu-toggle span:not(.screen-reader-text) {
  width: 22px;
  height: 3px;
  display: block;
  border-radius: 999px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.mps-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mps-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mps-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mps-btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 0;
  border-radius: 6px;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

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

.mps-btn-red {
  color: #fff;
  background: linear-gradient(135deg, var(--mps-red), var(--mps-red-dark));
  box-shadow: 0 14px 24px rgba(216, 16, 26, .24);
}

.mps-btn-blue {
  color: #fff;
  background: var(--mps-navy);
  box-shadow: 0 14px 24px rgba(6, 26, 61, .18);
}

.mps-btn-light {
  color: var(--mps-navy);
  background: #fff;
}

.mps-btn-outline {
  border: 2px solid var(--mps-navy);
  color: var(--mps-navy);
  background: transparent;
}

.mps-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 16%, rgba(216, 16, 26, .14), transparent 28%),
    linear-gradient(105deg, #fff 0 42%, rgba(238, 244, 251, .95) 42% 100%);
}

.mps-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(8,47,109,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8,47,109,.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent 0, #000 45%, #000 100%);
  pointer-events: none;
}

.mps-hero-copy {
  position: relative;
  z-index: 2;
  padding: 58px 0 52px max(64px, calc((100vw - 1240px) / 2));
}

.mps-eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--mps-red);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.mps-title {
  margin: 0;
  color: var(--mps-navy);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-style: italic;
  font-weight: 900;
  line-height: .96;
  text-transform: uppercase;
}

.mps-title span {
  color: var(--mps-red);
}

.mps-hero h1 {
  max-width: 560px;
  font-size: 56px;
}

.mps-hero-copy p {
  max-width: 470px;
  margin: 18px 0 22px;
  color: var(--mps-muted);
  font-size: 18px;
  font-weight: 700;
}

.mps-check-list {
  display: grid;
  gap: 12px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
  font-weight: 800;
}

.mps-check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mps-check-list li::before {
  content: "";
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  border: 2px solid var(--mps-red);
  border-radius: 50%;
  background:
    linear-gradient(45deg, transparent 45%, var(--mps-red) 46% 55%, transparent 56%) 3px 6px / 10px 8px no-repeat;
}

.mps-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.mps-hero-visual {
  position: relative;
  z-index: 1;
  min-height: 520px;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.mps-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.mps-route-line {
  position: absolute;
  left: -80px;
  right: 80px;
  bottom: 58px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #39a4ff, #fff, var(--mps-red), transparent);
  box-shadow: 0 0 22px rgba(216, 16, 26, .58);
  transform: rotate(-10deg);
}

.mps-stats {
  background: linear-gradient(90deg, #063273, #061a3d 58%, #063273);
  color: #fff;
}

.mps-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 118px;
  align-items: center;
}

.mps-stat {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  padding: 0 28px;
  border-right: 1px solid rgba(255,255,255,.35);
}

.mps-stat:last-child {
  border-right: 0;
}

.mps-stat svg {
  width: 46px;
  height: 46px;
  color: #fff;
}

.mps-stat strong {
  display: block;
  color: #ff2530;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 36px;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.mps-stat span {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.mps-business {
  position: relative;
  padding: 58px 0 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.96) 0 48%, rgba(238,244,251,.82) 48% 100%),
    repeating-linear-gradient(35deg, rgba(8,47,109,.08) 0 1px, transparent 1px 34px);
}

.mps-business-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 36px;
  align-items: stretch;
}

.mps-business-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 34px;
}

.mps-business-title {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 28px;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-style: italic;
  font-weight: 900;
  line-height: .92;
  text-transform: uppercase;
}

.mps-business-title strong,
.mps-business-title span {
  display: block;
  padding: 8px 18px 10px;
  transform: skew(-8deg);
  color: #fff;
}

.mps-business-title strong {
  background: var(--mps-navy);
  font-size: 56px;
  box-shadow: 10px -10px 0 rgba(6, 26, 61, .18);
}

.mps-business-title span {
  margin-top: -2px;
  background: var(--mps-red);
  font-size: 48px;
}

.mps-business-items {
  display: grid;
  gap: 20px;
}

.mps-business-items article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: center;
}

.mps-business-icon {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--mps-navy);
  border-radius: 50%;
  background: #fff;
  color: var(--mps-navy);
}

.mps-business-icon svg {
  width: 34px;
  height: 34px;
}

.mps-business-items h3 {
  margin: 0 0 4px;
  color: var(--mps-navy);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 31px;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.mps-business-items h3 span {
  color: var(--mps-red);
}

.mps-business-items p {
  margin: 0;
  color: var(--mps-text);
  font-size: 18px;
  font-weight: 700;
}

.mps-business-panel {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  padding: 38px;
  border-radius: 12px 12px 0 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(216, 16, 26, .22), transparent 26%),
    linear-gradient(135deg, var(--mps-navy), #082f6d);
  box-shadow: var(--mps-shadow);
  overflow: hidden;
}

.mps-business-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: .55;
}

.mps-business-panel::after {
  content: "";
  position: absolute;
  left: 8%;
  right: -8%;
  bottom: 32%;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #4cb1ff, #fff, var(--mps-red), transparent);
  box-shadow: 0 0 24px rgba(216, 16, 26, .55);
  transform: rotate(-9deg);
}

.mps-operation-card,
.mps-operation-grid,
.mps-operation-highlight {
  position: relative;
  z-index: 2;
}

.mps-operation-card {
  max-width: 520px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 10px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 20px 40px rgba(0,0,0,.18);
}

.mps-operation-card span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #fff0f1;
  color: var(--mps-red);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
}

.mps-operation-card strong {
  display: block;
  color: var(--mps-navy);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 38px;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.mps-operation-card p {
  margin: 14px 0 0;
  color: var(--mps-muted);
  font-weight: 700;
}

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

.mps-operation-grid article {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  backdrop-filter: blur(4px);
}

.mps-operation-grid b {
  color: var(--mps-red);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 32px;
  font-style: italic;
  line-height: 1;
}

.mps-operation-grid span {
  margin-top: 8px;
  font-weight: 900;
}

.mps-operation-highlight {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
  max-width: 560px;
  padding: 18px 20px;
  border-radius: 8px;
  background: rgba(6, 26, 61, .68);
  color: #fff;
}

.mps-operation-highlight svg {
  width: 46px;
  height: 46px;
}

.mps-operation-highlight b,
.mps-operation-highlight small {
  display: block;
}

.mps-operation-highlight b {
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
}

.mps-operation-highlight small {
  color: rgba(255,255,255,.82);
}

.mps-business-band {
  position: relative;
  z-index: 3;
  margin-top: -26px;
  background: linear-gradient(90deg, var(--mps-navy), var(--mps-blue));
  color: #fff;
}

.mps-business-band-grid {
  min-height: 118px;
  display: grid;
  grid-template-columns: 1.1fr 1fr 80px;
  gap: 26px;
  align-items: center;
}

.mps-business-map {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 20px;
  align-items: center;
}

.mps-business-map > span {
  width: 78px;
  height: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff;
  border-radius: 50%;
  color: var(--mps-red);
  font-size: 42px;
  font-weight: 900;
}

.mps-business-map strong,
.mps-business-map small {
  display: block;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-style: italic;
  font-weight: 900;
  line-height: .95;
  text-transform: uppercase;
}

.mps-business-map strong {
  font-size: 38px;
}

.mps-business-map small {
  width: fit-content;
  margin-top: 6px;
  padding: 4px 10px;
  background: var(--mps-red);
  font-size: 24px;
}

.mps-business-band ul {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0 0 0 18px;
  border-left: 1px solid rgba(255,255,255,.45);
  list-style: none;
  font-weight: 800;
}

.mps-business-band li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--mps-red);
  font-weight: 900;
}

.mps-business-band li:last-child {
  color: #ff3942;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 22px;
  font-style: italic;
  text-transform: uppercase;
}

.mps-business-truck svg {
  width: 58px;
  height: 58px;
}

.mps-business-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 24px 0 34px;
  background: var(--mps-navy);
  color: #fff;
}

.mps-business-benefits article {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 18px 22px 10px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.35);
}

.mps-business-benefits article:last-child {
  border-right: 0;
}

.mps-business-benefits svg {
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  color: #fff;
}

.mps-business-benefits b {
  display: block;
  margin-bottom: 6px;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 23px;
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
}

.mps-business-benefits p {
  max-width: 190px;
  margin: 0;
  color: rgba(255,255,255,.84);
  font-size: 14px;
}

.mps-section {
  padding: 58px 0;
  background: #fff;
}

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

.mps-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.mps-section-head h2 {
  font-size: 46px;
}

.mps-section-head p {
  max-width: 460px;
  margin: 0;
  color: var(--mps-muted);
  font-weight: 700;
}

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

.mps-card {
  border: 1px solid var(--mps-border);
  border-radius: var(--mps-radius);
  background: #fff;
  box-shadow: 0 10px 24px rgba(6, 26, 61, .08);
}

.mps-service-card {
  min-height: 218px;
  padding: 28px;
  transition: transform .18s ease, box-shadow .18s ease;
}

.mps-service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--mps-shadow);
}

.mps-icon-box {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 8px;
  background: #f1f5fb;
  color: var(--mps-blue);
}

.mps-icon-box.red {
  background: #fff0f1;
  color: var(--mps-red);
}

.mps-icon-box svg {
  width: 32px;
  height: 32px;
}

.mps-service-card h3,
.mps-why-card h3 {
  margin: 0 0 10px;
  color: var(--mps-navy);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.mps-service-card p,
.mps-why-card p,
.mps-testimonial p {
  margin: 0;
  color: var(--mps-muted);
}

.mps-coverage {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 42px;
  align-items: center;
}

.mps-coverage h2 {
  font-size: 46px;
}

.mps-coverage p {
  color: var(--mps-muted);
  font-weight: 700;
}

.mps-region-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 18px;
  margin: 26px 0 30px;
  padding: 0;
  list-style: none;
  font-weight: 800;
}

.mps-region-list li::before {
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-right: 8px;
  border: 3px solid var(--mps-red);
  border-radius: 50%;
}

.mps-map-photo {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(223, 230, 240, .9);
  border-radius: 12px;
  background: rgba(255, 255, 255, .84);
  box-shadow: var(--mps-shadow);
}

.mps-map-photo::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 9px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.55);
  pointer-events: none;
}

.mps-map-photo img {
  width: 100%;
  border-radius: 9px;
  object-fit: cover;
}

.mps-logistics {
  display: grid;
  grid-template-columns: .9fr 1fr .82fr;
  align-items: stretch;
  background: linear-gradient(120deg, #061a3d 0 48%, #082f6d 100%);
  color: #fff;
}

.mps-logistics-copy {
  padding: 58px 0 58px max(64px, calc((100vw - 1240px) / 2));
}

.mps-logistics h2 {
  color: #fff;
  font-size: 46px;
}

.mps-logistics-copy p {
  max-width: 340px;
  color: rgba(255,255,255,.86);
  font-weight: 700;
}

.mps-logistics ul {
  display: grid;
  gap: 11px;
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
  font-weight: 800;
}

.mps-logistics li::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 15px;
  margin-right: 11px;
  border: solid var(--mps-red);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.mps-logistics-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.mps-benefits {
  margin: 38px max(64px, calc((100vw - 1240px) / 2)) 38px 0;
  padding: 28px;
  border-radius: 8px;
  background: #fff;
  color: var(--mps-text);
  box-shadow: var(--mps-shadow);
}

.mps-benefits h3 {
  margin: 0 0 24px;
  color: var(--mps-navy);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 32px;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.mps-benefits h3 span {
  color: var(--mps-red);
}

.mps-benefit {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  margin-top: 18px;
}

.mps-benefit svg {
  width: 36px;
  height: 36px;
  color: var(--mps-blue);
}

.mps-benefit b {
  display: block;
  color: var(--mps-navy);
}

.mps-benefit p {
  margin: 2px 0 0;
  color: var(--mps-muted);
  font-size: 14px;
}

.mps-why-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 46px;
}

.mps-why-grid,
.mps-testimonial-grid {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

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

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

.mps-why-card,
.mps-testimonial {
  padding: 24px;
}

.mps-testimonial {
  min-height: 212px;
}

.mps-stars {
  display: block;
  margin-bottom: 20px;
  color: var(--mps-red);
  letter-spacing: 3px;
}

.mps-testimonial p {
  min-height: 58px;
  font-style: italic;
}

.mps-testimonial b,
.mps-testimonial small {
  display: block;
}

.mps-testimonial b {
  margin-top: 16px;
  color: var(--mps-navy);
}

.mps-google-reviews {
  margin-top: 26px;
}

.mps-google-reviews > * {
  max-width: 100%;
}

.mps-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(110deg, #061a3d 0 58%, #d8101a 58% 100%);
  color: #fff;
}

.mps-cta-inner {
  min-height: 132px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 24px;
}

.mps-cta strong {
  display: block;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 42px;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.mps-cta p {
  margin: 4px 0 0;
  font-size: 23px;
}

.mps-cta-phone {
  font-size: 44px;
  font-weight: 900;
  text-align: right;
}

.mps-cta-phone span {
  display: block;
  font-size: 18px;
  font-weight: 700;
}

.mps-footer {
  background: linear-gradient(120deg, #061a3d, #082f6d);
  color: #fff;
  padding: 50px 0 54px;
}

.mps-footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .9fr 1.1fr 1.15fr;
  gap: 42px;
}

.mps-footer-logo-wrap {
  margin-bottom: 22px;
}

.mps-footer-logo-wrap img,
.mps-footer-logo-wrap .custom-logo {
  width: 175px;
  max-height: 74px;
  object-fit: contain;
}

.mps-footer-brand {
  display: inline-flex;
  flex-direction: column;
  margin-bottom: 22px;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-style: italic;
  font-weight: 900;
  line-height: .86;
  text-transform: uppercase;
}

.mps-footer-brand span {
  color: var(--mps-red);
  font-size: 54px;
  letter-spacing: 0;
}

.mps-footer-brand small {
  color: #fff;
  font-size: 29px;
  letter-spacing: 0;
}

.mps-footer p {
  margin: 0;
  color: rgba(255,255,255,.82);
}

.mps-footer-slogan {
  max-width: 220px;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 17px;
  font-style: italic;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.mps-footer h3 {
  margin: 0 0 18px;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.mps-footer a,
.mps-footer span {
  display: block;
  margin-bottom: 9px;
  color: rgba(255,255,255,.88);
  font-size: 15px;
}

.mps-footer a.mps-footer-brand {
  display: inline-flex;
  margin-bottom: 22px;
}

.mps-footer a.mps-footer-brand span {
  display: block;
  margin-bottom: 0;
  color: var(--mps-red);
  font-size: 54px;
}

.mps-footer a.mps-footer-brand small {
  display: block;
  color: #fff;
  font-size: 29px;
}

@media (max-width: 1180px) {
  .mps-container {
    width: min(900px, calc(100% - 40px));
  }

  .mps-header-inner,
  .mps-nav {
    flex-wrap: wrap;
  }

  .mps-nav {
    order: 3;
    width: auto;
    justify-content: flex-start;
    gap: 18px;
  }

  .mps-hero,
  .mps-logistics,
  .mps-coverage,
  .mps-why-layout,
  .mps-footer-grid {
    grid-template-columns: 1fr;
  }

  .mps-hero-copy,
  .mps-logistics-copy {
    padding-left: 40px;
  }

  .mps-benefits {
    margin: 0 40px 42px;
  }

  .mps-services-grid,
  .mps-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mps-business-grid,
  .mps-business-band-grid,
  .mps-business-benefits {
    grid-template-columns: 1fr 1fr;
  }

  .mps-business-panel {
    min-height: 420px;
  }

  .mps-footer-grid {
    gap: 28px;
  }
}

@media (max-width: 760px) {
  .mps-container {
    width: calc(100% - 32px);
  }

  .mps-header-inner {
    min-height: auto;
    padding: 18px 0;
    gap: 14px;
  }

  .mps-logo img,
  .mps-logo .custom-logo {
    width: 165px;
    max-height: 62px;
  }

  .mps-menu-toggle {
    display: inline-flex;
    order: 2;
  }

  .mps-nav {
    position: absolute;
    top: calc(100% - 1px);
    left: 16px;
    right: 16px;
    width: 100%;
    display: none;
    order: 4;
    padding: 14px;
    border: 1px solid var(--mps-border);
    border-radius: 10px;
    background: #fff;
    box-shadow: var(--mps-shadow);
    grid-template-columns: 1fr;
    gap: 6px;
    font-size: 15px;
    text-align: left;
  }

  .mps-nav.is-open {
    display: grid;
  }

  .mps-nav a {
    padding: 12px 14px;
    border-radius: 6px;
    background: #f4f7fb;
  }

  .mps-btn {
    width: 100%;
  }

  .mps-header .mps-btn {
    order: 3;
    width: auto;
    min-height: 42px;
    padding: 0 18px;
  }

  .mps-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .mps-hero-copy {
    padding: 34px 24px 28px;
  }

  .mps-hero h1 {
    font-size: 39px;
    max-width: 100%;
  }

  .mps-hero-copy p {
    font-size: 16px;
  }

  .mps-hero-visual {
    min-height: 280px;
  }

  .mps-hero-visual img {
    object-position: 60% center;
  }

  .mps-route-line {
    display: none;
  }

  .mps-stats-grid,
  .mps-business-grid,
  .mps-business-band-grid,
  .mps-business-benefits,
  .mps-services-grid,
  .mps-why-grid,
  .mps-testimonial-grid,
  .mps-cta-inner {
    grid-template-columns: 1fr;
  }

  .mps-stat {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.26);
    padding: 22px 0;
  }

  .mps-stat:last-child {
    border-bottom: 0;
  }

  .mps-business {
    padding-top: 42px;
  }

  .mps-business-title strong {
    font-size: 39px;
  }

  .mps-business-title span {
    font-size: 34px;
  }

  .mps-business-items {
    gap: 18px;
  }

  .mps-business-items article {
    grid-template-columns: 58px 1fr;
    gap: 14px;
  }

  .mps-business-icon {
    width: 52px;
    height: 52px;
  }

  .mps-business-icon svg {
    width: 28px;
    height: 28px;
  }

  .mps-business-items h3 {
    font-size: 24px;
  }

  .mps-business-items p {
    font-size: 15px;
  }

  .mps-business-panel {
    min-height: auto;
    padding: 22px;
    border-radius: 10px;
  }

  .mps-operation-card {
    padding: 22px;
  }

  .mps-operation-card strong {
    font-size: 29px;
  }

  .mps-operation-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mps-operation-grid article {
    min-height: 92px;
  }

  .mps-operation-highlight {
    grid-template-columns: 42px 1fr;
    padding: 16px;
  }

  .mps-operation-highlight svg {
    width: 36px;
    height: 36px;
  }

  .mps-operation-highlight b {
    font-size: 20px;
  }

  .mps-business-band {
    margin-top: 0;
  }

  .mps-business-band-grid {
    padding: 22px 0;
  }

  .mps-business-map {
    grid-template-columns: 64px 1fr;
    gap: 14px;
  }

  .mps-business-map > span {
    width: 58px;
    height: 58px;
    font-size: 32px;
  }

  .mps-business-map strong {
    font-size: 29px;
  }

  .mps-business-map small {
    font-size: 19px;
  }

  .mps-business-band ul {
    padding-left: 0;
    border-left: 0;
  }

  .mps-business-truck {
    display: none;
  }

  .mps-business-benefits {
    padding: 16px;
    background: var(--mps-navy);
  }

  .mps-business-benefits article {
    min-height: auto;
    padding: 18px 12px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.22);
  }

  .mps-business-benefits article:last-child {
    border-bottom: 0;
  }

  .mps-section {
    padding: 46px 0;
  }

  .mps-section-head {
    display: block;
  }

  .mps-section-head h2,
  .mps-coverage h2,
  .mps-logistics h2 {
    font-size: 36px;
  }

  .mps-service-card,
  .mps-why-card,
  .mps-testimonial {
    padding: 22px;
  }

  .mps-map-photo {
    padding: 10px;
    border-radius: 10px;
  }

  .mps-map-photo img {
    border-radius: 8px;
  }

  .mps-logistics-copy {
    padding: 36px 24px 28px;
  }

  .mps-logistics-visual {
    min-height: 300px;
  }

  .mps-logistics-visual img {
    object-position: center;
  }

  .mps-benefits {
    margin: 0 24px 36px;
    padding: 22px;
  }

  .mps-cta {
    background: linear-gradient(180deg, #061a3d 0 52%, #d8101a 52% 100%);
  }

  .mps-cta-inner {
    padding: 26px 0;
  }

  .mps-cta strong {
    font-size: 32px;
  }

  .mps-cta-phone {
    font-size: 34px;
    text-align: left;
  }

  .mps-footer {
    padding: 38px 0 42px;
  }

  .mps-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .mps-footer-logo-wrap img,
  .mps-footer-logo-wrap .custom-logo {
    width: 160px;
  }
}
