:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --text: #1a1d47;
  --muted: #4f577a;
  --line: #d6daf1;
  --brand: #2b2e83;
  --brand-strong: #21246a;
  --brand-soft: #e9ebff;
  --accent: #f28c28;
  --tertiary: #2da4da;
  --road-dark: #1a1e5d;
  --topbar-height: 76px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 18%, #edf0ff 0, transparent 35%),
    radial-gradient(circle at 88% 12%, #e7f6fc 0, transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f9fafe 100%),
    var(--bg);
  min-height: 100vh;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(43, 46, 131, 0.12);
  box-shadow: 0 10px 24px rgba(26, 29, 71, 0.06);
}

.topbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
}

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

.brand img {
  height: 28px;
  width: auto;
  display: block;
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.menu a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  font-family: "Quicksand", sans-serif;
  font-size: 0.95rem;
  padding-bottom: 0.2rem;
}

.menu a:hover {
  color: var(--brand);
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.12rem;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.menu a:hover::after,
.menu a.active::after {
  transform: scaleX(1);
}

.btn-empresa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-family: "Quicksand", sans-serif;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(242, 140, 40, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn-empresa:hover {
  background: #de7f24;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(242, 140, 40, 0.34);
}

.btn-empresa.active {
  background: var(--brand);
  box-shadow: 0 8px 22px rgba(43, 46, 131, 0.22);
}

.hero-wrapper {
  padding: 0 0 3rem;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
  padding: 1.25rem;
  border-radius: 0;
  background:
    linear-gradient(rgba(17, 20, 76, 0.76), rgba(17, 20, 76, 0.76)),
    url("../assets/images/company-warehouse-truck.jpg") center / cover no-repeat;
  box-shadow: none;
  position: relative;
}

.hero-left,
.hero-right {
  border-radius: 24px;
  padding: 2rem;
  box-shadow: none;
  background: rgba(14, 17, 56, 0.18);
  backdrop-filter: blur(1.2px);
  position: relative;
  z-index: 1;
}

.hero-left {
  color: #ffffff;
}

.kicker {
  margin: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  color: #9fe4ff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
}

h1 {
  margin: 0.6rem 0 1.5rem;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: #ffffff;
  text-shadow: 0 3px 12px rgba(15, 18, 56, 0.45);
}

.hero-lead {
  margin: -0.45rem 0 1.15rem;
  color: #dce7ff;
  max-width: 48ch;
  line-height: 1.55;
}

.tracking-form label {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: #e7eeff;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
}

.tracking-control {
  display: flex;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
}

.tracking-control input {
  flex: 1;
  border: none;
  padding: 0.95rem 1rem;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  background: transparent;
}

.tracking-control input:focus {
  outline: none;
}

.tracking-control input::placeholder {
  color: #d5e2ff;
}

.tracking-control button {
  border: none;
  background: rgba(43, 46, 131, 0.92);
  color: #fff;
  padding: 0 1.2rem;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  cursor: pointer;
  text-shadow: 0 1px 2px rgba(9, 11, 34, 0.5);
}

.tracking-control button:hover {
  background: rgba(33, 36, 106, 0.96);
}

.tracking-result {
  margin-top: 0;
  border-radius: 14px;
  padding: 0.8rem 0.9rem;
  background: #f5f7ff;
  border: 1px solid #dde3ff;
  color: var(--text);
}

.tracking-result.is-hidden {
  display: none;
}

.tracking-result p {
  margin: 0;
}

.tracking-result .tracking-head {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  margin-bottom: 0.55rem;
}

.tracking-result .tracking-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border-radius: 999px;
  padding: 0.25rem 0.55rem;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.82rem;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
}

.tracking-result .tracking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem 0.7rem;
  margin-top: 0.45rem;
  font-size: 0.88rem;
}

.tracking-result .tracking-label {
  color: #2d3f87;
  margin-right: 0.35rem;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
}

.tracking-result .tracking-steps {
  margin: 0.55rem 0 0;
  padding-left: 1rem;
}

.tracking-result .tracking-steps li {
  margin-bottom: 0.25rem;
  font-size: 0.86rem;
}

.tracking-result.is-error {
  background: #fff1f1;
  border-color: #ffc8c8;
}

.tracking-result.is-loading {
  background: #eef9ff;
  border-color: #bfe8ff;
}

.tracking-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.tracking-modal.is-hidden {
  display: none;
}

.tracking-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 14, 50, 0.56);
  backdrop-filter: blur(2px);
}

.tracking-modal-panel {
  position: relative;
  width: min(900px, calc(100% - 1rem));
  max-height: calc(100vh - 3rem);
  overflow: auto;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(9, 11, 40, 0.34);
  padding: 1rem;
}

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

.tracking-modal-head h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--brand);
  font-size: 1.2rem;
}

#trackingModalClose {
  border: none;
  background: #eef0ff;
  color: var(--brand);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}

#trackingModalClose:hover {
  background: #dce2ff;
}

.trust-pills {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.trust-pills li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: #f3f7ff;
  border-radius: 999px;
  padding: 0.34rem 0.62rem;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 0.86rem;
}

.trust-pills i {
  color: #8ce2ff;
}

.slider {
  position: relative;
  height: 100%;
  min-height: 280px;
  display: grid;
}

.slide {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateX(12px);
  pointer-events: none;
  transition: opacity 320ms ease, transform 320ms ease;
}

.slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.slide h2 {
  margin: 0.6rem 0 0.5rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1.35rem;
  color: #ffffff;
  text-shadow: 0 3px 10px rgba(14, 17, 52, 0.45);
}

.slide p {
  margin: 0;
  color: #e3ecff;
  max-width: 36ch;
}

.slide-badge {
  display: inline-flex;
  width: 2.1rem;
  height: 2.1rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(45, 164, 218, 0.25);
  color: #d3f5ff;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.slider-controls {
  align-self: end;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 1rem;
}

.control {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.control:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.22);
}

.dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.dot.active {
  width: 1.35rem;
  border-radius: 999px;
  background: #8ce2ff;
}

.latest-news {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: end;
  background: transparent;
}

.news-carousel-pane,
.news-featured {
  border-radius: 20px;
  min-width: 0;
}

.news-carousel-pane {
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.news-carousel-pane h2 {
  margin: 0.5rem 0 1rem;
  font-family: "Montserrat", sans-serif;
  color: var(--brand);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
}

.news-carousel {
  background: transparent;
  max-width: 100%;
  overflow: visible;
  padding: 0.1rem 0.1rem 0.2rem;
  position: relative;
}

.news-stage {
  background: transparent;
  position: relative;
  min-height: calc(clamp(170px, 18vh, 190px) + 20px);
  overflow: visible;
}

.news-stage-static {
  display: grid;
}

.news-pair {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.news-pair.is-current {
  opacity: 1;
  transform: translateX(0);
}

.news-pair.is-next {
  opacity: 0;
  transform: translateX(34px);
  pointer-events: none;
}

.news-pair.leave {
  animation: news-pair-leave 340ms ease forwards;
}

.news-pair.enter {
  animation: news-pair-enter 420ms ease forwards;
}

@keyframes news-pair-leave {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-18px);
  }
}

