:root{
  --white:#FFFFFF;
  --pale:#F4F8FC;
  --sky-100:#E9F2FC;
  --sky-200:#D2E3F4;
  --sky-300:#A8C6E8;
  --blue-500:#2E6BAE;
  --blue-600:#1F5290;
  --blue-800:#123159;
  --blue-900:#0c233e;
  --gold:#B8862E;
  --gold-light:#E8CE9B;
  --ink:#16222E;
  --ink-soft:#4C5A6B;
  --max:1180px; 
  --radius:4px;
  --shadow-sm:0 2px 10px rgba(11,32,56,0.06);
  --shadow-md:0 10px 30px -12px rgba(11,32,56,0.22);
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:'Source Sans 3', 'Segoe UI', sans-serif;
  color:var(--ink);
  background:var(--white);
  line-height:1.68;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

a{color:inherit; text-decoration:none;}
ul{list-style:none;}
img{max-width:100%; display:block;}
.wrap{max-width:var(--max); margin:0 auto; padding:0 32px;}
h1,h2,h3,h4{
  font-family:'Merriweather', Georgia, serif;
  font-weight:700;
  letter-spacing:-0.005em;
  line-height:1.22;
  color:var(--blue-900);
}
.eyebrow{
  font-family:'Source Sans 3', sans-serif;
  font-size:12.5px;
  font-weight:700;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--blue-800);
  display:inline-flex;
  align-items:center;
  gap:9px;
  margin-bottom:16px;
  background:var(--sky-100);
  padding:6px 14px 6px 11px;
  border-left:3px solid var(--blue-600);
  border-radius:0 3px 3px 0;
}
section{padding:50px 0; position:relative;}
@media(max-width:768px){ section{padding:64px 0;} .wrap{padding:0 20px;} }

/* scroll reveal */
.reveal{opacity:0; transform:translateY(28px) scale(0.985); transition:opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1);}
.reveal.in{opacity:1; transform:translateY(0) scale(1);}
@media (prefers-reduced-motion: reduce){ .reveal{opacity:1; transform:none; transition:none;} }

/* staggered entrance within card grids */
.strat-grid .reveal:nth-child(1),.mv-cards .reveal:nth-child(1),.facility-grid .reveal:nth-child(1),.partners-grid .reveal:nth-child(1){transition-delay:0s;}
.strat-grid .reveal:nth-child(2),.mv-cards .reveal:nth-child(2),.facility-grid .reveal:nth-child(2),.partners-grid .reveal:nth-child(2){transition-delay:.08s;}
.strat-grid .reveal:nth-child(3),.mv-cards .reveal:nth-child(3),.facility-grid .reveal:nth-child(3),.partners-grid .reveal:nth-child(3){transition-delay:.16s;}
.strat-grid .reveal:nth-child(4),.mv-cards .reveal:nth-child(4),.facility-grid .reveal:nth-child(4),.partners-grid .reveal:nth-child(4){transition-delay:.24s;}
.partners-grid .reveal:nth-child(n+5){transition-delay:.3s;}

/* scroll progress bar */
.scroll-progress{
  position:fixed; top:0; left:0; height:3px; width:0%; z-index:200;
  background:linear-gradient(90deg, var(--blue-500), var(--gold)); transition:width .1s linear;
}

/* nav scrollspy active state */
.nav-links a.is-active{color:var(--blue-800); position:relative;}
.nav-links a.is-active::after{
  content:""; position:absolute; left:0; right:0; bottom:-6px; height:2px; background:var(--gold);
}

/* ===== TOP UTILITY BAR ===== */
.topbar{background:var(--blue-900); color:rgba(255,255,255,0.82); font-size:13px;}
.topbar-inner{
  max-width:var(--max); margin:0 auto; padding:9px 32px;
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:8px;
}
@media(max-width:760px){ .topbar-inner{padding:8px 20px; justify-content:center; text-align:center;} }
.topbar-left{display:flex; gap:26px; flex-wrap:wrap;}
.topbar-left span{display:inline-flex; align-items:center; gap:7px;}
.topbar-email{color:inherit; text-decoration:none; transition:color .15s ease;}
.topbar-email:hover{color:var(--gold-light); text-decoration:underline;}
.topbar-right{font-weight:600; letter-spacing:0.03em; color:var(--gold-light); font-size:12.5px; text-transform:uppercase;}
@media(max-width:560px){ .topbar-right{display:none;} }

