.country-card,
.step-card,
.story-card,
.document-card,
.testimonial-card,
.route-card,
.trust-card,
.vault-card {
  padding: 24px;
}

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

.section-head h2 {
  margin-bottom: 0;
}

.section-head .lead {
  max-width: 430px;
  margin-bottom: 0;
}

.marquee-band {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #fff;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 14px;
  padding: 18px 0;
  will-change: transform;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  background: var(--soft);
  color: var(--navy);
  font-weight: 900;
  white-space: nowrap;
}

.marquee-item b {
  color: var(--red);
}

.command-center,
.operations-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: stretch;
}

.group-showcase {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.group-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 10px;
}

.group-grid::-webkit-scrollbar {
  display: none;
}

.group-card {
  position: relative;
  scroll-snap-align: start;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--deep);
  box-shadow: 0 10px 24px rgba(18, 31, 63, 0.09);
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.group-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.32s ease;
}

.group-card::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 11, 26, 0.04), rgba(7, 11, 26, 0.88)),
    linear-gradient(90deg, rgba(18, 31, 63, 0.28), transparent);
  content: "";
}

.group-card:hover {
  transform: translateY(-2px);
  border-color: #cfd8e8;
  box-shadow: 0 14px 30px rgba(18, 31, 63, 0.14);
}

.group-card:hover img {
  transform: scale(1.05);
}

.group-card-content {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  display: grid;
  gap: 10px;
  padding: 22px;
  color: #fff;
}

.group-card small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 900;
  text-transform: uppercase;
}

.group-card h3 {
  margin-bottom: 0;
  color: #fff;
}

.group-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.group-card a {
  width: max-content;
  margin-top: 4px;
  border-radius: 999px;
  padding: 8px 12px;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
}

.group-label {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  font-weight: 900;
}

.group-command {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background:
    linear-gradient(120deg, rgba(18, 31, 63, 0.96), rgba(33, 0, 93, 0.88)),
    url("../images/consulting-office.jpg");
  background-position: center;
  background-size: cover;
  color: #fff;
  box-shadow: 0 12px 28px rgba(18, 31, 63, 0.14);
}

.group-command h3 {
  max-width: 660px;
  margin-bottom: 0;
}

.group-command-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  gap: 10px;
}

.group-command-metrics span {
  display: grid;
  min-height: 88px;
  align-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 14px;
  background: #fff;
  color: var(--muted);
  font-weight: 800;
}

.group-command-metrics strong {
  display: block;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
}

.brand-film {
  position: relative;
  min-height: 86vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 120px 0 84px;
  background: var(--deep);
  color: #fff;
}

.brand-film::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 11, 26, 0.92), rgba(7, 11, 26, 0.48), rgba(237, 28, 36, 0.18)),
    linear-gradient(0deg, rgba(7, 11, 26, 0.96), transparent 42%);
  content: "";
}

.brand-film-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform: translateZ(0);
}

.brand-film-media video,
.brand-film-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
}

.brand-film-media img {
  position: absolute;
  inset: 0;
}

.brand-film-media video {
  position: relative;
  z-index: 1;
}

.brand-film-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 30px;
  align-items: end;
}

.brand-film-copy h2 {
  max-width: 900px;
  font-size: clamp(1.9rem, 3.8vw, 3.7rem);
  line-height: 1.05;
}

.brand-film .lead {
  color: rgba(255, 255, 255, 0.82);
}

.film-control-panel {
  border: 1px solid #dfe5ef;
  border-radius: 8px;
  padding: 22px;
  background: #fff;
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(18, 31, 63, 0.12);
}

.film-control-panel strong {
  display: block;
  margin: 18px 0 8px;
  font-size: 1.06rem;
}

.film-control-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.global-brand {
  overflow: hidden;
  background:
    linear-gradient(180deg, #fff, #f5f7fb 48%, #fff);
}

.global-brand-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 34px;
  align-items: center;
}

.global-copy {
  position: sticky;
  top: 130px;
}

.image-mosaic {
  display: grid;
  grid-template-columns: 1.05fr 0.8fr;
  grid-template-rows: 240px 240px;
  gap: 16px;
}

.image-mosaic figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(18, 31, 63, 0.08);
  background: var(--navy);
}

.image-mosaic .mosaic-large {
  grid-row: span 2;
}

.image-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.image-mosaic figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
}

.brand-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(18, 31, 63, 0.05);
}

.brand-stats div {
  padding: 22px;
  border-right: 1px solid var(--line);
}

.brand-stats div:last-child {
  border-right: 0;
}

.brand-stats strong {
  display: block;
  color: var(--red);
  font-size: 1.55rem;
  line-height: 1;
}

