:root {
  --navy: #0a3d62;
  --navy-deep: #072a44;
  --blue: #1e78d6;
  --blue-soft: #eaf2fc;
  --gold: #f2a900;
  --gold-soft: #fef3da;
  --ink: #0f1b2d;
  --muted: #5b6b7f;
  --bg: #f4f8fc;
  --line: #e3ebf3;
  --white: #ffffff;
  --radius: 22px;
  --radius-lg: 30px;
  --shadow: 0 22px 60px rgba(10, 61, 98, 0.12);
  --shadow-sm: 0 10px 30px rgba(10, 61, 98, 0.08);
  --container: 1160px;

  color-scheme: light;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', 'Inter', sans-serif;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

button, input, textarea, a { font: inherit; }

img { max-width: 100%; display: block; }

a { color: var(--blue); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 26px;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--blue);
  margin-bottom: 14px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: var(--navy-deep); box-shadow: 0 14px 30px rgba(242, 169, 0, 0.32); }
.btn-primary:hover { box-shadow: 0 18px 38px rgba(242, 169, 0, 0.42); }
.btn-blue { background: var(--blue); color: #fff; box-shadow: 0 14px 30px rgba(30, 120, 214, 0.3); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.45); }
.btn-outline:hover { background: rgba(255, 255, 255, 0.12); }
.btn-ghost { background: var(--blue-soft); color: var(--navy); }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 10px;
  padding-bottom: 10px;
}
.topbar .group { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar a { color: rgba(255, 255, 255, 0.82); text-decoration: none; }
.topbar a:hover { color: #fff; }
.topbar .socials a {
  width: 30px; height: 30px;
  display: inline-grid; place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
}
.topbar .socials a:hover { background: var(--gold); color: var(--navy-deep); }

/* ---------- Navbar ---------- */
.navbar {
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  backdrop-filter: saturate(180%) blur(12px);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.navbar .logo img { height: 42px; }
.navbar nav { display: flex; align-items: center; gap: 26px; }
.navbar nav a {
  color: #33445a;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.96rem;
  position: relative;
  padding: 4px 0;
}
.navbar nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.2s ease;
}
.navbar nav a:hover { color: var(--navy); }
.navbar nav a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(1200px 500px at 80% -10%, #1e78d6 0%, transparent 60%),
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 55%, #11507f 100%);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/pattern.svg');
  opacity: 0.5;
  pointer-events: none;
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding-top: 84px;
  padding-bottom: 90px;
}
.hero .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
}
.hero h1 {
  margin: 0 0 20px;
  font-size: clamp(2.5rem, 4.8vw, 4rem);
  color: #fff;
}
.hero h1 .accent { color: var(--gold); }
.hero p.sub {
  max-width: 540px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero-trust { display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.hero-trust .avatars { display: flex; }
.hero-trust .avatars span {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid var(--navy);
  margin-left: -10px;
  display: grid; place-items: center;
  font-size: 0.8rem; font-weight: 700; color: #fff;
}
.hero-trust .avatars span:first-child { margin-left: 0; }

.hero-visual { position: relative; }
.hero-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  object-fit: cover;
  aspect-ratio: 4 / 4.2;
}
.hero-float {
  position: absolute;
  left: -26px;
  bottom: 34px;
  background: #fff;
  color: var(--ink);
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 210px;
}
.hero-float .ic {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--gold-soft); color: var(--gold);
  display: grid; place-items: center; font-size: 1.2rem;
}
.hero-float strong { display: block; font-size: 1.3rem; font-family: 'Poppins', sans-serif; color: var(--navy); }
.hero-float span { font-size: 0.82rem; color: var(--muted); }

/* ---------- Stats band ---------- */
.stats {
  margin: -44px auto 0;
  position: relative;
  z-index: 5;
}
.stats-grid {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.stat {
  padding: 30px 26px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; }
.stat .num { font-family: 'Poppins', sans-serif; font-size: 2.1rem; font-weight: 700; color: var(--navy); }
.stat .num span { color: var(--gold); }
.stat .label { color: var(--muted); font-size: 0.92rem; margin-top: 4px; }

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section.tight { padding: 60px 0; }
.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head.left { text-align: left; margin-left: 0; }
.section h2 { margin: 0 0 14px; font-size: clamp(1.9rem, 3vw, 2.6rem); }
.section .lead { margin: 0; color: var(--muted); font-size: 1.06rem; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split .media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 5 / 4;
}
.split .media { position: relative; }
.media-badge {
  position: absolute;
  right: -18px;
  bottom: -22px;
  background: var(--gold);
  color: var(--navy-deep);
  border-radius: 18px;
  padding: 18px 22px;
  font-family: 'Poppins', sans-serif;
  box-shadow: var(--shadow);
}
.media-badge strong { display: block; font-size: 1.7rem; }
.media-badge span { font-size: 0.8rem; font-weight: 600; }

/* mission / vision */
.mv-grid { display: grid; gap: 20px; grid-template-columns: 1fr 1fr; margin-top: 26px; }
.mv {
  background: var(--blue-soft);
  border-radius: var(--radius);
  padding: 24px;
}
.mv h4 { margin: 0 0 8px; color: var(--navy); display: flex; align-items: center; gap: 10px; }
.mv p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* ---------- Cards / services ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card h3 { margin: 0 0 12px; font-size: 1.35rem; }
.card p { margin: 0; color: var(--muted); }

.icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  display: grid; place-items: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  background: var(--blue-soft); color: var(--blue);
}
.icon.gold { background: var(--gold-soft); color: var(--gold); }

/* core values (C.A.R.E.-I) */
.values-grid { grid-template-columns: repeat(5, 1fr); }
.value-card { padding: 28px 24px; text-align: center; }
.value-letter {
  width: 60px; height: 60px; margin: 0 auto 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #fff;
  display: grid; place-items: center;
  font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.8rem;
}
.value-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.value-card p { font-size: 0.9rem; }

.service-card { overflow: hidden; padding: 0; }
.service-card .thumb { height: 200px; overflow: hidden; }
.service-card .thumb img { height: 100%; width: 100%; object-fit: cover; transition: transform 0.4s ease; }
.service-card:hover .thumb img { transform: scale(1.06); }
.service-card .body { padding: 30px 34px 34px; }

.feature-list { display: grid; gap: 14px; margin-top: 20px; }
.feature-item { display: flex; gap: 12px; align-items: flex-start; }
.feature-item .tick {
  flex: none;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--gold-soft); color: var(--gold);
  display: grid; place-items: center; font-size: 0.8rem; font-weight: 700;
  margin-top: 2px;
}
.feature-item strong { display: block; color: var(--ink); font-size: 0.98rem; }
.feature-item span { color: var(--muted); font-size: 0.92rem; }

