:root {
  --navy-950: #081426;
  --navy-900: #0d2038;
  --navy-800: #123150;
  --blue-600: #176b9c;
  --cyan-500: #16a7b7;
  --cyan-100: #dff7f7;
  --orange-500: #ed7a32;
  --orange-100: #fff0e5;
  --ink: #142033;
  --muted: #617083;
  --line: #dfe6ec;
  --surface: #ffffff;
  --surface-alt: #f4f7f9;
  --shadow: 0 18px 50px rgba(8, 20, 38, .12);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
.container { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.skip-link {
  position: fixed; left: 1rem; top: -5rem; z-index: 9999;
  padding: .75rem 1rem; background: white; border-radius: 8px;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky; top: 0; z-index: 1000;
  backdrop-filter: blur(16px);
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(223,230,236,.9);
}
.nav-wrap {
  min-height: 158px;
  padding-block: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand { display: inline-flex; align-items: center; gap: .8rem; text-decoration: none; }
.site-header .brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  max-width: 630px;
}

.site-header .brand-logo,
.site-header .brand img {
  display: block !important;
  width: auto !important;
  height: 138px !important;
  max-height: 138px !important;
  max-width: 630px !important;
  object-fit: contain !important;
  flex-shrink: 0;
}

.brand-mark {
  width: 46px; height: 46px; border-radius: 13px;
  display: grid; place-items: center; color: white; font-weight: 800; letter-spacing: -.04em;
  background: linear-gradient(145deg, var(--navy-800), var(--cyan-500));
  box-shadow: 0 8px 24px rgba(23,107,156,.25);
}
.brand-text { line-height: 1.05; }
.brand-text strong { display: block; color: var(--navy-900); font-size: 1.02rem; }
.brand-text span { display: block; color: var(--muted); font-size: .72rem; margin-top: .2rem; letter-spacing: .04em; }

.nav-toggle {
  display: none; border: 0; background: var(--surface-alt); border-radius: 10px;
  width: 44px; height: 44px; cursor: pointer;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: ""; display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--navy-900);
}
.nav-menu { display: flex; align-items: center; gap: .2rem; margin: 0; padding: 0; list-style: none; }
.nav-menu a {
  display: inline-flex; align-items: center; min-height: 42px; padding: .55rem .72rem;
  border-radius: 9px; text-decoration: none; font-weight: 650; font-size: .91rem; color: #2b3a4e;
}
.nav-menu a:hover, .nav-menu a[aria-current="page"] { color: var(--blue-600); background: #eef7fb; }
.nav-menu .lang-link { border: 1px solid var(--line); margin-left: .3rem; }

.hero {
  position: relative; overflow: hidden; color: white;
  background:
    radial-gradient(circle at 82% 24%, rgba(22,167,183,.24), transparent 26%),
    radial-gradient(circle at 12% 88%, rgba(237,122,50,.17), transparent 24%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}
.hero::after {
  content: ""; position: absolute; inset: 0; opacity: .22; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}
.hero .container {
  position: relative; z-index: 1; min-height: 650px; padding: 7.5rem 0 6rem;
  display: grid; grid-template-columns: minmax(0, 1.14fr) minmax(300px, .86fr);
  align-items: center; gap: 4rem;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  margin-bottom: 1.2rem; font-size: .82rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase;
  color: var(--cyan-100);
}
.eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--cyan-500); }
.hero h1, .page-hero h1 {
  margin: 0 0 1.35rem; max-width: 830px; font-size: clamp(2.55rem, 5vw, 5.1rem);
  line-height: .99; letter-spacing: -.055em;
}
.hero h1 em { color: #6fe3e6; font-style: normal; }
.hero p { max-width: 720px; margin: 0; color: #d9e6f0; font-size: clamp(1.05rem, 1.6vw, 1.3rem); }
.actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 50px; padding: .8rem 1.2rem; border-radius: 11px; text-decoration: none;
  font-weight: 800; border: 1px solid transparent; transition: transform .2s, background .2s, border-color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--orange-500); color: white; box-shadow: 0 10px 26px rgba(237,122,50,.26); }
.btn-primary:hover { background: #db6a26; }
.btn-secondary { color: white; border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.07); }
.btn-secondary:hover { background: rgba(255,255,255,.13); }
.btn-dark { background: var(--navy-900); color: white; }
.btn-outline { color: var(--navy-900); border-color: var(--line); background: white; }

.hero-panel {
  position: relative; padding: 1.4rem; border-radius: 28px;
  border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.075);
  box-shadow: 0 30px 80px rgba(0,0,0,.22); backdrop-filter: blur(12px);
}
.system-map { display: grid; gap: .85rem; }
.map-node {
  position: relative; padding: 1rem 1rem 1rem 3.1rem; border-radius: 14px;
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.12);
}
.map-node::before {
  content: ""; position: absolute; left: 1rem; top: 1.18rem; width: 14px; height: 14px;
  border-radius: 4px; background: var(--cyan-500); box-shadow: 0 0 0 6px rgba(22,167,183,.13);
}
.map-node:nth-child(2)::before { background: var(--orange-500); box-shadow: 0 0 0 6px rgba(237,122,50,.13); }
.map-node:nth-child(3)::before { background: #82dba3; box-shadow: 0 0 0 6px rgba(130,219,163,.13); }
.map-node strong { display: block; font-size: .96rem; }
.map-node span { color: #bed0dd; font-size: .84rem; }
.hero-panel small { display: block; color: #a9bfcd; margin: .95rem .2rem 0; }

.trust-strip { background: white; border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.trust-item { padding: 1.25rem; text-align: center; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; color: var(--navy-900); font-size: 1rem; }
.trust-item span { color: var(--muted); font-size: .85rem; }

.section { padding: 6rem 0; }
.section-alt { background: var(--surface-alt); }
.section-dark { color: white; background: linear-gradient(145deg, var(--navy-950), var(--navy-800)); }
.section-heading { max-width: 780px; margin-bottom: 2.6rem; }
.section-heading.center { margin-inline: auto; text-align: center; }
.kicker { color: var(--blue-600); font-weight: 850; text-transform: uppercase; font-size: .78rem; letter-spacing: .1em; }
.section h2, .content h2 {
  margin: .35rem 0 1rem; color: var(--navy-900); font-size: clamp(2rem, 3vw, 3.3rem);
  line-height: 1.08; letter-spacing: -.035em;
}
.section-dark h2, .section-dark h3 { color: white; }
.section-heading p { color: var(--muted); font-size: 1.08rem; }
.section-dark .section-heading p { color: #c9d7e2; }

.cards-2, .cards-3, .cards-4 { display: grid; gap: 1.25rem; }
.cards-2 { grid-template-columns: repeat(2,1fr); }
.cards-3 { grid-template-columns: repeat(3,1fr); }
.cards-4 { grid-template-columns: repeat(4,1fr); }
.card {
  height: 100%; padding: 1.6rem; border: 1px solid var(--line); border-radius: var(--radius-md);
  background: white; box-shadow: 0 8px 28px rgba(8,20,38,.04);
}
.card-link { text-decoration: none; transition: transform .2s, box-shadow .2s, border-color .2s; }
.card-link:hover { transform: translateY(-5px); border-color: #afd9e7; box-shadow: var(--shadow); }
.card-icon {
  width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 1.1rem;
  border-radius: 12px; background: #e9f7f9; color: var(--blue-600); font-weight: 900;
}
.card h3 { margin: 0 0 .65rem; color: var(--navy-900); font-size: 1.3rem; line-height: 1.2; }
.card p { margin: 0; color: var(--muted); }
.card ul { margin: 1rem 0 0; padding-left: 1.2rem; color: var(--muted); }
.card li + li { margin-top: .5rem; }
.card .more { display: inline-flex; margin-top: 1.1rem; color: var(--blue-600); font-weight: 800; }

.sector-card {
  position: relative; overflow: hidden; min-height: 390px; padding: 2.25rem; border-radius: var(--radius-lg);
  color: white; display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(145deg, var(--navy-900), var(--navy-800));
}
.sector-card:nth-child(2) { background: linear-gradient(145deg, #0a3140, #0e6f77); }
.sector-card::before {
  content: ""; position: absolute; width: 240px; height: 240px; border-radius: 50%;
  right: -70px; top: -70px; border: 45px solid rgba(255,255,255,.06);
}
.sector-card > * { position: relative; z-index: 1; }
.sector-card .number { margin-bottom: auto; font-weight: 900; color: #8ce2e5; }
.sector-card h3 { margin: 0 0 .7rem; font-size: 2rem; }
.sector-card p { margin: 0; color: #d7e4ec; }
.sector-card .more { color: white; }

.award {
  display: grid; grid-template-columns: .85fr 1.15fr; gap: 2rem; align-items: stretch;
  border-radius: var(--radius-lg); overflow: hidden; background: white; box-shadow: var(--shadow);
}
.award-badge {
  min-height: 330px; display: grid; place-items: center; text-align: center; padding: 2rem;
  color: white; background:
    radial-gradient(circle at 50% 30%, rgba(237,122,50,.35), transparent 30%),
    linear-gradient(145deg, var(--navy-950), var(--navy-800));
}
.award-badge strong { font-size: 4.5rem; line-height: 1; letter-spacing: -.06em; }
.award-badge span { display: block; margin-top: .8rem; color: #bfeef0; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.award-copy { padding: 2.4rem; }
.award-copy h3 { margin: .2rem 0 1rem; color: var(--navy-900); font-size: 2rem; }
.award-copy p { color: var(--muted); }

.metrics { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-top: 1.4rem; }
.metric { padding: 1.15rem; border-radius: 13px; background: var(--surface-alt); }
.metric strong { display: block; color: var(--navy-900); font-size: 1.45rem; }
.metric span { color: var(--muted); font-size: .82rem; }

.cta-panel {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  padding: 2.5rem; border-radius: var(--radius-lg); color: white;
  background:
    radial-gradient(circle at 90% 0%, rgba(22,167,183,.22), transparent 28%),
    linear-gradient(145deg, var(--navy-950), var(--navy-800));
}
.cta-panel h2 { color: white; margin: 0 0 .45rem; }
.cta-panel p { margin: 0; color: #cad9e4; max-width: 700px; }

.page-hero {
  color: white; padding: 6.7rem 0 5rem;
  background:
    radial-gradient(circle at 85% 20%, rgba(22,167,183,.22), transparent 25%),
    linear-gradient(145deg, var(--navy-950), var(--navy-800));
}
.page-hero h1 { max-width: 900px; font-size: clamp(2.4rem, 4.5vw, 4.6rem); }
.page-hero p { max-width: 760px; color: #d6e4ec; font-size: 1.15rem; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 1.5rem; color: #bcd0dc; font-size: .86rem; }
.breadcrumbs a { text-decoration: none; }

.content { max-width: 840px; }
.content p, .content li { color: #4e6073; font-size: 1.04rem; }
.content h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-top: 2.2rem; }
.content h3 { color: var(--navy-900); margin-top: 1.7rem; }
.feature-list { display: grid; grid-template-columns: repeat(2,1fr); gap: .8rem 1.4rem; padding: 0; list-style: none; }
.feature-list li { position: relative; padding-left: 1.55rem; }
.feature-list li::before { content: "✓"; position: absolute; left: 0; color: var(--cyan-500); font-weight: 900; }

.layout-sidebar { display: grid; grid-template-columns: minmax(0,1fr) 300px; gap: 3rem; align-items: start; }
.sidebar {
  position: sticky; top: 104px; padding: 1.35rem; border: 1px solid var(--line);
  border-radius: var(--radius-md); background: var(--surface-alt);
}
.sidebar h3 { margin-top: 0; color: var(--navy-900); }
.sidebar a { display: block; padding: .65rem .75rem; border-radius: 8px; text-decoration: none; color: #46576a; }
.sidebar a:hover { background: white; color: var(--blue-600); }

.timeline { border-left: 2px solid #bee8ed; margin-left: .6rem; padding-left: 1.7rem; }
.timeline-item { position: relative; padding-bottom: 1.8rem; }
.timeline-item::before {
  content: ""; position: absolute; left: -2.08rem; top: .25rem; width: 12px; height: 12px;
  border-radius: 50%; background: var(--cyan-500); box-shadow: 0 0 0 5px #e7f7f8;
}
.timeline-item strong { color: var(--navy-900); }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 2rem; }
.contact-card { padding: 1.6rem; border-radius: var(--radius-md); background: var(--surface-alt); }
.contact-card + .contact-card { margin-top: 1rem; }
.contact-card h3 { margin: 0 0 .5rem; color: var(--navy-900); }
.contact-card p { margin: .35rem 0; color: var(--muted); }
.contact-card a { color: var(--blue-600); font-weight: 750; text-decoration: none; }

.form-card { padding: 2rem; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.field { display: grid; gap: .35rem; }
.field.full { grid-column: 1/-1; }
label { color: var(--navy-900); font-weight: 750; font-size: .9rem; }
input, select, textarea {
  width: 100%; border: 1px solid #cfd9e1; border-radius: 10px; padding: .8rem .9rem; color: var(--ink); background: white;
}
textarea { min-height: 150px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(22,167,183,.16); border-color: var(--cyan-500); }
.form-note { color: var(--muted); font-size: .84rem; }

.site-footer { color: #d4e0e8; background: var(--navy-950); padding: 4rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .7fr .9fr; gap: 3rem; }
.site-footer h3 { margin-top: 0; color: white; font-size: 1rem; }
.site-footer p, .site-footer a { color: #aebfcb; font-size: .9rem; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: white; }
.footer-links { display: grid; gap: .45rem; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,.1); color: #8fa4b2; font-size: .82rem;
}

.notice {
  padding: 1rem 1.2rem; border-left: 4px solid var(--orange-500); border-radius: 0 10px 10px 0;
  background: var(--orange-100); color: #70411f;
}

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-menu {
    position: absolute; left: 1rem; right: 1rem; top: 70px;
    display: none; flex-direction: column; align-items: stretch; padding: .75rem;
    border: 1px solid var(--line); border-radius: 14px; background: white; box-shadow: var(--shadow);
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu .lang-link { margin-left: 0; }
  .hero .container { grid-template-columns: 1fr; min-height: auto; padding: 6rem 0 4rem; }
  .hero-panel { max-width: 640px; }
  .cards-4 { grid-template-columns: repeat(2,1fr); }
  .cards-3 { grid-template-columns: repeat(2,1fr); }
  .award { grid-template-columns: 1fr; }
  .award-badge { min-height: 240px; }
  .metrics { grid-template-columns: repeat(2,1fr); }
  .layout-sidebar { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
    .site-header .brand {
    max-width: 525px;
  }

  .site-header .brand-logo,
  .site-header .brand img {
    height: 114px !important;
    max-height: 114px !important;
    max-width: 525px !important;
  }

  .nav-wrap {
    min-height: 132px;
    padding-block: 9px;
  }
  .brand-text span { display: none; }
  .section { padding: 4.3rem 0; }
  .hero .container { padding-top: 4.8rem; }
  .hero h1 { font-size: 2.65rem; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .cards-2, .cards-3, .cards-4 { grid-template-columns: 1fr; }
  .sector-card { min-height: 340px; }
  .metrics { grid-template-columns: 1fr 1fr; }
  .cta-panel { align-items: flex-start; flex-direction: column; }
  .feature-list { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}