:root {
  --navy: #172a4a;
  --navy-deep: #031433;
  --blue: #0b5cff;
  --blue-bright: #1578ff;
  --text: #3a4a62;
  --muted: #4a5a72;
  --line: #dfe6f1;
  --card: #f2f2f2;
  --white: #ffffff;
  --shell: 1440px;
  --shadow: 0 14px 32px rgba(7, 26, 75, .07);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.shell { width: min(calc(100% - 72px), var(--shell)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.site-header {
  height: 88px;
  display: flex;
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #e4e9f1;
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-shell {
  display: grid;
  grid-template-columns: 260px 1fr auto;
  align-items: center;
  gap: 28px;
}
.brand { width: 260px; }
.brand img { width: 260px; height: auto; }
.primary-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 1.8vw, 30px);
  font-weight: 600;
  font-size: 14px;
}
.primary-nav a {
  position: relative;
  padding: 34px 0 30px;
  white-space: nowrap;
}
.primary-nav a.active { color: var(--blue); }
.primary-nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 17px;
  height: 2px;
  background: var(--blue);
}
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: 5px;
  padding: 0 24px;
  font-weight: 600;
  font-size: 14px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #0754ee, #0874ff);
  box-shadow: 0 8px 18px rgba(11,92,255,.18);
}
.button-secondary {
  color: var(--blue);
  background: #fff;
  border: 1.5px solid var(--blue);
}
.header-cta { min-width: 154px; }
.menu-toggle { display:none; border:0; background:none; padding:8px; }
.menu-toggle span:not(.sr-only) { display:block; width:24px; height:2px; background:var(--navy); margin:5px 0; }

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 30%, rgba(60,145,255,.15), transparent 33%),
    linear-gradient(90deg, #fff 0%, #fff 45%, #edf6ff 100%);
}
.hero-grid {
  min-height: 485px;
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: stretch;
}
.hero-copy {
  padding: 50px 0 24px;
  position: relative;
  z-index: 2;
}
.eyebrow {
  margin: 0 0 20px;
  color: var(--text);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: .16em;
}
.hero h1 {
  margin: 0;
  max-width: 640px;
  font-family: Manrope, Inter, sans-serif;
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: .98;
}
.hero h1 span { display:block; }
.headline-blue {
  color: var(--blue);
  font-size: clamp(48px, 4.3vw, 69px);
  letter-spacing: .04em;
  white-space: nowrap;
}
.headline-dark { color:var(--navy); font-size:clamp(30px, 2.7vw, 42px); margin-top:10px; white-space:nowrap; font-weight:700; }
.hero-summary {
  max-width: 560px;
  margin: 22px 0 22px;
  color: #162750;
  font-size: 16px;
  line-height: 1.5;
}
.hero-actions {
  display: flex;
  gap: 28px;
  margin-bottom: 34px;
}
.hero-actions .button { min-width: 220px; }
.hero-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 710px;
  gap: 0;
}
.benefit {
  min-width: 0;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  padding: 0 24px;
  border-right: 1px solid #cdd7e7;
}
.benefit:first-child { padding-left: 0; }
.benefit:last-child { border-right: 0; }
.benefit .icon {
  color: var(--blue);
  font-size: 33px;
  line-height: 1;
}
.benefit h2 {
  margin: 0 0 6px;
  font-size: 13px;
}
.benefit p {
  margin: 0;
  color: #24345a;
  font-size: 11px;
  line-height: 1.5;
}
.hero-art {
  min-width: 0;
  height: 485px;
  overflow: hidden;
}
.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.services {
  padding: 12px 0 16px;
  background: #fff;
}
.section-heading {
  text-align: center;
  margin-bottom: 10px;
}
.section-heading .eyebrow {
  color: var(--blue);
  margin-bottom: 6px;
}
.section-heading h2 {
  margin: 0;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(21px, 2vw, 29px);
  letter-spacing: -.02em;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.service-card {
  min-height: 212px;
  padding: 18px 18px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--card);
  border: 1px solid #eeeeee;
  border-radius: 11px;
  box-shadow: 0 8px 22px rgba(7,26,75,.04);
}
.service-icon {
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--blue);
  font-size: 40px;
  font-weight: 500;
}
.service-card h3 {
  margin: 4px 0 10px;
  min-height: 34px;
  font-size: 13px;
  line-height: 1.25;
}
.service-card p {
  margin: 0 0 12px;
  color: #26375d;
  font-size: 11px;
  line-height: 1.55;
}
.service-card a {
  margin-top: auto;
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
}

