:root {
  --blue: #0019c8;
  --navy: #07172f;
  --ink: #162033;
  --muted: #647089;
  --line: #dfe6f1;
  --paper: #f7f9fc;
  --white: #ffffff;
  --teal: #008f8a;
  --gold: #d89f2b;
  --coral: #eb6a4a;
  --shadow: 0 20px 60px rgba(7, 23, 47, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 84px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(223, 230, 241, 0.86);
  backdrop-filter: blur(18px);
}

.brand img {
  display: block;
  width: 168px;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 700;
}

.main-nav a {
  padding: 8px 0;
}

.header-actions,
.hero-actions,
.cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--blue);
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-small {
  min-height: 42px;
  color: var(--white);
  background: var(--blue);
  padding: 0 16px;
}

.btn-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(0, 25, 200, 0.22);
}

.btn-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 128px clamp(20px, 5vw, 72px) 72px;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("hero-port.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 23, 47, 0.91) 0%, rgba(7, 23, 47, 0.74) 42%, rgba(7, 23, 47, 0.22) 100%),
    linear-gradient(180deg, rgba(7, 23, 47, 0.36) 0%, rgba(7, 23, 47, 0.1) 58%, rgba(255, 255, 255, 0.92) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #70e2de;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(2.45rem, 7vw, 5.9rem);
  line-height: 0.98;
  letter-spacing: 0;
  max-width: 820px;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 18px 0 10px;
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.18;
}

.hero-copy {
  max-width: 670px;
  margin: 26px 0 32px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.section {
  padding: clamp(58px, 8vw, 108px) clamp(20px, 5vw, 72px);
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.intro {
  background: var(--white);
}

.intro-grid,
.coverage-grid,
.cta-grid,
.value-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.intro p:not(.eyebrow),
.coverage p,
.value-copy p:not(.eyebrow),
.contactCopy {
  color: var(--muted);
}

.intro-grid > p,
.coverage-grid p,
.value-copy p,
.cta-grid p {
  margin-top: 0;
  font-size: 1.08rem;
}

.stats-band {
  padding-top: 34px;
  padding-bottom: 34px;
  background: var(--navy);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.stats-grid div {
  min-height: 148px;
  padding: 28px;
  background: var(--navy);
}

.stats-grid strong {
  display: block;
  color: var(--gold);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.stats-grid span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.service-card {
  min-height: 278px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 30px rgba(7, 23, 47, 0.05);
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 143, 138, 0.12);
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
}

.value-section {
  background:
    linear-gradient(135deg, rgba(0, 143, 138, 0.08), rgba(235, 106, 74, 0.08)),
    var(--paper);
}

.value-list {
  display: grid;
  gap: 16px;
}

.value-list div {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.value-list span {
  width: 14px;
  height: 14px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 6px rgba(235, 106, 74, 0.12);
}

.value-list p {
  margin: 0;
  color: var(--navy);
  font-weight: 800;
}

.coverage {
  background: var(--white);
}

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

.country-list li {
  padding: 16px 18px;
  border-left: 4px solid var(--blue);
  background: var(--paper);
  color: var(--navy);
  font-weight: 800;
}

.cta-section {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #0b2b42 58%, #173326);
}

.cta-section h2 {
  color: var(--white);
}

.cta-section .eyebrow {
  color: #70e2de;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-card {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-style: normal;
}

.contact-card strong {
  font-size: 1.3rem;
}

.contact-card a {
  color: #b6fffb;
  font-weight: 800;
}

.site-footer {
  padding: 28px clamp(20px, 5vw, 72px);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer-inner img {
  width: 132px;
}

.legal {
  display: grid;
  gap: 4px;
  justify-items: end;
  color: var(--muted);
  font-size: 0.92rem;
}

.legal p {
  margin: 0;
}

.legal button {
  padding: 0;
  border: 0;
  color: var(--blue);
  background: transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.legal-dialog {
  width: min(720px, calc(100% - 32px));
  border: 0;
  border-radius: 8px;
  padding: 0;
  box-shadow: var(--shadow);
}

.legal-dialog::backdrop {
  background: rgba(7, 23, 47, 0.62);
}

.legal-dialog-inner {
  position: relative;
  padding: 34px;
}

.legal-dialog h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}

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

.dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--navy);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
    min-height: 76px;
  }

  .brand img {
    width: 136px;
  }

  .main-nav {
    display: none;
  }

  .header-actions {
    justify-content: flex-end;
  }

  .header-actions .btn {
    display: none;
  }

  .hero {
    min-height: 760px;
    padding-top: 112px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(7, 23, 47, 0.94) 0%, rgba(7, 23, 47, 0.74) 54%, rgba(7, 23, 47, 0.25) 100%),
      linear-gradient(180deg, rgba(7, 23, 47, 0) 0%, rgba(255, 255, 255, 0.82) 100%);
  }

  .intro-grid,
  .coverage-grid,
  .cta-grid,
  .value-grid,
  .stats-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .hero {
    min-height: 720px;
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 4rem);
  }

  .hero-actions,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

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

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal {
    justify-items: start;
  }
}
