:root {
  --petrol: #033442;
  --petrol-deep: #012a36;
  --ink: #063544;
  --text: #173744;
  --muted: #7c8d95;
  --teal: #008f8b;
  --accent: #f1c64d;
  --paper: #f5f7f6;
  --surface: #ffffff;
  --line: #dbe3e4;
  --radius: 8px;
  --container: 1800px;
  --page-pad: clamp(20px, 3.8vw, 70px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(241, 198, 77, .52);
  outline-offset: 4px;
}

.site-header {
  min-height: 76px;
  padding: 0 var(--page-pad);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  color: #fff;
  background: linear-gradient(90deg, var(--petrol) 0%, var(--petrol-deep) 100%);
  position: relative;
  z-index: 10;
}

.brand {
  color: inherit;
  font-size: clamp(20px, 1.45vw, 26px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: .18em;
  white-space: nowrap;
}

.brand span { color: var(--accent); }

.main-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(24px, 2.6vw, 44px);
  font-size: 16px;
  font-weight: 800;
}

.main-nav a {
  padding: 8px 0;
  border-radius: 6px;
  transition: color .2s ease;
}

.main-nav a:hover { color: var(--accent); }

.header-action,
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--accent);
  border: 1px solid rgba(220, 174, 47, .48);
  box-shadow: 0 8px 18px rgba(1, 42, 54, .12);
  font-weight: 900;
}

.header-action {
  min-height: 44px;
  padding: 0 24px;
  font-size: 15px;
  white-space: nowrap;
}

.button {
  min-height: 46px;
  padding: 0 30px;
  font-size: 16px;
}

.header-action:hover,
.button:hover { background: #f5d36c; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--teal);
  font-size: 17px;
  font-weight: 900;
}

.text-link span,
.arrow {
  font-size: 26px;
  line-height: 1;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  background: transparent;
  padding: 10px;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.hero {
  width: min(var(--container), 100%);
  margin: 0 auto;
  padding: clamp(48px, 3.5vw, 56px) var(--page-pad) clamp(56px, 4vw, 64px);
  display: grid;
  grid-template-columns: minmax(0, 44fr) minmax(0, 56fr);
  gap: clamp(40px, 4.6vw, 76px);
  align-items: center;
}

.hero > * { min-width: 0; }

.hero-copy h1 {
  max-width: 620px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(50px, 4.7vw, 78px);
  line-height: .98;
  letter-spacing: 0;
  font-weight: 950;
}

.hero-copy h1 span {
  display: block;
  color: var(--teal);
}

.hero-copy p {
  max-width: 570px;
  margin: 20px 0 26px;
  color: var(--ink);
  font-size: clamp(18px, 1.2vw, 20px);
  line-height: 1.48;
  font-weight: 400;
}

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

.photo-grid {
  height: clamp(470px, 35vw, 580px);
  display: grid;
  grid-template-columns: minmax(0, 55fr) minmax(0, 45fr);
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  min-width: 0;
}

.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  background: #d9e3e6;
}

.photo-large {
  grid-row: 1 / 3;
  object-position: 39% 58%;
}

.photo-grid img:nth-child(2) { object-position: 50% 45%; }
.photo-grid img:nth-child(3) { object-position: 54% 42%; }

.hub-band {
  width: min(calc(var(--container) - (var(--page-pad) * 1.2)), calc(100% - 56px));
  margin: 0 auto;
  padding: 28px 38px;
  display: grid;
  grid-template-columns: minmax(240px, 292px) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  background: #f0f4f4;
  border: 1px solid #edf1f1;
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(3, 52, 66, .08);
}

.band-title h2,
.countries-title h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(25px, 1.85vw, 32px);
  line-height: 1.2;
  font-weight: 950;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  min-width: 0;
}

.feature-card,
.country-card {
  min-width: 0;
  min-height: 154px;
  position: relative;
  display: flex;
  align-items: flex-end;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
}

.feature-card {
  padding: 22px 24px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: start;
}

