:root {
  --dhl-yellow: #ffcc00;
  --dhl-yellow-deep: #f0b800;
  --dhl-red: #d40511;
  --ink: #111111;
  --muted: #5c5c5c;
  --paper: #f7f5f0;
  --white: #ffffff;
  --line: #e8e4da;
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Archivo Black", "Arial Black", sans-serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse 90% 60% at 100% -10%, rgba(255, 204, 0, 0.18), transparent 50%),
    radial-gradient(ellipse 70% 50% at 0% 100%, rgba(212, 5, 17, 0.06), transparent 45%),
    var(--paper);
  line-height: 1.5;
  min-height: 100vh;
}

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

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

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header — brand-first yellow bar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--dhl-yellow);
  border-bottom: 3px solid var(--dhl-red);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  color: var(--ink);
}

.brand__mark {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  position: relative;
  display: block;
}

.brand__mark::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 78%;
  height: 28%;
  transform: translateY(-50%);
  background: var(--ink);
}

.brand__mark::after {
  content: "";
  position: absolute;
  right: 8%;
  top: 18%;
  width: 22%;
  height: 64%;
  background: var(--dhl-red);
}

.brand__mark--sm {
  width: 28px;
  height: 28px;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  min-width: 0;
}

.brand__dhl {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: -0.02em;
}

.brand__sub {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.85;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav__links {
  display: none;
  list-style: none;
  gap: 1.1rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.nav__links a {
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.nav__link--avis {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  white-space: nowrap;
  opacity: 1 !important;
  border-bottom: 0 !important;
}

.nav__link--avis img {
  width: 20px;
  height: 20px;
  max-width: none;
  display: inline-block;
}

.nav__link--avis:hover {
  transform: translateY(-1px);
}

.service__badge--icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  width: auto;
  min-width: 44px;
  padding: 0 0.45rem;
}

.service__badge--icons img {
  width: 18px;
  height: 18px;
}

.nav__links a:hover,
.nav__links a[aria-current="page"] {
  opacity: 1;
}

.nav__links a[aria-current="page"] {
  border-bottom: 2px solid var(--dhl-red);
  padding-bottom: 1px;
}

.nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.55rem 0.9rem;
  border: 2px solid var(--ink);
  background: transparent;
  font: inherit;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
}

.nav.is-open .nav__links {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: calc(100% + 3px);
  left: -1rem;
  right: -1rem;
  background: var(--dhl-yellow);
  border-bottom: 3px solid var(--dhl-red);
  padding: 1rem 1.25rem 1.25rem;
  gap: 0.9rem;
  z-index: 50;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.55rem 0.85rem;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  font-size: 0.8rem;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s var(--ease);
}

.nav__cta:hover {
  background: var(--dhl-red);
  transform: translateY(-1px);
}

.nav__toggle {
  order: 3;
}

.nav__cta {
  order: 2;
  margin-left: auto;
}

@media (min-width: 880px) {
  .nav__toggle {
    display: none !important;
  }

  .nav__links {
    display: flex !important;
    align-items: center;
    flex-direction: row;
    position: static;
    margin-left: auto;
    margin-right: 0.75rem;
    order: 2;
    background: transparent;
    border: 0;
    padding: 0;
    gap: 1rem;
  }

  .nav.is-open .nav__links {
    position: static;
    flex-direction: row;
    border: 0;
    padding: 0;
    background: transparent;
  }

  .nav__cta {
    order: 3;
    margin-left: 0;
    padding: 0.65rem 1.1rem;
    font-size: 0.88rem;
  }

  .brand {
    max-width: none;
    flex: 0 1 auto;
  }

  .brand__dhl {
    font-size: 1.75rem;
  }

  .brand__sub {
    font-size: 0.78rem;
  }

  .brand__mark {
    width: 48px;
    height: 48px;
  }
}

/* Hero */
.hero {
  position: relative;
  width: 100%;
  min-height: min(86vh, 720px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: #0e0e0e;
}

/* Homepage tracking — below hero */
.home-track {
  position: relative;
  z-index: 2;
  margin-top: -2.5rem;
  padding: 0 1rem 0;
}

.home-track__inner {
  background:
    linear-gradient(135deg, #fffef8 0%, #ffffff 48%, #fff8e0 100%);
  border-top: 5px solid var(--dhl-yellow);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.12),
    0 2px 0 rgba(212, 5, 17, 0.35);
  padding: clamp(1.35rem, 3.5vw, 2rem) clamp(1.15rem, 3vw, 2rem) clamp(1.25rem, 3vw, 1.75rem);
  max-width: var(--max);
  margin: 0 auto;
}

.home-track__intro {
  max-width: 36rem;
  margin-bottom: 1.25rem;
}

.home-track__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dhl-red);
}