.brand-stats span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.signal-section {
  overflow: hidden;
  background: var(--deep);
  color: #fff;
}

.signal-section .lead {
  color: rgba(255, 255, 255, 0.76);
}

.signal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 42px;
  align-items: center;
}

.signal-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #101833;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.signal-media video,
.signal-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.signal-media video {
  z-index: 1;
}

.signal-media img {
  opacity: 0.72;
}

.signal-media::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(7, 11, 26, 0.1), rgba(7, 11, 26, 0.9));
  content: "";
}

.signal-media-copy {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 3;
  display: grid;
  gap: 10px;
  color: #fff;
}

.signal-media-copy span {
  width: max-content;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(237, 28, 36, 0.92);
  font-weight: 900;
}

.signal-media-copy strong {
  max-width: 580px;
  font-size: clamp(1.15rem, 2.2vw, 1.9rem);
  line-height: 1.14;
}

.route-code-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.route-code-grid span {
  display: grid;
  min-height: 84px;
  align-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 14px;
  background: #fff;
  color: var(--muted);
  font-weight: 800;
}

.route-code-grid strong {
  display: block;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1;
}

.signal-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.signal-list div {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 16px;
  background: #fff;
}

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

.signal-list span {
  color: var(--muted);
}

.about-network {
  display: grid;
  gap: 28px;
}

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

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 28px;
  align-items: start;
}

.detail-aside {
  position: sticky;
  top: 128px;
  padding: 24px;
}

.detail-aside img {
  width: 100%;
  height: 220px;
  border-radius: 8px;
  object-fit: cover;
}

.detail-aside .btn {
  width: 100%;
}

.detail-panel {
  display: grid;
  gap: 18px;
}

.detail-block {
  padding: 26px;
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #fff;
  color: var(--muted);
  font-weight: 700;
}

.detail-list li strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
}

.company-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.company-strip a,
.company-strip div {
  display: grid;
  gap: 6px;
  min-height: 116px;
  align-content: center;
  border-right: 1px solid var(--line);
  padding: 18px;
  transition: background 0.2s ease, color 0.2s ease;
}

.company-strip a:last-child,
.company-strip div:last-child {
  border-right: 0;
}

.company-strip a:hover {
  background: var(--ink);
  color: #fff;
}

.company-strip strong {
  font-size: 1.1rem;
}

.company-strip span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.company-strip a:hover span {
  color: rgba(255, 255, 255, 0.76);
}

.team-leadership {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 30px;
  align-items: center;
}

.team-feature {
  display: grid;
  gap: 22px;
  justify-items: center;
  padding: 34px 28px;
  border-block: 1px solid var(--line);
  text-align: center;
}

.team-feature img {
  width: min(260px, 72vw);
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  border: 8px solid #fff;
  box-shadow: 0 18px 36px rgba(18, 31, 63, 0.14);
}

.team-portrait-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.team-card {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 22px 18px;
  border-block: 1px solid var(--line);
  text-align: center;
}

.team-card img {
  width: min(170px, 58vw);
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid #fff;
  box-shadow: 0 14px 28px rgba(18, 31, 63, 0.12);
}

.team-card div {
  padding: 0;
}

.team-card small {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

.team-feature small {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

.contact-desk-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.contact-desk {
  padding: 20px;
}

.contact-desk strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.15rem;
}

.contact-desk a,
.contact-desk span {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.operations-section {
  background:
    linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}

.operations-copy {
  display: grid;
  align-content: center;
}

.operations-copy .lead {
  margin-bottom: 0;
}

.operations-flow {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.operations-flow article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(18, 31, 63, 0.04);
}

.operations-flow span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: #fff0f1;
  color: var(--red);
  font-family: "Sora", "Manrope", Inter, sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
}

.operations-flow strong,
.ops-ticket strong {
  display: block;
  color: var(--navy);
}

.operations-flow p,
.ops-ticket p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.operations-board {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(18, 31, 63, 0.08);
}

.ops-board-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.ops-board-head h3 {
  margin: 12px 0 0;
  font-size: 1.18rem;
}

.ops-board-head > strong {
  flex: 0 0 auto;
  border: 1px solid #cfe6d6;
  border-radius: 999px;
  padding: 7px 11px;
  background: #effaf3;
  color: var(--green);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.ops-ticket-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.ops-ticket {
  position: relative;
  min-height: 174px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: 8px;
  padding: 16px;
  background: #fff;
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.ops-ticket:hover {
  transform: translateY(-2px);
  border-color: #cfd8e8;
  box-shadow: 0 10px 24px rgba(18, 31, 63, 0.08);
}

.ops-ticket span {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 999px;
  padding: 5px 9px;
  background: var(--soft);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ops-ticket em {
  position: absolute;
  right: 14px;
  bottom: 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 900;
}

.priority-cargo {
  border-left-color: var(--gold);
}

.priority-travel {
  border-left-color: var(--ink);
}

.priority-holiday {
  border-left-color: var(--green);
}

.ops-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
}

.ops-metrics div {
  padding: 16px;
  border-right: 1px solid var(--line);
}

.ops-metrics div:last-child {
  border-right: 0;
}

.ops-metrics strong {
  display: block;
  color: var(--ink);
  font-family: "Sora", "Manrope", Inter, sans-serif;
  font-size: 1.55rem;
  line-height: 1;
}

.ops-metrics span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.route-card {
  display: grid;
  min-height: 210px;
  gap: 14px;
  align-content: space-between;
  background: #fff;
}

.route-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.route-card .code {
  border-radius: 999px;
  padding: 7px 10px;
  background: var(--ink);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
}

.route-line {
  position: relative;
  height: 3px;
  margin: 16px 0;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--green));
}

.route-line::before,
.route-line::after {
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--red);
  content: "";
}