@keyframes news-pair-enter {
  from {
    opacity: 0;
    transform: translateX(34px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.news-mini {
  height: clamp(170px, 18vh, 190px);
  background: #f8f9ff;
  border-radius: 18px;
  padding: 0.9rem 0.95rem 0.85rem;
  box-shadow: 0 14px 28px rgba(43, 46, 131, 0.16);
  overflow: hidden;
}

.news-mini-link {
  height: 100%;
  display: grid;
  align-content: start;
  color: inherit;
  text-decoration: none;
}

.news-mini-link:hover h3 {
  color: var(--brand-strong);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 4px;
}

.news-mini-date {
  margin: 0;
  color: var(--tertiary);
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
}

.news-mini h3 {
  margin: 0.5rem 0 0.45rem;
  font-family: "Montserrat", sans-serif;
  color: var(--brand);
  font-size: 0.95rem;
  line-height: 1.32;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-mini p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.88rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-mini-empty,
.news-mini-loading {
  pointer-events: none;
}

.news-mini-empty {
  display: grid;
  align-content: center;
}

.news-featured {
  height: 40vh;
  padding: 0.9rem 1rem 0.85rem;
  background: var(--brand);
  color: #e8edff;
  box-shadow: 0 16px 30px rgba(22, 24, 80, 0.26);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.news-featured .news-mini-date {
  color: #8ce2ff;
}

.news-featured h3 {
  margin: 0.3rem 0 0.35rem;
  font-family: "Quicksand", sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.news-featured h4 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-featured p {
  margin: 0.45rem 0 0.55rem;
  line-height: 1.35;
  font-size: 0.84rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-featured a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 4px;
  font-size: 0.86rem;
}

.services {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1.5rem;
}

.services-media,
.services-content {
  background: var(--surface);
  border-radius: 24px;
  box-shadow: 0 20px 38px rgba(43, 46, 131, 0.12);
}

.services-media {
  min-height: 320px;
  background:
    linear-gradient(160deg, rgba(43, 46, 131, 0.14), rgba(45, 164, 218, 0.1)),
    url("../assets/images/services_section.png") center / cover no-repeat;
}

.services-content {
  padding: 1.6rem 1.7rem;
}

.services-content h2 {
  margin: 0.5rem 0 1.2rem;
  font-family: "Montserrat", sans-serif;
  color: var(--brand);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
}

.service-item + .service-item {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e6e9fb;
}

.service-item h3 {
  margin: 0;
  font-family: "Quicksand", sans-serif;
  font-size: 1.1rem;
  color: var(--brand);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.service-item h3::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(242, 140, 40, 0.18);
}

.service-item p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.service-item a {
  color: var(--tertiary);
  font-weight: 600;
  text-decoration: none;
}

.service-item a:hover {
  text-decoration: underline;
}

.route-line {
  margin-top: 1.5rem;
  background:
    radial-gradient(circle at 10% 0%, rgba(45, 164, 218, 0.08), transparent 35%),
    radial-gradient(circle at 90% 0%, rgba(242, 140, 40, 0.1), transparent 34%),
    var(--surface);
  border-radius: 26px;
  box-shadow: 0 20px 38px rgba(43, 46, 131, 0.16);
  padding: 1.65rem 1.8rem 2rem;
  overflow: visible;
}

.route-line .kicker {
  color: var(--brand);
}

.route-line h2 {
  margin: 0.5rem 0 1.25rem;
  font-family: "Montserrat", sans-serif;
  color: var(--brand);
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  letter-spacing: -0.02em;
}

.route-line-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.route-line-head h2 {
  margin-bottom: 0;
}

.branches-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  flex: 0 0 auto;
  padding: 0 1rem;
  border-radius: 999px;
  background: var(--brand);
  color: #ffffff;
  font-family: "Quicksand", sans-serif;
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(43, 46, 131, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.branches-cta:hover,
.branches-cta:focus-visible {
  background: var(--brand-strong);
  color: #ffffff;
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(43, 46, 131, 0.27);
}

.route-track-wrap {
  position: relative;
  padding: 1.2rem 0 1.2rem;
}

.route-track {
  position: absolute;
  left: 6.5%;
  right: 6.5%;
  top: 2.02rem;
  height: 5px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 6px 16px rgba(43, 46, 131, 0.28);
}

.route-points {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.route-point {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  color: var(--brand);
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
}

.route-point:focus-visible {
  outline: none;
}

.route-point-label {
  background: rgba(43, 46, 131, 0.08);
  border: 1px solid rgba(43, 46, 131, 0.1);
  color: #23276f;
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
  font-size: 0.95rem;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.route-point:hover .route-point-label,
.route-point:focus-visible .route-point-label {
  transform: translateY(-1px);
  background: rgba(43, 46, 131, 0.14);
  box-shadow: 0 8px 16px rgba(43, 46, 131, 0.16);
}

.dot-stop {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
  border: 4px solid var(--brand);
  box-shadow: 0 0 0 5px rgba(43, 46, 131, 0.14);
}

.branches-list {
  margin-top: 1rem;
  text-align: center;
}

.branches-list h3 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--brand);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
}

.branches-list p {
  margin: 0;
}

.branch-items {
  margin: 0.75rem auto 0;
  padding: 0.85rem 0.95rem;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem 0.7rem;
  max-width: 900px;
  color: #2a2f75;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  line-height: 1.6;
  background: rgba(43, 46, 131, 0.05);
  border: 1px solid rgba(43, 46, 131, 0.12);
  border-radius: 16px;
}

.branch-items li {
  display: inline-flex;
  align-items: center;
  position: relative;
}

.branch-items li + li::before {
  content: "\25AA";
  color: var(--accent);
  margin-right: 0.7rem;
}

.branch-chip {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.55rem;
  border-radius: 999px;
  cursor: help;
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.branch-chip:hover,
.branch-chip:focus-visible {
  background: #ffffff;
  color: var(--brand);
  outline: none;
  box-shadow: 0 8px 18px rgba(43, 46, 131, 0.14);
}

.branch-popover {
  --popover-x: -50%;
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.8rem);
  z-index: 30;
  width: min(310px, calc(100vw - 2rem));
  display: grid;
  gap: 0.45rem;
  padding: 0.9rem;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(43, 46, 131, 0.14);
  box-shadow: 0 22px 48px rgba(26, 29, 71, 0.22);
  color: var(--text);
  font-family: "Poppins", sans-serif;
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.35;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(var(--popover-x), 0.35rem);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.branch-popover::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 16px;
  height: 16px;
  background: #ffffff;
  border-right: 1px solid rgba(43, 46, 131, 0.14);
  border-bottom: 1px solid rgba(43, 46, 131, 0.14);
  transform: translateX(-50%) rotate(45deg);
}

.branch-popover strong {
  color: var(--brand);
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
}

.branch-popover span {
  display: grid;
  grid-template-columns: 1.05rem minmax(0, 1fr);
  gap: 0.45rem;
  align-items: start;
  overflow-wrap: anywhere;
}

.branch-popover i {
  color: var(--accent);
  line-height: 1.35;
}

.branch-items li:hover .branch-popover,
.branch-items li:focus-within .branch-popover,
.route-point:hover .branch-popover,
.route-point:focus .branch-popover,
.route-point:focus-within .branch-popover {
  opacity: 1;
  visibility: visible;
  transform: translate(var(--popover-x), 0);
}

.route-points .route-point:first-child .branch-popover {
  --popover-x: 0;
  left: 0;
}

.route-points .route-point:last-child .branch-popover {
  --popover-x: 0;
  left: auto;
  right: 0;
}

.news-page-body {
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f7ff 48%, #ffffff 100%),
    var(--bg);
}

.news-page-body .site-footer {
  margin-top: 0;
}

.news-page {
  min-height: calc(100vh - var(--topbar-height));
}

.news-hero {
  min-height: 360px;
  display: flex;
  align-items: center;
  padding: 3.4rem 0 4.2rem;
  color: #ffffff;
  background:
    linear-gradient(115deg, rgba(17, 20, 76, 0.88) 0%, rgba(43, 46, 131, 0.72) 48%, rgba(12, 14, 50, 0.34) 100%),
    url("../assets/images/hero_section.png") center / cover no-repeat;
}

.news-hero-content {
  display: grid;
  gap: 0.9rem;
  align-content: center;
}

.news-hero .kicker {
  color: #8ce2ff;
}

.news-hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: 3rem;
  letter-spacing: 0;
}

.news-hero-lead {
  margin: 0;
  max-width: 650px;
  color: #e6edff;
  line-height: 1.6;
  font-size: 1.05rem;
}

.news-hero-strip {
  margin-top: 0.65rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.news-hero-strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 38px;
  padding: 0.35rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #f4f8ff;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
}

.news-hero-strip strong {
  color: #ffffff;
}

.news-directory {
  position: relative;
  z-index: 1;
  margin-top: -2.2rem;
  padding-bottom: 3rem;
}

.news-directory-head {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  align-items: end;
  gap: 1.2rem;
  padding: 1.1rem 0 1rem;
}

.news-directory-head .kicker {
  color: var(--tertiary);
}

.news-directory-head h2 {
  margin: 0.45rem 0 0;
  font-family: "Montserrat", sans-serif;
  color: var(--brand);
  font-size: 1.8rem;
  letter-spacing: 0;
}

.news-tools {
  display: grid;
  gap: 0.7rem;
  justify-items: end;
}

.news-search {
  width: min(420px, 100%);
  min-height: 46px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.55rem;
  padding: 0 0.62rem 0 0.8rem;
  border: 1px solid rgba(43, 46, 131, 0.14);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(43, 46, 131, 0.1);
}

.news-search i {
  color: var(--tertiary);
}

.news-search input {
  min-width: 0;
  border: none;
  outline: none;
  color: var(--text);
  font-family: "Poppins", sans-serif;
  font-size: 0.96rem;
}

.news-search input::placeholder {
  color: #7a82a7;
}

.news-search button {
  width: 2rem;
  height: 2rem;
  display: inline-grid;
  place-items: center;
  border: none;
  border-radius: 50%;
  background: #eef0ff;
  color: var(--brand);
  cursor: pointer;
}

.news-search button:hover {
  background: #dde3ff;
}

.news-search button:disabled {
  opacity: 0.5;
  cursor: default;
}

.news-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem;
  padding: 0.3rem;
  border-radius: 999px;
  background: rgba(43, 46, 131, 0.08);
  border: 1px solid rgba(43, 46, 131, 0.1);
}

.news-filter button {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: none;
  border-radius: 999px;
  padding: 0 0.72rem;
  background: transparent;
  color: var(--brand);
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  cursor: pointer;
}

.news-filter button:hover {
  background: rgba(255, 255, 255, 0.72);
}

.news-filter button.is-active {
  background: var(--brand);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(43, 46, 131, 0.22);
}

.news-count {
  margin-bottom: 0.9rem;
  color: var(--muted);
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(280px, 0.8fr);
  gap: 1.2rem;
  align-items: stretch;
  margin-bottom: 1.2rem;
}

.news-feature-story {
  min-height: 310px;
  display: grid;
  grid-template-columns: minmax(230px, 0.85fr) minmax(0, 1.15fr);
  overflow: hidden;
  border-radius: 24px;
  background: var(--brand);
  box-shadow: 0 20px 38px rgba(43, 46, 131, 0.18);
}

.news-feature-media {
  min-height: 260px;
  background:
    linear-gradient(160deg, rgba(43, 46, 131, 0.08), rgba(242, 140, 40, 0.1)),
    url("../assets/images/services_section.png") center / cover no-repeat;
}

.news-feature-story article {
  display: grid;
  align-content: center;
  gap: 0.8rem;
  padding: 1.5rem;
  color: #e8edff;
}

.news-card-meta {
  margin: 0;
  color: #8ce2ff;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
}

.news-feature-story h2 {
  margin: 0;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 1.65rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.news-feature-story p {
  margin: 0;
  line-height: 1.55;
}

.news-feature-story a,
.news-read-link {
  width: max-content;
  border: none;
  padding: 0;
  background: transparent;
  color: #ffffff;
  font-family: "Quicksand", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 5px;
  cursor: pointer;
}

.news-read-link:disabled {
  opacity: 0.65;
  cursor: default;
}

.news-read-link.is-disabled {
  opacity: 0.65;
  pointer-events: none;
  cursor: default;
}

.news-alerts {
  padding: 1.25rem;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 20px 38px rgba(43, 46, 131, 0.12);
}

.news-alerts .kicker {
  color: var(--tertiary);
}

.news-alerts h2 {
  margin: 0.45rem 0 1rem;
  color: var(--brand);
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0;
}

.news-alerts article {
  padding: 0.85rem 0;
  border-top: 1px solid #e6e9fb;
}

.news-alerts article[data-news-feature] {
  cursor: pointer;
}

.news-alerts article:first-of-type {
  border-top: none;
  padding-top: 0;
}

.news-alerts span {
  display: inline-flex;
  align-items: center;
  color: var(--accent);
  font-family: "Quicksand", sans-serif;
  font-weight: 800;
  font-size: 0.86rem;
}

.news-alerts p {
  margin: 0.25rem 0 0;
  color: var(--muted);
  line-height: 1.45;
}

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

.news-card {
  min-height: 214px;
  display: grid;
  align-content: start;
  gap: 0.65rem;
  padding: 1rem;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(43, 46, 131, 0.1);
  box-shadow: 0 14px 28px rgba(43, 46, 131, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.news-card:hover {
  transform: translateY(-2px);
  border-color: rgba(242, 140, 40, 0.5);
  box-shadow: 0 18px 32px rgba(43, 46, 131, 0.16);
}

.news-card.is-hidden {
  display: none;
}

.news-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--muted);
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
}

.news-card-top span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 0.55rem;
  border-radius: 999px;
  background: rgba(45, 164, 218, 0.1);
  color: #167ba8;
}

.news-card h3 {
  margin: 0;
  color: var(--brand);
  font-family: "Montserrat", sans-serif;
  font-size: 1.05rem;
  line-height: 1.32;
  letter-spacing: 0;
}

.news-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.92rem;
}

.news-card-action {
  width: max-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: none;
  border-radius: 999px;
  padding: 0 0.72rem;
  background: rgba(43, 46, 131, 0.08);
  color: var(--brand);
  font-family: "Quicksand", sans-serif;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.news-card-action:hover {
  background: var(--brand);
  color: #ffffff;
}

.news-card-loading {
  pointer-events: none;
}

.news-skeleton-line {
  height: 13px;
  border-radius: 999px;
  background: linear-gradient(90deg, #eef2ff, #f8f9ff, #eef2ff);
  background-size: 220% 100%;
  animation: news-skeleton 1200ms ease-in-out infinite;
}

.news-skeleton-line.short {
  width: 38%;
}

.news-skeleton-line.medium {
  width: 72%;
}

@keyframes news-skeleton {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -220% 0;
  }
}

.news-empty {
  margin-top: 1rem;
  min-height: 150px;
  display: grid;
  place-items: center;
  gap: 0.4rem;
  padding: 1.25rem;
  border: 1px dashed rgba(43, 46, 131, 0.24);
  border-radius: 18px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.news-empty[hidden] {
  display: none;
}

.news-empty i {
  color: var(--tertiary);
  font-size: 1.4rem;
}

.news-empty p {
  margin: 0;
  font-weight: 600;
}

.news-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.news-detail-modal.is-hidden {
  display: none;
}

.news-detail-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 14, 50, 0.58);
  backdrop-filter: blur(2px);
}

.news-detail-panel {
  position: relative;
  width: min(760px, calc(100% - 1rem));
  max-height: min(86vh, 820px);
  overflow: auto;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 30px 70px rgba(9, 11, 40, 0.34);
}

.news-detail-head {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid #e6e9fb;
  backdrop-filter: blur(8px);
}

.news-detail-head .kicker {
  color: var(--tertiary);
}

#newsDetailClose {
  width: 2.1rem;
  height: 2.1rem;
  border: none;
  border-radius: 50%;
  background: #eef0ff;
  color: var(--brand);
  cursor: pointer;
}

#newsDetailClose:hover {
  background: #dce2ff;
}

.news-detail-content {
  padding: 1.1rem;
  color: var(--text);
  overflow-x: hidden;
}

.news-detail-content.is-loading,
.news-detail-content.is-error {
  color: var(--muted);
  font-weight: 600;
}

.news-detail-content.is-error {
  color: #9b1c1c;
}

.news-detail-content img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
}

.news-detail-image {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 1rem;
}

.news-detail-content h2 {
  margin: 0 0 0.65rem;
  color: var(--brand);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.16;
}

.news-detail-content h1 {
  margin: 0 0 0.75rem;
  color: var(--brand);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.55rem);
  line-height: 1.12;
  letter-spacing: 0;
  text-shadow: none;
}

