/* ── Brand fonts (Colour Direction 3) ───────────────── */
@font-face {
  font-family: 'Montserrat';
  src: url("../Assets/Fonts/Primary Font/Montserrat-Regular.5e077c15f6e1.ttf") format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url("../Assets/Fonts/Primary Font/Montserrat-Medium.bdb7ba651b7b.ttf") format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url("../Assets/Fonts/Primary Font/Montserrat-SemiBold.cc10461cb5e0.ttf") format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url("../Assets/Fonts/Primary Font/Montserrat-Bold.ed86af2ed5bb.ttf") format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url("../Assets/Fonts/Primary Font/Montserrat-ExtraBold.9e07cac927a9.ttf") format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'FearRobot';
  src: url("../Assets/Fonts/Logo Font/FearRobot-Regular.1395d60a2ba5.otf") format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Mhare Consulting — Colour Direction 3 */
  --sun-yellow: #f9ae1f;
  --magenta: #f7357b;
  --digital-violet: #5041d9;
  --space-blue: #0b0146;
  --brand-gradient: linear-gradient(
    125deg,
    var(--sun-yellow) 0%,
    var(--magenta) 38%,
    var(--digital-violet) 68%,
    var(--space-blue) 100%
  );
  --brand-gradient-soft: linear-gradient(
    135deg,
    rgba(249, 174, 31, 0.14),
    rgba(247, 53, 123, 0.1),
    rgba(80, 65, 217, 0.12)
  );
  --ink: var(--space-blue);
  --surface: #ffffff;
  --surface-subtle: #fafafa;
  --surface-dark: var(--space-blue);
  --text: var(--ink);
  --muted: #5c5678;
  --muted-hi: #3d3760;
  --border: rgba(11, 1, 70, 0.08);
  --border-strong: rgba(11, 1, 70, 0.14);
  --accent: var(--digital-violet);
  --accent2: var(--magenta);
  --pill-bg: rgba(80, 65, 217, 0.08);
  --pill-border: rgba(80, 65, 217, 0.22);
  --bg: var(--surface);
  --bg2: var(--surface-subtle);
  --bg3: #f4f4f8;
  --bg4: #e8e6f0;
  --green:  #22c55e;
  --red:    #ef4444;
  --amber:  #f59e0b;
  --radius: 12px;
  --font: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-logo: 'FearRobot', var(--font-display);
  --nav-h: 72px;
  --hero-gradient-image: url("../Assets/Backgrounds/Mhare Consulting_Gradient 1.12aaae00fe04.jpg");
}

html { scroll-behavior: smooth; }

body {
  background: var(--surface);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--digital-violet);
  color: #fff;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Layout helpers ───────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 96px 0; }

/* ── Buttons (Mhare Consulting) ─────────────────── */
.btn-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  background: var(--brand-gradient);
  color: #fff !important;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
  box-shadow: 0 10px 40px rgba(80, 65, 217, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

a.btn-gradient { text-decoration: none; }

.btn-gradient:hover {
  transform: scale(1.03);
  box-shadow: 0 14px 48px rgba(247, 53, 123, 0.32);
}

.btn-gradient--lg {
  padding: 16px 36px;
  font-size: 11px;
  letter-spacing: 0.32em;
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0% 100%);
}

.btn-solid-dark {
  background: var(--space-blue) !important;
  box-shadow: 0 12px 32px rgba(11, 1, 70, 0.28);
}

.btn-solid-dark:hover {
  background: #1a0a5c !important;
  box-shadow: 0 16px 40px rgba(11, 1, 70, 0.35);
}

/* ── Nav ──────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-h);
  gap: 24px;
}

.logo.logo-link {
  flex-direction: row;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.08;
}

.logo-mhare {
  display: none;
}

.logo .subbrand,
.subbrand {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-top: 0;
  font-family: var(--font-logo);
}

.nav-logo-wrap {
  position: relative;
  flex-shrink: 0;
}

.nav-logo-wrap::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(80, 65, 217, 0.25);
  transform: rotate(45deg);
  pointer-events: none;
  transition: transform 0.6s ease;
}

.logo-link:hover .nav-logo-wrap::after {
  transform: rotate(90deg);
}

.logo-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  position: relative;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #a1a1aa;
  padding: 8px 0;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  opacity: 0;
  background: var(--brand-gradient);
  transition: width 0.35s ease, opacity 0.2s;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--ink);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  width: 100%;
  opacity: 1;
}

.nav-links .external::after {
  content: ' ↗';
  font-size: 10px;
  letter-spacing: 0;
}

.nav-cta {
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .nav-cta { display: none; }
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 9px; letter-spacing: 0.16em; }
}

/* ── Hero (Colour Direction 3 + Gradient 1) ────────── */
.hero {
  position: relative;
  padding: 96px 0 88px;
  overflow: hidden;
  text-align: center;
  background: var(--surface);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.92) 0%,
      rgba(255, 255, 255, 0.78) 45%,
      rgba(255, 255, 255, 0.88) 100%
    ),
    var(--hero-gradient-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}

.hero-grid {
  display: none;
}

.hero-deco-line {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.hero-deco-line--a {
  top: -10%;
  left: 18%;
  width: 2px;
  height: 150%;
  background: var(--brand-gradient);
  transform: rotate(25deg);
  opacity: 0.75;
  box-shadow: 0 0 14px rgba(247, 53, 123, 0.3);
}

.hero-deco-line--b {
  top: 48%;
  right: -8%;
  width: 1.5px;
  height: 85%;
  background: var(--brand-gradient);
  transform: rotate(-75deg);
  opacity: 0.5;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow svg {
  color: var(--magenta);
  flex-shrink: 0;
}

.hero h1,
.hero .hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.98;
  color: var(--ink);
  max-width: 920px;
  margin: 0 auto 24px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.hero .hero-title .hero-gradient {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p,
.hero .hero-lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.hero-tagline {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 8px;
  position: relative;
  z-index: 1;
}

.scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  animation: bounce 2.4s ease-in-out infinite;
}

.scroll-hint svg { opacity: 0.45; }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ── Section Labels ───────────────────────────────── */
.section-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--digital-violet);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-title .section-gradient {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.75;
}

/* ── Before-Products Image Divider ───────────────── */
.img-divider {
  position: relative;
  height: 340px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-divider-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 60%;
  background-attachment: fixed;
  filter: brightness(0.55) saturate(0.9);
  transition: filter 0.3s;
}

.img-divider-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(9,9,11,0.7) 0%,
    rgba(9,9,11,0.2) 40%,
    rgba(9,9,11,0.2) 60%,
    rgba(9,9,11,0.85) 100%
  );
}

