:root {
  --ink: #0b1f3a;
  --ink-2: #1c2430;
  --muted: #657386;
  --line: #dfe6ee;
  --bg: #f5f7fa;
  --card: #ffffff;
  --blue: #1e6bff;
  --blue-dark: #1933b3;
  --green: #2fa36b;
  --green-soft: #eaf7f0;
  --shadow: 0 24px 60px rgba(11, 31, 58, 0.11);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink-2);
  background: #fff;
  font-size: 17px;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(223,230,238,0.9);
}
.navbar {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 76px;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
  white-space: nowrap;
}
.brand img { height: 42px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  padding: 9px 12px;
  border-radius: 999px;
  transition: all .18s ease;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--ink);
  color: #fff;
}
.nav-links .contact-pill {
  background: var(--green);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}
.hero picture,
.hero .hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(6,18,34,.88), rgba(6,18,34,.58) 48%, rgba(6,18,34,.2));
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max);
  padding: 90px 22px 96px;
}
.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #bce8ce;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 32px; height: 2px; background: var(--green); }
.hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(42px, 7vw, 82px);
  line-height: .96;
  letter-spacing: -0.065em;
}
.hero p {
  max-width: 700px;
  margin: 24px 0 0;
  font-size: clamp(18px, 2vw, 22px);
  color: rgba(255,255,255,.86);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 14px 34px rgba(47,163,107,.3); }
.btn-secondary { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.34); }

.section { padding: 82px 22px; }
.section.alt { background: var(--bg); }
.container { max-width: var(--max); margin: 0 auto; }
.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}
.section-kicker {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 8px;
}
h2 {
  color: var(--ink);
  margin: 0;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}
h3 { color: var(--ink); margin: 0 0 10px; font-size: 23px; line-height: 1.2; letter-spacing: -0.025em; }
p { margin-top: 0; }
.lede { font-size: 20px; color: var(--muted); }
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 12px 30px rgba(11,31,58,.05);
}
.card.highlight { border-color: rgba(47,163,107,.35); background: linear-gradient(180deg, #fff, var(--green-soft)); }
.card-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
  margin-bottom: 18px;
}
.stat-card { padding: 28px; border-radius: var(--radius); background: var(--ink); color: #fff; }
.stat-card strong { display: block; font-size: 38px; line-height: 1; letter-spacing: -0.06em; margin-bottom: 8px; }
.stat-card span { color: rgba(255,255,255,.72); }
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center; }
.media-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}
.media-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.caption { padding: 14px 18px; color: var(--muted); font-size: 14px; }
.check-list { padding-left: 0; list-style: none; margin: 16px 0 0; }
.check-list li { position: relative; padding-left: 30px; margin: 9px 0; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 4px #dff4e8;
}
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.tag { padding: 8px 12px; border-radius: 999px; background: #edf3fb; color: var(--ink); font-weight: 800; font-size: 13px; }
.quote {
  border-left: 4px solid var(--green);
  padding: 8px 0 8px 24px;
  font-size: 22px;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.025em;
}
.news-list { display: grid; gap: 12px; }
.news-item {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  text-decoration: none;
  font-weight: 750;
}
.news-item:hover { border-color: rgba(30,107,255,.38); box-shadow: 0 12px 28px rgba(11,31,58,.08); }
.logo-row { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.logo-row a { display: grid; place-items: center; width: 150px; height: 92px; border-radius: 18px; border: 1px solid var(--line); background: #fff; padding: 16px; }
.logo-row img { max-height: 56px; object-fit: contain; }
.gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.gallery img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 18px; }

.footer {
  background: #061222;
  color: #fff;
  padding: 62px 22px 34px;
}
.footer a { color: #fff; text-decoration: none; }
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: 28px; }
.footer h3 { color: #fff; }
.footer h4 { margin: 0 0 10px; color: rgba(255,255,255,.92); }
.footer p, .footer address { color: rgba(255,255,255,.72); font-style: normal; margin: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); margin-top: 36px; padding-top: 20px; color: rgba(255,255,255,.58); font-size: 14px; }

@media (max-width: 900px) {
  .navbar { align-items: flex-start; flex-direction: column; gap: 12px; }
  .nav-links { justify-content: flex-start; }
  .hero { min-height: 560px; }
  .grid-2, .grid-3, .grid-4, .split, .footer-grid, .gallery { grid-template-columns: 1fr; }
  .section { padding: 60px 18px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .brand span { display: none; }
  .nav-links a { font-size: 13px; padding: 8px 10px; }
  .hero-content { padding: 72px 18px; }
  .card { padding: 22px; }
}


/* News article pages */
.article-hero {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}
.article-hero-bg { position:absolute; inset:0; }
.article-hero-bg img { width:100%; height:100%; object-fit:cover; opacity:.42; filter: saturate(.9); }
.article-hero::after { content:""; position:absolute; inset:0; background: linear-gradient(105deg, rgba(6,18,34,.92), rgba(6,18,34,.68) 58%, rgba(6,18,34,.32)); }
.article-hero-content { position:relative; z-index:1; padding:86px 22px 72px; }
.article-hero h1 { max-width: 980px; margin:0; font-size:clamp(36px, 5vw, 68px); line-height:1; letter-spacing:-.055em; }
.article-date { margin:22px 0 0; color:rgba(255,255,255,.78); font-weight:700; }
.back-link { display:inline-flex; margin-bottom:22px; color:#fff; text-decoration:none; font-weight:800; opacity:.86; }
.back-link:hover { opacity:1; }
.article-section { background: var(--bg); }
.article-shell { max-width: 960px; }
.article-content { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: clamp(28px, 5vw, 58px); box-shadow: var(--shadow); }
.article-content .row, .article-content [class*="col-"] { display:block; width:100%; max-width:none; padding:0 !important; margin:0 !important; }
.article-content h5, .article-content h4 { color:var(--ink); font-size:25px; line-height:1.2; letter-spacing:-.025em; margin:30px 0 12px; }
.article-content strong { color:var(--ink); }
.article-content ul { margin: 14px 0 26px; padding-left: 24px; }
.article-content li { margin:8px 0; }
.article-content a { color: var(--blue); font-weight:800; text-decoration:none; }
.article-content a:hover { text-decoration:underline; }
.article-image, .article-content img { width:100% !important; max-width:100%; height:auto; margin:28px auto 10px; border-radius:20px; box-shadow:0 18px 46px rgba(11,31,58,.12); }
.article-image-medium { max-width:680px !important; }
.article-content em { color:var(--muted); font-size:14px; }
.article-quote { margin:30px 0; padding:26px; border-left:4px solid var(--green); background:var(--green-soft); border-radius:18px; color:var(--ink); }
.article-nav { display:flex; flex-wrap:wrap; gap:14px; margin-top:28px; }
.btn-outline { background:#fff; color:var(--ink); border-color:var(--line); }
@media (max-width: 760px) { .article-hero { min-height:360px; } .article-content { padding:24px; } }

/* Mobile usability: keep the full menu in the document flow instead of sticky overlay */
@media (max-width: 900px) {
  .site-header {
    position: relative !important;
    top: auto !important;
  }
}
