@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap");

:root {
  --navy: #07192d;
  --navy-2: #0d2743;
  --navy-3: #173b60;
  --red: #d9272e;
  --red-dark: #b71e25;
  --ink: #142132;
  --muted: #667384;
  --line: #dce2e8;
  --ivory: #f7f6f2;
  --paper: #ffffff;
  --green: #1f8f65;
  --shadow: 0 18px 55px rgba(6, 25, 46, 0.1);
  --radius: 4px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 78px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body,
button,
input,
textarea,
select {
  font-family: "DM Sans", Arial, sans-serif;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.topbar {
  color: #c8d4e0;
  background: #061421;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.topbar-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-inner span:first-child {
  color: #e3ebf1;
}

.topbar-inner span:first-child::first-letter {
  color: var(--red);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(12, 34, 55, 0.09);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.logo-mark {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--red);
  border-radius: 3px;
  font-size: 25px;
  line-height: 1;
  transform: rotate(-2deg);
}

.logo > span:last-child {
  display: flex;
  flex-direction: column;
}

.logo strong {
  color: var(--navy);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 18px;
  font-style: normal;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.logo strong i {
  color: var(--red);
  font-style: normal;
}

.logo small {
  color: #798493;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.19em;
  line-height: 1.6;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 23px;
}

.nav > a:not(.button) {
  position: relative;
  color: #354253;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -29px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transition: 0.25s ease;
}

.nav > a:hover,
.nav > a.active {
  color: var(--red);
}

.nav > a.active::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  color: var(--navy);
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 3px;
  cursor: pointer;
  font-size: 22px;
}

.mobile-nav {
  display: none;
}

.button {
  min-height: 49px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 0 24px;
  border: 0;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.015em;
  cursor: pointer;
  transition: 0.25s ease;
}

.button span {
  font-size: 19px;
  line-height: 1;
  transition: transform 0.2s ease;
}

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

.button:hover span {
  transform: translateX(3px);
}

.button-red {
  color: white;
  background: var(--red);
  box-shadow: 0 12px 28px rgba(217, 39, 46, 0.22);
}

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

.button-navy {
  color: white;
  background: var(--navy);
}

.button-white {
  color: var(--navy);
  background: white;
}

.button-outline-light {
  color: white;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.nav-quote {
  min-height: 43px;
  padding: 0 18px;
}

.hero {
  position: relative;
  min-height: 690px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: white;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 15, 29, 0.96) 0%, rgba(5, 21, 38, 0.86) 36%, rgba(5, 21, 38, 0.2) 69%, rgba(5, 21, 38, 0.24) 100%),
    url("images/hero-port.png") center / cover no-repeat;
}

.hero::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 590px);
  width: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.08);
}

.hero-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 320px;
  align-items: center;
  padding: 76px 0 145px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 26px;
  height: 2px;
  background: currentColor;
}

.eyebrow.light {
  color: #f0b0b3;
}

.hero h1 {
  max-width: 700px;
  margin: 24px 0 24px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(55px, 6.5vw, 91px);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.hero h1 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1.4px rgba(255, 255, 255, 0.68);
}

.hero-copy > p {
  max-width: 610px;
  margin: 0 0 35px;
  color: #d7e1e9;
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.text-link-light {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #f4f7fa;
  font-size: 13px;
  font-weight: 700;
}

.text-link-light > span {
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  font-size: 22px;
}

.hero-proof {
  align-self: end;
  margin: 0 0 70px auto;
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 20px 22px;
  background: rgba(7, 25, 45, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.17);
  backdrop-filter: blur(12px);
}

.hero-proof div {
  display: flex;
  flex-direction: column;
}

.hero-proof strong {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 18px;
}

.hero-proof span {
  color: #9fafbd;
  font-size: 12px;
}

.hero-proof > b {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--red);
  border-radius: 50%;
  font-size: 18px;
}

