:root {
  --ink: #10242c;
  --muted: #64747a;
  --line: #d9e4e6;
  --sea: #006f7c;
  --deep-sea: #07323a;
  --green: #2f7650;
  --gold: #bf8f2f;
  --paper: #f5f8f7;
  --soft: #eef5f2;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(16, 36, 44, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(217, 228, 230, 0.78);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
}

.nav {
  width: min(1160px, calc(100% - 36px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: grid;
  gap: 0;
  font-weight: 900;
  letter-spacing: 0;
  font-size: 1.02rem;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background:
    radial-gradient(circle at 56% 38%, rgba(255, 255, 255, 0.92), rgba(107, 165, 195, 0.42) 33%, rgba(7, 50, 58, 0.95) 68%),
    var(--deep-sea);
  box-shadow: 0 8px 22px rgba(16, 36, 44, 0.12);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
}

.brand-mark::before {
  width: 54px;
  height: 20px;
  transform: rotate(-24deg);
  border-color: #f8fbfb;
  box-shadow: 0 0 0 1px rgba(13, 99, 204, 0.38);
}

.brand-mark::after {
  width: 36px;
  height: 44px;
  transform: rotate(26deg);
  border-color: rgba(13, 99, 204, 0.9);
}

.brand-words {
  display: grid;
  gap: 2px;
}

.brand-words strong {
  color: var(--deep-sea);
  font-size: 1.02rem;
  line-height: 1;
}

.brand small {
  color: var(--sea);
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #29424d;
  font-size: 0.94rem;
}

.navlinks a {
  font-weight: 750;
}

.nav-cta {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 6px;
  color: var(--white);
  background: var(--deep-sea);
}

.lang {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.lang a {
  min-width: 48px;
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
}

.flag {
  display: inline-block;
  margin-right: 4px;
  font-size: 0.95rem;
  line-height: 1;
  vertical-align: -1px;
}

.lang a.active {
  color: var(--white);
  background: var(--sea);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: var(--white);
  background: var(--sea);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(11, 107, 120, 0.2);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(11, 107, 120, 0.22);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

.button.gold {
  background: var(--gold);
  box-shadow: 0 10px 24px rgba(199, 154, 53, 0.2);
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(6, 26, 33, 0.96), rgba(6, 39, 49, 0.82) 48%, rgba(6, 39, 49, 0.35)),
    url("https://images.unsplash.com/photo-1566576721346-d4a3b4eaeb55?auto=format&fit=crop&w=2200&q=80") center / cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 78% 20%, rgba(191, 143, 47, 0.18), transparent 34%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 90px;
  background: linear-gradient(0deg, var(--paper), rgba(245, 248, 247, 0));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 50px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 52px;
  align-items: center;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d8f2ef;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--gold);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-top: 18px;
  font-size: clamp(2.55rem, 4.6vw, 4.15rem);
  line-height: 1;
}

.hero p {
  max-width: 680px;
  margin: 20px 0 0;
  color: #edf6f3;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 18px;
  background: rgba(6, 24, 31, 0.64);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.panel-kicker {
  color: #d8f2ef;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.route-card {
  position: relative;
  display: grid;
  gap: 5px;
  margin-top: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.09);
}

.route-card::after {
  content: "";
  position: absolute;
  top: 28px;
  right: 20px;
  width: 54px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(255, 255, 255, 0.15));
}

.route-card span,
.route-card small {
  color: #cfdddb;
}

.route-card strong {
  font-size: 1.32rem;
  line-height: 1;
}

.muted-route {
  background: rgba(255, 255, 255, 0.045);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-stats,
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

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

.path-card {
  position: relative;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 8px;
  padding: 28px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(6, 26, 33, 0.2), rgba(6, 26, 33, 0.9)),
    url("https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=1400&q=80") center / cover;
  box-shadow: var(--shadow);
}

.path-card.primary-path {
  background:
    linear-gradient(180deg, rgba(6, 26, 33, 0.16), rgba(6, 26, 33, 0.9)),
    url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1400&q=80") center / cover;
}

.path-label {
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #f4efe1;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.path-card h3 {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.path-card p {
  max-width: 560px;
  margin: 12px 0 0;
  color: #e5efec;
}

.path-card a {
  align-self: flex-start;
  margin-top: 22px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
  font-weight: 900;
}

.hero-stats {
  max-width: 850px;
  margin-top: 56px;
}

.stat {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.stat strong {
  display: block;
  font-size: 1.35rem;
}

.stat span {
  color: #d8e6e5;
  font-size: 0.88rem;
}

.proof-strip {
  position: relative;
  z-index: 2;
  padding: 0;
  margin-top: -38px;
}

.proof-grid {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.proof-grid div {
  padding: 8px 14px;
  border-right: 1px solid var(--line);
}

.proof-grid div:last-child {
  border-right: 0;
}

.proof-grid strong {
  display: block;
  color: var(--deep-sea);
  font-size: 1.26rem;
  line-height: 1.1;
}

.proof-grid span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.88rem;
}

section {
  padding: 96px 0;
}

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

.section-title {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-bottom: 34px;
}

.section-title.center {
  margin-inline: auto;
  text-align: center;
}

.section-title h2 {
  font-size: clamp(2.05rem, 4vw, 3.25rem);
}

.section-title p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(16, 36, 44, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 111, 124, 0.28);
  box-shadow: 0 18px 48px rgba(16, 36, 44, 0.1);
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: var(--deep-sea);
}

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

.band {
  background: linear-gradient(180deg, var(--white), #f9fbfa);
}

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

.visual {
  min-height: 500px;
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(16, 33, 43, 0.08), rgba(16, 33, 43, 0.18)),
    url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1500&q=80") center / cover;
  box-shadow: var(--shadow);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.pill {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #29424d;
  background: #fbfdfc;
  font-weight: 700;
  font-size: 0.9rem;
}

.process {
  counter-reset: step;
}

.process .card {
  position: relative;
  padding-top: 58px;
}

.process .card::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: 22px;
  left: 24px;
  color: var(--gold);
  font-weight: 900;
}

.highlight {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 50, 58, 0.97), rgba(20, 88, 75, 0.92)),
    url("https://images.unsplash.com/photo-1494412574643-ff11b0a5c1c3?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.highlight p {
  color: #e4f2ee;
}