/* benefits band */
.benefits { background: linear-gradient(160deg, var(--navy-deep), var(--navy)); color: #fff; }
.benefits .section-head h2, .benefits h3 { color: #fff; }
.benefits .lead { color: rgba(255,255,255,0.8); }
.benefit {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 30px;
}
.benefit .icon { background: rgba(255,255,255,0.12); color: var(--gold); }
.benefit h3 { font-size: 1.2rem; margin: 0 0 10px; }
.benefit p { color: rgba(255, 255, 255, 0.78); }

/* steps */
.step { display: flex; gap: 18px; }
.step .num {
  flex: none;
  width: 46px; height: 46px; border-radius: 14px;
  background: var(--navy); color: #fff;
  display: grid; place-items: center;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.1rem;
}
.step h4 { margin: 4px 0 6px; }
.step p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.steps { display: grid; gap: 26px; }

.portal-cta {
  margin-top: 30px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
}
.portal-cta h3 { color: #fff; margin: 0 0 8px; }
.portal-cta p { color: rgba(255,255,255,0.85); margin: 0; max-width: 520px; }

/* ---------- Team ---------- */
.team-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease;
}
.team-card:hover { transform: translateY(-6px); }
.team-card .avatar {
  width: 92px; height: 92px; margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #fff;
  display: grid; place-items: center;
  font-family: 'Poppins', sans-serif; font-size: 1.6rem; font-weight: 700;
  overflow: hidden;
}
.team-card .avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.team-card h3 { margin: 0 0 4px; font-size: 1.15rem; }
.team-card .role {
  display: inline-block;
  background: var(--blue-soft); color: var(--navy);
  padding: 4px 14px; border-radius: 999px;
  font-size: 0.82rem; font-weight: 600; margin-bottom: 12px;
}
.team-card a { color: var(--muted); text-decoration: none; font-size: 0.92rem; }
.team-card a:hover { color: var(--blue); }

/* Executive team — large portrait cards */
#leadership .team-card { padding: 16px 16px 24px; }
#leadership .team-card .avatar {
  width: 100%; height: auto; aspect-ratio: 1 / 1.08;
  margin: 0 0 18px;
  border-radius: 16px;
  font-size: 2.4rem;
}
#leadership .team-card .avatar img { border-radius: 16px; }
#leadership .team-card .avatar.avatar-fallback { border-radius: 16px; }
#leadership .team-card h3 { font-size: 1.4rem; margin-bottom: 8px; }
#leadership .team-card .role {
  background: none; color: var(--blue);
  padding: 0; margin-bottom: 0;
  text-transform: uppercase; letter-spacing: 0.04em;
  font-size: 0.92rem; font-weight: 700;
}

