
:root{
  --teal:#0d4f58;
  --teal-deep:#083b42;
  --teal-soft:#0f6670;
  --green:#a8be35;
  --mint:#9bd4d2;
  --ink:#1f2a2d;
  --muted:#6b777a;
  --paper:#f7f8f6;
  --white:#ffffff;
  --line:#dfe5e3;
  --shadow:0 20px 60px rgba(8,59,66,.10);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--ink);
  background:#fff;
  line-height:1.55;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.container{width:min(1180px,calc(100% - 40px));margin:auto}
.topbar{
  background:var(--teal-deep);
  color:#dcebec;
  font-size:13px;
}
.topbar .container{
  min-height:34px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
}
.topbar a{color:#fff}
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(13,79,88,.08);
}
.navbar{
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}
.brand{display:flex;align-items:center}
.brand img{width:310px;height:auto}
.nav-links{display:flex;align-items:center;gap:24px;font-size:14px;font-weight:700;color:#344247}
.nav-links a{padding:31px 0;position:relative}
.nav-links a:not(.employee)::after{
  content:"";position:absolute;left:0;bottom:20px;width:0;height:2px;background:var(--green);transition:.25s
}
.nav-links a:hover::after,.nav-links a.active::after{width:100%}
.employee{
  padding:11px 16px!important;
  border-radius:8px;
  background:var(--teal);
  color:#fff;
}
.menu-toggle{display:none;border:0;background:none;font-size:26px;color:var(--teal)}
.hero{
  overflow:hidden;
  position:relative;
  background:
    radial-gradient(circle at 78% 32%, rgba(155,212,210,.28), transparent 28%),
    linear-gradient(125deg,#f8fbfa 0%,#ffffff 50%,#edf5f2 100%);
}
.hero::after{
  content:"";
  position:absolute;
  width:460px;height:460px;
  right:-180px;top:-160px;
  border:78px solid rgba(168,190,53,.09);
  border-radius:50%;
}
.hero-grid{
  min-height:650px;
  display:grid;
  grid-template-columns:1.08fr .92fr;
  align-items:center;
  gap:60px;
  position:relative;
  z-index:2;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--teal);
  text-transform:uppercase;
  letter-spacing:2.2px;
  font-size:12px;
  font-weight:800;
  margin-bottom:18px;
}
.eyebrow:before{content:"";width:34px;height:2px;background:var(--green)}
h1,h2,h3{margin-top:0}
h1{
  font-size:clamp(44px,6vw,78px);
  line-height:1.02;
  letter-spacing:-2.6px;
  margin-bottom:24px;
  color:var(--teal-deep);
}
.hero p{
  max-width:660px;
  font-size:19px;
  color:#536267;
  margin:0 0 34px;
}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 22px;
  border-radius:7px;
  font-weight:700;
  font-size:14px;
  transition:.2s;
}
.btn-primary{background:var(--teal);color:#fff}
.btn-primary:hover{background:var(--teal-deep);transform:translateY(-1px)}
.btn-secondary{border:1px solid var(--teal);color:var(--teal);background:#fff}
.hero-card{
  position:relative;
  background:linear-gradient(145deg,var(--teal-deep),var(--teal));
  border-radius:24px;
  padding:34px;
  color:#fff;
  box-shadow:var(--shadow);
  min-height:430px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.hero-card:before{
  content:"";
  position:absolute;inset:0;
  border-radius:24px;
  background:linear-gradient(135deg,transparent 45%,rgba(255,255,255,.06));
  pointer-events:none;
}
.hero-mark{
  width:170px;height:170px;border-radius:22px;
  overflow:hidden;background:#fff;
  display:flex;align-items:center;justify-content:center;
  padding:10px;
}
.hero-mark img{width:100%;height:100%;object-fit:contain}
.lifecycle-label{
  font-size:12px;text-transform:uppercase;letter-spacing:2px;color:#bed9db;margin-bottom:12px;font-weight:700
}
.lifecycle{display:grid;grid-template-columns:repeat(4,1fr);gap:8px}
.lifecycle span{
  font-size:11px;text-align:center;padding:12px 5px;border:1px solid rgba(255,255,255,.18);border-radius:8px;background:rgba(255,255,255,.06)
}
.section{padding:92px 0}
.section.alt{background:var(--paper)}
.section-head{display:flex;justify-content:space-between;align-items:end;gap:24px;margin-bottom:40px}
.section-head h2{font-size:40px;line-height:1.12;color:var(--teal-deep);margin-bottom:0}
.section-head p{max-width:560px;color:var(--muted);margin:0}
.cap-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.card{
  background:#fff;border:1px solid var(--line);border-radius:16px;padding:28px;transition:.2s;
}
.card:hover{transform:translateY(-4px);box-shadow:0 16px 34px rgba(8,59,66,.08);border-color:rgba(13,79,88,.18)}
.card .num{font-size:12px;font-weight:800;color:var(--green);letter-spacing:1.5px;margin-bottom:28px}
.card h3{font-size:20px;color:var(--teal-deep);margin-bottom:12px}
.card p{color:var(--muted);font-size:14px;margin:0}
.focus{
  display:grid;grid-template-columns:1fr 1fr;gap:26px;align-items:stretch
}
.focus-panel{
  border-radius:22px;
  padding:42px;
  min-height:360px;
}
.focus-panel.dark{
  background:var(--teal-deep);color:#fff
}
.focus-panel.light{
  background:linear-gradient(135deg,#eef5ef,#f9fbf8);
  border:1px solid var(--line)
}
.focus-panel h3{font-size:32px;line-height:1.1;margin-bottom:18px}
.focus-panel.dark h3{color:#fff}
.focus-panel p{margin:0;color:inherit;opacity:.82}
.pills{display:flex;flex-wrap:wrap;gap:10px;margin-top:30px}
.pill{padding:9px 12px;border-radius:999px;font-size:12px;font-weight:700;border:1px solid rgba(255,255,255,.22)}
.light .pill{border-color:#cad8d5;color:var(--teal)}
.quote{
  text-align:center;
  max-width:900px;margin:0 auto;
}
.quote h2{font-size:42px;line-height:1.18;color:var(--teal-deep);margin-bottom:18px}
.quote p{font-size:18px;color:var(--muted);margin:0}
.cta{
  background:linear-gradient(120deg,var(--teal-deep),var(--teal));
  color:#fff;border-radius:22px;padding:46px;
  display:flex;align-items:center;justify-content:space-between;gap:26px
}
.cta h2{font-size:34px;margin:0 0 8px}
.cta p{margin:0;color:#d5e4e5}
.cta .btn{background:#fff;color:var(--teal-deep)}
.site-footer{background:#072f35;color:#d4e1e2;padding:56px 0 22px}
.footer-grid{display:grid;grid-template-columns:1.35fr .8fr 1fr;gap:44px}
.footer-logo{width:330px;background:#fff;border-radius:10px;padding:9px;margin-bottom:18px}
.footer-title{color:#fff;font-size:13px;text-transform:uppercase;letter-spacing:1.4px;font-weight:800;margin-bottom:14px}
.footer-links{display:grid;gap:8px;font-size:14px}
.footer-note{margin-top:34px;padding-top:20px;border-top:1px solid rgba(255,255,255,.12);font-size:12px;color:#a9c0c3;display:flex;justify-content:space-between;gap:20px}
.page-hero{padding:78px 0 64px;background:linear-gradient(135deg,#f5f8f6,#edf4f1)}
.page-hero h1{font-size:52px;margin-bottom:14px}
.page-hero p{max-width:700px;margin:0;color:var(--muted);font-size:17px}
.contact-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px}
.office{border:1px solid var(--line);border-radius:18px;padding:34px;background:#fff}
.office h2{font-size:26px;color:var(--teal-deep)}
.office .tag{font-size:11px;letter-spacing:1.5px;text-transform:uppercase;color:var(--green);font-weight:800}
.office p{color:#5c696d}
.office a{color:var(--teal);font-weight:700}
.employee-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px}
.portal{
  border:1px solid var(--line);border-radius:20px;padding:36px;background:#fff;box-shadow:0 12px 30px rgba(8,59,66,.05)
}
.portal-icon{
  width:54px;height:54px;border-radius:12px;background:#edf5f2;color:var(--teal);
  display:flex;align-items:center;justify-content:center;font-size:24px;margin-bottom:26px
}
.portal h2{font-size:27px;color:var(--teal-deep);margin-bottom:8px}
.portal p{color:var(--muted);min-height:54px}
.portal .btn{margin-top:10px}
.security{
  margin-top:26px;padding:18px 20px;border-left:4px solid var(--green);background:#f7faf6;color:#59666a;font-size:14px
}
.coming{
  min-height:56vh;display:flex;align-items:center;text-align:center
}
.coming-inner{max-width:720px;margin:auto}
.coming .badge{display:inline-block;padding:8px 11px;background:#edf5f2;color:var(--teal);border-radius:999px;font-size:12px;font-weight:800;letter-spacing:1px;text-transform:uppercase;margin-bottom:18px}
.coming h1{font-size:52px}
.coming p{font-size:17px;color:var(--muted)}
.muted{color:var(--muted)}
@media(max-width:980px){
  .nav-links{display:none;position:absolute;left:0;right:0;top:82px;background:#fff;border-top:1px solid var(--line);padding:18px 20px;flex-direction:column;align-items:flex-start;gap:0}
  .nav-links.open{display:flex}
  .nav-links a{padding:13px 0;width:100%}
  .nav-links a::after{display:none}
  .menu-toggle{display:block}
  .brand img{width:250px}
  .hero-grid{grid-template-columns:1fr;padding:78px 0}
  .hero-card{min-height:360px}
  .cap-grid{grid-template-columns:repeat(2,1fr)}
  .focus{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .contact-grid,.employee-grid{grid-template-columns:1fr}
}
@media(max-width:640px){
  .container{width:min(100% - 28px,1180px)}
  .topbar .container{justify-content:center;text-align:center;min-height:40px}
  .topbar .right{display:none}
  .navbar{min-height:72px}
  .nav-links{top:72px}
  .brand img{width:205px}
  h1{font-size:48px;letter-spacing:-1.6px}
  .hero-grid{min-height:auto;gap:34px;padding:62px 0}
  .hero p{font-size:17px}
  .hero-card{padding:26px}
  .hero-mark{width:130px;height:130px}
  .lifecycle{grid-template-columns:repeat(2,1fr)}
  .section{padding:68px 0}
  .section-head{display:block}
  .section-head h2,.quote h2{font-size:34px}
  .section-head p{margin-top:12px}
  .cap-grid{grid-template-columns:1fr}
  .focus-panel{padding:30px}
  .cta{padding:32px;display:block}
  .cta .btn{margin-top:22px}
  .footer-logo{width:100%;max-width:330px}
  .footer-note{display:block}
  .page-hero h1,.coming h1{font-size:42px}
}


/* Homepage project carousel */
.hero-card-slider{position:relative;padding:22px;gap:18px}
.hero-logo-badge{
  position:absolute;top:34px;left:34px;z-index:8;
  width:72px;height:72px;border-radius:15px;
  background:rgba(255,255,255,.94);padding:7px;
  box-shadow:0 10px 28px rgba(0,0,0,.16)
}
.hero-logo-badge img{width:100%;height:100%;object-fit:contain}
.project-slider{
  position:relative;height:285px;border-radius:18px;overflow:hidden;background:#0a3940
}
.project-slide{
  position:absolute;inset:0;opacity:0;visibility:hidden;transition:opacity .8s ease
}
.project-slide.active{opacity:1;visibility:visible}
.project-mosaic{
  display:grid;grid-template-columns:1.5fr .75fr;grid-template-rows:1fr 1fr;
  gap:3px;width:100%;height:100%;background:#0a3940
}
.project-mosaic img{width:100%;height:100%;object-fit:cover;display:block}
.project-mosaic .project-main{grid-row:1 / span 2}
.project-nav{
  position:absolute;top:50%;transform:translateY(-50%);z-index:7;
  width:38px;height:38px;border-radius:50%;
  border:1px solid rgba(255,255,255,.34);
  background:rgba(4,35,40,.56);color:#fff;font-size:28px;line-height:1;
  cursor:pointer;backdrop-filter:blur(4px)
}
.project-prev{left:12px}.project-next{right:12px}
.project-dots{
  position:absolute;z-index:7;left:50%;bottom:12px;transform:translateX(-50%);
  display:flex;gap:8px
}
.project-dots button{
  width:8px;height:8px;border:0;border-radius:50%;padding:0;
  background:rgba(255,255,255,.58);cursor:pointer
}
.project-dots button.active{width:22px;border-radius:999px;background:#fff}
@media(max-width:640px){
  .project-slider{height:260px}
  .hero-logo-badge{width:58px;height:58px;top:30px;left:30px}
  .project-mosaic{grid-template-columns:1.35fr .65fr}
}
