/* ===================================================
   SakhySisa IT Solutions — style.css
   Design system: deep ink + signal blue/amber duotone,
   blueprint dot-grid texture, Space Grotesk display / DM Sans body /
   IBM Plex Mono for data, prices, labels and step numbers.
   =================================================== */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --ink: #060a13;
  --panel: rgba(255, 255, 255, 0.045);
  --panel-soft: rgba(255, 255, 255, 0.022);
  --blue: #3b8eff;
  --blue-dim: rgba(59, 142, 255, 0.14);
  --amber: #ffb454;
  --amber-dim: rgba(255, 180, 84, 0.14);
  --green: #34d399;
  --red: #fb7185;
  --text: #f3f1ea;
  --text-soft: #8b93a8;
  --text-faint: #5b6478;
  --border: rgba(59, 142, 255, 0.16);
  --border-strong: rgba(59, 142, 255, 0.36);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --radius-sm: 11px;
  --transition: 0.22s ease;
  --display: "Space Grotesk", "Segoe UI", Arial, sans-serif;
  --body: "DM Sans", "Segoe UI", Arial, sans-serif;
  --mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background-color: var(--ink);
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.05) 1px, transparent 1.6px),
    radial-gradient(ellipse 760px 520px at 88% -8%, rgba(59, 142, 255, 0.16), transparent 62%),
    radial-gradient(ellipse 620px 460px at -8% 102%, rgba(255, 180, 84, 0.09), transparent 62%);
  background-size: 28px 28px, auto, auto;
  background-repeat: repeat, no-repeat, no-repeat;
  color: var(--text);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.2px;
}

img { max-width: 100%; display: block; }
a { transition: color var(--transition); }

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* ===================================================
   NAVBAR
   =================================================== */
