:root {
  --navy: #07243d;
  --navy-deep: #03182b;
  --navy-soft: #173c58;
  --red: #ed1d2d;
  --green: #58b881;
  --ink: #0b253d;
  --muted: #53687a;
  --paper: #f7fbfe;
  --line: #d9e5ee;
  --white: #fff;
  --shadow: 0 14px 40px rgba(4, 34, 57, 0.12);
  --condensed: "Arial Narrow", "Roboto Condensed", "Aptos Narrow", sans-serif;
  --body: Inter, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 14px;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.section-light {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 45%, rgba(199, 230, 246, 0.48), transparent 28%),
    radial-gradient(circle at 86% 23%, rgba(204, 228, 243, 0.42), transparent 30%),
    linear-gradient(135deg, #f8fcff 0%, #f2f8fc 47%, #f9fcfe 100%);
}

.button {
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  text-transform: uppercase;
  font-family: var(--condensed);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

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

.button--red {
  color: #fff;
  background: var(--red);
  box-shadow: 0 6px 20px rgba(237, 29, 45, 0.2);
}

.button--red:hover {
  background: #d61324;
}

.button--outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(2, 25, 44, 0.25);
}

.button--outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.button--dark-outline {
  color: var(--ink);
  border-color: #627889;
  background: rgba(255, 255, 255, 0.45);
}

.section-heading h2,
.panel h2,
.dashboard__shell h2,
.contact h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--condensed);
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.section-heading h2 span {
  color: var(--red);
}

.section-heading p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.section-heading--center {
  text-align: center;
}

/* Hero */

.hero {
  min-height: 650px;
  position: relative;
  overflow: hidden;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(1, 19, 34, 0.58) 0%, rgba(2, 23, 41, 0.06) 51%, rgba(0, 24, 43, 0.2) 100%),
    url("assets/hero-bg.png");
  background-position: center;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 90px;
  pointer-events: none;
  background: linear-gradient(transparent, rgba(1, 22, 39, 0.28));
}

.nav {
  height: 77px;
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 250px 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand__mark {
  font-family: "Century Gothic", Arial, sans-serif;
  font-size: 39px;
  line-height: 1;
  letter-spacing: -0.13em;
}

.brand__mark::first-letter {
  letter-spacing: -0.15em;
}

.brand__rule {
  width: 1px;
  height: 42px;
  display: block;
  background: currentColor;
  opacity: 0.75;
}

.brand__name {
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.brand--light {
  color: #fff;
}

.nav__links {
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: clamp(22px, 2.25vw, 40px);
}

.nav__links a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav__links a::after {
  content: "";
  width: 0;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: 10px;
  background: var(--red);
  transition: width 160ms ease;
}

.nav__links a:hover::after,
.nav__links .is-active::after {
  width: 29px;
}

.nav__links svg {
  width: 13px;
  height: 13px;
}

.nav__cta {
  min-height: 40px;
  padding-inline: 24px;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
}

.hero__content {
  min-height: 573px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 34px;
}

.hero__copy {
  width: 445px;
  margin-top: -10px;
}

.eyebrow {
  margin: 0 0 13px;
  font-family: var(--condensed);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: var(--condensed);
  font-size: clamp(50px, 4vw, 64px);
  font-stretch: condensed;
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.22);
}

.hero h1 span {
  color: var(--red);
}

.hero__intro {
  max-width: 420px;
  margin: 18px 0 20px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 14px;
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  gap: 12px;
}

.hero__trust {
  margin-top: 23px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  display: flex;
  gap: 42px;
}

.hero__trust span {
  display: grid;
  grid-template-columns: 34px auto;
  align-items: center;
  column-gap: 9px;
  font-family: var(--condensed);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.hero__trust svg {
  width: 30px;
  height: 30px;
  grid-row: 1 / 3;
}

.hero__benefits {
  width: 247px;
  margin: 2px 0 0 auto;
  display: grid;
  gap: 20px;
}

.hero__benefits article {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 13px;
}

.hero__benefits > article > svg {
  width: 42px;
  height: 42px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
}

.hero__benefits strong {
  display: block;
  font-family: var(--condensed);
  font-size: 12px;
  line-height: 1.1;
}

.hero__benefits p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  line-height: 1.35;
}

/* Journey */

.journey {
  min-height: 352px;
  padding: 29px 0 0;
}

.journey .section-heading h2 {
  font-size: 26px;
}

.journey__grid {
  position: relative;
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
}

.journey__grid::after {
  content: "";
  height: 3px;
  position: absolute;
  right: 4.5%;
  bottom: 15px;
  left: 4.5%;
  z-index: 0;
  background: #173b5b;
}

.journey-step {
  min-width: 0;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: 42px 37px 120px 22px;
  align-items: start;
}

.journey-step__head {
  display: grid;
  grid-template-columns: 27px 1fr;
  align-items: start;
  gap: 3px;
}

.journey-step__head b {
  font-family: var(--condensed);
  font-size: 28px;
  line-height: 1;
}

.journey-step h3 {
  margin: 2px 0 0;
  font-family: var(--condensed);
  font-size: 11px;
  line-height: 1.03;
  text-transform: uppercase;
}

.journey-step p {
  margin: 4px 6px 0 30px;
  color: #40566a;
  font-size: 9px;
  line-height: 1.3;
}

.journey-step img {
  width: 134px;
  height: 105px;
  margin: 5px auto 0;
  object-fit: contain;
  filter: drop-shadow(0 7px 7px rgba(7, 38, 61, 0.13));
}

.journey-step i {
  width: 15px;
  height: 15px;
  margin: 6px auto 0;
  border: 4px solid var(--navy);
  border-radius: 50%;
  display: block;
  background: #fff;
}

.journey-step:last-child i {
  box-shadow: 0 0 0 4px #83c6df;
}

/* Services and Mauritius */

.services {
  min-height: 625px;
  padding: 34px 0 24px;
}

.services__layout {
  display: grid;
  grid-template-columns: minmax(0, 2.15fr) minmax(350px, 1fr);
  gap: 39px;
}

.services .section-heading .button {
  min-height: 38px;
  margin-top: 18px;
}

.service-ecosystem {
  height: 465px;
  margin-top: -25px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) minmax(330px, 1.45fr) minmax(220px, 1fr);
  align-items: center;
  gap: 7px;
}

