@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");
:root {
  --red: #b00000;
  --dark-red: #650000;
  --cyan: #00aec7;
  --gold: #edec02;
  --navy: #071a33;
  --ink: #0d1117;
  --muted: #667085;
  --paper: #f8f6f2;
  --line: #e5e0d8;
  --card: #fff;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(1120px, calc(100% - 32px));
  margin: auto;
}
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.header-inner {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-crop {
  position: relative;
  width: 220px;
  height: 86px;
  overflow: hidden;
  flex: none;
}
.logo-crop img {
  position: absolute;
  top: -57px;
  left: 0;
  width: 220px;
  max-width: none;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 3px;
}
.site-nav > a:not(.button) {
  position: relative;
  padding: 10px 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}
.site-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.site-nav > a:not(.button):hover {
  color: var(--ink);
  transform: translateY(-3px);
}
.site-nav > a:not(.button):hover::after {
  transform: scaleX(1);
}
.button {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 10px;
  padding: 13px 20px;
  background: var(--red);
  color: #fff;
  font: 700 14px inherit;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(176, 0, 0, 0.18);
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}
.button:hover {
  background: var(--dark-red);
  transform: translateY(-2px);
}
.header-contact {
  margin-left: 9px;
  background: var(--red);
}
.menu-button {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
}
.menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px;
}
.hero {
  padding: 150px 0 0;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 78% 28%,
      rgba(0, 174, 199, 0.09),
      transparent 23%
    ),
    radial-gradient(circle at 17% 70%, rgba(176, 0, 0, 0.08), transparent 24%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 70px;
  align-items: center;
  padding-bottom: 72px;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--ink);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}