.home-track__intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 0.45rem;
}

.home-track__lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.45;
}

.home-track__form {
  margin: 0;
}

.home-track__label {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.home-track__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: stretch;
}

.home-track__input {
  flex: 1 1 240px;
  min-height: 56px;
  padding: 0.85rem 1.05rem;
  border: 2px solid #e2ddd0;
  background: var(--white);
  font: inherit;
  font-size: 1.08rem;
  letter-spacing: 0.04em;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.home-track__input::placeholder {
  color: #9a958a;
  letter-spacing: 0;
}

.home-track__input:hover {
  border-color: #cfc8b6;
}

.home-track__input:focus {
  outline: none;
  border-color: var(--dhl-yellow-deep);
  box-shadow: 0 0 0 4px rgba(255, 204, 0, 0.35);
}

.home-track__submit {
  appearance: none;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 56px;
  padding: 0.85rem 1.35rem;
  background: var(--ink);
  color: var(--white);
  font: inherit;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.2s var(--ease), transform 0.15s var(--ease);
}

.home-track__submit:hover {
  background: var(--dhl-red);
}

.home-track__submit:active {
  transform: translateY(1px);
}

.home-track__submit:focus-visible {
  outline: 3px solid var(--dhl-yellow);
  outline-offset: 2px;
}

.home-track__submit-icon {
  font-size: 1.15rem;
  line-height: 1;
  transition: transform 0.2s var(--ease);
}

.home-track__submit:hover .home-track__submit-icon {
  transform: translateX(3px);
}

.home-track__hint {
  margin: 0.7rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.4;
}

.home-track__error {
  margin: 0.55rem 0 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--dhl-red);
}

.home-track__tips {
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

@media (min-width: 720px) {
  .home-track__tips {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
  }
}

.home-track__tips li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  line-height: 1.35;
  color: var(--muted);
  padding: 0.75rem 0.85rem;
  background: rgba(255, 255, 255, 0.72);
  border-left: 3px solid var(--dhl-yellow);
}

.home-track__tips li:nth-child(2) {
  border-left-color: var(--dhl-red);
}

.home-track__tips li:nth-child(3) {
  border-left-color: var(--ink);
}

.home-track__tips strong {
  color: var(--ink);
  font-weight: 700;
}

.home-track__tip-num {
  flex-shrink: 0;
  width: 1.55rem;
  height: 1.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.78rem;
  background: var(--dhl-yellow);
  color: var(--ink);
}

.home-track__more {
  margin: 1.15rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.home-track__more a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  text-decoration-color: var(--dhl-yellow);
}

.home-track__more a:hover {
  color: var(--dhl-red);
  text-decoration-color: var(--dhl-red);
}

@media (max-width: 560px) {
  .home-track {
    margin-top: -1.25rem;
  }

  .home-track__submit {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-track__submit,
  .home-track__submit-icon,
  .home-track__input {
    transition: none;
  }
}

.hero__slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.9s var(--ease), transform 6s ease-out;
  pointer-events: none;
}

.hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero__slide > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 28%;
}

.hero__slide--review img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  filter: brightness(0.55) contrast(1.05);
}

.hero__quote {
  position: absolute;
  z-index: 3;
  right: max(1rem, calc((100% - var(--max)) / 2));
  bottom: 5.75rem;
  width: min(22rem, calc(100% - 2rem));
  padding: 1.15rem 1.2rem 1.2rem;
  background: var(--white);
  color: var(--ink);
  border-top: 4px solid var(--dhl-yellow);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  pointer-events: none;
}

.hero__slide--review.is-active .hero__quote {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero__quote-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.65rem;
}