.img-divider-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
}

.img-divider-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
}

.img-divider-headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.2vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: #fff;
  max-width: 720px;
  text-transform: uppercase;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
}

/* ── Nav Logo Image ───────────────────────────────── */
.nav-logo-img {
  height: 36px;
  width: auto;
  max-width: min(200px, 42vw);
  display: block;
  object-fit: contain;
}

/* ── Hero logo mark ───────────────────────────────── */
.hero-logomark {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.hero-logomark img {
  height: 48px;
  width: auto;
  max-width: min(280px, 85vw);
  object-fit: contain;
}

@media (max-width: 520px) {
  .nav-logo-img { height: 28px; }
  .logo .subbrand,
  .subbrand { font-size: 9px; letter-spacing: 0.16em; }
  .hero-logomark img { height: 40px; }
}

/* ── Redesigned Stats / About Numbers ─────────────── */
.about-numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 0;
}

.about-num-item {
  padding: 28px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
}

.about-num-item:last-child { border-right: none; }

.about-num-val {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 6px;
}

.about-num-lbl {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.4;
}

.about-num-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 3px;
}

/* ── Product Page Header ──────────────────────────── */
.product-page-header {
  position: relative;
  padding: 48px 0 40px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-subtle);
  overflow: hidden;
}

.product-page-header--hero {
  min-height: 340px;
  display: flex;
  flex-direction: column;
}

.product-page-header--hero .product-page-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.42) saturate(0.75);
}

.product-page-header--hero .product-page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.88) 45%, rgba(255, 255, 255, 0.55) 100%);
}

.product-page-header--hero > .container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.product-page-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
}

.product-page-header-overlay {
  position: absolute;
  inset: 0;
}

.product-page-header > .container {
  position: relative;
  z-index: 1;
}

.product-page-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
  transition: color 0.2s;
}

.product-page-back:hover {
  color: var(--digital-violet);
}

.product-page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--digital-violet);
  margin-bottom: 18px;
}

.product-page-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
  max-width: 820px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.product-page-title .hero-gradient {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.product-page-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.78;
  margin-bottom: 0;
}

/* ── Landing Page Product Cards ───────────────────── */
.products-landing {
  padding: 88px 0 100px;
  background: var(--surface);
}

.products-landing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.product-landing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.product-landing-card:hover {
  box-shadow: 0 32px 80px rgba(80, 65, 217, 0.14);
  transform: translateY(-4px);
}

.product-landing-mockup {
  padding: 28px 28px 0;
  background: var(--brand-gradient-soft);
}

.product-landing-body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-landing-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--digital-violet);
  margin-bottom: 14px;
  width: fit-content;
}

.product-landing-name {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.product-landing-desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
  flex: 1;
}

.product-landing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.product-landing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--muted-hi);
  line-height: 1.5;
}

.product-landing-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-gradient);
  margin-top: 6px;
  flex-shrink: 0;
}

.product-landing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--brand-gradient);
  color: #fff !important;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  width: fit-content;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0% 100%);
  box-shadow: 0 12px 32px rgba(80, 65, 217, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease, gap 0.2s;
}

.product-landing-cta:hover {
  transform: scale(1.02);
  gap: 14px;
  box-shadow: 0 16px 40px rgba(247, 53, 123, 0.28);
}

.product-landing-cta svg {
  flex-shrink: 0;
}

/* ── Products Grid (legacy, kept for safety) ──────── */
#products { background: var(--bg); }

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}

.product-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  transition: border-color 0.3s, transform 0.3s;
}

.product-card:hover {
  border-color: var(--pill-border);
  transform: translateY(-2px);
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--pill-bg);
  border-radius: 6px;
  padding: 4px 10px;
  margin-bottom: 20px;
}

.product-name {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.6px;
  color: var(--ink);
  margin-bottom: 8px;
}

.product-tagline {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 12px;
}

.pill svg { color: var(--accent); flex-shrink: 0; }

/* ── Deep-Dive Rows ───────────────────────────────── */
.deep-dive {
  background: var(--surface-subtle);
}

.deep-dive-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}

.deep-dive-row:last-child { border-bottom: none; }
.deep-dive-row.flip { direction: rtl; }
.deep-dive-row.flip > * { direction: ltr; }

.deep-dive-visual {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  /* Dark UI mocks inside — scoped tokens */
  --text: #f4f4f5;
  --muted: #94a3b8;
  --muted-hi: #e2e8f0;
  --border: rgba(255, 255, 255, 0.12);
  --bg3: #1e293b;
  --bg4: #0f172a;
  --accent: #c084fc;
}

.deep-dive-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.deep-dive-text .section-label {
  color: var(--digital-violet);
}

.deep-dive-text .section-title {
  font-size: clamp(1.5rem, 2.4vw, 1.85rem);
  margin-bottom: 14px;
  color: var(--ink);
}

.deep-dive-text p {
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.8;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

.feature-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--digital-violet);
  margin-top: 7px;
  flex-shrink: 0;
}

/* ── Studio strip (home) ──────────────────────────── */
.studio-strip {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.studio-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 32px;
  text-align: center;
}

.studio-strip-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--ink);
}

.studio-strip-pipe {
  color: var(--border-strong);
  font-weight: 300;
}