.news-detail-meta {
  margin: 0 0 0.85rem;
  color: var(--tertiary);
  font-family: "Quicksand", sans-serif;
  font-weight: 800;
}

.news-detail-excerpt {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 600;
}

.news-detail-body {
  color: #343b68;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.news-detail-body img,
.news-detail-body video,
.news-detail-body iframe,
.news-detail-body canvas,
.news-detail-body svg {
  max-width: 100%;
}

.news-detail-body img,
.news-detail-body video {
  height: auto;
}

.news-detail-body iframe {
  width: 100%;
}

.news-detail-body table,
.news-detail-body pre {
  max-width: 100%;
  display: block;
  overflow-x: auto;
}

.news-detail-body :first-child {
  margin-top: 0;
}

.news-detail-body :last-child {
  margin-bottom: 0;
}

.news-article-page {
  padding: 2rem 0 3rem;
}

.news-article-shell {
  display: grid;
  gap: 1rem;
}

.news-article-back {
  width: max-content;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0 0.78rem;
  border-radius: 999px;
  background: rgba(43, 46, 131, 0.08);
  color: var(--brand);
  font-family: "Quicksand", sans-serif;
  font-weight: 800;
  text-decoration: none;
}

.news-article-back:hover {
  background: var(--brand);
  color: #ffffff;
}

.news-article-content {
  padding: 1.3rem;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(43, 46, 131, 0.1);
  box-shadow: 0 18px 34px rgba(43, 46, 131, 0.12);
}

.news-article-content .news-detail-image {
  aspect-ratio: 16 / 7.5;
}

.news-related {
  margin-top: 1.5rem;
}

.news-related-head {
  margin-bottom: 0.9rem;
}

.news-related-head .kicker {
  color: var(--tertiary);
}

.news-related-head h2 {
  margin: 0.45rem 0 0;
  color: var(--brand);
  font-family: "Montserrat", sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0;
}

.offices-page-body {
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f7ff 46%, #ffffff 100%),
    var(--bg);
}

.offices-page-body .site-footer {
  margin-top: 0;
}

.offices-page {
  min-height: calc(100vh - var(--topbar-height));
}

.offices-hero {
  min-height: 380px;
  display: flex;
  align-items: center;
  padding: 3.4rem 0 4.4rem;
  color: #ffffff;
  background:
    linear-gradient(112deg, rgba(17, 20, 76, 0.9) 0%, rgba(43, 46, 131, 0.76) 48%, rgba(12, 14, 50, 0.48) 100%),
    url("../assets/images/company-route-truck.jpg") center right / cover no-repeat;
}

.offices-hero-content {
  display: grid;
  gap: 0.9rem;
  align-content: center;
}

.offices-hero .kicker {
  color: #8ce2ff;
}

.offices-hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: 3rem;
  letter-spacing: 0;
}

