@font-face {
  font-family: "MADE Mirage";
  src: local("MADE Mirage"), local("MADEMirage");
  font-display: swap;
}

@font-face {
  font-family: "Proxima Nova";
  src: local("Proxima Nova"), local("ProximaNova-Regular");
  font-display: swap;
}

/* Self-hosted preview fonts prevent layout shifts when the licensed brand
   fonts are not installed on a visitor's device. */
@font-face {
  font-family: "Panda Display";
  src: url("../fonts/panda-display.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "Panda Body";
  src: url("../fonts/panda-body.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --red: #b51222;
  --red-bright: #df1830;
  --red-dark: #7c0c18;
  --navy: #0b2941;
  --navy-soft: #123d5c;
  --ink: #101820;
  --ivory: #f7f3ec;
  --paper: #fffdf8;
  --gold: #d59a3a;
  --line: rgba(16, 24, 32, 0.14);
  --muted: #66717b;
  /*
   * The approved preview renders with these bundled metrics. Keeping the
   * families self-hosted makes every browser wrap headings identically.
   */
  --font-title: "Panda Display", Arial, sans-serif;
  --font-copy: "Panda Body", Arial, sans-serif;
  --font-display: var(--font-title);
  --font-body: var(--font-copy);
}

/* Laravel admin */
.admin-body { background: #eef1f4; }
.admin-shell { min-height: 100vh; display: grid; grid-template-columns: 260px 1fr; }
.admin-sidebar { position: sticky; top: 0; height: 100vh; padding: 28px 20px; background: var(--navy); color: white; }
.admin-sidebar img { width: 200px; padding: 10px; background: white; }
.admin-sidebar nav { display: flex; flex-direction: column; gap: 5px; margin-top: 38px; }
.admin-sidebar nav a { padding: 12px 14px; color: rgba(255,255,255,.62); font-size: 12px; font-weight: 700; }
.admin-sidebar nav a:hover, .admin-sidebar nav a.active { background: rgba(255,255,255,.09); color: white; }
.admin-main { min-width: 0; }
.admin-topbar { min-height: 74px; display: flex; align-items: center; justify-content: space-between; padding: 0 36px; border-bottom: 1px solid var(--line); background: white; }
.admin-topbar h1 { margin: 0; font: 700 20px var(--font-display), sans-serif; }
.admin-topbar form button { border: 0; background: transparent; color: var(--red); font-weight: 800; cursor: pointer; }
.admin-content { padding: 35px; }
.admin-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.admin-stat, .admin-panel { padding: 24px; border: 1px solid rgba(16,24,32,.08); background: white; }
.admin-stat span { color: var(--muted); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.admin-stat strong { display: block; margin-top: 12px; font: 700 35px var(--font-display), sans-serif; }
.admin-panel { margin-top: 18px; }
.admin-panel-header { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.admin-panel h2 { margin: 0; font: 700 21px var(--font-display), sans-serif; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.admin-table th, .admin-table td { padding: 13px 10px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.admin-table th { color: var(--muted); font-size: 9px; text-transform: uppercase; }
.admin-actions { display: flex; gap: 8px; }
.admin-actions a, .admin-actions button, .admin-button { display: inline-flex; align-items: center; min-height: 36px; padding: 0 13px; border: 1px solid var(--line); background: white; color: var(--ink); font: 800 10px var(--font-body), sans-serif; cursor: pointer; }
.admin-button.primary { border-color: var(--red); background: var(--red); color: white; }
.admin-button.danger { color: var(--red); }
.admin-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.admin-form label { display: flex; flex-direction: column; gap: 7px; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.admin-form input, .admin-form textarea, .admin-form select { width: 100%; min-height: 48px; padding: 11px 13px; border: 1px solid var(--line); background: white; font: 13px var(--font-body), sans-serif; }
.admin-form textarea { min-height: 120px; resize: vertical; }
.admin-form .wide { grid-column: 1 / -1; }
.admin-alert { margin-bottom: 18px; padding: 13px 16px; background: #e7f7ee; color: #17683b; font-size: 12px; }
.admin-errors { margin-bottom: 18px; padding: 15px 20px; background: #fff0f1; color: var(--red-dark); font-size: 12px; }
.admin-login { min-height: 100vh; display: grid; place-items: center; padding: 25px; background: var(--navy); }
.login-card { width: min(430px, 100%); padding: 40px; background: white; }
.login-card img { width: 250px; margin-bottom: 35px; }
.login-card h1 { margin: 0 0 8px; font: 700 28px var(--font-display), sans-serif; }
.login-card > p { margin: 0 0 30px; color: var(--muted); font-size: 12px; }
.login-card label { display: flex; flex-direction: column; gap: 8px; margin-bottom: 17px; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.login-card input { min-height: 50px; padding: 0 14px; border: 1px solid var(--line); }
.status-pill { display: inline-flex; padding: 5px 8px; border-radius: 20px; background: #e7f7ee; color: #17683b; font-size: 8px; font-weight: 800; text-transform: uppercase; }
.status-pill.draft { background: #f5eee1; color: #875c1c; }
@media (max-width: 900px) {
  .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar { position: static; height: auto; }
  .admin-sidebar nav { flex-direction: row; flex-wrap: wrap; }
  .admin-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .admin-content, .admin-topbar { padding-left: 18px; padding-right: 18px; }
  .admin-grid, .admin-form { grid-template-columns: 1fr; }
  .admin-form .wide { grid-column: 1; }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

img {
  display: block;
  max-width: 100%;
}

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

.topline {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.topline-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 32px;
}

.topline-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topline-right i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--red-bright);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(18px);
}

.nav-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
}

.brand {
  width: 235px;
}

.brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  margin-right: 36px;
  font-size: 13px;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
  padding: 28px 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 19px;
  height: 2px;
  background: var(--red);
  transition: right 0.2s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  right: 0;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-weight: 800;
}

.nav-cta {
  min-height: 48px;
  padding: 0 22px;
  background: var(--red);
  color: white;
  font-size: 13px;
}

.nav-cta span,
.button span {
  font-size: 18px;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(110deg, rgba(11, 41, 65, 0.99) 0 44%, rgba(11, 41, 65, 0.88) 56%, rgba(11, 41, 65, 0.1) 100%),
    var(--navy);
}

.hero::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  left: -300px;
  top: -280px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(255, 255, 255, 0.018),
    0 0 0 160px rgba(255, 255, 255, 0.014);
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.19;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.2) 0.7px, transparent 0.7px);
  background-size: 9px 9px;
  mask-image: linear-gradient(to right, black, transparent 75%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 690px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 92px 0 82px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 29px;
  height: 2px;
  background: var(--red-bright);
}

.eyebrow.red {
  color: var(--red);
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.68);
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(52px, 5.2vw, 82px);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 em {
  display: block;
  color: #ff4c5f;
  font-style: normal;
}

.hero-lede {
  max-width: 590px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.73);
  font-size: 17px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 38px;
}

.button {
  min-height: 58px;
  padding: 0 27px;
  transition: transform 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  background: var(--red-bright);
  color: white;
}

.button-primary:hover {
  background: #f01f3a;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  color: white;
  font-size: 13px;
  font-weight: 800;
}

.text-link.dark {
  color: var(--ink);
  border-color: var(--line);
}

.trust-row {
  display: flex;
  gap: 20px;
  margin-top: 48px;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--font-display), sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trust-row span + span::before {
  content: "/";
  margin-right: 20px;
  color: rgba(255, 255, 255, 0.2);
}

.hero-visual {
  align-self: stretch;
  margin-right: calc((100vw - min(1180px, calc(100vw - 48px))) / -2);
}

.image-frame {
  position: relative;
  height: 100%;
  min-height: 690px;
  overflow: hidden;
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--navy) 0%, rgba(11, 41, 65, 0.2) 32%, transparent 70%);
}

.image-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hero-badge {
  position: absolute;
  z-index: 3;
  right: 0;
  top: 62px;
  width: 145px;
  height: 145px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(181, 18, 34, 0.92);
  backdrop-filter: blur(8px);
}

.hero-badge strong {
  font-family: var(--font-display), sans-serif;
  font-size: 37px;
}

.hero-badge span {
  max-width: 85px;
  margin-top: 6px;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 10px;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-caption {
  position: absolute;
  z-index: 3;
  right: 40px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(8, 22, 35, 0.76);
  backdrop-filter: blur(10px);
  font-size: 11px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #58d68d;
  box-shadow: 0 0 0 5px rgba(88, 214, 141, 0.13);
}

.metric-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.metric-strip > div {
  min-height: 102px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.metric-strip > div:first-child {
  padding-left: 0;
}

.metric-strip strong {
  font-family: var(--font-display), sans-serif;
  color: white;
  font-size: 25px;
}

.metric-strip span {
  max-width: 155px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  line-height: 1.5;
  text-transform: uppercase;
}

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

.statement {
  padding: 110px 0;
}

.statement-grid {
  display: grid;
  grid-template-columns: 0.34fr 1fr;
  gap: 50px;
}

.section-label {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.statement h2 {
  max-width: 850px;
  margin: 0;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(35px, 4.2vw, 58px);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.statement h2 span {
  color: rgba(255, 255, 255, 0.28);
}

.statement div > p:last-child {
  max-width: 700px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 16px;
  line-height: 1.8;
}

.services-section,
.work-section,
.process-section {
  padding: 120px 0;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 52px;
}

.section-heading h2,
.process-heading h2 {
  max-width: 710px;
  margin: 0;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(38px, 4vw, 58px);
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 320px;
  padding: 42px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.25s ease, color 0.25s ease;
}

.service-card:hover {
  background: var(--navy);
  color: white;
}

.service-number {
  margin-bottom: 44px;
  color: var(--red);
  font-family: var(--font-display), sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.service-card h3 {
  margin: 0;
  font-family: var(--font-display), sans-serif;
  font-size: 27px;
  letter-spacing: -0.035em;
}

.service-card > p {
  max-width: 475px;
  margin: 16px 0 26px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.service-card:hover > p {
  color: rgba(255, 255, 255, 0.58);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag-row span {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card:hover .tag-row span {
  color: rgba(255, 255, 255, 0.55);
  border-color: rgba(255, 255, 255, 0.14);
}

.service-card > a {
  position: absolute;
  right: 36px;
  top: 36px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  font-size: 18px;
}

.africa-section {
  padding: 120px 0;
  background: var(--navy);
  color: white;
}

.africa-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 90px;
}

.africa-image {
  position: relative;
}

.africa-image::before {
  content: "";
  position: absolute;
  inset: -18px 18px 18px -18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.africa-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.corner-mark {
  position: absolute;
  z-index: 2;
  right: -26px;
  bottom: -26px;
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: white;
  font-family: var(--font-display), sans-serif;
  font-size: 50px;
  font-weight: 800;
}

.africa-copy h2 {
  margin: 0;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(40px, 4.2vw, 60px);
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.africa-copy > p:not(.eyebrow) {
  margin: 26px 0 38px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  line-height: 1.8;
}

.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.feature-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.feature-list li > span {
  color: var(--red-bright);
  font-size: 10px;
  font-weight: 800;
}

.feature-list strong,
.feature-list small {
  display: block;
}

.feature-list strong {
  font-size: 14px;
}

.feature-list small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 11px;
}

.work-section {
  background: var(--ivory);
}

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

.work-card {
  min-height: 425px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  color: white;
  overflow: hidden;
  position: relative;
}

.work-card::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -110px;
  top: -90px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(255, 255, 255, 0.025);
}

.work-card.red {
  background: var(--red);
}

.work-card.navy {
  background: var(--navy);
}

.work-card.gold {
  background: #9d6b20;
}

.work-top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.work-code {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-family: var(--font-display), sans-serif;
  font-weight: 700;
}

.work-card > p {
  margin: auto 0 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.work-card h3 {
  margin: 0;
  font-family: var(--font-display), sans-serif;
  font-size: 32px;
  letter-spacing: -0.04em;
}

.work-line {
  margin: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.work-card small {
  color: rgba(255, 255, 255, 0.61);
  font-size: 12px;
  line-height: 1.65;
}

.impact-section {
  background: var(--red);
  color: white;
}

.impact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 570px;
}

.impact-copy {
  align-self: center;
  padding: 80px 80px 80px 0;
}

.impact-copy h2 {
  margin: 0;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(40px, 4.1vw, 58px);
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.impact-copy > p:not(.eyebrow) {
  margin: 26px 0 34px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
}

.button-light {
  color: var(--ink);
  background: var(--paper);
}

.impact-image {
  margin-right: calc((100vw - min(1180px, calc(100vw - 48px))) / -2);
}

.impact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
}

.process-heading > p {
  max-width: 340px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 60px;
  border-top: 1px solid var(--line);
}

.process-grid article {
  min-height: 245px;
  padding: 30px 25px;
  border-right: 1px solid var(--line);
}

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

.process-grid article > span {
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
}

.process-grid h3 {
  margin: 48px 0 13px;
  font-family: var(--font-display), sans-serif;
  font-size: 23px;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.cta-section {
  padding: 90px 0;
  background: var(--navy);
  color: white;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.cta-inner h2 {
  max-width: 800px;
  margin: 0;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(38px, 4vw, 57px);
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.button-white {
  flex: 0 0 auto;
  color: var(--red);
  background: white;
}

.site-footer {
  padding: 74px 0 25px;
  background: #081a29;
  color: white;
}

.footer-top {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
  padding-bottom: 58px;
}

.footer-top > div:first-child img {
  width: 250px;
  filter: brightness(1.55);
}

.footer-top > div:first-child p {
  max-width: 350px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  line-height: 1.75;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links strong {
  margin-bottom: 8px;
  color: white;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.49);
  font-size: 12px;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.34);
  font-size: 10px;
}

.inner-hero {
  position: relative;
  overflow: hidden;
  padding: 105px 0 95px;
  background: var(--navy);
  color: white;
}

.inner-hero::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -150px;
  top: -250px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(255, 255, 255, 0.018),
    0 0 0 160px rgba(255, 255, 255, 0.014);
}

.inner-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: 80px;
}

.inner-hero h1 {
  margin: 0;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(53px, 6.2vw, 86px);
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.inner-hero h1 em {
  display: block;
  color: #ff4c5f;
  font-style: normal;
}

.inner-hero-grid > p {
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.82;
}

.inner-section {
  padding: 115px 0;
}

.capability-list {
  border-top: 1px solid var(--line);
}

.capability-list article {
  display: grid;
  grid-template-columns: 90px 1fr 0.78fr;
  gap: 40px;
  padding: 52px 0;
  border-bottom: 1px solid var(--line);
}

.cap-number {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
}

.capability-list h2 {
  max-width: 540px;
  margin: 0;
  font-family: var(--font-display), sans-serif;
  font-size: 33px;
  letter-spacing: -0.04em;
}

.capability-list div > p {
  max-width: 540px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.capability-list ul {
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.capability-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(16, 24, 32, 0.08);
  color: #48545e;
  font-size: 12px;
}

.capability-list li::before {
  content: "↗";
  margin-right: 12px;
  color: var(--red);
}

.delivery-band {
  padding: 95px 0;
  background: var(--ink);
  color: white;
}

.delivery-grid {
  display: grid;
  grid-template-columns: 0.3fr 1fr;
  gap: 45px;
}

.delivery-grid h2 {
  max-width: 800px;
  margin: 0;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(38px, 4vw, 55px);
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.delivery-points {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.delivery-points span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 700;
}

.work-cases {
  background: var(--ivory);
}

.case-study {
  min-height: 410px;
  display: grid;
  grid-template-columns: 0.2fr 1.05fr 0.75fr;
  gap: 40px;
  align-items: end;
  padding: 50px;
  margin-bottom: 24px;
  color: white;
}

.case-red {
  background: var(--red);
}

.case-navy {
  background: var(--navy);
}

.case-gold {
  background: #96661f;
}

.case-ink {
  background: var(--ink);
}

.case-index {
  align-self: start;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 800;
}

.case-main > p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-main h2 {
  margin: 0;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(42px, 4.5vw, 65px);
  letter-spacing: -0.06em;
}

.case-main h3 {
  max-width: 570px;
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.65;
}

.case-meta > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 35px;
}

.case-meta span {
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.case-meta > p {
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.57);
  font-size: 11px;
  line-height: 1.6;
}

.case-meta strong {
  display: block;
  margin-bottom: 8px;
  color: white;
  font-size: 9px;
  text-transform: uppercase;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 90px;
}

.about-grid h2 {
  max-width: 420px;
  margin: 0;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(40px, 4.3vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.prose-large {
  border-left: 1px solid var(--line);
  padding-left: 55px;
}

.prose-large p {
  margin: 0 0 26px;
  color: #43505a;
  font-size: 17px;
  line-height: 1.85;
}

.belief-section {
  padding: 95px 0;
  background: var(--ivory);
}

.belief-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.belief-grid article {
  min-height: 285px;
  padding: 35px;
  border-right: 1px solid var(--line);
}

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

.belief-grid span {
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
}

.belief-grid h3 {
  margin: 70px 0 15px;
  font-family: var(--font-display), sans-serif;
  font-size: 27px;
}

.belief-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.leadership-section {
  padding: 110px 0;
  background: var(--navy);
  color: white;
}

.leadership-grid {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  align-items: center;
  gap: 75px;
}

.leader-monogram {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: var(--red);
  font-family: var(--font-display), sans-serif;
  font-size: clamp(70px, 9vw, 130px);
  font-weight: 700;
  letter-spacing: -0.08em;
}

.leadership-grid h2 {
  margin: 0;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(43px, 4.5vw, 64px);
  letter-spacing: -0.05em;
}

.leadership-grid h3 {
  margin: 10px 0 28px;
  color: #ff6576;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.leadership-grid div > p:last-child {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.56);
  line-height: 1.8;
}

.ai-status {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.ai-status-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.ai-status-inner > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ai-status-inner strong {
  font-size: 12px;
}

.ai-status-inner small,
.ai-status-inner > span:last-child {
  color: var(--muted);
  font-size: 9px;
}

.ai-status-inner > span:last-child {
  margin-left: auto;
}

.ai-grid {
  display: grid;
  grid-template-columns: 230px 1fr;
  align-items: start;
  gap: 85px;
}

.ai-grid aside {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--ivory);
}

.ai-grid aside p {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ai-grid aside a {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: #4c5862;
  font-size: 11px;
}

.ai-content > section {
  scroll-margin-top: 120px;
  padding-bottom: 70px;
  margin-bottom: 70px;
  border-bottom: 1px solid var(--line);
}

.ai-content h2 {
  margin: 0 0 28px;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(34px, 4vw, 48px);
  letter-spacing: -0.045em;
}

.ai-content blockquote {
  margin: 0 0 28px;
  padding: 24px 30px;
  border-left: 4px solid var(--red);
  background: var(--ivory);
  color: var(--navy);
  font-family: var(--font-display), sans-serif;
  font-size: 24px;
  line-height: 1.5;
}

.ai-content section > p:not(.eyebrow, .citation-note) {
  color: var(--muted);
  line-height: 1.8;
}

.fact-table {
  margin: 0;
  border-top: 1px solid var(--line);
}

.fact-table > div {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 30px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.fact-table dt {
  color: var(--muted);
  font-size: 11px;
}

.fact-table dd {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.ai-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ai-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: #46525c;
  font-size: 12px;
}

.ai-list li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--red);
}

.product-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.product-facts article {
  min-height: 190px;
  padding: 24px;
  background: var(--navy);
  color: white;
}

.product-facts strong {
  font-family: var(--font-display), sans-serif;
  font-size: 18px;
}

.product-facts p {
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  line-height: 1.7;
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  padding: 21px 0;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.faq-list details p {
  max-width: 720px;
  margin: -3px 0 22px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.machine-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.machine-links a {
  display: flex;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 800;
}

.machine-links a:hover {
  border-color: var(--red);
  color: var(--red);
}

.citation-note {
  margin-top: 25px;
  padding: 17px;
  background: var(--ivory);
  color: var(--muted);
  font-size: 10px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 90px;
}

.contact-details h2 {
  margin: 0;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(40px, 4vw, 56px);
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.contact-details > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.8;
}

.contact-lines {
  margin-top: 45px;
  border-top: 1px solid var(--line);
}

.contact-lines > div {
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.contact-lines small,
.contact-lines a,
.contact-lines strong {
  display: block;
}

.contact-lines small {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
}

.contact-lines a,
.contact-lines strong {
  font-size: 13px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 42px;
  background: var(--ivory);
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: white;
  color: var(--ink);
  font: 13px var(--font-body), sans-serif;
}

.contact-form input,
.contact-form select {
  min-height: 52px;
  padding: 0 15px;
}

.contact-form textarea {
  padding: 15px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(181, 18, 34, 0.08);
}

.full-field {
  grid-column: 1 / -1;
}

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

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

.insights-grid article {
  min-height: 450px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border: 1px solid var(--line);
}

.article-index {
  margin-bottom: 70px;
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
}

.insights-grid article > p {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.insights-grid h2 {
  margin: 0;
  font-family: var(--font-display), sans-serif;
  font-size: 26px;
  line-height: 1.16;
  letter-spacing: -0.04em;
}

.insights-grid small {
  margin: 20px 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.75;
}

.insights-grid article > div:last-child {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
}

.insights-grid a {
  color: var(--ink);
  font-weight: 800;
}

.laravel-hero-slide {
  display: none;
  animation: slideFade .55s ease both;
}

.laravel-hero-slide.is-active {
  display: grid;
}

@keyframes slideFade {
  from { opacity: .35; transform: translateX(8px); }
  to { opacity: 1; transform: translateX(0); }
}

.laravel-slider-controls {
  position: absolute;
  z-index: 6;
  right: 5vw;
  bottom: 116px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(360px, 42vw);
  padding: 9px 12px;
  background: rgba(8, 22, 35, .82);
  backdrop-filter: blur(10px);
}

.laravel-slider-controls > div {
  display: flex;
  align-items: center;
  gap: 7px;
}

.laravel-slider-controls button {
  min-width: 30px;
  min-height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  color: white;
  cursor: pointer;
}

.laravel-slider-controls .slider-dots button {
  min-width: 7px;
  min-height: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.32);
}

.laravel-slider-controls .slider-dots button.active {
  width: 22px;
  border-radius: 10px;
  background: var(--red-bright);
}

.service-image-card {
  grid-column: span 4;
  overflow: hidden;
  border: 1px solid var(--line);
  background: white;
}

.service-image-card:nth-child(4),
.service-image-card:nth-child(5) {
  grid-column: span 6;
}

.service-card-image {
  width: 100%;
  height: 235px;
  object-fit: cover;
  background: var(--navy);
  transition: transform .5s ease;
}

.service-image-card:hover .service-card-image,
.catalog-card:hover .catalog-image {
  transform: scale(1.025);
}

.service-card-copy {
  position: relative;
  min-height: 250px;
  padding: 28px;
}

.service-card-copy h3 {
  margin: 10px 0 12px;
  font-family: var(--font-title);
  font-size: 28px;
  line-height: 1.08;
}

.service-card-copy p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.service-card-copy > a {
  position: absolute;
  right: 28px;
  bottom: 26px;
  font-size: 20px;
  color: var(--red);
}

.service-catalog {
  padding: 110px 0;
  background: var(--ivory);
}

.service-catalog.catalog-alt {
  background: white;
}

.catalog-heading {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}

.catalog-heading > div {
  max-width: 780px;
}

.catalog-heading h2 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(38px, 4vw, 60px);
  line-height: 1.02;
}

.catalog-heading > strong {
  color: var(--red);
  font-family: var(--font-title);
  font-size: 48px;
}

.services-catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.catalog-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: white;
}

.catalog-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  background: var(--navy);
  transition: transform .5s ease;
}

.catalog-copy {
  padding: 30px;
}

.catalog-copy > span {
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
}

.catalog-copy h3 {
  margin: 12px 0;
  font-family: var(--font-title);
  font-size: 32px;
  line-height: 1.05;
}

.catalog-copy p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.catalog-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.catalog-copy li {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 20px;
  color: #56626c;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.catalog-copy > a {
  display: block;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.team-section {
  padding: 120px 0;
  background: var(--navy);
  color: white;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.15);
  border-left: 1px solid rgba(255,255,255,.15);
}

.team-lead {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-right: 1px solid rgba(255,255,255,.15);
  border-bottom: 1px solid rgba(255,255,255,.15);
}

.team-lead > img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.team-monogram {
  width: 94px;
  height: 94px;
  display: grid;
  place-items: center;
  background: var(--red);
  font-family: var(--font-title);
  font-size: 38px;
}

.team-lead > p {
  margin: auto 0 10px;
  color: #ff7684;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.team-lead h3 {
  margin: 0;
  font-family: var(--font-title);
  font-size: 25px;
}

.team-lead small {
  margin-top: 14px;
  color: rgba(255,255,255,.58);
  font-size: 11px;
  line-height: 1.7;
}

.team-links {
  display: flex;
  gap: 15px;
  margin-top: 18px;
  font-size: 10px;
  font-weight: 800;
}

.portfolio-category + .portfolio-category {
  padding-top: 0;
}

.customer-logo-section {
  overflow: hidden;
  padding: 105px 0;
  border-top: 1px solid var(--line);
  background: white;
}

.customer-logo-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 45px;
  margin-bottom: 45px;
}

.customer-logo-heading > div {
  max-width: 720px;
}

.customer-logo-heading h2 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(38px, 4.5vw, 62px);
  line-height: 1.02;
}

.customer-logo-heading > p {
  max-width: 340px;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.customer-logo-viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}

.customer-logo-track {
  width: max-content;
  display: flex;
  animation: customerMarquee 30s linear infinite;
}

.customer-logo-viewport:hover .customer-logo-track {
  animation-play-state: paused;
}

.customer-logo-group {
  display: flex;
  gap: 14px;
  padding-right: 14px;
}

.customer-logo-card {
  width: 245px;
  min-height: 145px;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  column-gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.customer-logo-card i,
.customer-logo-card > img {
  grid-row: 1 / 3;
  width: 58px;
  height: 58px;
}

.customer-logo-card i {
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-family: var(--font-title);
  font-size: 20px;
  font-style: normal;
}

.customer-logo-card > img {
  object-fit: contain;
}

.customer-logo-card > span {
  align-self: end;
  font-family: var(--font-title);
  font-size: 19px;
  line-height: 1.05;
}

.customer-logo-card small {
  align-self: start;
  margin-top: 7px;
  color: var(--red);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

@keyframes customerMarquee {
  to { transform: translateX(-50%); }
}

.reveal {
  animation: rise 0.8s ease both;
}

.delay-1 {
  animation-delay: 0.12s;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    animation: none;
  }
}

@media (max-width: 980px) {
  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .mobile-menu {
    display: block;
    position: relative;
    margin-left: auto;
  }

  .mobile-menu summary {
    list-style: none;
    padding: 12px 17px;
    border: 1px solid var(--line);
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu nav {
    position: absolute;
    right: 0;
    top: 50px;
    width: 240px;
    display: flex;
    flex-direction: column;
    padding: 14px;
    background: white;
    border: 1px solid var(--line);
    box-shadow: 0 18px 50px rgba(16, 24, 32, 0.18);
  }

  .mobile-menu a {
    padding: 12px;
    font-size: 13px;
    font-weight: 700;
  }

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

  .hero-copy {
    padding: 80px 0 45px;
  }

  .hero-visual {
    margin: 0 -24px;
  }

  .image-frame {
    min-height: 500px;
  }

  .image-frame::after {
    background: linear-gradient(180deg, var(--navy), transparent 35%);
  }

  .metric-strip {
    width: 100%;
  }

  .statement-grid,
  .africa-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .statement-grid {
    gap: 30px;
  }

  .africa-grid {
    gap: 70px;
  }

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

  .work-card {
    min-height: 330px;
  }

  .impact-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .impact-copy {
    width: min(100% - 48px, 1180px);
    margin: auto;
    padding: 80px 0;
  }

  .impact-image {
    margin: 0;
    max-height: 560px;
  }

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

  .footer-top {
    gap: 55px;
  }

  .inner-hero-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .inner-hero-grid > p {
    max-width: 700px;
  }

  .capability-list article {
    grid-template-columns: 65px 1fr;
  }

  .capability-list article > ul {
    grid-column: 2;
  }

  .case-study {
    grid-template-columns: 70px 1fr;
  }

  .case-meta {
    grid-column: 2;
  }

  .about-grid,
  .leadership-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .prose-large {
    padding: 35px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .leader-monogram {
    max-width: 380px;
  }

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

  .ai-grid aside {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0 18px;
  }

  .ai-grid aside p {
    width: 100%;
  }

  .ai-grid aside a {
    border-bottom: 0;
  }

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

  .insights-grid article {
    min-height: 350px;
  }
}

@media (max-width: 650px) {
  .container {
    width: min(100% - 32px, 1180px);
  }

  .topline-inner {
    justify-content: center;
  }

  .topline-inner > span:first-child {
    display: none;
  }

  .brand {
    width: 205px;
  }

  .nav-inner {
    min-height: 72px;
  }

  .hero h1 {
    font-size: 47px;
  }

  .hero-lede {
    font-size: 15px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .trust-row span + span::before {
    margin-right: 10px;
  }

  .image-frame {
    min-height: 420px;
  }

  .hero-badge {
    width: 112px;
    height: 112px;
    top: 20px;
  }

  .hero-badge strong {
    font-size: 28px;
  }

  .hero-caption {
    right: 14px;
  }

  .metric-strip {
    grid-template-columns: 1fr;
  }

  .metric-strip > div,
  .metric-strip > div:first-child {
    min-height: 75px;
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .statement,
  .services-section,
  .work-section,
  .process-section,
  .africa-section {
    padding: 82px 0;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .service-card {
    min-height: 290px;
    padding: 30px;
  }

  .corner-mark {
    width: 75px;
    height: 75px;
    right: -8px;
    bottom: -20px;
  }

  .process-heading,
  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .process-grid article {
    min-height: 190px;
    padding-left: 0;
    border-bottom: 1px solid var(--line);
    border-right: 0;
  }

  .process-grid h3 {
    margin-top: 34px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .inner-hero {
    padding: 80px 0 70px;
  }

  .inner-hero h1 {
    font-size: 48px;
  }

  .inner-section {
    padding: 80px 0;
  }

  .capability-list article {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .capability-list article > ul {
    grid-column: 1;
  }

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

  .delivery-points {
    grid-column: 1;
  }

  .case-study {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 32px;
  }

  .case-meta {
    grid-column: 1;
  }

  .belief-grid,
  .ai-list,
  .product-facts,
  .machine-links {
    grid-template-columns: 1fr;
  }

  .belief-grid article,
  .belief-grid article:first-child {
    min-height: 230px;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .belief-grid h3 {
    margin-top: 45px;
  }

  .ai-status-inner {
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 18px 0;
  }

  .ai-status-inner > span:last-child {
    width: 100%;
    margin-left: 20px;
  }

  .fact-table > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .contact-grid {
    gap: 55px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 28px 20px;
  }

  .full-field {
    grid-column: 1;
  }
}

/* Final media-rich content update */
.team-directory-section {
  padding: 120px 0;
  background: var(--paper);
}

.team-tap-note {
  max-width: 260px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.team-directory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.team-profile-card {
  position: relative;
  min-width: 0;
}

.team-profile-card > summary {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  background: white;
  cursor: pointer;
}

.team-profile-card > summary::-webkit-details-marker {
  display: none;
}

.team-profile-image {
  height: 440px;
  overflow: hidden;
  background: var(--navy);
}

.team-profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .45s ease;
}

.team-profile-card:hover .team-profile-image img {
  transform: scale(1.025);
}

.team-profile-monogram {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: white;
  font-family: var(--font-title);
  font-size: 76px;
}

.team-profile-heading {
  padding: 24px;
}

.team-profile-heading p,
.team-profile-details > p {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.team-profile-heading h3,
.team-profile-details h3 {
  margin: 0;
  font-family: var(--font-title);
  font-size: 27px;
  line-height: 1.06;
}

.team-profile-heading > span {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.team-profile-details {
  position: fixed;
  z-index: 1000;
  inset: 0;
  width: min(560px, calc(100% - 32px));
  height: fit-content;
  max-height: calc(100vh - 40px);
  overflow: auto;
  margin: auto;
  padding: 42px;
  background: white;
  color: var(--ink);
  box-shadow: 0 30px 100px rgba(5, 20, 32, .36);
}

.team-profile-card[open]::before {
  content: "";
  position: fixed;
  z-index: 999;
  inset: 0;
  background: rgba(6, 20, 31, .76);
  backdrop-filter: blur(7px);
}

.team-profile-details button {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
  font-size: 22px;
  cursor: pointer;
}

.team-profile-details > div {
  margin-top: 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.team-profile-details nav {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.team-profile-details nav a {
  padding: 12px 16px;
  background: var(--red);
  color: white;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.home-team-photo {
  width: calc(100% + 56px);
  height: 190px;
  margin: -28px -28px 24px;
  object-fit: cover;
  object-position: center top;
}

.insights-grid .insight-card {
  min-height: 520px;
  padding: 0;
}

.insight-image {
  display: block;
  height: 230px;
  overflow: hidden;
  background: var(--navy);
}

.insight-image img,
.article-hero-image,
.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insight-image img {
  transition: transform .4s ease;
}

.insight-card:hover .insight-image img {
  transform: scale(1.03);
}

.insight-copy {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.insight-copy .article-index {
  margin-bottom: 30px;
}

.insight-copy > div:last-child {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
}

.article-hero-image {
  height: min(560px, 62vw);
  margin-bottom: 54px;
}

.case-study:has(.case-image) {
  grid-template-columns: minmax(220px, .72fr) 70px 1.35fr .85fr;
}

.case-image {
  min-height: 310px;
  overflow: hidden;
}

.case-meta > a {
  display: inline-block;
  margin-top: 22px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.whatsapp-support {
  position: fixed;
  z-index: 950;
  left: 22px;
  bottom: 22px;
}

.whatsapp-support > summary {
  min-width: 205px;
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 16px 9px 10px;
  border-radius: 34px;
  background: #25d366;
  color: #082a17;
  box-shadow: 0 15px 40px rgba(4, 60, 27, .24);
  cursor: pointer;
  list-style: none;
}

.whatsapp-support > summary::-webkit-details-marker {
  display: none;
}

.whatsapp-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: white;
  color: #128c4a;
  font-size: 10px;
  font-weight: 900;
}

.whatsapp-support summary strong,
.whatsapp-support summary small {
  display: block;
}

.whatsapp-support summary strong {
  font-size: 11px;
}

.whatsapp-support summary small {
  margin-top: 3px;
  font-size: 9px;
  opacity: .7;
}

.whatsapp-panel {
  position: absolute;
  left: 0;
  bottom: 70px;
  width: min(330px, calc(100vw - 32px));
  overflow: hidden;
  border-radius: 16px;
  background: white;
  box-shadow: 0 22px 70px rgba(4, 28, 16, .24);
}

.whatsapp-panel p {
  margin: 0;
  padding: 22px;
  background: #0d6b3b;
  color: white;
}

.whatsapp-panel p strong,
.whatsapp-panel p span {
  display: block;
}

.whatsapp-panel p span {
  margin-top: 5px;
  font-size: 10px;
  opacity: .75;
}

.whatsapp-panel a {
  display: block;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}

.whatsapp-panel a span,
.whatsapp-panel a strong {
  display: block;
}

.whatsapp-panel a span {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
}

.whatsapp-panel a strong {
  color: #0d6b3b;
  font-size: 14px;
}

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

  .case-study:has(.case-image) {
    grid-template-columns: minmax(190px, .7fr) 60px 1.3fr;
  }

  .case-study:has(.case-image) .case-meta {
    grid-column: 3;
  }
}

@media (max-width: 650px) {
  .team-directory-section {
    padding: 82px 0;
  }

  .team-directory-grid {
    grid-template-columns: 1fr;
  }

  .team-profile-image {
    height: 430px;
  }

  .team-profile-details {
    padding: 36px 24px 28px;
  }

  .case-study:has(.case-image) {
    grid-template-columns: 1fr;
  }

  .case-study:has(.case-image) .case-meta {
    grid-column: 1;
  }

  .case-image {
    min-height: 240px;
  }

  .whatsapp-support {
    left: 12px;
    bottom: 12px;
  }

  .whatsapp-support > summary {
    min-width: 58px;
    width: 58px;
    padding: 9px;
  }

  .whatsapp-support > summary > span:last-child {
    display: none;
  }
}

@media (max-width: 980px) {
  .service-image-card,
  .service-image-card:nth-child(4),
  .service-image-card:nth-child(5) {
    grid-column: span 6;
  }

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

@media (max-width: 650px) {
  .laravel-slider-controls {
    right: 14px;
    bottom: 112px;
    width: calc(100% - 28px);
  }

  .service-image-card,
  .service-image-card:nth-child(4),
  .service-image-card:nth-child(5) {
    grid-column: 1 / -1;
  }

  .services-catalog-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .catalog-heading {
    flex-direction: column;
  }

  .catalog-image {
    height: 235px;
  }

  .team-section,
  .service-catalog {
    padding: 82px 0;
  }

  .customer-logo-section {
    padding: 78px 0;
  }

  .customer-logo-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .customer-logo-card {
    width: 210px;
    min-height: 125px;
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .customer-logo-track {
    animation-play-state: paused;
  }
}

/* Homepage parity with the official design preview */
.service-showcase-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.service-showcase-grid .service-image-card {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  min-height: 470px;
  padding: 0;
  border: 1px solid var(--line);
  background: white;
}

.service-showcase-grid .service-image-card:nth-child(4),
.service-showcase-grid .service-image-card:nth-child(5) {
  grid-column: span 6;
}

.service-showcase-grid .service-card-image {
  position: relative;
  height: 235px;
  overflow: hidden;
  background: var(--navy);
}

.service-showcase-grid .service-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(8, 22, 35, 0.35));
  pointer-events: none;
}

.service-showcase-grid .service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-showcase-grid .service-image-card:hover img {
  transform: scale(1.035);
}

.service-showcase-grid .service-card-image > span {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: white;
  font-size: 10px;
  font-weight: 800;
}

.service-showcase-grid .service-image-card > p {
  margin: 25px 28px 8px;
  color: var(--red);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-showcase-grid .service-image-card h3 {
  margin: 0 28px;
  font-family: var(--font-title);
  font-size: 28px;
  line-height: 1.08;
}

.service-showcase-grid .service-image-card small {
  margin: 15px 28px 24px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.service-showcase-grid .service-image-card > a {
  display: flex;
  justify-content: space-between;
  margin: auto 28px 27px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.team-section {
  padding: 120px 0;
  background: white;
  color: var(--ink);
}

.team-section .team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.team-section .team-grid article {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.team-section .team-grid article > span {
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
}

.team-section .team-grid article > p {
  margin: auto 0 10px;
  color: var(--red);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.team-section .team-grid h3 {
  margin: 0;
  font-family: var(--font-title);
  font-size: 25px;
  line-height: 1.12;
}

.team-section .team-grid small {
  margin-top: 15px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.team-section .team-lead {
  background: var(--navy);
  color: white;
}

.team-section .team-lead > img {
  width: 94px;
  height: 94px;
  object-fit: cover;
}

.team-section .team-lead small {
  color: rgba(255, 255, 255, 0.52);
}

@media (max-width: 980px) {
  .service-showcase-grid .service-image-card,
  .service-showcase-grid .service-image-card:nth-child(4),
  .service-showcase-grid .service-image-card:nth-child(5) {
    grid-column: span 6;
  }

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

@media (max-width: 650px) {
  .service-showcase-grid {
    grid-template-columns: 1fr;
  }

  .service-showcase-grid .service-image-card,
  .service-showcase-grid .service-image-card:nth-child(4),
  .service-showcase-grid .service-image-card:nth-child(5) {
    grid-column: 1;
  }

  .team-section .team-grid {
    grid-template-columns: 1fr;
  }
}

/* Exact hero control placement from the approved preview. */
.image-frame .slider-controls {
  position: absolute;
  z-index: 5;
  left: 38px;
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 15px;
  width: auto;
  padding: 9px 12px;
  background: rgba(8, 22, 35, 0.78);
  backdrop-filter: blur(10px);
}

.image-frame .slider-controls > button {
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  color: white;
  cursor: pointer;
}

.image-frame .slider-controls > div {
  display: flex;
  align-items: center;
  gap: 6px;
}

.image-frame .slider-controls > div button {
  width: 7px;
  height: 7px;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
  transition: width 0.2s ease, border-radius 0.2s ease, background 0.2s ease;
}

.image-frame .slider-controls > div button.active {
  width: 22px;
  border-radius: 10px;
  background: var(--red-bright);
}

@media (max-width: 650px) {
  .image-frame .slider-controls {
    left: 14px;
    bottom: 15px;
  }
}
