:root {
  --ink: #0b1f3a;
  --ink-2: #12345f;
  --text: #18324f;
  --muted: #64748b;
  --paper: #ffffff;
  --surface: #f5f7fa;
  --line: #d9e2ec;
  --teal: #0fa958;
  --teal-dark: #0a7a42;
  --cyan: #2aa9d8;
  --saffron: #f59e0b;
  --coral: #f97316;
  --shadow: 0 24px 70px rgba(11, 31, 58, 0.16);
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(100% - 40px, 1180px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(7, 21, 22, 0.08);
  backdrop-filter: blur(18px);
}

.topbar {
  color: rgba(255, 255, 255, 0.86);
  background: var(--ink);
}

.topbar-inner,
.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar-inner {
  min-height: 38px;
}

.topbar-inner .topbar-link:nth-child(2) {
  margin-right: auto;
}

.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
}

.topbar-link svg {
  color: var(--saffron);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-links a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.social-links a:hover {
  transform: translateY(-1px);
  background: rgba(8, 180, 134, 0.28);
  border-color: rgba(8, 180, 134, 0.45);
}

.nav-shell {
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  width: 350px;
  height: auto;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 750;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.site-nav a:hover {
  color: var(--teal-dark);
}

.nav-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--cyan);
  opacity: 0;
  transform: scale(0.65);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-nav a:hover .nav-dot {
  opacity: 1;
  transform: scale(1);
}

.nav-cta {
  color: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--saffron);
  box-shadow: 0 14px 30px rgba(245, 158, 11, 0.28);
}

.site-nav .nav-cta:hover {
  color: #fff;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  width: 21px;
  height: 2px;
  background: var(--ink);
  border-radius: 99px;
}

.hero {
  position: relative;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(11, 31, 58, 0.97) 0%, rgba(11, 31, 58, 0.86) 43%, rgba(11, 31, 58, 0.36) 78%),
    url("assets/hero-fusiontech-africa.png");
  background-position: center right;
  background-size: cover;
}


/* .hero {
  background:
  linear-gradient(90deg, rgba(11, 31, 58, 0.97) 0%, rgba(11, 31, 58, 0.86) 43%, rgba(11, 31, 58, 0.36) 78%),
  url("assets/hero-fusiontech-africa.webp");
  background-position: center right;
  background-size: cover;
} */




.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 7px;
  background: linear-gradient(90deg, var(--teal), var(--saffron), var(--cyan));
}

.hero-grid {
  min-height: min(640px, calc(100svh - 170px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: center;
  padding: 76px 0 70px;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--saffron);
  font-size: 0.84rem;
  font-weight: 850;
  text-transform: uppercase;
}

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

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  color: inherit;
}

h1 {
  font-size: 3.75rem;
  font-weight: 900;
}

h2 {
  color: var(--ink);
  font-size: 2.55rem;
  font-weight: 880;
}

h3 {
  color: var(--ink);
  font-size: 1.14rem;
}

.hero-copy {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.18rem;
}

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

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: var(--saffron);
  box-shadow: 0 18px 34px rgba(245, 158, 11, 0.34);
}

.btn-whatsapp {
  color: #fff;
  background: var(--teal);
  box-shadow: 0 16px 34px rgba(15, 169, 88, 0.26);
}

.btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.14);
}

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

.hero-points span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.9rem;
  font-weight: 750;
}

.hero-panel {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(11, 31, 58, 0.68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.panel-kicker {
  margin: 0 0 10px;
  color: var(--saffron);
  font-size: 0.86rem;
  font-weight: 850;
  text-transform: uppercase;
}

.panel-row {
  display: grid;
  gap: 3px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.panel-row strong {
  color: #fff;
  font-size: 1.08rem;
}

.panel-row span {
  color: rgba(255, 255, 255, 0.74);
}

.signal-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding: 25px 0;
}

.signal-grid p {
  margin: 0;
}

.signal-grid strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
}

.signal-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.94rem;
}

.section {
  padding: 92px 0;
}

.section-tint {
  background:
    linear-gradient(180deg, rgba(245, 247, 250, 0.94), rgba(255, 255, 255, 0.98)),
    var(--surface);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 38px;
}

.section-heading.compact {
  margin-bottom: 32px;
}

.section-heading p:not(.eyebrow),
.split p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading h2+p,
.split h2+p,
.contact-copy h2+p {
  margin-top: 16px;
}

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

.service-card,
.solution-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(11, 31, 58, 0.06);
}

.service-card {
  position: relative;
  min-height: 250px;
  padding: 24px;
  overflow: hidden;
}

.service-card.featured {
  background:
    linear-gradient(135deg, rgba(15, 169, 88, 0.11), rgba(245, 158, 11, 0.07)),
    #fff;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 22px 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--teal), var(--saffron));
  opacity: 0;
  transition: opacity 160ms ease;
}

.service-card:hover::after {
  opacity: 1;
}

.service-card p,
.solution-card p,
.timeline p,
.check-list {
  color: var(--muted);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--ink);
  background: rgba(245, 158, 11, 0.14);
  font-size: 0.9rem;
  font-weight: 900;
}

.service-card h3 {
  margin-bottom: 10px;
}

.service-card p {
  margin: 0;
}

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

.sticky-copy {
  position: sticky;
  top: 140px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  color: var(--teal-dark);
  font-weight: 850;
}