.hero-bottom {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(4, 16, 30, 0.91);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.trust-row {
  min-height: 104px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-row > div {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0 27px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-row > div:first-child {
  padding-left: 0;
}

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

.trust-row i {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #f4a2a6;
  border: 1px solid rgba(217, 39, 46, 0.5);
  border-radius: 50%;
  font-size: 15px;
  font-style: normal;
}

.trust-row span {
  display: flex;
  flex-direction: column;
  color: #9fb0bf;
  font-size: 11px;
}

.trust-row strong {
  color: white;
  font-size: 14px;
}

.section {
  padding: 104px 0;
}

.section-title {
  max-width: 650px;
}

.section-title h2,
.cta h2 {
  margin: 17px 0 16px;
  color: var(--navy);
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(35px, 4.1vw, 54px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.09;
}

.section-title > p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.section-title.light h2,
.section-title.light p {
  color: white;
}

.section-title.light p {
  color: #b8c7d5;
}

.intro-section {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: 90px;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px 25px;
  margin: 32px 0 34px;
}

.check-list > span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #344254;
  font-size: 14px;
  font-weight: 600;
}

.check-list b {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: white;
  background: var(--red);
  border-radius: 50%;
  font-size: 11px;
}

.light-list > span {
  color: #d9e3eb;
}

.inline-link,
.service-card > a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
}

.insight-card {
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: flex-end;
  gap: 28px;
  overflow: hidden;
  padding: 38px;
  color: white;
  background:
    radial-gradient(circle at 72% 18%, rgba(217, 39, 46, 0.28), transparent 28%),
    linear-gradient(145deg, var(--navy-2), var(--navy));
  box-shadow: var(--shadow);
}

.insight-card::after {
  position: absolute;
  top: -90px;
  right: -60px;
  width: 280px;
  height: 280px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.globe-visual {
  position: absolute;
  top: 44px;
  right: 57px;
  width: 165px;
  height: 165px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.globe-visual > span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 95px;
  line-height: 1;
}

.globe-visual i {
  position: absolute;
  width: 9px;
  height: 9px;
  background: var(--red);
  border: 2px solid white;
  border-radius: 50%;
}

.globe-visual i:nth-child(2) { top: 22px; left: 38px; }
.globe-visual i:nth-child(3) { right: 15px; bottom: 51px; }
.globe-visual i:nth-child(4) { bottom: 7px; left: 63px; }

.insight-card > div:last-child {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.insight-card small {
  color: #93a7b9;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.insight-card strong {
  margin: 3px 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 27px;
}

.insight-card p {
  max-width: 330px;
  margin: 0;
  color: #aabac8;
  font-size: 13px;
}

.process-section {
  background: var(--ivory);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  background: white;
  border: 1px solid #e2e4e5;
  box-shadow: 0 14px 40px rgba(7, 25, 45, 0.04);
}

.process-card {
  position: relative;
  min-height: 272px;
  padding: 31px 28px;
  border-right: 1px solid #e6e8ea;
}

.process-card:last-child {
  border: 0;
}

.process-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.process-top > span {
  color: #c7ccd1;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 25px;
  font-weight: 800;
}

.process-top i {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  color: var(--red);
  background: #fff1f1;
  border-radius: 50%;
  font-size: 20px;
  font-style: normal;
}

.process-card h3,
.service-card h3,
.country-card h3,
.timeline-step h3 {
  margin: 38px 0 12px;
  color: var(--navy);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.process-card p,
.service-card p,
.country-card p,
.timeline-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.process-arrow {
  position: absolute;
  z-index: 2;
  top: 52%;
  right: -15px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: #8b949d;
  background: white;
  border: 1px solid #e1e4e6;
  border-radius: 50%;
  font-size: 23px;
}

.services-section {
  background: white;
}

.split-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 55px;
}

.split-title > p {
  max-width: 410px;
  margin: 0 0 9px;
  color: var(--muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 310px;
  padding: 29px 27px;
  overflow: hidden;
  background: white;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: 0.28s ease;
}

.service-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.28s ease;
}

.service-card:hover {
  z-index: 2;
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--red);
  background: #fff0f1;
  border-radius: 2px;
  font-size: 22px;
}

.card-number {
  position: absolute;
  top: 25px;
  right: 25px;
  color: #d5dade;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 17px;
  font-weight: 800;
}

.service-card h3 {
  margin-top: 30px;
}

.service-card > a {
  position: absolute;
  bottom: 25px;
  left: 27px;
}

.center-action {
  margin-top: 45px;
  text-align: center;
}

.markets-section {
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--navy);
  background-size: 44px 44px;
}

.market-map {
  position: relative;
  height: 270px;
  margin: 35px 0 35px;
  overflow: hidden;
}

.market-map::before,
.market-map::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.market-map::before {
  top: 28px;
  left: 38%;
  width: 250px;
  height: 250px;
}

.market-map::after {
  top: 77px;
  left: 41%;
  width: 150px;
  height: 150px;
}

.china-pin {
  position: absolute;
  z-index: 3;
  top: 89px;
  left: 48%;
  display: flex;
  align-items: center;
  gap: 11px;
  color: white;
}

.china-pin span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  background: var(--red);
  border: 6px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  background-clip: padding-box;
  font-size: 11px;
  font-weight: 800;
}

.map-dot {
  position: absolute;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: white;
  border: 5px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  background-clip: padding-box;
  font-size: 20px;
}

.map-dot.pk { top: 63px; left: 22%; }
.map-dot.au { right: 24%; bottom: 30px; }
.map-dot.us { top: 23px; right: 5%; }

.map-route {
  position: absolute;
  z-index: 1;
  height: 1px;
  border-top: 1px dashed rgba(222, 229, 236, 0.38);
  transform-origin: left;
}

.map-route::after {
  position: absolute;
  top: -3px;
  right: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(217, 39, 46, 0.13);
}

.map-route.r1 { top: 111px; left: 25%; width: 25%; transform: rotate(6deg); }
.map-route.r2 { top: 133px; left: 51%; width: 27%; transform: rotate(25deg); }
.map-route.r3 { top: 104px; left: 51%; width: 43%; transform: rotate(-13deg); }

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

.country-card {
  padding: 30px;
  background: white;
  border-bottom: 3px solid transparent;
  transition: 0.25s ease;
}

.country-card:hover {
  border-bottom-color: var(--red);
  transform: translateY(-3px);
}

.country-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flag {
  font-size: 34px;
}

.country-code {
  color: #cad0d6;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 23px;
  font-weight: 800;
}

.country-card h3 {
  margin: 22px 0 9px;
  font-size: 23px;
}

.country-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 20px;
}

