:root {
  --ink: #111827;
  --muted: #667085;
  --paper: #f4f7fb;
  --white: #ffffff;
  --line: #d9e2ec;
  --night: #10152d;
  --blue: #1477ff;
  --aqua: #08b7bd;
  --mint: #8fe36f;
  --coral: #ff6b4a;
  --violet: #7357ff;
  --shadow: 0 24px 70px rgba(19, 32, 59, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 96px;
  padding: 14px clamp(28px, 6vw, 86px);
  border: 0;
  border-bottom: 1px solid rgba(16, 21, 45, 0.1);
  border-radius: 0;
  color: var(--night);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 52px rgba(16, 21, 45, 0.14);
}

.brand,
nav,
.hero-actions,
.hero-stats,
.signal-bar,
.footer-top,
.footer-bottom,
.social-links {
  display: flex;
  align-items: center;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  display: block;
  width: clamp(236px, 21vw, 306px);
  height: auto;
}

nav {
  gap: clamp(16px, 3vw, 34px);
  color: rgba(16, 21, 45, 0.72);
  font-size: 14px;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(16, 21, 45, 0.16);
  border-radius: 8px;
  color: var(--night);
  background: rgba(16, 21, 45, 0.04);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
}

.header-cta {
  color: var(--white);
  background: var(--night);
}

.hero {
  position: relative;
  min-height: 90vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 156px clamp(20px, 5vw, 72px) clamp(48px, 8vw, 90px);
  color: var(--white);
}

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

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 28%, rgba(20, 119, 255, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(8, 12, 28, 0.44), rgba(8, 12, 28, 0.86)),
    linear-gradient(90deg, rgba(8, 12, 28, 0.92), rgba(8, 12, 28, 0.28));
}

.hero-content {
  position: relative;
  width: min(830px, 100%);
}

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

.hero .eyebrow {
  color: var(--mint);
}

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

h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(44px, 6.4vw, 82px);
  line-height: 1.02;
  letter-spacing: 0;
}

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

h3 {
  margin-bottom: 12px;
  font-size: 21px;
}

.hero-copy {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.65;
}

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

