:root {
  --navy: #061c3d;
  --navy-2: #082a5c;
  --red: #e11d2e;
  --red-2: #b90f20;
  --ink: #08172e;
  --muted: #5b6678;
  --line: #dfe6f2;
  --soft: #f5f8fc;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(6, 28, 61, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  background: var(--white);
  overflow-x: hidden;
}

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

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.topbar {
  color: #fff;
  background: linear-gradient(90deg, #05172f, #082b5f);
  font-size: 13px;
}

.topbar__inner,
.topbar__group,
.topbar__socials,
.nav,
.nav__menu,
.button,
.hero__features span,
.check-grid span,
.progress-ui,
.footer__socials {
  display: flex;
  align-items: center;
}

.topbar__inner {
  min-height: 42px;
  justify-content: space-between;
  gap: 20px;
}

.topbar__group {
  flex-wrap: wrap;
  gap: 18px;
}

.topbar__group span[aria-hidden="true"] {
  display: none;
}

.topbar svg,
.footer svg {
  width: 16px;
  height: 16px;
}

.topbar span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.topbar i {
  color: var(--red);
}

.topbar__socials {
  gap: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(6, 28, 61, 0.08);
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 34px rgba(6, 28, 61, 0.1);
}

.nav {
  min-height: 112px;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  width: 205px;
  height: 92px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.brand img {
  width: 205px;
  height: 92px;
  object-fit: contain;
}

.nav__menu {
  gap: 25px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav__menu > a:not(.button) {
  position: relative;
  padding: 12px 0;
}

.nav__menu > a:not(.button)::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  content: "";
  background: var(--red);
  transition: width 0.2s ease;
}

.nav__menu > a:hover::after,
.nav__menu > a.active::after {
  width: 100%;
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  color: #fff;
  background: var(--navy);
  border: 1px solid rgba(6, 28, 61, 0.18);
  border-radius: var(--radius);
}

.button {
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.button svg {
  width: 18px;
  height: 18px;
}

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

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-2));
  box-shadow: 0 14px 30px rgba(225, 29, 46, 0.28);
}

.button--ghost {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(6, 28, 61, 0.28);
}

.button--outline {
  color: var(--navy);
  background: transparent;
  border-color: rgba(6, 28, 61, 0.35);
}

.button--small {
  min-height: 48px;
  padding-inline: 18px;
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 42%, rgba(255, 255, 255, 0.18) 72%),
    url("https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=2200&q=90") center / cover;
}

.hero__bg::after {
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  content: "";
  background: linear-gradient(0deg, #fff, rgba(255, 255, 255, 0));
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: 50px;
  min-height: 720px;
  padding: 78px 0 96px;
}

.hero__content {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Inter", sans-serif;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 700px;
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(48px, 6vw, 84px);
  line-height: 0.98;
  font-weight: 900;
  text-transform: uppercase;
}

h1 span {
  display: block;
  color: var(--red);
}

h2 {
  color: var(--navy);
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.08;
  font-weight: 900;
}

.hero__lead {
  max-width: 630px;
  color: #27364f;
  font-size: 18px;
  line-height: 1.72;
}

.hero__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 16px 26px;
  max-width: 650px;
  margin: 32px 0 38px;
  color: var(--ink);
  font-weight: 800;
}

.hero__features span,
.check-grid span {
  gap: 9px;
}

.hero__features svg,
.check-grid svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--red);
  fill: currentColor;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__visual {
  position: relative;
  min-height: 470px;
}

.hero__image {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius);
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.hero__image--main {
  right: 0;
  bottom: 22px;
  width: min(100%, 560px);
  height: 355px;
  background-image: url("https://images.unsplash.com/photo-1494412685616-a5d310fbb07d?auto=format&fit=crop&w=1200&q=90");
}

.hero__image--plane {
  top: 8px;
  left: 10px;
  width: 320px;
  height: 210px;
  background-image: url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=900&q=90");
}