/* ===== NAV ===== */
header.site{
  position:sticky;
  top:0; z-index:100;
  background:rgba(255,255,255,0.97);
  border-bottom:1px solid var(--sky-200);
  box-shadow:0 1px 0 rgba(11,32,56,0.02);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:13px 32px; max-width:var(--max); margin:0 auto;
}
.logo-mark{display:flex; align-items:center; gap:12px;}
.logo-mark img{height:46px; width:auto;}
.logo-mark .word{
  font-family:'Merriweather', serif; font-weight:700; font-size:17px; color:var(--blue-900);
  letter-spacing:0.005em;
}
.logo-mark .word span{color:var(--blue-600); font-weight:700; display:block; font-size:10px; font-family:'Source Sans 3', sans-serif; letter-spacing:0.16em; text-transform:uppercase; margin-top:2px;}
.nav-links{display:flex; gap:28px; align-items:center;}
.nav-links a{
  font-size:14px; font-weight:600; color:var(--ink-soft);
  transition:color .2s ease;
}
.nav-links a:hover{color:var(--blue-600);}
.nav-cta{
  background:var(--blue-800); color:#fff !important;
  padding:11px 24px; border-radius:3px; font-weight:700; font-size:13px;
  box-shadow:var(--shadow-sm);
}
.nav-cta:hover{background:var(--blue-900);}
.burger{display:none; flex-direction:column; gap:5px; cursor:pointer; background:none; border:none;}
.burger span{width:24px; height:2px; background:var(--blue-900);}
@media(max-width:940px){
  .nav-links{
    position:fixed; inset:88px 0 0 0; background:var(--white);
    flex-direction:column; padding:32px; gap:22px; align-items:flex-start;
    transform:translateX(100%); transition:transform .3s ease; overflow-y:auto;
  }
  .nav-links.open{transform:translateX(0);}
  .burger{display:flex;}
}

/* ===== HERO ===== */
.hero{
  position:relative; overflow:hidden;
  background: linear-gradient(180deg, var(--pale) 0%, var(--white) 100%);
  border-bottom:1px solid var(--sky-200);
  min-height:calc(100vh - 112px);
  display:flex; flex-direction:column;
}
@media(max-width:760px){ .hero{min-height:auto;} }

.hero-main{
  flex:1 1 auto; display:grid; grid-template-columns:1.05fr 0.95fr; gap:40px; align-items:center;
  align-content:center;
  max-width:var(--max); width:100%; margin:0 auto; padding:56px 32px; position:relative; z-index:2;
}
@media(max-width:900px){ .hero-main{grid-template-columns:1fr; padding:44px 32px 24px;} }