.hero__quote-top img {
  width: 20px;
  height: 20px;
  max-width: none;
  filter: none;
  object-fit: contain;
  flex-shrink: 0;
}

.hero__stars {
  display: inline-block;
  color: #fbbc04;
  font-size: 1rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.hero__quote blockquote {
  font-size: clamp(0.98rem, 1.6vw, 1.12rem);
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 0.75rem;
}

.hero__quote footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.hero__quote cite {
  font-style: normal;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--muted);
}

.hero__quote-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dhl-red);
  border-bottom: 0;
  background: var(--dhl-yellow);
}

.hero__quote-cta img {
  width: 16px;
  height: 16px;
  max-width: none;
  filter: none;
}

.hero--page {
  min-height: min(72vh, 620px);
}

.hero--page .hero__content {
  padding: 3.5rem 0 5.5rem;
}

.hero--page .hero__brand-dhl {
  font-size: clamp(2.4rem, 8vw, 4.2rem);
}

.hero__tag {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.65rem;
  background: var(--dhl-yellow);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__dot--review {
  background: rgba(251, 188, 4, 0.55);
}

.hero__dot--review.is-active {
  background: #fbbc04;
}

.partner__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.partner__actions .btn {
  min-height: 42px;
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
}

.service__link {
  display: flex;
  flex-direction: column;
  color: inherit;
  height: 100%;
}

.service__badge {
  position: absolute;
  z-index: 2;
  top: 0.75rem;
  right: 0.75rem;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--dhl-yellow);
  border-bottom: 3px solid var(--dhl-red);
}

.service__badge img {
  width: 26px;
  height: 26px;
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(105deg, rgba(8, 8, 8, 0.88) 0%, rgba(8, 8, 8, 0.55) 42%, rgba(8, 8, 8, 0.28) 100%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.2) 0%, rgba(8, 8, 8, 0.75) 100%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 3;
  padding: 5rem 0 6rem;
  max-width: 40rem;
  animation: rise 0.85s var(--ease) both;
}

.hero__brand {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 1.25rem;
  animation: rise 0.85s var(--ease) 0.05s both;
}

.hero__brand-dhl {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 11vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--dhl-yellow);
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
}

.hero__brand-name {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3.4vw, 2rem);
  letter-spacing: 0.01em;
  color: var(--white);
}

.hero h1 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.9vw, 1.85rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.7rem;
  max-width: 18ch;
  animation: rise 0.85s var(--ease) 0.12s both;
}

.hero__lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 30ch;
  margin-bottom: 1.75rem;
  animation: rise 0.85s var(--ease) 0.18s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: rise 0.85s var(--ease) 0.24s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.35rem;
  font-weight: 700;
  font-size: 0.98rem;
  border: 2px solid transparent;
  transition: transform 0.2s var(--ease), background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.btn--primary {
  background: var(--dhl-yellow);
  color: var(--ink);
}

.btn--primary:hover {
  background: #ffe066;
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
  background: rgba(0, 0, 0, 0.2);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

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

.btn--dark:hover {
  background: var(--dhl-red);
}

.hero__controls {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  bottom: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 0 1rem;
}

.hero__dots {
  display: flex;
  gap: 0.45rem;
}

.hero__dot {
  width: 9px;
  height: 9px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 0.2s ease, width 0.2s ease;
}

.hero__dot.is-active {
  background: var(--dhl-yellow);
  width: 24px;
}

.hero__nav {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.4);
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.hero__nav:hover {
  background: var(--dhl-yellow);
  border-color: var(--dhl-yellow);
  color: var(--ink);
}

/* Sections */
.section {
  padding: 4.25rem 0;
}

.section__head {
  max-width: 34rem;
  margin-bottom: 2.25rem;
}

.section__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.section__head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.services {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 700px) {
  .services {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .services {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.service {
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease);
}

.service:hover {
  transform: translateY(-4px);
}

.service__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #d8d4cb;
}

.service__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.28));
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.service:hover .service__media::before {
  opacity: 1;
}

.service__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.service:hover .service__media img {
  transform: scale(1.04);
}

.service__media::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: var(--dhl-yellow);
}

