/* Generated from css/source by scripts/build-site.mjs. Edit the source layers instead. */
@layer tokens, base, layout, components, sections, responsive;

@layer tokens {
:root {
  --black: #0b0b0c;
  --surface: #101113;
  --surface-raised: #111214;
  --gold: #d9a441;
  --warm: #f0c66a;
  --ink-on-gold: #171713;
  --gold-tint-subtle: rgba(217, 164, 65, 0.06);
  --white: #f4f2ed;
  --muted: #9a9a96;
  --muted-strong: #c7c4bc;
  --line: rgba(217, 164, 65, 0.24);
  --line-subtle: rgba(255, 255, 255, 0.08);
  --max: 1200px;
  --header-height: 72px;
  --header-height-compact: 68px;
  --font-body: Inter, Arial, sans-serif;
  --font-display: Manrope, sans-serif;
}
}
@layer base {
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
}

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

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

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--warm);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}
}
@layer layout {
.container {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding-block: 88px;
}

.dark {
  background: linear-gradient(180deg, var(--surface), #0d0e10);
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 68px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 28px;
}

.section h2 {
  margin: 0;
  font: 800 clamp(34px, 4vw, 52px) / 1.06 var(--font-display);
  letter-spacing: -0.04em;
}

.section h2 strong,
.hero h1 strong {
  color: var(--warm);
}

.section-head > p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}
}
@layer components {
.eyebrow {
  margin: 0 0 11px;
  color: var(--gold);
  font: 800 10px / 1.2 var(--font-display);
  letter-spacing: 0.17em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.primary {
  border-color: var(--gold);
  background: var(--gold);
  color: #17130b;
}

.primary:hover {
  border-color: var(--warm);
  background: var(--warm);
}

.outline {
  border-color: rgba(217, 164, 65, 0.65);
  background: rgba(11, 11, 12, 0.18);
}

.outline:hover {
  background: rgba(217, 164, 65, 0.1);
}

.gold-link {
  color: var(--warm);
  font-weight: 700;
}

.gold-link:hover,
.contact-whatsapp:hover,
.form-success-link:hover,
.thank-you-link:hover,
.footer-grid a:hover {
  color: var(--white);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 7px;
  transform: translateY(-180%);
  background: var(--warm);
  color: #17130b;
  font-weight: 800;
  transition: transform 0.16s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(11, 11, 12, 0.96);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo-link {
  /* Crop transparent canvas padding from the supplied full lockup. */
  display: block;
  width: 185px;
  height: 53px;
  overflow: hidden;
}

.brand-logo {
  display: block;
  width: 203px;
  max-width: none;
  height: auto;
  transform: translate(-10px, -19px);
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  height: 100%;
  font-size: 14px;
}

.nav > a:not(.nav-btn) {
  position: relative;
  padding-block: 26px;
  color: #ddd;
}

.nav > a:not(.nav-btn):hover,
.nav > a.active {
  color: var(--warm);
}

.nav > a.active::after {
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
}

.nav-btn {
  padding: 12px 18px;
  border-radius: 7px;
  background: var(--gold);
  color: #151515;
  font-weight: 700;
  white-space: nowrap;
}

.nav-btn:hover {
  background: var(--warm);
}

.menu-toggle {
  display: none;
  padding: 8px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px;
  border-radius: 2px;
  background: var(--white);
}

.wa {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 45;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  isolation: isolate;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.wa svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 13px 28px rgba(0, 0, 0, 0.32);
}

.wa:focus-visible {
  outline-color: #fff;
}

.wa-prompt {
  position: absolute;
  top: 50%;
  right: calc(100% + 12px);
  width: max-content;
  max-width: 280px;
  padding: 9px 12px;
  border: 1px solid rgba(240, 198, 106, 0.34);
  border-radius: 9px;
  transform: translate(8px, -50%) scale(0.98);
  background: rgba(23, 23, 20, 0.98);
  color: #f7f2e8;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
  font: 700 12px / 1.2 var(--font-display);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
  white-space: nowrap;
}

.wa-prompt::after {
  position: absolute;
  top: 50%;
  right: -5px;
  width: 9px;
  height: 9px;
  border-top: 1px solid rgba(240, 198, 106, 0.34);
  border-right: 1px solid rgba(240, 198, 106, 0.34);
  transform: translateY(-50%) rotate(45deg);
  background: rgba(23, 23, 20, 0.98);
  content: "";
}

.wa:hover .wa-prompt,
.wa:focus-visible .wa-prompt,
.wa.is-prompt-visible .wa-prompt {
  opacity: 1;
  transform: translate(0, -50%) scale(1);
}
}
@layer sections {
/* Hero */
.hero {
  position: relative;
  min-height: min(37rem, calc(100svh - var(--header-height)));
  height: min(40rem, calc(100svh - var(--header-height)));
  overflow: hidden;
  background: var(--black);
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background: url("../assets/mthatha-desktop.webp") center bottom / cover no-repeat;
}

.hero-shade {
  background:
    linear-gradient(
      90deg,
      rgba(11, 11, 12, 0.98) 0%,
      rgba(11, 11, 12, 0.9) 22%,
      rgba(11, 11, 12, 0.58) 38%,
      rgba(11, 11, 12, 0.16) 63%,
      rgba(11, 11, 12, 0.03) 100%
    ),
    linear-gradient(
      0deg,
      rgba(11, 11, 12, 0.68) 0%,
      rgba(11, 11, 12, 0.05) 42%,
      rgba(11, 11, 12, 0.12) 100%
    );
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  height: 100%;
  padding-top: clamp(2rem, 5vh, 4.25rem);
}

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

.hero h1 {
  margin: 0;
  font: 800 clamp(50px, 5.3vw, 76px) / 0.96 var(--font-display);
  letter-spacing: -0.05em;
}

.hero-copy > p {
  max-width: 580px;
  margin: 20px 0 0;
  color: #ddd9d1;
  font-size: 16px;
  line-height: 1.6;
}

.hero-tagline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 16px;
  color: var(--warm);
  font: 800 10px / 1.2 var(--font-display);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-tagline span + span::before {
  display: inline-block;
  margin-inline: 10px;
  color: rgba(240, 198, 106, 0.62);
  content: "•";
}

.actions,
.contact-actions,
.form-success-actions,
.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.actions {
  margin-top: 24px;
}

.hero-secondary-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border-bottom: 1px solid rgba(217, 164, 65, 0.58);
  color: #e5e1d8;
  font: 700 13px / 1 var(--font-display);
}

.hero-secondary-link::after {
  margin-left: 8px;
  color: var(--warm);
  content: "→";
  transition: transform 0.2s ease;
}

.hero-secondary-link:hover {
  color: var(--warm);
}

.hero-secondary-link:hover::after {
  transform: translateX(3px);
}

.hero-points {
  display: grid;
  width: 100%;
  margin-top: 28px;
  grid-template-columns: repeat(3, minmax(135px, 1fr));
  gap: 24px;
}

.hero-points > div {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.hero-points b {
  margin-top: 1px;
  color: var(--gold);
  font-size: 17px;
  line-height: 1;
}

.hero-points span,
.location-card small,
.location-card strong {
  display: grid;
}

.hero-points strong {
  font: 700 11px / 1.25 var(--font-display);
}

.hero-points small {
  margin-top: 3px;
  color: #aaa8a2;
  font-size: 11px;
}

.location-card {
  position: absolute;
  top: 86px;
  right: 0;
  display: flex;
  width: 285px;
  gap: 12px;
  padding: 16px 17px;
  border: 1px solid rgba(217, 164, 65, 0.47);
  border-radius: 8px;
  background: rgba(12, 13, 14, 0.82);
  backdrop-filter: blur(10px);
}

.location-card .pin {
  color: var(--warm);
  font-size: 24px;
  line-height: 1;
}

.location-card small {
  color: #aaa8a2;
  font-size: 11px;
}

.location-card strong {
  font: 700 14px / 1.2 var(--font-display);
}

.location-card p {
  margin: 8px 0 0;
  color: #c4c1ba;
  font-size: 11px;
  line-height: 1.4;
}

/* Narrative and method */
.statement .copy,
.about .copy {
  color: #c7c5bf;
  font-size: 16px;
  line-height: 1.6;
}

.statement .copy p,
.about .copy p {
  margin: 0 0 18px;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
}

.method-grid article {
  min-height: 170px;
  padding: 22px 18px;
  border-right: 1px solid var(--line);
}

.method-grid article:last-child {
  border-right: 0;
}

.method-grid span {
  color: var(--gold);
  font: 800 12px / 1 var(--font-display);
}

.method-grid h3 {
  margin: 15px 0 8px;
  font: 700 20px / 1.2 var(--font-display);
}

.method-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

/* Service cards */
.services-overview .section-head {
  margin-bottom: 28px;
}

.service-choice {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin: -8px 0 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.service-choice a {
  color: var(--warm);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(217, 164, 65, 0.5);
  text-underline-offset: 4px;
}

.service-choice a:hover,
.service-choice a:focus-visible {
  color: var(--white);
  text-decoration-color: var(--gold);
}

.service-grid {
  display: grid;
}

.service-grid-lanes {
  /* Keep the dense package cards quieter than the site-wide content width. */
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 16px;
}

.service-lane {
  display: flex;
  min-height: 0;
  padding: 26px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(217, 164, 65, 0.28);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.service-lane:hover,
.service-lane:focus-within {
  border-color: rgba(217, 164, 65, 0.62);
  background: linear-gradient(180deg, var(--gold-tint-subtle), rgba(255, 255, 255, 0.018));
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}

.service-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 24px;
  margin-bottom: 14px;
}

.service-number {
  color: var(--muted);
  font: 800 10px / 1 var(--font-display);
  letter-spacing: 0.16em;
}

.service-badge {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink-on-gold);
  font: 900 10px / 1 var(--font-display);
  letter-spacing: 0.12em;
}

.service-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin: 0 0 16px;
  place-items: center;
  border: 1px solid rgba(217, 164, 65, 0.55);
  border-radius: 11px;
  background: var(--gold-tint-subtle);
  color: var(--gold);
  font-size: 18px;
  font-weight: 700;
}

.service-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0 0 8px;
}

.service-price span {
  color: var(--muted);
  font: 800 12px / 1.2 var(--font-display);
  letter-spacing: 0.16em;
}

.service-price strong {
  color: var(--warm);
  font: 800 24px / 1 var(--font-display);
}

.service-lane h3 {
  display: flex;
  align-items: flex-start;
  min-height: 2.26em;
  margin: 0 0 9px;
  color: var(--gold);
  font: 700 clamp(24px, 2.1vw, 28px) / 1.13 var(--font-display);
  letter-spacing: -0.02em;
}

.service-price-note {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.service-best-for {
  margin: 0 0 20px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.service-best-for span {
  display: block;
  margin-bottom: 3px;
  color: var(--gold);
  font: 800 11px / 1.2 var(--font-display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-description {
  margin: 0 0 16px;
  color: #b9b7b1;
  font-size: 15px;
  line-height: 1.55;
}

.service-details {
  margin: auto 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.service-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding-top: 12px;
  color: var(--white);
  cursor: pointer;
  font: 800 12px / 1.2 var(--font-display);
  letter-spacing: 0.1em;
  list-style: none;
  text-transform: uppercase;
}

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

.service-details summary::after {
  color: var(--gold);
  content: "+";
  font-size: 20px;
  line-height: 1;
}

.service-details[open] summary::after {
  content: "−";
}

.service-details summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.service-details-content {
  padding-top: 4px;
}

.service-details-content > .service-includes:first-child {
  padding-top: 0;
  border-top: 0;
}

[data-service-dialog-ready="true"] .service-details summary::after,
[data-service-dialog-ready="true"] .service-details[open] summary::after {
  content: "↗";
  font-size: 16px;
}

.service-dialog {
  width: min(720px, calc(100% - 48px));
  max-height: min(760px, calc(100dvh - 48px));
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(217, 164, 65, 0.66);
  border-radius: 20px;
  background: linear-gradient(145deg, #20201f, #111110 72%);
  color: var(--white);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.58);
}

.service-dialog::backdrop {
  background: rgba(4, 4, 4, 0.76);
  backdrop-filter: blur(8px);
}

.service-dialog[open] {
  animation: service-dialog-enter 180ms ease-out;
}

.service-dialog-panel {
  position: relative;
  max-height: inherit;
  overflow-y: auto;
}

.service-dialog-content {
  padding: clamp(30px, 5vw, 48px);
}

.service-dialog-content h3 {
  max-width: 580px;
  margin: 0 52px 12px 0;
  color: var(--gold);
  font: 700 clamp(30px, 4vw, 42px) / 1.08 var(--font-display);
  letter-spacing: -0.03em;
}

.service-dialog-close {
  position: absolute;
  z-index: 1;
  top: 18px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(217, 164, 65, 0.42);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.26);
  color: var(--white);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.service-dialog-close:hover {
  border-color: var(--gold);
  background: var(--gold-tint-subtle);
  color: var(--gold);
}

.service-dialog-details {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-details-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 52px;
  gap: 12px;
  margin-top: 8px;
  padding: 14px 16px;
  border: 1px solid var(--gold);
  border-radius: 11px;
  background: var(--gold);
  color: var(--ink-on-gold);
  font-size: 14px;
  font-weight: 800;
}

.service-details-cta:hover {
  background: #e7b65a;
  color: var(--ink-on-gold);
}

@keyframes service-dialog-enter {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-dialog[open] {
    animation: none;
  }
}

.service-includes {
  min-height: 0;
  margin: 0 0 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--white);
  font: 800 11px / 1.2 var(--font-display);
  letter-spacing: 0.14em;
  opacity: 0.72;
}

.service-offers {
  display: grid;
  gap: 7px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.service-offers li,
.it-support-pro-card li {
  position: relative;
  padding-left: 15px;
}

.service-offers li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.42;
}

.service-offers li::before,
.it-support-pro-card li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "✓";
  font-weight: 800;
}

.service-content-group--spacious {
  margin-top: 1rem;
}

.service-content-group--compact {
  margin-top: 0.35rem;
}

.service-group-note {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.service-group-note.service-trade-note {
  margin-top: 0;
}

.service-featured {
  border-color: rgba(217, 164, 65, 0.72);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.26);
}

@media (min-width: 1151px) {
  .service-lane:hover,
  .service-lane:focus-within {
    transform: translateY(-4px);
  }

  .service-featured {
    transform: translateY(-2px);
  }

  .service-featured:hover,
  .service-featured:focus-within {
    transform: translateY(-6px);
  }
}

/* IT support */
.it-support-pro {
  padding-block: 78px 82px;
  background: var(--black);
}

.it-support-pro-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: end;
  gap: 56px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.it-support-pro-head h2 {
  margin: 8px 0 0;
  color: var(--white);
  font: 800 clamp(34px, 4vw, 52px) / 1.02 var(--font-display);
  letter-spacing: -0.045em;
}

.it-support-pro-head h2 strong {
  color: var(--gold);
}

.it-support-pro-intro {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-direction: column;
}

.it-support-pro-intro p {
  max-width: 42ch;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.it-support-pro-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 15px;
  border: 1px solid rgba(217, 164, 65, 0.42);
  border-radius: 9px;
  color: var(--warm);
  font-size: 13px;
  font-weight: 800;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.it-support-pro-cta:hover {
  border-color: rgba(217, 164, 65, 0.7);
  background: rgba(217, 164, 65, 0.08);
  transform: translateY(-2px);
}

.it-support-pro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-top: 22px;
}

.it-support-pro-card {
  position: relative;
  display: flex;
  min-height: 300px;
  padding: 26px;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: var(--surface-raised);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.it-support-pro-card::before {
  position: absolute;
  top: 0;
  right: 24px;
  left: 24px;
  height: 2px;
  background: linear-gradient(90deg, rgba(217, 164, 65, 0), rgba(217, 164, 65, 0.8), rgba(217, 164, 65, 0));
  content: "";
  opacity: 0.8;
}

.it-support-pro-card:hover {
  border-color: rgba(217, 164, 65, 0.38);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
  transform: translateY(-4px);
}

.it-support-pro-index {
  margin-bottom: 34px;
  color: rgba(217, 164, 65, 0.48);
  font: 800 11px / 1 var(--font-display);
  letter-spacing: 0.12em;
}

.it-support-pro-card-head span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font: 800 10px / 1.2 var(--font-display);
  letter-spacing: 0.16em;
}

.it-support-pro-card h3 {
  margin: 0;
  color: var(--white);
  font: 800 22px / 1.18 var(--font-display);
  letter-spacing: -0.02em;
}

.it-support-pro-card ul {
  display: grid;
  gap: 9px;
  margin: auto 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line-subtle);
  list-style: none;
}

.it-support-pro-card li {
  color: var(--muted-strong);
  font-size: 13px;
  line-height: 1.4;
}

.it-support-pro-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.it-support-pro-footer span {
  color: var(--muted);
  font-size: 13px;
}

.it-support-pro-footer a {
  color: var(--warm);
  font-size: 13px;
  font-weight: 800;
}

/* Why, about, and contact */
.why {
  background: #0f1011;
}

.muted {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
}

.stats > div {
  padding: 27px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats > div:nth-child(2n) {
  border-right: 0;
}

.stats > div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.stats strong {
  display: block;
  color: var(--warm);
  font: 800 40px / 1 var(--font-display);
}

.stats span {
  color: var(--muted);
  font-size: 14px;
}

.contact-box {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  padding: 30px;
  border: 1px solid rgba(217, 164, 65, 0.43);
  border-radius: 15px;
  background: linear-gradient(130deg, var(--gold-tint-subtle), rgba(255, 255, 255, 0.012));
}

.contact-statement h2 {
  max-width: 560px;
}

.contact-statement > p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.contact-actions {
  gap: 12px;
  margin-top: 18px;
}

.contact-whatsapp {
  padding: 13px 2px;
  color: #f3f1eb;
  font: 700 13px / 1 var(--font-display);
}

.contact form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 12px;
}

#contactForm {
  scroll-margin-top: 96px;
}

.contact label {
  display: grid;
  gap: 4px;
  color: #ccc8bf;
  font-size: 13px;
}

.contact label:nth-child(3),
.contact label:nth-child(4),
.contact .contact-full,
.contact .quote-selections,
.contact .contact-note,
.contact form > button,
.contact form > .form-status,
.contact form > .form-success {
  grid-column: 1 / -1;
}

.contact input,
.contact select,
.contact textarea {
  width: 100%;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 7px;
  outline: none;
  background: #0b0c0d;
  color: var(--white);
  font-size: 13px;
}

.contact input:focus,
.contact select:focus,
.contact textarea:focus {
  border-color: var(--gold);
}

.contact textarea {
  min-height: 64px;
  height: 64px;
  resize: none;
}

.contact .quote-selections {
  min-width: 0;
  margin: 3px 0 1px;
  padding: 14px;
  border: 1px solid rgba(217, 164, 65, 0.28);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.018);
}

