:root {
  --navy: #0a2540;
  --navy-2: #12324f;
  --navy-3: #0b3a5c;
  --blue: #0072bc;
  --blue-deep: #005a96;
  --blue-soft: #e8f3fa;
  --orange: #c45e12;
  --orange-2: #a34c0e;
  --text: #f4f8fb;
  --muted: #5d6d7c;
  --ink: #0a2540;
  --paper: #f5f8fb;
  --white: #ffffff;
  --line: #d7e3ee;
  --shadow: 0 16px 36px rgba(10, 37, 64, 0.1);
  --font-d: "Sora", sans-serif;
  --font-b: "IBM Plex Sans", sans-serif;
  --header: 88px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-b);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-d); font-weight: 500; line-height: 1.15; margin: 0 0 0.6em; }
h1 { font-size: clamp(34px, 5vw, 64px); letter-spacing: -0.02em; }
h2 { font-size: clamp(28px, 3.4vw, 44px); }
h3 { font-size: 22px; }
p { margin: 0 0 1em; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(820px, 100%); }

.kicker {
  display: inline-block;
  color: var(--blue);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}
.kicker.dark { color: var(--blue); }
.lead { font-size: 19px; line-height: 1.5; max-width: 760px; }
.muted { color: var(--muted); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  border: 0;
  cursor: pointer;
  transition: 0.2s ease;
}
.btn-accent { background: var(--blue); color: #fff; }
.btn-accent:hover { background: var(--blue-deep); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.55); }
.btn-ghost:hover { background: #fff; color: var(--navy); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-3); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(10, 37, 64, 0.06);
}
.site-header::before {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--blue));
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: var(--header);
}
.logo {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 4px 0;
}
.logo img { height: 52px; width: auto; }
.nav { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav-item { position: relative; }
.nav-item > a {
  display: block;
  padding: 10px 11px;
  color: var(--navy);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}
.nav-item.is-active > a,
.nav-item > a:hover { color: var(--blue); }
.nav-sub {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #fff;
  padding: 10px 0;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.nav-item:hover .nav-sub,
.nav-item:focus-within .nav-sub { display: block; }
.nav-sub a {
  display: block;
  padding: 10px 16px;
  text-decoration: none;
  color: var(--ink);
  font-size: 14px;
}
.nav-sub a:hover { background: var(--blue-soft); color: var(--blue); }
.header-actions { display: flex; align-items: center; gap: 16px; }
.lang-switch { color: var(--navy); font-size: 13px; font-weight: 600; letter-spacing: 0.04em; }
.lang-switch a { color: #7a8b99; text-decoration: none; }
.lang-switch a.is-active { color: var(--navy); }
.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  background: transparent; border: 0; cursor: pointer;
}
.menu-toggle span {
  display: block; width: 20px; height: 2px; background: var(--navy); margin: 5px auto;
}

.hero, .page-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  color: var(--text);
  overflow: hidden;
}
.page-hero { min-height: 52vh; padding: 80px 0 64px; }
.page-hero.compact { min-height: 40vh; }
.hero-media, .page-hero-media {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.04);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,37,64,.58) 0%, rgba(10,37,64,.78) 100%);
}
.hero-content, .page-hero .container { position: relative; z-index: 1; padding: 110px 0 80px; }
.hero-text { max-width: 760px; color: rgba(244,248,251,.9); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }

.section { padding: 88px 0; }
.section-dark { background: var(--navy); color: var(--text); }
.section-alt { background: var(--paper); }
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.split-visual { display: grid; gap: 16px; }
.split-visual img, .split-visual.single img {
  width: 100%; height: 280px; object-fit: cover; border-radius: 10px;
}
.motto {
  font-family: var(--font-d);
  font-size: 22px;
  color: #8ec8ee;
  margin-top: 18px;
}