.service:nth-child(2) .service__media::after,
.service:nth-child(4) .service__media::after {
  background: var(--dhl-red);
}

.service__body {
  padding: 1rem 0 0;
}

.service:not(:has(.service__media)) {
  padding-top: 0.25rem;
}

.service:not(:has(.service__media)) .service__body {
  border-top: 3px solid var(--dhl-yellow);
  padding-top: 1rem;
}

.service:nth-child(even):not(:has(.service__media)) .service__body {
  border-top-color: var(--dhl-red);
}

.service h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.service p {
  color: var(--muted);
  font-size: 0.95rem;
}

.text-link {
  display: inline-block;
  margin-top: 0.65rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
  border-bottom: 2px solid var(--dhl-yellow);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.text-link:hover {
  color: var(--dhl-red);
  border-bottom-color: var(--dhl-red);
}

/* Trust / quality */
.trust {
  background: var(--ink);
  color: var(--white);
}

.trust .section__head p,
.trust .section__eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.trust .section__eyebrow {
  color: var(--dhl-yellow);
}

.trust .section__head h2 {
  color: var(--white);
}

.trust__grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .trust__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.trust__item {
  padding-top: 0.85rem;
  border-top: 4px solid var(--dhl-yellow);
}

.trust__item:nth-child(2) {
  border-top-color: var(--dhl-red);
}

.trust__item:nth-child(3) {
  border-top-color: rgba(255, 255, 255, 0.35);
}

.trust__item:nth-child(4) {
  border-top-color: var(--dhl-yellow);
}

.trust__item h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
  letter-spacing: -0.01em;
}

.trust__item p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.45;
}

/* Businesses / partners */
.businesses {
  background: var(--paper);
}

.businesses__grid {
  /* inherits .services */
}

@media (min-width: 700px) {
  .businesses__grid.services {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .businesses__grid.services {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Documents Express */
.documents {
  background: var(--white);
}

.documents__intro {
  max-width: 40rem;
}

.documents .service__body p {
  font-size: 0.95rem;
}

.documents__note {
  margin-top: 1.75rem;
  padding: 1rem 1.15rem;
  border-left: 4px solid var(--dhl-red);
  background: var(--paper);
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--muted);
}

.documents__note strong {
  color: var(--ink);
}

.documents__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Export / diaspora Canada & USA */
.export {
  background: var(--paper);
}

.export .documents__note {
  background: var(--white);
}

/* Fleet / bikes */
.fleet {
  background: var(--white);
}

.fleet__grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 700px) {
  .fleet__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.fleet__card {
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease);
}

.fleet__card:hover {
  transform: translateY(-4px);
}

.fleet__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #d8d4cb;
}

.fleet__media::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: var(--dhl-red);
}

.fleet__card:nth-child(2) .fleet__media::after {
  background: var(--dhl-yellow);
}

.fleet__card:nth-child(3) .fleet__media::after {
  background: var(--ink);
}

.fleet__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.fleet__card:hover .fleet__media img {
  transform: scale(1.04);
}

.fleet__body {
  padding: 1rem 0 0;
}

.fleet__body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}

.fleet__body p {
  color: var(--muted);
  font-size: 0.95rem;
}

.fleet__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

/* Worldwide */
.worldwide {
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(255, 204, 0, 0.2), transparent 55%),
    radial-gradient(ellipse 50% 70% at 0% 100%, rgba(212, 5, 17, 0.18), transparent 50%),
    var(--ink);
  color: var(--white);
}

.worldwide__inner {
  max-width: 40rem;
}

.worldwide__brand {
  font-family: var(--font-display);
  color: var(--dhl-yellow);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.worldwide h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.35rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.worldwide p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1.35rem;
  max-width: 40ch;
}

.routes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.routes span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.5rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.9);
}

/* Contact */
.contact {
  background: var(--white);
}

.contact__grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .contact__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact__item {
  padding: 1.5rem 0 1.5rem 1.15rem;
  border-left: 4px solid var(--dhl-yellow);
}

.contact__item:nth-child(2) {
  border-left-color: var(--dhl-red);
}

.contact__item h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.contact__item p,
.contact__item a {
  color: var(--muted);
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.85rem;
}

