:root {
  --navy: #17365f;
  --navy-deep: #0e2748;
  --blue: #1977a8;
  --turquoise: #23aeb3;
  --orange: #e8922f;
  --cream: #f6f3ed;
  --paper: #fbfcfd;
  --ink: #152438;
  --muted: #5b6878;
  --line: #dce5ec;
  --white: #ffffff;
  --shadow: 0 20px 55px rgba(14, 39, 72, .11);
  --radius: 22px;
  --container: min(1180px, calc(100% - 40px));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 400 16px/1.75 'Aptos', 'Segoe UI', Arial, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  z-index: -1;
  background-image: linear-gradient(30deg, rgba(23,54,95,.04) 12%, transparent 12.5%, transparent 87%, rgba(23,54,95,.04) 87.5%), linear-gradient(150deg, rgba(35,174,179,.035) 12%, transparent 12.5%, transparent 87%, rgba(35,174,179,.035) 87.5%);
  background-size: 48px 84px;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { color: #fff; background: var(--turquoise); }
:focus-visible { outline: 3px solid rgba(35,174,179,.45); outline-offset: 3px; }

.container { width: var(--container); margin-inline: auto; }
.skip-link { position: fixed; left: 14px; top: -60px; z-index: 1000; padding: 10px 16px; background: var(--navy); color: #fff; border-radius: 8px; }
.skip-link:focus { top: 14px; }
.eyebrow { margin: 0 0 12px; color: var(--turquoise); font-size: .76rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow.light { color: #8ce3e2; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: Georgia, 'Times New Roman', serif; line-height: 1.14; letter-spacing: -.025em; }
h1 { font-size: clamp(2.65rem, 6vw, 5.65rem); }
h2 { font-size: clamp(2rem, 4vw, 3.6rem); }
h3 { line-height: 1.35; }
.lead { color: var(--muted); font-size: clamp(1.05rem, 1.6vw, 1.22rem); line-height: 1.8; }
.section { padding: 96px 0; }
.section.compact { padding: 70px 0; }
.section.alt { background: #f2f7f8; }
.section.navy { color: #fff; background: var(--navy-deep); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 44px; }
.section-head > div { max-width: 760px; }
.section-head h2 { margin-bottom: 0; }
.section-head p:last-child { margin-bottom: 0; color: var(--muted); }
.section.navy .section-head p:last-child { color: #c8d5e5; }

.topbar { color: #d9e4ef; background: var(--navy-deep); font-size: .76rem; }
.topbar-inner { min-height: 42px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.topbar a { color: #fff; font-weight: 700; }
.topbar-note { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.site-header { position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(23,54,95,.1); background: rgba(255,255,255,.96); backdrop-filter: blur(16px); }
.nav-wrap { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; align-items: center; gap: 13px; min-width: 235px; }
.brand img { width: 66px; height: 66px; object-fit: contain; }
.brand strong { display: block; color: var(--navy); font-size: .98rem; line-height: 1.25; }
.brand span { color: var(--muted); font-size: .66rem; letter-spacing: .08em; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: 5px; }
.nav a { padding: 10px 11px; border-radius: 10px; color: #35445a; font-size: .86rem; font-weight: 700; }
.nav a:hover, .nav a.active { color: var(--navy); background: #e9f4f4; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 12px; color: var(--navy); background: #edf4f6; }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { content: ''; display: block; width: 21px; height: 2px; margin: 5px auto; background: currentColor; transition: .25s; }

.hero { position: relative; overflow: hidden; min-height: 720px; display: grid; align-items: center; color: #fff; background: var(--navy-deep); }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,31,59,.96) 0%, rgba(13,43,77,.88) 48%, rgba(9,29,50,.36) 76%, rgba(9,29,50,.18) 100%), url('../images/photos/17550631713.webp') center/cover; }
.hero::after { content: ''; position: absolute; width: 520px; height: 520px; right: -100px; top: -100px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; box-shadow: 0 0 0 45px rgba(255,255,255,.03), 0 0 0 90px rgba(255,255,255,.025); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(280px, .55fr); gap: 70px; align-items: center; padding: 90px 0; }
.hero-copy { max-width: 780px; }
.hero h1 { max-width: 820px; margin-bottom: 25px; }
.hero .lead { max-width: 710px; color: #dce7f1; }
.hero-actions, .button-row { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 32px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 49px; padding: 12px 20px; border: 1px solid transparent; border-radius: 12px; font-size: .86rem; font-weight: 800; transition: transform .2s, box-shadow .2s, background .2s; }
.btn:hover { transform: translateY(-2px); }
.btn.primary { color: var(--navy-deep); background: #fff; box-shadow: 0 12px 28px rgba(0,0,0,.15); }
.btn.accent { color: #fff; background: var(--turquoise); }
.btn.outline { color: var(--navy); border-color: var(--line); background: #fff; }
.btn.ghost { color: #fff; border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.06); }
.hero-card { padding: 27px; border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius); background: rgba(255,255,255,.09); backdrop-filter: blur(14px); box-shadow: 0 22px 60px rgba(0,0,0,.18); }
.hero-card .number { display: block; margin-bottom: 7px; font: 700 2.3rem/1 Georgia, 'Times New Roman', serif; color: #91e4e1; }
.hero-card small { display: block; color: #c7d7e6; line-height: 1.55; }
.hero-card hr { border: 0; border-top: 1px solid rgba(255,255,255,.16); margin: 22px 0; }

.visibility-strip { position: relative; z-index: 2; margin-top: -43px; }
.visibility-card { display: grid; grid-template-columns: 1fr auto; gap: 36px; align-items: center; padding: 25px 30px; border-radius: 18px; background: #fff; box-shadow: var(--shadow); }
.visibility-card p { margin: 0; color: #3f5064; font-size: .82rem; line-height: 1.7; }
.visibility-card strong { color: var(--navy); }
.mini-logos { display: flex; align-items: center; gap: 18px; }
.mini-logos img { width: 62px; height: 50px; object-fit: contain; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 8px 30px rgba(14,39,72,.045); }
.card h3 { margin-bottom: 11px; color: var(--navy); }
.card p:last-child { margin-bottom: 0; color: var(--muted); }
.icon-box { width: 49px; height: 49px; display: grid; place-items: center; margin-bottom: 22px; border-radius: 14px; color: #fff; font-size: 1.25rem; background: linear-gradient(135deg, var(--blue), var(--turquoise)); }
.split { display: grid; grid-template-columns: 1.03fr .97fr; gap: 64px; align-items: center; }
.split.reverse { grid-template-columns: .97fr 1.03fr; }
.split-media { position: relative; }
.split-media img { width: 100%; height: 560px; object-fit: cover; border-radius: 28px; box-shadow: var(--shadow); }
.split-media.square img { height: 520px; }
.media-label { position: absolute; left: 22px; bottom: 22px; max-width: 80%; padding: 14px 17px; border-radius: 13px; color: #fff; background: rgba(14,39,72,.88); backdrop-filter: blur(8px); font-size: .78rem; }
.check-list { margin: 26px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 7px 0 7px 31px; color: #35465b; }
.check-list li::before { content: '✓'; position: absolute; left: 0; top: 8px; width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--turquoise); font-size: .7rem; font-weight: 800; }
.callout { padding: 26px 28px; border-left: 4px solid var(--turquoise); border-radius: 0 16px 16px 0; background: #eaf6f6; }
.callout p:last-child { margin-bottom: 0; }

.page-hero { position: relative; overflow: hidden; padding: 98px 0 88px; color: #fff; background: var(--navy-deep); }
.page-hero::before { content: ''; position: absolute; inset: 0; opacity: .3; background: radial-gradient(circle at 80% 25%, var(--turquoise), transparent 30%), repeating-linear-gradient(45deg, transparent 0 22px, rgba(255,255,255,.045) 22px 23px); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 900px; margin-bottom: 18px; font-size: clamp(2.6rem, 5vw, 4.7rem); }
.page-hero p { max-width: 740px; margin: 0; color: #d2deea; font-size: 1.08rem; }
.breadcrumbs { margin-bottom: 20px; color: #9fd8db; font-size: .78rem; font-weight: 700; }
.breadcrumbs a { color: #fff; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.stat { padding: 25px 20px; border: 1px solid var(--line); border-radius: 17px; background: #fff; }
.stat strong { display: block; color: var(--navy); font-size: 1rem; }
.stat span { color: var(--muted); font-size: .77rem; }
.process { counter-reset: process; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process article { position: relative; min-height: 225px; padding: 28px; border-radius: 20px; color: #fff; background: var(--navy); }
.process article::before { counter-increment: process; content: '0' counter(process); display: block; margin-bottom: 38px; color: #8ee3e1; font-weight: 800; }
.process h3 { margin-bottom: 8px; }
.process p { margin-bottom: 0; color: #d5dfeb; font-size: .86rem; }

.timeline { position: relative; max-width: 920px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; left: 139px; top: 0; bottom: 0; width: 2px; background: var(--line); }
.timeline-item { display: grid; grid-template-columns: 110px 1fr; gap: 58px; position: relative; padding-bottom: 38px; }
.timeline-date { padding-top: 23px; color: var(--navy); font-weight: 800; text-align: right; font-size: .82rem; }
.timeline-body { position: relative; padding: 27px 30px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.timeline-body::before { content: ''; position: absolute; left: -35px; top: 31px; width: 13px; height: 13px; border: 4px solid #fff; border-radius: 50%; background: var(--turquoise); box-shadow: 0 0 0 2px var(--turquoise); }
.timeline-body h3 { margin-bottom: 8px; color: var(--navy); }
.timeline-body p:last-child { margin-bottom: 0; color: var(--muted); }

.gallery { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 185px; gap: 16px; }
.gallery-item { position: relative; overflow: hidden; grid-column: span 4; grid-row: span 2; border: 0; padding: 0; border-radius: 18px; background: #d8e2e8; }
.gallery-item.wide { grid-column: span 8; }
.gallery-item.short { grid-row: span 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.gallery-item:hover img { transform: scale(1.045); }
.gallery-item::after { content: attr(data-caption); position: absolute; inset: auto 0 0; padding: 32px 18px 15px; color: #fff; text-align: left; background: linear-gradient(transparent, rgba(8,27,48,.82)); font-size: .77rem; font-weight: 700; }
.lightbox { position: fixed; inset: 0; z-index: 300; display: none; place-items: center; padding: 24px; background: rgba(5,18,34,.92); }
.lightbox.open { display: grid; }
.lightbox figure { max-width: min(1100px, 95vw); margin: 0; }
.lightbox img { max-height: 80vh; margin: auto; border-radius: 14px; }
.lightbox figcaption { margin-top: 14px; color: #fff; text-align: center; }
.lightbox-close { position: absolute; right: 22px; top: 18px; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; color: #fff; background: transparent; font-size: 1.4rem; }

.institutions { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; align-items: stretch; }
.institution { min-height: 138px; display: grid; place-items: center; padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: #fff; text-align: center; }
.institution img { max-width: 120px; max-height: 72px; object-fit: contain; }
.institution.ministry img { max-width: 66px; }
.institution span { display: block; margin-top: 8px; color: var(--muted); font-size: .64rem; font-weight: 700; line-height: 1.4; }

.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 34px; align-items: start; }
.contact-panel { padding: 32px; border-radius: 22px; color: #fff; background: var(--navy-deep); }
.contact-block { padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.contact-block:last-child { border-bottom: 0; }
.contact-block strong { display: block; margin-bottom: 4px; color: #8ce3e2; font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
.contact-block p, .contact-block a { margin: 0; color: #fff; }
.form-card { padding: 34px; border: 1px solid var(--line); border-radius: 22px; background: #fff; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field.full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 7px; color: #34465c; font-size: .8rem; font-weight: 800; }
.field input, .field textarea, .field select { width: 100%; border: 1px solid #ccd8e1; border-radius: 11px; padding: 12px 13px; color: var(--ink); background: #fbfdfe; }
.field textarea { min-height: 145px; resize: vertical; }
.form-note { margin: 16px 0; color: var(--muted); font-size: .76rem; }
.form-status { display: none; margin-top: 16px; padding: 13px; border-radius: 10px; color: #145b58; background: #e4f6f4; font-size: .82rem; }
.form-status.show { display: block; }

.footer { padding: 72px 0 24px; color: #dce5ee; background: #0c213d; }
.footer-grid { display: grid; grid-template-columns: 1.15fr .75fr .8fr; gap: 58px; }
.footer-brand { display: flex; align-items: center; gap: 15px; margin-bottom: 18px; }
.footer-brand img { width: 72px; height: 72px; object-fit: contain; filter: drop-shadow(0 4px 10px rgba(0,0,0,.15)); }
.footer-brand strong { display: block; color: #fff; }
.footer p { color: #b9c8d7; font-size: .82rem; }
.footer h3 { color: #fff; font-size: .9rem; }
.footer-links { display: grid; gap: 8px; }
.footer-links a { color: #c8d5e3; font-size: .82rem; }
.footer-links a:hover { color: #8ce3e2; }
.footer-disclaimer { margin-top: 42px; padding: 21px 24px; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; background: rgba(255,255,255,.035); }
.footer-disclaimer p { margin-bottom: 8px; font-size: .74rem; line-height: 1.65; }
.footer-disclaimer p:last-child { margin-bottom: 0; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); color: #91a5b9; font-size: .7rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .nav-toggle { display: block; }
  .nav { position: absolute; left: 20px; right: 20px; top: calc(100% + 8px); display: none; flex-direction: column; align-items: stretch; padding: 12px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: var(--shadow); }
  .nav.open { display: flex; }
  .nav a { padding: 12px 14px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 620px; }
  .split, .split.reverse { grid-template-columns: 1fr; gap: 38px; }
  .split.reverse .split-media { order: 2; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .institutions { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  :root { --container: min(100% - 28px, 1180px); }
  .section { padding: 72px 0; }
  .topbar-inner { min-height: 34px; }
  .topbar-inner > span:last-child { display: none; }
  .nav-wrap { min-height: 76px; }
  .brand img { width: 55px; height: 55px; }
  .brand { min-width: 0; }
  .brand strong { font-size: .82rem; }
  .brand span { display: none; }
  .hero { min-height: auto; }
  .hero-grid { padding: 74px 0 95px; gap: 30px; }
  .hero h1 { font-size: 2.8rem; }
  .visibility-card { grid-template-columns: 1fr; gap: 18px; padding: 22px; }
  .mini-logos { justify-content: space-between; }
  .grid-3, .stats, .process, .contact-grid, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child { grid-column: auto; }
  .section-head { align-items: start; flex-direction: column; gap: 16px; }
  .split-media img, .split-media.square img { height: 390px; }
  .timeline::before { left: 7px; }
  .timeline-item { grid-template-columns: 1fr; gap: 8px; padding-left: 34px; }
  .timeline-date { padding-top: 0; text-align: left; }
  .timeline-body::before { left: -33px; top: 28px; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 250px; }
  .gallery-item, .gallery-item.wide, .gallery-item.short { grid-column: auto; grid-row: auto; }
  .institutions { grid-template-columns: repeat(2, 1fr); }
  .institution { min-height: 125px; }
  .form-card, .contact-panel { padding: 24px; }
  .field.full { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