.offices-hero-lead {
  margin: 0;
  max-width: 690px;
  color: #e6edff;
  line-height: 1.6;
  font-size: 1.05rem;
}

.offices-hero-strip {
  margin-top: 0.65rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.offices-hero-strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 38px;
  padding: 0.35rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #f4f8ff;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
}

.offices-directory {
  position: relative;
  z-index: 1;
  margin-top: -2.3rem;
  padding-bottom: 1.6rem;
}

.offices-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0 1rem;
}

.offices-section-head .kicker {
  color: var(--tertiary);
}

.offices-section-head h2 {
  margin: 0.45rem 0 0;
  font-family: "Montserrat", sans-serif;
  color: var(--brand);
  font-size: 1.8rem;
  letter-spacing: 0;
}

.offices-map-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0 0.95rem;
  border-radius: 999px;
  background: var(--brand);
  color: #ffffff;
  font-family: "Quicksand", sans-serif;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(43, 46, 131, 0.2);
}

.offices-map-link:hover {
  background: var(--brand-strong);
}

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

.office-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.05rem;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(43, 46, 131, 0.1);
  box-shadow: 0 14px 30px rgba(43, 46, 131, 0.1);
}

.office-card-main {
  background:
    linear-gradient(140deg, rgba(43, 46, 131, 0.94), rgba(33, 36, 106, 0.9)),
    url("../assets/images/company-dock-truck.jpg") center / cover no-repeat;
  color: #ffffff;
}

.office-card-upcoming {
  border-color: rgba(242, 140, 40, 0.28);
  background:
    linear-gradient(145deg, rgba(255, 249, 242, 0.95), rgba(255, 255, 255, 0.96)),
    #ffffff;
}

.office-card-head span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 0.55rem;
  border-radius: 999px;
  background: rgba(45, 164, 218, 0.11);
  color: #167ba8;
  font-family: "Quicksand", sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
}

.office-card-main .office-card-head span {
  background: rgba(255, 255, 255, 0.14);
  color: #8ce2ff;
}

.office-card-upcoming .office-card-head span {
  background: rgba(242, 140, 40, 0.14);
  color: #b25d0f;
}

.office-card-head h3 {
  margin: 0.55rem 0 0;
  color: var(--brand);
  font-family: "Montserrat", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0;
}

.office-card-main .office-card-head h3 {
  color: #ffffff;
}

.office-info {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.62rem;
}

.office-info li {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  gap: 0.5rem;
  align-items: start;
  color: var(--muted);
  line-height: 1.42;
  font-size: 0.92rem;
}