.route-card,
.hero__metric {
  position: absolute;
  z-index: 2;
  padding: 16px 18px;
  color: #fff;
  background: rgba(6, 28, 61, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 46px rgba(6, 28, 61, 0.24);
}

.route-card {
  top: 98px;
  right: 18px;
  display: grid;
  gap: 9px;
  min-width: 170px;
  font-weight: 900;
}

.route-card__line {
  width: 100%;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}

.route-card__line::before {
  display: block;
  width: 45%;
  height: 100%;
  content: "";
  background: var(--red);
  animation: routeMove 2s linear infinite;
}

.hero__metric {
  right: 34px;
  bottom: 0;
  display: grid;
  width: 190px;
}

.hero__metric strong {
  color: #fff;
  font-size: 42px;
  line-height: 1;
}

.hero__metric span {
  font-size: 13px;
  line-height: 1.5;
}

.side-quote {
  position: fixed;
  right: 0;
  top: 42%;
  z-index: 35;
  padding: 16px 10px;
  color: #fff;
  background: var(--red);
  border-radius: 8px 0 0 8px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.section {
  padding: 86px 0;
}

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

.service-grid,
.flag-grid,
.blog-grid {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.service-grid {
  grid-template-columns: repeat(8, 1fr);
}

.service-card {
  min-height: 178px;
  padding: 26px 14px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(6, 28, 61, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(225, 29, 46, 0.45);
  box-shadow: var(--shadow);
}

.service-card svg {
  width: 52px;
  height: 52px;
  margin: 0 auto 20px;
  color: var(--navy);
  stroke-width: 1.8;
}

.service-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 900;
}

.trust {
  background: linear-gradient(180deg, #fff, var(--soft));
}

.trust__grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr 0.95fr;
  align-items: center;
  gap: 46px;
}

.trust__media {
  display: grid;
  gap: 10px;
}

.trust__media img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.trust__media div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.trust__media div img {
  height: 150px;
}

.trust__content p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.8;
}

.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px 22px;
  margin-top: 30px;
  font-weight: 800;
}

.world-map {
  position: relative;
  min-height: 310px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 65% 45%, rgba(225, 29, 46, 0.08), transparent 34%),
    linear-gradient(135deg, rgba(6, 28, 61, 0.04), rgba(6, 28, 61, 0.01));
  border: 1px solid var(--line);
  overflow: hidden;
}

