:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-2: #eef3f8;
  --text: #142033;
  --muted: #647086;
  --primary: #0b5d7a;
  --primary-2: #0e7c9f;
  --accent: #d6a746;
  --border: rgba(20, 32, 51, 0.12);
  --shadow: 0 24px 70px rgba(14, 42, 71, 0.14);
  --radius: 24px;
}

body.dark {
  --bg: #08111f;
  --surface: #101b2d;
  --surface-2: #17243a;
  --text: #edf4ff;
  --muted: #aab7c9;
  --primary: #49c0e4;
  --primary-2: #7eddf6;
  --accent: #f0bf58;
  --border: rgba(237, 244, 255, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, rgba(14,124,159,.16), transparent 32%), var(--bg);
  color: var(--text);
  transition: background .3s ease, color .3s ease;

}

a { color: inherit; }

.site-header {
  position: relative; /* removes sticky behavior */
  z-index: 50;
  backdrop-filter: blur(18px);
  background:#dee0e0;
  border-bottom: 1px solid var(--border);
}

.navbar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 90px;
    padding: 0 2rem;
}

.brand {
    justify-self: start;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin: 0;
}

.site-logo {
    height: 300px; /* adjust freely */
    width: auto;
    display: block;
    max-height: none;
}

.nav-links {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 22px;
    .nav-actions {
    justify-self: end;
    display: flex;
    align-items: center;
}
}

.brand {
    justify-self: start;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin: 0;
}
.brand-mark {
  width: 42px; height: 42px; border-radius: 14px;
  display: grid; place-items: center;
  color: white; background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 12px 30px rgba(11,93,122,.25);
}
.brand-text { letter-spacing: -0.03em; }

.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a { text-decoration: none; color: #142033; font-weight: 700; font-size: 0.95rem; }
.nav-links a:hover { color: var(--primary); }
.menu-toggle, .theme-toggle {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 999px;
  cursor: pointer;
}
.menu-toggle { display: none; font-size: 1.4rem; padding: 8px 12px; }
.theme-toggle { width: 42px; height: 42px; font-size: 1.1rem; }

.section,
.hero { max-width: 1180px; margin: 0 auto; padding: 60px 22px }
.hero { min-height: 82vh; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 48px; }
.eyebrow { color: var(--primary); text-transform: uppercase; letter-spacing: .14em; font-weight: 800; font-size: .78rem; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(3rem, 7vw, 5.9rem); line-height: .92; letter-spacing: -0.075em; margin-bottom: 24px; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1; letter-spacing: -0.06em; margin-bottom: 16px; }
h3 { letter-spacing: -0.03em; }
.hero-copy, .section-heading p, .approach p, .contact-copy p { color: var(--muted); font-size: 1.08rem; line-height: 1.7; }
.hero-copy { max-width: 680px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0; }
.btn { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: 14px 22px; font-weight: 800; text-decoration: none; border: none; cursor: pointer; font-size: .98rem; transition: transform .2s ease, box-shadow .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--primary), var(--primary-2)); box-shadow: 0 16px 34px rgba(11, 93, 122, .25); }
.btn-secondary { color: var(--text); background: var(--surface); border: 1px solid var(--border); }
.trust-row { display: flex; gap: 10px; flex-wrap: wrap; }
.trust-row span { border: 1px solid var(--border); background: var(--surface); color: var(--muted); padding: 10px 14px; border-radius: 999px; font-weight: 700; font-size: .85rem; }