.contact .quote-selections legend {
  padding: 0 4px;
  color: #e0ddd5;
  font: 700 13px / 1.35 var(--font-display);
}

.contact .quote-selections legend span {
  color: #a8a49b;
  font-weight: 500;
}

.contact .quote-selections .form-hint {
  margin: 2px 0 11px;
}

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

.contact .quote-selection-option {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  gap: 9px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.14);
  color: #d5d1c8;
  cursor: pointer;
  font-size: 12px;
  line-height: 1.35;
}

.contact .quote-selection-option:hover {
  border-color: rgba(217, 164, 65, 0.45);
}

.contact .quote-selection-option:has(input:checked) {
  border-color: rgba(217, 164, 65, 0.72);
  background: var(--gold-tint-subtle);
  color: var(--white);
}

.contact .quote-selection-option input {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin: 0;
  padding: 0;
  accent-color: var(--gold);
}

.contact .quote-selection-option input:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.contact-full span,
.form-hint,
.contact-note {
  color: #a8a49b;
  font-size: 11px;
  line-height: 1.4;
}

.form-error {
  color: #ffd0c4;
  font-size: 11px;
  line-height: 1.4;
}

.contact-full span {
  font-weight: 500;
}

.contact-note {
  padding-top: 2px;
}

.contact [aria-invalid="true"] {
  border-color: #e7755c;
}