.button.primary {
  color: #071725;
  background: var(--mint);
  box-shadow: 0 16px 36px rgba(143, 227, 111, 0.22);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-stats span,
.signal-bar span {
  border-radius: 8px;
  font-weight: 800;
}

.hero-stats span {
  padding: 13px 16px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 13px;
}

.hero-stats strong {
  display: block;
  color: var(--white);
  font-size: 19px;
}

.signal-bar {
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 20px clamp(20px, 5vw, 72px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.signal-bar span {
  padding: 11px 16px;
  color: #1d3444;
  background: #eef5fb;
  font-size: 13px;
}

.hero-promise {
  padding: clamp(34px, 5vw, 58px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background: linear-gradient(135deg, #10152d, #123b52);
  text-align: center;
}

.hero-promise p {
  max-width: 1120px;
  margin: 0 auto;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.24;
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.about-company,
.narrative,
.connect {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
}

.about-company {
  background: var(--white);
}

.about-body {
  display: grid;
  gap: 18px;
}

.about-body p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.75;
}

.narrative-copy p,
.journey-intro p,
.feature-card p,
.timeline p,
.outcome span,
.proof p,
.connect p,
.footer-top p,
.footer-column p {
  color: var(--muted);
  line-height: 1.65;
}

.narrative-copy p {
  font-size: 20px;
}

.narrative-copy a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--blue);
  font-weight: 900;
}

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

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

.feature-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--blue);
}

.feature-card.accent-teal::before {
  background: var(--aqua);
}

.feature-card.accent-coral::before {
  background: var(--coral);
}

.feature-card.accent-violet::before {
  background: var(--violet);
}

.feature-card.accent-lime::before {
  background: var(--mint);
}

.tech-expertise {
  background: #f8fbff;
}

.tech-expertise .section-heading p:not(.eyebrow) {
  max-width: 780px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

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

.tech-grid article {
  min-height: 286px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.tech-grid span {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 9px 13px;
  border-radius: 999px;
  color: #071725;
  background: linear-gradient(135deg, var(--mint), var(--aqua));
  font-size: 13px;
  font-weight: 900;
}

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

.icon {
  display: inline-flex;
  margin-bottom: 58px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.journey {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) 1fr;
  gap: clamp(34px, 6vw, 76px);
  background: var(--night);
  color: var(--white);
}

.journey .eyebrow {
  color: var(--mint);
}

.journey-intro p {
  color: rgba(255, 255, 255, 0.72);
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline div {
  display: grid;
  grid-template-columns: 52px 160px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.timeline span {
  color: var(--mint);
  font-weight: 900;
}

.timeline strong {
  font-size: 22px;
}

.timeline p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.outcomes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--white);
}

.outcome {
  min-height: 220px;
  padding: clamp(30px, 4vw, 48px);
  border-right: 1px solid var(--line);
}

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

.outcome strong {
  display: block;
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
}

.proof {
  text-align: center;
  background: #e9f4ff;
}

.trusted-clients {
  padding: clamp(70px, 9vw, 116px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background:
    radial-gradient(circle at 16% 20%, rgba(36, 199, 189, 0.18), transparent 32%),
    linear-gradient(135deg, #272b38, #4b4d53);
}

.trusted-clients-inner {
  max-width: 1260px;
  margin: 0 auto;
  text-align: center;
}

.trusted-clients .eyebrow {
  color: var(--mint);
}

.trusted-clients h2 {
  max-width: 820px;
  margin: 0 auto clamp(46px, 6vw, 78px);
  color: var(--white);
  font-size: clamp(30px, 3.4vw, 44px);
}

.client-showcase {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  gap: clamp(14px, 3vw, 28px);
}

.client-arrow {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.client-arrow:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.client-slider {
  overflow: hidden;
  padding: 6px;
  scroll-behavior: smooth;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.client-logos {
  display: flex;
  gap: clamp(14px, 2vw, 24px);
  width: max-content;
}

.client-logo {
  display: grid;
  place-items: center;
  flex: 0 0 clamp(170px, 16vw, 220px);
  min-height: 132px;
  padding: 22px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.16);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.client-logo:hover {
  transform: translateY(-4px);
  border-color: rgba(143, 227, 111, 0.4);
  background: rgba(255, 255, 255, 0.11);
}

.client-logo span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 12px;
  border-radius: 50%;
  color: #0d2035;
  background: linear-gradient(135deg, var(--mint), var(--aqua));
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(8, 183, 189, 0.22);
}

.client-logo strong {
  color: var(--white);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.05;
}

.client-logo small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hexa-logo strong {
  color: #9de978;
}

.savic-logo strong {
  color: #62d6ff;
}

blockquote {
  max-width: 940px;
  margin: 0 auto 20px;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.28;
  font-weight: 800;
}

.connect {
  background: linear-gradient(135deg, #12203d, #0d3a52);
  color: var(--white);
}

.connect .eyebrow {
  color: var(--mint);
}

.connect p {
  color: rgba(255, 255, 255, 0.74);
}

.service-locations {
  background: var(--white);
}

.service-locations .section-heading p:not(.eyebrow) {
  max-width: 850px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

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

.location-grid article {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
  box-shadow: var(--shadow);
}

.location-grid h3 {
  color: var(--night);
}

.location-grid p {
  color: var(--muted);
  line-height: 1.72;
}

form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  font: inherit;
}

select option {
  color: var(--ink);
}

textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  font: inherit;
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--mint);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

.site-footer {
  color: var(--white);
  background: #0b1022;
}

.page-header {
  color: var(--night);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(16, 21, 45, 0.12);
  box-shadow: 0 18px 52px rgba(16, 21, 45, 0.11);
}

.page-header nav {
  color: rgba(16, 21, 45, 0.72);
}

.page-header .menu-toggle {
  color: var(--night);
  border-color: rgba(16, 21, 45, 0.16);
  background: rgba(16, 21, 45, 0.04);
}

.page-header .header-cta {
  color: var(--white);
  background: var(--night);
}

.contact-page {
  background: #f7f9fc;
}

.inner-page {
  background: #f7f9fc;
}

.inner-hero {
  padding: 160px clamp(20px, 5vw, 72px) 76px;
  color: var(--night);
  background:
    linear-gradient(135deg, rgba(20, 119, 255, 0.1), rgba(143, 227, 111, 0.08)),
    #f7f9fc;
}

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

.inner-hero p:not(.eyebrow) {
  max-width: 780px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.7;
}

.page-split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
  background: var(--white);
}

.page-copy {
  display: grid;
  gap: 18px;
}

.page-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.76;
}

.dark-split {
  color: var(--white);
  background: linear-gradient(135deg, #10152d, #123b52);
}

.dark-split .eyebrow {
  color: var(--mint);
}

.dark-split .page-copy p {
  color: rgba(255, 255, 255, 0.76);
}

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

.value-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.value-grid article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.value-grid span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.customer-outcomes {
  padding-top: clamp(64px, 9vw, 118px);
  padding-bottom: clamp(64px, 9vw, 118px);
}

.insight-band {
  text-align: center;
  background: #e9f4ff;
}

.insight-band h2 {
  max-width: 1050px;
  margin: 0 auto;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
  padding: 160px clamp(20px, 5vw, 72px) 58px;
}

.contact-hero h1 {
  max-width: 820px;
  color: var(--night);
}

.contact-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}

.contact-hero-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(16, 21, 45, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(20, 119, 255, 0.08));
  pointer-events: none;
}

.contact-hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}

.contact-forms {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 42px);
  padding: 0 clamp(20px, 5vw, 72px) clamp(64px, 8vw, 96px);
}

.enquiry-panel {
  padding: clamp(26px, 4vw, 40px);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.enquiry-panel h2 {
  margin-bottom: 30px;
  color: var(--night);
  font-size: clamp(28px, 3.4vw, 42px);
  text-align: center;
}

.enquiry-form {
  gap: 18px;
  padding: 0;
  border: 0;
  background: transparent;
}

.enquiry-form label {
  color: var(--night);
}

.enquiry-form input,
.enquiry-form textarea {
  min-height: 58px;
  border-color: var(--form-accent, var(--aqua));
  color: var(--ink);
  background: #fbfdff;
}

.enquiry-form textarea {
  min-height: 152px;
}

.business-panel {
  --form-accent: #f3a713;
}

.candidate-panel {
  --form-accent: var(--aqua);
}

.phone-field {
  display: grid;
  grid-template-columns: 88px 1fr;
  border: 1px solid var(--form-accent, var(--aqua));
  border-radius: 8px;
  overflow: hidden;
  background: #fbfdff;
}

.phone-field input {
  border: 0;
  border-radius: 0;
}

.dial-code {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--night);
  background: #eef3f6;
  font-weight: 800;
}

.enquiry-form .button {
  justify-self: center;
  min-width: min(280px, 100%);
  margin-top: 18px;
  border-radius: 999px;
  font-size: 22px;
}

.enquiry-form .form-status {
  color: var(--blue);
  text-align: center;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding: clamp(52px, 7vw, 78px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background: linear-gradient(135deg, #10152d, #123b52);
}

.contact-details div {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-details h2 {
  font-size: clamp(28px, 4vw, 44px);
}

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

.compact-footer .footer-bottom {
  border-top: 0;
}

.footer-top {
  justify-content: space-between;
  gap: 28px;
  padding: clamp(46px, 7vw, 80px) clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-top > div {
  max-width: 640px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.18);
}

.footer-logo img {
  display: block;
  width: min(370px, 82vw);
  height: auto;
}

.footer-mini-logo {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.footer-mini-logo img {
  display: block;
  width: min(300px, 76vw);
  height: auto;
}

.footer-top p,
.footer-column p {
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 56px);
  padding: 42px clamp(20px, 5vw, 72px);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-column h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 17px;
  line-height: 1.1;
}

.footer-column a {
  color: var(--white);
  font-weight: 700;
}

.footer-column p a {
  color: var(--white);
  font-weight: 800;
}

.footer-contact {
  display: grid;
  gap: 10px;
  max-width: 390px;
  color: var(--white);
  font-style: normal;
  line-height: 1.5;
}

.footer-contact span,
.footer-contact a {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
}

.footer-contact b {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #071725;
  background: var(--mint);
  font-size: 14px;
  line-height: 1;
}

.footer-column a:hover {
  color: var(--mint);
}

.social-links {
  gap: 12px;
  margin-top: 6px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--white);
  font-weight: 900;
}

.footer-bottom {
  justify-content: space-between;
  gap: 18px;
  padding: 20px clamp(20px, 5vw, 72px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 14px;
}

@media (max-width: 980px) {
  .site-header {
    position: fixed;
    align-items: flex-start;
    flex-wrap: wrap;
    min-height: 82px;
    padding: 12px 18px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .brand img {
    width: 220px;
  }

  nav {
    display: none;
    flex-basis: 100%;
    width: 100%;
    padding: 14px 0 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    margin-top: 10px;
  }

  nav.is-open {
    display: grid;
    gap: 8px;
  }

  nav a {
    padding: 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
  }

  .page-header nav a {
    background: rgba(16, 21, 45, 0.06);
  }

  .hero {
    min-height: 820px;
    padding-top: 132px;
  }

  .about-company,
  .narrative,
  .page-split,
  .journey,
  .connect,
  .contact-hero {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .tech-grid,
  .value-grid,
  .value-grid.four,
  .location-grid,
  .outcomes,
  .footer-grid,
  .contact-forms,
  .contact-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline div {
    grid-template-columns: 48px 1fr;
  }

  .timeline p {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  .header-cta {
    display: none;
  }

  .hero {
    min-height: 760px;
    padding-top: 124px;
  }

  h1 {
    font-size: 40px;
    line-height: 1.08;
  }

  .feature-grid,
  .tech-grid,
  .value-grid,
  .value-grid.four,
  .location-grid,
  .outcomes,
  .footer-grid,
  .contact-forms,
  .contact-details {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    padding-top: 132px;
  }

  .contact-hero h1,
  .contact-hero p:not(.eyebrow) {
    margin-inline: 0;
  }

  .outcome {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .client-showcase {
    grid-template-columns: 1fr;
  }

  .client-arrow {
    display: none;
  }
}