.route-line::before { left: 0; }
.route-line::after { right: 0; border-color: var(--green); }

.vault-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.vault-card {
  min-height: 166px;
  background: #fff;
}

.vault-card:nth-child(1),
.vault-card:nth-child(6) {
  grid-column: span 2;
}

.vault-card:nth-child(2),
.vault-card:nth-child(3),
.vault-card:nth-child(4),
.vault-card:nth-child(5) {
  grid-column: span 2;
}

.vault-card small {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  font-weight: 900;
}

.premium-band {
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(9,15,34,0.96), rgba(33,0,93,0.86)),
    url("../images/premium-client.jpg");
  background-position: center;
  background-size: cover;
  color: #fff;
}

.premium-band .lead {
  color: rgba(255,255,255,0.78);
}

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

.premium-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  border: 1px solid #26345f;
  border-radius: 8px;
  padding: 16px;
  background: #111a3a;
}

.premium-item p {
  margin-bottom: 0;
  color: rgba(255,255,255,0.72);
}

.trust-card {
  min-height: 230px;
  background:
    linear-gradient(180deg, #fff, #f8fbff);
}

.trust-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.55rem;
  line-height: 1;
}

.spotlight {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  padding: clamp(30px, 5vw, 58px);
  background:
    linear-gradient(115deg, rgba(237,28,36,0.94), rgba(33,0,93,0.92)),
    url("../images/route-spotlight.jpg");
  background-position: center;
  background-size: cover;
  color: #fff;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.method-card {
  position: relative;
  padding: 24px;
}

.method-card .num {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  font-weight: 900;
}

.evisa-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 26px;
  align-items: stretch;
}

.evisa-menu {
  padding: 24px;
  background: var(--ink);
  color: #fff;
}

.evisa-menu .lead {
  color: #d9dff0;
}

.evisa-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.evisa-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid #45337d;
  padding-bottom: 12px;
}

.evisa-list li:last-child {
  border-bottom: 0;
}

.evisa-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.evisa-detail {
  padding: 22px;
}

.dominance-band {
  background: var(--soft);
}

.dominance-card {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 24px;
}

.dominance-card strong {
  color: var(--red);
  font-size: 1.6rem;
  line-height: 1;
}

.spotlight .lead {
  color: rgba(255,255,255,0.82);
}

.spotlight-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  gap: 28px;
  align-items: end;
}

.service-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-showcase-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--deep);
  box-shadow: 0 10px 24px rgba(18, 31, 63, 0.09);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(18, 31, 63, 0.14);
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.32s ease;
}

.service-card:hover img {
  transform: scale(1.05);
}

.service-card::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 11, 26, 0.02), rgba(7, 11, 26, 0.9)),
    linear-gradient(90deg, rgba(18, 31, 63, 0.22), transparent);
  content: "";
}

.card-fill-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.service-overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  display: grid;
  gap: 10px;
  padding: 22px;
  color: #fff;
  pointer-events: none;
}

.service-overlay .icon-box {
  background: var(--red);
  color: #fff;
}

.service-overlay h3 {
  margin-bottom: 0;
  color: #fff;
}

.service-overlay p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.service-overlay .card-action {
  width: max-content;
  margin-top: 4px;
  border-radius: 999px;
  padding: 8px 12px;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
}

.country-card img {
  width: calc(100% + 48px);
  max-width: none;
  height: 156px;
  margin: -24px -24px 20px;
  object-fit: cover;
}