/* ---------- Contact ---------- */
.contact-panel { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 30px; }
.input-group { display: grid; gap: 8px; margin-bottom: 18px; }
.input-group label { font-weight: 600; color: #33445a; font-size: 0.92rem; }
.input-group input, .input-group textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  transition: border 0.15s ease, box-shadow 0.15s ease;
}
.input-group input:focus, .input-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30, 120, 214, 0.15);
}
.input-group textarea { resize: vertical; min-height: 130px; }
.contact-info { display: grid; gap: 18px; align-content: start; }
.contact-info .row { display: flex; gap: 14px; align-items: flex-start; }
.contact-info .ic {
  flex: none; width: 46px; height: 46px; border-radius: 12px;
  background: var(--blue-soft); color: var(--blue);
  display: grid; place-items: center; font-size: 1.15rem;
}
.contact-info h4 { margin: 0 0 2px; font-size: 1rem; }
.contact-info p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.contact-info .map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.contact-info iframe { width: 100%; height: 180px; border: 0; display: block; }

/* ---------- Footer ---------- */
footer.site {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.72);
  padding-top: 64px;
}
footer.site .cols {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 44px;
}
footer.site img { height: 40px; margin-bottom: 18px; }
footer.site p { margin: 0 0 14px; font-size: 0.94rem; }
footer.site h4 { color: #fff; font-size: 1.02rem; margin: 0 0 18px; }
footer.site ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
footer.site a { color: rgba(255, 255, 255, 0.72); text-decoration: none; font-size: 0.94rem; }
footer.site a:hover { color: var(--gold); }
footer.site .socials { display: flex; gap: 10px; margin-top: 6px; }
footer.site .socials a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: grid; place-items: center; font-size: 0.82rem;
}
footer.site .socials a:hover { background: var(--gold); color: var(--navy-deep); }
footer.site .bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: 0.88rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; padding-top: 64px; padding-bottom: 70px; }
  .hero-visual { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split .media { order: -1; }
  .contact-panel { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  footer.site .cols { grid-template-columns: 1fr 1fr; gap: 28px; }
  .navbar nav, .nav-actions .btn { display: none; }
  .nav-toggle {
    display: inline-grid; place-items: center;
    width: 44px; height: 44px; border-radius: 12px;
    background: var(--blue-soft); color: var(--navy);
    border: none; cursor: pointer; font-size: 1.3rem;
  }
  .navbar nav.open {
    display: grid;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    padding: 18px 26px 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    gap: 8px;
  }
}

@media (max-width: 640px) {
  .topbar .group.contact { display: none; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: none; }
  .grid-2, .grid-3, .mv-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 60px 0; }
  .portal-cta { padding: 30px; }
  footer.site .cols { grid-template-columns: 1fr; }
  .media-badge { right: 12px; }
}