.studio-strip a {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--digital-violet);
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.studio-strip a:hover {
  color: var(--magenta);
  border-bottom-color: var(--digital-violet);
}

/* ── About ────────────────────────────────────────── */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-text .section-title {
  color: #fff;
}

.about-text p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-text .section-label {
  color: rgba(249, 174, 31, 0.95);
}

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 12px;
  padding-bottom: 4px;
  border-bottom: 2px solid rgba(247, 53, 123, 0.5);
  transition: gap 0.2s, border-color 0.2s;
}

.about-link:hover {
  gap: 12px;
  border-bottom-color: var(--digital-violet);
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-content: start;
}

.stat-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.3s;
}

.stat-card:hover { border-color: var(--pill-border); }

.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* ── Product demo video (myTrack) ─────────────────── */
.product-video-section {
  padding: 72px 0 80px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.product-video-head {
  max-width: 640px;
  margin: 0 auto 36px;
  text-align: center;
}

.product-video-frame {
  max-width: 960px;
  margin: 0 auto;
  padding: 4px;
  background: var(--brand-gradient);
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
  clip-path: polygon(2% 0, 100% 0, 98% 100%, 0% 100%);
}

.product-video-inner {
  background: #0a0a0f;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.product-video-inner video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  vertical-align: middle;
}

.product-slidepack-inner iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── Product page — gradient hero variants ───────── */
.product-page-header--track .product-page-header-bg {
  background:
    radial-gradient(70% 80% at 85% 8%, rgba(225, 38, 107, 0.34), transparent 60%),
    radial-gradient(80% 90% at 8% 100%, rgba(72, 39, 204, 0.28), transparent 65%);
  filter: none;
}

.product-page-header--routes .product-page-header-bg {
  background:
    radial-gradient(70% 80% at 85% 8%, rgba(255, 157, 0, 0.30), transparent 60%),
    radial-gradient(80% 90% at 8% 100%, rgba(72, 39, 204, 0.26), transparent 65%);
  filter: none;
}

.product-page-header--kasi .product-page-header-bg {
  background:
    radial-gradient(70% 80% at 85% 8%, rgba(225, 38, 107, 0.30), transparent 60%),
    radial-gradient(80% 90% at 8% 100%, rgba(72, 39, 204, 0.34), transparent 65%);
  filter: none;
}

.product-page-header--wms .product-page-header-bg {
  background:
    radial-gradient(70% 80% at 85% 8%, rgba(22, 200, 182, 0.30), transparent 60%),
    radial-gradient(80% 90% at 8% 100%, rgba(59, 130, 246, 0.28), transparent 65%);
  filter: none;
}

.product-page-header--track .product-page-header-overlay,
.product-page-header--routes .product-page-header-overlay,
.product-page-header--wms .product-page-header-overlay,
.product-page-header--kasi .product-page-header-overlay {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.72) 50%, rgba(255, 255, 255, 0.4) 100%);
}

/* ── Product page — feature card grid ────────────── */
.product-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.product-feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px 24px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.product-feature:hover {
  border-color: rgba(72, 39, 204, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(72, 39, 204, 0.1);
}

.product-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--brand-gradient);
  margin-bottom: 16px;
}

.product-feature h3 {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 8px;
}

.product-feature p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
}

@media (max-width: 900px) {
  .product-features { grid-template-columns: 1fr; }
}

.product-video-caption {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-top: 20px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.product-video-caption a {
  color: var(--digital-violet);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-video-caption a:hover {
  color: var(--magenta);
}

/* ── Footer ───────────────────────────────────────── */
footer {
  position: relative;
  background: var(--space-blue);
  color: #fafafa;
  border-top: none;
  padding: 56px 0 36px;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--brand-gradient);
  opacity: 0.45;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand-mark {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-brand-mark .subbrand {
  margin-top: 0;
  font-size: 20px;
  letter-spacing: 0.18em;
}

.footer-brand p {
  font-size: 13px;
  color: #a1a1aa;
  line-height: 1.65;
  max-width: 280px;
  font-style: italic;
  border-left: 2px solid rgba(249, 174, 31, 0.35);
  padding-left: 16px;
}

.footer-col h4 {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a {
  font-size: 13px;
  font-weight: 600;
  color: #a1a1aa;
  letter-spacing: 0.06em;
  transition: color 0.2s, transform 0.2s;
}

.footer-col ul a:hover {
  color: var(--sun-yellow);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #52525b;
}

/* ── Products Intro ───────────────────────────────── */
.products-intro { padding-bottom: 0; }

/* ── Product Split Sections ───────────────────────── */
.product-split-section {
  padding: 80px 0;
  overflow: hidden;
  background: var(--surface);
}

.product-split-section--alt {
  background: var(--surface-subtle);
}

.product-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.split-content { display: flex; flex-direction: column; }

.split-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--digital-violet);
  margin-bottom: 22px;
  width: fit-content;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50%       { opacity: 0.8; box-shadow: 0 0 0 4px rgba(34,197,94,0); }
}

.split-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 18px;
  text-transform: uppercase;
}

.split-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.78;
  margin-bottom: 32px;
}

.split-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.split-features li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 14px;
  color: var(--muted-hi);
  line-height: 1.5;
}

.feat-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(80, 65, 217, 0.1);
  border: 1px solid rgba(80, 65, 217, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--digital-violet);
}

/* ── Browser Frame ─────────────────────────────────── */
.split-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.browser-frame {
  width: 100%;
  max-width: 560px;
  border-radius: 12px;
  overflow: hidden;
  background: #22253a;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.07),
    0 40px 100px rgba(0,0,0,0.65),
    0 8px 24px rgba(0,0,0,0.4);
  transform: perspective(1400px) rotateY(-7deg) rotateX(2deg);
  transition: transform 0.5s cubic-bezier(0.23,1,0.32,1);
}

.product-split--flip .browser-frame {
  transform: perspective(1400px) rotateY(7deg) rotateX(2deg);
}