.split-cards, .card-grid, .feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.feature-grid { grid-template-columns: repeat(3, 1fr); }
.split-card, .media-card, .text-card, .feature-card, .pill-card, .contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 24px rgba(10, 37, 64, 0.04);
  transition: transform .2s ease, box-shadow .2s ease;
}
.split-card:hover, .media-card:hover, .pill-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.split-card img, .media-card-img img {
  width: 100%; height: 240px; object-fit: cover;
}
.split-card div, .media-card-body, .text-card, .feature-card, .pill-card, .contact-card {
  padding: 24px;
}
.feature-num, .text-card .feature-num {
  color: var(--blue);
  font-family: var(--font-d);
  font-size: 13px;
  letter-spacing: 0.12em;
}
.link-arrow {
  display: inline-flex;
  margin-top: 12px;
  color: var(--blue);
  font-weight: 600;
  font-size: 14px;
}
.link-arrow::after { content: " →"; }

.chip-grid {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px;
}
.chip {
  padding: 10px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
}
.chip:hover { border-color: var(--blue); color: var(--blue); }

.proof-bar { background: var(--navy-2); color: #fff; padding: 36px 0; }
.proof-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: center;
}
.proof-grid strong { display: block; font-family: var(--font-d); font-size: 22px; }
.proof-grid span { color: rgba(255,255,255,.8); font-size: 14px; }

.cta-banner {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 88px 0;
}
.cta-banner p { max-width: 720px; margin: 0 auto 24px; color: rgba(244,248,251,.88); }

.site-footer {
  background: var(--navy);
  color: #fff;
  padding: 56px 0 24px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; }
.footer-logo {
  display: inline-flex;
  background: #fff;
  border-radius: 8px;
  padding: 8px 12px;
  margin-bottom: 12px;
}
.footer-logo img { height: 44px; }
.footer-tag { font-weight: 600; }
.site-footer a { display: block; text-decoration: none; color: rgba(255,255,255,.9); margin: 6px 0; font-size: 14px; }
.site-footer h3 { font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: #9fd0ee; }
.footer-mail span { display: block; color: #9fd0ee; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 16px;
  margin-top: 36px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.18);
  font-size: 13px;
}
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { margin: 0; }

.rfq-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 40px; }
.rfq-form, .rfq-form-wrap { background: var(--paper); padding: 28px; border-radius: 12px; }
.rfq-form { display: grid; gap: 14px; }
.rfq-form label { display: grid; gap: 6px; font-size: 13px; font-weight: 500; }
.rfq-form input, .rfq-form select, .rfq-form textarea {
  width: 100%; padding: 12px 12px; border: 1px solid var(--line); border-radius: 6px;
  font: inherit; background: #fff;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.urgent-note { color: var(--blue); font-weight: 600; }
.alert { padding: 14px 16px; border-radius: 8px; margin-bottom: 16px; }
.alert.success { background: #def4f0; color: #008361; }
.alert.error { background: #ffe8ef; color: #d63163; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.legal-page { padding-top: 72px; }
.lead.dark { color: #445064; }
.center { text-align: center; }
.center-actions { justify-content: center; }
.about-pills { display: grid; gap: 16px; }

.cookie-bar {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 50;
  background: var(--navy); color: #fff; border-radius: 12px;
  padding: 16px 18px; display: flex; justify-content: space-between; gap: 16px; align-items: center;
  box-shadow: var(--shadow);
}
.cookie-bar[hidden] { display: none !important; }
.cookie-bar p { margin: 0; }
.cookie-bar a { color: #9fd0ee; }

body.nav-open { overflow: hidden; }

@media (max-width: 980px) {
  .nav {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 12px 20px 24px;
    flex-direction: column; align-items: stretch;
    box-shadow: var(--shadow);
  }
  body.nav-open .nav { display: flex; }
  .nav-item { position: static; }
  .nav-sub { position: static; display: block; background: transparent; box-shadow: none; border: 0; padding-left: 8px; }
  .nav-sub a { color: var(--navy); }
  .menu-toggle { display: inline-block; }
  .header-cta { display: none; }
  .split, .split-cards, .card-grid, .feature-grid, .footer-grid, .rfq-layout, .contact-grid, .proof-grid {
    grid-template-columns: 1fr;
  }
  .form-row { grid-template-columns: 1fr; }
  .hero, .page-hero { min-height: auto; }
  .cookie-bar { flex-direction: column; align-items: flex-start; }
  .logo img { height: 42px; }
}