.country-card {
  overflow: hidden;
}

.country-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.1rem;
}

.country-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.country-meta span {
  border-radius: 999px;
  padding: 5px 9px;
  background: var(--soft);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.timeline {
  display: grid;
  gap: 18px;
  counter-reset: process;
}

.step-card {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.step-card::before {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  counter-increment: process;
  content: "0" counter(process);
  font-weight: 900;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid #dfe5ef;
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
}

.feature-strip div {
  padding: 24px;
  border-right: 1px solid var(--line);
  background: #fff;
}

.feature-strip div:last-child {
  border-right: 0;
}

.feature-strip h3 {
  color: var(--ink);
}

.feature-strip p {
  margin-bottom: 0;
  color: var(--muted);
}

.office-band {
  background:
    linear-gradient(90deg, rgba(18, 31, 63, 0.92), rgba(18, 31, 63, 0.68)),
    url("../images/office-band.jpg");
  background-position: center;
  background-size: cover;
  color: #fff;
}

.office-band .lead {
  color: rgba(255, 255, 255, 0.78);
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}

.tab-btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  background: #fff;
  cursor: pointer;
  color: var(--navy);
  font-weight: 900;
}

.tab-btn.active {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.tab-panel {
  padding: 28px;
}

.track-box {
  display: grid;
  gap: 16px;
  max-width: 720px;
}

.track-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.track-form input {
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 14px;
}

.track-result {
  display: grid;
  gap: 6px;
  border-left: 4px solid var(--green);
  border-radius: 6px;
  padding: 16px;
  background: #eefaf6;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-list a,
.contact-list span {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  font-weight: 800;
}

.map-placeholder {
  display: grid;
  min-height: 380px;
  place-items: center;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(237, 28, 36, 0.84), rgba(33, 0, 93, 0.86)),
    url("../images/map-placeholder.jpg");
  background-position: center;
  background-size: cover;
  color: #fff;
  text-align: center;
}

.map-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 28px;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(18, 31, 63, 0.07);
}

.map-panel > div {
  display: grid;
  align-content: center;
}

.map-panel iframe {
  width: 100%;
  min-height: 380px;
  border: 0;
  border-radius: 8px;
  background: var(--soft);
}

.inquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 30px;
  align-items: start;
}

.form-panel .form-notice {
  color: var(--green);
}

.sidebar-panel {
  position: sticky;
  top: 128px;
  padding: 24px;
}

.sidebar-panel a {
  display: block;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  color: var(--muted);
  font-weight: 800;
}

.sidebar-panel a:last-child {
  border-bottom: 0;
}

.package-table {
  border-block: 1px solid var(--line);
}

.package-row {
  display: grid;
  grid-template-columns: 1.1fr 0.6fr 0.8fr auto;
  gap: 14px;
  align-items: center;
  padding: 20px 0;
}

.package-row + .package-row {
  border-top: 1px solid var(--line);
}

.clients-section {
  overflow: hidden;
  background: #fff;
}

.client-marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--soft);
}

.client-track {
  display: flex;
  width: max-content;
  gap: 14px;
  padding: 20px 0;
  will-change: transform;
}

.client-track span {
  min-width: 190px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
  background: #fff;
  color: var(--navy);
  font-family: "Sora", "Manrope", Inter, sans-serif;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 8px 20px rgba(18, 31, 63, 0.05);
}

.blog-list {
  display: grid;
  gap: 30px;
}

.blog-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 32px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 34px;
}

.blog-feature img {
  width: 100%;
  min-height: 420px;
  border-radius: 8px;
  object-fit: cover;
}

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

.blog-card {
  display: grid;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
}

.blog-card img {
  width: 100%;
  height: 210px;
  border-radius: 8px;
  object-fit: cover;
}

.blog-card small {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card a {
  color: var(--ink);
  font-weight: 900;
}

.article-hero {
  position: relative;
  display: grid;
  min-height: 600px;
  align-items: end;
  overflow: hidden;
  padding: 150px 0 80px;
  background: var(--deep);
  color: #fff;
}

.article-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.article-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 11, 26, 0.92), rgba(7, 11, 26, 0.46));
  content: "";
}

.article-hero .shell {
  position: relative;
  z-index: 1;
}

.article-hero p:last-child {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
}

.article-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 760px);
  gap: 52px;
  align-items: start;
}

.article-aside {
  position: sticky;
  top: 128px;
  display: grid;
  gap: 12px;
  border-block: 1px solid var(--line);
  padding: 18px 0;
}

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

.article-aside a {
  color: var(--muted);
  font-weight: 800;
}