.contact form.is-submitting button[type="submit"] {
  cursor: wait;
  opacity: 0.8;
}

.form-status {
  margin: 0;
  padding: 11px 13px;
  border: 1px solid rgba(240, 198, 106, 0.4);
  border-radius: 8px;
  color: var(--warm);
  font-size: 13px;
  line-height: 1.45;
}

.form-status.is-error {
  border-color: rgba(231, 117, 92, 0.65);
  color: #ffd0c4;
}

.form-success {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(217, 164, 65, 0.48);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(217, 164, 65, 0.14), rgba(255, 255, 255, 0.025));
}

.form-success-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink-on-gold);
  font-weight: 800;
}

.form-success h3 {
  margin: 0;
  font: 800 24px / 1.15 var(--font-display);
}

.form-success p {
  margin: 0;
  color: #d2cec6;
  line-height: 1.6;
}

.form-success .form-success-note {
  color: #aaa69e;
  font-size: 12px;
}

.form-success-actions {
  margin-top: 6px;
}

.form-success-link {
  color: var(--warm);
  font: 700 13px / 1 var(--font-display);
}

/* Form fallback page */
.thank-you-page {
  display: grid;
  min-height: 100svh;
  padding-block: 32px;
  place-items: center;
  background: radial-gradient(circle at 18% 16%, rgba(217, 164, 65, 0.18), transparent 32%), var(--black);
}