.world-map::before {
  position: absolute;
  inset: 24px;
  content: "";
  opacity: 0.35;
  background-image: radial-gradient(#061c3d 1px, transparent 1px);
  background-size: 9px 9px;
  mask-image: radial-gradient(ellipse at center, #000 45%, transparent 74%);
}

.world-map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.world-map path {
  fill: none;
  stroke: var(--red);
  stroke-dasharray: 8 9;
  stroke-width: 2.5;
  animation: dash 4s linear infinite;
}

.map-dot {
  position: absolute;
  z-index: 2;
  width: 15px;
  height: 15px;
  background: var(--red);
  border: 3px solid #fff;
  border-radius: 99px;
  box-shadow: 0 0 0 8px rgba(225, 29, 46, 0.12);
}

.map-dot--uae { left: 61%; top: 57%; }
.map-dot--uk { left: 35%; top: 34%; }
.map-dot--india { left: 54%; top: 61%; }
.map-dot--usa { left: 17%; top: 41%; }

.stats {
  color: #fff;
  background: radial-gradient(circle at top left, rgba(225, 29, 46, 0.22), transparent 28%), linear-gradient(135deg, #041224, #082f66);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.stats__grid > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 16px;
  padding: 34px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.stats__grid > div:last-child {
  border-right: 0;
}

.stats svg {
  grid-row: span 2;
  width: 44px;
  height: 44px;
  color: var(--red);
}

.stats strong {
  font-family: "Inter", sans-serif;
  font-size: 34px;
  line-height: 1;
}

.stats span {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.destinations {
  padding-bottom: 64px;
}

.flag-grid {
  grid-template-columns: repeat(11, 1fr);
}

.flag-grid span {
  display: grid;
  gap: 10px;
  justify-items: center;
  padding: 16px 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(6, 28, 61, 0.05);
  font-size: 32px;
}

.flag-grid b {
  font-size: 13px;
}

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

.reviews__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
  gap: 30px;
}

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

.review-cards article {
  min-height: 230px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.review-cards svg {
  width: 35px;
  height: 35px;
  margin-bottom: 16px;
  color: var(--red);
  fill: currentColor;
}

.review-cards p {
  min-height: 58px;
  line-height: 1.7;
}

.review-cards b,
.review-cards span {
  display: block;
  font-size: 13px;
}

.review-cards span {
  color: var(--muted);
  margin-top: 5px;
}

.courier-shot {
  min-height: 380px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(6, 28, 61, 0.08), rgba(6, 28, 61, 0.2)),
    url("https://images.unsplash.com/photo-1591768793355-74d04bb6608f?auto=format&fit=crop&w=1000&q=90") center / cover;
  box-shadow: var(--shadow);
}

.action-band {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(6, 28, 61, 0.96), rgba(6, 28, 61, 0.82)),
    url("https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?auto=format&fit=crop&w=1800&q=88") center / cover;
}

.action-band .eyebrow,
.action-band h2 {
  color: #fff;
}

.action-band__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 30px;
}

.tracking-panel,
.quote-form {
  padding: 34px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
}

.inline-form label {
  display: block;
  margin-bottom: 10px;
  font-weight: 800;
}

.inline-form div,
.newsletter {
  display: flex;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  color: var(--ink);
  background: #fff;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font: 600 14px "Manrope", sans-serif;
  padding: 0 16px;
  outline: none;
}

textarea {
  min-height: 120px;
  padding-top: 15px;
  resize: vertical;
}

.inline-form input {
  border-radius: var(--radius) 0 0 var(--radius);
}

.inline-form .button {
  flex: 0 0 auto;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.progress-ui {
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  counter-reset: step;
}

.progress-ui span {
  position: relative;
  display: grid;
  gap: 8px;
  justify-items: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.progress-ui span::before {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  content: counter(step);
  counter-increment: step;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 99px;
}

.progress-ui .done::before,
.progress-ui .active::before {
  background: var(--red);
}

.progress-ui .active {
  color: #fff;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
  margin-bottom: 18px;
}

.form-grid textarea {
  grid-column: 1 / -1;
}

.blog-grid {
  grid-template-columns: repeat(4, 1fr);
}

.blog-grid article {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 35px rgba(6, 28, 61, 0.06);
}

.blog-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  color: var(--red);
  background: rgba(225, 29, 46, 0.09);
  border-radius: 99px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-grid h3 {
  color: var(--navy);
  font-size: 21px;
}

.blog-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.footer {
  color: #dce8f7;
  background: linear-gradient(135deg, #041224, #082f66);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1.4fr 0.9fr;
  gap: 42px;
  padding: 58px 0;
}

.footer__logo {
  width: 165px;
  height: 75px;
  object-fit: contain;
  background: #fff;
  border-radius: var(--radius);
  padding: 6px;
  margin-bottom: 16px;
}

.footer h3 {
  color: #fff;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.footer p {
  line-height: 1.75;
}

.footer a {
  display: block;
  margin-bottom: 10px;
}

.footer__socials {
  gap: 12px;
}

.footer__socials a {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 99px;
}

.newsletter input {
  border-radius: var(--radius) 0 0 var(--radius);
}

.newsletter button {
  width: 54px;
  color: #fff;
  background: var(--red);
  border: 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.footer__bottom {
  display: flex;
  justify-content: center;
  gap: 22px;
  padding: 22px;
  color: #aac1dc;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 14px;
}

.footer__bottom a {
  display: inline;
  color: #fff;
}

.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #fff;
  background: #17b957;
  border-radius: 99px;
  box-shadow: 0 18px 38px rgba(23, 185, 87, 0.32);
}

.whatsapp svg {
  width: 28px;
  height: 28px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes routeMove {
  to {
    transform: translateX(230%);
  }
}

@keyframes dash {
  to {
    stroke-dashoffset: -80;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

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

@media (max-width: 1120px) {
  .topbar__socials {
    display: none;
  }

  .topbar__inner {
    width: 100%;
    min-height: auto;
    padding: 0;
    overflow: hidden;
  }

  .topbar__group {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    gap: 28px;
    padding: 9px 0;
    font-size: 13px;
    white-space: nowrap;
    animation: marquee 24s linear infinite;
    will-change: transform;
  }

  .topbar__group span {
    flex: 0 0 auto;
  }

  .topbar__group span[aria-hidden="true"] {
    display: inline-flex;
  }

  .nav__toggle {
    display: grid;
    place-items: center;
  }

  .nav {
    min-height: 92px;
    justify-content: space-between;
  }

  .brand,
  .brand img {
    width: 176px;
    height: 80px;
  }

  .nav__menu {
    position: absolute;
    inset: 92px 20px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav__menu.is-open {
    display: flex;
  }

  .nav__toggle {
    margin-left: auto;
    flex: 0 0 auto;
  }

  .nav__menu .button {
    margin-top: 6px;
  }

  .hero__inner,
  .trust__grid,
  .reviews__grid,
  .action-band__grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 500px;
  }

  .service-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .world-map {
    min-height: 260px;
  }

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

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

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    gap: 28px;
    min-height: auto;
    padding: 46px 0 70px;
  }

  .hero__content,
  .hero__lead,
  .hero__inner > * {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  h1 {
    font-size: 38px;
    line-height: 1.02;
  }

  h2 {
    font-size: 25px;
    line-height: 1.18;
  }

  .section__heading {
    max-width: 100%;
    margin-bottom: 24px;
  }

  .section__heading h2,
  .trust__content h2,
  .reviews__content h2,
  .tracking-panel h2,
  .quote-form h2 {
    max-width: 330px;
  }

  .hero__lead {
    font-size: 16px;
    max-width: 340px;
  }

  .hero__features,
  .check-grid,
  .form-grid,
  .review-cards {
    grid-template-columns: 1fr;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__actions {
    gap: 10px;
  }

  .hero__visual {
    display: grid;
    gap: 14px;
    min-height: auto;
  }

  .hero__image--plane {
    display: none;
  }

  .hero__image--main {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 250px;
  }

  .route-card,
  .hero__metric {
    position: relative;
    inset: auto;
    width: 100%;
    min-width: 0;
    transform: none;
  }

  .route-card {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .side-quote {
    display: none;
  }

  .section {
    padding: 64px 0;
  }

  .service-grid,
  .stats__grid,
  .flag-grid,
  .blog-grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .trust__media div {
    grid-template-columns: 1fr;
  }

  .trust__media img,
  .trust__media div img,
  .courier-shot {
    height: 220px;
  }

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

  .stats__grid > div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .inline-form div {
    display: grid;
    gap: 10px;
  }

  .inline-form input,
  .inline-form .button {
    border-radius: var(--radius);
  }

  .progress-ui {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .tracking-panel,
  .quote-form {
    padding: 24px;
    min-width: 0;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 470px) {
  h1 {
    font-size: 31px;
  }

  h2 {
    font-size: 24px;
  }

  .brand,
  .brand img {
    width: 150px;
    height: 70px;
  }

  .nav {
    min-height: 82px;
  }

  .nav__menu {
    inset: 82px 14px auto;
  }

  .hero__image--main {
    height: 220px;
  }

  .service-grid,
  .stats__grid,
  .flag-grid,
  .blog-grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__logo {
    width: 150px;
  }
}