.article-body {
  color: var(--navy);
  font-size: 1.03rem;
}

.article-body h2 {
  margin-top: 34px;
}

.article-callout {
  margin-top: 34px;
  border-left: 4px solid var(--red);
  padding: 20px;
  background: var(--soft);
}

@media (max-width: 900px) {
  .section-head,
  .command-center,
  .operations-layout,
  .group-command,
  .brand-film-content,
  .global-brand-grid,
  .signal-grid,
  .detail-layout,
  .spotlight-grid,
  .team-leadership,
  .map-panel,
  .blog-feature,
  .article-layout {
    grid-template-columns: 1fr;
    display: grid;
    align-items: start;
  }

  .feature-strip,
  .inquiry-layout,
  .package-row,
  .method-grid,
  .service-showcase-grid,
  .brand-stats,
  .about-network-grid,
  .company-strip,
    .team-portrait-grid,
    .contact-desk-grid,
    .evisa-panel,
    .blog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .global-copy {
    position: static;
  }

  .image-mosaic {
    grid-template-rows: 220px 220px;
  }

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

  .vault-card:nth-child(n) {
    grid-column: auto;
  }

  .sidebar-panel {
    position: static;
  }

  .detail-aside {
    position: static;
  }
}

@media (max-width: 760px) {
  .country-card,
  .step-card,
  .story-card,
  .document-card,
  .testimonial-card,
  .route-card,
  .trust-card,
  .vault-card,
  .detail-block,
  .contact-desk,
  .method-card,
  .evisa-detail,
  .dominance-card {
    padding: 18px;
  }

  .section-head {
    gap: 12px;
    margin-bottom: 20px;
  }

  .brand-film {
    min-height: auto;
    padding: 92px 0 52px;
  }

  .brand-film-copy h2 {
    font-size: clamp(1.65rem, 8vw, 2.45rem);
  }

  .film-control-panel {
    padding: 18px;
  }

  .image-mosaic {
    gap: 12px;
  }

  .brand-stats div {
    padding: 18px;
  }

  .signal-grid {
    gap: 24px;
  }

  .signal-media {
    min-height: 360px;
  }

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

  .marquee-track {
    gap: 10px;
    padding: 12px 0;
  }

  .marquee-item {
    padding: 8px 12px;
    font-size: 0.9rem;
  }

  .command-center,
  .operations-layout,
  .group-command,
  .evisa-panel,
  .inquiry-layout,
  .split {
    gap: 18px;
  }

  .group-card {
    min-height: 340px;
  }

  .group-command {
    padding: 20px;
  }

  .group-command-metrics {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .operations-board {
    padding: 18px;
  }

  .operations-flow article {
    padding: 14px;
  }

  .ops-ticket-grid {
    grid-template-columns: 1fr;
  }

  .ops-ticket {
    min-height: 150px;
  }

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

  .ops-metrics div:nth-child(2) {
    border-right: 0;
  }

  .ops-metrics div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .service-card {
    min-height: 320px;
  }

  .country-card img {
    width: calc(100% + 36px);
    height: 132px;
    margin: -18px -18px 16px;
  }

  .route-card {
    min-height: auto;
    gap: 10px;
  }

  .route-card header {
    align-items: start;
  }

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

  .premium-stack {
    gap: 10px;
  }

  .premium-item {
    grid-template-columns: 44px 1fr;
    gap: 12px;
    padding: 14px;
  }

  .spotlight {
    padding: 24px 18px;
  }

  .method-card .num {
    width: 38px;
    height: 38px;
  }

  .evisa-menu {
    padding: 20px;
  }

  .feature-strip div {
    padding: 18px;
  }

  .tabs {
    gap: 8px;
    margin: 20px 0;
  }

  .tab-btn {
    padding: 9px 12px;
  }

  .tab-panel {
    padding: 18px;
  }

  .map-placeholder {
    min-height: 260px;
    padding: 20px;
  }

  .map-panel {
    padding: 18px;
  }

  .map-panel iframe {
    min-height: 300px;
  }

  .client-track {
    gap: 10px;
    padding: 14px 0;
  }

  .client-track span {
    min-width: 160px;
    padding: 14px 16px;
  }

  .blog-feature img {
    min-height: 280px;
  }

  .article-hero {
    min-height: 440px;
    padding: 112px 0 54px;
  }

  .article-aside {
    position: static;
  }

  .sidebar-panel {
    padding: 18px;
  }

  .package-row {
    gap: 8px;
    padding: 16px;
  }
}

@media (max-width: 620px) {
  .feature-strip,
  .track-form,
  .inquiry-layout,
  .package-row,
  .vault-grid,
  .method-grid,
  .service-showcase-grid,
  .group-command-metrics,
  .image-mosaic,
  .brand-stats,
  .about-network-grid,
  .detail-list,
  .company-strip,
  .team-portrait-grid,
  .contact-desk-grid,
  .evisa-panel,
  .evisa-detail-grid,
  .dominance-card,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .company-strip a,
  .company-strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .company-strip a:last-child,
  .company-strip div:last-child {
    border-bottom: 0;
  }

  .team-card img {
    width: min(160px, 68vw);
  }

  .image-mosaic {
    grid-template-rows: 250px 210px 210px;
  }

  .image-mosaic .mosaic-large {
    grid-row: auto;
  }

  .brand-stats div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .brand-stats div:last-child {
    border-bottom: 0;
  }

  .signal-media {
    min-height: 300px;
  }

  .group-card {
    min-height: 340px;
  }

  .service-card {
    min-height: 320px;
  }

  .group-command-metrics span {
    min-height: auto;
  }

  .metric-row {
    border-radius: 8px;
  }

  .feature-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-strip div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 420px) {
  .country-card,
  .step-card,
  .testimonial-card,
  .route-card,
  .trust-card,
  .vault-card,
  .detail-block,
  .method-card,
  .evisa-detail {
    padding: 16px;
  }

  .service-card img,
  .country-card img {
    position: static;
    width: calc(100% + 32px);
    height: 120px;
    margin: -16px -16px 14px;
  }

  .service-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
  }

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

  .step-card::before {
    width: 42px;
    height: 42px;
    font-size: 0.88rem;
  }

  .country-meta {
    gap: 6px;
  }

  .country-meta span {
    padding: 4px 8px;
  }

  .premium-item {
    grid-template-columns: 1fr;
  }

  .brand-film {
    padding-top: 86px;
  }

  .route-code-grid {
    grid-template-columns: 1fr;
  }
}

