:root {
  --navy: #08244a;
  --navy-2: #0a2f5c;
  --ink: #10223c;
  --blue: #0877d1;
  --blue-2: #005da8;
  --cyan: #00aeef;
  --sky: #edf7ff;
  --soft: #f5f9fc;
  --muted: #5a6b80;
  --line: #dce7f1;
  --white: #fff;
  --vodacom: #e60000;
  --ok: #0d7a46;
  --shadow: 0 12px 32px rgba(8, 36, 74, .1);
  --radius: 12px;
  --container: 1180px;
  --header: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, Segoe UI, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
body { overflow-x: hidden; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link {
  position: absolute; left: 12px; top: -80px; z-index: 80;
  background: var(--navy); color: #fff; padding: 10px 14px; border-radius: 8px;
}
.skip-link:focus { top: 12px; }

/* Top bar */
.topbar {
  background: linear-gradient(90deg, #064f8b, #0877bd);
  color: #fff;
  font-size: .8rem;
}
.topbar-inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar a { color: #fff; text-decoration: none; }
.topbar-links, .topbar-social {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.topbar-social a {
  width: 22px; height: 22px; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.45); border-radius: 50%;
}
.muted-dot { opacity: .75; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex; flex-direction: column; gap: 2px; text-decoration: none; min-width: 0;
}
.brand img {
  width: 210px; height: auto; max-height: 46px; object-fit: contain; object-position: left center;
}
.brand small {
  color: var(--cyan);
  font-family: Pacifico, Caveat, cursive;
  font-size: .78rem;
  letter-spacing: .02em;
  line-height: 1;
  margin-left: 2px;
}
.nav { display: flex; align-items: center; justify-content: flex-end; gap: 4px; }
.nav > a:not(.button), .drop > button {
  background: none; border: 0; color: var(--ink);
  text-decoration: none; font-weight: 700; font-size: .86rem;
  padding: 10px 12px; border-radius: 8px; cursor: pointer;
}
.nav > a:not(.button):hover, .drop > button:hover, .nav > a.active, .drop.active > button { color: var(--blue); }
.nav .button-primary { color: #fff; }
.nav-toggle {
  display: none; border: 1px solid var(--line); background: #fff;
  border-radius: 8px; width: 44px; height: 40px; padding: 8px 10px;
  flex-direction: column; justify-content: center; gap: 5px; flex-shrink: 0;
}
.nav-toggle span { display: block; width: 100%; height: 2px; background: var(--navy); border-radius: 2px; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 46px; padding: 10px 20px; border-radius: 8px;
  border: 1px solid transparent; text-decoration: none; font-weight: 800; cursor: pointer;
}
.button-primary { background: linear-gradient(90deg, var(--blue-2), var(--blue)); color: #fff; }
.button-primary:hover { background: #005596; }
.button-secondary { background: #fff; border-color: #173a65; color: var(--navy); }
.button-ghost { background: transparent; border-color: rgba(255,255,255,.55); color: #fff; }
.nav-quote { min-width: 132px; margin-left: 8px; }

.drop { position: relative; }
.drop-menu {
  display: none; position: absolute; top: calc(100% - 4px); left: 0;
  min-width: 280px; padding: 10px; background: #fff;
  border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow);
}
.drop:hover .drop-menu, .drop:focus-within .drop-menu, .drop.open .drop-menu { display: grid; gap: 2px; }
.drop-menu a {
  display: block; padding: 10px 12px; border-radius: 8px; text-decoration: none; font-size: .88rem;
}
.drop-menu a:hover { background: var(--sky); color: var(--blue); }
.drop-menu small { display: block; color: var(--muted); font-weight: 500; font-size: .75rem; }

/* Hero */
.home-hero {
  position: relative;
  overflow: hidden;
  background: #fff;
  min-height: 520px;
}
.home-hero > .hero-photo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 34%;
  width: 66%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: left 48%;
  z-index: 0;
}
.hero-fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    #fff 0%,
    #fff 28%,
    rgba(255,255,255,.88) 36%,
    rgba(255,255,255,.35) 46%,
    rgba(255,255,255,0) 56%
  );
}
.home-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(280px, 46%) minmax(0, 1fr);
  align-items: stretch;
  min-height: 520px;
}
.home-hero-copy { padding: 56px 24px 56px 0; align-self: center; }
.eyebrow {
  margin: 0 0 10px; color: var(--blue); font-size: .78rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
}
.home-hero h1 {
  margin: 0; color: var(--navy);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(3.2rem, 6vw, 5.4rem); line-height: .86; letter-spacing: -.03em; font-weight: 800;
}
.home-hero h1 span { color: var(--blue); }
.home-hero h2 { margin: 18px 0 8px; font-size: 1.12rem; max-width: 520px; }
.home-hero-copy > p:not(.eyebrow) { margin: 0; color: #32465e; max-width: 500px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.hero-visual {
  position: relative;
  min-height: 520px;
}
.scribble {
  position: absolute; top: 36px; right: 8px; max-width: 190px;
  color: var(--navy); font-family: Caveat, cursive; font-size: 1.55rem; line-height: 1.15;
  transform: rotate(-8deg); text-align: right;
}
.scribble em { display: block; color: var(--blue); font-style: normal; border-bottom: 2px solid var(--blue); }
.partner-badge {
  position: absolute; right: 8px; bottom: 28px; z-index: 3;
  width: min(280px, calc(100% - 16px));
  padding: 0; background: transparent; border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0,0,0,.2); overflow: hidden;
}
.partner-badge img { width: 100%; height: auto; display: block; }

/* Solution ribbon */
.solution-ribbon { padding: 18px 0 8px; }
.solution-six { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; }
.solution-tile {
  min-height: 176px; padding: 18px 12px 14px; border: 1px solid #e2edf5; border-radius: 12px;
  background: linear-gradient(180deg, #fff, #f4f9fd); text-align: center; text-decoration: none;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(5,67,113,.05); transition: transform .18s ease, border-color .18s ease;
}
.solution-tile:hover { transform: translateY(-4px); border-color: #9ecdf0; }
.tile-icon {
  width: 46px; height: 46px; margin-bottom: 8px; color: var(--blue);
}
.tile-icon svg, .icon-wrap svg { width: 28px; height: 28px; }
.solution-tile strong { color: var(--navy); font-size: .95rem; }
.solution-tile small { display: block; margin-top: 4px; color: #52657b; min-height: 36px; line-height: 1.3; }
.tile-go {
  margin-top: 10px; width: 28px; height: 28px; border: 1.5px solid var(--navy); border-radius: 50%;
  display: grid; place-items: center; font-size: .85rem;
}

.trust-bar { background: linear-gradient(90deg, #034f89, #006cb3); color: #fff; }
.trust-five {
  min-height: 68px; display: grid; grid-template-columns: repeat(5, 1fr); align-items: center;
}
.trust-five > div {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 10px; border-right: 1px solid rgba(255,255,255,.35); text-align: center;
}
.trust-five > div:last-child { border-right: 0; }
.trust-five svg { width: 22px; height: 22px; flex: 0 0 auto; }
.trust-five strong { font-size: .8rem; line-height: 1.25; }

/* Why + form */
.why-section { padding: 56px 0; }
.why-grid { display: grid; grid-template-columns: .85fr 1fr 1.15fr; gap: 36px; align-items: start; }
.why-intro h2 {
  margin: 0; color: var(--navy); font-size: clamp(2rem, 4vw, 2.6rem);
  line-height: .98; letter-spacing: -.03em;
}
.why-intro p:not(.eyebrow) { color: #40546b; }
.benefits { display: grid; gap: 16px; }
.benefits > div { display: grid; grid-template-columns: 38px 1fr; gap: 12px; align-items: start; }
.benefits svg { width: 28px; height: 28px; color: var(--blue); margin-top: 2px; }
.benefits strong, .benefits small { display: block; }
.benefits small { color: #64758a; }
.quick-assessment {
  padding: 20px; border: 1px solid #e2ebf3; border-radius: 12px; background: var(--soft);
  box-shadow: var(--shadow);
}
.quick-assessment h3 { margin: 0 0 4px; }
.quick-assessment > p { margin: 0 0 12px; color: var(--muted); font-size: .86rem; }
.quick-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.quick-form-grid input, .quick-form-grid select, .quick-form-grid textarea {
  width: 100%; min-height: 40px; padding: 8px 10px; border: 1px solid #d3dee8; border-radius: 6px; background: #fff;
}
.quick-form-grid textarea { min-height: 70px; resize: vertical; }
.quick-full { grid-column: 1 / -1; }
.quick-submit { width: 100%; margin-top: 10px; }
.secure-note { display: block; margin-top: 8px; text-align: center; color: #6c7a8b; font-size: .7rem; }

/* Ecosystem / BEE / industries */
.section { padding: 64px 0; }
.section.alt { background: var(--soft); }
.section.navy { background: linear-gradient(135deg, #06213f, #0a4e86); color: #fff; }
.section.navy .eyebrow { color: #9ad2ff; }
.section.navy h2 { color: #fff; }
.section-heading { max-width: 720px; margin-bottom: 28px; }
.section-heading h2, .why-intro h2, .process-compact h2, .page-hero h1 {
  color: var(--navy);
}
.grid-3, .grid-4 { display: grid; gap: 16px; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 22px;
  box-shadow: 0 8px 22px rgba(8,36,74,.05); text-decoration: none; display: block;
}
.card h3 { margin: 10px 0 8px; font-size: 1.05rem; color: var(--navy); }
.card p { margin: 0; color: var(--muted); font-size: .92rem; }
.card .icon-wrap {
  width: 44px; height: 44px; border-radius: 10px; background: var(--sky); color: var(--blue);
  display: grid; place-items: center;
}
.navy .card { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.14); color: #fff; }
.navy .card h3, .navy .card p { color: #fff; }
.navy .card p { color: #d7e8f7; }

.bee-panel {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 28px; align-items: center;
}
.pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.pill {
  background: var(--sky); color: var(--navy); border-radius: 999px; padding: 6px 12px;
  font-size: .78rem; font-weight: 700;
}
.navy .pill { background: rgba(255,255,255,.12); color: #fff; }

.process-section { padding: 56px 0; background: #f4f8fb; }
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-step { padding-top: 14px; border-top: 3px solid var(--blue); }
.process-step strong, .process-step span { display: block; }
.process-step strong { color: var(--navy); margin-bottom: 6px; }
.process-step span { color: var(--muted); font-size: .9rem; }

.location-four { display: grid; grid-template-columns: repeat(4, 1fr); }
.location-panel {
  position: relative; min-height: 210px; color: #fff; text-decoration: none; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 22px;
}
.location-panel img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.location-panel:after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(2,27,48,.08), rgba(2,27,48,.78));
}
.location-panel > * { position: relative; z-index: 1; }
.location-panel strong { font-size: 1.25rem; }
.location-panel span { font-size: .82rem; opacity: .92; }
.location-panel b {
  position: absolute; right: 18px; bottom: 18px; z-index: 1;
  width: 30px; height: 30px; border: 1px solid #fff; border-radius: 50%;
  display: grid; place-items: center;
}

/* Inner pages */
.page-hero {
  padding: 54px 0 36px;
  background: linear-gradient(120deg, #f7fbff, #e8f4ff 55%, #d7ecfb);
}
.page-hero h1 {
  margin: 0 0 12px; font-size: clamp(2rem, 5vw, 3.3rem); line-height: 1.05; letter-spacing: -.03em;
}
.crumbs { font-size: .82rem; color: var(--muted); margin-bottom: 10px; }
.crumbs a { text-decoration: none; color: var(--blue); font-weight: 600; }
.prose { max-width: 760px; }
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; align-items: start; }
.list-check { padding: 0; margin: 0; list-style: none; }
.list-check li { padding: 8px 0 8px 28px; position: relative; }
.list-check li:before {
  content: ""; position: absolute; left: 0; top: 14px; width: 12px; height: 12px;
  border-radius: 50%; background: var(--blue);
}

.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 24px 0; }
.stat {
  background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 16px;
}
.stat b { display: block; color: var(--blue); font-size: 1.4rem; }
.stat span { color: var(--muted); font-size: .85rem; }

.form-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 48px; }
.lead-form, .contact-card {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 28px; box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field-full { grid-column: 1 / -1; }
.field label { font-weight: 700; font-size: .9rem; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 46px; padding: 10px 12px; border: 1px solid #aeb8c5; border-radius: 8px;
}
.field textarea { min-height: 140px; resize: vertical; }
.consent { display: flex; gap: 10px; align-items: flex-start; margin: 18px 0; font-size: .88rem; }
.form-status { margin-top: 12px; padding: 12px; border-radius: 8px; background: var(--sky); color: #0b4f8a; display: none; }
.form-status.show { display: block; }

.faq details {
  border-bottom: 1px solid var(--line); padding: 12px 0;
}
.faq summary { cursor: pointer; font-weight: 700; color: var(--navy); }
.company-card address { font-style: normal; }

.site-footer { background: #052342; color: #d7e6f2; padding: 36px 0 18px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 24px; }
.site-footer a { color: #d7e6f2; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer h3 { margin: 0 0 10px; font-size: .95rem; color: #fff; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; font-size: .86rem; }
.footer-legal {
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  margin-top: 24px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.12);
  font-size: .78rem; color: #9fb8cc;
}
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 40;
  width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 10px 24px rgba(0,0,0,.2);
}
.wa-float svg { width: 30px; height: 30px; }

.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; background: #fff; }
th, td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { background: var(--navy); color: #fff; font-size: .86rem; }

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

@media (max-width: 1080px) {
  .solution-six { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .quick-assessment { grid-column: 1 / -1; }
  .trust-five { grid-template-columns: 1fr 1fr 1fr; }
  .trust-five > div { border: 0; }
  .grid-4, .process, .stat-row { grid-template-columns: 1fr 1fr; }
  .header-inner { grid-template-columns: 200px 1fr auto; }
  .brand img { width: 180px; }
}
@media (max-width: 900px) {
  .topbar { display: none; }
  .site-header { position: sticky; }
  .header-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: nowrap; position: relative; padding-right: 4px; }
  .brand { flex: 0 1 auto; padding-right: 52px; }
  .nav-toggle {
    display: flex !important;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    border-color: var(--navy);
    z-index: 60;
    background: #fff;
  }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: var(--header);
    background: #fff; border-bottom: 1px solid var(--line); padding: 12px 16px 20px;
    flex-direction: column; align-items: stretch;
  }
  .nav.open { display: flex; }
  .drop-menu { position: static; box-shadow: none; border: 0; padding: 0 0 0 12px; display: none; }
  .drop.open .drop-menu { display: grid; }
  .home-hero-grid, .why-grid, .bee-panel, .split, .form-layout, .footer-grid { grid-template-columns: 1fr; }
  .home-hero { min-height: 640px; }
  .home-hero > .hero-photo { left: 0; width: 100%; object-position: left 38%; }
  .hero-fade {
    background: linear-gradient(
      180deg,
      #fff 0%,
      rgba(255,255,255,.97) 34%,
      rgba(255,255,255,.55) 52%,
      rgba(255,255,255,.12) 72%,
      transparent 100%
    );
  }
  .home-hero-copy { padding: 36px 0 210px; }
  .hero-visual {
    position: absolute;
    inset: 0;
    min-height: 100%;
    pointer-events: none;
  }
  .partner-badge { pointer-events: auto; }
  .scribble { top: 12px; right: 12px; font-size: 1.25rem; }
  .partner-badge { right: 12px; bottom: 12px; width: min(260px, calc(100% - 24px)); }
  .location-four { grid-template-columns: 1fr 1fr; }
  .nav-quote { margin-left: 0; }
}
@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .home-hero h1 { font-size: clamp(2.6rem, 14vw, 3.6rem); }
  .hero-actions, .form-grid, .quick-form-grid, .solution-six, .trust-five, .process, .grid-3, .grid-4, .location-four, .stat-row {
    grid-template-columns: 1fr;
  }
  .hero-actions .button { width: 100%; }
  .brand img { width: 156px; }
  .location-panel { min-height: 180px; }
  .lead-form, .quick-assessment { padding: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
