:root {
  --navy: #183153;
  --navy-dark: #071828;
  --navy-soft: #223f63;
  --orange: #f47c20;
  --orange-dark: #d96512;
  --white: #ffffff;
  --paper: #f7f8fa;
  --text: #142033;
  --muted: #5d697a;
  --border: #dfe4ea;
  --shadow: 0 18px 45px rgba(7, 24, 40, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body,
button,
input,
textarea {
  font: 400 16px/1.6 Inter, Arial, sans-serif;
}

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  color: var(--white);
  background: rgba(7, 24, 40, 0.98);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

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

.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.logo strong {
  color: var(--orange);
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.84);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.nav-cta {
  border-radius: 4px;
  background: var(--orange);
  color: var(--white) !important;
  padding: 11px 16px;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 4px;
  background: transparent;
  color: var(--white);
  padding: 8px 12px;
  font-weight: 700;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(7, 24, 40, 0.98) 0%, rgba(7, 24, 40, 0.92) 48%, rgba(24, 49, 83, 0.76) 100%),
    linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 58%, #101f31 100%);
}

.hero-grid {
  display: grid;
  min-height: 540px;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 56px;
  align-items: center;
  padding: 64px 0;
}

.hero-content {
  max-width: 760px;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 840px;
  margin: 0 0 24px;
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
}

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

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  padding: 13px 20px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--orange-dark);
}

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

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.hero-panel {
  align-self: end;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(7, 24, 40, 0.74);
  box-shadow: var(--shadow);
  padding: 28px;
}

.panel-kicker {
  margin: 0 0 16px;
  color: var(--white);
  font-weight: 800;
}

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

.hero-panel li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.82);
}

.hero-panel li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--orange);
  content: "/";
  font-weight: 800;
}

.proof-strip {
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

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

.proof-grid article {
  padding: 30px 28px 32px;
  border-right: 1px solid var(--border);
}

.proof-grid article:first-child {
  padding-left: 0;
}

.proof-grid article:last-child {
  border-right: 0;
  padding-right: 0;
}

.proof-icon {
  display: block;
  margin-bottom: 12px;
  color: var(--orange);
  font-weight: 800;
}

.proof-grid h2 {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.25;
}

.proof-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.section {
  padding: 88px 0;
}

.section-muted {
  background: var(--paper);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section h2,
.cta-band h2 {
  margin: 0 0 18px;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.12;
  letter-spacing: 0;
}

.section p {
  margin: 0 0 16px;
  color: #344054;
  font-size: 17px;
}

.section p:last-child {
  margin-bottom: 0;
}

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

.service-card {
  min-height: 220px;
  border: 1px solid var(--border);
  border-top: 4px solid var(--orange);
  border-radius: 8px;
  background: var(--white);
  padding: 26px;
  box-shadow: 0 10px 24px rgba(24, 49, 83, 0.06);
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.25;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.split-grid,
.contact-grid,
.sectors-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: start;
}

.detail-panel {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 32px;
}

.detail-panel h3 {
  margin: 0 0 22px;
  font-size: 22px;
}

.detail-panel dl {
  display: grid;
  gap: 22px;
  margin: 0;
}

.detail-panel div {
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.detail-panel div:first-child {
  border-top: 0;
  padding-top: 0;
}

.detail-panel dt {
  margin-bottom: 5px;
  color: var(--navy);
  font-weight: 800;
}

.detail-panel dd {
  margin: 0;
  color: var(--muted);
}

.sectors-section {
  background:
    linear-gradient(90deg, rgba(247, 248, 250, 0) 0%, rgba(247, 248, 250, 0) 50%, var(--paper) 50%, var(--paper) 100%);
}

.sector-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sector-list li {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  padding: 15px 18px 15px 36px;
  font-weight: 700;
}

.sector-list li::before {
  position: absolute;
  top: 15px;
  left: 18px;
  color: var(--orange);
  content: "/";
  font-weight: 800;
}

.cta-band {
  padding: 78px 0;
  color: var(--white);
  background: var(--navy-dark);
  text-align: center;
}

.cta-content {
  max-width: 760px;
}

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

.cta-band p {
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-details p {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  margin: 0;
  font-size: 16px;
}

.contact-details strong {
  color: var(--navy);
}

.contact-details a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(24, 49, 83, 0.28);
  text-underline-offset: 3px;
}

.contact-form {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--paper);
  padding: 30px;
}

.contact-form label {
  display: block;
  margin: 0 0 7px;
  color: var(--navy);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  margin: 0 0 18px;
  border: 1px solid #cfd6df;
  border-radius: 5px;
  background: var(--white);
  color: var(--text);
  padding: 12px 13px;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.consent-field {
  display: grid !important;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: #344054 !important;
  font-size: 14px;
  font-weight: 500 !important;
  line-height: 1.5;
}

.consent-field input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--orange);
}

.consent-field a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(24, 49, 83, 0.28);
  text-underline-offset: 3px;
}

.contact-form .btn {
  width: 100%;
}

.legal-content {
  max-width: 820px;
}

.legal-content h1 {
  margin: 0 0 18px;
  color: var(--text);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.08;
}

.legal-content h2 {
  margin: 34px 0 10px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.25;
}

.legal-content p {
  margin: 0 0 14px;
  color: #344054;
  font-size: 17px;
}

.site-footer {
  color: var(--white);
  background: var(--navy-dark);
  padding: 28px 0;
}

.footer-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.footer-wrap p {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-wrap p:last-child {
  margin-bottom: 0;
}

.footer-wrap strong {
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  font-size: 14px;
  font-weight: 700;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.84);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--navy-dark);
    padding: 10px 20px 20px;
  }

  .site-nav.open {
    display: grid;
  }

  .legal-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px;
    border-top: 0;
    background: transparent;
    padding: 0;
  }

  .site-nav a {
    padding: 13px 0;
  }

  .legal-nav a {
    padding: 0;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 68px 0;
  }

  .hero-panel {
    align-self: stretch;
    max-width: 520px;
  }

  .proof-grid,
  .split-grid,
  .contact-grid,
  .sectors-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid article,
  .proof-grid article:first-child,
  .proof-grid article:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
  }

  .proof-grid article:last-child {
    border-bottom: 0;
  }

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

  .sectors-section {
    background: var(--white);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .nav-wrap {
    min-height: 70px;
  }

  .logo {
    font-size: 24px;
  }

  .site-nav {
    top: 70px;
  }

  .hero {
    background-position: 58% center;
  }

  .hero-grid {
    padding: 52px 0;
  }

  .hero h1 {
    font-size: clamp(34px, 10.5vw, 42px);
  }

  .hero-copy {
    font-size: 17px;
  }

  .detail-panel,
  .contact-form {
    padding: 24px;
  }

  .hero-panel {
    display: none;
  }

  .hero-actions,
  .hero-actions .btn,
  .cta-band .btn {
    width: 100%;
  }

  .section {
    padding: 64px 0;
  }

  .cta-band {
    padding: 62px 0;
  }

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

  .service-card {
    min-height: auto;
  }

  .contact-details p {
    grid-template-columns: 1fr;
    gap: 2px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}
