:root {
  --ink: #111820;
  --muted: #5b6570;
  --paper: #f7f7f5;
  --panel: #ffffff;
  --line: #d8d6cf;
  --steel: #444B57;
  --copper: #4B237A;
  --green: #005A3C;
  --blue: #e8edf0;
  --shadow: 0 24px 70px rgba(17, 24, 32, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

.brand-banner {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 22;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 10px clamp(20px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 6px 18px rgba(17, 24, 32, 0.08);
  backdrop-filter: blur(12px);
}

.brand-banner img {
  display: block;
  width: min(420px, 78vw);
  height: auto;
  max-height: 76px;
  object-fit: contain;
}

.site-header {
  position: fixed;
  top: 96px;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px clamp(20px, 5vw, 64px);
  color: #ffffff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(246, 244, 239, 0.94);
  box-shadow: 0 12px 30px rgba(17, 24, 32, 0.08);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-logo {
  width: clamp(145px, 18vw, 255px);
  height: auto;
  max-height: 58px;
  object-fit: contain;
  padding: 5px 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(17, 24, 32, 0.12);
}

.brand-name {
  color: inherit;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  padding: 220px clamp(20px, 5vw, 64px) 72px;
  overflow: hidden;
  color: #ffffff;
}

.sub-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 54vh;
  padding: 220px clamp(20px, 5vw, 64px) 70px;
  overflow: hidden;
  color: #ffffff;
  background: var(--ink);
}

.sub-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sub-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(12, 20, 26, 0.9), rgba(12, 20, 26, 0.52), rgba(12, 20, 26, 0.24));
}

.sub-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.sub-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}

.page-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 44px;
  align-items: start;
}

.page-intro p,
.page-copy p,
.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

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

.page-card {
  padding: 28px;
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(17, 24, 32, 0.06);
}

.page-card p {
  color: var(--muted);
  line-height: 1.65;
}

.role-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.role-list span {
  padding: 15px 18px;
  border-left: 4px solid var(--green);
  background: #ffffff;
  font-weight: 800;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(34px, 6vw, 58px);
  color: #ffffff;
  background: linear-gradient(90deg, var(--green), var(--copper));
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.legal-content {
  max-width: 980px;
  margin: 0 auto;
  background: #ffffff;
}

.legal-content h2 {
  margin-top: 38px;
  font-size: clamp(24px, 3vw, 34px);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content a {
  color: var(--green);
  font-weight: 800;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 20, 26, 0.88) 0%, rgba(12, 20, 26, 0.62) 43%, rgba(12, 20, 26, 0.16) 100%),
    linear-gradient(0deg, rgba(17, 24, 32, 0.35), rgba(17, 24, 32, 0.18));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #b99ad1;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 21px;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}

.hero-offer {
  max-width: 560px;
  margin: 18px 0 0;
  color: #ffffff;
  font-weight: 800;
}

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

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-points span {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease;
}

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

.button.primary {
  background: var(--green);
  color: #ffffff;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.55);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.button.light {
  margin-top: 26px;
  background: #ffffff;
  color: var(--copper);
}

.button.outline {
  border-color: var(--green);
  background: transparent;
  color: var(--green);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.metrics div {
  padding: 32px clamp(20px, 5vw, 64px);
  background: #ffffff;
}

.metrics strong {
  display: block;
  font-size: clamp(28px, 4vw, 46px);
  color: var(--steel);
}

.metrics span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 600;
}

.lead-magnet {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 42px clamp(20px, 5vw, 64px);
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.report-cta-section {
  background: #ffffff;
}

.report-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(34px, 6vw, 58px);
  color: #ffffff;
  background: linear-gradient(90deg, var(--green), var(--copper));
  box-shadow: var(--shadow);
}

.report-cta .eyebrow {
  color: #d8c3e8;
}

.report-cta p {
  max-width: 880px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.report-listing {
  max-width: 980px;
}

.report-card {
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.report-card span {
  color: var(--copper);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.report-card p {
  color: var(--muted);
  line-height: 1.7;
}

.report-hero {
  min-height: 100vh;
  display: grid;
  align-content: center;
  gap: 34px;
  padding: 190px clamp(20px, 5vw, 64px) 84px;
  color: #ffffff;
  background:
    linear-gradient(120deg, rgba(0, 90, 60, 0.96), rgba(75, 35, 122, 0.92)),
    var(--green);
}

.report-logo-wrap {
  width: min(520px, 92vw);
  padding: 16px 20px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(17, 24, 32, 0.2);
}

.report-logo-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

.report-hero-content {
  max-width: 980px;
}

.report-hero-content .eyebrow {
  color: #d8c3e8;
}

.report-hero-content h1 {
  max-width: 980px;
}

.report-hero-content p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.6;
}

.report-cover-list span {
  min-height: 74px;
}

.lead-magnet h2 {
  max-width: 760px;
  font-size: clamp(28px, 3vw, 42px);
}

.lead-magnet p:not(.eyebrow) {
  max-width: 860px;
  color: var(--muted);
  line-height: 1.65;
}

.section {
  padding: clamp(72px, 10vw, 128px) clamp(20px, 5vw, 64px);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 40px;
}

.section-heading p:last-child,
.split p,
.candidate-strip p,
.contact-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.sales-intro {
  background: #ffffff;
}

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

.image-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
  align-items: stretch;
}

.feature-image,
.story-image,
.credibility-strip figure {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-image::after,
.story-image::after,
.credibility-strip figure::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(0, 88, 63, 0.32), rgba(75, 33, 111, 0.08));
}

.feature-image img,
.story-image img,
.credibility-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-image-engineering img {
  object-position: 62% center;
}

.value-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.value-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.sectors-section {
  background: #eef2ef;
}

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

.sector-grid span {
  min-height: 84px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  border-left: 4px solid var(--green);
  background: #ffffff;
  color: var(--ink);
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(17, 24, 32, 0.05);
}

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

.specialism-card {
  min-height: 430px;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 12px 40px rgba(17, 24, 32, 0.06);
}

.specialism-card .icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  background: var(--blue);
  color: var(--steel);
  font-weight: 800;
}