.thank-you-card {
  max-width: 690px;
  padding: clamp(32px, 7vw, 72px);
  border: 1px solid rgba(217, 164, 65, 0.46);
  border-radius: 16px;
  background: rgba(15, 15, 15, 0.86);
  text-align: center;
}

.thank-you-card .logo-link {
  width: 230px;
  height: 65px;
  margin: 0 auto 44px;
}

.thank-you-card .brand-logo {
  width: 252px;
  transform: translate(-13px, -23px);
}

.thank-you-card h1 {
  margin: 14px 0;
  font: 800 clamp(36px, 7vw, 62px) / 1.03 var(--font-display);
}

.thank-you-card p {
  max-width: 520px;
  margin: 0 auto;
  color: #d2cec6;
  font-size: 17px;
}

.thank-you-actions {
  justify-content: center;
  margin-top: 32px;
}

.thank-you-link {
  align-self: center;
  color: var(--warm);
  font-weight: 700;
}

/* Footer */
.footer {
  padding: 46px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: #080909;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
}

.footer-grid h3 {
  margin: 0 0 12px;
  font-size: 18px;
  letter-spacing: 0.12em;
}

.footer-grid h4 {
  margin: 0 0 10px;
}

.footer-grid > div > p:not(.footer-brandline),
.footer-grid > div > span,
.footer-grid > div > address,
.footer-grid > div > a {
  color: var(--muted);
  font-size: 14px;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-brandline {
  display: flex;
  flex-wrap: wrap;
  gap: 0 5px;
  color: var(--warm);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.footer-grid > div > .footer-company-name {
  margin: -8px 0 10px;
  color: #a6a49e;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-address {
  max-width: 32ch;
  margin: 6px 0 0;
  font-style: normal;
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #71716d;
  font-size: 11px;
}
}
@layer responsive {
/*
 * Short desktop screens: content, rather than a fixed vertical reserve, owns
 * the hero height. The minimum is the viewport below the header; proof points
 * stay in normal flow so longer copy can extend the hero without being clipped.
 */
@media (min-width: 1001px) and (max-height: 700px) {
  .hero {
    --hero-short-viewport-height: calc(100svh - var(--header-height));
    /* Keep the visual breathing room above the copy, not below its proof points. */
    --hero-short-top-space: clamp(5rem, 13vh, 7rem);
    --hero-short-bottom-space: clamp(1.25rem, 2.5vh, 2rem);
    min-height: var(--hero-short-viewport-height);
    height: auto;
  }

  .hero-inner {
    min-height: var(--hero-short-viewport-height);
    height: auto;
    padding: var(--hero-short-top-space) 0 var(--hero-short-bottom-space);
  }

  .hero h1 {
    font-size: clamp(44px, 4.6vw, 64px);
  }

  .hero-copy > p {
    margin-top: 14px;
    line-height: 1.45;
  }

  .hero-tagline {
    margin-top: 12px;
  }

  .actions {
    margin-top: 16px;
  }

  .location-card {
    top: var(--hero-short-top-space);
  }
}

/* Service cards need more horizontal room than the global tablet layout. */
@media (min-width: 761px) and (max-width: 1150px) {
  .service-grid-lanes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Tablet: preserve the hierarchy while keeping all hero content in normal flow. */
@media (max-width: 1000px) {
  .nav {
    gap: 16px;
  }

  .hero {
    min-height: 0;
    height: auto;
  }

  .hero-inner {
    display: grid;
    min-height: 0;
    height: auto;
    padding-block: clamp(4rem, 9vw, 5rem) 4rem;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 260px);
    align-items: center;
    column-gap: clamp(24px, 4vw, 48px);
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-points {
    margin-top: 30px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 22px;
  }

  .hero-points > div:last-child {
    grid-column: 1 / -1;
  }

  .location-card {
    position: static;
    align-self: center;
    width: 100%;
  }

  .section-head {
    display: block;
  }

  .section-head > p {
    margin-top: 12px;
  }

  .two-col,
  .contact-box {
    grid-template-columns: 1fr;
  }

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

  .method-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .method-grid article:last-child {
    border-bottom: 0;
  }

  .service-lane {
    padding: 24px;
  }

  .service-lane h3 {
    font-size: 25px;
  }

  .service-description,
  .service-offers li {
    font-size: 14px;
  }

  .it-support-pro {
    padding-block: 64px 68px;
  }

  .it-support-pro-head,
  .it-support-pro-grid {
    grid-template-columns: 1fr;
  }

  .it-support-pro-head {
    gap: 24px;
  }

  .it-support-pro-card {
    min-height: 0;
  }
}

/* Mobile: a single-column information flow and a keyboard-accessible menu. */
@media (max-width: 760px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .header {
    height: var(--header-height-compact);
  }

  .logo-link {
    width: 150px;
    height: 43px;
  }

  .brand-logo {
    width: 164px;
    transform: translate(-8px, -14px);
  }

  .js .menu-toggle {
    display: block;
  }

  .js .nav {
    position: absolute;
    top: var(--header-height-compact);
    right: 14px;
    left: 14px;
    display: none;
    height: auto;
    padding: 10px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #0e0f10;
  }

  .js .nav.open {
    display: flex;
  }

  .nav > a:not(.nav-btn) {
    padding: 12px;
  }

  .nav > a.active::after {
    display: none;
  }

  .nav-btn {
    margin-top: 5px;
    text-align: center;
  }

  .no-js .header {
    height: auto;
  }

  .no-js .header-inner {
    min-height: var(--header-height-compact);
    height: auto;
    padding-block: 8px;
    flex-wrap: wrap;
    gap: 8px 16px;
  }

  .no-js .nav {
    width: 100%;
    height: auto;
    margin-top: 4px;
    flex-basis: 100%;
    flex-wrap: wrap;
    gap: 0 16px;
  }

  .no-js .nav > a:not(.nav-btn) {
    padding-block: 10px;
  }

  .no-js .nav-btn {
    margin-top: 0;
  }

  .hero {
    min-height: calc(100svh - var(--header-height-compact));
    height: auto;
  }

  .hero-bg {
    background-image: url("../assets/mthatha-mobile-sharp.webp");
    background-position: center 50%;
  }

  .hero-shade {
    background: linear-gradient(
      180deg,
      rgba(11, 11, 12, 0.96) 0%,
      rgba(11, 11, 12, 0.75) 32%,
      rgba(11, 11, 12, 0.28) 64%,
      rgba(11, 11, 12, 0.76) 100%
    );
  }

  .hero-inner {
    display: block;
    min-height: calc(100svh - var(--header-height-compact));
    height: auto;
    padding-block: clamp(56px, 10vh, 72px) 36px;
  }

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

  .hero-copy > p {
    max-width: 470px;
    font-size: 15px;
  }

  .hero-tagline {
    margin-top: 12px;
    font-size: 9px;
    letter-spacing: 0.13em;
  }

  .hero-tagline span + span::before {
    margin-inline: 7px;
  }

  .actions {
    margin-top: 18px;
  }

  .hero-points {
    margin-top: 22px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px 18px;
  }

  .location-card {
    width: min(310px, 100%);
    margin: 22px 0 0 auto;
    padding: 13px 14px;
  }

  .section {
    padding-block: 72px;
  }

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

  .method-grid article {
    min-height: 0;
  }

  /* A connected journey is easier to scan than five full-width cards on a phone. */
  .method-grid {
    display: block;
    overflow: visible;
    border: 0;
    border-radius: 0;
  }

  .method-grid article {
    position: relative;
    min-height: 0;
    padding: 0 0 26px 56px;
    border: 0;
  }

  .method-grid article:not(:last-child)::after {
    position: absolute;
    z-index: 0;
    top: 40px;
    bottom: 0;
    left: 19px;
    width: 1px;
    background: linear-gradient(var(--gold), rgba(217, 164, 65, 0.22));
    content: "";
  }

  .method-grid article:last-child {
    padding-bottom: 0;
  }

  .method-grid article > span {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    display: grid;
    width: 40px;
    height: 40px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(217, 164, 65, 0.7);
    border-radius: 50%;
    background: var(--black);
    color: var(--gold);
    font-size: 11px;
  }

  .method-grid article:last-child span {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--ink-on-gold);
  }

  .method-grid h3 {
    margin: 3px 0 5px;
    font-size: 20px;
  }

  .method-grid p {
    font-size: 14px;
    line-height: 1.5;
  }

  .service-grid-lanes {
    gap: 14px;
  }

  .service-choice {
    align-items: flex-start;
    margin: -4px 0 24px;
    font-size: 14px;
  }

  .service-lane {
    min-height: 0;
    height: auto;
    padding: 22px 20px 20px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  }

  .service-lane .service-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 14px;
    border-radius: 12px;
    font-size: 19px;
  }

  .service-lane h3 {
    min-height: 0;
    margin-bottom: 9px;
    font-size: 24px;
  }

  .service-price-note {
    margin-bottom: 10px;
    font-size: 13px;
  }

  .service-best-for {
    margin-bottom: 12px;
    font-size: 14px;
  }

  .service-description {
    margin-bottom: 15px;
    font-size: 15px;
  }

  .service-includes {
    min-height: 0;
    margin-top: 2px;
    margin-bottom: 9px;
    font-size: 11px;
    letter-spacing: 0.13em;
  }

  .service-offers {
    margin-bottom: 2px;
  }

  .service-offers li {
    padding-left: 17px;
  }

  .service-details-cta {
    min-height: 50px;
    padding: 12px 14px;
    border-radius: 11px;
    font-size: 14px;
  }

  .quote-selection-grid {
    grid-template-columns: 1fr;
  }

  .service-dialog {
    width: 100%;
    max-height: min(84dvh, 760px);
    margin: auto 0 0;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 20px 20px 0 0;
  }

  .service-dialog-content {
    padding: 62px 20px 24px;
  }

  .service-dialog-content h3 {
    margin-right: 42px;
    font-size: 30px;
  }

  .service-dialog-close {
    top: 13px;
    right: 14px;
  }

  .service-featured,
  .service-featured:hover,
  .service-lane:hover {
    transform: none;
  }

  .it-support-pro {
    padding-block: 56px 58px;
  }

  .it-support-pro-head h2 {
    font-size: 34px;
  }

  .it-support-pro-card {
    padding: 22px;
  }

  .it-support-pro-index {
    margin-bottom: 26px;
  }

  .it-support-pro-footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .contact-box {
    gap: 24px;
    padding: 22px;
  }

  .contact form {
    grid-template-columns: 1fr;
  }

  .contact label:nth-child(3),
  .contact label:nth-child(4),
  .contact form > button,
  .contact form > .form-status,
  .contact form > .form-success {
    grid-column: 1;
  }

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

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

  .footer-brandline {
    max-width: 280px;
    line-height: 1.7;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom span {
    display: block;
    margin-top: 5px;
  }

  .wa {
    right: max(12px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
    width: 48px;
    height: 48px;
  }

  .wa svg {
    width: 23px;
    height: 23px;
  }

  .wa-prompt {
    right: calc(100% + 8px);
    max-width: min(172px, calc(100vw - 86px));
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 11px;
    line-height: 1.2;
    text-align: right;
    white-space: normal;
  }
}

/* Compact phones retain readable hero proof points without horizontal overflow. */
@media (max-width: 390px) {
  .hero h1 {
    font-size: 42px;
  }

  .hero-copy > p {
    font-size: 14px;
  }

  .hero-inner {
    padding-block: 42px 28px;
  }

  .hero-tagline {
    margin-top: 10px;
    font-size: 8px;
    letter-spacing: 0.11em;
  }

  .actions {
    margin-top: 16px;
  }

  .hero-points {
    margin-top: 20px;
    gap: 12px 16px;
  }

  .hero-points strong {
    font-size: 10px;
  }

  .hero-points small {
    font-size: 9px;
  }

  .btn {
    padding: 11px 14px;
  }
}

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

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

  .wa,
  .wa-prompt {
    transition: none;
  }
}
}
