:root {
  --navy: #071a33;
  --navy-mid: #0c2a4d;
  --ink: #122033;
  --muted: #5b6b7c;
  --line: #dbe4ee;
  --paper: #f3f7fb;
  --white: #ffffff;
  --teal: #0cbaa4;
  --teal-dark: #089887;
  --blue: #1b5aa8;
  --gold: #c9a24a;
  --danger: #c0392b;
  --shadow: 0 18px 50px rgba(7, 26, 51, 0.12);
  --radius: 18px;
  --header-h: 84px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --display: "Fraunces", Georgia, serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

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

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
}
.skip:focus { left: 8px; background: #fff; padding: 8px 12px; z-index: 99; }

/* Top bar */
.topbar {
  background: var(--navy);
  color: #d7e4f2;
  font-size: 13px;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.topbar a { color: #fff; }
.topbar a:hover { color: var(--teal); }
.topbar-left, .topbar-right {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}
.topbar .dot { opacity: .45; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header.is-scrolled { box-shadow: 0 8px 30px rgba(7,26,51,.08); }

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand img {
  height: 56px;
  width: auto;
}
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav > li { position: relative; }
.nav > li > a,
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  border-radius: 10px;
}
.nav > li > a:hover,
.nav > li.active > a { color: var(--teal-dark); background: #eafaf7; }
.nav-cta {
  background: var(--navy);
  color: #fff !important;
  padding-inline: 16px;
  margin-left: 8px;
}
.nav-cta:hover { background: var(--teal-dark); }

.dropdown {
  position: absolute;
  top: calc(100% - 4px);
  left: 0;
  min-width: 250px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 10px;
  display: none;
}
.nav > li:hover > .dropdown,
.nav > li:focus-within > .dropdown { display: grid; }
.dropdown a {
  display: block;
  padding: 9px 12px;
  border-radius: 9px;
  font-size: 14px;
  color: var(--ink);
}
.dropdown a:hover { background: var(--paper); color: var(--teal-dark); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  margin: 4px auto;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(86vh, 760px);
  display: grid;
  align-items: end;
  color: #fff;
  background: var(--navy) center/cover no-repeat;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(7,26,51,.88) 0%, rgba(7,26,51,.55) 48%, rgba(12,186,164,.18) 100%);
  z-index: -1;
}
.hero-inner {
  padding: 90px 0 70px;
  max-width: 760px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 16px;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.08;
  margin: 0 0 18px;
  font-weight: 600;
}
.hero p.lead {
  font-size: 18px;
  color: #dbe7f3;
  max-width: 58ch;
  margin-bottom: 28px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 700;
  font-size: 14px;
  border: 0;
  cursor: pointer;
  transition: .2s ease;
}
.btn-primary { background: var(--teal); color: var(--navy); }
.btn-primary:hover { background: #2fe0c8; transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--blue); }
.btn-outline {
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--line);
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal-dark); }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: -42px;
  position: relative;
  z-index: 2;
}
.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow);
}
.stat b {
  display: block;
  font-family: var(--display);
  font-size: 30px;
  color: var(--navy);
  line-height: 1.1;
}
.stat span { color: var(--muted); font-size: 13px; font-weight: 600; }

/* Sections */
section { padding: 84px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.kicker {
  color: var(--teal-dark);
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
  margin: 0 0 8px;
}
h2 {
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.15;
  margin: 0;
  color: var(--navy);
  font-weight: 600;
}
.muted { color: var(--muted); }

.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.product-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  transition: .2s ease;
  overflow: hidden;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: #b9efe6;
  box-shadow: var(--shadow);
  background: #fff;
}
.product-card > img {
  width: calc(100% + 44px);
  max-width: none;
  height: 128px;
  object-fit: cover;
  margin: -22px -22px 16px;
  border-radius: 19px 19px 0 0;
}
.icon-blob {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: #dff8f3;
  color: var(--teal-dark);
  margin-bottom: 16px;
}
.product-card h3 { margin: 0 0 8px; font-size: 18px; color: var(--navy); }
.product-card p { margin: 0 0 16px; color: var(--muted); font-size: 14px; flex: 1; }
.more { color: var(--teal-dark); font-weight: 700; font-size: 14px; }

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}
.split img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 28px;
}
.checks { margin: 18px 0 28px; }
.checks li {
  display: flex;
  gap: 10px;
  margin: 10px 0;
  font-weight: 600;
}
.checks svg { color: var(--teal-dark); flex-shrink: 0; margin-top: 3px; }

