:root{
  --navy:#0D1B2A;
  --orange:#D96C0F;
  --teal:#55C7D6;
  --gray:#6B7280;
  --light:#F3F4F6;
  --border:#E5E7EB;
  --white:#FFFFFF;
  --shadow:0 8px 24px rgba(13,27,42,.08);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  color:var(--navy);
  line-height:1.5;
  background:var(--white);
}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}

.container{max-width:1120px;margin:0 auto;padding:0 20px}

/* Top accent bar */
.topbar{height:10px;background:var(--teal)}

/* Header / Nav */
.header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-bottom:1px solid var(--border);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{display:flex; align-items:center; gap:12px}
.brand img{width:140px; height:auto}

.nav-links{display:flex; align-items:center; gap:20px}
.nav-links a{font-weight:600; color:var(--navy); opacity:.9}
.nav-links a:hover{opacity:1}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:12px;
  font-weight:700;
  border:1px solid transparent;
}
.btn-primary{background:var(--orange); color:var(--white)}
.btn-primary:hover{filter:brightness(.98)}
.btn-outline{border-color:var(--border); background:var(--white)}
.btn-outline:hover{background:var(--light)}

.hamburger{
  display:none;
  width:44px;height:44px;
  border:1px solid var(--border);
  border-radius:12px;
  background:var(--white);
}
.hamburger span{display:block;height:2px;background:var(--navy);margin:7px 10px;opacity:.9}

.mobile-menu{
  display:none;
  padding:10px 0 18px;
}
.mobile-menu a{display:block;padding:10px 0;border-top:1px solid var(--border);font-weight:700}

/* Hero */
.hero{
  padding:56px 0 34px;
  background:linear-gradient(180deg, rgba(85,199,214,.10), rgba(217,108,15,.05) 65%, rgba(255,255,255,1));
}
.hero-grid{display:grid;grid-template-columns:1.2fr .8fr;gap:32px;align-items:center}
.kicker{display:inline-flex;gap:10px;align-items:center;font-weight:800;color:var(--navy)}
.kicker-dot{width:10px;height:10px;border-radius:999px;background:var(--orange)}

.hero h1{font-size:44px;line-height:1.1;margin:14px 0 12px}
.hero p{font-size:18px;color:var(--gray);margin:0 0 20px}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap}

.hero-card{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:20px;
  box-shadow:var(--shadow);
  padding:18px;
}
.hero-card .meta{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-top:10px}
.meta-item{background:var(--light);border-radius:16px;padding:12px}
.meta-item .label{font-size:12px;color:var(--gray);font-weight:800;letter-spacing:.06em;text-transform:uppercase}
.meta-item .value{margin-top:8px;font-size:16px;font-weight:800;color:var(--navy)}

/* Sections */
.section{padding:56px 0}
.section-head{display:flex;justify-content:space-between;gap:20px;align-items:flex-end;margin-bottom:18px}
.section-head h2{font-size:30px;line-height:1.2;margin:0}
.section-head p{margin:0;color:var(--gray);max-width:580px}

.grid{display:grid;gap:14px}
.grid-2{grid-template-columns:repeat(2,1fr)}
.grid-3{grid-template-columns:repeat(3,1fr)}

.card{
  border:1px solid var(--border);
  border-radius:20px;
  padding:18px;
  background:var(--white);
  box-shadow:0 2px 14px rgba(13,27,42,.04);
}
.card .accent{width:44px;height:8px;border-radius:999px;background:var(--orange);margin-bottom:10px}
.card h3{margin:0 0 8px;font-size:18px}
.card p{margin:0;color:var(--gray)}

.badge{
  display:inline-flex;align-items:center;gap:10px;
  padding:10px 12px;
  background:var(--navy);
  color:var(--white);
  border-radius:999px;
  font-weight:800;
}
.badge small{opacity:.85;font-weight:700}

/* Achievements */
.achievements{background:var(--light)}
.media-row{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.media{
  border:1px solid var(--border);
  border-radius:20px;
  overflow:hidden;
  background:var(--white);
}
.media .cap{padding:12px 14px;color:var(--gray);font-weight:700}

/* Process */
.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.step{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:20px;
  padding:18px;
}
.step-top{display:flex;align-items:center;gap:12px;margin-bottom:10px}
.step-num{width:34px;height:34px;border-radius:999px;background:var(--orange);color:var(--white);display:flex;align-items:center;justify-content:center;font-weight:900}
.step p{margin:0;color:var(--gray)}

/* CTA */
.cta{
  background:var(--navy);
  color:var(--white);
  border-radius:24px;
  padding:26px;
  display:flex;
  gap:18px;
  align-items:center;
  justify-content:space-between;
}
.cta p{margin:6px 0 0;color:rgba(255,255,255,.85)}

/* Footer */
.footer{padding:26px 0;border-top:1px solid var(--border);background:var(--white)}
.footer-grid{display:flex;justify-content:space-between;gap:16px;flex-wrap:wrap}
.footer small{color:var(--gray)}

/* Responsive */
@media (max-width: 900px){
  .hero-grid{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .grid-3{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}
  .media-row{grid-template-columns:1fr}
}

@media (max-width: 760px){
  .nav-links{display:none}
  .hamburger{display:block}
  .mobile-menu.open{display:block}
  .hero h1{font-size:36px}
  .cta{flex-direction:column;align-items:flex-start}
}