.experience-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 100% 100%, rgba(0,91,255,.28), transparent 35%),
    linear-gradient(100deg, #021538, #061f50 58%, #00122f);
}
.experience-band::before,
.experience-band::after {
  content: "";
  position: absolute;
  width: 430px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(20,110,255,.25);
  transform: rotate(14deg);
}
.experience-band::before { left:-250px; bottom:-110px; }
.experience-band::after { right:-180px; bottom:-110px; }
.stats-grid {
  min-height: 170px;
  display: grid;
  grid-template-columns: .85fr 1.45fr repeat(4, 1fr);
  align-items: center;
}
.stats-grid > * {
  min-height: 120px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,.36);
  position: relative;
  z-index: 1;
}
.stats-grid > *:last-child { border-right: 0; }
.years-lockup { align-items: center; }
.years-lockup strong {
  color: #1575ff;
  font-size: 84px;
  line-height: .8;
}
.years-lockup span {
  margin-top: 14px;
  color: #1475ff;
  font-size: 24px;
  letter-spacing: .28em;
}
.years-lockup small { margin-top: 6px; font-size: 12px; }
.experience-copy h2 { margin:0 0 8px; font-size:19px; line-height:1.15; }
.experience-copy p { margin:0; max-width:270px; font-size:11px; line-height:1.45; }
.stat { align-items:center; text-align:center; }
.stat-icon { color:#1475ff; font-size:42px; line-height:1; margin-bottom:5px; }
.stat strong { font-size:27px; line-height:1; margin-bottom:8px; }
.stat span { font-size:11px; }

.contact-strip { padding: 64px 0; background:#f5f8fc; }
.contact-inner { display:flex; justify-content:space-between; align-items:center; gap:40px; }
.contact-inner .eyebrow { color:var(--blue); margin-bottom:8px; }
.contact-inner h2 { margin:0; max-width:850px; font-family:Manrope, Inter, sans-serif; font-size:32px; }

.site-footer { background:#fff; border-top:1px solid var(--line); }
.footer-inner { min-height:100px; display:flex; align-items:center; justify-content:space-between; gap:24px; }
.footer-inner img { width:220px; }
.footer-inner p { color:var(--muted); font-size:13px; }

@media (max-width: 1180px) {
  .shell { width:min(calc(100% - 40px), var(--shell)); }
  .nav-shell { grid-template-columns: 250px 1fr auto; }
  .brand, .brand img { width:250px; }
  .primary-nav { gap:18px; font-size:13px; }
  .hero-grid { grid-template-columns:52% 48%; }
  .headline-blue { font-size:47px; }
  .headline-dark { font-size:34px; }
  .service-grid { grid-template-columns:repeat(3,1fr); }
  .stats-grid { grid-template-columns:repeat(3,1fr); padding:24px 0; }
  .stats-grid > * { border-right:1px solid rgba(255,255,255,.22); }
}

@media (max-width: 900px) {
  .site-header { height:auto; min-height:78px; }
  .nav-shell { grid-template-columns:1fr auto; padding:12px 0; }
  .brand, .brand img { width:250px; max-width:65vw; }
  .menu-toggle { display:block; }
  .header-cta { display:none; }
  .primary-nav {
    display:none;
    grid-column:1/-1;
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    padding:12px 0;
  }
  .primary-nav.open { display:flex; }
  .primary-nav a { width:100%; padding:12px 0; }
  .primary-nav a.active::after { bottom:6px; width:42px; right:auto; }
  .hero-grid { grid-template-columns:1fr; }
  .hero-copy { padding-top:44px; }
  .headline-blue, .headline-dark { white-space:normal; }
  .hero-art { height:auto; min-height:400px; margin-inline:-20px; }
  .hero-benefits { max-width:none; }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .contact-inner { flex-direction:column; align-items:flex-start; }
}

@media (max-width: 640px) {
  .shell { width:min(calc(100% - 28px), var(--shell)); }
  .hero-copy { padding-top:34px; }
  .eyebrow { font-size:10px; }
  .headline-blue { font-size:38px; letter-spacing:.01em; }
  .headline-dark { font-size:28px; }
  .hero-summary { font-size:15px; }
  .hero-actions { flex-direction:column; gap:12px; }
  .hero-actions .button { width:100%; }
  .hero-benefits { grid-template-columns:1fr; gap:18px; }
  .benefit { border-right:0; border-bottom:1px solid #d7deea; padding:0 0 18px; }
  .benefit:last-child { border-bottom:0; }
  .hero-art { min-height:300px; }
  .service-grid { grid-template-columns:1fr; }
  .service-card { min-height:210px; }
  .stats-grid { grid-template-columns:1fr; }
  .stats-grid > * { border-right:0; border-bottom:1px solid rgba(255,255,255,.2); }
  .stats-grid > *:last-child { border-bottom:0; }
  .contact-inner h2 { font-size:25px; }
  .footer-inner { flex-direction:column; justify-content:center; padding:26px 0; text-align:center; }
}

/* Approved hero composition — full-bleed artwork, no split image panel */
.hero {
  position: relative;
  overflow: hidden;
  background-color: #f4f8ff;
  background-image:
    linear-gradient(
      90deg,
      rgba(244, 248, 255, 1) 0%,
      rgba(244, 248, 255, 1) 38%,
      rgba(244, 248, 255, .96) 46%,
      rgba(244, 248, 255, .68) 55%,
      rgba(244, 248, 255, .18) 66%,
      rgba(244, 248, 255, 0) 76%
    ),
    url("../assets/hero-visual.webp");
  background-repeat: no-repeat;
  background-position: left center, right center;
  background-size: 100% 100%, auto 100%;
}

.hero-grid {
  min-height: 485px;
  display: block;
  position: relative;
}

.hero-copy {
  width: 52%;
  max-width: 760px;
  padding: 50px 0 28px;
}

.hero-art {
  display: none !important;
}

.hero h1 {
  max-width: 710px;
}

.headline-blue {
  font-size: clamp(46px, 4.15vw, 66px);
}

.headline-dark {
  font-size: clamp(30px, 2.7vw, 42px);
}

.hero-summary {
  max-width: 525px;
}

.hero-benefits {
  max-width: 720px;
}

@media (max-width: 1100px) {
  .hero {
    background-image:
      linear-gradient(
        90deg,
        rgba(244, 248, 255, 1) 0%,
        rgba(244, 248, 255, 1) 45%,
        rgba(244, 248, 255, .84) 58%,
        rgba(244, 248, 255, .16) 79%
      ),
      url("../assets/hero-visual.webp");
    background-size: 100% 100%, auto 94%;
  }

  .hero-copy {
    width: 57%;
  }
}

@media (max-width: 900px) {
  .hero {
    background: #f4f8ff;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-copy {
    width: 100%;
    max-width: none;
  }

  .hero-grid::after {
    content: "";
    display: block;
    height: 420px;
    margin: 0 -20px;
    background: url("../assets/hero-visual.webp") center / cover no-repeat;
  }
}

@media (max-width: 640px) {
  .hero-grid::after {
    height: 300px;
  }
}

/* CONTACT PAGE */
.contact-page-hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #fff, #f4f8ff);
  text-align: center;
}
.contact-page-hero h1 {
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--navy);
  margin: 0 0 16px;
}
.contact-intro {
  max-width: 520px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}
.section--soft { background: #f7f9fc; }
.contact-content { padding: 60px 0 80px; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 {
  font-family: Manrope, Inter, sans-serif;
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--navy);
}
.contact-info > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 32px;
}
.contact-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(11,92,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-detail h4 {
  margin: 0 0 2px;
  font-size: 14px;
  color: var(--navy);
}
.contact-detail p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 12px 40px rgba(7,26,75,.06);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-form label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  font-family: Inter, sans-serif;
  color: var(--text);
  background: #fff;
  transition: border-color .15s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(11,92,255,.08);
}
.contact-form textarea { resize: vertical; min-height: 110px; }
.button--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 30px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s, transform .15s;
}
.button--primary:hover { background: #0a4fd9; transform: translateY(-1px); }

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-page-hero h1 { font-size: 32px; }
}

/* PAGE HERO (all sub-pages) */
.page-hero { padding: 120px 0 60px; background: linear-gradient(135deg, #fff, #f4f8ff); text-align: center; }
.page-hero h1 { font-family: Manrope, Inter, sans-serif; font-size: clamp(32px, 3.5vw, 48px); font-weight: 700; letter-spacing: -.03em; color: var(--navy); margin: 0 0 16px; }
.page-hero-sub { max-width: 560px; margin: 0 auto; color: var(--muted); font-size: 16px; line-height: 1.6; }
.section { padding: 80px 0; }
.card-icon { font-size: 36px; margin-bottom: 16px; line-height: 1; }

/* Feature lists */
.feature-list { list-style: none; padding: 0; margin: 16px 0 0; }
.feature-list li { font-size: 13px; color: var(--muted); padding: 5px 0 5px 18px; position: relative; line-height: 1.5; }
.feature-list li::before { content: ''; position: absolute; left: 0; top: 11px; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }

/* Service detail cards */
.service-detail-card { display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; }
.service-detail-card:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(7,26,75,.1); }
.text-link { color: var(--blue); font-weight: 600; font-size: 14px; margin-top: auto; }
.text-link:hover { text-decoration: underline; }

/* About page */
.about-story-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 64px; align-items: start; }
.about-story-grid h2 { font-family: Manrope, Inter, sans-serif; font-size: 28px; margin: 0 0 18px; color: var(--navy); }
.about-story-grid p { color: var(--muted); font-size: 15px; line-height: 1.8; margin-bottom: 16px; }
.about-stats-block { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-stat { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 28px 20px; text-align: center; }
.about-stat strong { display: block; font-family: Manrope, sans-serif; font-size: 32px; color: var(--blue); line-height: 1; margin-bottom: 6px; }
.about-stat span { font-size: 13px; color: var(--muted); }

@media (max-width: 900px) {
  .about-story-grid { grid-template-columns: 1fr; }
  .about-stats-block { grid-template-columns: 1fr 1fr; }
}

/* DROPDOWN MENU */
.has-dropdown { position: relative; }
.has-dropdown .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(7,26,75,.1);
  padding: 8px 0;
  min-width: 240px;
  z-index: 60;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
}
.dropdown a:hover { background: var(--card); color: var(--blue); }

/* SERVICES LIST */
.services-list { max-width: 860px; margin: 0 auto; }
.svc-row { padding: 48px 0; border-bottom: 1px solid var(--line); }
.svc-row:first-child { padding-top: 0; }
.svc-row:last-child { border-bottom: none; padding-bottom: 0; }
.svc-num { font-family: Manrope, sans-serif; font-size: 14px; font-weight: 700; color: var(--blue); letter-spacing: .1em; display: block; margin-bottom: 12px; }
.svc-content h2 { font-family: Manrope, Inter, sans-serif; font-size: 24px; font-weight: 700; margin: 0 0 12px; color: var(--navy); }
.svc-content p { color: var(--muted); font-size: 15px; line-height: 1.7; margin: 0 0 16px; max-width: 640px; }
.svc-content .feature-list { margin-bottom: 20px; }
.button--outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border: 1.5px solid var(--navy);
  border-radius: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  background: transparent;
  cursor: pointer;
  transition: all .15s;
}
.button--outline:hover { background: var(--navy); color: #fff; }

/* About — Differentiators */
.differentiators { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.diff-item { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 36px 28px; }
.diff-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(11,92,255,.08); display: flex; align-items: center; justify-content: center; color: var(--blue); margin-bottom: 20px; }
.diff-item h3 { font-family: Manrope, Inter, sans-serif; font-size: 17px; font-weight: 700; margin: 0 0 8px; color: var(--navy); }
.diff-item p { color: var(--muted); font-size: 14px; line-height: 1.65; margin: 0; }

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

/* Leadership Stats */
.leadership-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; max-width: 720px; margin: 0 auto; }
.leadership-stats > div { text-align: center; padding: 32px 20px; }
.leadership-stats strong { display: block; font-family: Manrope, sans-serif; font-size: 42px; color: var(--blue); line-height: 1; margin-bottom: 8px; font-weight: 700; }
.leadership-stats span { font-size: 13px; color: var(--muted); }