.country-tags span {
  padding: 5px 9px;
  color: #647181;
  background: #f4f5f6;
  border-radius: 2px;
  font-size: 10px;
  font-weight: 700;
}

.fair-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 72px;
}

.fair-image {
  position: relative;
  height: 520px;
}

.fair-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fair-image::before {
  position: absolute;
  top: 24px;
  right: -24px;
  bottom: -24px;
  left: 24px;
  z-index: -1;
  content: "";
  background: var(--navy);
}

.fair-date {
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 118px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  background: var(--red);
}

.fair-date strong {
  font-size: 13px;
  letter-spacing: 0.15em;
}

.fair-date span {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 30px;
  font-weight: 800;
}

.fair-copy .check-list {
  grid-template-columns: 1fr;
  margin: 27px 0 34px;
}

.testimonials {
  background: var(--ivory);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.testimonial-card {
  position: relative;
  min-height: 290px;
  padding: 37px 32px;
  background: white;
  border: 1px solid #e3e5e5;
}

.quote-mark {
  position: absolute;
  top: 12px;
  right: 23px;
  color: #edf0f2;
  font-family: Georgia, serif;
  font-size: 80px;
  line-height: 1;
}

.testimonial-card > p {
  position: relative;
  z-index: 2;
  min-height: 125px;
  margin: 0;
  color: #344153;
  font-size: 16px;
  line-height: 1.8;
}

.client {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 23px;
  border-top: 1px solid #e5e7e8;
}

.client > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--navy);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}

.client > div {
  display: flex;
  flex-direction: column;
}

.client strong {
  color: var(--navy);
  font-size: 12px;
}

.client small {
  color: #85909c;
  font-size: 11px;
}

.cta {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(100deg, rgba(6, 24, 43, 0.97), rgba(8, 34, 58, 0.87)),
    url("images/hero-port.png") center 62% / cover;
}

.cta::before {
  position: absolute;
  top: -200px;
  right: 12%;
  width: 450px;
  height: 450px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.cta-inner {
  position: relative;
  z-index: 2;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.cta h2 {
  max-width: 680px;
  color: white;
}

.cta p {
  max-width: 650px;
  margin: 0;
  color: #bdcbd6;
}

.cta-actions {
  flex: 0 0 250px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 86% 30%, rgba(217, 39, 46, 0.15), transparent 22%),
    var(--navy);
}

.route-lines {
  position: absolute;
  top: -230px;
  right: -10px;
  width: 580px;
  height: 580px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.route-lines::before,
.route-lines::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.route-lines::before { inset: 80px; }
.route-lines::after { inset: 155px; }

.page-hero-inner {
  position: relative;
  z-index: 2;
  padding: 85px 0 42px;
}

.page-hero h1 {
  max-width: 880px;
  margin: 20px 0 20px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(42px, 5.2vw, 68px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1.04;
}

.page-hero-inner > p {
  max-width: 690px;
  margin: 0 0 50px;
  color: #b8c7d3;
  font-size: 17px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #7890a4;
  font-size: 11px;
}

.breadcrumbs a {
  color: white;
}

.breadcrumbs b {
  max-width: 300px;
  overflow: hidden;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.93fr 1.07fr;
  align-items: center;
  gap: 80px;
}

.story-visual {
  position: relative;
  height: 540px;
}

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

.story-badge {
  position: absolute;
  right: -30px;
  bottom: 32px;
  min-width: 190px;
  display: flex;
  flex-direction: column;
  padding: 23px;
  color: white;
  background: var(--red);
  box-shadow: var(--shadow);
}

.story-badge b {
  font-size: 29px;
}

.story-badge strong {
  margin-top: 9px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 19px;
}

.story-badge span {
  color: #f8c5c7;
  font-size: 12px;
}

.body-copy {
  margin: 25px 0 34px;
  color: var(--muted);
  font-size: 16px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.stat-row > div {
  display: flex;
  flex-direction: column;
  padding: 23px 18px 0 0;
}

.stat-row strong {
  color: var(--red);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 25px;
}

.stat-row span {
  color: var(--muted);
  font-size: 11px;
}

.mission-section,
.service-feature,
.proxy-section {
  color: white;
  background: var(--navy);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 95px;
}

.mission-grid > div {
  position: relative;
  padding-left: 50px;
}

.mission-grid > div:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  padding-right: 70px;
}

.big-number {
  position: absolute;
  top: -22px;
  left: 0;
  color: rgba(255, 255, 255, 0.08);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 90px;
  font-weight: 800;
  line-height: 1;
}

.mission-grid .section-title {
  position: relative;
  z-index: 2;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 50px;
}

.value-item {
  min-height: 132px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
  background: var(--ivory);
  border: 1px solid #e6e5e0;
}

.value-item i {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--red);
  background: white;
  border-radius: 50%;
  font-size: 19px;
  font-style: normal;
}

.value-item span {
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.services-page {
  background: var(--ivory);
}

.service-feature-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 95px;
}

.feature-stack {
  display: grid;
  gap: 12px;
}

.feature-stack > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0 16px;
  padding: 23px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-stack i {
  grid-row: 1 / 3;
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  color: #f6b0b3;
  border: 1px solid rgba(217, 39, 46, 0.5);
  border-radius: 50%;
  font-style: normal;
}

.feature-stack strong {
  font-family: "Manrope", Arial, sans-serif;
}

.feature-stack span {
  color: #9eb0bf;
  font-size: 12px;
}

.timeline {
  position: relative;
  max-width: 900px;
}

.timeline::before {
  position: absolute;
  top: 56px;
  bottom: 56px;
  left: 52px;
  width: 1px;
  content: "";
  background: #d9dee2;
}

.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 105px 1fr 74px;
  align-items: center;
  min-height: 160px;
  border-bottom: 1px solid var(--line);
}

.timeline-number {
  position: relative;
  z-index: 2;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--navy);
  border: 8px solid white;
  outline: 1px solid var(--line);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
}