.office-info i {
  color: var(--tertiary);
  margin-top: 0.08rem;
}

.office-info a {
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
}

.office-info a:hover {
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 3px;
}

.office-card-main .office-info li,
.office-card-main .office-info a {
  color: #e8edff;
}

.office-card-main .office-info i {
  color: #8ce2ff;
}

.office-action {
  width: max-content;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  padding: 0 0.82rem;
  border-radius: 999px;
  background: rgba(242, 140, 40, 0.12);
  color: var(--brand);
  font-family: "Quicksand", sans-serif;
  font-weight: 800;
  text-decoration: none;
}

.office-action:hover {
  background: var(--accent);
  color: #ffffff;
}

.office-card-main .office-action {
  background: var(--accent);
  color: #ffffff;
}

.office-action-disabled {
  background: rgba(43, 46, 131, 0.08);
  color: var(--muted);
  cursor: default;
}

.office-action-disabled:hover {
  background: rgba(43, 46, 131, 0.08);
  color: var(--muted);
}

.destinations-section {
  padding-bottom: 3rem;
}

.destinations-note {
  margin: 0;
  max-width: 340px;
  color: var(--muted);
  text-align: right;
  line-height: 1.45;
  font-weight: 600;
}

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

.destination-card {
  padding: 1rem;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(43, 46, 131, 0.1);
  box-shadow: 0 14px 28px rgba(43, 46, 131, 0.1);
}

.destination-card-wide {
  grid-column: 1 / -1;
}

.destination-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.destination-head span {
  color: var(--brand);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
}

.destination-head strong {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 0 0.55rem;
  border-radius: 999px;
  background: rgba(45, 164, 218, 0.11);
  color: #167ba8;
  font-family: "Quicksand", sans-serif;
  font-size: 0.82rem;
  white-space: nowrap;
}

.destination-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.destination-list li {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 0.58rem;
  border-radius: 999px;
  background: rgba(43, 46, 131, 0.06);
  color: #2a2f75;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
}

.destination-surcharge {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid #e6e9fb;
}

.destination-surcharge span {
  color: var(--accent);
  font-family: "Quicksand", sans-serif;
  font-weight: 800;
}

.destination-surcharge p {
  margin: 0.3rem 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.business-page-body {
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f7ff 44%, #ffffff 100%),
    var(--bg);
}

.business-page-body .site-footer {
  margin-top: 0;
}

.business-page {
  min-height: calc(100vh - var(--topbar-height));
}

.business-hero {
  min-height: 340px;
  display: flex;
  align-items: center;
  padding: 3.2rem 0 4.2rem;
  color: #ffffff;
  background:
    linear-gradient(112deg, rgba(17, 20, 76, 0.92) 0%, rgba(43, 46, 131, 0.78) 50%, rgba(12, 14, 50, 0.46) 100%),
    url("../assets/images/company-loading-operation.jpg") center / cover no-repeat;
}

.business-hero-content {
  display: grid;
  gap: 0.9rem;
  align-content: center;
}

.business-hero .kicker {
  color: #8ce2ff;
}

.business-hero h1 {
  margin: 0;
  max-width: 780px;
  font-size: 3rem;
  letter-spacing: 0;
}

.business-hero-lead {
  margin: 0;
  max-width: 680px;
  color: #e6edff;
  line-height: 1.6;
  font-size: 1.05rem;
}

.business-benefits {
  position: relative;
  z-index: 1;
  margin-top: 1.6rem;
}

.business-section-head {
  padding: 1.1rem 0 1rem;
}

.business-section-head .kicker {
  color: var(--tertiary);
}

.business-section-head h2 {
  margin: 0.45rem 0 0;
  color: var(--brand);
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0;
}

.business-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.business-benefit-card {
  min-height: 240px;
  display: grid;
  align-content: start;
  gap: 0.8rem;
  padding: 1.2rem;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(43, 46, 131, 0.1);
  box-shadow: 0 14px 30px rgba(43, 46, 131, 0.1);
}

.business-benefit-card i {
  width: 2.4rem;
  height: 2.4rem;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(45, 164, 218, 0.11);
  color: var(--tertiary);
  font-size: 1.25rem;
}

.business-benefit-card h3 {
  margin: 0;
  color: var(--brand);
  font-family: "Montserrat", sans-serif;
  font-size: 1.3rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.business-benefit-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.business-benefit-card-strong {
  background:
    linear-gradient(140deg, rgba(43, 46, 131, 0.96), rgba(33, 36, 106, 0.94)),
    var(--brand);
}

.business-benefit-card-strong i {
  background: rgba(255, 255, 255, 0.14);
  color: #8ce2ff;
}

.business-benefit-card-strong h3,
.business-benefit-card-strong p {
  color: #ffffff;
}

.business-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
}

.business-benefit-card-strong a {
  width: max-content;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  margin-top: 0.2rem;
  padding: 0 0.9rem;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-family: "Quicksand", sans-serif;
  font-weight: 800;
  text-decoration: none;
}

.business-benefit-card-strong a:first-child {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.pyme-plan {
  scroll-margin-top: calc(var(--topbar-height) + 1rem);
  margin-top: 1.3rem;
}

.pyme-plan-card {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(0, 2fr);
  gap: 1.25rem;
  align-items: stretch;
  padding: 1.25rem;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(43, 46, 131, 0.96), rgba(33, 36, 106, 0.92)),
    var(--brand);
  box-shadow: 0 18px 36px rgba(43, 46, 131, 0.16);
  color: #ffffff;
}

@media (min-width: 901px) {
  .pyme-plan-card-reverse .pyme-plan-media {
    order: 2;
  }

  .pyme-plan-card-reverse .pyme-plan-content {
    order: 1;
  }
}

.pyme-plan-media {
  min-height: 100%;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background:
    linear-gradient(140deg, rgba(17, 20, 76, 0.28), rgba(12, 14, 50, 0.14)),
    url("../assets/images/company-dock-truck.jpg") center / cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.42);
  overflow: hidden;
  position: relative;
}

.pyme-plan-media::before,
.pyme-plan-media::after {
  content: "";
  display: none;
  position: absolute;
  border-radius: 999px;
  background: rgba(242, 140, 40, 0.16);
}

.pyme-plan-media::before {
  width: 140px;
  height: 140px;
  top: -42px;
  right: -34px;
}

.pyme-plan-media::after {
  width: 110px;
  height: 110px;
  left: -36px;
  bottom: -32px;
  background: rgba(45, 164, 218, 0.16);
}

.pyme-plan-media i {
  position: relative;
  z-index: 1;
  width: 5.2rem;
  height: 5.2rem;
  display: inline-grid;
  place-items: center;
  border-radius: 26px;
  background: rgba(43, 46, 131, 0.78);
  color: #ffffff;
  font-size: 2.35rem;
  box-shadow: 0 18px 32px rgba(9, 11, 34, 0.3);
  backdrop-filter: blur(2px);
}

.pyme-plan-content {
  display: grid;
  gap: 0.85rem;
  align-content: center;
  padding: 0.25rem 0.2rem;
}

.pyme-plan-content .kicker {
  color: #8ce2ff;
}

.pyme-plan-content h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.18;
  letter-spacing: 0;
}

.pyme-plan-content p {
  margin: 0;
  color: #edf2ff;
  line-height: 1.6;
}

.pyme-plan-requirements {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 0.75rem;
}

