:root {
  --primary: #0b2d4d;
  --primary-2: #123e67;
  --secondary: #f5a623;
  --secondary-2: #d98b13;
  --text: #222222;
  --muted: #666666;
  --light: #f6f8fb;
  --border: #e4e8ef;
  --white: #ffffff;
  --shadow: 0 16px 40px rgba(9, 30, 66, 0.12);
  --radius: 16px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}
.narrow { max-width: 900px; }
.center { text-align: center; }
.mt-30 { margin-top: 30px; }

.topbar {
  background: var(--primary);
  color: rgba(255,255,255,.9);
  font-size: 14px;
}
.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.topbar a { color: rgba(255,255,255,.9); }

.main-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  backdrop-filter: blur(10px);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
}
.brand-mark {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: var(--secondary);
  font-weight: 800;
  letter-spacing: .5px;
}
.brand-text strong { display: block; color: var(--primary); font-size: 18px; }
.brand-text small { color: var(--muted); font-size: 12px; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  padding: 10px 11px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 10px;
  color: #26384c;
}
.nav-link:hover, .nav-link.active {
  background: rgba(245, 166, 35, .14);
  color: var(--primary);
}
.header-cta {
  background: var(--secondary);
  color: #1d1d1d;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
}
.menu-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  background: var(--primary);
  color: white;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  font-size: 20px;
}

.hero {
  min-height: 620px;
  display: flex;
  align-items: center;
  color: white;
  background:
    linear-gradient(90deg, rgba(11,45,77,.96), rgba(11,45,77,.78), rgba(11,45,77,.34)),
    repeating-linear-gradient(135deg, #1e4c78 0 24px, #244f7a 24px 48px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 50px;
  align-items: center;
}
.eyebrow {
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-weight: 800;
  font-size: 13px;
  margin: 0 0 12px;
}
h1, h2, h3 { line-height: 1.2; margin: 0 0 16px; }
h1 { font-size: clamp(38px, 5vw, 64px); }
h2 { font-size: clamp(28px, 3vw, 42px); color: var(--primary); }
h3 { font-size: 21px; color: var(--primary); }
p { margin: 0 0 16px; color: inherit; }
.hero-content p:not(.eyebrow) { font-size: 18px; max-width: 680px; color: rgba(255,255,255,.9); }
.hero-actions, .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--primary); color: white; }
.btn-secondary { background: var(--secondary); color: #111; }
.btn-outline { border-color: rgba(255,255,255,.6); color: white; }
.btn-outline-light { border-color: rgba(255,255,255,.65); color: white; }
.btn-outline-dark { border-color: var(--primary); color: var(--primary); background: white; }
.hero-panel { display: flex; justify-content: flex-end; }
.hero-card {
  max-width: 360px;
  padding: 34px;
  border-radius: 24px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.hero-card span {
  display: inline-flex;
  width: 72px;
  height: 72px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: var(--secondary);
  color: #111;
  font-weight: 900;
  margin-bottom: 18px;
}
.hero-card strong { display: block; font-size: 24px; margin-bottom: 10px; }

.section { padding: 82px 0; }
.section.compact { padding: 34px 0; }
.section.light { background: var(--light); }
.section-title { text-align: center; max-width: 760px; margin: 0 auto 38px; }
.section-title p:not(.eyebrow) { color: var(--muted); }
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stat {
  padding: 26px;
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 8px 24px rgba(9, 30, 66, 0.08);
  text-align: center;
  border: 1px solid var(--border);
}
.stat strong { display: block; font-size: 34px; color: var(--primary); }
.stat span { color: var(--muted); font-weight: 700; }

.card, .info-box, .process-item, .job-card, .detail-sidebar, .contact-form {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(9, 30, 66, 0.08);
}
.card { overflow: hidden; height: 100%; }
.card-body { padding: 22px; }
.card p { color: var(--muted); }
.card-icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: rgba(245,166,35,.15);
  font-size: 28px;
}
.service-card { padding: 26px; }
.text-link { color: var(--primary); font-weight: 800; }
.text-link:hover { color: var(--secondary-2); }
.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(11,45,77,.08);
  color: var(--primary);
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 12px;
}
.meta-line { color: var(--muted); font-size: 14px; margin: 12px 0; }
.accent-text { color: var(--secondary-2) !important; font-weight: 800; }

