:root {
  --navy: #081d36;
  --blue: #123b68;
  --gold: #d8a84f;
  --gold-soft: #f2d694;
  --light: #f4f7fb;
  --white: #ffffff;
  --text: #15202b;
  --muted: #657080;
  --border: #e5ebf2;
  --shadow: 0 18px 45px rgba(8, 29, 54, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
}

a {
  color: inherit;
}

.hero {
  min-height: 720px;
  color: white;
  padding: 28px 7% 90px;
  background:
    radial-gradient(circle at 78% 22%, rgba(216, 168, 79, 0.24), transparent 34%),
    linear-gradient(135deg, var(--navy), var(--blue));
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  font-weight: 800;
  font-size: 20px;
}

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

.nav-links {
  display: flex;
  gap: 24px;
  color: rgba(255,255,255,.82);
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--gold-soft);
}

.hero-content {
  max-width: 980px;
  padding-top: 120px;
}

.eyebrow,
.section-label {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 900;
  margin: 0 0 14px;
}

h1 {
  font-size: clamp(44px, 7vw, 82px);
  line-height: 1.02;
  letter-spacing: -2px;
  margin: 0 0 28px;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.14;
  letter-spacing: -0.8px;
  margin: 0 0 18px;
}

h3 {
  margin: 0 0 10px;
  line-height: 1.25;
}

.hero-text {
  max-width: 820px;
  color: rgba(255,255,255,.88);
  font-size: 22px;
  margin: 0 0 34px;
}

.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 900;
}

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

.section {
  padding: 86px 7%;
}

.light {
  background: var(--light);
}

.intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.intro-copy p,
.subtext,
.growth p,
.cta p,
.dark-intro {
  font-size: 18px;
}

.intro-copy p,
.subtext,
.growth p,
.cta p {
  color: var(--muted);
}

.center {
  text-align: center;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.cards {
  display: grid;
  gap: 20px;
}

.cards.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.card .icon {
  display: inline-block;
  color: var(--gold);
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 18px;
}

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

.services {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.services div {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  text-align: center;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(8,29,54,.05);
}

.dark {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: white;
}

.dark h2 {
  max-width: 760px;
}

.dark-intro {
  color: rgba(255,255,255,.82);
  max-width: 760px;
}

.approach-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.approach-list div {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 20px;
  padding: 22px;
  font-weight: 800;
}

.growth-box {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 58px;
  max-width: 1100px;
  margin: 0 auto;
}

.cta {
  margin: 70px 7%;
  padding: 72px 7%;
  border-radius: 34px;
  background:
    radial-gradient(circle at 80% 10%, rgba(216,168,79,.18), transparent 30%),
    var(--light);
  border: 1px solid var(--border);
  text-align: center;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 34px 7%;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

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

.footer-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.footer-brand strong {
  display: block;
  color: var(--navy);
}

.footer-brand span {
  display: block;
}

.footer-info {
  display: grid;
  gap: 4px;
  text-align: right;
}

.footer-info a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 800;
}

@media (max-width: 1100px) {
  .cards.five,
  .services,
  .approach-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 700px) {
  .hero {
    min-height: auto;
    padding: 22px 6% 64px;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    display: none;
  }

  .brand {
    font-size: 18px;
  }

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

  .hero-content {
    padding-top: 76px;
  }

  h1 {
    font-size: 42px;
    letter-spacing: -1px;
  }

  .hero-text {
    font-size: 18px;
  }

  .section {
    padding: 58px 6%;
  }

  .cards.five,
  .services,
  .approach-list {
    grid-template-columns: 1fr;
  }

  .growth-box {
    padding: 34px 24px;
    border-radius: 24px;
  }

  .cta {
    margin: 50px 6%;
    padding: 52px 6%;
  }

  footer {
    flex-direction: column;
  }

  .footer-info {
    text-align: left;
  }
}
