:root {
  --navy: #071827;
  --deep-navy: #03101c;
  --charcoal: #1c1f26;
  --blue: #1f4e79;
  --steel: #6e7b8b;
  --gold: #c79a45;
  --light: #f5f7fa;
  --line: #dce4ec;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--charcoal);
  text-decoration: none;
}

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 26px;
  box-shadow: 0 8px 22px rgba(7, 24, 39, 0.18);
}

.brand strong {
  display: block;
  font-size: 17px;
  line-height: 1.2;
}

.brand span {
  display: block;
  color: var(--steel);
  font-size: 13px;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
}

.nav-button {
  background: var(--blue);
  color: var(--white) !important;
  padding: 10px 16px;
  border-radius: 999px;
}

.hero {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(199, 154, 69, 0.18), transparent 28%),
    linear-gradient(135deg, var(--deep-navy), var(--navy) 50%, #12385a);
  padding: 94px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 52px;
  align-items: center;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 900;
  margin: 0 0 12px;
}

h1 {
  font-size: clamp(44px, 7vw, 76px);
  line-height: 0.98;
  margin: 0 0 22px;
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  margin: 0 0 18px;
  letter-spacing: -0.03em;
}

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

.lead {
  font-size: 21px;
  color: #dce8f3;
  max-width: 760px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.button {
  display: inline-block;
  border-radius: 999px;
  padding: 13px 21px;
  font-weight: 900;
  text-decoration: none;
}

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

.secondary {
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.38);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-strip span {
  color: #e8eef4;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 8px 11px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
}

.hero-panel {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 22px 60px rgba(0,0,0,0.22);
}

.hero-panel h2 {
  font-size: 28px;
}

.hero-panel p,
.hero-panel li {
  color: #e1eaf3;
}

.hero-panel li {
  margin-bottom: 9px;
}

.section {
  padding: 82px 0;
}

.cards {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: var(--light);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px;
  min-height: 220px;
}

.card h3 {
  color: var(--blue);
  font-size: 21px;
}

.card p {
  color: #4e5967;
}

.dark {
  background: var(--charcoal);
  color: var(--white);
}

.dark p {
  color: #d9e2eb;
}

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

.expertise-list {
  display: grid;
  gap: 10px;
}

.expertise-list div {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.13);
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 800;
}

.about-section {
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.about-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 46px;
  align-items: center;
}

.photo-wrap {
  border-radius: 30px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(7, 24, 39, 0.16);
}

.photo-wrap img {
  width: 100%;
  display: block;
  border-radius: 24px;
}

.bio {
  font-size: 18px;
  color: #4e5967;
}

.credential-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 18px;
  margin-top: 24px;
}

.credential-grid > div {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
}

.credential-grid ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.credential-grid li {
  margin-bottom: 8px;
}

.industries {
  background: var(--white);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.pill-row span {
  border: 1px solid var(--line);
  background: var(--light);
  color: var(--charcoal);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
}

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

.proof-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 7px solid var(--gold);
  border-radius: 26px;
  padding: 42px;
}

.proof-card p {
  font-size: 18px;
  color: #4e5967;
  max-width: 860px;
}

.contact-section {
  background:
    radial-gradient(circle at 15% 10%, rgba(199, 154, 69, 0.18), transparent 20%),
    linear-gradient(135deg, var(--navy), #12385a);
}

.contact-card {
  background: var(--white);
  border-radius: 28px;
  padding: 46px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.18);
}

.contact-card p {
  color: #4e5967;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 28px;
}

.contact-methods a {
  color: var(--blue);
  background: var(--light);
  border: 1px solid var(--line);
  text-decoration: none;
  padding: 10px 13px;
  border-radius: 999px;
  font-weight: 900;
}

footer {
  background: var(--deep-navy);
  color: var(--white);
  padding: 26px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .cards,
  .expertise-grid,
  .about-grid,
  .credential-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 70px 0;
  }

  .section {
    padding: 62px 0;
  }

  .about-grid {
    gap: 28px;
  }

  .photo-wrap {
    max-width: 420px;
  }
}