.navbar {
  padding: 14px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: rgba(6, 10, 19, 0.9);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand img {
  width: 124px;
  height: auto;
  object-fit: contain;
}

.brand-name,
.brand-copy h1 {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: var(--text);
}

.brand-copy p,
.brand p {
  color: var(--text-soft);
  font-size: 11px;
  margin-top: 2px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--text-soft);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.nav-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-action {
  border-radius: 999px !important;
  border: 1px solid var(--border-strong) !important;
  background: var(--blue-dim) !important;
  color: var(--blue) !important;
  font-weight: 700 !important;
}

.nav-action:hover {
  background: rgba(59, 142, 255, 0.22) !important;
  color: var(--text) !important;
}

/* ===================================================
   HERO / PAGE HEADER
   =================================================== */
.hero,
.page-header {
  position: relative;
  min-height: 480px;
  padding: 80px 7% 70px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-header {
  min-height: auto;
  padding: 56px 7% 40px;
}

.hero-glow {
  position: absolute;
  top: -110px;
  left: 50%;
  transform: translateX(-50%);
  width: 620px;
  height: 420px;
  background: radial-gradient(ellipse, rgba(59, 142, 255, 0.16) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  animation: fadeUp 0.7s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===================================================
   SCROLL REVEAL — applied/observed by assets/js/reveal.js
   =================================================== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 999px;
  background: var(--blue-dim);
  border: 1px solid var(--border-strong);
  color: var(--blue);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 22px;
  animation: fadeUp 0.5s ease both;
}

.hero h1,
.page-header h1 {
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.08;
  max-width: 820px;
  margin: 0 auto 18px;
  text-wrap: balance;
  animation: fadeUp 0.6s 0.1s ease both;
}

.gradient-text {
  background: linear-gradient(120deg, var(--blue), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  color: var(--text-soft);
  font-size: clamp(15px, 1.6vw, 17px);
  max-width: 640px;
  margin: 0 auto 28px;
  line-height: 1.7;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 42px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  animation: fadeUp 0.6s 0.4s ease both;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.stat strong {
  font-family: var(--mono);
  font-size: 21px;
  font-weight: 700;
  color: var(--blue);
}

.stat span {
  font-size: 11px;
  color: var(--text-soft);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ===================================================
   BUTTONS
   =================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 46px;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  border: none;
  font-family: var(--body);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.primary {
  background: linear-gradient(135deg, var(--blue), var(--amber));
  color: #06101f;
  box-shadow: 0 0 26px rgba(59, 142, 255, 0.3);
}

.primary:hover {
  box-shadow: 0 0 38px rgba(59, 142, 255, 0.48);
}

.secondary {
  border: 1px solid var(--border-strong);
  color: var(--blue);
  background: var(--blue-dim);
}

.secondary:hover {
  background: rgba(59, 142, 255, 0.2);
  color: var(--text);
}

button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
}

/* ===================================================
   PROMO BANNER
   =================================================== */
.promo-banner {
  text-align: center;
  padding: 14px 7%;
  background: linear-gradient(90deg, var(--blue) 0%, #eaf2ff 48%, var(--amber) 100%);
  color: #06101f;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2px;
}

/* ===================================================
   SECTIONS — General
   =================================================== */
.features,
.highlights,
.section-invite,
.process,
.cta-strip {
  padding: 72px 7%;
  text-align: center;
}

.section-label {
  display: inline-block;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  margin-bottom: 14px;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--blue-dim);
  border: 1px solid var(--border);
}

.features h2,
.highlights h2,
.section-invite h2,
.process h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  margin-bottom: 12px;
  letter-spacing: -0.6px;
}

.section-sub {
  color: var(--text-soft);
  max-width: 620px;
  margin: 0 auto 44px;
  font-size: 15px;
  line-height: 1.7;
}

.section-invite p {
  color: var(--text-soft);
  max-width: 600px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

/* ===================================================
   FEATURE GRID (Home)
   =================================================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 10px;
}

.card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--panel), var(--panel-soft));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-decoration: none;
  color: var(--text);
  text-align: left;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow);
}

.card::before {
  content: "";
  position: absolute;
  top: 0; left: 20px; right: 20px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--amber));
  border-radius: 0 0 2px 2px;
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--border-strong);
  box-shadow: 0 0 40px rgba(59, 142, 255, 0.16);
}

.card-icon {
  font-size: 26px;
  margin-bottom: 12px;
}

.card strong {
  display: block;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.2px;
  margin-bottom: 8px;
}

.card p {
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.6;
}

/* ===================================================
   VALUE GRID (Why Us)
   =================================================== */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 10px;
}

.value-card {
  background: linear-gradient(160deg, var(--panel), var(--panel-soft));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: left;
  transition: transform var(--transition), border-color var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}

.value-icon {
  font-size: 30px;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.value-card p {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.7;
}

/* ===================================================
   PROCESS
   =================================================== */
.process-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
}

.process-step {
  background: var(--panel-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  flex: 1;
  min-width: 140px;
  max-width: 180px;
  transition: border-color var(--transition), transform var(--transition);
}

.process-step:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}

.step-num {
  font-family: var(--mono);
  font-size: 24px;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 10px;
}

.process-step strong {
  display: block;
  font-family: var(--display);
  font-size: 13px;
  margin-bottom: 6px;
}

.process-step p {
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.5;
}

.process-connector {
  color: var(--blue);
  font-size: 18px;
  font-weight: 700;
  padding-top: 38px;
  flex-shrink: 0;
  opacity: 0.45;
}

/* ===================================================
   CTA STRIP
   =================================================== */
.cta-strip {
  background: linear-gradient(135deg, rgba(59, 142, 255, 0.08), rgba(255, 180, 84, 0.06));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 12px;
}

.cta-content p {
  color: var(--text-soft);
  margin-bottom: 24px;
}

/* ===================================================
   CATEGORY FILTER
   =================================================== */
.category-filter {
  padding: 20px 7%;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  background: rgba(8, 13, 24, 0.55);
  border-bottom: 1px solid var(--border);
}

.category-filter .btn {
  padding: 10px 16px;
  font-size: 12px;
  border-radius: 999px;
  min-height: 40px;
}

.filter-active {
  background: linear-gradient(135deg, rgba(59, 142, 255, 0.22), rgba(255, 180, 84, 0.16)) !important;
  color: var(--text) !important;
  border-color: var(--border-strong) !important;
}

/* ===================================================
   SERVICES GRID
   =================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: 44px 7%;
  align-items: stretch;
}

.service-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--panel), var(--panel-soft));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 20px; right: 20px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--amber));
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-strong);
  box-shadow: 0 0 42px rgba(59, 142, 255, 0.15);
}

.category {
  display: inline-block;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--blue-dim);
  border: 1px solid var(--border);
}

.service-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.service-card > p {
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.65;
  flex-grow: 1;
}

.price-row {
  margin: 20px 0 10px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.promo-price {
  font-family: var(--mono);
  color: var(--blue);
  font-size: 27px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.old-price {
  font-family: var(--mono);
  color: var(--text-faint);
  text-decoration: line-through;
  font-size: 13px;
}

.deposit {
  font-size: 13px;
  font-weight: 700;
  color: var(--text) !important;
  margin-bottom: 6px;
}

.slots {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--amber) !important;
  margin: 8px 0 18px;
}

/* ===================================================
   ADMIN — SUMMARY GRID & QUOTES LIST
   =================================================== */
.summary-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  padding: 0 7% 40px;
}

.summary-card {
  background: linear-gradient(160deg, var(--panel), var(--panel-soft));
  border: 1px solid var(--border);
  border-top: 2px solid var(--blue);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
}

.summary-card:hover {
  transform: translateY(-3px);
}

.summary-card h2 {
  font-family: var(--mono);
  font-size: 30px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.summary-card p {
  font-size: 11px;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
}

/* Semantic accent per metric: new = amber (needs attention), completed = green (done) */
.summary-card:nth-child(2) { border-top-color: var(--amber); }
.summary-card:nth-child(2) h2 { color: var(--amber); }
.summary-card:nth-child(5) { border-top-color: var(--green); }
.summary-card:nth-child(5) h2 { color: var(--green); }

.quotes-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0 7% 60px;
}

.quotes-list:empty::after {
  content: "No quote requests yet.";
  display: block;
  text-align: center;
  color: var(--text-faint);
  font-size: 14px;
  padding: 40px 0;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
}

/* Generic styling for quote entries rendered by admin-quotes.js.
   If the script uses different class names than .quote-card,
   share that file and these rules can be matched up exactly. */
.quote-card,
.quote-item {
  background: linear-gradient(160deg, var(--panel), var(--panel-soft));
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.quote-card:hover,
.quote-item:hover {
  border-color: var(--border-strong);
}

/* ===================================================
   FOOTER
   =================================================== */
.site-footer {
  background: rgba(5, 8, 16, 0.98);
  border-top: 1px solid var(--border);
  padding: 60px 7% 0;
  margin-top: 20px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-brand img {
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.7;
  max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--blue);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 13px;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--text); }

.footer-contact p {
  color: var(--text-soft);
  font-size: 13px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact a {
  color: var(--text-soft);
  text-decoration: none;
}

.footer-contact a:hover { color: var(--blue); }

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-family: var(--mono);
  color: var(--text-faint);
  font-size: 11px;
}

/* ===================================================
   MOBILE — Responsive
   =================================================== */
@media (max-width: 900px) {
  .feature-grid,
  .value-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .summary-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .process-connector { display: none; }
  .process-grid { gap: 12px; }
  .process-step { max-width: none; }
}

@media (max-width: 640px) {
  /* Hamburger */
  .hamburger { display: flex; }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 12px 0 8px;
    gap: 2px;
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    width: 100%;
    padding: 10px 14px;
    font-size: 14px;
  }

  .navbar {
    flex-wrap: wrap;
    padding: 12px 16px;
  }

  .brand img { width: 104px; }

  /* Hero */
  .hero, .page-header {
    min-height: auto;
    padding: 48px 6% 40px;
  }

  .hero h1,
  .page-header h1 {
    font-size: clamp(32px, 10vw, 44px);
    letter-spacing: -1px;
    max-width: 360px;
  }

  .hero-subtitle {
    font-size: 15px;
    max-width: 340px;
  }

  .hero-stats {
    gap: 14px;
    padding-top: 22px;
    margin-top: 28px;
  }

  .hero-stats .stat strong { font-size: 17px; }

  /* Grids */
  .feature-grid,
  .value-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .summary-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid { padding: 32px 6%; }

  /* Buttons */
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 300px; text-align: center; }

  /* Process */
  .process-grid { flex-direction: column; }
  .process-step { max-width: none; width: 100%; }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand { grid-column: auto; }

  /* Section padding */
  .features,
  .highlights,
  .section-invite,
  .process,
  .cta-strip { padding: 50px 6%; }

  .promo-banner {
    font-size: 13px;
    line-height: 1.4;
    padding: 14px 6%;
  }

  .category-filter {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 14px 6%;
    -webkit-overflow-scrolling: touch;
  }

  .category-filter .btn {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .service-card,
  .card,
  .value-card,
  .summary-card {
    padding: 22px;
  }

  .promo-price { font-size: 24px; }
}

/* =============================================================
   FIX: Sticky navbar clipping section headings on scroll
   =============================================================
   Problem: .navbar is position:sticky + top:0, which keeps it
   visible while scrolling, but does NOT reserve space for it.
   Combined with html { scroll-behavior: smooth } and anchor
   navigation (nav-links a href="#section"), the browser scrolls
   the target element flush to the top of the viewport — directly
   underneath the navbar — clipping headings like "Expert IT
   Solutions For Your Business" exactly as seen on mobile.

   Fix: give every scroll-target section/element scroll-margin-top
   equal to the navbar's real height, so the browser stops short
   of the navbar instead of sliding underneath it. This affects
   only scroll position — no layout, color, or spacing changes.

   Navbar height reference:
   - Desktop: ~72px (logo 124px wide, ~14px vertical padding)
   - Mobile (<640px): ~64px (logo 104px wide, ~12px vertical padding)
   Adjust the values below if your navbar is taller/shorter.
   ============================================================= */

/* Apply scroll offset to all common anchor/section targets.
   Add any additional section IDs/classes you jump to via nav links. */
section[id],
.hero,
.page-header,
.features,
.highlights,
.section-invite,
.process,
.cta-strip,
.services-grid,
.category-filter,
[id] {
  scroll-margin-top: 84px;
}

/* Mobile navbar is shorter, so reduce the offset to match */
@media (max-width: 640px) {
  section[id],
  .hero,
  .page-header,
  .features,
  .highlights,
  .section-invite,
  .process,
  .cta-strip,
  .services-grid,
  .category-filter,
  [id] {
    scroll-margin-top: 72px;
  }
}

/* Belt-and-suspenders: if any section is jumped to directly
   (not just via in-page anchors) and still tucks under the
   navbar on first paint, this guarantees a safe top gap. */
.page-header:target,
.hero:target,
[id]:target {
  padding-top: 12px;
}