:root {
  --navy: #09294a;
  --navy2: #061b32;
  --gold: #c99728;
  --gold2: #e5b84d;
  --blue: #0d5cab;
  --sky: #eef6ff;
  --ink: #17253a;
  --muted: #65748b;
  --white: #fff;
  --line: #dfe7f0;
  --shadow: 0 18px 50px rgba(7, 32, 58, .10);
  --radius: 22px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.65
}

a {
  text-decoration: none;
  color: inherit
}

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

.container {
  width: min(1160px, 92%);
  margin: auto
}

.topbar {
  background: var(--navy2);
  color: #dce8f5;
  font-size: 13px
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 9px 0
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(9, 41, 74, .08)
}

.nav-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 10px
}

.brand-text strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
  letter-spacing: .04em
}

.brand-text span {
  display: block;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase
}

.nav-links {
  display: flex;
  gap: 25px;
  align-items: center;
  font-size: 14px;
  font-weight: 650
}

.nav-links a {
  color: #26364b
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue)
}

.nav-cta {
  padding: 11px 17px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff !important
}

.menu {
  display: none;
  border: 0;
  background: var(--navy);
  color: #fff;
  border-radius: 12px;
  padding: 10px 13px;
  font-size: 20px
}

/* ===== HERO SLIDER ===== */
.slider-wrap {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  background: #071e36
}

@media(max-width:900px) {
  .slider-wrap {
    height: 360px
  }
}

@media(max-width:600px) {
  .slider-wrap {
    height: 240px
  }
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .9s ease;
  background-size: cover;
  background-position: center
}

.slide.active {
  opacity: 1
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(6, 27, 50, .78) 0%, rgba(9, 41, 74, .45) 55%, transparent 100%)
}

.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 7%
}

.slide-content .eyebrow {
  margin-bottom: 14px
}

.slide-content h2 {
  font-size: clamp(26px, 4.5vw, 58px);
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.1;
  max-width: 680px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .35)
}

.slide-content p {
  font-size: clamp(14px, 2vw, 19px);
  color: #cde2f7;
  max-width: 560px;
  margin: 0 0 24px
}

/* Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .3);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 20px;
  transition: background .25s
}

.slider-arrow:hover {
  background: rgba(201, 151, 40, .75)
}

.slider-arrow.prev {
  left: 22px
}

.slider-arrow.next {
  right: 22px
}

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
  z-index: 10
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .45);
  border: none;
  cursor: pointer;
  transition: background .3s, transform .3s;
  padding: 0
}

.slider-dot.active {
  background: #e5b84d;
  transform: scale(1.25)
}

/* Progress bar */
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--gold);
  z-index: 10;
  transition: width linear
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(229, 184, 77, .22), transparent 28%),
    linear-gradient(135deg, #f7fbff 0%, #edf6ff 52%, #fff 100%);
  padding: 92px 0 82px
}

.hero:after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(201, 151, 40, .18);
  border-radius: 50%;
  right: -180px;
  bottom: -260px
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #e8f2ff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em
}

.hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02;
  margin: 18px 0 18px;
  color: var(--navy);
  max-width: 850px
}

.hero h1 span {
  color: var(--gold)
}

.hero p {
  font-size: 19px;
  color: #53657c;
  max-width: 760px
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 12px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, .15);
}

.btn-primary {
  background: var(--navy);
  color: #fff
}

.btn-primary:hover {
  background: #0d3c68
}

.btn-gold {
  background: var(--gold);
  color: #101b2a
}

.btn-gold:hover {
  background: #d8a632
}

.btn-outline {
  border-color: #c7d5e4;
  color: var(--navy);
  background: #fff
}

.btn-outline:hover {
  border-color: var(--navy);
  background: #f7fbff
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 42px
}

.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 28px rgba(8, 39, 70, .05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.stat:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(9, 41, 74, 0.12);
  border-color: var(--gold);
}

.stat strong {
  display: block;
  font-size: 26px;
  color: var(--navy)
}

.stat span {
  color: var(--muted);
  font-size: 13px
}

.section {
  padding: 82px 0
}

.section.alt {
  background: #f7faff
}

.section-head {
  max-width: 760px;
  margin-bottom: 42px
}

.kicker {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase
}

h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  color: var(--navy);
  margin: 8px 0 13px
}

.lead {
  font-size: 17px;
  color: var(--muted)
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(9, 41, 74, 0.12);
  border-color: rgba(201, 151, 40, 0.3);
}

.card h3,
.card h4 {
  color: var(--navy);
  margin: 8px 0 8px
}

