:root {
  --navy: #071526;
  --navy-2: #0f2747;
  --blue: #0b4fa3;
  --black: #05070a;
  --gray: #657084;
  --light: #f5f7fb;
  --white: #ffffff;
  --border: #dfe5ee;
  --shadow: 0 24px 80px rgba(7, 21, 38, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--black);
  background: var(--white);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(223, 229, 238, 0.8);
}

.nav {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
}

.logo-mark svg {
  width: 100%;
  height: 100%;
}

.v-dark {
  fill: var(--navy);
}

.v-blue {
  fill: var(--blue);
}

.brand-text {
  display: grid;
  line-height: 1;
  letter-spacing: 0.42em;
  color: var(--navy);
}

.brand-text span {
  font-size: 11px;
  font-weight: 700;
}

.brand-text strong {
  font-size: 24px;
  letter-spacing: 0.18em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.nav-cta {
  border: 1px solid var(--navy);
  padding: 11px 18px;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 28px;
  color: var(--navy);
}

.hero {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
  padding: 88px 0;
}

.eyebrow {
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 800;
  margin: 0 0 18px;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1 {
  font-size: clamp(44px, 7vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.07em;
  max-width: 820px;
  color: var(--navy);
  margin-bottom: 28px;
}

.hero-subtitle {
  max-width: 670px;
  color: var(--gray);
  font-size: 20px;
  line-height: 1.65;
  margin-bottom: 34px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 750;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 18px 35px rgba(7, 21, 38, 0.18);
}

.btn.secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--border);
}

.hero-panel {
  position: relative;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: -28px;
  background: radial-gradient(circle at 40% 20%, rgba(11, 79, 163, 0.18), transparent 52%);
  z-index: -1;
}

.panel-card {
  background: linear-gradient(145deg, var(--navy), #02070d);
  color: var(--white);
  border-radius: 30px;
  padding: 42px;
  box-shadow: var(--shadow);
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.panel-label {
  color: #8eb8ed;
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 800;
  margin-bottom: auto;
}

.panel-card h2 {
  font-size: 42px;
  letter-spacing: -0.05em;
  margin-bottom: 28px;
}

.panel-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.panel-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #dce8f6;
}

.panel-card li span {
  color: #8eb8ed;
  font-weight: 800;
}

.metrics {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.metric {
  padding: 34px;
  display: grid;
  gap: 8px;
  border-right: 1px solid var(--border);
  text-align: center;
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  color: var(--blue);
  font-size: 14px;
}

.metric span {
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 110px 0;
}

.section.compact {
  padding-top: 70px;
}

.section-head {
  max-width: 780px;
  margin-bottom: 46px;
}

.section-head h2,
.philosophy h2,
.contact h2 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -0.055em;
  color: var(--navy);
  margin-bottom: 22px;
}

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

.card {
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 30px;
  min-height: 310px;
  background: var(--white);
  transition: transform .2s ease, box-shadow .2s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.card-number {
  display: inline-flex;
  color: var(--blue);
  font-weight: 850;
  margin-bottom: 60px;
}

.card h3 {
  color: var(--navy);
  font-size: 22px;
  letter-spacing: -0.035em;
}

.card p,
.philosophy p,
.contact p {
  color: var(--gray);
  line-height: 1.75;
}

.philosophy {
  background: var(--light);
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 50px;
  align-items: center;
  padding: 105px max(20px, calc((100% - 1180px) / 2));
}

.quote-card {
  background: var(--navy);
  color: var(--white);
  border-radius: 30px;
  padding: 44px;
  min-height: 330px;
  display: flex;
  align-items: end;
}

.quote-card blockquote {
  margin: 0;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--border);
  border-radius: 26px;
  overflow: hidden;
}

.sector-grid span {
  min-height: 120px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--navy);
  border-right: 1px solid var(--border);
}

.sector-grid span:last-child {
  border-right: 0;
}

.contact {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 90px;
  background: linear-gradient(145deg, var(--navy), #02070d);
  color: var(--white);
  border-radius: 34px;
  padding: 56px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 50px;
}

.contact h2 {
  color: var(--white);
}

.email-link {
  display: inline-flex;
  margin-top: 12px;
  color: #b9d7ff;
  font-weight: 750;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #dce8f6;
  font-size: 13px;
  font-weight: 700;
}

input, textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-radius: 14px;
  padding: 14px 15px;
  font: inherit;
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255,255,255,0.48);
}

.footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 40px 0 60px;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 12px;
  color: var(--gray);
}

.footer-brand {
  width: fit-content;
}

.footer small {
  color: #8b95a6;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .hero,
  .philosophy,
  .contact {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: 1fr 1fr;
  }

  .sector-grid {
    grid-template-columns: 1fr 1fr;
  }

  .metrics {
    grid-template-columns: 1fr 1fr;
  }

  .metric:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 620px) {
  .brand-text strong {
    font-size: 20px;
  }

  .brand-text {
    letter-spacing: 0.28em;
  }

  .hero {
    padding: 54px 0;
  }

  .panel-card,
  .contact {
    padding: 28px;
    border-radius: 24px;
  }

  .cards,
  .metrics,
  .sector-grid {
    grid-template-columns: 1fr;
  }

  .metric,
  .sector-grid span {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .metric:last-child,
  .sector-grid span:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 76px 0;
  }
}