.glass-card, .service-card, .person-card, .contact-card, .approach-panel {
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.hero-card { border-radius: 34px; padding: 34px; position: relative; overflow: hidden; }
.hero-card::after { content:""; position:absolute; width:220px; height:220px; border-radius:50%; background:rgba(214,167,70,.18); right:-70px; bottom:-70px; }
.compass-ring { width: 170px; height: 170px; border-radius: 50%; border: 1px solid var(--border); display:grid; place-items:center; position:relative; margin-bottom: 28px; animation: float 5s ease-in-out infinite; }
.compass-ring span { position:absolute; top:18px; color:var(--accent); font-weight:900; }
.needle { width: 8px; height: 92px; background: linear-gradient(var(--accent) 50%, var(--primary) 50%); border-radius: 999px; transform: rotate(28deg); box-shadow: 0 0 24px rgba(214,167,70,.35); }
.metric-grid { display:grid; grid-template-columns:repeat(3,1fr); gap: 12px; margin-top: 26px; position: relative; z-index: 1; }
.metric-grid div { border-radius:18px; background:var(--surface-2); padding:18px; }
.metric-grid strong { display:block; font-size:1.35rem; }
.metric-grid span { color:var(--muted); font-size:.84rem; font-weight:700; }

.section-heading { max-width: 760px; margin-bottom: 36px; }
.service-grid, .about-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card, .person-card { border-radius: var(--radius); padding: 28px; transition: transform .25s ease, border-color .25s ease;}
.service-card:hover, .person-card:hover { transform: translateY(-7px); border-color: color-mix(in srgb, var(--primary) 45%, var(--border)); }
.service-card p, .person-card p { color: var(--muted); line-height: 1.65; }
.icon { width:48px; height:48px; border-radius:16px; display:grid; place-items:center; color:#fff; background:linear-gradient(135deg,var(--primary),var(--accent)); font-size:1.3rem; margin-bottom: 22px; }
.approach-panel { border-radius: 34px; padding: 42px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 44px; }
.timeline { display: grid; gap: 18px; }
.step { display: grid; grid-template-columns: 54px 1fr; gap: 18px; align-items: start; }
.step > span { width: 44px; height: 44px; border-radius: 50%; display:grid; place-items:center; background: var(--surface-2); color: var(--primary); font-weight:900; }
.step p { margin-bottom:0; }
.about-grid { grid-template-columns: repeat(2, 1fr); }
.avatar { width:72px; height:72px; border-radius:22px; display:grid; place-items:center; font-weight:900; color:#fff; background:linear-gradient(135deg,var(--primary),var(--accent)); margin-bottom:22px; }
.role { color: var(--primary) !important; font-weight:800; }
.contact-card { border-radius: 34px; padding: 42px; display:grid; grid-template-columns: .85fr 1.15fr; gap: 42px; }
.contact-detail { background: var(--surface-2); border-radius: 20px; padding: 18px; display:grid; gap: 6px; margin-top: 24px; }
.lead-form { display:grid; gap: 12px; }
.lead-form label { font-weight: 800; font-size: .92rem; }
input, select, textarea { width:100%; padding:14px 15px; border-radius:16px; border:1px solid var(--border); background:var(--surface); color:var(--text); font: inherit; outline: none; }
input:focus, select:focus, textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 18%, transparent); }
.form-note { color: var(--muted); font-size: .86rem; margin: 0; }

.section-reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.section-reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

@media (max-width: 900px) {
  .hero, .approach-panel, .contact-card { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  h1 { font-size: clamp(2.7rem, 14vw, 4.6rem); }

@media (max-width: 680px) {
    .site-logo {
    height: 100px;
  }
}
  .menu-toggle { display: inline-flex; }
  .nav-links { position:absolute; left: 16px; right:16px; top:78px; padding:18px; border:1px solid var(--border); border-radius:22px; background:var(--surface); box-shadow:var(--shadow); flex-direction:column; align-items:stretch; display:none; }
  .nav-links.open { display:flex; }
  .service-grid, .about-grid { grid-template-columns: 1fr; }
  .hero, .section { padding: 62px 18px; }
  .hero-card, .approach-panel, .contact-card { padding: 26px; border-radius: 26px; }
  .footer { flex-direction: column; }
}
.about-section {
  padding: 90px 8%;
}

.section-header {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-header span {
  color: #1f6feb;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 12px 0;
}

.section-header p {
  color: #667085;
  font-size: 1.05rem;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.person-card {
  background: #dee0e0;
  border: 1px solid #e6e8ec;
  border-radius: 24px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.person-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.person-card img {
  width: 170px;
  height: 170px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 22px;
  border: 4px solid #eef4ff;
}

.person-card h3 {
  font-size: 1.45rem;
  margin-bottom: 6px;
  color: #0e1826
}

.person-card .role {
  color: #1a56af;
  font-weight: 700;
  margin-bottom: 16px;
}

.person-card p {
  color: #475467;
  line-height: 1.7;
}

@media (max-width: 760px) {
  .leadership-grid {
    grid-template-columns: 1fr;
  }
}

.logo-link {
    display: flex;
    align-items: left;
}

.logo-link:hover {
    opacity: 0.9;
}

.footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 50px 20px 30px;
    text-align: center;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-title {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text);
}

.footer-tagline {
    margin: 0;
    color: var(--muted);
    font-weight: 600;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin: 10px 0;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 700;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    color: var(--muted);
    font-size: 0.9rem;
}

@media (max-width: 680px) {
  .footer-grid,
  .footer-links {
    flex-direction: column;
  }

  .footer-logo {
    height: 48px;
  }
}
.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 22px;
}

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.legal-page h2 {
    margin-top: 3rem;
    margin-bottom: 1rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid var(--border);
}

.legal-page p {
    margin-bottom: 1.25rem;
}

.legal-page ul {
    padding-left: 3rem;
    margin: 1rem 0 2rem;
}

.legal-page li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}
@media (max-width: 768px) {
  .site-logo {
    height: 100px;
  }
}