.pyme-plan-requirements li {
  display: grid;
  grid-template-columns: 1.25rem minmax(0, 1fr);
  gap: 0.45rem;
  align-items: start;
  color: #ffffff;
  line-height: 1.45;
  font-weight: 600;
}

.pyme-plan-requirements i {
  color: var(--accent);
  line-height: 1.45;
}

.pyme-plan-note {
  padding: 0.75rem 0.85rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.pyme-plan-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.pyme-plan-btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0 1rem;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-family: "Quicksand", sans-serif;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(242, 140, 40, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.pyme-plan-btn:hover,
.pyme-plan-btn:focus-visible {
  background: #de7f24;
  color: #ffffff;
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(242, 140, 40, 0.28);
}

.pyme-plan-btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: none;
}

.pyme-plan-btn-secondary:hover,
.pyme-plan-btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.parts-business {
  margin-top: 1.3rem;
}

.parts-business .pyme-plan-media {
  background:
    linear-gradient(140deg, rgba(17, 20, 76, 0.18), rgba(12, 14, 50, 0.08)),
    url("../assets/images/The_interior_of_an_Advance_Auto_Parts_store_in_Murphy,_North_Carolina_06.jpg") center / cover no-repeat;
}

.parts-business .pyme-plan-media i {
  background: rgba(43, 46, 131, 0.74);
}

.image-credit {
  position: absolute;
  right: 0.55rem;
  bottom: 0.45rem;
  z-index: 2;
  max-width: calc(100% - 1.1rem);
  padding: 0.22rem 0.45rem;
  border-radius: 999px;
  background: rgba(9, 11, 34, 0.48);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.66rem;
  line-height: 1.2;
}

.image-credit a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.parts-business-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.2rem;
  align-items: center;
  padding: 1.35rem;
  border-radius: 20px;
  background:
    radial-gradient(circle at 0% 0%, rgba(242, 140, 40, 0.13), transparent 34%),
    #ffffff;
  border: 1px solid rgba(242, 140, 40, 0.22);
  box-shadow: 0 16px 32px rgba(43, 46, 131, 0.11);
}

.parts-business-panel .kicker {
  color: var(--accent);
}

.parts-business-panel h2 {
  margin: 0.45rem 0 0.55rem;
  color: var(--brand);
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  line-height: 1.22;
  letter-spacing: 0;
}

.parts-business-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.parts-business-panel > a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0 1rem;
  border-radius: 999px;
  background: var(--brand);
  color: #ffffff;
  font-family: "Quicksand", sans-serif;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.business-faq {
  padding-bottom: 3rem;
}

.business-faq-card {
  scroll-margin-top: calc(var(--topbar-height) + 1rem);
  padding: 1.2rem;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(43, 46, 131, 0.1);
  box-shadow: 0 14px 30px rgba(43, 46, 131, 0.1);
}

.business-faq-card + .business-faq-card {
  margin-top: 1rem;
}

.business-faq-card h3 {
  margin: 0 0 0.65rem;
  color: var(--brand);
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0;
}

.business-faq-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.business-faq-card a {
  color: var(--brand);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 4px;
}

.site-footer {
  margin-top: 2rem;
  background: var(--brand);
  color: #e8edff;
}

.quote-page {
  min-height: calc(100vh - var(--topbar-height));
  padding: 1.5rem 0 3rem;
  background:
    linear-gradient(rgba(43, 46, 131, 0.78), rgba(43, 46, 131, 0.78)),
    url("../assets/images/quotes_background.png") center / cover no-repeat;
}

.quote-page-body .quote-page {
  padding-bottom: 0;
}

.quote-page-body .site-footer {
  margin-top: 0;
}

.quote-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .quote-layout {
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  }
}

.quote-form-pane {
  background: rgba(255, 255, 255, 0.78);
  border-radius: 24px;
  box-shadow: 0 20px 38px rgba(43, 46, 131, 0.12);
  backdrop-filter: blur(2px);
  padding: 0.92rem 0.92rem 0.82rem;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.72)),
    url("../assets/images/heavy_box_illustration.svg");
  background-repeat: no-repeat, no-repeat;
  background-position: center, right 1.1rem bottom 1rem;
  background-size: cover, min(576px, 50.4vw);
}

.quote-kicker {
  color: var(--tertiary);
}

.quote-offices-link-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.32rem;
  padding: 0.28rem 0.64rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #f28c28, #df7e1d);
  color: #fff;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 0.76rem;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(242, 140, 40, 0.28);
}

.quote-offices-link-badge:hover {
  background: linear-gradient(90deg, #ea8627, #d9761d);
}

.quote-title {
  margin: 0.32rem 0 0.62rem;
  color: var(--brand);
  text-shadow: none;
  font-size: clamp(1.15rem, 1.85vw, 1.45rem);
}

.quote-form {
  margin: 0;
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 0.58rem;
}

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

.quote-grid-shipping .field {
  grid-column: span 4;
}

.quote-grid-shipping .field-half {
  grid-column: span 6;
}

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

.quote-grid .field {
  display: grid;
  gap: 0.28rem;
}

.quote-dimension-note p {
  margin: 0;
  padding: 0.45rem 0.58rem;
  border-radius: 10px;
  background: #eef2ff;
  border: 1px solid #d7defe;
  color: #2e3a73;
  font-size: 0.8rem;
  line-height: 1.35;
}

.quote-grid label {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  color: var(--brand);
  font-size: 0.78rem;
}

.quote-grid input {
  border: 1px solid #ccd6ff;
  border-radius: 10px;
  min-height: 31px;
  padding: 0 0.48rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.82rem;
  color: var(--text);
  background: #fff;
}

.quote-grid select {
  border: 1px solid #ccd6ff;
  border-radius: 10px;
  min-height: 31px;
  padding: 0 0.48rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.82rem;
  color: var(--text);
  background: #fff;
}

.quote-grid input:focus {
  outline: none;
  border-color: #8ea0ff;
  box-shadow: 0 0 0 4px rgba(45, 84, 230, 0.12);
}

.quote-grid select:focus {
  outline: none;
  border-color: #8ea0ff;
  box-shadow: 0 0 0 4px rgba(45, 84, 230, 0.12);
}

.quote-grid input:disabled {
  background: #f5f7ff;
  color: #405086;
  border-color: #d8dffa;
  font-weight: 600;
}

.quote-btn {
  margin-top: 0.58rem;
  border: none;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  min-height: 34px;
  padding: 0 0.82rem;
  font-family: "Quicksand", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
}

.quote-btn:hover {
  background: var(--brand-strong);
}

.quote-notes {
  margin-top: 0.62rem;
  border-top: 1px solid #e6e9fb;
  padding-top: 0.46rem;
}

.quote-notes p {
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.38;
}

.quote-notes p + p {
  margin-top: 0.55rem;
}

.quote-info-pane {
  background: rgba(255, 255, 255, 0.84);
  border-radius: 24px;
  box-shadow: 0 20px 38px rgba(43, 46, 131, 0.12);
  backdrop-filter: blur(2px);
  padding: 1rem 0.95rem;
  border: 1px solid rgba(220, 226, 255, 0.8);
  display: grid;
  gap: 0.8rem;
  align-content: start;
}

.quote-info-head h2 {
  margin: 0.2rem 0 0.4rem;
  color: var(--brand);
  font-family: "Montserrat", sans-serif;
  font-size: 1.05rem;
}

.quote-info-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.quote-destination-search {
  display: grid;
  gap: 0.35rem;
}

.quote-destination-search label {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  color: var(--brand);
  font-size: 0.85rem;
}

.quote-destination-search input {
  border: 1px solid #ccd6ff;
  border-radius: 12px;
  min-height: 38px;
  padding: 0 0.58rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: #fff;
}

.quote-destination-search input:focus {
  outline: none;
  border-color: #8ea0ff;
  box-shadow: 0 0 0 4px rgba(45, 84, 230, 0.12);
}

.quote-destination-accordion {
  display: grid;
  gap: 0.48rem;
  max-height: 540px;
  overflow: auto;
  padding-right: 0.2rem;
}

.quote-destination-accordion details {
  border: 1px solid #dce3ff;
  border-radius: 14px;
  background: #f7f9ff;
  overflow: clip;
}

.quote-destination-accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 0.56rem 0.64rem;
  font-family: "Quicksand", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.quote-destination-accordion summary::-webkit-details-marker {
  display: none;
}

.quote-destination-accordion summary strong {
  color: #4560c6;
  font-size: 0.78rem;
  font-family: "Poppins", sans-serif;
}

.quote-destination-accordion ul {
  margin: 0;
  padding: 0.1rem 0.64rem 0.56rem;
  list-style: none;
  display: grid;
  gap: 0.3rem;
}

.quote-destination-accordion li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.45rem;
  border-radius: 10px;
  padding: 0.35rem 0.42rem;
  background: #fff;
  border: 1px solid #e4e9ff;
  font-size: 0.82rem;
  color: #24346a;
}