.placeholder {
  min-height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(11,45,77,.92), rgba(11,45,77,.68)),
    repeating-linear-gradient(45deg, #e3e8ef 0 18px, #d5dde8 18px 36px);
  color: white;
}
.placeholder span {
  width: 82px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: var(--secondary);
  color: #111;
  font-weight: 900;
  font-size: 24px;
}
.placeholder.large { min-height: 420px; border-radius: var(--radius); overflow: hidden; }
.placeholder.product { background: linear-gradient(135deg, #243b55, #141e30); }
.placeholder.news { background: linear-gradient(135deg, #17324d, #305a7f); }
.placeholder.expert { background: linear-gradient(135deg, #0b2d4d, #455a64); }

.check-list { list-style: none; padding: 0; margin: 18px 0 24px; }
.check-list li { position: relative; padding-left: 28px; margin-bottom: 10px; color: var(--muted); }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary-2);
  font-weight: 900;
}
.info-box { padding: 28px; }
.process-item { padding: 28px; }
.process-item span {
  display: inline-flex;
  color: var(--secondary-2);
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 14px;
}
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.filter-btn {
  border: 1px solid var(--border);
  background: white;
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 800;
  color: var(--primary);
}
.filter-btn.active, .filter-btn:hover { background: var(--primary); color: white; }

.page-hero {
  padding: 88px 0;
  color: white;
  background:
    linear-gradient(90deg, rgba(11,45,77,.94), rgba(11,45,77,.76)),
    repeating-linear-gradient(135deg, #183b5d 0 28px, #20496e 28px 56px);
}
.page-hero h1 { color: white; }
.page-hero p:not(.eyebrow) { max-width: 740px; color: rgba(255,255,255,.86); }
.breadcrumb {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
  color: rgba(255,255,255,.82);
}
.breadcrumb a { color: white; font-weight: 800; }

.cta-section {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-inner h2 { color: white; }
.cta-inner p:not(.eyebrow) { color: rgba(255,255,255,.82); }

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 34px;
  align-items: start;
}
.detail-content h2 { margin-top: 30px; }
.detail-content p { color: var(--muted); }
.detail-icon {
  width: 82px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: rgba(245,166,35,.16);
  font-size: 42px;
  margin-bottom: 20px;
}
.detail-sidebar { padding: 24px; position: sticky; top: 110px; }
.info-list { margin: 0 0 22px; }
.info-list dt { color: var(--muted); font-weight: 700; margin-top: 14px; }
.info-list dd { margin: 0; color: var(--primary); font-weight: 900; }
.tag-list { display: flex; gap: 10px; flex-wrap: wrap; }
.tag-list span {
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--light);
  color: var(--primary);
  font-weight: 800;
}
.article-content { font-size: 18px; }
.article-content p { color: var(--muted); }
.article-meta { color: var(--secondary-2); font-weight: 900; margin: 16px 0 24px; }

.job-list { display: grid; gap: 18px; }
.job-card {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.contact-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 34px;
  align-items: start;
}
.contact-list p { color: var(--muted); }
.map-placeholder {
  min-height: 240px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light);
  color: var(--muted);
  border: 1px dashed #b7c1ce;
  margin-top: 22px;
}
.contact-form { padding: 28px; }
.contact-form label { display: block; font-weight: 800; color: var(--primary); margin-bottom: 14px; }
.contact-form input, .contact-form textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 13px 14px;
  font: inherit;
  outline: none;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--primary); }
.form-note { color: var(--muted); font-size: 14px; margin-top: 14px; }
.form-note.success { color: #0c7a43; font-weight: 800; }

.footer {
  background: #071f36;
  color: rgba(255,255,255,.82);
}
.footer-grid {
  padding: 60px 0;
  display: grid;
  grid-template-columns: 1.4fr .8fr 1fr 1.2fr;
  gap: 34px;
}
.footer h3 { color: white; }
.footer p { color: rgba(255,255,255,.72); }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; color: white; }
.footer-links, .footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-links li, .footer-contact li { margin-bottom: 10px; }
.footer-links a:hover { color: var(--secondary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0; color: rgba(255,255,255,.62); }

/* Image-enabled version */
.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 12px;
  background: var(--primary);
}
.footer-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 12px;
  background: var(--primary);
}
.hero {
  background-size: cover;
  background-position: center;
}
.media-box {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(11,45,77,.92), rgba(11,45,77,.68)),
    repeating-linear-gradient(45deg, #e3e8ef 0 18px, #d5dde8 18px 36px);
  color: white;
}
.media-box img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.card:hover .media-box img { transform: scale(1.05); }
.media-box.large {
  min-height: 420px;
  border-radius: var(--radius);
}
.media-box.large img { min-height: 420px; }
.media-box.expert img {
  min-height: 290px;
  object-position: center top;
}
.media-box .fallback-initials {
  display: none;
  width: 82px;
  height: 82px;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: var(--secondary);
  color: #111;
  font-weight: 900;
  font-size: 24px;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}
.media-box.image-missing .fallback-initials { display: flex; }
.detail-content .media-box { margin-bottom: 28px; }