.contact__note {
  margin-top: 0.5rem;
}

/* Footer */
.site-footer {
  padding: 2.25rem 0;
  border-top: 3px solid var(--dhl-yellow);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
}

.footer__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer__grid {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}

@media (min-width: 720px) {
  .footer__grid {
    grid-template-columns: minmax(12rem, 1fr) 2fr minmax(12rem, 1fr);
    align-items: center;
    gap: 1.5rem;
  }
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
}

.footer__nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer__nav a:hover {
  color: var(--dhl-yellow);
  border-bottom-color: var(--dhl-yellow);
}

.footer__meta {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

@media (min-width: 720px) {
  .footer__meta {
    align-items: flex-end;
    text-align: right;
  }
}

.footer__maps {
  color: var(--dhl-yellow);
  font-weight: 700;
  font-size: 0.9rem;
}

.footer__maps:hover {
  color: var(--white);
}

.service--link {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
  transition: transform 0.2s var(--ease);
}

.service--link:hover {
  transform: translateY(-2px);
}

.service--link .text-link {
  pointer-events: none;
}

.text-link--on-dark {
  color: var(--dhl-yellow);
  border-bottom-color: rgba(255, 204, 0, 0.45);
}

.text-link--on-dark:hover {
  color: var(--white);
  border-bottom-color: var(--white);
}

.worldwide .btn--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.worldwide .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  color: var(--white);
}

.footer__brand .brand__mark::before {
  background: var(--dhl-yellow);
}

.footer__name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  color: var(--white);
}

.footer__copy {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  max-width: 36rem;
}

/* Inner pages */
.page-hero {
  padding: 3.25rem 0 2.35rem;
  background:
    linear-gradient(180deg, rgba(255, 204, 0, 0.22), transparent 70%),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.page-hero--photo {
  position: relative;
  color: var(--white);
  background-color: #111;
  background-image:
    linear-gradient(105deg, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.5) 100%),
    var(--page-photo);
  background-size: cover;
  background-position: center;
  border-bottom: 0;
  min-height: 320px;
  display: grid;
  align-items: end;
  padding-bottom: 2.75rem;
}

.page-hero__brand {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
  color: var(--ink);
}

.page-hero__brand span {
  color: var(--dhl-red);
}

.page-hero--photo .page-hero__brand {
  color: var(--white);
}

.page-hero--photo .page-hero__brand span {
  color: var(--dhl-yellow);
}

.page-hero__eyebrow {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dhl-red);
  margin-bottom: 0.7rem;
}

.page-hero--photo .page-hero__eyebrow {
  color: var(--dhl-yellow);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
  max-width: 16ch;
  margin-bottom: 0.7rem;
}

.page-hero p {
  max-width: 40ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.page-hero--photo p {
  color: rgba(255, 255, 255, 0.84);
}

.page-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 860px) {
  .page-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .page-grid--reverse {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .page-grid--reverse .prose {
    order: 2;
  }
}

.page-media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #d8d4cb;
}

.page-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 1.4rem 0 0.45rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p,
.prose li {
  color: var(--muted);
  margin-bottom: 0.7rem;
}

.prose ul {
  padding-left: 1.15rem;
}

.prose--center {
  text-align: center;
  max-width: 38rem;
  margin-inline: auto;
}

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

.values {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .values {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value {
  padding-top: 0.9rem;
  border-top: 4px solid var(--dhl-yellow);
}

.value:nth-child(2) {
  border-top-color: var(--dhl-red);
}

.value h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.value p {
  color: var(--muted);
  font-size: 0.95rem;
}

.page-hero--track {
  background:
    linear-gradient(180deg, rgba(255, 204, 0, 0.35), transparent 72%),
    var(--paper);
}

.section--track {
  padding-top: 2rem;
}

/* Map tracking / Google Maps */
.map-track__grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .map-track__grid {
    grid-template-columns: 1fr 1.05fr;
    align-items: start;
    gap: 1.75rem;
  }
}

.map-track__form-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.map-track__status {
  padding: 1rem 1.1rem;
  background: #fff8e0;
  border-left: 4px solid var(--dhl-yellow);
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--muted);
}

.map-track__status[hidden] {
  display: none !important;
}