.quote-destination-name {
  font-weight: 700;
}

.quote-destination-service {
  display: grid;
  gap: 0.15rem;
  justify-items: end;
  text-align: right;
}

.quote-destination-service span {
  color: #5b6db8;
  font-weight: 700;
  font-size: 0.75rem;
}

.quote-destination-service span:last-child {
  color: #6f78a8;
  font-weight: 600;
  max-width: 190px;
  line-height: 1.25;
}

.quote-destination-empty {
  margin: 0;
  padding: 0.62rem;
  border-radius: 12px;
  border: 1px dashed #cfd8ff;
  background: #f7f9ff;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.35;
}

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 1.1rem;
}

.quote-modal.is-hidden {
  display: none;
}

.quote-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 14, 50, 0.56);
  backdrop-filter: blur(2px);
}

.quote-modal-panel {
  position: relative;
  width: min(520px, calc(100% - 1rem));
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(9, 11, 40, 0.34);
  padding: 0.85rem;
}

.quote-modal.quote-modal-compact .quote-modal-panel {
  width: min(520px, calc(100% - 1rem));
}

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

.quote-modal-head h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--brand);
  font-size: 1rem;
}

#quoteModalClose {
  border: none;
  background: #eef0ff;
  color: var(--brand);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}

#quoteModalClose:hover {
  background: #dce2ff;
}

.quote-result {
  border-radius: 14px;
  padding: 0.72rem;
  background: #f5f7ff;
  border: 1px solid #dde3ff;
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.4;
}

.quote-result.is-hidden {
  display: none;
}

.quote-result p {
  margin: 0;
}

.quote-result p + p {
  margin-top: 0.35rem;
}

.quote-result strong {
  color: var(--brand);
  font-family: "Quicksand", sans-serif;
}

.quote-result-legal {
  margin-top: 0.72rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(43, 46, 131, 0.14);
}

.quote-result-legal p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.35;
}

.quote-result-legal p + p {
  margin-top: 0.5rem;
}

.quote-result-legal.is-hidden {
  display: none;
}

.quote-flow-actions {
  margin-top: 0.7rem;
}

.quote-flow-actions.is-hidden {
  display: none;
}

.quote-next-btn {
  width: 100%;
  border: none;
  border-radius: 999px;
  background: linear-gradient(90deg, #f28c28, #e37f1f);
  color: #fff;
  min-height: 40px;
  padding: 0 0.85rem;
  font-family: "Quicksand", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(242, 140, 40, 0.3);
}

.quote-next-btn:hover {
  background: linear-gradient(90deg, #ea8627, #d9761d);
}

.quote-flow-step {
  margin-top: 0.7rem;
  padding: 0.75rem;
  border-radius: 14px;
  background: #f6f8ff;
  border: 1px solid #dce2ff;
  display: grid;
  gap: 0.6rem;
}

.quote-flow-step.is-hidden,
.quote-front-form.is-hidden {
  display: none;
}

.quote-flow-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.4;
  font-size: 0.84rem;
}

.quote-front-form {
  margin-top: 0.72rem;
  border-radius: 14px;
  border: 1px solid #dce2ff;
  background: #f7f9ff;
  padding: 0.78rem;
  display: grid;
  gap: 0.58rem;
}

.quote-front-grid {
  display: grid;
  gap: 0.35rem;
}

.quote-front-grid label {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  color: var(--brand);
  font-size: 0.86rem;
}

.quote-front-grid input,
.quote-front-grid textarea {
  border: 1px solid #ccd6ff;
  border-radius: 12px;
  min-height: 36px;
  padding: 0.5rem 0.62rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: #fff;
}

.quote-front-grid textarea {
  min-height: 108px;
  resize: vertical;
}

.quote-front-help {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.35;
}

.quote-front-grid input:focus,
.quote-front-grid textarea:focus {
  outline: none;
  border-color: #8ea0ff;
  box-shadow: 0 0 0 4px rgba(45, 84, 230, 0.12);
}

.quote-front-actions {
  display: flex;
  justify-content: flex-end;
}

.quote-front-actions button {
  border: none;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  min-height: 40px;
  padding: 0 0.95rem;
  font-family: "Quicksand", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.quote-front-actions button:hover {
  background: var(--brand-strong);
}

.quote-front-actions button:disabled {
  background: #a8b1cc;
  cursor: not-allowed;
}

.quote-front-consent {
  padding: 0.5rem 0 0.2rem;
  border-top: 1px solid rgba(43, 46, 131, 0.12);
  display: grid;
  gap: 0.35rem;
}

.quote-front-consent-check {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--text);
  font-family: "Poppins", sans-serif;
  font-size: 0.84rem;
}

.quote-front-consent-check input {
  inline-size: 16px;
  block-size: 16px;
  accent-color: var(--brand);
  cursor: pointer;
}

.quote-front-consent-check span {
  line-height: 1.3;
}

.quote-front-consent-links {
  display: grid;
  gap: 0.3rem;
  padding-left: 1.4rem;
}

.quote-front-consent-links a {
  color: var(--brand);
  font-family: "Quicksand", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 3px;
}

.quote-front-consent-links a:hover {
  color: var(--brand-strong);
}

.quote-front-links {
  display: grid;
  gap: 0.35rem;
  padding-top: 0.45rem;
  border-top: 1px solid rgba(43, 46, 131, 0.12);
}

.quote-front-links a {
  color: var(--brand);
  font-family: "Quicksand", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 3px;
}

.quote-front-links a:hover {
  color: var(--brand-strong);
}

.footer-grid {
  padding: 2rem 0 2.2rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 1.25rem;
}

.footer-brand {
  display: grid;
  gap: 0.7rem;
  align-content: start;
}

.footer-brand a {
  display: inline-block;
}

.footer-brand img {
  width: min(220px, 100%);
  height: auto;
  display: block;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer-social a {
  width: 1.9rem;
  height: 1.9rem;
  display: inline-grid;
  place-items: center;
  align-items: center;
  color: #dbe5ff;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid rgba(219, 229, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.footer-social a i {
  font-size: 0.95rem;
}

.footer-social a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.55);
}