.navbar,
.brand-mark,
.brand-mark::after,
.hero-card,
.hero-video-panel,
.hero-video-caption span,
.hero-status span,
.hero-mini,
.quick-form,
.quick-form input,
.quick-form select,
.page-hero,
.card,
.btn,
.pill,
.icon-box,
.media-frame,
.metric-row,
.field input,
.field select,
.field textarea,
.group-card,
.group-label,
.group-card a,
.group-command,
.group-command-metrics span,
.film-control-panel,
.image-mosaic figure,
.image-mosaic figcaption,
.brand-stats,
.signal-media,
.signal-media-copy span,
.route-code-grid span,
.signal-list div,
.detail-aside img,
.detail-list li,
.company-strip,
.operations-flow article,
.operations-flow span,
.operations-board,
.ops-board-head > strong,
.ops-ticket,
.ops-ticket span,
.ops-metrics,
.route-card .code,
.premium-item,
.spotlight,
.method-card .num,
.evisa-menu,
.tab-btn,
.tab-panel,
.track-form input,
.track-result,
.map-panel,
.map-panel iframe,
.client-track span,
.blog-feature img,
.blog-card img,
.article-callout {
  border-radius: 0;
}

.home-page .section {
  position: relative;
  border-top: 1px solid var(--line);
}

.home-page .section.alt {
  background: #f8fafc;
}

.home-page .section-head {
  align-items: start;
  margin-bottom: 40px;
}

.home-page .section-head h2 {
  max-width: 820px;
}

.home-page .lead,
.home-page p {
  font-weight: 400;
}

.home-page .card {
  box-shadow: none;
}

.home-page .card:hover {
  box-shadow: none;
}

.marquee-band {
  background: #0b1228;
}

.marquee-item {
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.76);
  font-family: "Barlow Condensed", "Inter Tight", Inter, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
}

.marquee-item b {
  color: #fff;
  font-weight: 500;
}

.home-page .group-showcase {
  background: #fff;
}

.home-page .group-grid {
  gap: 0;
  border: 1px solid var(--line);
  border-right: 0;
}

.home-page .group-card {
  min-height: 500px;
  border: 0;
  border-right: 1px solid var(--line);
  box-shadow: none;
}

.home-page .group-card::after {
  background:
    linear-gradient(180deg, rgba(7, 11, 26, 0), rgba(7, 11, 26, 0.84)),
    linear-gradient(90deg, rgba(7, 11, 26, 0.48), transparent);
}

.home-page .group-card p,
.home-page .service-overlay p,
.home-page .method-card p,
.home-page .vault-card p,
.home-page .country-card p {
  display: none;
}

.home-page .group-card-content {
  gap: 8px;
  padding: 28px;
}