.feature-card svg,
.more-card svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: var(--teal);
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-bottom {
  width: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.feature-card strong {
  min-width: 0;
  font-size: 18px;
  font-weight: 950;
}

.card-number {
  position: absolute;
  top: 20px;
  right: 22px;
  color: var(--teal);
  font-size: 18px;
  font-weight: 950;
}

.feature-card .arrow { color: var(--teal); }

.countries {
  width: min(var(--container), 100%);
  margin: 0 auto;
  padding: 44px var(--page-pad) 42px;
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.countries > * { min-width: 0; }

.country-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  min-width: 0;
}

.country-card {
  min-height: 148px;
  padding: 24px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.country-card strong {
  display: block;
  min-width: 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.2;
  font-weight: 950;
}

.country-card small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1;
  font-weight: 900;
}

.country-card .arrow {
  justify-self: end;
  color: var(--teal);
}

.country-info {
  min-width: 0;
  display: block;
}

.country-muted { opacity: .86; }

.flag-frame {
  width: 86px;
  height: 56px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
}

.flag-frame img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  filter: drop-shadow(0 4px 8px rgba(3, 52, 66, .08));
}

.more-card {
  align-items: center;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  background: var(--petrol);
  border-color: var(--petrol);
  color: #fff;
}

.more-card svg {
  width: 38px;
  height: 38px;
}

.more-card strong {
  color: #fff;
  min-width: 0;
  display: grid;
  gap: 2px;
  font-size: clamp(17px, 1.05vw, 19px);
  line-height: 1.16;
  letter-spacing: 0;
}

.more-card strong span:first-child {
  white-space: nowrap;
}

.more-card .arrow { color: var(--teal); }

.site-footer {
  min-height: 76px;
  padding: 0 var(--page-pad);
  display: flex;
  align-items: center;
  gap: 54px;
  color: #d9e6e9;
  background: linear-gradient(90deg, var(--petrol) 0%, var(--petrol-deep) 100%);
}

.brand-light { color: #fff; }

.site-footer p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

@media (max-width: 1080px) {
  .site-header { gap: 22px; }
  .main-nav { gap: 24px; font-size: 16px; }
  .hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }
  .photo-grid { height: clamp(400px, 54vw, 520px); }
  .hub-band,
  .countries {
    grid-template-columns: 1fr;
  }
  .feature-grid,
  .country-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1500px) {
  .countries {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
    justify-self: end;
    order: 3;
  }
  .main-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    padding: 14px var(--page-pad) 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: var(--petrol);
    border-top: 1px solid rgba(255,255,255,.12);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 0; }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }
  .brand { font-size: 20px; letter-spacing: .14em; }
  .header-action {
    min-height: 40px;
    padding: 0 14px;
    font-size: 14px;
    order: 2;
    justify-self: end;
  }
  .main-nav { top: 68px; }
  .hero {
    padding-top: 32px;
    padding-bottom: 44px;
  }
  .hero-copy h1 {
    font-size: clamp(38px, 10.8vw, 58px);
    overflow-wrap: break-word;
  }
  .hero-copy p {
    margin: 22px 0 26px;
    font-size: 18px;
  }
  .hero-actions {
    align-items: center;
    flex-direction: column;
    gap: 16px;
  }
  .button { min-height: 48px; width: 100%; }
  .photo-grid {
    height: auto;
    grid-template-columns: 1.2fr .8fr;
    grid-auto-rows: 130px;
    gap: 12px;
  }
  .photo-grid img { border-radius: 14px; }
  .photo-large { min-height: 272px; }
  .hub-band {
    width: calc(100% - 32px);
    padding: 22px;
    border-radius: 14px;
  }
  .feature-grid,
  .country-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .feature-card { min-height: 132px; }
  .countries {
    padding-top: 42px;
    padding-bottom: 34px;
  }
  .country-card {
    min-height: 124px;
    padding: 20px;
  }
  .flag-frame {
    width: 62px;
    height: 40px;
  }
  .site-footer {
    min-height: 84px;
    padding-top: 16px;
    padding-bottom: 16px;
    align-items: center;
    flex-direction: row;
    gap: 18px;
  }
  .site-footer .brand { font-size: 17px; }
  .site-footer p { font-size: 14px; }
}

@media (max-width: 390px) {
  .site-header { padding-inline: 14px; }
  .header-action { display: none; }
  .photo-grid { grid-auto-rows: 112px; }
  .photo-large { min-height: 236px; }
}

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