.card p {
  color: var(--muted);
  margin: 0
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #edf5ff;
  color: var(--blue);
  display: grid;
  place-items: center;
  font-weight: 900;
  transition: transform 0.3s ease, background 0.3s ease;
}

.card:hover .icon {
  transform: scale(1.1);
  background: #e8f2ff;
}

.badge {
  display: inline-block;
  padding: 5px 9px;
  border-radius: 999px;
  background: #fff5dc;
  color: #8b6412;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em
}

.page-hero {
  background: linear-gradient(135deg, #071e36, #0c426f);
  color: #fff;
  padding: 75px 0;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(229, 184, 77, 0.15) 0%, transparent 60%);
  border-radius: 50%;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: clamp(38px, 5vw, 60px);
  margin: 8px 0
}

.page-hero p {
  color: #cbdbea;
  max-width: 780px;
  font-size: 18px
}

.timeline {
  position: relative;
  margin-top: 25px
}

.timeline:before {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #dbe6f1
}

.timeline-item {
  position: relative;
  padding: 0 0 30px 42px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.timeline-dot {
  position: absolute;
  left: 5px;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px #fff;
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
  transform: scale(1.3);
  box-shadow: 0 0 0 6px rgba(201, 151, 40, 0.2);
}

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

.client {
  padding: 15px 17px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  font-weight: 700;
  color: #33465d;
  transition: all .25s ease;
  cursor: pointer
}

.client:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 12px 24px rgba(9, 41, 74, .08)
}

.note {
  padding: 17px 20px;
  border-left: 4px solid var(--gold);
  background: #fff8e8;
  border-radius: 12px;
  color: #6e5a2c
}

.team-role {
  color: var(--blue);
  font-weight: 800;
  font-size: 13px
}

.team-card {
  min-height: 165px
}

.office {
  display: flex;
  gap: 15px
}

.office .icon {
  flex: 0 0 48px
}

.contact-box {
  background: linear-gradient(135deg, #09294a, #0d5cab);
  color: #fff;
  border-radius: 28px;
  padding: 34px
}

.contact-box h2 {
  color: #fff
}

.contact-box p {
  color: #dbe8f4
}

form {
  display: grid;
  gap: 14px
}

label {
  font-weight: 750;
  font-size: 13px;
  color: var(--navy)
}

input,
textarea,
select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #cfdae6;
  border-radius: 11px;
  font: inherit;
  outline: none
}

input:focus,
textarea:focus,
select:focus {
  border-color: #5c96cb;
  box-shadow: 0 0 0 3px #e8f3ff
}

textarea {
  min-height: 140px;
  resize: vertical
}

.footer {
  background: linear-gradient(180deg, #071e36 0%, #030d1a 100%);
  color: #94a9c4;
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201,151,40,0.5), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px
}

.footer h4 {
  color: #fff;
  margin: 0 0 20px;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer p {
  line-height: 1.8;
}

.footer a {
  color: #94a9c4;
  margin: 12px 0;
  transition: all 0.3s ease;
}

.footer a:hover {
  color: var(--gold);
  transform: translateX(6px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin-top: 50px;
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  font-size: 13px;
  color: #7a8d9f;
}

.quote-strip {
  background: #f2f7fc;
  padding: 30px 0
}

.quote-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px
}

.pill-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 18px
}

.pill {
  border: 1px solid var(--line);
  padding: 7px 11px;
  border-radius: 999px;
  color: #52647a;
  background: #fff;
  font-size: 12px;
  font-weight: 700
}

@media(max-width:900px) {
  .nav-links {
    display: none;
    position: absolute;
    left: 4%;
    right: 4%;
    top: 76px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch
  }

  .nav-links.open {
    display: flex
  }

  .nav-links a {
    padding: 9px 12px
  }

  .menu {
    display: block
  }

  .stats {
    grid-template-columns: repeat(2, 1fr)
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr)
  }

  .grid-3,
  .client-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .grid-2 {
    grid-template-columns: 1fr
  }

  .quote-strip .container {
    flex-direction: column;
    align-items: flex-start
  }
}

@media(max-width:600px) {
  .topbar .container {
    flex-direction: column;
    gap: 2px
  }

  .topbar {
    font-size: 11px
  }

  .hero {
    padding: 62px 0
  }

  .hero p {
    font-size: 16px
  }

  .section {
    padding: 62px 0
  }

  .stats,
  .grid-3,
  .grid-4,
  .client-grid,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .brand-text strong {
    font-size: 12px
  }

  .brand img {
    width: 50px;
    height: 50px
  }
}