.map-track__status p {
  margin: 0 0 0.45rem;
}

.map-track__status p:last-of-type {
  margin-bottom: 0.65rem;
}

.map-track__status code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-weight: 700;
  color: var(--ink);
  background: rgba(0, 0, 0, 0.06);
  padding: 0.1rem 0.35rem;
}

.map-track__help {
  border-left: 4px solid var(--dhl-red);
  padding-left: 1.1rem;
}

.map-track__map {
  background: var(--white);
  border-top: 4px solid var(--dhl-red);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.map-track__map-head {
  padding: 1rem 1.15rem 0.75rem;
}

.map-track__map-head h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.25rem;
}

.map-track__map-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.map-track__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #e8e4da;
}

.map-track__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-track__map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding: 1rem 1.15rem 1.15rem;
}

.map-teaser {
  padding-top: 0;
  padding-bottom: 2.5rem;
  background: transparent;
}

.map-teaser__inner {
  display: grid;
  gap: 1.25rem;
  background: var(--white);
  border-top: 4px solid var(--dhl-yellow);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

@media (min-width: 860px) {
  .map-teaser__inner {
    grid-template-columns: 1fr 1.15fr;
    align-items: stretch;
  }
}

.map-teaser__copy {
  padding: clamp(1.25rem, 3vw, 1.85rem);
}

.map-teaser__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  margin: 0 0 0.5rem;
}

.map-teaser__copy > p:not(.section__eyebrow) {
  color: var(--muted);
  margin: 0 0 1.1rem;
  line-height: 1.45;
}

.map-teaser__frame {
  position: relative;
  min-height: 260px;
  background: #e8e4da;
}

.map-teaser__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.track {
  display: grid;
  gap: 2rem;
  max-width: 720px;
}

.track--wide {
  max-width: 960px;
}

@media (min-width: 860px) {
  .track--wide {
    grid-template-columns: 1.35fr 0.9fr;
    align-items: start;
  }
}

.track__form {
  background: var(--white);
  padding: 1.65rem 1.5rem 1.5rem;
  border-top: 4px solid var(--dhl-yellow);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
}

.track__form label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.55rem;
  font-size: 1.05rem;
}

.track__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.track__row input {
  flex: 1 1 220px;
  min-height: 52px;
  padding: 0.75rem 0.9rem;
  border: 2px solid var(--line);
  font: inherit;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  background: var(--paper);
}

.track__row input:focus {
  outline: 2px solid var(--dhl-yellow);
  outline-offset: 1px;
  border-color: var(--dhl-yellow-deep);
}

.track__hint {
  margin-top: 0.75rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.track__error {
  margin-top: 0.55rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dhl-red);
}

.track__panel {
  padding: 1.35rem 0 0 0;
}

@media (min-width: 860px) {
  .track__panel {
    padding: 1.35rem 0 0 0.5rem;
    border-left: 4px solid var(--dhl-red);
    padding-left: 1.25rem;
  }
}

.track__panel h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.track__panel ul {
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.track__panel li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.track__panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--dhl-yellow);
}

.track__help-block {
  max-width: 40rem;
}

.track__help-block h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.45rem;
}

.track__help-block p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.track__help h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.track__help p {
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.steps {
  list-style: none;
  display: grid;
  gap: 0.9rem;
  counter-reset: step;
}

.steps li {
  position: relative;
  padding: 1rem 1rem 1rem 3.25rem;
  background: var(--paper);
  color: var(--muted);
  counter-increment: step;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 1.6rem;
  height: 1.6rem;
  display: grid;
  place-items: center;
  background: var(--dhl-yellow);
  color: var(--ink);
  font-weight: 800;
  font-size: 0.85rem;
}

.steps strong {
  color: var(--ink);
}

/* Partner — bold yellow strip */
.partner {
  padding: 0;
  background: var(--dhl-yellow);
  border-bottom: 3px solid var(--dhl-red);
}

.partner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding: 0.95rem 0;
}