.home-page .group-label {
  position: static;
  background: rgba(255, 255, 255, 0.92);
  color: var(--red);
}

.home-page .group-card a,
.home-page .service-overlay .card-action {
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: transparent;
  color: #fff;
  font-family: "Barlow Condensed", "Inter Tight", Inter, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}

.home-page .group-command {
  margin-top: 0;
  border-top: 0;
  box-shadow: none;
}

.home-page .group-command-metrics span,
.home-page .brand-stats,
.home-page .ops-metrics,
.home-page .metric-row {
  box-shadow: none;
}

.brand-film {
  min-height: 78vh;
}

.film-control-panel {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: none;
}

.home-page .image-mosaic {
  grid-template-rows: 280px 280px;
  gap: 0;
  border: 1px solid var(--line);
}

.home-page .image-mosaic figure {
  border: 0;
  border-right: 1px solid var(--line);
  box-shadow: none;
}

.home-page .image-mosaic figure:nth-child(3) {
  border-top: 1px solid var(--line);
}

.home-page .brand-stats {
  border-radius: 0;
}

.home-page .service-showcase-grid {
  grid-template-columns: repeat(4, minmax(260px, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  overflow-x: auto;
  scroll-snap-type: inline mandatory;
}

.home-page .service-card {
  min-height: 480px;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
  scroll-snap-align: start;
}

.home-page .service-card:last-child {
  border-right: 0;
}

.home-page .service-overlay {
  padding: 28px;
}

.home-page .service-overlay .icon-box {
  position: absolute;
  top: 28px;
  right: 24px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--red);
}

.home-page .signal-section {
  background: #070b1a;
}

.home-page .signal-media {
  min-height: 620px;
  border: 0;
  box-shadow: none;
}

.home-page .route-code-grid {
  border: 1px solid rgba(255, 255, 255, 0.14);
  gap: 0;
}

.home-page .route-code-grid span {
  border: 0;
  border-right: 1px solid rgba(18, 31, 63, 0.12);
  background: #fff;
}

.home-page .signal-list div {
  border: 0;
  border-left: 2px solid var(--red);
}

.home-page .evisa-panel {
  align-items: stretch;
}

.home-page .evisa-menu {
  border: 0;
  background:
    linear-gradient(180deg, rgba(7, 11, 26, 0.82), rgba(7, 11, 26, 0.9)),
    url("../images/evisa-documents.jpg");
  background-size: cover;
  background-position: center;
}

.home-page .evisa-detail-grid {
  gap: 0;
  border-block: 1px solid var(--line);
}

.home-page .evisa-detail {
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.home-page .operations-section {
  background: #fff;
}

.home-page .operations-flow {
  border-top: 1px solid var(--line);
}

.home-page .operations-flow article {
  border: 0;
  border-bottom: 1px solid var(--line);
  box-shadow: none;
}

.home-page .operations-board {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.home-page .ops-board-head {
  border: 1px solid var(--line);
  padding: 22px;
}

.home-page .ops-ticket-grid {
  gap: 0;
  margin: 0;
  border-inline: 1px solid var(--line);
}

.home-page .ops-ticket {
  min-height: 190px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
}

.home-page .ops-ticket:hover {
  box-shadow: none;
}

.home-page .method-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(290px, 1fr);
  grid-template-columns: none;
  gap: 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  scroll-snap-type: inline mandatory;
}

.home-page .method-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 0;
  border-right: 1px solid var(--line);
  background: var(--deep);
  color: #fff;
  scroll-snap-align: start;
}

.home-page .method-card img,
.home-page .vault-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.home-page .method-card::after,
.home-page .vault-card::after,
.home-page .country-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 11, 26, 0.04), rgba(7, 11, 26, 0.86));
  content: "";
}

.home-page .method-card:hover img,
.home-page .vault-card:hover img {
  transform: scale(1.06);
}

.home-page .method-card .num,
.home-page .method-card h3 {
  position: relative;
  z-index: 1;
}

.home-page .method-card .num {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--red);
}

.home-page .method-card h3 {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  margin: 0;
  color: #fff;
  font-size: 1.8rem;
}

.home-page .vault-grid {
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border: 1px solid var(--line);
}

.home-page .vault-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--deep);
  color: #fff;
}

.home-page .vault-card small,
.home-page .vault-card h3 {
  position: relative;
  z-index: 1;
}

.home-page .vault-card small {
  position: absolute;
  top: 22px;
  left: 22px;
  color: rgba(255, 255, 255, 0.78);
}

.home-page .vault-card h3 {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  margin: 0;
  color: #fff;
  font-size: 1.55rem;
}