.text-link::after {
  content: "";
  width: 34px;
  height: 2px;
  margin-left: 10px;
  background: var(--saffron);
}

.solution-stack {
  display: grid;
  gap: 16px;
}

.solution-card {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  column-gap: 18px;
  row-gap: 8px;
  padding: 22px;
  align-items: start;
}

.solution-card span,
.timeline span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--saffron));
  font-weight: 900;
}

.solution-card span {
  grid-row: 1 / span 2;
  align-self: start;
  box-shadow: 0 12px 26px rgba(15, 169, 88, 0.18);
}

.solution-card h3 {
  grid-column: 2;
  margin-bottom: 8px;
}

.solution-card p {
  grid-column: 2;
  margin: 0;
}

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

.timeline article {
  position: relative;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.timeline span {
  margin-bottom: 16px;
}

.timeline h3 {
  margin-bottom: 8px;
}

.timeline p {
  margin: 0;
}

.proof-band {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(11, 31, 58, 0.98), rgba(18, 52, 95, 0.94)),
    var(--ink);
}

.proof-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: center;
}

.proof-grid h2 {
  max-width: 620px;
  /*color: #fff;*/
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.82);
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 13px;
  height: 8px;
  border-left: 2px solid var(--saffron);
  border-bottom: 2px solid var(--saffron);
  transform: rotate(-45deg);
}

.dark-section {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(11, 31, 58, 0.98), rgba(18, 52, 95, 0.94)),
    var(--ink);
}

.dark-section h2 {
  color: #fff;
}

.dark-section p {
  color: rgba(255, 255, 255, 0.78);
}

.feature-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 52px;
  align-items: start;
}

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

.mini-grid article {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.mini-grid strong,
.mini-grid span {
  display: block;
}

.mini-grid strong {
  margin-bottom: 6px;
  color: #fff;
}

.mini-grid span {
  color: rgba(255, 255, 255, 0.74);
}

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

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

.work-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(11, 31, 58, 0.06);
}

.work-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--ink);
  background: rgba(245, 158, 11, 0.14);
  font-size: 0.82rem;
  font-weight: 850;
}

.work-grid p {
  color: var(--muted);
}

.light-proof {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.dark-list {
  color: var(--text);
}

.dark-list li {
  color: var(--text);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: start;
}

.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-lines p {
  margin: 0;
}

.contact-lines strong {
  display: block;
  color: var(--ink);
}

.contact-lines a {
  color: var(--teal-dark);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 780;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cbded6;
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  outline: none;
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(15, 169, 88, 0.13);
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.form-button {
  width: 100%;
  border: 0;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--teal-dark);
  font-weight: 760;
}

.form-status.is-error {
  color: #b7372f;
}

.site-footer {
  color: rgba(255, 255, 255, 0.8);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.6fr 0.7fr;
  gap: 34px;
  padding: 54px 0 32px;
}

.footer-logo {
  width: 210px;
  filter: brightness(0) invert(1);
}

.footer-grid p {
  max-width: 410px;
}

.footer-grid h2 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 1rem;
}

.footer-grid a {
  display: block;
  margin: 8px 0;
}

.footer-socials a {
  display: grid;
  margin: 0;
}

.footer-bottom {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--saffron);
  font-weight: 800;
}

@media (max-width: 980px) {
  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.12rem;
  }

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

  .hero-panel {
    max-width: 560px;
  }

  .service-grid,
  .signal-grid,
  .timeline,
  .work-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sticky-copy {
    position: static;
  }
}

@media (max-width: 820px) {
  .topbar {
    display: none;
  }

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

  .brand-logo {
    width: 180px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    inset: 70px 14px auto;
    display: grid;
    gap: 4px;
    padding: 10px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: max-height 180ms ease, opacity 160ms ease;
  }

  body.nav-open .site-nav {
    max-height: 470px;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 13px 12px;
    border-radius: 8px;
  }

  .site-nav a:hover {
    background: var(--surface);
  }

  .nav-dot {
    opacity: 1;
  }

  .nav-cta {
    justify-content: center;
    margin-top: 4px;
  }

  .hero {
    background:
      linear-gradient(90deg, rgba(11, 31, 58, 0.96), rgba(11, 31, 58, 0.78)),
      url("assets/hero-fusiontech-africa.png");
    background-size: cover;
    background-position: 62% center;
  }

  .hero-grid {
    min-height: auto;
    padding: 50px 0 44px;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hero-panel {
    display: none;
  }

  .section {
    padding: 70px 0;
  }
}

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

  .brand-logo {
    width: 166px;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.78rem;
  }

  .hero-copy,
  .section-heading p:not(.eyebrow),
  .split p,
  .contact-copy p {
    font-size: 1rem;
  }

  .hero-copy {
    margin-top: 18px;
  }

  .hero-actions {
    margin-top: 26px;
  }

  .hero-points {
    gap: 8px;
    margin-top: 22px;
  }

  .hero-points span {
    padding: 7px 10px;
  }

  .service-grid,
  .signal-grid,
  .timeline,
  .mini-grid,
  .compact-grid,
  .work-grid,
  .check-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .solution-card {
    grid-template-columns: 1fr;
  }

  .solution-card span,
  .solution-card h3,
  .solution-card p {
    grid-column: auto;
    grid-row: auto;
  }

  .service-card,
  .solution-card,
  .timeline article,
  .contact-form {
    padding: 20px;
  }

  .footer-bottom {
    padding: 20px 0;
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