.hero-text{text-align:left;}
.hero .eyebrow{margin-bottom:20px;}
.hero h1{
  font-size:clamp(32px, 4.6vw, 54px); line-height:1.15; margin:0 0 22px;
}
.hero h1 .accent{color:var(--blue-600);}
.hero p.lede{
  color:var(--ink-soft); font-size:17.5px; max-width:640px; margin-bottom:32px;
}
.btn-row{display:flex; gap:16px; flex-wrap:wrap;}
.btn{
  display:inline-block; padding:14px 30px; font-size:14.5px; font-weight:700;
  border-radius:3px; letter-spacing:0.01em; transition:transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn-primary{background:var(--blue-800); color:#fff; box-shadow:var(--shadow-sm);}
.btn-primary:hover{background:var(--blue-900); transform:translateY(-2px);}
.btn-primary .btn-arrow{display:inline-block; transition:transform .2s ease;}
.btn-primary:hover .btn-arrow{transform:translateX(4px);}
.btn-ghost{border:1.5px solid var(--blue-800); color:var(--blue-800);}
.btn-ghost:hover{background:var(--blue-800); color:#fff; transform:translateY(-2px);}

.trust-line{
  display:flex; align-items:center; gap:9px; margin-top:30px; color:var(--blue-800); font-weight:600; font-size:14px;
}
.trust-line svg{color:var(--blue-600); flex-shrink:0;}

.trusted-by{margin-top:26px;}
.trusted-by-label{
  display:block; font-size:11px; font-weight:700; letter-spacing:0.1em; text-transform:uppercase;
  color:var(--ink-soft); margin-bottom:12px;
}
.trusted-by-logos{display:flex; align-items:center; gap:22px; flex-wrap:wrap;}
.trusted-by-logos img{
  height:22px; width:auto; max-width:80px; object-fit:contain; opacity:0.72; filter:grayscale(1);
  transition:opacity .2s ease, filter .2s ease;
}
.trusted-by-logos img:hover{opacity:1; filter:grayscale(0);}

/* ---- hero illustration ---- */
.hero-illustration{position:relative; min-height:400px; display:flex; align-items:center; justify-content:center;}
.illus-blob{
  position:absolute; width:360px; height:360px; border-radius:50%;
  background:radial-gradient(circle at 35% 30%, var(--sky-100), var(--pale) 72%, transparent 100%);
  top:50%; left:50%; transform:translate(-50%,-50%);
}
.illus-dots{
  position:absolute; inset:0;
  background-image:radial-gradient(var(--sky-300) 1.6px, transparent 1.6px);
  background-size:18px 18px;
  -webkit-mask-image:radial-gradient(circle at 78% 20%, #000 0%, #000 22%, transparent 55%), radial-gradient(circle at 12% 82%, #000 0%, #000 16%, transparent 50%);
  mask-image:radial-gradient(circle at 78% 20%, #000 0%, #000 22%, transparent 55%), radial-gradient(circle at 12% 82%, #000 0%, #000 16%, transparent 50%);
  opacity:0.6;
}
.illus-person{position:relative; z-index:2; width:78%; max-width:340px; height:auto;}

.parallax-layer{position:absolute; z-index:3; transition:transform .18s ease-out;}
.float-card{
  background:#fff; border:1px solid var(--sky-200); border-radius:8px; box-shadow:var(--shadow-md);
  animation:bob 4.5s ease-in-out infinite;
}
@keyframes bob{0%,100%{transform:translateY(0);} 50%{transform:translateY(-10px);}}
@media (prefers-reduced-motion: reduce){ .float-card, .float-bubble{animation:none;} }

.card-chart-wrap{top:6%; left:0%;}
.card-chart{width:118px; height:76px; padding:12px 14px;}
.chart-bars{display:flex; align-items:flex-end; gap:7px; height:100%;}
.chart-bars span{flex:1; background:linear-gradient(180deg, var(--blue-500), var(--blue-800)); border-radius:2px;}

.card-pie-wrap{bottom:10%; left:2%;}
.card-pie{width:150px; height:auto; padding:14px; display:flex; align-items:center; gap:12px; animation-delay:.6s;}
.pie{
  width:42px; height:42px; border-radius:50%; flex-shrink:0;
  background:conic-gradient(var(--blue-800) 0% 40%, var(--gold) 40% 65%, var(--sky-200) 65% 100%);
}
.pie-lines{display:flex; flex-direction:column; gap:6px; flex:1;}
.pie-lines span{height:6px; border-radius:3px; background:var(--sky-200);}
.pie-lines span:nth-child(1){width:100%;}
.pie-lines span:nth-child(2){width:80%;}
.pie-lines span:nth-child(3){width:60%;}

.bubble-wrap{top:14%; right:2%;}
.float-bubble{
  width:56px; height:44px; background:#fff; border:1px solid var(--sky-200); border-radius:10px 10px 10px 2px;
  box-shadow:var(--shadow-md); display:flex; align-items:center; justify-content:center; gap:4px;
  animation:bob 4.5s ease-in-out infinite; animation-delay:1.1s;
}
.float-bubble .dot{width:5px; height:5px; border-radius:50%; background:var(--blue-600);}

@media(max-width:900px){
  .hero-illustration{min-height:320px; margin-top:20px;}
  .card-chart-wrap{left:2%;}
}
@media(max-width:520px){
  .card-pie{width:130px;}
  .card-chart{width:100px;}
}

/* ---- stats bar ---- */
.hero-stats-wrap{border-top:1px solid var(--sky-200); background:var(--white); flex:0 0 auto;}
.hero-stats{
  display:grid; grid-template-columns:repeat(4,1fr); max-width:var(--max); margin:0 auto; padding:0 32px;
}
.hero-stats div{
  padding:22px 24px; border-right:1px solid var(--sky-200);
}
.hero-stats div:last-child{border-right:none;}
.hero-stats svg{color:var(--blue-600); margin-bottom:10px;}
.hero-stats .num{
  font-family:'IBM Plex Mono', monospace; font-size:27px; color:var(--blue-800); font-weight:600;
}
.hero-stats .lbl{font-size:12.5px; color:var(--ink-soft); margin-top:5px; line-height:1.4;}
@media(max-width:760px){
  .hero-stats{grid-template-columns:1fr 1fr;}
  .hero-stats div{border-bottom:1px solid var(--sky-200);}
}

/* ===== PHOTO BANNER / SLIDESHOW ===== */
.banner{position:relative; height:700px; overflow:hidden;}
.banner-slides{position:absolute; inset:0;}
.banner-slide{position:absolute; inset:0; opacity:0; transition:opacity 1.2s ease;}
.banner-slide.is-active{opacity:1;}
.banner-slide img{
  width:100%; height:100%; object-fit:cover; object-position:center 65%;
  transform:scale(1); animation:kenburns 9s ease-in-out infinite alternate;
}
@keyframes kenburns{
  0%{transform:scale(1) translate(0,0);}
  100%{transform:scale(1.08) translate(-1%,-1%);}
}
@media (prefers-reduced-motion: reduce){ .banner-slide img{animation:none;} .banner-slide{transition:none;} }
.banner::after{
  content:""; position:absolute; inset:0; z-index:1;
  background:linear-gradient(0deg, rgba(12, 44, 81, 0.88) 0%, rgba(11,32,56,0.45) 45%, rgba(11,32,56,0.15) 75%, rgba(11,32,56,0.35) 100%);
}
.banner-content{
  position: absolute; left:0; right:0; bottom:0; z-index:2;
  max-width:var(--max); margin:0 auto; padding:0 10px 150px;
}
.banner-tag{
  display:inline-block; background:var(--gold); color:var(--blue-900); font-weight:700; font-size:11.5px;
  letter-spacing:0.1em; text-transform:uppercase; padding:6px 14px; margin-bottom:14px; border-radius:2px;
}
.banner-content h2{color:#fff; font-size:clamp(22px,3vw,32px); margin-bottom:10px; transition:opacity .4s ease;}
.banner-content p{color:rgba(255,255,255,0.82); font-size:15px; max-width:520px; margin-bottom:18px; transition:opacity .4s ease;}
.banner-stats{display:flex; gap:10px; flex-wrap:wrap; margin-bottom:22px;}
.banner-stats span{
  font-family:'IBM Plex Mono', monospace; color:#fff; font-size:13px; font-weight:500;
  border-left:2px solid var(--gold); padding-left:10px;
}
.banner-dots{display:flex; gap:8px; flex-wrap:wrap;}
.banner-dots button{
  width:22px; height:4px; border-radius:2px; border:none; background:rgba(255,255,255,0.35);
  cursor:pointer; padding:0; transition:background .25s ease, width .25s ease;
}
.banner-dots button.is-active{background:var(--gold); width:30px;}
@media(max-width:600px){ .banner{height:520px;} .banner-content{padding:0 10px 60px;} }

/* ===== ATTITUDE ===== */
.attitude{background:var(--blue-900); color:#fff; overflow:hidden;}
.attitude .wrap{position:relative; z-index:2;}
.attitude-grid{display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center;}
@media(max-width:900px){ .attitude-grid{grid-template-columns:1fr; gap:30px;} }
.attitude h2{color:#fff; font-size:clamp(26px,3.4vw,38px); margin-bottom:22px;}
.attitude .eyebrow{color:var(--blue-900); background:var(--gold-light); border-left-color:var(--gold);}
.attitude p{color:rgba(255,255,255,0.75); font-size:16px; margin-bottom:16px; max-width:480px;}
.attitude .highlight{
  color:#fff; font-weight:600; border-left:3px solid var(--gold); padding-left:16px; margin:26px 0;
}
.attitude-panel{
  background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.16); border-radius:var(--radius);
  padding:36px;
}
.attitude-panel .row{display:flex; gap:16px; padding:16px 0; border-bottom:1px solid rgba(255,255,255,0.12);}
.attitude-panel .row:last-child{border-bottom:none;}
.attitude-panel .num{font-family:'IBM Plex Mono', monospace; color:var(--gold-light); font-size:14px; padding-top:2px; font-weight:600;}
.attitude-panel .txt h4{color:#fff; font-size:15.5px; margin-bottom:4px; font-family:'Merriweather',serif;}
.attitude-panel .txt p{color:rgba(255,255,255,0.58); font-size:13.5px; margin:0;}

/* ===== ABOUT / MISSION VISION ===== */
.about-grid{display:grid; grid-template-columns:0.9fr 1.1fr; gap:64px; align-items:start;}
@media(max-width:900px){ .about-grid{grid-template-columns:1fr; gap:36px;} }
.about h2{font-size:clamp(26px,3vw,36px); margin-bottom:18px;}
.about p{color:var(--ink-soft); max-width:460px;}
.mv-cards{display:grid; gap:20px;}
.mv-card{
  border:1px solid var(--sky-200); border-radius:var(--radius); padding:32px 34px; background:var(--pale);
  display:grid; grid-template-columns:52px 1fr; gap:20px; align-items:flex-start;
  box-shadow:var(--shadow-sm);
}
.mv-card .icon{
  width:52px; height:52px; border-radius:50%; background:var(--blue-800);
  display:flex; align-items:center; justify-content:center; color:#fff;
}
.mv-card h3{font-size:18px; margin-bottom:8px;}
.mv-card p{color:var(--ink-soft); font-size:14.5px; margin:0;}

/* ===== STRATEGIES ===== */
.strategies{background:var(--pale); border-top:1px solid var(--sky-200); border-bottom:1px solid var(--sky-200);}
.strat-head{max-width:640px; margin:0 auto 50px; text-align:center;}
.strat-head .eyebrow{justify-content:center;}
.strat-head h2{font-size:clamp(26px,3vw,36px); margin-bottom:14px;}
.strat-head p{color:var(--ink-soft);}
.strat-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:20px;}
@media(max-width:900px){ .strat-grid{grid-template-columns:1fr 1fr;} }
@media(max-width:520px){ .strat-grid{grid-template-columns:1fr;} }
.strat-card{
  background:var(--white); border:1px solid var(--sky-200); border-top:3px solid var(--blue-600); border-radius:var(--radius);
  overflow:hidden;
  transition:transform .25s ease, box-shadow .25s ease; box-shadow:var(--shadow-sm);
}
.strat-card:hover{transform:translateY(-6px); box-shadow:var(--shadow-md);}
.strat-card .card-img{aspect-ratio:16/10; overflow:hidden; background:var(--pale);}
.strat-card .card-img img{
  width:100%; height:100%; object-fit:cover; display:block;
  transition:transform .5s ease;
}
.strat-card:hover .card-img img{transform:scale(1.07);}
.strat-card .strat-body{padding:24px 24px 28px;}
.strat-card .n{font-family:'IBM Plex Mono', monospace; color:var(--blue-600); font-size:13px; margin-bottom:14px; font-weight:600;}
.strat-card h4{font-size:16.5px; margin-bottom:8px;}
.strat-card p{color:var(--ink-soft); font-size:13.5px; margin:0;}
.strat-note{
  margin-top:40px; background:var(--white); border:1px solid var(--sky-200); border-radius:var(--radius);
  padding:32px 36px; display:grid; grid-template-columns:1fr 1fr; gap:30px; box-shadow:var(--shadow-sm);
}
@media(max-width:760px){ .strat-note{grid-template-columns:1fr;} }
.strat-note h5{font-size:13px; text-transform:uppercase; letter-spacing:0.06em; color:var(--blue-600); margin-bottom:8px; font-weight:700;}
.strat-note p{font-size:14px; color:var(--ink-soft);}

/* ===== RECOGNITION / CERTIFICATES ===== */
.recognition{background:var(--pale); border-top:1px solid var(--sky-200); border-bottom:1px solid var(--sky-200);}
.recognition-head{max-width:680px; margin:0 auto 12px; text-align:center;}
.recognition-head h2{font-size:clamp(26px,3vw,36px); margin-bottom:14px;}
.recognition-head p{color:var(--ink-soft);}

.cert-stats{
  margin:44px auto 0; max-width:900px; display:grid; grid-template-columns:repeat(3,1fr); gap:1px;
  background:var(--sky-200); border:1px solid var(--sky-200); border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-sm);
}
@media(max-width:700px){ .cert-stats{grid-template-columns:1fr;} }
.cert-stats div{background:var(--white); padding:24px 20px; text-align:center;}
.cert-stats .num{display:block; font-family:'IBM Plex Mono', monospace; font-size:24px; color:var(--blue-800); font-weight:600;}
.cert-stats .lbl{display:block; font-size:12.5px; color:var(--ink-soft); margin-top:6px;}

.cert-grid{
  margin-top:48px; display:grid; grid-template-columns:1.15fr 1fr; gap:24px; align-items:stretch;
}
@media(max-width:900px){ .cert-grid{grid-template-columns:1fr;} }

.cert-card{
  display:block; width:100%; text-align:left; background:var(--white); border:1px solid var(--sky-200);
  border-radius:8px; overflow:hidden; cursor:pointer; padding:0; font-family:inherit;
  box-shadow:var(--shadow-sm); transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position:relative;
}
.cert-card:hover{transform:translateY(-5px); box-shadow:var(--shadow-md); border-color:var(--blue-500);}

.cert-badge{
  position:absolute; top:14px; left:14px; z-index:2;
  background:var(--blue-900); color:#fff; font-size:10.5px; font-weight:700; letter-spacing:0.06em; text-transform:uppercase;
  padding:5px 11px; border-radius:20px;
}

.cert-featured{display:flex; flex-direction:column;}
.cert-featured .cert-thumb{height:340px;}
@media(max-width:520px){ .cert-featured .cert-thumb{height:220px;} }

.cert-side{display:flex; flex-direction:column; gap:24px;}
.cert-side .cert-card{display:flex; flex-direction:row; height:100%;}
.cert-side .cert-thumb{width:42%; flex-shrink:0; height:auto;}
.cert-side .cert-info{flex:1;}
@media(max-width:600px){
  .cert-side .cert-card{flex-direction:column;}
  .cert-side .cert-thumb{width:100%; height:180px;}
}

.cert-thumb{position:relative; overflow:hidden; background:var(--blue-900);}
.cert-thumb img{
  width:100%; height:100%; object-fit:cover; display:block;
  transition:transform .5s ease;
}
.cert-card:hover .cert-thumb img{transform:scale(1.06);}
.cert-thumb::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(0deg, rgba(11,32,56,0.55) 0%, rgba(11,32,56,0) 35%);
  opacity:0; transition:opacity .25s ease;
}
.cert-card:hover .cert-thumb::after{opacity:1;}

.cert-info{padding:22px 24px;}
.cert-info h3{font-size:17px; margin-bottom:8px; line-height:1.3;}
.cert-side .cert-info h3{font-size:15.5px;}
.cert-info p{color:var(--ink-soft); font-size:13px; margin-bottom:14px;}
.cert-cta{
  display:inline-flex; align-items:center; gap:6px; font-size:13px; font-weight:700; color:var(--blue-600);
}
.cert-cta .arrow{transition:transform .2s ease;}
.cert-card:hover .cert-cta .arrow{transform:translateX(4px);}

/* ---- lightbox modal ---- */
.cert-modal{
  position:fixed; inset:0; z-index:300; display:flex; align-items:center; justify-content:center;
  opacity:0; visibility:hidden; transition:opacity .25s ease, visibility 0s linear .25s;
  padding:24px;
}
.cert-modal.is-open{opacity:1; visibility:visible; transition:opacity .25s ease;}
.cert-modal-backdrop{position:absolute; inset:0; background:rgba(11,32,56,0.86); backdrop-filter:blur(4px);}
.cert-modal-box{
  position:relative; z-index:2; max-width:880px; width:100%; max-height:88vh;
  background:var(--white); border-radius:10px; overflow:hidden; display:flex; flex-direction:column;
  transform:scale(0.95) translateY(10px); transition:transform .3s ease;
  box-shadow:0 40px 80px -20px rgba(0,0,0,0.5);
}
.cert-modal.is-open .cert-modal-box{transform:scale(1) translateY(0);}
.cert-modal-imgwrap{background:var(--blue-900); display:flex; align-items:center; justify-content:center; max-height:65vh; overflow:hidden;}
.cert-modal-imgwrap img{width:100%; height:100%; max-height:65vh; object-fit:contain;}
.cert-modal-caption{padding:20px 26px; border-top:1px solid var(--sky-200);}
.cert-modal-caption .cert-badge{position:static; display:inline-block; margin-bottom:10px;}
.cert-modal-caption h4{font-family:'Merriweather', serif; font-size:17px; color:var(--blue-900); margin-bottom:6px;}
.cert-modal-caption p{color:var(--ink-soft); font-size:13.5px;}
.cert-modal-close{
  position:absolute; top:14px; right:14px; z-index:3; width:36px; height:36px; border-radius:50%;
  background:rgba(11,32,56,0.7); color:#fff; border:none; font-size:20px; line-height:1; cursor:pointer;
  display:flex; align-items:center; justify-content:center; transition:background .2s ease;
}
.cert-modal-close:hover{background:var(--blue-900);}
.cert-modal-nav{
  position:absolute; top:50%; transform:translateY(-50%); z-index:3; width:44px; height:44px; border-radius:50%;
  background:rgba(255,255,255,0.92); border:1px solid var(--sky-200); color:var(--blue-900); font-size:22px;
  cursor:pointer; display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow-sm);
  transition:background .2s ease, transform .2s ease;
}
.cert-modal-nav:hover{background:var(--blue-800); color:#fff; transform:translateY(-50%) scale(1.06);}
.cert-prev{left:-14px;}
.cert-next{right:-14px;}
@media(max-width:640px){
  .cert-modal-nav{width:36px; height:36px; font-size:18px;}
  .cert-prev{left:6px;} .cert-next{right:6px;}
}

/* ===== INFRASTRUCTURE ===== */
.infra-grid{display:grid; grid-template-columns:1.1fr 0.9fr; gap:60px;}
@media(max-width:900px){ .infra-grid{grid-template-columns:1fr; gap:36px;} }
.org-list{border-top:1px solid var(--sky-200);}
.org-item{padding:20px 0; border-bottom:1px solid var(--sky-200);}
.org-item .head{display:flex; justify-content:space-between; align-items:baseline; margin-bottom:8px;}
.org-item h4{font-size:16px; font-family:'Merriweather',serif;}
.org-item .count{
  font-family:'IBM Plex Mono', monospace; font-size:12px; color:#fff; background:var(--blue-800);
  padding:3px 11px; border-radius:20px; font-weight:600;
}
.org-item ul li{
  font-size:13.5px; color:var(--ink-soft); padding:4px 0 4px 16px; position:relative;
}
.org-item ul li::before{content:"›"; position:absolute; left:0; color:var(--blue-600); font-weight:700;}
.facility-grid{display:grid; grid-template-columns:1fr 1fr; gap:16px;}
.facility-card{
  background:var(--pale); border:1px solid var(--sky-200); border-radius:var(--radius); padding:24px 20px; text-align:left;
  box-shadow:var(--shadow-sm);
}
.facility-card .ic{
  width:40px; height:40px; border-radius:6px; background:var(--blue-800); display:flex; align-items:center;
  justify-content:center; margin-bottom:14px; color:#fff;
}
.facility-card h4{font-size:14.5px; margin-bottom:4px; font-family:'Merriweather',serif;}
.facility-card p{font-size:12.5px; color:var(--ink-soft); margin:0;}

/* ===== REACH / MAP ===== */
.reach{background:var(--blue-900); color:#fff; overflow:hidden;}
.reach .eyebrow{color:var(--blue-900); background:var(--gold-light); border-left-color:var(--gold);}
.reach-head{max-width:1000px; margin:0 auto 20px; text-align:center;}
.reach-head h2{color:#fff; font-size:clamp(26px,3vw,36px); margin-bottom:14px;}
.reach-head p{color:rgba(255,255,255,0.65);}
.reach-body{
  display:grid; grid-template-columns:1.15fr 0.85fr; gap:10px; align-items:center; margin-top:40px;
}
@media(max-width:900px){ .reach-body{grid-template-columns:1fr;} }
.globe-wrap{position:relative; display:flex; justify-content:center; align-items:center;}
.globe-wrap svg{width:100%; max-width:520px; height:auto;}
.meridians{transform-origin:300px 300px; animation:spin 50s linear infinite;}
@keyframes spin{to{transform:rotate(360deg);}}
@media (prefers-reduced-motion: reduce){ .meridians{animation:none;} }
.globe-line{stroke:rgba(168,198,232,0.35); fill:none;}
.globe-outline{stroke:rgba(168,198,232,0.55); fill:url(#globeFill);}
.conn{stroke:var(--gold); stroke-width:1.4; fill:none; stroke-dasharray:4 5; opacity:0.75; animation:dash 3s linear infinite;}
@keyframes dash{to{stroke-dashoffset:-18;}}
.marker{cursor:pointer;}
.marker circle.dot{fill:#fff; transition:r .2s ease;}
.marker.hq circle.dot{fill:var(--gold);}
.marker:hover circle.dot, .marker:focus circle.dot{r:7;}
.marker .pulse{
  fill:none; stroke:var(--gold); stroke-width:1.5; opacity:0;
  transform-origin:center; transform-box:fill-box;
  animation:pulseRing 2.6s ease-out infinite;
}
@keyframes pulseRing{0%{opacity:0.6; transform:scale(0.4);} 80%{opacity:0;} 100%{opacity:0; transform:scale(2.2);}}
@media (prefers-reduced-motion: reduce){ .marker .pulse{animation:none; opacity:0;} }

.reach-panel{
  background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.16); border-radius:var(--radius);
  padding:34px; min-height:230px;
}
.reach-panel .city{font-family:'IBM Plex Mono', monospace; font-size:12px; color:var(--gold-light); letter-spacing:0.1em; text-transform:uppercase; margin-bottom:10px; font-weight:600;}
.reach-panel h3{color:#fff; font-size:22px; margin-bottom:12px;}
.reach-panel p{color:rgba(255,255,255,0.68); font-size:14.5px;}
.reach-hint{font-size:12.5px; color:rgba(255,255,255,0.4); margin-top:18px;}

/* ===== PARTNERS ===== */
.partners{background:var(--pale);}
.partners-head{max-width:680px; margin:0 auto 12px; text-align:center;}
.partners-head .eyebrow{justify-content:center;}
.partners-head h2{font-size:clamp(26px,3vw,36px); margin-bottom:14px;}
.partners-head p{color:var(--ink-soft);}

.partners-grid{
  margin-top:48px; display:grid; grid-template-columns:repeat(4, 1fr); gap:22px;
}
@media(max-width:860px){ .partners-grid{grid-template-columns:repeat(3, 1fr);} }
@media(max-width:600px){ .partners-grid{grid-template-columns:repeat(2, 1fr); gap:14px;} }

.partner-chip{
  background:var(--white); border:1px solid var(--sky-200); border-radius:var(--radius);
  padding:26px 30px; display:flex; align-items:center; justify-content:center;
  height:150px; transition:border-color .2s ease, transform .2s ease, box-shadow .2s ease;
  box-shadow:var(--shadow-sm);
}
.partner-chip:hover{border-color:var(--blue-500); transform:translateY(-4px); box-shadow:var(--shadow-md);}
.partner-chip img{
  max-height:96px; max-width:100%; width:auto; height:auto; object-fit:contain;
}

.partners-note{
  text-align:center; margin-top:30px; font-size:13.5px; color:var(--ink-soft); font-style:italic;
}

.partner-stats{
  margin-top:56px; display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--sky-200);
  border:1px solid var(--sky-200); border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-sm);
}
@media(max-width:760px){ .partner-stats{grid-template-columns:1fr 1fr;} }
.partner-stat{background:var(--white); padding:30px 24px; text-align:center;}
.partner-stat .num{font-family:'IBM Plex Mono', monospace; font-size:27px; color:var(--blue-800); font-weight:600;}
.partner-stat .lbl{font-size:12.5px; color:var(--ink-soft); margin-top:6px;}

/* ===== CONTACT ===== */
.contact{background:var(--white); border-top:1px solid var(--sky-200);}
.contact-grid{display:grid; grid-template-columns:0.9fr 1.1fr; gap:56px;}
@media(max-width:900px){ .contact-grid{grid-template-columns:1fr; gap:34px;} }
.contact h2{font-size:clamp(26px,3vw,34px); margin-bottom:16px;}
.contact p{color:var(--ink-soft); max-width:420px; margin-bottom:24px;}
.contact-info{margin-top:20px; border:1px solid var(--sky-200); border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-sm);}
.contact-map{
  margin-top:20px; border:1px solid var(--sky-200); border-radius:var(--radius); overflow:hidden;
  box-shadow:var(--shadow-sm); position:relative; width:100%; height:280px;
}
.contact-map iframe{position:absolute; inset:0; width:100%; height:100%; display:block;}
.contact-info .row{display:flex; gap:14px; padding:18px 20px; border-bottom:1px solid var(--sky-200); background:var(--pale);}
.contact-info .row:nth-child(even){background:var(--white);}
.contact-info .row:last-child{border-bottom:none;}
.contact-info .row .k{font-family:'Source Sans 3', sans-serif; font-weight:700; font-size:11px; color:var(--blue-600); text-transform:uppercase; width:70px; flex-shrink:0; padding-top:2px; letter-spacing:0.04em;}
.contact-info .row .v{font-size:14.5px; color:var(--ink);}
.contact-info .row .v a:hover{color:var(--blue-600); text-decoration:underline;}
form.inquiry{display:grid; gap:16px; background:var(--pale); border:1px solid var(--sky-200); border-radius:var(--radius); padding:32px; box-shadow:var(--shadow-sm);}
.form-row{display:grid; grid-template-columns:1fr 1fr; gap:16px;}
@media(max-width:560px){ .form-row{grid-template-columns:1fr;} }
form.inquiry label{
  font-family:'Source Sans 3', sans-serif; font-weight:700; font-size:11px; letter-spacing:0.05em; text-transform:uppercase;
  color:var(--ink-soft); margin-bottom:6px; display:block;
}
form.inquiry input, form.inquiry select, form.inquiry textarea{
  width:100%; border:1px solid var(--sky-300); border-radius:3px; padding:12px 14px; font-family:'Source Sans 3', sans-serif;
  font-size:14.5px; color:var(--ink); background:var(--white);
}
form.inquiry input:focus, form.inquiry select:focus, form.inquiry textarea:focus{
  outline:2px solid var(--blue-500); outline-offset:1px; border-color:var(--blue-500);
}
form.inquiry textarea{min-height:110px; resize:vertical;}
form.inquiry button{
  justify-self:start; background:var(--blue-800); color:#fff; border:none; padding:14px 32px;
  font-weight:700; font-size:14px; border-radius:3px; cursor:pointer; transition:background .2s ease;
}
form.inquiry button:hover{background:var(--blue-900);}
#form-note{font-size:13px; color:var(--blue-600); display:none; margin-top:-6px; font-weight:600;}

/* ===== CAREERS / APPLY ===== */
.careers{background:var(--pale); border-top:1px solid var(--sky-200);}
.careers-inner{max-width:640px; margin:0 auto; text-align:center; padding:64px 24px;}
.careers-inner h2{font-size:clamp(24px,3vw,32px); margin-bottom:14px;}
.careers-inner p{color:var(--ink-soft); margin-bottom:28px;}
.careers-inner .btn{display:inline-flex;}

/* footer */
footer{background:var(--blue-900); color:rgba(255,255,255,0.65); padding-top:64px;}
.footer-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:40px; padding-bottom:44px; border-bottom:1px solid rgba(255,255,255,0.12);}
@media(max-width:760px){ .footer-grid{grid-template-columns:1fr; gap:32px;} }
.footer-grid h4{color:#fff; font-size:13px; margin-bottom:18px; font-family:'Source Sans 3', sans-serif; letter-spacing:0.06em; text-transform:uppercase; font-weight:700;}
.footer-grid li{padding:7px 0; font-size:14px;}
.footer-grid li a:hover{color:#fff;}
.footer-brand .logo-mark img{filter:brightness(0) invert(1); opacity:0.92;}
.footer-brand .word{color:#fff;}
.footer-brand .word span{color:var(--gold-light);}
.footer-brand p{max-width:320px; font-size:13.5px; color:rgba(255,255,255,0.5); margin-top:14px;}
.bottom-bar{
  display:flex; justify-content:space-between; align-items:center; padding:20px 0;
  font-size:12.5px; color:rgba(255,255,255,0.4); flex-wrap:wrap; gap:16px;
}
.bottom-bar-brand{display:flex; align-items:center; gap:10px;}
.bottom-logo{height:26px; width:auto; border-radius:4px; opacity:0.9;}
.bottom-bar .legal-links{display:flex; gap:18px;}
.bottom-bar .legal-links a:hover{color:rgba(255,255,255,0.75);}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float{
  --wa-icon:#fff;
  position:fixed; right:24px; bottom:24px; z-index:250;
  width:58px; height:58px; border-radius:50%;
  background:#25D366; display:flex; align-items:center; justify-content:center;
  box-shadow:0 6px 18px rgba(0,0,0,0.25);
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.whatsapp-float svg{width:30px; height:30px;}
.whatsapp-float:hover{
  background:#1ebc59; transform:translateY(-3px) scale(1.05);
  box-shadow:0 10px 24px rgba(0,0,0,0.3);
}
.whatsapp-float::before{
  content:""; position:absolute; inset:0; border-radius:50%;
  box-shadow:0 0 0 0 rgba(37,211,102,0.55);
  animation:wa-pulse 2.4s infinite;
  pointer-events:none;
}
@keyframes wa-pulse{
  0%{ box-shadow:0 0 0 0 rgba(37,211,102,0.45); }
  70%{ box-shadow:0 0 0 14px rgba(37,211,102,0); }
  100%{ box-shadow:0 0 0 0 rgba(37,211,102,0); }
}
@media(max-width:640px){
  .whatsapp-float{ right:16px; bottom:16px; width:52px; height:52px; }
  .whatsapp-float svg{ width:26px; height:26px; }
}
@media(prefers-reduced-motion: reduce){
  .whatsapp-float::before{ animation:none; }
}