 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --black: #0a0a0a;
      --white: #fafafa;
      --mid: #6b7280;
      --line: #e5e7eb;
      --accent: #fba919;
      --accent-dim: rgba(251,169,25,0.12);
      --mono: 'DM Mono', monospace;
      --sans: 'DM Sans', sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--white);
      color: var(--black);
      font-family: var(--sans);
      font-size: 15px;
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      height: 64px;
      display: flex;
      align-items: center;
      border-bottom: 1px solid var(--line);
      background: rgba(250,250,250,0.92);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      padding: 0 48px;
      justify-content: space-between;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 0;
      text-decoration: none;
      letter-spacing: -0.05em;
      font-size: 20px;
      font-weight: 700;
      color: var(--black);
    }
    .nav-logo span { color: var(--accent); }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }
    .nav-links a {
      text-decoration: none;
      color: var(--mid);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.02em;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--black); }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--black);
      color: var(--white) !important;
      border-radius: 8px;
      padding: 8px 18px;
      font-size: 13px !important;
      font-weight: 600 !important;
      letter-spacing: 0;
      transition: background 0.2s !important;
    }
    .nav-cta:hover { background: #1f2937 !important; color: var(--white) !important; }

    /* ── HERO STRIP ── */
    .hero {
      margin-top: 64px;
      padding: 80px 48px 64px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--mid);
      margin-bottom: 24px;
    }
    .hero-eyebrow::before {
      content: '';
      display: block;
      width: 20px;
      height: 1px;
      background: var(--mid);
    }

    .hero h1 {
      font-size: clamp(36px, 5vw, 56px);
      font-weight: 600;
      letter-spacing: -0.04em;
      line-height: 1.08;
      color: var(--black);
      margin-bottom: 16px;
    }

    .hero p {
      font-size: 16px;
      color: var(--mid);
      font-weight: 300;
      max-width: 520px;
    }

    /* ── LAYOUT ── */
    .layout {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 48px 120px;
      display: grid;
      grid-template-columns: 200px 1fr;
      gap: 0 64px;
      align-items: start;
    }

    /* ── SIDEBAR NAV ── */
    .sidebar {
      position: sticky;
      top: 88px;
    }

    .sidebar-label {
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--mid);
      margin-bottom: 16px;
    }

    .sidebar-nav {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .sidebar-nav a {
      display: block;
      padding: 7px 12px;
      font-size: 13px;
      font-weight: 500;
      color: var(--mid);
      text-decoration: none;
      border-radius: 6px;
      transition: all 0.15s;
    }
    .sidebar-nav a:hover {
      color: var(--black);
      background: var(--line);
    }
    .sidebar-nav a.active {
      color: var(--black);
      background: var(--accent-dim);
    }

    /* ── CONTENT ── */
    .content { min-width: 0; }

    .section {
      padding: 48px 0;
      border-top: 1px solid var(--line);
    }
    .section:first-child { border-top: none; padding-top: 0; }

    .section-tag {
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--accent);
      display: block;
      margin-bottom: 20px;
    }

    .section h2 {
      font-size: 22px;
      font-weight: 600;
      letter-spacing: -0.03em;
      color: var(--black);
      margin-bottom: 28px;
    }

    /* ── DATA TABLE ── */
    .data-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: var(--line);
      border: 1px solid var(--line);
      border-radius: 12px;
      overflow: hidden;
    }

    .data-cell {
      background: var(--white);
      padding: 18px 22px;
    }
    .data-cell:nth-child(odd):last-child {
      grid-column: 1 / -1;
    }

    .data-cell dt {
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--mid);
      margin-bottom: 6px;
    }

    .data-cell dd {
      font-size: 14px;
      font-weight: 500;
      color: var(--black);
      letter-spacing: -0.01em;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 12px;
      font-weight: 600;
      padding: 3px 10px;
      border-radius: 20px;
      background: #dcfce7;
      color: #16a34a;
    }
    .badge::before {
      content: '';
      display: block;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #16a34a;
    }

    /* ── BBBEE SPECIAL ── */
    .bbbee-level {
      display: flex;
      align-items: flex-end;
      gap: 4px;
      margin-bottom: 28px;
    }
    .bbbee-level .num {
      font-size: 72px;
      font-weight: 700;
      letter-spacing: -0.06em;
      line-height: 1;
      color: var(--black);
    }
    .bbbee-level .label {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--mid);
      padding-bottom: 10px;
    }

    .stat-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--line);
      border: 1px solid var(--line);
      border-radius: 12px;
      overflow: hidden;
      margin-top: 8px;
    }

    .stat {
      background: var(--white);
      padding: 20px 22px;
    }
    .stat dt {
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--mid);
      margin-bottom: 8px;
    }
    .stat dd {
      font-size: 24px;
      font-weight: 700;
      letter-spacing: -0.04em;
      color: var(--black);
    }
    .stat dd small {
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 0;
      color: var(--mid);
    }

    /* ── ACCORDION POLICIES ── */
    .accordion-group {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .accordion-item {
      border: 1px solid var(--line);
      border-radius: 12px;
      background: var(--white);
      overflow: hidden;
      transition: border-color 0.2s;
    }
    
    .accordion-item:hover {
      border-color: var(--black);
    }

    .accordion-header {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 24px;
      background: transparent;
      border: none;
      cursor: pointer;
      text-align: left;
      font-family: inherit;
      color: var(--black);
      transition: all 0.2s;
    }

    .accordion-title {
      font-size: 15px;
      font-weight: 600;
      letter-spacing: -0.01em;
    }

    .accordion-icon {
      color: var(--mid);
      transition: transform 0.3s ease, color 0.2s ease;
    }

    .accordion-item.active {
      border-color: var(--black);
    }

    .accordion-item.active .accordion-icon {
      transform: rotate(180deg);
      color: var(--black);
    }

    .accordion-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }

    .accordion-inner {
      padding: 0 24px 24px 24px;
      font-size: 13px;
      color: var(--mid);
    }

    .accordion-inner p { margin-bottom: 12px; }
    .accordion-inner p:last-child { margin-bottom: 0; }
    .accordion-inner strong { color: var(--black); font-weight: 600; }
    .accordion-inner ul { margin-left: 20px; margin-top: 8px; }
    .accordion-inner li { margin-bottom: 6px; }

    /* ── CONTACT CARD ── */
    .contact-card {
      margin-top: 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 24px 28px;
      border: 1px solid var(--line);
      border-radius: 12px;
      background: var(--white);
      transition: border-color 0.2s;
    }
    .contact-card:hover { border-color: #d1d5db; }

    .contact-card .left p {
      font-size: 13px;
      color: var(--mid);
      margin-top: 2px;
    }
    .contact-card h3 {
      font-size: 15px;
      font-weight: 600;
      letter-spacing: -0.02em;
      color: var(--black);
    }

    .contact-card a.email-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 600;
      color: var(--black);
      text-decoration: none;
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 10px 18px;
      white-space: nowrap;
      transition: all 0.2s;
    }
    .contact-card a.email-btn:hover {
      background: var(--black);
      color: var(--white);
      border-color: var(--black);
    }

    /* ── FOOTER ── */
    footer {
      border-top: 1px solid var(--line);
      padding: 32px 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    footer p {
      font-size: 13px;
      color: var(--mid);
    }

    footer .f-links {
      display: flex;
      gap: 24px;
    }
    footer .f-links a {
      font-size: 13px;
      color: var(--mid);
      text-decoration: none;
      transition: color 0.2s;
    }
    footer .f-links a:hover { color: var(--black); }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      nav { padding: 0 24px; }
      .hero { padding: 60px 24px 48px; margin-top: 64px; }
      .layout { padding: 0 24px 80px; grid-template-columns: 1fr; gap: 0; }
      .sidebar { display: none; }
      .data-grid { grid-template-columns: 1fr; }
      .stat-row { grid-template-columns: 1fr 1fr; }
      footer { padding: 24px; flex-direction: column; gap: 16px; text-align: center; }
      .contact-card { flex-direction: column; align-items: flex-start; gap: 16px; }
    }
    /* --- Added Styles for Logo Fix --- */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px; /* Aligns with common layouts */
  margin: 0 auto;
}

.logo-separator {
  height: 20px;
  width: 1px;
  background-color: var(--line);
  margin: 0 12px;
  display: inline-block;
}

.logo-subtext {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo-subtext span {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--mid);
  line-height: 1;
  white-space: nowrap;
}

/* Adjust nav padding to accommodate the wider logo */
nav {
  padding: 0 24px !important;
}

@media (max-width: 768px) {
  .logo-subtext { display: none; } /* Hides "Technology Group" on small mobile to save space */
  .logo-separator { display: none; }
}