.band {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.band::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 280px;
  height: 280px;
  border: 28px solid rgba(12,186,164,.18);
  border-radius: 40px;
  transform: rotate(22deg);
}
.band h2, .band .kicker { color: #fff; }
.band .kicker { color: var(--teal); }
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.pillar {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 24px;
}
.pillar h3 { margin: 0 0 10px; font-size: 20px; }
.pillar p { margin: 0; color: #c9d7e6; }

.news-grid, .media-grid, .leader-grid, .glance {
  display: grid;
  gap: 18px;
}
.news-grid { grid-template-columns: repeat(3, 1fr); }
.card {
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.card img { height: 190px; width: 100%; object-fit: cover; }
.card-body { padding: 18px 18px 22px; }
.card-body h3 { margin: 0 0 8px; font-size: 18px; color: var(--navy); }
.card-body p { margin: 0; color: var(--muted); font-size: 14px; }

.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.gallery a {
  display: block;
  overflow: hidden;
  border-radius: 14px;
  height: 150px;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .35s ease;
}
.gallery a:hover img { transform: scale(1.06); }

.partners {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  align-items: center;
}
.partner {
  height: 84px;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: grid;
  place-items: center;
  padding: 10px;
  background: #fff;
}
.partner img { max-height: 52px; max-width: 100%; object-fit: contain; }

.cta-bar {
  background:
    linear-gradient(120deg, rgba(7,26,51,.88), rgba(12,42,77,.72)),
    url("../img/banners/hero6.jpg") center/cover;
  color: #fff;
  border-radius: 28px;
  padding: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.cta-bar h2 { color: #fff; }

/* Page hero */
.page-hero {
  background:
    linear-gradient(120deg, rgba(7,26,51,.86), rgba(7,26,51,.55)),
    url("../img/banners/hero5.jpg") center/cover;
  color: #fff;
  padding: 72px 0 56px;
}
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(32px, 4.4vw, 52px);
  margin: 8px 0 10px;
}
.crumbs { font-size: 13px; color: #c9d7e6; }
.crumbs a:hover { color: var(--teal); }

.prose { max-width: 78ch; }
.prose p { color: #334155; }
.quote {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.45;
  color: var(--navy);
  border-left: 4px solid var(--teal);
  padding-left: 18px;
  margin: 0 0 22px;
}

.leader-grid { grid-template-columns: repeat(3, 1fr); }
.leader {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  background: #fff;
}
.avatar {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(160deg, var(--navy), var(--teal));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 14px;
}
.leader h3 { margin: 0 0 4px; font-size: 18px; color: var(--navy); }
.role { color: var(--teal-dark); font-weight: 700; font-size: 13px; margin-bottom: 10px; }
.leader p { margin: 0; color: var(--muted); font-size: 14px; }

.glance { grid-template-columns: repeat(2, 1fr); }
.glance div {
  background: var(--paper);
  border-radius: 16px;
  padding: 16px 18px;
}
.glance b { display: block; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.glance span { font-weight: 700; color: var(--navy); }

.toolbar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.toolbar input, .toolbar select {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 14px;
  min-width: 220px;
  background: #fff;
}
.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
th, td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
th { background: var(--navy); color: #fff; font-weight: 600; }
tr:hover td { background: #f7fbfa; }

.tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
.tab {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 9px 16px;
  cursor: pointer;
  font-weight: 700;
  font-size: 13px;
}
.tab.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.doc-list { display: grid; gap: 10px; }
.doc {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  background: #fff;
}
.doc strong { display: block; color: var(--navy); }
.doc small { color: var(--muted); }
.panel { display: none; }
.panel.active { display: block; }

.form {
  display: grid;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
}
.form label { font-size: 13px; font-weight: 700; color: var(--navy); }
.form input, .form textarea, .form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
}
.form textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: 13px; color: var(--muted); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 28px;
}
.info-card {
  background: var(--navy);
  color: #fff;
  border-radius: 22px;
  padding: 28px;
}
.info-card h3 { margin-top: 0; }
.info-card a { color: var(--teal); }
.info-card p { color: #c9d7e6; }

.media-grid { grid-template-columns: repeat(3, 1fr); }
.video {
  aspect-ratio: 16/9;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.video iframe { width: 100%; height: 100%; border: 0; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(7,26,51,.88);
  display: none;
  place-items: center;
  z-index: 80;
  padding: 24px;
}
.lightbox.open { display: grid; }
.lightbox img { max-height: 86vh; max-width: 92vw; border-radius: 12px; }

.float-hotline {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  background: var(--teal);
  color: var(--navy);
  font-weight: 800;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}
.float-hotline:hover { background: #2fe0c8; }

footer {
  background: var(--navy);
  color: #c9d7e6;
  padding: 56px 0 0;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr .9fr .9fr 1fr;
  gap: 28px;
  padding-bottom: 36px;
}
footer h4 { color: #fff; margin: 0 0 14px; font-size: 16px; }
footer a:hover { color: var(--teal); }
.foot-brand img { height: 54px; margin-bottom: 12px; background: #fff; border-radius: 8px; padding: 4px 8px; }
.legal {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.mission-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  background: #fff;
}
.mission-card.wide { grid-column: 1 / -1; }
.mission-card ul { padding-left: 18px; list-style: disc; color: var(--muted); }
.mission-card li { margin: 6px 0; }

.claim-list { columns: 2; gap: 24px; padding-left: 18px; list-style: disc; color: var(--muted); }
.claim-list li { break-inside: avoid; margin: 6px 0; }

@media (max-width: 1140px) {
  .brand img { height: 42px; }
  .nav > li > a { font-size: 13px; padding-inline: 8px; }
}

@media (max-width: 980px) {
  .menu-toggle { display: inline-block; }
  .nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 10px 16px 18px;
  }
  .header.open .nav { display: flex; }
  .dropdown { position: static; display: none; box-shadow: none; border: 0; padding: 0 0 0 12px; }
  .nav > li.open > .dropdown { display: grid; }
  .nav-cta { margin: 8px 0 0; justify-content: center; }
  .stats, .products, .news-grid, .leader-grid, .media-grid { grid-template-columns: 1fr 1fr; }
  .split, .contact-grid, .mission-grid, .pillars, .foot-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .partners { grid-template-columns: repeat(3, 1fr); }
  .claim-list { columns: 1; }
  .cta-bar, .split img { height: auto; }
  .brand img { height: 46px; }
}

@media (max-width: 640px) {
  .container { width: min(1180px, calc(100% - 28px)); }
  section { padding: 58px 0; }
  .stats, .products, .news-grid, .leader-grid, .media-grid, .glance { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .partners { grid-template-columns: 1fr 1fr; }
  .cta-bar { padding: 28px; flex-direction: column; align-items: flex-start; }
  .hero { min-height: 92vh; }
  .topbar { display: none; }
}