.service-ecosystem__art {
  width: 100%;
  max-width: 370px;
  max-height: 460px;
  margin: 0 auto;
  z-index: 2;
  object-fit: contain;
  filter: drop-shadow(0 18px 17px rgba(4, 35, 59, 0.22));
}

.service-list {
  height: 318px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1;
}

.service-list article {
  min-height: 65px;
  position: relative;
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 10px;
  align-items: start;
}

.service-list article::after {
  content: "";
  height: 1px;
  position: absolute;
  top: 15px;
  background-image: linear-gradient(90deg, #173d5b 45%, transparent 45%);
  background-size: 5px 1px;
}

.service-list--left article::after {
  width: 63px;
  right: -57px;
}

.service-list--right article::after {
  width: 55px;
  left: -58px;
}

.service-list svg {
  width: 31px;
  height: 31px;
  color: #5abb7f;
  stroke-width: 1.35;
}

.service-list h3 {
  margin: 1px 0 5px;
  font-family: var(--condensed);
  font-size: 11px;
  text-transform: uppercase;
}

.service-list p {
  margin: 0;
  color: #3e5669;
  font-size: 9px;
  line-height: 1.35;
}

.mauritius {
  min-width: 0;
  position: relative;
  padding-left: 21px;
  border-left: 1px solid rgba(18, 59, 88, 0.14);
}

.mauritius__map {
  width: 100%;
  height: 238px;
  margin: 13px auto 2px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.mauritius__facts {
  border: 1px solid var(--line);
  border-radius: 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.43);
}

.mauritius__facts article {
  min-height: 119px;
  padding: 12px 8px 10px;
  text-align: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mauritius__facts article:nth-child(3n) {
  border-right: 0;
}

.mauritius__facts article:nth-child(n + 4) {
  border-bottom: 0;
}

.mauritius__facts svg {
  width: 33px;
  height: 33px;
  color: #f05b64;
  stroke-width: 1.35;
}

.mauritius__facts h3 {
  margin: 4px 0 2px;
  font-family: var(--condensed);
  font-size: 12px;
}

.mauritius__facts p {
  margin: 0;
  color: #344e63;
  font-size: 9px;
  line-height: 1.3;
}

.mauritius small {
  display: block;
  margin-top: 8px;
  color: #687b8b;
  font-size: 8px;
}

/* Compliance dashboard and metrics */

.dashboard {
  min-height: 409px;
  padding: 0 0 28px;
}

.dashboard__shell {
  border-radius: 15px;
  overflow: hidden;
  background: #062540;
  box-shadow: var(--shadow);
}

.dashboard__shell header {
  padding: 14px 210px 8px;
  color: #fff;
}

.dashboard__shell h2 {
  color: #fff;
  font-size: 18px;
}

.dashboard__shell p {
  margin: 2px 0 0;
  font-size: 10px;
}

.dashboard__shell img {
  width: 100%;
}

.dashboard__caption {
  margin-top: 15px;
}

.dashboard__caption h2 {
  font-size: 19px;
}

.dashboard__caption p {
  margin-top: 1px;
  font-size: 10px;
}

.metrics {
  min-height: 92px;
  margin-top: 13px;
  border: 1px solid #d6e2eb;
  border-radius: 11px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  background: rgba(255, 255, 255, 0.43);
}

.metrics article {
  min-height: 62px;
  padding: 4px 24px;
  border-right: 1px solid #dfe8ef;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

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

.metrics svg {
  width: 42px;
  height: 42px;
  color: #70869b;
  stroke-width: 1.1;
}

.metrics strong,
.metrics span {
  display: block;
}

.metrics strong {
  font-family: var(--condensed);
  font-size: 18px;
}

.metrics span {
  color: #41566a;
  font-size: 9px;
  line-height: 1.35;
}

/* Testimonial, clients and resources */

.credibility {
  min-height: 320px;
  padding: 0 0 34px;
}

.credibility__grid {
  display: grid;
  grid-template-columns: 1.02fr 1.2fr 1.84fr;
  gap: 15px;
}

.panel {
  min-height: 280px;
  padding: 19px 22px;
  border: 1px solid #dce7ef;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.36);
  box-shadow: 0 10px 24px rgba(12, 53, 80, 0.03);
}

.panel h2 {
  font-size: 16px;
  text-align: center;
}

.testimonial {
  position: relative;
}

.testimonial__quote {
  width: 25px;
  height: 25px;
  position: absolute;
  top: 50px;
  left: 22px;
  color: var(--red);
  stroke-width: 3;
}

.testimonial blockquote {
  margin: 38px 0 19px 12px;
  color: #18334b;
  font-size: 11px;
  line-height: 1.65;
}

.testimonial__person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial__person img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial__person p {
  margin: 0;
}

.testimonial__person strong,
.testimonial__person span {
  display: block;
}

.testimonial__person strong {
  font-family: var(--condensed);
  font-size: 11px;
}

.testimonial__person span {
  margin-top: 3px;
  color: #4b6071;
  font-size: 8px;
}

.testimonial__dots {
  height: 24px;
  margin: 9px -7px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.testimonial__dots i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #aab9c5;
}

.testimonial__dots .is-active {
  background: #173c5a;
}

.testimonial__dots span {
  margin-left: auto;
  color: #526a7e;
  font-size: 25px;
  line-height: 1;
}

.testimonial__dots span + span {
  margin-left: 8px;
}

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

.clients__grid span {
  min-width: 0;
  height: 82px;
  border: 1px solid #e4ebf0;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #4a5c68;
  background: rgba(255, 255, 255, 0.74);
  text-align: center;
}

.clients__grid b {
  font-size: 10px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.clients__grid small {
  margin-top: 2px;
  font-size: 6px;
  letter-spacing: 0.13em;
}

.clients__grid .logo-fin {
  color: #37695b;
}

.clients__grid .logo-global {
  color: #3d6890;
}

.clients__grid .logo-africa {
  color: #345b59;
}

.panel__head {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.panel__head h2 {
  text-align: left;
}

.panel__head p {
  margin: 3px 0 0;
  font-family: var(--condensed);
  font-size: 9px;
  font-weight: 700;
}

.panel__head > a {
  min-height: 29px;
  padding: 0 11px;
  border: 1px solid #b5c5d1;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--condensed);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.panel__head a svg {
  width: 13px;
  height: 13px;
}

.insights__grid {
  margin-top: 15px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.insights__grid figure {
  height: 106px;
  margin: 0;
  position: relative;
  overflow: hidden;
}

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

.insights__grid figure span {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 3px 6px;
  color: #fff;
  background: var(--red);
  font-family: var(--condensed);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.insights__grid h3 {
  min-height: 36px;
  margin: 8px 0 5px;
  font-family: var(--condensed);
  font-size: 12px;
  line-height: 1.12;
}

.insights__grid time {
  color: #53687a;
  font-size: 8px;
}

/* Contact */

.contact {
  min-height: 361px;
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(1, 25, 43, 0.46), rgba(0, 22, 38, 0.09) 49%, rgba(0, 25, 44, 0.28)),
    url("assets/cta-bg.png") center / cover no-repeat;
}

.contact::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(1, 22, 39, 0.13), rgba(1, 21, 38, 0.3));
}

.contact__layout {
  min-height: 361px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 310px 360px;
  align-items: center;
  gap: 34px;
}

.contact__intro {
  padding-left: 120px;
}

.contact h2 {
  color: #fff;
  font-size: 31px;
  line-height: 1.02;
}

.contact__intro > p {
  margin: 11px 0 15px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 10px;
}

.contact ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact li {
  margin: 6px 0;
  font-size: 10px;
}

.contact li span {
  width: 17px;
  height: 17px;
  margin-right: 7px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #16445f;
  background: #d5f3e5;
  font-size: 11px;
  font-weight: 900;
}

.contact__card {
  min-height: 217px;
  padding: 24px 21px 19px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 4px;
  background: rgba(2, 40, 63, 0.84);
  box-shadow: 0 12px 35px rgba(0, 19, 35, 0.22);
  backdrop-filter: blur(6px);
}

.contact__card h3,
.contact__form h3 {
  margin: 0 0 16px;
  font-family: var(--condensed);
  font-size: 12px;
  text-transform: uppercase;
}

.contact__card p {
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
}

.contact__card p svg {
  width: 17px;
  height: 17px;
}

.contact__card .button {
  width: 100%;
  min-height: 40px;
  margin-top: 7px;
  padding-inline: 10px;
  font-size: 10px;
}

.contact__form {
  min-height: 302px;
  padding: 21px;
  border-radius: 7px;
  color: var(--ink);
  background: rgba(248, 252, 255, 0.95);
  box-shadow: 0 15px 40px rgba(2, 29, 48, 0.28);
}

.contact__form label {
  display: block;
}

.contact__form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.contact__form input,
.contact__form textarea {
  width: 100%;
  margin-bottom: 8px;
  border: 1px solid #e0e8ee;
  border-radius: 2px;
  outline: 0;
  display: block;
  color: var(--ink);
  background: #fff;
  font-size: 9px;
}

.contact__form input {
  height: 32px;
  padding: 0 10px;
}

.contact__form textarea {
  height: 71px;
  padding: 9px 10px;
  resize: vertical;
}

.contact__form input:focus,
.contact__form textarea:focus {
  border-color: #6a879b;
  box-shadow: 0 0 0 2px rgba(47, 104, 143, 0.12);
}

.contact__form .button {
  width: 100%;
  min-height: 37px;
  border: 0;
  cursor: pointer;
  font-size: 10px;
}

.form-status {
  height: 13px;
  margin: 5px 0 -8px;
  color: #28764f;
  text-align: center;
  font-size: 8px;
}

/* Footer */

.footer {
  min-height: 233px;
  padding: 30px 0 14px;
  color: rgba(255, 255, 255, 0.86);
  background:
    radial-gradient(circle at 45% -40%, rgba(27, 77, 108, 0.52), transparent 45%),
    #031c31;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 1fr) 0.82fr;
  gap: 45px;
}

.footer .brand__mark {
  font-size: 37px;
}

.footer__about > p {
  margin: 17px 0 0;
  font-size: 10px;
  line-height: 1.6;
}

.footer h2 {
  margin: 0 0 12px;
  color: #fff;
  font-family: var(--condensed);
  font-size: 11px;
  text-transform: uppercase;
}

.footer nav a {
  margin: 5px 0;
  display: block;
  color: rgba(255, 255, 255, 0.74);
  font-size: 9px;
}

.footer nav a:hover {
  color: #fff;
}

.footer__social p {
  display: flex;
  gap: 22px;
}

.footer__social a {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}

.footer__bottom {
  margin-top: 27px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.6);
  font-size: 8px;
}

.footer__bottom p {
  margin: 0;
}

.footer__bottom p:last-child {
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer__bottom i {
  width: 1px;
  height: 10px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 1180px) {
  .container {
    width: min(1040px, calc(100% - 48px));
  }

  .nav {
    grid-template-columns: 220px 1fr auto;
    gap: 15px;
  }

  .nav__links {
    gap: 15px;
  }

  .nav__links a {
    font-size: 9px;
  }

  .nav__cta {
    padding-inline: 14px;
    font-size: 10px;
  }

  .service-ecosystem {
    grid-template-columns: 190px minmax(260px, 1fr) 190px;
  }

  .services__layout {
    grid-template-columns: minmax(0, 1.8fr) 340px;
    gap: 20px;
  }

  .contact__layout {
    grid-template-columns: 1fr 270px 330px;
    gap: 18px;
  }

  .contact__intro {
    padding-left: 40px;
  }

  .footer__grid {
    gap: 28px;
  }
}

@media (max-width: 920px) {
  .container {
    width: min(720px, calc(100% - 36px));
  }

  .hero {
    min-height: 730px;
    background-position: 58% center;
  }

  .nav {
    height: 74px;
    grid-template-columns: 1fr auto;
  }

  .nav__links,
  .nav__cta {
    display: none;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 3px;
    display: grid;
    place-content: center;
    gap: 5px;
    color: #fff;
    background: rgba(2, 27, 46, 0.48);
  }

  .menu-toggle span {
    width: 19px;
    height: 2px;
    display: block;
    background: currentColor;
  }

  .nav.is-open .nav__links {
    height: auto;
    position: absolute;
    top: 67px;
    right: 0;
    left: 0;
    padding: 16px;
    display: grid;
    gap: 4px;
    border-radius: 5px;
    background: rgba(2, 28, 48, 0.97);
    box-shadow: var(--shadow);
  }

  .nav.is-open .nav__links a {
    min-height: 39px;
    justify-content: center;
    font-size: 11px;
  }

  .nav.is-open .nav__links a::after {
    display: none;
  }

  .hero__content {
    min-height: 656px;
    align-items: end;
    padding-bottom: 48px;
  }

  .hero__benefits {
    display: none;
  }

  .hero__copy {
    width: 460px;
    padding: 24px;
    border-radius: 7px;
    background: rgba(1, 23, 40, 0.48);
    backdrop-filter: blur(3px);
  }

  .journey {
    padding-bottom: 35px;
  }

  .journey__grid {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 30px;
  }

  .journey__grid::after {
    display: none;
  }

  .journey-step {
    grid-template-rows: 42px 37px 120px;
  }

  .journey-step i {
    display: none;
  }

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

  .service-ecosystem {
    height: auto;
    margin-top: 25px;
    grid-template-columns: 1fr 1.35fr 1fr;
  }

  .mauritius {
    padding: 25px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .mauritius__map {
    height: 300px;
  }

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

  .metrics article:nth-child(3) {
    border-right: 0;
  }

  .metrics article:nth-child(-n + 3) {
    border-bottom: 1px solid #dfe8ef;
  }

  .credibility__grid {
    grid-template-columns: 1fr 1.2fr;
  }

  .insights {
    grid-column: 1 / -1;
  }

  .contact {
    padding: 45px 0;
  }

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

  .contact__intro {
    padding-left: 0;
  }

  .contact__form {
    grid-column: 1 / -1;
    width: min(520px, 100%);
    margin-inline: auto;
  }

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

  .footer__social {
    grid-column: 2;
  }
}

@media (max-width: 620px) {
  .container {
    width: calc(100% - 28px);
  }

  .brand__mark {
    font-size: 32px;
  }

  .brand__rule {
    height: 36px;
  }

  .brand__name {
    font-size: 9px;
  }

  .hero {
    min-height: 720px;
    background-position: 63% center;
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(1, 20, 35, 0.12), rgba(1, 22, 39, 0.78) 64%);
  }

  .hero__copy {
    width: 100%;
    padding: 19px;
  }

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

  .eyebrow {
    font-size: 11px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__trust {
    justify-content: space-between;
    gap: 8px;
  }

  .hero__trust span {
    grid-template-columns: 28px auto;
    font-size: 9px;
  }

  .hero__trust svg {
    width: 25px;
    height: 25px;
  }

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

  .journey-step:last-child {
    grid-column: 1 / -1;
    width: 50%;
    margin-inline: auto;
  }

  .service-ecosystem {
    display: flex;
    flex-direction: column;
  }

  .service-ecosystem__art {
    order: -1;
    max-width: 330px;
  }

  .service-list {
    width: 100%;
    height: auto;
    gap: 18px;
  }

  .service-list article::after {
    display: none;
  }

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

  .mauritius__facts article:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .mauritius__facts article:nth-child(2n) {
    border-right: 0;
  }

  .mauritius__facts article:nth-child(n + 4) {
    border-bottom: 1px solid var(--line);
  }

  .mauritius__facts article:nth-child(n + 5) {
    border-bottom: 0;
  }

  .dashboard {
    padding-top: 24px;
  }

  .dashboard__shell {
    border-radius: 8px;
  }

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

  .metrics article,
  .metrics article:nth-child(3) {
    border-right: 1px solid #dfe8ef;
    border-bottom: 1px solid #dfe8ef;
  }

  .metrics article:nth-child(2n) {
    border-right: 0;
  }

  .metrics article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .credibility {
    padding-top: 25px;
  }

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

  .insights {
    grid-column: auto;
  }

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

  .insights__grid figure {
    height: 180px;
  }

  .contact__layout {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .contact__card,
  .contact__form {
    width: 100%;
  }

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

  .footer__about {
    grid-column: 1 / -1;
  }

  .footer__social {
    grid-column: auto;
  }

  .footer__bottom {
    gap: 14px;
    flex-direction: column;
  }
}