.partner__mark {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.partner__dot {
  width: 0.4rem;
  height: 0.4rem;
  background: var(--dhl-red);
  flex-shrink: 0;
}

.partner__text {
  color: rgba(17, 17, 17, 0.72);
  font-size: 0.95rem;
  font-weight: 500;
  flex: 1 1 12rem;
  min-width: 0;
}

.partner__maps {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, transform 0.2s var(--ease);
}

.partner__maps img {
  width: 20px;
  height: 20px;
}

.partner__maps:hover {
  border-bottom-color: var(--dhl-red);
  transform: translateY(-1px);
}

/* Reviews — same structure as services */
.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dhl-red);
  margin-bottom: 0.65rem;
}

.section__eyebrow img {
  width: 18px;
  height: 18px;
}

.reviews {
  background: var(--white);
}

.reviews__rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.85rem;
  margin: -0.5rem 0 2rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.reviews__google {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.95rem;
}

.reviews__google img {
  width: 26px;
  height: 26px;
}

.reviews__score {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.35rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.reviews__stars {
  display: inline-flex;
  gap: 0.12rem;
  align-items: center;
}

.reviews__stars img {
  width: 16px;
  height: 16px;
}

.reviews__count {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.review__media img {
  object-position: center 18%;
}

.review .review__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.45rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.review .review__meta .reviews__stars img {
  width: 13px;
  height: 13px;
}

.review__source {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 600;
}

.review__source img {
  width: 13px;
  height: 13px;
}

.review h3 {
  font-size: 1.15rem;
}

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

/* Responsive */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
}

.brand {
  flex: 1 1 auto;
  max-width: calc(100% - 9.5rem);
}

.nav {
  flex-wrap: nowrap;
}

.nav.is-open {
  flex-wrap: wrap;
}

.nav.is-open .brand {
  max-width: none;
}

.hero--review .hero__veil {
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.82) 0%, rgba(8, 8, 8, 0.45) 48%, rgba(8, 8, 8, 0.35) 100%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.15) 0%, rgba(8, 8, 8, 0.55) 100%);
}

.hero--review .hero__content {
  max-width: 32rem;
}

@media (min-width: 700px) {
  .reviews__list.services {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .reviews__list.services {
    grid-template-columns: repeat(3, 1fr);
  }
}


@media (max-width: 879px) {
  .brand__sub {
    max-width: 11rem;
  }

  .nav__cta {
    padding: 0.5rem 0.7rem;
    font-size: 0.78rem;
  }

  .hero {
    min-height: min(78vh, 640px);
  }

  .hero__content {
    padding: 3.5rem 0 5.5rem;
  }

  .hero__brand-dhl {
    font-size: clamp(2.6rem, 14vw, 4.2rem);
  }

  .hero__actions .btn {
    flex: 1 1 auto;
    min-width: min(100%, 10.5rem);
    padding: 0.75rem 1rem;
    font-size: 0.92rem;
  }

  .hero__quote {
    left: 1rem;
    right: auto;
    bottom: 4.85rem;
    width: calc(100% - 2rem);
    max-width: 22rem;
  }

  .hero--review .hero__content {
    padding-bottom: 12rem;
  }

  .hero__nav {
    width: 36px;
    height: 36px;
  }

  .section {
    padding: 3.25rem 0;
  }

  .partner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
  }

  .partner__text {
    flex: none;
    width: 100%;
  }

  .page-hero {
    padding: 2.5rem 0 1.85rem;
  }

  .page-hero--photo {
    min-height: 260px;
  }

  .track__row .btn {
    width: 100%;
  }

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

@media (max-width: 480px) {
  .container {
    width: min(100% - 1.5rem, var(--max));
  }

  .brand__mark {
    width: 36px;
    height: 36px;
  }

  .brand__dhl {
    font-size: 1.35rem;
  }

  .brand__sub {
    font-size: 0.62rem;
    max-width: 8.5rem;
  }

  .hero {
    min-height: 70vh;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .reviews__rating {
    gap: 0.4rem 0.65rem;
  }

  .reviews__score {
    font-size: 1.7rem;
  }

  .hero__controls {
    gap: 0.45rem;
    padding: 0 0.65rem;
  }
}

@media (hover: none) {
  .service:hover,
  .btn:hover,
  .nav__cta:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .hero__slide {
    transform: none;
  }
}

.contact__actions--center {
  justify-content: center;
  margin-top: 1.25rem;
}