.timeline-content > span {
  color: var(--red);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.timeline-step h3 {
  margin: 4px 0 6px;
  font-size: 22px;
}

.timeline-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--red);
  background: #fff1f1;
  border-radius: 50%;
  font-size: 22px;
}

.process-note {
  padding-top: 0;
}

.note-card {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 32px 36px;
  background: var(--ivory);
  border-left: 4px solid var(--red);
}

.note-icon {
  width: 53px;
  height: 53px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--red);
  border-radius: 50%;
  font-size: 21px;
}

.note-card h3 {
  margin: 0 0 5px;
  color: var(--navy);
  font-family: "Manrope", Arial, sans-serif;
}

.note-card p {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.countries-page {
  background: var(--ivory);
}

.countries-page .country-grid {
  margin-bottom: 75px;
}

.country-details {
  background: white;
  border: 1px solid var(--line);
}

.country-detail {
  display: grid;
  grid-template-columns: 65px 70px 1fr 45px;
  align-items: center;
  gap: 25px;
  padding: 34px;
  border-bottom: 1px solid var(--line);
}

.country-detail:last-child {
  border: 0;
}

.detail-index {
  color: #cbd1d6;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.detail-flag {
  font-size: 41px;
}

.country-detail h3 {
  margin: 0 0 7px;
  color: var(--navy);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 24px;
}

.country-detail p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.country-detail > a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--red);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.shipping-note {
  display: flex;
  gap: 20px;
  margin-top: 25px;
  padding: 24px 27px;
  color: #dbe4ec;
  background: var(--navy);
}

.shipping-note i {
  color: #f2a9ac;
  font-size: 23px;
  font-style: normal;
}

.shipping-note p {
  margin: 0;
  font-size: 13px;
}

.fair-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  color: white;
}

.fair-hero > img,
.fair-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.fair-hero > img {
  object-fit: cover;
}

.fair-hero-overlay {
  background: linear-gradient(90deg, rgba(5, 20, 36, 0.94) 0%, rgba(6, 24, 43, 0.75) 47%, rgba(6, 24, 43, 0.16) 100%);
}

.fair-hero-content {
  position: relative;
  z-index: 2;
}