.highlight .card {
  background: rgba(255, 255, 255, 0.97);
  color: var(--ink);
}

.highlight .card h3 {
  color: var(--deep-sea);
}

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

.contact {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 28px;
  align-items: start;
}

.contact-panel {
  border-radius: 8px;
  padding: 34px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(16, 36, 44, 0.98), rgba(0, 111, 124, 0.88)),
    url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1200&q=80") center / cover;
  box-shadow: var(--shadow);
}

.contact-panel p {
  color: #d8e1e5;
}

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

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

form {
  display: grid;
  gap: 14px;
}

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

label {
  display: grid;
  gap: 7px;
  color: #29424d;
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fbfdfc;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(0, 111, 124, 0.16);
  border-color: rgba(0, 111, 124, 0.5);
}

textarea {
  min-height: 128px;
  resize: vertical;
}

.footer {
  padding: 42px 0;
  color: #d8e1e5;
  background: #07171d;
}

.footer-grid {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
}

.footer h3,
.footer h4 {
  margin: 0 0 10px;
  color: var(--white);
}

.footer p {
  margin: 0;
  color: #aebdc2;
}

.footer a {
  display: block;
  color: #d8e1e5;
  margin-top: 6px;
}

@media (max-width: 900px) {
  .nav {
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
  }

  .brand-lockup {
    gap: 8px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-words strong {
    font-size: 0.88rem;
  }

  .brand small {
    font-size: 0.66rem;
  }

  .navlinks {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 74px 0 104px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-panel {
    max-width: 520px;
  }

  .hero-stats,
  .proof-grid,
  .service-paths,
  .grid.three,
  .grid.four,
  .grid.two,
  .split,
  .contact,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .proof-grid div:last-child {
    border-bottom: 0;
  }

  .visual {
    min-height: 340px;
  }

  section {
    padding: 62px 0;
  }
}

@media (max-width: 560px) {
  .nav {
    width: min(100% - 24px, 1160px);
  }

  .brand {
    font-size: 0.92rem;
  }

  .lang {
    gap: 2px;
  }

  .lang a {
    min-width: 42px;
    padding-inline: 5px;
  }

  .hero-inner,
  .section-inner,
  .footer-grid {
    width: min(100% - 24px, 1160px);
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.4rem);
  }

  .hero-stats,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}