.footer-col h4 {
  margin: 0 0 0.75rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  color: #ffffff;
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.48rem;
}

.footer-col a {
  color: #dbe5ff;
  text-decoration: none;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
}

.footer-col a:hover {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(18, 20, 70, 0.35);
}

.footer-bottom .container {
  display: grid;
  justify-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0;
}

.footer-bottom p {
  margin: 0;
  text-align: center;
  color: #d2dcff;
  font-size: 0.9rem;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
}

.footer-social-bottom {
  justify-content: center;
}

@media (max-width: 1024px) {
  .hero-left,
  .hero-right {
    background: rgba(14, 17, 56, 0.24);
  }

  .news-directory-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .news-tools {
    justify-items: start;
  }

  .news-filter {
    justify-content: flex-start;
    border-radius: 18px;
  }

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

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

  .parts-business-panel {
    grid-template-columns: 1fr;
  }

  .parts-business-panel > a {
    width: max-content;
  }

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

  .quote-form-pane {
    background-size: cover, min(468px, 81vw);
    background-position: center, right 0.6rem bottom 0.8rem;
  }
}

@media (max-width: 940px) {
  .topbar-content {
    flex-wrap: wrap;
    justify-content: center;
  }

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

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

  .latest-news {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .news-hero {
    min-height: 330px;
    padding: 2.7rem 0 4rem;
  }

  .news-hero h1 {
    font-size: 2.45rem;
  }

  .news-layout,
  .news-feature-story {
    grid-template-columns: 1fr;
  }

  .news-feature-media {
    min-height: 220px;
  }

  .offices-hero {
    min-height: 330px;
    padding: 2.7rem 0 4rem;
  }

  .offices-hero h1 {
    font-size: 2.45rem;
  }

  .offices-section-head {
    align-items: start;
    flex-direction: column;
  }

  .business-hero {
    min-height: 320px;
    padding: 2.7rem 0 4rem;
  }

  .business-hero h1 {
    font-size: 2.45rem;
  }

  .business-benefit-grid {
    grid-template-columns: 1fr;
  }

  .pyme-plan-card {
    grid-template-columns: 1fr;
  }

  .pyme-plan-media {
    min-height: 220px;
  }

  .destinations-note {
    max-width: 100%;
    text-align: left;
  }

  .destination-card-wide {
    grid-column: auto;
  }

  .services-media {
    min-height: 200px;
  }

  .hero-lead {
    max-width: 100%;
  }

  .route-line {
    padding: 1.4rem 1rem 1.7rem;
  }

  .route-track {
    left: 8%;
    right: 8%;
  }
}

@media (max-width: 620px) {
  .brand img {
    height: 24px;
  }

  .menu {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-left,
  .hero-right {
    padding: 1.35rem;
    border-radius: 18px;
    background: rgba(14, 17, 56, 0.34);
  }

  .trust-pills {
    gap: 0.4rem;
  }

  .trust-pills li {
    font-size: 0.8rem;
    padding: 0.3rem 0.54rem;
  }

  .tracking-control {
    flex-direction: column;
  }

  .tracking-result .tracking-grid {
    grid-template-columns: 1fr;
  }

  .tracking-control button {
    min-height: 44px;
  }

  .news-mini {
    height: auto;
  }

  .news-featured {
    height: auto;
  }

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

  .quote-grid-shipping .field,
  .quote-grid-shipping .field-half,
  .quote-grid-shipping .field-full {
    grid-column: auto;
  }

  .quote-front-actions {
    justify-content: stretch;
  }

  .quote-front-actions button {
    width: 100%;
  }

  .route-track-wrap {
    padding-top: 1rem;
    padding-bottom: 1.2rem;
  }

  .route-points {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 1.1rem;
  }

  .route-track {
    display: none;
  }

  .route-point-label {
    font-size: 0.9rem;
    padding: 0.3rem 0.55rem;
  }

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

  .site-footer {
    margin-top: 1.6rem;
  }
}

@media (max-width: 720px) {
  .news-hero {
    min-height: 310px;
    padding: 2rem 0 3.6rem;
  }

  .news-hero h1 {
    font-size: 2.05rem;
  }

  .news-hero-lead {
    font-size: 0.96rem;
  }

  .news-directory {
    margin-top: -1.7rem;
  }

  .news-directory-head {
    gap: 0.9rem;
  }

  .news-tools,
  .news-search {
    width: 100%;
  }

  .news-filter {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 18px;
  }

  .news-filter button {
    justify-content: center;
    padding: 0 0.5rem;
  }

  .news-card-grid {
    grid-template-columns: 1fr;
  }

  .news-feature-story article,
  .news-alerts {
    padding: 1.1rem;
  }

  .news-card {
    min-height: auto;
  }

  .news-card-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.45rem;
  }

  .offices-hero {
    min-height: 310px;
    padding: 2rem 0 3.6rem;
  }

  .offices-hero h1 {
    font-size: 2.05rem;
  }

  .offices-hero-lead {
    font-size: 0.96rem;
  }

  .offices-directory {
    margin-top: -1.7rem;
  }

  .offices-grid,
  .destinations-grid {
    grid-template-columns: 1fr;
  }

  .office-card {
    min-height: auto;
  }

  .destination-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
  }

  .business-hero {
    min-height: 300px;
    padding: 2rem 0 3.6rem;
  }

  .business-hero h1 {
    font-size: 2.05rem;
  }

  .business-hero-lead {
    font-size: 0.96rem;
  }

  .business-benefits {
    margin-top: 1.2rem;
  }

  .business-benefit-card {
    min-height: auto;
  }

  .pyme-plan-card {
    padding: 1rem;
  }

  .pyme-plan {
    scroll-margin-top: 13rem;
  }

  .pyme-plan-requirements {
    grid-template-columns: 1fr;
  }

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

  .pyme-plan-btn {
    width: 100%;
    text-align: center;
  }

  .parts-business-panel > a,
  .business-benefit-card-strong a {
    width: 100%;
    text-align: center;
  }

  .business-card-actions {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .route-line-head {
    align-items: stretch;
    flex-direction: column;
    gap: 0.85rem;
  }

  .branches-cta {
    width: 100%;
  }

  .branch-items {
    padding: 0.75rem;
    gap: 0.35rem 0.55rem;
  }

  .branch-chip {
    min-height: 36px;
    padding: 0 0.6rem;
  }

  .branch-popover {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 5.25rem;
    width: auto;
    max-height: min(54vh, 300px);
    overflow: auto;
    transform: translateY(0.5rem);
  }

  .route-points .route-point:first-child .branch-popover,
  .route-points .route-point:last-child .branch-popover {
    left: 1rem;
    right: 1rem;
  }

  .branch-popover::after {
    display: none;
  }

  .branch-items li:hover .branch-popover,
  .branch-items li:focus-within .branch-popover,
  .route-point:hover .branch-popover,
  .route-point:focus .branch-popover,
  .route-point:focus-within .branch-popover {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .branches-cta,
  .branch-chip,
  .branch-popover,
  .pyme-plan-btn {
    transition: none;
  }
}