.eyebrow i {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  margin-right: 8px;
}
.eyebrow.red {
  color: var(--red);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  font-size: clamp(46px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  margin-bottom: 26px;
}
h1 strong,
h2 strong {
  color: var(--red);
  font-weight: 800;
}
h1 em {
  font-style: normal;
  font-weight: 400;
  color: var(--muted);
}
h2 {
  max-width: 760px;
  font-size: clamp(31px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.055em;
  margin-bottom: 18px;
}
.lead,
.section-intro {
  max-width: 650px;
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 28px;
}
.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.button-light {
  background: var(--card);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}
.button-light:hover {
  color: var(--red);
  background: #fff;
}
.trusted {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.trusted span {
  width: 29px;
  height: 29px;
  margin-right: -14px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #f8dddd;
  color: var(--red);
  font-size: 9px;
  font-weight: 800;
  display: grid;
  place-items: center;
}
.trusted span:nth-child(2) {
  background: #ddf5f8;
  color: #007e93;
}
.trusted span:nth-child(3) {
  background: #fff7bf;
  color: #766f00;
}
.trusted b {
  color: var(--ink);
  margin-left: 9px;
}
.hero-image {
  position: relative;
  height: 510px;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 20px 25px 55px rgba(13, 17, 23, 0.16);
}
.hero-image > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.hero-image:after,
.energy-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(7, 26, 51, 0.78));
}
.image-badge {
  position: absolute;
  z-index: 1;
  inset: auto 24px 24px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  padding: 15px 18px;
  border-radius: 12px;
}
.image-badge small,
.image-badge span {
  display: block;
  font-size: 11px;
  color: var(--muted);
}
.image-badge b {
  display: block;
  font-size: 17px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border: 1px solid var(--line);
  border-bottom: 0;
}
.stats div {
  padding: 20px 24px;
  border-right: 1px solid var(--line);
}
.stats div:last-child {
  border: 0;
}
.stats b {
  display: block;
  font-size: 30px;
}
.stats b:after {
  content: "+";
  color: var(--red);
}
.stats span {
  font-size: 10px;
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.section {
  padding: 105px 0;
  border-top: 1px solid var(--line);
}
.muted {
  background: rgba(240, 237, 232, 0.5);
}
.card-grid {
  display: grid;
  gap: 16px;
  margin-top: 42px;
}
.services-grid {
  grid-template-columns: repeat(3, 1fr);
}
.card {
  position: relative;
  padding: 27px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.card:hover {
  border-color: rgba(176, 0, 0, 0.45);
  transform: translateY(-5px);
  box-shadow: 0 18px 30px rgba(13, 17, 23, 0.08);
}
.featured {
  grid-row: span 2;
}
.icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(176, 0, 0, 0.1);
  color: var(--red);
  font-size: 25px;
  margin-bottom: 18px;
}
.card h3 {
  font-size: 17px;
  line-height: 1.35;
  margin-bottom: 10px;
}
.card p {
  font-size: 13px;
  color: var(--muted);
}
.tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.tags span {
  padding: 3px 8px;
  background: #f0ede8;
  color: var(--muted);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
}
.service-banner,
.cybersecurity-surface {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 27px;
  border-radius: 16px;
  color: #fff;
}
.service-banner {
  background: var(--red);
}
.service-banner .icon,
.cybersecurity-surface .icon {
  margin: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.service-banner h3,
.cybersecurity-surface h3 {
  margin: 0 0 6px;
}
.service-banner p,
.cybersecurity-surface p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}
.service-banner a,
.cybersecurity-surface a {
  margin-left: auto;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 9px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}
.product-grid {
  grid-template-columns: repeat(4, 1fr);
}
.product small,
.client small {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 800;
}
.cybersecurity-surface {
  background: #650000;
  box-shadow: inset 0 0 90px rgba(176, 0, 0, 0.32);
}
.cybersecurity-surface small {
  padding: 3px 8px;
  background: var(--gold);
  border-radius: 999px;
  color: #3f2508;
  font-size: 9px;
}
.client-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 42px;
}
.client {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 3px 10px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.client > span {
  grid-row: span 2;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: rgba(176, 0, 0, 0.1);
  color: var(--red);
  font-weight: 800;
}
.client b {
  font-size: 12px;
  line-height: 1.25;
  align-self: end;
}
.two-columns,
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.training,
.energy-surface {
  overflow: hidden;
  border-radius: 18px;
}
.training {
  background: #fff;
  border: 1px solid var(--line);
}
.training > img {
  width: 100%;
  height: 185px;
  object-fit: cover;
}
.training-content {
  padding: 26px;
}
.training h2 {
  font-size: 28px;
}
.training-content > p,
.energy-content > p {
  font-size: 13px;
  color: var(--muted);
}
.training ul {
  padding: 0;
  list-style: none;
  font-size: 13px;
  font-weight: 700;
}
.training li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.training li:before {
  content: "◈";
  color: var(--cyan);
  margin-right: 9px;
}
.energy-surface {
  background: #071a33;
  color: #fff;
  box-shadow: inset 0 0 90px rgba(0, 61, 112, 0.38);
}
.energy-image {
  height: 185px;
  position: relative;
}
.energy-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.energy-image > div {
  position: absolute;
  z-index: 1;
  bottom: 18px;
  left: 24px;
}
.energy-image p {
  margin: 0;
  color: #fff;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.energy-image h2 {
  font-size: 29px;
  margin: 0;
}
.energy-content {
  padding: 26px;
}
.energy-content > p {
  color: rgba(255, 255, 255, 0.65);
}
.energy-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 20px 0;
}
.energy-services div {
  min-height: 92px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
}
.energy-services i {
  display: block;
  font-style: normal;
  font-size: 18px;
  margin-bottom: 6px;
}
.gold {
  color: var(--gold);
}
.brown {
  color: #b87922;
}
.energy-services b,
.energy-services small {
  display: block;
}
.energy-services b {
  font-size: 12px;
}
.energy-services small {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.6);
}
.uthenga {
  margin-top: 32px;
  padding: 40px;
  border: 1px solid rgba(176, 0, 0, 0.2);
  border-radius: 18px;
  background: #fff;
}
.uthenga h2 {
  font-size: 32px;
}
.uthenga > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
}
.coming-soon-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-top: 28px;
}
.coming-soon-grid .uthenga {
  width: 100%;
  max-width: none;
  margin: 0;
}
.upcoming-releases {
  margin-top: 72px;
  text-align: center;
}
.upcoming-releases h2 {
  margin: 0 auto;
  font-size: clamp(30px, 4vw, 42px);
}
.upcoming-releases > p:not(.eyebrow) {
  max-width: 620px;
  margin: 12px auto 0;
  color: var(--muted);
}
.contact-details {
  display: grid;
  gap: 12px;
}
.contact-details a {
  display: flex;
  gap: 13px;
  align-items: center;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--red);
  font-size: 22px;
}
.contact-details span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}
.contact-details small {
  display: block;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.contact-form {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
}
.contact-form label {
  display: block;
  margin: 13px 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 5px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font: 14px inherit;
  outline-color: var(--cyan);
}
.form-status {
  padding: 10px;
  background: #e5f9fc;
  color: #00687a;
  border-radius: 8px;
  font-size: 13px;
}
footer {
  background: #071a33;
  color: #fff;
  padding: 55px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 36px;
}
.footer-logo {
  display: block;
  position: relative;
  width: 170px;
  height: 65px;
  overflow: hidden;
}
.footer-logo img {
  position: absolute;
  width: 170px;
  top: -44px;
}
.footer-grid p,
.footer-grid a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  max-width: 300px;
  margin: 8px 0;
}
.footer-grid b {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.copyright {
  margin-top: 40px;
  padding: 16px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 960px) {
  .site-nav {
    gap: 0;
  }
  .site-nav > a:not(.button) {
    padding: 9px 7px;
    font-size: 12px;
  }
  .header-contact {
    padding: 10px 12px;
  }
  .hero-grid {
    gap: 34px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .featured {
    grid-row: auto;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .client-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 700px) {
  .header-inner {
    height: 68px;
  }
  .logo-crop {
    width: 160px;
    height: 62px;
  }
  .logo-crop img {
    width: 160px;
    top: -42px;
  }
  .menu-button {
    display: block;
  }
  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 68px;
    padding: 14px 18px 20px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 25px rgba(13, 17, 23, 0.1);
  }
  .site-nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .site-nav a:not(.button) {
    padding: 12px 3px;
    font-size: 15px;
  }
  .site-nav .header-contact {
    margin: 10px 0 0;
    text-align: center;
  }
  .hero {
    padding-top: 104px;
  }
  .hero-grid,
  .two-columns,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    padding-bottom: 45px;
  }
  .hero-image {
    height: 360px;
    order: -1;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
  }
  .stats div:nth-child(2) {
    border-right: 0;
  }
  .stats div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .section {
    padding: 70px 0;
  }
  .services-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }
  .service-banner,
  .cybersecurity-surface {
    align-items: flex-start;
    flex-direction: column;
  }
  .service-banner a,
  .cybersecurity-surface a {
    margin: 0;
  }
  .client-grid {
    grid-template-columns: 1fr 1fr;
  }
  .lead,
  .section-intro {
    font-size: 16px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media (max-width: 700px) {
  .about-layout,
  .about-mission {
    grid-template-columns: 1fr;
  }
  .about-mission .about-values {
    grid-column: auto;
  }
}
.uthenga {
  max-width: 896px;
  margin-left: auto;
  margin-right: auto;
}
.uthenga-label {
  display: flex;
  align-items: center;
  gap: 8px;
}
.uthenga-label img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
@media (max-width: 700px) {
  .coming-soon-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .upcoming-releases { margin-top: 52px; }
}
.about-section {
  background: #fff;
}
.about-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
}
.about-copy {
  max-width: 650px;
  color: var(--muted);
  font-size: 14px;
}
.about-points {
  display: grid;
  gap: 10px;
}
.about-points article {
  display: flex;
  gap: 13px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
}
.about-points span {
  display: grid;
  place-items: center;
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(176, 0, 0, 0.1);
  color: var(--red);
  font-weight: 800;
}
.about-points h3 {
  margin: 0 0 3px;
  font-size: 14px;
}
.about-points p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.about-mission {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
  padding: 22px;
  border-radius: 14px;
  background: #071a33;
  color: #fff;
}
.about-mission b {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.about-mission p {
  margin: 5px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}
.about-mission .about-values {
  grid-column: 1/-1;
  margin: 0;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.05em;
}
.office-location {
  margin-top: 15px !important;
  color: var(--cyan) !important;
  line-height: 1.35;
}
.office-location small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
}
.about-content {
  display: flex;
  align-items: center;
  gap: 48px;
}
.about-copy-column {
  flex: 1 1 58%;
  min-width: 0;
}
.about-africa {
  display: flex;
  flex: 1 1 42%;
  justify-content: center;
  align-items: center;
  min-height: 280px;
}
.about-africa img {
  display: block;
  width: min(100%, 360px);
  max-height: 360px;
  filter: brightness(0) saturate(100%) invert(13%) sepia(99%) saturate(5374%)
    hue-rotate(359deg) brightness(74%) contrast(117%);
}
@media (max-width: 700px) {
  .about-content {
    flex-direction: column;
    gap: 24px;
  }
  .about-africa {
    min-height: 0;
    order: 2;
  }
  .about-africa img {
    width: min(70%, 280px);
  }
}
.client-logo {
  overflow: hidden;
  padding: 4px;
  background: #fff !important;
  border: 1px solid var(--line);
}
.client-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.client-logo i {
  display: none;
  width: 100%;
  height: 100%;
  place-items: center;
  background: rgba(176, 0, 0, 0.1);
  color: var(--red);
  font-style: normal;
}
.uthenga{width:100%;max-width:none}
@media (max-width:700px){
  .hero-grid{
    display:block;
    width:calc(100% - 32px) !important;
  }
  .hero-grid>div{width:100%;min-width:0}
  .hero-image{margin-bottom:32px}
  .hero h1{width:100%;font-size:clamp(40px,13vw,56px);overflow-wrap:normal}
  .actions{width:100%;flex-wrap:nowrap;gap:8px}
  .actions .button{flex:1 1 0;padding:11px 8px;font-size:11px;white-space:nowrap}
  .actions .button b{display:none}
}