.browser-frame:hover { transform: perspective(1400px) rotateY(-2deg) rotateX(0.5deg) !important; }
.product-split--flip .browser-frame:hover { transform: perspective(1400px) rotateY(2deg) rotateX(0.5deg) !important; }

.browser-chrome {
  background: #1a1c2a;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.bc-dots { display: flex; gap: 5px; flex-shrink: 0; }
.bc-dot { width: 10px; height: 10px; border-radius: 50%; }
.bc-dot--red    { background: #ff5f56; }
.bc-dot--yellow { background: #ffbd2e; }
.bc-dot--green  { background: #27c93f; }

.bc-url {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border-radius: 5px;
  padding: 4px 10px;
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

/* ── App Shell ─────────────────────────────────────── */
.app-shell { background: #F7F8FB; display: flex; flex-direction: column; }

.app-topbar {
  height: 40px;
  background: #fff;
  border-bottom: 1px solid #E5E7EB;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 16px;
  flex-shrink: 0;
}

.app-brand { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }

.app-brand-icon {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: var(--brand-gradient);
}

.app-brand-name { font-size: 11px; font-weight: 700; color: #0A0A0A; letter-spacing: -0.3px; font-family: var(--font); }
.app-brand-name b { font-weight: 800; }

.app-topnav { display: flex; gap: 2px; }
.app-topnav-item { font-size: 9.5px; font-weight: 500; color: #6B7280; padding: 4px 8px; border-radius: 5px; font-family: var(--font); }
.app-topnav-item--active { background: #EEF0FB; color: #0A0A0A; font-weight: 600; }
.app-topnav-item--live { color: #22C55E; font-weight: 700; }

.app-body { display: flex; flex: 1; min-height: 300px; }

.app-sidebar {
  width: 44px;
  background: #fff;
  border-right: 1px solid #F0F1F5;
  flex-shrink: 0;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: center;
}

.app-sidebar-item {
  width: 30px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B7280;
}

.app-sidebar-item--active {
  background: linear-gradient(135deg, rgba(249,174,31,0.15), rgba(80,65,217,0.15));
  color: var(--digital-violet);
}

.app-main { flex: 1; padding: 10px; display: flex; flex-direction: column; gap: 10px; overflow: hidden; }

/* Stat strip */
.app-stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 7px; }

.app-stat {
  background: #fff;
  border-radius: 9px;
  padding: 9px 8px;
  box-shadow: 0 1px 3px rgba(17,24,39,0.06);
  position: relative;
  overflow: hidden;
}

.app-stat::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--brand-gradient);
}

.app-stat-val { font-size: 15px; font-weight: 800; color: #0A0A0A; line-height: 1; margin-bottom: 3px; font-family: var(--font); }
.app-stat-lbl { font-size: 7.5px; font-weight: 700; color: #6B7280; text-transform: uppercase; letter-spacing: 0.05em; font-family: var(--font); }
.app-stat-sub { font-size: 7px; color: #9CA3AF; margin-top: 2px; font-family: var(--font); }
.app-stat--alert .app-stat-val { color: #DC2626; }
.app-stat--online .app-stat-val { color: #10B981; }

/* Map area */
.app-map {
  flex: 1;
  border-radius: 9px;
  overflow: hidden;
  position: relative;
  background-color: #e8e4db;
  background-image:
    linear-gradient(rgba(255,255,255,0.45) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.45) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.15) 1px, transparent 1px);
  background-size: 36px 36px, 36px 36px, 9px 9px, 9px 9px;
  min-height: 130px;
}

.map-road-h { position: absolute; height: 5px; background: rgba(255,255,255,0.75); border-radius: 3px; }
.map-road-v { position: absolute; width: 5px; background: rgba(255,255,255,0.75); border-radius: 3px; }

.map-vehicle {
  position: absolute;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--digital-violet);
  border: 2px solid #fff;
  box-shadow: 0 0 0 3px rgba(80,65,217,0.28), 0 2px 4px rgba(0,0,0,0.2);
  transform: translate(-50%,-50%);
}

.map-vehicle--amber { background: #F59E0B; box-shadow: 0 0 0 3px rgba(245,158,11,0.25), 0 2px 4px rgba(0,0,0,0.2); }
.map-vehicle--offline { background: #9CA3AF; box-shadow: 0 0 0 3px rgba(156,163,175,0.25), 0 2px 4px rgba(0,0,0,0.2); }

.map-geofence {
  position: absolute;
  border: 2px dashed rgba(80,65,217,0.5);
  background: rgba(80,65,217,0.07);
  border-radius: 50%;
  transform: translate(-50%,-50%);
}

.map-overlay-card {
  position: absolute;
  top: 8px; right: 8px;
  background: rgba(255,255,255,0.96);
  border-radius: 8px;
  padding: 7px 9px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  min-width: 96px;
}

.moc-row { display: flex; align-items: center; gap: 5px; padding: 2px 0; }
.moc-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.moc-label { font-size: 8px; font-weight: 600; color: #0A0A0A; font-family: var(--font); flex: 1; }
.moc-badge { font-size: 7px; font-weight: 700; color: #6B7280; background: #F3F4F6; border-radius: 3px; padding: 1px 4px; font-family: var(--font); }

/* ── myRoutes Gantt Dispatch View ──────────────────── */
.gantt-planbar {
  background: #fff;
  border-bottom: 1px solid #E5E7EB;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.gantt-breadcrumb { display: flex; align-items: center; gap: 4px; }
.gantt-bc-dim { font-size: 7.5px; font-weight: 600; color: #9CA3AF; font-family: var(--font); text-transform: uppercase; letter-spacing: 0.05em; }
.gantt-bc-sep { font-size: 7.5px; color: #D1D5DB; }
.gantt-bc-title { font-size: 9px; font-weight: 800; color: #0A0A0A; font-family: var(--font); }

.gantt-actions { display: flex; gap: 4px; }
.gantt-btn { font-size: 7px; font-weight: 700; border-radius: 100px; padding: 3px 7px; font-family: var(--font); white-space: nowrap; }
.gantt-btn--blue   { background: var(--brand-gradient); color: #fff; }
.gantt-btn--green  { background: #10B981; color: #fff; }
.gantt-btn--yellow { background: #F59E0B; color: #fff; }

.gantt-body { display: flex; flex: 1; overflow: hidden; min-height: 260px; }

/* Fleet sidebar */
.gantt-fleet {
  width: 130px;
  flex-shrink: 0;
  background: #fff;
  border-right: 1px solid #F0F1F5;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  overflow: hidden;
}

.gantt-fleet-label { font-size: 7.5px; font-weight: 700; color: #9CA3AF; text-transform: uppercase; letter-spacing: 0.07em; font-family: var(--font); }
.gantt-fleet-count { font-weight: 400; }

.gantt-fleet-tabs { display: flex; gap: 3px; }
.gftab { font-size: 7.5px; font-weight: 600; padding: 2px 7px; border-radius: 4px; color: #6B7280; font-family: var(--font); background: #F3F4F6; }
.gftab--active { background: linear-gradient(135deg,rgba(249,174,31,0.15),rgba(80,65,217,0.15)); color: var(--digital-violet); }

.gantt-vehicle {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  padding: 6px 5px;
  border-radius: 6px;
  background: #F9FAFB;
  border: 1px solid #F0F1F5;
}

.gantt-vehicle--dim { opacity: 0.45; }
.gv-status-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; margin-top: 2px; }
.gv-text { flex: 1; min-width: 0; }
.gv-reg { font-size: 8.5px; font-weight: 700; color: #0A0A0A; font-family: var(--font); }
.gv-sub { font-size: 7px; color: #6B7280; font-family: var(--font); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gv-badge { font-size: 6.5px; font-weight: 700; background: linear-gradient(135deg,rgba(249,174,31,0.12),rgba(80,65,217,0.12)); color: var(--digital-violet); border-radius: 3px; padding: 1px 4px; white-space: nowrap; flex-shrink: 0; font-family: var(--font); }

/* Timeline */
.gantt-timeline {
  flex: 1;
  background: #F7F8FB;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-right: 1px solid #F0F1F5;
}

.gantt-time-header {
  display: flex;
  border-bottom: 1px solid #E5E7EB;
  background: #fff;
  padding: 5px 0;
  flex-shrink: 0;
}

.gantt-time-header span {
  flex: 1;
  text-align: center;
  font-size: 7px;
  font-weight: 600;
  color: #9CA3AF;
  font-family: var(--font);
}

.gantt-track-area {
  flex: 1;
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.gantt-track-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent calc(20% - 1px),
    #E5E7EB calc(20% - 1px),
    #E5E7EB 20%
  );
  pointer-events: none;
  opacity: 0.5;
}

.gantt-track { padding: 0 6px; position: relative; z-index: 1; }
.gantt-track--empty { opacity: 0.3; }

.gantt-bar {
  background: #16a34a;
  border-radius: 4px;
  padding: 5px 8px;
  font-size: 7.5px;
  font-weight: 700;
  color: #fff;
  font-family: var(--font);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 68%;
  box-shadow: 0 1px 3px rgba(22,163,74,0.3);
}

/* Trip details panel */
.gantt-detail {
  width: 185px;
  flex-shrink: 0;
  background: #fff;
  border-left: 1px solid #F0F1F5;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.gd-header {
  padding: 8px 10px 6px;
  border-bottom: 1px solid #F0F1F5;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-shrink: 0;
}

.gd-trip-id { font-size: 8.5px; font-weight: 800; color: #0A0A0A; font-family: var(--font); }
.gd-trip-meta { font-size: 7px; color: #6B7280; margin-top: 1px; font-family: var(--font); }
.gd-close { font-size: 8px; color: #9CA3AF; cursor: pointer; flex-shrink: 0; }

.gd-weight-bar {
  margin: 6px 10px 4px;
  background: linear-gradient(135deg,rgba(249,174,31,0.08),rgba(80,65,217,0.08));
  border-radius: 5px;
  padding: 4px 7px;
  font-size: 7px;
  font-weight: 600;
  color: #6B7280;
  font-family: var(--font);
  flex-shrink: 0;
}

.gd-stops-label {
  padding: 4px 10px 3px;
  font-size: 7px;
  font-weight: 700;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-family: var(--font);
  flex-shrink: 0;
}

.gd-stop {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  padding: 5px 10px;
  border-bottom: 1px solid #F9FAFB;
}

.gd-num {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--digital-violet);
  color: #fff;
  font-size: 7px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-family: var(--font);
}

.gd-num--depot { background: #0A0A0A; font-size: 8px; }

.gd-stop-body { flex: 1; min-width: 0; }
.gd-stop-name { font-size: 8px; font-weight: 700; color: #0A0A0A; font-family: var(--font); }
.gd-stop-ref  { font-size: 7px; font-weight: 600; color: var(--digital-violet); font-family: var(--font); }
.gd-stop-addr { font-size: 6.5px; color: #9CA3AF; font-family: var(--font); line-height: 1.3; margin-top: 1px; }
.gd-stop-kg   { font-size: 7px; color: #6B7280; font-family: var(--font); margin-top: 2px; }
.gd-time { font-size: 8px; font-weight: 700; color: #6B7280; font-family: var(--font); flex-shrink: 0; margin-top: 1px; }

/* ── About section with photo bg ───────────────────── */
#about {
  position: relative;
}

#about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(9, 9, 11, 0.88) 0%, rgba(9, 9, 11, 0.72) 100%);
  pointer-events: none;
  z-index: 0;
}

#about > .container { position: relative; z-index: 1; }

/* ── CTA Section ──────────────────────────────────── */
.cta-section {
  position: relative;
  text-align: center;
  overflow: hidden;
  background: #09090b;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-section .hero-bg {
  opacity: 0.5;
}

.cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-section .hero-eyebrow {
  color: rgba(249, 174, 31, 0.95);
}

.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: #fff;
  max-width: 800px;
  margin: 0 auto 20px;
  text-transform: uppercase;
}

.cta-headline .cta-gradient {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-sub {
  font-size: 1.05rem;
  color: #a1a1aa;
  max-width: 540px;
  line-height: 1.75;
  margin: 0 auto 36px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  background: #fff;
  color: #09090b !important;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0% 100%);
  box-shadow: 0 16px 48px rgba(255, 255, 255, 0.08);
  transition: background 0.25s ease, color 0.25s ease, gap 0.2s, transform 0.2s;
}

.cta-btn:hover {
  background: var(--brand-gradient);
  color: #fff !important;
  gap: 16px;
  transform: translateY(-2px);
}

.cta-btn svg {
  flex-shrink: 0;
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 960px) {
  .product-split,
  .about-inner,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .product-split--flip .split-visual { order: -1; }

  .browser-frame,
  .product-split--flip .browser-frame {
    transform: none !important;
    max-width: 100%;
  }

  .deep-dive-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .deep-dive-row.flip { direction: ltr; }

  .about-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  section { padding: 64px 0; }
  .nav-links { gap: 20px; }
  .hero { padding: 80px 0 64px; }
  .about-stats { grid-template-columns: 1fr; }
  .footer-inner { gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}


/* ══════════════════════════════════════════════════════
   VI (Visual Indicator) Components
   Rich mini-UIs that replace the generic placeholders
   ══════════════════════════════════════════════════════ */

/* Shared base — all vi-* panels fill the .deep-dive-visual container */
[class^="vi-"] {
  font-family: var(--font);
}

.vi-hdr {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--muted-hi);
  padding: 9px 12px;
  border-bottom: 1px solid var(--border);
  background: var(--bg4);
  flex-shrink: 0;
}

.vi-footer {
  padding: 7px 12px;
  font-size: 9px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  background: var(--bg4);
  flex-shrink: 0;
}

/* Shared dot */
.vi-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.vi-dot--live { background: var(--green); animation: pulse-dot 2s infinite; }

/* Shared badge */
.vi-badge {
  font-size: 8px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
}
.vi-badge--green { background: rgba(34,197,94,0.14); color: #22C55E; }
.vi-badge--blue  { background: rgba(80,65,217,0.14); color: var(--digital-violet); }
.vi-badge--red   { background: rgba(239,68,68,0.14);  color: #EF4444; }
.vi-badge--gray  { background: var(--bg4); color: var(--muted); }
.vi-badge--amber { background: rgba(245,158,11,0.14); color: var(--amber); }

/* Shared vehicle reg */
.vi-reg   { font-size: 10px; font-weight: 700; color: var(--text); white-space: nowrap; }
.vi-time  { font-size: 9px;  color: var(--muted); }
.vi-speed { font-size: 10px; font-weight: 600; color: var(--text); white-space: nowrap; }
.vi-speed--ok  { color: var(--green); }
.vi-speed--bad { color: var(--red); }

/* Shared tank/bar */
.vi-tank-wrap {
  flex: 1;
  height: 6px;
  background: var(--bg4);
  border-radius: 3px;
  overflow: hidden;
  min-width: 30px;
}
.vi-tank {
  height: 100%;
  background: linear-gradient(90deg, #22C55E, #16a34a);
  border-radius: 3px;
}
.vi-tank--mid { background: linear-gradient(90deg, var(--amber), #d97706); }
.vi-tank--low { background: linear-gradient(90deg, var(--red), #dc2626); }

.vi-pct       { font-size: 10px; font-weight: 700; color: var(--text);  white-space: nowrap; }
.vi-pct--mid  { color: var(--amber); }
.vi-pct--low  { color: var(--red); }
.vi-pct--hi   { color: var(--green); }


/* ── 1. Live Fleet Table ─────────────────────────── */
.vi-livefleet {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  background: var(--bg3);
}

.vi-table { flex: 1; overflow: hidden; display: flex; flex-direction: column; }

.vi-row {
  display: grid;
  grid-template-columns: 1fr 68px 64px 32px;
  gap: 6px;
  align-items: center;
  padding: 7px 12px;
  border-bottom: 1px solid var(--border);
  font-size: 10px;
}
.vi-row:last-child { border-bottom: none; }
.vi-row--hd {
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  background: rgba(255,255,255,0.02);
}
.vi-row--dim { opacity: 0.38; }


/* ── 2. Driver Safety Rankings ────────────────────── */
.vi-safety {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  background: var(--bg3);
}

.vi-rank-list { flex: 1; overflow: hidden; display: flex; flex-direction: column; justify-content: space-around; padding: 6px 0; }

.vi-rank-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
}

.vi-rank {
  width: 16px; height: 16px;
  border-radius: 4px;
  background: var(--bg4);
  color: var(--muted);
  font-size: 8px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.vi-rank--1 { background: rgba(249,115,22,0.2); color: var(--accent); }
.vi-rank--2 { background: rgba(249,115,22,0.1); color: var(--accent); }
.vi-rank--3 { background: var(--bg4); color: var(--muted-hi); }
.vi-rank--lo { background: rgba(239,68,68,0.1); color: var(--red); }

.vi-name { font-size: 10px; font-weight: 600; color: var(--text); min-width: 70px; }

.vi-bar-wrap  { flex: 1; height: 5px; background: var(--bg4); border-radius: 3px; overflow: hidden; }
.vi-bar       { height: 100%; border-radius: 3px; }
.vi-bar--high { background: var(--green); }
.vi-bar--mid  { background: var(--amber); }
.vi-bar--low  { background: var(--red); }

.vi-score      { font-size: 10px; font-weight: 800; width: 22px; text-align: right; }
.vi-score--high { color: var(--green); }
.vi-score--mid  { color: var(--amber); }
.vi-score--low  { color: var(--red); }

.vi-trend      { font-size: 10px; width: 12px; text-align: center; }
.vi-trend--up  { color: var(--green); }
.vi-trend--dn  { color: var(--red); }


/* ── 3. Fuel Intelligence ─────────────────────────── */
.vi-fuel {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  background: var(--bg3);
}

.vi-fuel-list { flex: 1; overflow: hidden; display: flex; flex-direction: column; justify-content: space-around; padding: 6px 0; }

.vi-fuel-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
}

.vi-alert-row {
  padding: 7px 12px;
  font-size: 9px;
  color: var(--red);
  background: rgba(239,68,68,0.06);
  border-top: 1px solid rgba(239,68,68,0.15);
  flex-shrink: 0;
}


/* ── 4. Video & Camera ────────────────────────────── */
.vi-cameras {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  background: var(--bg3);
}

.vi-cam-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  overflow: hidden;
}

.vi-cam {
  background: var(--bg4);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8px;
  position: relative;
}

.vi-cam--incident {
  background: rgba(239,68,68,0.06);
  border: 1px solid rgba(239,68,68,0.2);
}

.vi-cam--offline {
  opacity: 0.45;
}

/* Camera scan-line effect */
.vi-cam--ok::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(255,255,255,0.02) 3px,
    rgba(255,255,255,0.02) 4px
  );
  pointer-events: none;
}

.vi-cam-label  { font-size: 8px; font-weight: 700; color: var(--text); position: relative; z-index: 1; }
.vi-cam-status { font-size: 7px; font-weight: 700; position: relative; z-index: 1; }
.vi-cam-status--ok   { color: var(--green); }
.vi-cam-status--red  { color: var(--red); animation: blink 1.5s step-end infinite; }
.vi-cam-status--gray { color: var(--muted); }

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }


/* ── 5. Hours of Service ──────────────────────────── */
.vi-hos {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  background: var(--bg3);
}

.vi-hos-list { flex: 1; overflow: hidden; display: flex; flex-direction: column; justify-content: space-around; padding: 8px 0; }

.vi-hos-row {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 5px 12px;
}

.vi-hos-bar { flex: 1; height: 8px; background: var(--bg4); border-radius: 4px; overflow: hidden; display: flex; }
.vi-hos-seg { height: 100%; }
.vi-hos-green { background: var(--green); }
.vi-hos-amber { background: var(--amber); }
.vi-hos-red   { background: var(--red); }

.vi-hos-status { font-size: 8px; font-weight: 700; white-space: nowrap; min-width: 60px; text-align: right; }
.vi-hs-green { color: var(--green); }
.vi-hs-amber { color: var(--amber); }
.vi-hs-red   { color: var(--red); }


/* ── 6. Shareable Delivery Tracking ──────────────── */
.vi-tracking {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  background: var(--bg3);
}

.vi-tracking-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--accent);
  background: var(--bg4);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.vi-tracking-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.vi-tracking-main {
  flex: 1;
  display: flex;
  gap: 0;
  overflow: hidden;
}

.vi-tracking-eta {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--border);
  padding: 16px;
  text-align: center;
}

.vi-eta-val {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.vi-eta-lbl { font-size: 9px; color: var(--muted); }

.vi-tracking-info {
  flex: 1;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.vi-ti-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  padding-bottom: 7px;
}
.vi-ti-row:last-child { border-bottom: none; padding-bottom: 0; }
.vi-ti-lbl { color: var(--muted); }

.vi-tracking-url {
  padding: 8px 14px;
  font-size: 8px;
  color: var(--muted);
  background: var(--bg4);
  border-top: 1px solid var(--border);
  font-family: 'Courier New', monospace;
  flex-shrink: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


/* ── 7. Route Optimisation ────────────────────────── */
.vi-routes {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  background: var(--bg3);
}

.vi-compare {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
}

.vi-compare-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
  text-align: center;
  gap: 6px;
  height: 100%;
}

.vi-compare-before { border-right: 1px solid var(--border); }

.vi-compare-lbl {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.vi-compare-val {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--muted-hi);
  line-height: 1;
}
.vi-compare-val--good { color: var(--green); }

.vi-compare-sub { font-size: 9px; color: var(--muted); }
.vi-compare-sub--good { color: var(--green); font-weight: 700; }

.vi-compare-stops {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-top: 8px;
}

.vi-stop-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--muted); flex-shrink: 0; }
.vi-stop-dot--accent { background: var(--accent); }
.vi-stop-line { width: 16px; height: 2px; background: var(--muted); }
.vi-stop-line--accent { background: var(--accent); }

.vi-arrow {
  font-size: 18px;
  color: var(--accent);
  padding: 0 8px;
  flex-shrink: 0;
}


/* ── 8. Drag & Drop Dispatch Board ───────────────── */
.vi-dispatch {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  background: var(--bg3);
}

.vi-dispatch-list { flex: 1; overflow: hidden; display: flex; flex-direction: column; justify-content: space-around; padding: 6px 0; }

.vi-dispatch-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-bottom: 1px solid var(--border);
}
.vi-dispatch-row:last-child { border-bottom: none; }
.vi-dispatch-row--dim { opacity: 0.4; }

.vi-dispatch-stops {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 4px;
  overflow: hidden;
  min-width: 0;
}

.vi-ds-depot {
  font-size: 8px; font-weight: 700;
  background: var(--bg4);
  color: var(--muted-hi);
  padding: 3px 7px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}

.vi-ds-stop {
  font-size: 8px; font-weight: 600;
  background: rgba(249,115,22,0.1);
  color: var(--accent);
  border: 1px solid rgba(249,115,22,0.2);
  padding: 3px 7px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}

.vi-ds-arrow { font-size: 8px; color: var(--muted); flex-shrink: 0; }

.vi-ds-empty { font-size: 9px; color: var(--muted); font-style: italic; }

.vi-dispatch-dist { font-size: 10px; font-weight: 700; color: var(--text); flex-shrink: 0; }


/* ── 9. Fleet Constraints ─────────────────────────── */
.vi-constraints {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  background: var(--bg3);
}

.vi-const-list { display: flex; flex-direction: column; gap: 0; border-bottom: 1px solid var(--border); }

.vi-const-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-bottom: 1px solid var(--border);
}
.vi-const-row:last-child { border-bottom: none; }

.vi-const-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 88px;
}

.vi-const-meta { font-size: 8px; color: var(--muted); }

.vi-window-row {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  overflow: hidden;
}

.vi-window {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-bottom: 1px solid var(--border);
}
.vi-window:last-child { border-bottom: none; }

.vi-window-lbl  { font-size: 9px; font-weight: 600; color: var(--text); flex: 1; }
.vi-window-time { font-size: 8px; color: var(--muted); white-space: nowrap; }


/* ── 10. Address Geocoding ─────────────────────────── */
.vi-geocoding {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  background: var(--bg3);
}

.vi-geo-list { flex: 1; overflow: hidden; display: flex; flex-direction: column; justify-content: space-around; padding: 4px 0; }

.vi-geo-row {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 12px;
  border-bottom: 1px solid var(--border);
}
.vi-geo-row:last-child { border-bottom: none; }

.vi-geo-status {
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 800;
  flex-shrink: 0;
}
.vi-geo-ok   { background: rgba(34,197,94,0.14); color: var(--green); }
.vi-geo-warn { background: rgba(245,158,11,0.14); color: var(--amber); }

.vi-geo-addr { flex: 1; min-width: 0; }
.vi-geo-name  { font-size: 10px; font-weight: 600; color: var(--text); }
.vi-geo-coord { font-size: 8px; color: var(--muted); font-family: 'Courier New', monospace; }
.vi-geo-coord--warn { color: var(--amber); font-style: normal; }


/* ── 11. Post-Run Analysis Chart ─────────────────── */
.vi-analysis {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  background: var(--bg3);
}

.vi-legend-row {
  display: flex;
  gap: 14px;
  padding: 6px 12px;
  border-bottom: 1px solid var(--border);
  background: var(--bg4);
  flex-shrink: 0;
}

.vi-leg-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  color: var(--muted-hi);
}

.vi-leg-color {
  width: 10px; height: 10px;
  border-radius: 2px;
  flex-shrink: 0;
}

.vi-chart {
  flex: 1;
  display: flex;
  overflow: hidden;
  padding: 10px 10px 4px;
  gap: 6px;
}

.vi-chart-bars {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.vi-chart-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  gap: 3px;
}

/* The pair of bars inside each group */
.vi-chart-group > div:not(.vi-chart-lbl) {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  flex: 1;
  width: 100%;
}

.vi-bar-wrap-v {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.vi-bar-planned {
  width: 100%;
  background: rgba(168,85,247,0.45);
  border-radius: 3px 3px 0 0;
  min-height: 4px;
}

.vi-bar-actual {
  width: 100%;
  background: var(--green);
  border-radius: 3px 3px 0 0;
  min-height: 4px;
  opacity: 0.9;
}

.vi-chart-lbl { font-size: 8px; color: var(--muted); white-space: nowrap; }

.vi-chart-yaxis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 7px;
  color: var(--muted);
  padding-bottom: 16px;
  text-align: right;
  flex-shrink: 0;
}

/* ── Partners / Backers Marquee ─────────────────────────── */
.partners-strip {
  display: flex;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: #0e1120;
  overflow: hidden;
}

.partners-eyebrow {
  flex-shrink: 0;
  padding: 0 40px 0 40px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.32);
  white-space: nowrap;
  position: relative;
}

.partners-eyebrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,.12);
}

.partners-track-wrap {
  flex: 1;
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.partners-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: partners-scroll 22s linear infinite;
  will-change: transform;
}

.partners-track:hover { animation-play-state: paused; }

@keyframes partners-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.partner-item {
  display: flex;
  align-items: center;
  padding: 0 64px;
  opacity: .55;
  transition: opacity .3s;
  flex-shrink: 0;
}

.partner-item:hover { opacity: 1; }

.partner-item img {
  height: 40px;
  width: auto;
  max-width: 220px;
  display: block;
  object-fit: contain;
}

/* African Bank uses a coloured SVG — invert to white for dark background */
.partner-item img[alt="African Bank"] {
  filter: brightness(0) invert(1);
}

@media (max-width: 640px) {
  .partners-eyebrow { padding: 0 20px 0 20px; font-size: 9px; }
  .partner-item { padding: 0 36px; }
  .partner-item img { height: 30px; max-width: 130px; }
}

/* ══════════════════════════════════════════════════════
   Mobile responsive
   All rules are inside max-width queries — zero effect
   on desktop or tablet viewports above these breakpoints
   ══════════════════════════════════════════════════════ */

/* ── Below 980px: stack products grid (avoid cramped 3-up) ── */
@media (max-width: 980px) {
  .products-landing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ── Phone (≤600px) ────────────────────────────────── */
@media (max-width: 600px) {

  /* Nav: swap links out, contact button in.
     Results in: [logo]  ···  [Contact] — clean & simple */
  .nav-links { display: none; }
  .nav-cta   { display: flex; }

  /* Tighter horizontal gutters */
  .container { padding: 0 16px; }

  /* Section vertical rhythm */
  section { padding: 52px 0; }
  .hero   { padding: 60px 0 48px; }

  /* Product cards: cap the browser-frame mockup height so it
     doesn't dwarf the text content on a small screen */
  .product-landing-mockup {
    max-height: 200px;
    overflow: hidden;
    padding: 16px 16px 0;
  }
  .product-landing-body   { padding: 20px 20px 24px; }
  .products-landing-grid  { gap: 20px; }

  /* CTA button full-width on narrow screens */
  .cta-btn {
    width: 100%;
    max-width: 380px;
    justify-content: center;
  }

  /* Product page header title scales down */
  .product-page-title {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
  }
}

/* ── Very small (≤400px) ───────────────────────────── */
@media (max-width: 400px) {
  .container    { padding: 0 12px; }
  .nav-logo-img { height: 24px; }
}