.specialism-card p {
  min-height: 104px;
  margin: 16px 0 22px;
  color: var(--muted);
  line-height: 1.6;
}

.specialism-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.specialism-card a {
  display: inline-flex;
  margin-top: 22px;
  color: var(--green);
  font-weight: 800;
}

.specialism-card li {
  position: relative;
  padding-left: 20px;
}

.specialism-card li::before {
  position: absolute;
  left: 0;
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 5px;
  background: var(--green);
}

.band {
  padding: clamp(72px, 10vw, 120px) clamp(20px, 5vw, 64px);
  color: #ffffff;
  background: var(--ink);
}

.international-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr) auto;
  gap: 34px;
  align-items: center;
  padding: clamp(58px, 8vw, 92px) clamp(20px, 5vw, 64px);
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(0, 88, 63, 0.95), rgba(75, 33, 111, 0.92)),
    var(--green);
}

.international-band .eyebrow {
  color: #d8c3e8;
}

.international-band h2 {
  margin-bottom: 18px;
}

.international-band p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.international-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.international-list span {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  font-weight: 800;
}

.visual-story {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: center;
  background: #ffffff;
}

.story-image {
  min-height: 430px;
}

.story-image-consultation img {
  object-position: 58% center;
}

.visual-story p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.story-points {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.story-points span {
  padding: 14px 16px;
  border-left: 4px solid var(--green);
  background: var(--paper);
  font-weight: 800;
}

.service-options {
  background: #ffffff;
}

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

.options-grid article {
  min-height: 230px;
  padding: 30px;
  border-top: 5px solid var(--copper);
  background: var(--paper);
}

.options-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.insights-preview {
  background: #eef2ef;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.insight-card {
  display: grid;
  align-content: start;
  min-height: 300px;
  padding: 28px;
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(17, 24, 32, 0.06);
}

.insight-card span {
  margin-bottom: 16px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.insight-card p {
  color: var(--muted);
  line-height: 1.65;
}

.insight-card a {
  align-self: end;
  margin-top: 18px;
  color: var(--green);
  font-weight: 800;
}

.band-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.process-list div {
  padding: 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.process-list span {
  color: #b99ad1;
  font-weight: 800;
}

.process-list h3 {
  margin-top: 16px;
}

.process-list p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 52px;
  align-items: center;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.check-grid span {
  padding: 14px 16px;
  border-left: 4px solid var(--green);
  background: #ffffff;
  font-weight: 700;
}

.quote-panel {
  padding: clamp(28px, 5vw, 48px);
  background: var(--copper);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.quote-panel p {
  margin: 0 0 24px;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.18;
}

.quote-panel span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  line-height: 1.6;
}

.candidate-strip {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
  padding: 58px clamp(20px, 5vw, 64px);
  background: #e5efeb;
}

.candidate-strip .button {
  margin-top: 18px;
}

.credibility-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  background: var(--ink);
  color: #ffffff;
}

.credibility-strip figure {
  min-height: 430px;
  box-shadow: none;
}

.credibility-strip img {
  object-position: 70% center;
}

.credibility-strip > div {
  display: grid;
  align-content: center;
  padding: clamp(42px, 7vw, 82px) clamp(20px, 5vw, 64px);
}

.credibility-strip .eyebrow {
  color: #b99ad1;
}

.credibility-strip p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.7;
}

.faq-section {
  background: #ffffff;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.faq-grid details {
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.faq-grid summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.faq-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  font-weight: 800;
  color: var(--steel);
}

.contact-details span {
  line-height: 1.5;
}

.map-panel {
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.map-panel iframe {
  display: block;
  width: 100%;
  min-height: 320px;
  border: 0;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 38px);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.contact-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form label:nth-child(7),
.contact-form label:nth-child(8),
.contact-form button,
.form-note {
  grid-column: 1 / -1;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 14px 14px;
  color: var(--ink);
  background: #fbfaf7;
  font: inherit;
}

textarea {
  resize: vertical;
}

.contact-form .button {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(20px, 5vw, 64px);
  color: #ffffff;
  background: #0d1218;
}

.site-footer p {
  margin: 0;
  font-weight: 800;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  color: #ffffff;
  background: rgba(17, 24, 32, 0.94);
  box-shadow: 0 18px 50px rgba(17, 24, 32, 0.24);
}

.sticky-cta span {
  padding: 0 8px;
  font-size: 13px;
  font-weight: 800;
}

.sticky-cta a {
  padding: 10px 12px;
  background: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.sticky-cta a:last-child {
  background: var(--copper);
}

@media (max-width: 1040px) {
  .specialism-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .specialism-card {
    min-height: 0;
  }

  .specialism-card p {
    min-height: 0;
  }

  .band-inner,
  .split,
  .candidate-strip,
  .contact-section,
  .international-band,
  .image-feature,
  .visual-story,
  .credibility-strip,
  .page-intro,
  .cta-panel,
  .report-cta {
    grid-template-columns: 1fr;
  }

  .value-grid,
  .options-grid,
  .sector-grid,
  .page-card-grid,
  .insight-grid {
    grid-template-columns: 1fr;
  }

  .lead-magnet {
    grid-template-columns: 1fr;
  }

  .feature-image,
  .story-image,
  .credibility-strip figure {
    min-height: 300px;
  }
}

@media (max-width: 720px) {
  .site-header {
    top: 86px;
    padding: 14px 20px;
  }

  .brand-banner {
    padding: 8px 20px;
  }

  .brand-banner img {
    width: min(300px, 72vw);
    max-height: 64px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 64px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: rgba(246, 244, 239, 0.98);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 14px;
  }

  .hero {
    min-height: 88vh;
    padding-top: 196px;
  }

  .sub-hero {
    padding-top: 196px;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(12, 20, 26, 0.9), rgba(12, 20, 26, 0.55));
  }

  .metrics,
  .specialism-grid,
  .process-list,
  .check-grid,
  .international-list,
  .contact-form,
  .faq-grid,
  .role-list {
    grid-template-columns: 1fr;
  }

  .contact-form label:nth-child(7),
  .contact-form label:nth-child(8),
  .contact-form button,
  .form-note {
    grid-column: auto;
  }

  .sticky-cta {
    left: 12px;
    right: 12px;
    bottom: 12px;
    justify-content: space-between;
  }

  .sticky-cta span {
    display: none;
  }

  .sticky-cta a {
    flex: 1;
    text-align: center;
  }

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