.fair-hero h1 {
  max-width: 720px;
  margin: 22px 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(48px, 5.6vw, 74px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1.03;
}

.fair-hero p {
  max-width: 600px;
  margin: 0 0 32px;
  color: #cbd7e1;
  font-size: 18px;
}

.fair-page-intro {
  display: grid;
  grid-template-columns: 1fr 360px;
  align-items: center;
  gap: 85px;
}

.fair-mini-card {
  display: flex;
  align-items: center;
  gap: 23px;
  padding: 27px;
  background: var(--ivory);
  border: 1px solid var(--line);
}

.calendar-icon {
  width: 75px;
  overflow: hidden;
  text-align: center;
  background: white;
  border: 1px solid var(--line);
}

.calendar-icon span {
  display: block;
  padding: 5px;
  color: white;
  background: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.calendar-icon strong {
  display: block;
  padding: 10px 5px;
  color: var(--navy);
  font-size: 17px;
}

.fair-mini-card > div:last-child {
  display: flex;
  flex-direction: column;
}

.fair-mini-card > div:last-child strong {
  color: var(--navy);
  font-family: "Manrope", Arial, sans-serif;
}

.fair-mini-card > div:last-child span {
  color: var(--muted);
  font-size: 12px;
}

.fair-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 60px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.fair-service-grid > div {
  position: relative;
  min-height: 155px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fair-service-grid span {
  position: absolute;
  top: 17px;
  right: 19px;
  color: #ccd2d7;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
}

.fair-service-grid i {
  color: var(--red);
  font-size: 20px;
  font-style: normal;
}

.fair-service-grid strong {
  margin-top: 10px;
  color: var(--navy);
  font-size: 13px;
}

.proxy-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 100px;
}

.proxy-visual {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(217, 39, 46, 0.15), transparent 45%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
}

.phone-frame {
  width: 210px;
  height: 380px;
  padding: 13px;
  background: #f8fafb;
  border: 8px solid #152f4a;
  border-radius: 25px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.28);
}

.phone-head {
  height: 35px;
  display: flex;
  gap: 4px;
  align-items: center;
}

.phone-head span {
  width: 5px;
  height: 5px;
  background: #bdc4cb;
  border-radius: 50%;
}

.phone-video {
  height: 210px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(140deg, #2b506e, var(--navy));
  font-size: 70px;
}

.phone-lines {
  display: grid;
  gap: 10px;
  margin-top: 23px;
}

.phone-lines i {
  height: 8px;
  background: #dfe4e8;
  border-radius: 5px;
}

.phone-lines i:nth-child(2) { width: 75%; }
.phone-lines i:nth-child(3) { width: 48%; background: #f1b1b4; }

.live-pill {
  position: absolute;
  top: 70px;
  right: 28px;
  padding: 8px 13px;
  color: white;
  background: var(--red);
  border-radius: 20px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.quote-section {
  background: var(--ivory);
}

.quote-layout {
  display: grid;
  grid-template-columns: 1fr 345px;
  align-items: start;
  gap: 35px;
}

.quote-main,
.contact-form-wrap {
  padding: 45px;
  background: white;
  border: 1px solid var(--line);
}

.form-heading {
  margin-bottom: 32px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}

.form-heading h2,
.contact-form-wrap h2 {
  margin: 0 0 5px;
  color: var(--navy);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 31px;
  letter-spacing: -0.04em;
}

.form-heading p,
.contact-form-wrap > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.contact-form-wrap > p a {
  color: var(--red);
  font-weight: 700;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 21px;
}

.field-grid label {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field-grid label > span {
  color: #354254;
  font-size: 11px;
  font-weight: 700;
}

.field-grid input,
.field-grid select,
.field-grid textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 15px;
  color: var(--ink);
  background: #fbfcfc;
  border: 1px solid #d8dde2;
  border-radius: 2px;
  outline: 0;
  font-size: 13px;
  transition: 0.2s ease;
}

.field-grid textarea {
  min-height: 130px;
  padding-top: 13px;
  resize: vertical;
}

.field-grid input:focus,
.field-grid select:focus,
.field-grid textarea:focus {
  background: white;
  border-color: var(--navy-3);
  box-shadow: 0 0 0 3px rgba(13, 39, 67, 0.07);
}

.span-two {
  grid-column: span 2;
}

.upload-field {
  min-height: 100px;
  flex-direction: row !important;
  align-items: center;
  justify-content: center;
  gap: 16px !important;
  text-align: left;
  background: #fbfcfc;
  border: 1px dashed #c6cdd3;
  cursor: pointer;
}

.upload-field > i {
  width: 41px;
  height: 41px;
  display: grid;
  place-items: center;
  color: var(--red);
  background: #fff0f1;
  border-radius: 50%;
  font-size: 22px;
  font-style: normal;
}

.upload-field > span {
  display: flex;
  flex-direction: column;
}

.upload-field small {
  color: #8b959f;
  font-weight: 400;
}

.upload-field input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.submit-button {
  margin-top: 27px;
}

.form-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0 0;
  color: #8a949e;
  font-size: 10px;
}

.quote-aside {
  position: sticky;
  top: 103px;
  overflow: hidden;
  background: var(--navy);
}

.aside-image {
  height: 210px;
}

.aside-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 74% center;
}

.aside-content {
  padding: 30px;
}

.aside-content h3 {
  margin: 0 0 20px;
  color: white;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 20px;
}

.aside-content > div {
  display: grid;
  grid-template-columns: 35px 1fr;
  align-items: center;
  gap: 11px;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.aside-content span {
  color: #f0a6a9;
  font-size: 10px;
  font-weight: 700;
}

.aside-content p {
  margin: 0;
  color: #c2ced8;
  font-size: 12px;
}

.aside-help {
  display: flex;
  gap: 13px;
  padding: 23px 30px;
  background: var(--red);
}

.aside-help i {
  font-size: 25px;
  font-style: normal;
}

.aside-help div {
  display: flex;
  flex-direction: column;
}

.aside-help strong {
  color: white;
  font-size: 12px;
}

.aside-help span {
  color: #f8c4c6;
  font-size: 10px;
}

.form-success {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px;
  text-align: center;
}

.form-success i {
  width: 65px;
  height: 65px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--green);
  border-radius: 50%;
  font-size: 28px;
  font-style: normal;
}

.form-success h3 {
  margin: 20px 0 8px;
  color: var(--navy);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 28px;
}

.form-success p {
  max-width: 490px;
  margin: 0 0 25px;
  color: var(--muted);
}

.faq-section {
  background: var(--ivory);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: 80px;
}

.faq-help {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 0 14px;
  padding: 23px;
  color: white;
  background: var(--navy);
}

.faq-help > i {
  grid-row: 1 / 3;
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  color: #f4a4a8;
  border: 1px solid rgba(217, 39, 46, 0.45);
  border-radius: 50%;
  font-size: 23px;
  font-style: normal;
}

.faq-help div {
  display: flex;
  flex-direction: column;
}

.faq-help strong {
  font-size: 13px;
}

.faq-help span {
  color: #9fb0bf;
  font-size: 11px;
}

.faq-help a {
  margin-top: 10px;
  color: #f2a4a7;
  font-size: 11px;
  font-weight: 700;
}

.accordion {
  background: white;
  border: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item:last-child {
  border: 0;
}

.faq-item button {
  width: 100%;
  min-height: 79px;
  display: grid;
  grid-template-columns: 44px 1fr 24px;
  align-items: center;
  gap: 12px;
  padding: 0 25px;
  text-align: left;
  background: white;
  border: 0;
  cursor: pointer;
}

.faq-item button span {
  color: #bec5cb;
  font-size: 11px;
  font-weight: 800;
}

.faq-item button strong {
  color: var(--navy);
  font-size: 14px;
}

.faq-item button i {
  color: #8b959e;
  font-size: 20px;
  font-style: normal;
  transition: 0.2s ease;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.3s ease;
}

.faq-answer p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.faq-item.open {
  border-left: 3px solid var(--red);
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-answer p {
  padding: 0 65px 26px 81px;
}

.faq-item.open button i {
  color: var(--red);
  transform: rotate(180deg);
}

.static-accordion {
  background: white;
  border: 1px solid var(--line);
}

.static-accordion details {
  border-bottom: 1px solid var(--line);
}

.static-accordion details:last-child {
  border-bottom: 0;
}

.static-accordion summary {
  min-height: 79px;
  display: grid;
  grid-template-columns: 44px 1fr 24px;
  align-items: center;
  gap: 12px;
  padding: 0 25px;
  cursor: pointer;
  list-style: none;
}

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

.static-accordion summary span {
  color: #bec5cb;
  font-size: 11px;
  font-weight: 800;
}

.static-accordion summary strong {
  color: var(--navy);
  font-size: 14px;
}

.static-accordion summary i {
  color: var(--red);
  font-size: 20px;
  font-style: normal;
  transition: transform 0.2s ease;
}

.static-accordion details[open] {
  border-left: 3px solid var(--red);
}

.static-accordion details[open] summary i {
  transform: rotate(45deg);
}

.static-accordion details > p {
  margin: 0;
  padding: 0 65px 26px 81px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.contact-section {
  background: var(--ivory);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  box-shadow: var(--shadow);
}

.contact-panel {
  padding: 50px 45px;
  color: white;
  background:
    radial-gradient(circle at 90% 10%, rgba(217, 39, 46, 0.19), transparent 28%),
    var(--navy);
}

.contact-methods {
  display: grid;
  gap: 1px;
  margin-top: 38px;
  background: rgba(255, 255, 255, 0.1);
}

.contact-methods > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 13px;
  padding: 18px 0;
  background: var(--navy);
}

.contact-methods i {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  color: #f4a9ac;
  border: 1px solid rgba(217, 39, 46, 0.48);
  border-radius: 50%;
  font-style: normal;
}

.contact-methods span {
  display: flex;
  flex-direction: column;
}

.contact-methods small {
  color: #8297a9;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-methods strong {
  font-size: 13px;
}

.contact-note {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-note i {
  color: #f3aaad;
  font-style: normal;
}

.contact-note p {
  margin: 0;
  color: #9fb0bf;
  font-size: 11px;
}

.contact-form-wrap {
  border: 0;
}

.contact-form-wrap .quote-form {
  margin-top: 30px;
}

.contact-static-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0 16px;
  margin: 35px 0;
  border-top: 1px solid var(--line);
}

.contact-static-card > span {
  padding-top: 22px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
}

.contact-static-card > div {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.contact-static-card strong {
  color: var(--navy);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 14px;
}

.contact-static-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.compact .field-grid {
  grid-template-columns: 1fr 1fr;
}

.legal {
  background: var(--ivory);
}

.legal-card {
  max-width: 850px;
  padding: 55px;
  background: white;
  border: 1px solid var(--line);
}

.legal-date {
  margin: 0 0 40px;
  padding-bottom: 20px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.legal-card > div {
  margin-bottom: 35px;
}

.legal-card h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 23px;
}

.legal-card p {
  color: var(--muted);
}

.footer {
  color: #a8bac8;
  background: #04111e;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 0.75fr 0.9fr 1.3fr;
  gap: 70px;
  padding-top: 76px;
  padding-bottom: 65px;
}

.footer .logo strong {
  color: white;
}

.footer-brand > p {
  max-width: 350px;
  margin: 24px 0;
  color: #8398aa;
  font-size: 13px;
}

.footer-markets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-markets span {
  padding: 6px 10px;
  color: #becbd6;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  font-size: 10px;
}

.footer h4 {
  margin: 7px 0 24px;
  color: white;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 13px;
}

.footer-grid > div:not(.footer-brand) > a:not(.footer-action) {
  display: block;
  margin: 11px 0;
  color: #8297a8;
  font-size: 12px;
}

.footer-grid a:hover {
  color: white;
}

.footer-small {
  margin: 0 0 17px;
  color: #8297a8;
  font-size: 12px;
}

.footer-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  color: #f1b0b3;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 700;
}

.footer-action.secondary {
  color: #a9bdcc;
}

.footer-bottom {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #5f7384;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 10px;
}

.footer-bottom span:last-child {
  display: flex;
  gap: 24px;
}

@media (max-width: 1100px) {
  .nav {
    gap: 15px;
  }

  .nav > a:not(.button) {
    font-size: 11px;
  }

  .nav-quote {
    padding: 0 12px;
  }

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

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

  .intro-grid,
  .fair-grid,
  .story-grid {
    gap: 50px;
  }

  .footer-grid {
    gap: 35px;
  }
}

@media (max-width: 900px) {
  .topbar {
    display: none;
  }

  .header-inner {
    min-height: 70px;
  }

  .menu-button {
    display: grid;
    place-items: center;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    position: relative;
    display: block;
  }

  .mobile-nav summary {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--navy);
    background: var(--ivory);
    border: 1px solid var(--line);
    border-radius: 3px;
    cursor: pointer;
    list-style: none;
    font-size: 21px;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav nav {
    position: absolute;
    top: 70px;
    right: -14px;
    width: min(330px, calc(100vw - 28px));
    display: flex;
    align-items: stretch;
    flex-direction: column;
    padding: 15px 20px 22px;
    background: white;
    border-top: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(4, 17, 30, 0.12);
  }

  .mobile-nav nav > a:not(.button) {
    padding: 12px 5px;
    border-bottom: 1px solid #eef0f1;
    font-size: 13px;
    font-weight: 600;
  }

  .mobile-nav nav .button {
    margin-top: 14px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-bg {
    background:
      linear-gradient(90deg, rgba(3, 15, 29, 0.96), rgba(5, 21, 38, 0.62)),
      url("images/hero-port.png") 62% center / cover;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 70px 0 170px;
  }

  .hero-proof {
    display: none;
  }

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

  .trust-row > div {
    min-height: 70px;
    padding: 0 15px !important;
  }

  .intro-grid,
  .story-grid,
  .fair-grid,
  .service-feature-grid,
  .proxy-grid,
  .fair-page-intro,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .process-card {
    border-bottom: 1px solid var(--line);
  }

  .process-arrow {
    display: none;
  }

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

  .mission-grid {
    gap: 50px;
  }

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

  .quote-aside {
    position: static;
  }

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

  .footer-grid > div:last-child {
    grid-column: span 3;
  }
}

@media (max-width: 650px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    min-height: 720px;
  }

  .hero-inner {
    align-items: flex-start;
    padding-top: 80px;
  }

  .hero h1 {
    font-size: 50px;
  }

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

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-row {
    min-height: 138px;
  }

  .trust-row i {
    width: 29px;
    height: 29px;
  }

  .trust-row strong {
    font-size: 11px;
  }

  .trust-row span {
    font-size: 9px;
  }

  .section-title h2,
  .cta h2 {
    font-size: 36px;
  }

  .section-title > p {
    font-size: 15px;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .insight-card {
    min-height: 330px;
    padding: 27px;
  }

  .process-grid,
  .services-grid,
  .country-grid,
  .value-grid,
  .fair-service-grid {
    grid-template-columns: 1fr;
  }

  .split-title {
    display: block;
  }

  .split-title > p {
    margin-top: 18px;
  }

  .market-map {
    height: 210px;
  }

  .map-dot.us { right: 0; }
  .map-dot.pk { left: 3%; }
  .map-dot.au { right: 13%; }

  .fair-image,
  .story-visual {
    height: 390px;
  }

  .fair-image::before {
    display: none;
  }

  .fair-date {
    right: 0;
    bottom: 0;
  }

  .cta-inner {
    min-height: 440px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 35px;
  }

  .cta-actions {
    width: 100%;
    flex-basis: auto;
  }

  .page-hero-inner {
    padding: 65px 0 35px;
  }

  .page-hero h1 {
    font-size: 42px;
  }

  .page-hero-inner > p {
    margin-bottom: 35px;
  }

  .story-badge {
    right: 0;
    bottom: 0;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }

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

  .mission-grid > div {
    padding-left: 30px;
  }

  .mission-grid > div:first-child {
    padding-right: 0;
    padding-bottom: 50px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .timeline::before {
    left: 28px;
  }

  .timeline-step {
    grid-template-columns: 58px 1fr;
    gap: 14px;
    padding: 24px 0;
  }

  .timeline-number {
    width: 45px;
    height: 45px;
  }

  .timeline-icon {
    display: none;
  }

  .note-card {
    grid-template-columns: 50px 1fr;
    padding: 25px;
  }

  .note-card .button {
    grid-column: span 2;
  }

  .country-detail {
    grid-template-columns: 45px 1fr;
    gap: 15px;
    padding: 25px;
  }

  .detail-index {
    display: none;
  }

  .country-detail > a {
    display: none;
  }

  .fair-hero {
    min-height: 600px;
  }

  .fair-hero-overlay {
    background: rgba(5, 20, 36, 0.78);
  }

  .fair-hero h1 {
    font-size: 46px;
  }

  .proxy-grid {
    gap: 55px;
  }

  .quote-main,
  .contact-form-wrap,
  .contact-panel {
    padding: 30px 22px;
  }

  .field-grid,
  .compact .field-grid {
    grid-template-columns: 1fr;
  }

  .span-two {
    grid-column: auto;
  }

  .faq-layout {
    gap: 45px;
  }

  .faq-item button {
    grid-template-columns: 34px 1fr 20px;
    padding: 0 15px;
  }

  .faq-item.open .faq-answer p {
    padding: 0 25px 22px 61px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 25px;
  }

  .footer-brand,
  .footer-grid > div:last-child {
    grid-column: span 2;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 20px 0;
  }
}

/* Professional motion system */

@keyframes page-enter {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

@keyframes soft-pop {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes section-reveal {
  from {
    opacity: 0;
    transform: translateY(42px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes route-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes float-gentle {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(217, 39, 46, 0.3);
  }
  70% {
    box-shadow: 0 0 0 13px rgba(217, 39, 46, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(217, 39, 46, 0);
  }
}

@keyframes shine-pass {
  from {
    transform: translateX(-160%) skewX(-18deg);
  }
  to {
    transform: translateX(340%) skewX(-18deg);
  }
}

@keyframes detail-open {
  from {
    opacity: 0;
    transform: translateY(-7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body {
  animation: page-enter 0.55s ease-out both;
}

.site-header {
  animation: header-drop 0.65s cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.hero-copy .eyebrow,
.page-hero-inner .eyebrow,
.fair-hero-content .eyebrow {
  animation: hero-rise 0.65s 0.08s ease-out both;
}

.hero-copy h1,
.page-hero-inner h1,
.fair-hero-content h1 {
  animation: hero-rise 0.75s 0.17s cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.hero-copy > p,
.page-hero-inner > p,
.fair-hero-content > p {
  animation: hero-rise 0.7s 0.28s ease-out both;
}

.hero-actions,
.fair-hero-content > .button,
.breadcrumbs {
  animation: hero-rise 0.7s 0.38s ease-out both;
}

.hero-proof,
.fair-mini-card {
  animation: soft-pop 0.7s 0.48s cubic-bezier(0.2, 0.8, 0.25, 1) both;
}

.route-lines {
  animation: route-spin 34s linear infinite;
}

.button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.button::before {
  position: absolute;
  top: -30%;
  bottom: -30%;
  left: -50%;
  z-index: -1;
  width: 35%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: translateX(-160%) skewX(-18deg);
}

.button:hover::before {
  animation: shine-pass 0.75s ease-out;
}

.logo-mark {
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.25, 1), box-shadow 0.3s ease;
}

.logo:hover .logo-mark {
  transform: rotate(4deg) scale(1.08);
  box-shadow: 0 9px 18px rgba(217, 39, 46, 0.22);
}

.service-card,
.country-card,
.testimonial-card,
.value-item,
.fair-service-grid > div,
.feature-stack > div {
  transition:
    transform 0.32s cubic-bezier(0.2, 0.8, 0.25, 1),
    box-shadow 0.32s ease,
    border-color 0.32s ease,
    background-color 0.32s ease;
}

.service-card:hover,
.country-card:hover,
.testimonial-card:hover,
.value-item:hover,
.fair-service-grid > div:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 44px rgba(7, 25, 45, 0.11);
}

.service-icon,
.value-item i,
.timeline-icon,
.feature-stack i {
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.25, 1), background-color 0.3s ease;
}

.service-card:hover .service-icon,
.value-item:hover i,
.timeline-step:hover .timeline-icon,
.feature-stack > div:hover i {
  transform: rotate(-6deg) scale(1.1);
}

.feature-stack > div:hover {
  transform: translateX(7px);
  background: rgba(255, 255, 255, 0.11);
}

.fair-image,
.story-visual,
.aside-image {
  overflow: hidden;
}

.fair-image img,
.story-visual img,
.aside-image img,
.fair-hero > img {
  transition: transform 0.9s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.fair-image:hover img,
.story-visual:hover img,
.aside-image:hover img {
  transform: scale(1.045);
}

.fair-hero:hover > img {
  transform: scale(1.025);
}

.globe-visual,
.phone-frame {
  animation: float-gentle 5s ease-in-out infinite;
}

.china-pin span,
.map-dot {
  animation: pulse-ring 3s ease-out infinite;
}

.map-dot.au {
  animation-delay: 0.7s;
}

.map-dot.us {
  animation-delay: 1.4s;
}

.process-card:hover .process-top > span,
.timeline-step:hover .timeline-number,
.country-detail:hover .detail-index {
  color: var(--red);
}

.process-card,
.timeline-step,
.country-detail {
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.process-card:hover,
.timeline-step:hover,
.country-detail:hover {
  background: #fffafa;
}

.timeline-step:hover {
  transform: translateX(7px);
}

.static-accordion details[open] > p {
  animation: detail-open 0.28s ease-out both;
}

.static-accordion summary {
  transition: background-color 0.25s ease, padding-left 0.25s ease;
}

.static-accordion summary:hover {
  padding-left: 30px;
  background: #fffafa;
}

.field-grid input,
.field-grid select,
.field-grid textarea {
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.field-grid input:focus,
.field-grid select:focus,
.field-grid textarea:focus {
  transform: translateY(-2px);
}

.footer-grid a,
.inline-link,
.service-card > a {
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-grid a:hover,
.inline-link:hover,
.service-card > a:hover {
  transform: translateX(4px);
}

@supports (animation-timeline: view()) {
  .section > .container,
  .cta-inner {
    animation: section-reveal linear both;
    animation-timeline: view();
    animation-range: entry 4% cover 25%;
  }

  .service-card,
  .country-card,
  .testimonial-card,
  .value-item,
  .fair-service-grid > div {
    animation: section-reveal linear both;
    animation-timeline: view();
    animation-range: entry 2% cover 18%;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
