:root {
  --blue: #006ab6;
  --blue-deep: #063d67;
  --blue-dark: #092b45;
  --red: #e4312b;
  --ink: #132333;
  --muted: #667785;
  --line: #dfe7ec;
  --bg: #f5f8fa;
  --white: #ffffff;
  --max: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

a { color: inherit; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(13,55,83,.08);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  height: 84px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  margin-right: auto;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
}

.brand-main {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: .4px;
  color: var(--blue);
}

.brand-i { color: var(--red); }

.brand-sub {
  margin-top: 7px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--blue-dark);
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  color: #314657;
}

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

.lang-btn {
  border: 1px solid #cbd7df;
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
  cursor: pointer;
  color: var(--blue-dark);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 86px;
  background:
    radial-gradient(circle at 82% 18%, rgba(0,106,182,.13), transparent 27%),
    linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -150px;
  width: 430px;
  height: 430px;
  border: 42px solid rgba(0,106,182,.05);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.45fr .75fr;
  gap: 70px;
  align-items: center;
}

.eyebrow,
.section-label {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.4px;
}

.hero h1 {
  max-width: 780px;
  margin: 18px 0 24px;
  font-size: clamp(44px, 5.4vw, 74px);
  line-height: 1.03;
  letter-spacing: -2.7px;
}

.hero-text {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-block;
  padding: 13px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.btn.primary {
  background: var(--blue);
  color: #fff;
}

.btn.primary:hover { background: #005b9d; }

.btn.secondary {
  border: 1px solid #cbd7df;
  background: #fff;
  color: var(--blue-dark);
}

.hero-panel {
  position: relative;
  min-height: 330px;
  padding: 42px 36px;
  overflow: hidden;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(145deg, #073f69, #006ab6);
  box-shadow: 0 25px 60px rgba(0,58,99,.16);
}

.hero-panel::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  right: -180px;
  top: -130px;
}

.wave-mark {
  height: 66px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-bottom: 34px;
}

.wave-mark span {
  display: block;
  width: 58px;
  border-radius: 50% 50% 0 0;
  border-top: 5px solid rgba(255,255,255,.95);
}

.wave-mark span:nth-child(1) { height: 24px; }
.wave-mark span:nth-child(2) { height: 39px; }
.wave-mark span:nth-child(3) { height: 55px; }

.panel-title {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 1px;
}

.panel-line {
  width: 44px;
  height: 4px;
  margin: 14px 0 18px;
  background: var(--red);
}

.hero-panel p {
  max-width: 280px;
  color: rgba(255,255,255,.8);
}

.panel-countries {
  display: flex;
  gap: 10px;
  margin-top: 32px;
}

.panel-countries span {
  padding: 6px 9px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
}

.section {
  padding: 92px 0;
}

.section.alt { background: var(--bg); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.section h2,
.contact-section h2 {
  margin: 13px 0 0;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.12;
  letter-spacing: -1.6px;
}

.about-copy {
  color: var(--muted);
  font-size: 17px;
}

.about-copy p:first-child { margin-top: 0; }

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

.section-head p {
  margin: 0 0 8px;
  color: var(--muted);
}

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

.card {
  min-height: 290px;
  padding: 30px 26px;
  background: #fff;
  border: 1px solid #e2e9ee;
  border-radius: 14px;
  transition: .2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(18,54,78,.08);
}

.card-number {
  margin-bottom: 34px;
  color: var(--blue);
  font-weight: 900;
  font-size: 13px;
}

.card h3 {
  margin: 0 0 14px;
  font-size: 21px;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 42px;
}

.market {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-top: 2px solid var(--ink);
}

.market-code {
  color: var(--blue);
  font-weight: 900;
}

.market h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.market p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-section {
  padding: 90px 0;
  background: var(--blue-dark);
  color: #fff;
}

.section-label.light { color: #84c9f8; }

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
}

.contact-intro {
  max-width: 430px;
  color: rgba(255,255,255,.68);
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-card {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  background: rgba(255,255,255,.05);
}

.contact-title {
  margin-bottom: 18px;
  color: #84c9f8;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.7px;
}

.contact-card p {
  color: rgba(255,255,255,.72);
  font-size: 14px;
}

.contact-card a {
  color: #fff;
  text-decoration: none;
}

.contact-card a:hover { text-decoration: underline; }

.footer {
  background: #061e30;
  color: rgba(255,255,255,.52);
  font-size: 12px;
}

.footer-row {
  min-height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-brand {
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

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

@media (max-width: 900px) {
  .nav { display: none; }
  .hero { padding: 72px 0; }
  .hero-grid,
  .two-col,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cards { grid-template-columns: 1fr 1fr; }
  .market-grid { grid-template-columns: 1fr; gap: 5px; }
  .contact-cards { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .nav-wrap { height: 72px; }
  .brand-main { font-size: 20px; }
  .hero { padding-top: 56px; }
  .hero h1 { letter-spacing: -1.7px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { text-align: center; }
  .cards { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .section-head { display: block; }
  .section-head p { margin-top: 14px; }
  .hero-panel { min-height: 280px; }
  .footer-row {
    padding: 20px 0;
    flex-direction: column;
    justify-content: center;
  }
}