.home-page .country-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: var(--deep);
  color: #fff;
}

.home-page .country-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
}

.home-page .country-card strong,
.home-page .country-meta {
  position: relative;
  z-index: 1;
}

.home-page .country-card strong {
  position: absolute;
  left: 24px;
  bottom: 58px;
  color: #fff;
  font-family: "Barlow Condensed", "Inter Tight", Inter, sans-serif;
  font-size: 1.7rem;
  font-weight: 500;
}

.home-page .country-meta {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
}

.home-page .country-meta span {
  border-radius: 0;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font-weight: 500;
}

.home-page .route-card {
  min-height: 230px;
  border: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  box-shadow: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.home-page .route-card:hover {
  background: #f8fafc;
  transform: translateY(-4px);
}

.home-page .timeline {
  gap: 0;
  border-top: 1px solid var(--line);
}

.home-page .step-card {
  border: 0;
  border-bottom: 1px solid var(--line);
  box-shadow: none;
}

.home-page .dominance-card {
  border: 0;
  border-left: 1px solid var(--line);
  box-shadow: none;
}

.home-page .premium-item {
  border: 0;
  border-left: 2px solid rgba(255, 255, 255, 0.24);
  background: rgba(17, 26, 58, 0.72);
}

.home-page .feature-strip {
  border-radius: 0;
}

.home-page .tab-btn {
  border-radius: 0;
}

.home-page .tab-panel {
  border: 1px solid var(--line);
  box-shadow: none;
}

.client-track span {
  border-radius: 0;
  box-shadow: none;
}

.package-table {
  border-block: 1px solid var(--line);
}

.testimonial-card {
  border: 0;
  border-left: 1px solid var(--line);
  background: transparent;
  box-shadow: none;
}

.careers-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  gap: 42px;
  align-items: start;
}

.careers-roles {
  display: grid;
  border-top: 1px solid var(--line);
}

.careers-roles article {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
}

.careers-roles span {
  color: var(--red);
  font-family: "Barlow Condensed", "Inter Tight", Inter, sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
}

.careers-roles p {
  margin-bottom: 0;
  color: var(--muted);
}

.careers-roles a {
  border: 1px solid var(--line);
  padding: 10px 18px;
  color: var(--ink);
  font-family: "Barlow Condensed", "Inter Tight", Inter, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}

.cookie-consent {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(560px, calc(100% - 48px));
  border: 1px solid var(--line);
  padding: 18px;
  transform: translateY(22px);
  background: #fff;
  color: var(--navy);
  box-shadow: 0 24px 60px rgba(18, 31, 63, 0.18);
  opacity: 0;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

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

.cookie-consent strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Barlow Condensed", "Inter Tight", Inter, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
}

.cookie-consent p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-card {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.hero-card .pill,
.hero-status span,
.hero-mini {
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
}

.hero-company-rail a {
  border-radius: 0;
  font-weight: 500;
}

.hero-company-rail span,
.hero-status span,
.hero-mini p {
  font-weight: 400;
}

.home-page :is(strong, b, small, em, .code, .card-action, .country-meta span, .ops-ticket span, .package-row strong, .testimonial-card h3),
.nav-panel,
.brand-text small,
.site-footer h3,
.site-footer a,
.contact-list a,
.contact-list span,
.detail-list li,
.company-strip span {
  font-weight: 500;
}

.home-page h3,
.home-page .metric strong,
.home-page .brand-stats strong,
.home-page .ops-metrics strong,
.home-page .dominance-card strong {
  font-weight: 500;
}

.site-header *,
.quick-cta *,
.home-page *:not(.team-card img):not(.team-feature img),
.page-hero,
.blog-feature img,
.blog-card img,
.article-hero,
.article-callout,
.careers-roles a,
.cookie-consent {
  border-radius: 0;
}

@media (max-width: 980px) {
  .home-page .service-showcase-grid,
  .home-page .method-grid {
    grid-auto-columns: minmax(280px, 82vw);
  }

  .home-page .vault-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .careers-intro,
  .careers-roles article {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .home-page .section {
    padding: 56px 0;
  }

  .home-page .group-card,
  .home-page .service-card,
  .home-page .method-card {
    min-height: 360px;
  }

  .home-page .signal-media {
    min-height: 340px;
  }

  .home-page .vault-grid {
    grid-template-columns: 1fr;
  }

  .home-page .vault-card,
  .home-page .country-card {
    min-height: 300px;
  }

  .home-page .service-overlay .icon-box {
    top: 22px;
  }

  .cookie-consent {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    grid-template-columns: 1fr;
  }
}
