:root {
  --navy: #363d4a;
  --slate: #6e7787;
  --slate-light: #a8b0bd;
  --bg: #f7f8fa;
  --white: #ffffff;
  --accent: #2f7a9e;
  --accent-dark: #24607e;
  --warm: #dd8355;
  --warm-light: #fbe9de;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Plus Jakarta Sans', Arial, Helvetica, sans-serif;
  color: var(--navy);
  background: var(--bg);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* Header */
header {
  background: var(--white);
  border-bottom: 1px solid #e7e9ed;
  position: sticky;
  top: 0;
  z-index: 50;
}
header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
header .brand { display: flex; align-items: center; gap: 10px; }
header .brand img { height: 40px; width: auto; }
header .brand span { font-weight: 800; font-size: 18px; letter-spacing: -0.01em; }
nav ul { list-style: none; display: flex; gap: 32px; align-items: center; }
nav a { font-weight: 600; font-size: 15px; color: var(--slate); transition: color .15s; }
nav a:hover, nav a.active { color: var(--navy); }
.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--white) !important;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: 8px;
  transition: background .15s;
}
.btn:hover { background: var(--accent-dark); }
.btn-outline {
  display: inline-block;
  border: 2px solid var(--navy);
  color: var(--navy) !important;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 8px;
  transition: all .15s;
}
.btn-outline:hover { background: var(--navy); color: var(--white) !important; }
.btn-outline-light {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.75);
  color: var(--white) !important;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 8px;
  transition: all .15s;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

.mobile-toggle { display: none; }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #2a303b 100%);
  color: var(--white);
  padding: 96px 0 88px;
}
.hero .wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.hero .kicker {
  display: inline-block;
  color: #cfe6f0;
  background: rgba(47,122,158,0.25);
  border: 1px solid rgba(47,122,158,0.5);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero h1 { font-size: 44px; line-height: 1.15; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 18px; }
.hero p.lead { font-size: 18px; color: #cfd4dc; max-width: 46ch; margin-bottom: 32px; }
.hero .cta-row { display: flex; gap: 14px; }
.hero .icon-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .icon-card img { height: 200px; width: auto; }

/* Sections */
section { padding: 80px 0; }
.section-label {
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
h2 { font-size: 32px; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 16px; }
.section-intro { color: var(--slate); font-size: 17px; max-width: 62ch; margin-bottom: 44px; }

/* Stats */
.stats { background: var(--white); border-top: 1px solid #e7e9ed; border-bottom: 1px solid #e7e9ed; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat-num { font-size: 34px; font-weight: 800; color: var(--accent); margin-bottom: 6px; }
.stat-label { color: var(--slate); font-size: 14px; }

/* Cards grid */
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card {
  background: var(--white);
  border: 1px solid #e7e9ed;
  border-radius: 14px;
  padding: 26px;
  transition: transform .15s, box-shadow .15s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(54,61,74,0.08); }
.card .card-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(47,122,158,0.1);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px;
  margin-bottom: 14px;
}
.card h3 { font-size: 17px; font-weight: 800; margin-bottom: 8px; }
.card p { color: var(--slate); font-size: 14.5px; }
.card .stat-line { color: var(--navy); font-weight: 700; font-size: 14px; margin-bottom: 8px; }

/* Two column */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }

/* Simple list */
.check-list { list-style: none; }
.check-list li { padding-left: 30px; position: relative; margin-bottom: 14px; color: var(--slate); }
.check-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: var(--accent); font-weight: 800;
}

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card {
  background: var(--white);
  border: 1px solid #e7e9ed;
  border-radius: 14px;
  padding: 28px;
  text-align: center;
}
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 22px;
  margin: 0 auto 16px;
}
.team-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 4px; }
.team-card .role { color: var(--accent); font-size: 13px; font-weight: 700; margin-bottom: 10px; }
.team-card a { color: var(--slate); font-size: 14px; }

/* Warm welcome touches */
.welcome-note {
  background: var(--warm-light);
  border-left: 3px solid var(--warm);
  border-radius: 0 10px 10px 0;
  padding: 18px 22px;
  color: #8a4e2f;
  font-size: 15px;
}

/* CTA band */
.cta-band {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 72px 0;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: #cfd4dc; max-width: 56ch; margin: 0 auto 30px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 8px; }
.contact-card {
  background: var(--white);
  border: 1px solid #e7e9ed;
  border-radius: 14px;
  padding: 30px;
}
.contact-card .label { color: var(--slate); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 10px; }
.contact-card a.email { font-size: 17px; font-weight: 700; color: var(--accent); }

/* Footer */
footer { background: var(--navy); color: #b9c0cb; padding: 48px 0 28px; }
footer .foot-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; margin-bottom: 32px; flex-wrap: wrap; }
footer .brand { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
footer .brand .logo-chip {
  background: var(--white);
  border-radius: 8px;
  padding: 5px 7px;
  display: inline-flex;
  align-items: center;
}
footer .brand .logo-chip img { height: 24px; }
footer .brand span { color: var(--white); font-weight: 800; font-size: 16px; }
footer .foot-tagline { color: #9099a6; font-size: 14px; max-width: 32ch; }
footer nav ul { display: flex; gap: 24px; list-style: none; }
footer nav a { color: #b9c0cb; font-size: 14px; }
footer nav a:hover { color: var(--white); }
footer .foot-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; font-size: 13px; color: #7c8492; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

@media (max-width: 860px) {
  nav ul { display: none; }
  .mobile-toggle { display: block; }
  .hero .wrap { grid-template-columns: 1fr; }
  .hero .icon-card { order: -1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
}
