/* GPS MAP CLICK BUSINESS APP — standalone marketing pages */
:root {
  --biz-ink: #07111f;
  --biz-navy: #0b1b33;
  --biz-panel: #102744;
  --biz-panel-2: #152f50;
  --biz-blue: #4d90d9;
  --biz-cyan: #72c7ff;
  --biz-orange: #f5a623;
  --biz-gold: #f6c453;
  --biz-green: #35d09a;
  --biz-white: #fff;
  --biz-muted: #9aacc2;
  --biz-line: rgba(168, 201, 235, 0.16);
  --biz-radius: 20px;
  --biz-shadow: 0 24px 80px rgba(0, 0, 0, .28);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--biz-white);
  background: var(--biz-ink);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.biz-container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.biz-page { min-height: 100vh; background: var(--biz-ink); }

.biz-sparkle-field {
  position: fixed;
  z-index: 2;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.biz-sparkle {
  position: absolute;
  left: var(--sparkle-left);
  top: var(--sparkle-top);
  width: var(--sparkle-size);
  height: var(--sparkle-size);
  opacity: 0;
  filter: drop-shadow(0 0 5px rgba(246,196,83,.72));
  transform: scale(.35) rotate(0deg);
  animation: biz-sparkle-twinkle var(--sparkle-duration) ease-in-out var(--sparkle-delay) infinite;
}
.biz-sparkle::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--biz-gold);
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
}
.biz-sparkle::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 28%;
  height: 28%;
  border-radius: 50%;
  background: #ffe8a3;
  transform: translate(-50%, -50%);
}
@keyframes biz-sparkle-twinkle {
  0%, 100% { opacity: 0; transform: scale(.35) rotate(0deg); }
  18% { opacity: .55; transform: scale(.8) rotate(24deg); }
  36% { opacity: .95; transform: scale(1.08) rotate(45deg); }
  55% { opacity: .38; transform: scale(.7) rotate(72deg); }
  72% { opacity: .8; transform: scale(.92) rotate(105deg); }
  88% { opacity: .12; transform: scale(.45) rotate(135deg); }
}

.biz-nav {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  background: rgba(7, 17, 31, .8);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: .25s ease;
}
.biz-nav.scrolled { border-color: var(--biz-line); background: rgba(7, 17, 31, .94); }
.biz-nav-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.biz-brand { display: inline-flex; align-items: center; gap: 9px; flex-shrink: 0; }
.biz-brand img { width: 34px; height: 34px; border-radius: 10px; }
.biz-brand-name { font-size: 17px; font-weight: 900; letter-spacing: 1.4px; }
.biz-brand-name b { color: var(--biz-blue); }
.biz-brand-name i { color: var(--biz-orange); font-style: normal; }
.biz-brand-label {
  display: block;
  margin-top: -3px;
  font-size: 9px;
  line-height: 1;
  letter-spacing: 2px;
  color: var(--biz-muted);
  text-transform: uppercase;
}
.biz-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.biz-links > a,
.biz-solutions > summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 11px;
  color: #d5e2f0;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  transition: .2s ease;
}
.biz-links > a:hover,
.biz-solutions > summary:hover,
.biz-solutions[open] > summary { color: var(--biz-white); background: rgba(255,255,255,.08); }
.biz-solutions > summary::-webkit-details-marker { display: none; }
.biz-solutions > summary::after { content: '⌄'; color: var(--biz-muted); font-size: 13px; }
.biz-solutions { position: relative; }
.biz-solution-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 250px;
  padding: 8px;
  border: 1px solid var(--biz-line);
  border-radius: 14px;
  background: #0c203a;
  box-shadow: var(--biz-shadow);
  animation: biz-menu-in .2s ease;
}
@keyframes biz-menu-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.biz-solution-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 9px;
  color: var(--biz-muted);
  font-size: 12px;
  transition: background .15s ease, color .15s ease, padding-left .15s ease;
}
.biz-solution-menu a:hover { color: var(--biz-white); background: rgba(255,255,255,.07); padding-left: 16px; }
.biz-solutions > summary::after { transition: transform .2s ease; display: inline-block; }
.biz-solutions[open] > summary::after { transform: rotate(180deg); }
.biz-nav-cta,
.biz-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--biz-ink) !important;
  background: var(--biz-orange);
  font-size: 12px;
  font-weight: 800;
  transition: .2s ease;
}
.biz-nav-cta { margin-left: 8px; white-space: nowrap; }
.biz-button { min-height: 50px; padding-inline: 21px; font-size: 13px; }
.biz-button:hover,
.biz-nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(245,166,35,.2); background: #ffb83e; }
.biz-button-outline {
  color: var(--biz-white) !important;
  background: rgba(255,255,255,.04);
  border-color: var(--biz-line);
}
.biz-button-outline:hover { background: rgba(255,255,255,.1); box-shadow: none; }
.biz-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid var(--biz-line);
  border-radius: 10px;
  background: rgba(255,255,255,.05);
  color: var(--biz-white);
  cursor: pointer;
}
.biz-mobile-menu {
  display: flex; flex-direction: column;
  overflow: hidden;
  max-height: 0; opacity: 0; visibility: hidden;
  transition: max-height .38s ease, opacity .28s ease, visibility .38s;
}
.biz-mobile-menu a {
  opacity: 0; transform: translateY(-6px);
  transition: opacity .3s ease, transform .3s ease;
}
.biz-mobile-menu.open { max-height: 720px; opacity: 1; visibility: visible; }
.biz-mobile-menu.open a { opacity: 1; transform: none; }
.biz-mobile-menu.open a:nth-child(1) { transition-delay: .03s; }
.biz-mobile-menu.open a:nth-child(2) { transition-delay: .06s; }
.biz-mobile-menu.open a:nth-child(3) { transition-delay: .09s; }
.biz-mobile-menu.open a:nth-child(4) { transition-delay: .12s; }
.biz-mobile-menu.open a:nth-child(5) { transition-delay: .15s; }
.biz-mobile-menu.open a:nth-child(6) { transition-delay: .18s; }
.biz-mobile-menu.open a:nth-child(7) { transition-delay: .21s; }
.biz-mobile-menu.open a:nth-child(8) { transition-delay: .24s; }
.biz-mobile-menu.open a:nth-child(9) { transition-delay: .27s; }

/* Shared 40-language website picker */
.biz-lang-switch { position: relative; flex-shrink: 0; margin-left: 4px; }
.biz-lang-switch-button {
  display: inline-flex; align-items: center; gap: 6px; min-height: 38px;
  padding: 0 10px; border: 1px solid var(--biz-line); border-radius: 9px;
  color: #d5e2f0; background: rgba(255,255,255,.05); font-size: 11px;
  font-weight: 800; cursor: pointer;
}
.biz-lang-switch-button:hover,
.biz-lang-switch-button[aria-expanded="true"] {
  color: var(--biz-white); border-color: rgba(245,166,35,.55);
  background: rgba(255,255,255,.09);
}
.biz-lang-switch-menu {
  position: absolute; z-index: 110; top: calc(100% + 10px); right: 0;
  width: 190px; max-height: 330px; overflow-y: auto; margin: 0;
  padding: 7px; border: 1px solid var(--biz-line); border-radius: 13px;
  background: #0c203a; box-shadow: var(--biz-shadow); list-style: none;
  opacity: 0; transform: translateY(-8px) scale(.97);
  visibility: hidden; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.biz-lang-switch-menu.open { opacity: 1; transform: none; visibility: visible; pointer-events: auto; }
.biz-lang-switch-menu li {
  display: flex; align-items: center; gap: 9px; padding: 7px 9px; border-radius: 8px;
  color: var(--biz-muted);
  font-size: 12px; cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.biz-lang-option-name { flex: 1; min-width: 0; }
.biz-lang-switch-menu li small {
  color: rgba(213,226,240,.48); font-size: 9px; font-weight: 800; letter-spacing: .08em;
}
.biz-lang-switch-menu li:hover,
.biz-lang-switch-menu li.active { color: var(--biz-white); background: rgba(255,255,255,.08); }
.biz-mobile-lang {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px; color: var(--biz-muted); font-size: 12px;
}
.biz-mobile-lang-select {
  min-width: 150px; padding: 8px; border: 1px solid var(--biz-line);
  border-radius: 8px; color: var(--biz-white); background: #0c203a;
}

.biz-hero {
  position: relative;
  isolation: isolate;
  padding: 170px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 11%, rgba(77,144,217,.22), transparent 28%),
    radial-gradient(circle at 3% 70%, rgba(245,166,35,.1), transparent 26%),
    var(--biz-ink);
}
.biz-hero::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .38;
  background-image: linear-gradient(rgba(114,199,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(114,199,255,.07) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}
.biz-hero-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 72px; }
.biz-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 21px;
  padding: 7px 12px;
  border: 1px solid rgba(245,166,35,.3);
  border-radius: 30px;
  color: var(--biz-orange);
  background: rgba(245,166,35,.08);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.biz-kicker-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--biz-green); box-shadow: 0 0 0 5px rgba(53,208,154,.1); animation: biz-pulse 2s infinite; }
@keyframes biz-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
.biz-hero-tagline { margin-top: -4px; margin-bottom: 22px; color: var(--biz-cyan); font-size: 12px; font-weight: 700; letter-spacing: .2px; }
.biz-hero h1,
.biz-page-hero h1 {
  max-width: 680px;
  margin: 0 0 22px;
  font-size: clamp(42px, 5.4vw, 70px);
  line-height: 1.06;
  letter-spacing: -.055em;
}
.biz-hero h1 span,
.biz-page-hero h1 span { color: var(--biz-orange); }
.biz-lede {
  max-width: 590px;
  margin: 0 0 30px;
  color: var(--biz-muted);
  font-size: 18px;
}
.biz-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 38px; }
.biz-proof-line { display: flex; flex-wrap: wrap; gap: 16px; color: #c7d8eb; font-size: 11px; }
.biz-proof-line span { display: inline-flex; align-items: center; gap: 7px; }
.biz-proof-line b { color: var(--biz-green); font-size: 15px; }

/* Dashboard and product mockups */
.biz-dashboard {
  position: relative;
  padding: 12px;
  border: 1px solid rgba(139,193,239,.26);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(31,67,108,.9), rgba(11,27,51,.98));
  box-shadow: 0 32px 100px rgba(0,0,0,.43), 0 0 0 8px rgba(77,144,217,.04);
  transform: perspective(1100px) rotateY(-4deg) rotateX(2deg);
}
.biz-dashboard::after {
  content: '';
  position: absolute;
  right: -35px;
  bottom: -25px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(245,166,35,.2);
  filter: blur(42px);
  z-index: -1;
}
.biz-dash-top { display: flex; justify-content: space-between; align-items: center; padding: 9px 10px 15px; color: #dfeafa; font-size: 10px; font-weight: 700; }
.biz-dash-brand { display: flex; align-items: center; gap: 7px; }
.biz-dash-brand i { display: block; width: 7px; height: 7px; border-radius: 50%; background: var(--biz-green); box-shadow: 0 0 10px var(--biz-green); }
.biz-dash-user { color: var(--biz-muted); font-weight: 500; }
.biz-dash-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.biz-dash-stat { min-height: 76px; padding: 11px; border: 1px solid var(--biz-line); border-radius: 11px; background: rgba(4,14,28,.52); }
.biz-dash-stat b { display: block; margin-bottom: 3px; color: var(--biz-white); font-size: 20px; }
.biz-dash-stat span { color: var(--biz-muted); font-size: 9px; }
.biz-dash-main { display: grid; grid-template-columns: 1.4fr 1fr; gap: 8px; margin-top: 8px; }
.biz-map-card,
.biz-activity-card { min-height: 240px; padding: 14px; border: 1px solid var(--biz-line); border-radius: 12px; background: rgba(4,14,28,.52); }
.biz-map-card > div:first-child,
.biz-activity-card > div:first-child { display: flex; justify-content: space-between; margin-bottom: 12px; color: #dceafa; font-size: 11px; font-weight: 700; }
.biz-map-card small { color: var(--biz-muted); font-weight: 500; }
.biz-map {
  position: relative;
  height: 192px;
  overflow: hidden;
  border-radius: 9px;
  background-color: #173553;
  background-image: linear-gradient(28deg, transparent 46%, rgba(132,190,222,.17) 47%, rgba(132,190,222,.17) 49%, transparent 50%), linear-gradient(115deg, transparent 45%, rgba(132,190,222,.12) 46%, rgba(132,190,222,.12) 48%, transparent 49%), linear-gradient(90deg, rgba(114,199,255,.05) 1px, transparent 1px), linear-gradient(rgba(114,199,255,.05) 1px, transparent 1px);
  background-size: auto, auto, 34px 34px, 34px 34px;
}
.biz-map::after { content: ''; position: absolute; inset: 28% 18% 17% 20%; border: 1px dashed rgba(53,208,154,.7); border-radius: 45% 55% 50% 42%; background: rgba(53,208,154,.08); }
.biz-map-pin { position: absolute; z-index: 2; width: 10px; height: 10px; border: 2px solid var(--biz-white); border-radius: 50%; background: var(--biz-orange); box-shadow: 0 0 0 5px rgba(245,166,35,.2); }
.biz-map-pin.p1 { left: 32%; top: 38%; }.biz-map-pin.p2 { left: 61%; top: 55%; background: var(--biz-green); }.biz-map-pin.p3 { left: 45%; top: 72%; background: var(--biz-blue); }
.biz-activity-list { display: flex; flex-direction: column; gap: 14px; }
.biz-activity { display: grid; grid-template-columns: 24px 1fr; gap: 9px; align-items: center; color: var(--biz-muted); font-size: 9px; }
.biz-activity i { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 8px; color: var(--biz-cyan); background: rgba(77,144,217,.18); font-style: normal; font-size: 11px; }
.biz-activity strong { display: block; margin-bottom: 2px; color: #dceafa; font-size: 10px; }
.biz-activity em { font-style: normal; }

.biz-section { padding: 105px 0; }
.biz-section-alt { background: #0a1a30; }
.biz-section-head { max-width: 720px; margin-bottom: 48px; }
.biz-eyebrow { margin-bottom: 13px; color: var(--biz-orange); font-size: 10px; font-weight: 800; letter-spacing: 1.7px; text-transform: uppercase; }
.biz-section h2 { margin: 0 0 14px; font-size: clamp(30px, 4vw, 48px); line-height: 1.12; letter-spacing: -.04em; }
.biz-section h2 span { color: var(--biz-blue); }
.biz-section-head p { margin: 0; color: var(--biz-muted); font-size: 16px; }
.biz-problem-card { padding: 28px; border: 1px solid rgba(245,166,35,.28); border-radius: var(--biz-radius); background: linear-gradient(145deg, rgba(245,166,35,.1), rgba(77,144,217,.08)); box-shadow: var(--biz-shadow); }
.biz-problem-intro { margin-bottom: 17px; color: var(--biz-white); font-size: 14px; font-weight: 800; }
.biz-problem-card .biz-check-list { gap: 11px; }
.biz-problem-foot { margin-top: 23px; padding-top: 18px; border-top: 1px solid var(--biz-line); color: var(--biz-cyan); font-size: 13px; font-weight: 700; }
.biz-address-section { position: relative; overflow: hidden; background: linear-gradient(115deg, #0d2039, #0a1a30 58%, #10243e); }
.biz-address-section::after { content: ''; position: absolute; right: -130px; top: -180px; width: 400px; height: 400px; border-radius: 50%; background: rgba(245,166,35,.09); filter: blur(10px); pointer-events: none; }
.biz-address-layout { position: relative; z-index: 1; display: grid; grid-template-columns: .85fr 1.15fr; gap: 65px; align-items: center; }
.biz-address-layout .biz-section-head { margin: 0; }
.biz-address-layout .biz-section-head h2 span:last-child { color: var(--biz-orange); }
.biz-address-note { display: flex; align-items: center; gap: 9px; margin-top: 20px; color: var(--biz-muted); font-size: 12px; }
.biz-address-note > span:first-child { width: 8px; height: 8px; flex: 0 0 8px; border-radius: 50%; background: var(--biz-green); box-shadow: 0 0 0 5px rgba(53,208,154,.12), 0 0 12px rgba(53,208,154,.5); }
.biz-address-card { display: grid; grid-template-columns: .87fr 1.13fr; overflow: hidden; border: 1px solid rgba(114,199,255,.3); border-radius: var(--biz-radius); background: #071426; box-shadow: var(--biz-shadow); }
.biz-address-map { position: relative; min-height: 305px; overflow: hidden; background: radial-gradient(ellipse at 20% 85%, #3d604e 0 25%, transparent 26%), radial-gradient(ellipse at 80% 22%, #536c51 0 24%, transparent 25%), #2c5260; }
.biz-address-map-lines { position: absolute; inset: 0; opacity: .28; background-image: linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px); background-size: 30px 30px; }
.biz-address-road { position: absolute; height: 2px; width: 120%; left: -10%; background: rgba(238,207,125,.62); box-shadow: 0 0 0 1px rgba(18,36,51,.22); }
.biz-address-road.one { top: 58%; transform: rotate(-27deg); }.biz-address-road.two { top: 28%; transform: rotate(38deg); background: rgba(215,228,196,.48); }
.biz-address-pin { position: absolute; left: 52%; top: 47%; display: grid; place-items: center; width: 30px; height: 30px; border: 3px solid #fff; border-radius: 50% 50% 50% 4px; color: #fff; background: var(--biz-orange); box-shadow: 0 0 0 9px rgba(245,166,35,.2), 0 7px 16px rgba(0,0,0,.35); font-size: 10px; transform: rotate(-45deg); }
.biz-address-coordinates { position: absolute; left: 13px; bottom: 13px; padding: 7px 9px; border: 1px solid rgba(255,255,255,.2); border-radius: 7px; color: #e5f2ff; background: rgba(5,16,29,.72); font-size: 10px; line-height: 1.45; backdrop-filter: blur(5px); }
.biz-address-content { padding: 25px 24px; }.biz-address-label { margin-bottom: 8px; color: var(--biz-orange); font-size: 10px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; }.biz-address-place { margin-bottom: 22px; color: var(--biz-white); font-size: 19px; font-weight: 800; }.biz-address-fields { display: grid; grid-template-columns: repeat(2, 1fr); gap: 11px; }.biz-address-fields > div { display: flex; flex-direction: column; gap: 2px; padding: 10px 11px; border: 1px solid rgba(77,144,217,.2); border-radius: 9px; background: rgba(77,144,217,.08); }.biz-address-fields > div:last-child { grid-column: span 2; }.biz-address-fields span { color: var(--biz-muted); font-size: 10px; }.biz-address-fields strong { color: #e8f3ff; font-size: 13px; }
.biz-workflow { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.biz-workflow-item { position: relative; padding: 0 24px 0 0; }
.biz-workflow-item:not(:last-child)::after { content: ''; position: absolute; top: 20px; right: 10px; width: calc(100% - 62px); height: 1px; background: linear-gradient(90deg, var(--biz-blue), transparent); transform: translateX(50%); }
.biz-step { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 18px; border: 1px solid rgba(114,199,255,.4); border-radius: 13px; color: var(--biz-cyan); background: rgba(77,144,217,.13); font-size: 12px; font-weight: 800; }
.biz-workflow h3 { margin: 0 0 7px; font-size: 16px; }
.biz-workflow p { max-width: 210px; margin: 0; color: var(--biz-muted); font-size: 13px; }
.biz-workflow-sequence { margin: -24px 0 34px; color: var(--biz-orange); font-size: 12px; font-weight: 900; letter-spacing: .5px; }
.biz-workflow-sequence i { margin: 0 8px; color: var(--biz-cyan); font-style: normal; }
.biz-process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.biz-process-card { padding: 23px; border: 1px solid var(--biz-line); border-radius: var(--biz-radius); background: linear-gradient(145deg, rgba(21,47,80,.76), rgba(13,32,56,.6)); }
.biz-process-card .biz-step { margin-bottom: 17px; }
.biz-process-card h3 { margin: 0 0 7px; font-size: 16px; }
.biz-process-card p { margin: 0; color: var(--biz-muted); font-size: 13px; }
.biz-workforce-board { display: grid; grid-template-columns: 1.18fr .82fr; gap: 17px; }
.biz-live-map, .biz-tracking-panel, .biz-work-order {
  border: 1px solid var(--biz-line);
  border-radius: var(--biz-radius);
  background: #0b1b33;
}
.biz-live-map { overflow: hidden; padding: 15px; }
.biz-live-map-head, .biz-tracking-head, .biz-order-head {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  color: #dceafa; font-size: 11px; font-weight: 800;
}
.biz-live-map-head { margin-bottom: 12px; }
.biz-live-map-head small, .biz-tracking-head small { color: var(--biz-muted); font-size: 9px; font-weight: 500; }
.biz-live-dot { display: inline-block; width: 7px; height: 7px; margin-right: 6px; border-radius: 50%; background: var(--biz-green); box-shadow: 0 0 9px var(--biz-green); animation: biz-pulse 2s infinite; }
.biz-satellite-canvas {
  position: relative;
  height: 276px;
  overflow: hidden;
  border-radius: 11px;
  background:
    linear-gradient(24deg, transparent 45%, rgba(217,190,111,.38) 46%, rgba(217,190,111,.38) 48%, transparent 49%),
    linear-gradient(116deg, transparent 36%, rgba(155,192,128,.34) 37%, rgba(155,192,128,.34) 39%, transparent 40%),
    linear-gradient(164deg, transparent 61%, rgba(220,192,114,.3) 62%, rgba(220,192,114,.3) 63%, transparent 64%),
    radial-gradient(ellipse at 25% 70%, #526b54 0 21%, transparent 22%),
    radial-gradient(ellipse at 78% 28%, #687852 0 18%, transparent 19%),
    radial-gradient(ellipse at 68% 78%, #3d5d50 0 23%, transparent 24%),
    #284759;
  background-size: auto, auto, auto, 210px 120px, 180px 130px, 240px 160px, auto;
}
.biz-satellite-canvas::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .28;
  background-image: linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px), linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px);
  background-size: 35px 35px;
}
.biz-route {
  position: absolute;
  z-index: 1;
  left: 17%;
  top: 68%;
  width: 64%;
  height: 35%;
  border-top: 2px dashed var(--biz-orange);
  border-right: 2px dashed var(--biz-orange);
  border-radius: 0 80% 0 0;
  transform: rotate(-14deg);
}
.biz-route::after { content: ''; position: absolute; right: -4px; top: -7px; width: 8px; height: 8px; border-radius: 50%; background: var(--biz-orange); box-shadow: 0 0 0 5px rgba(245,166,35,.2); }
.biz-track-pin { position: absolute; z-index: 2; display: grid; place-items: center; width: 28px; height: 28px; border: 2px solid #fff; border-radius: 50% 50% 50% 4px; color: #07111f; background: var(--biz-orange); font-size: 10px; font-weight: 900; transform: rotate(-45deg); }
.biz-track-pin span { transform: rotate(45deg); }
.biz-track-pin.checkin { left: 15%; top: 66%; }.biz-track-pin.visit { left: 47%; top: 45%; background: var(--biz-cyan); }.biz-track-pin.checkout { right: 15%; top: 22%; background: var(--biz-green); }
.biz-track-pin::after { content: ''; position: absolute; inset: -6px; border-radius: 50% 50% 50% 4px; border: 2px solid currentColor; opacity: 0; animation: biz-pin-ring 2.2s ease-out infinite; }
.biz-track-pin.checkin::after { color: var(--biz-orange); }
.biz-track-pin.visit::after { color: var(--biz-cyan); animation-delay: .4s; }
.biz-track-pin.checkout::after { color: var(--biz-green); animation-delay: .8s; }
@keyframes biz-pin-ring { 0% { transform: scale(.6); opacity: .55; } 100% { transform: scale(1.5); opacity: 0; } }
.biz-map-label { position: absolute; z-index: 2; padding: 5px 7px; border: 1px solid rgba(255,255,255,.18); border-radius: 6px; color: #f4f8fb; background: rgba(7,17,31,.7); font-size: 8px; font-weight: 700; backdrop-filter: blur(4px); }
.biz-map-label.l1 { left: 8%; top: 52%; }.biz-map-label.l2 { left: 40%; top: 31%; }.biz-map-label.l3 { right: 7%; top: 10%; }
.biz-map-legend { display: flex; flex-wrap: wrap; gap: 13px; padding: 11px 2px 0; color: var(--biz-muted); font-size: 9px; }.biz-map-legend span { display: inline-flex; align-items: center; gap: 5px; }.biz-map-legend i { width: 7px; height: 7px; border-radius: 50%; background: var(--biz-orange); }.biz-map-legend .blue { background: var(--biz-cyan); }.biz-map-legend .green { background: var(--biz-green); }
.biz-tracking-panel { padding: 16px; }.biz-tracking-head { margin-bottom: 15px; }.biz-employee { display: flex; align-items: center; gap: 9px; margin-bottom: 15px; }.biz-employee .biz-avatar { width: 36px; height: 36px; border-radius: 11px; }.biz-employee strong { display: block; font-size: 12px; }.biz-employee small { color: var(--biz-green); font-size: 9px; }
.biz-track-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-bottom: 17px; }.biz-track-stat { padding: 10px 7px; border-radius: 9px; background: rgba(77,144,217,.11); text-align: center; }.biz-track-stat b { display: block; color: var(--biz-white); font-size: 15px; }.biz-track-stat span { color: var(--biz-muted); font-size: 8px; }
.biz-timeline { display: grid; gap: 0; }.biz-timeline-item { position: relative; display: grid; grid-template-columns: 43px 13px 1fr; gap: 8px; min-height: 44px; color: var(--biz-muted); font-size: 9px; }.biz-timeline-item:not(:last-child)::after { content: ''; position: absolute; left: 49px; top: 17px; bottom: 0; border-left: 1px dashed rgba(114,199,255,.32); }.biz-timeline-time { color: #d7e6f4; font-weight: 800; }.biz-timeline-dot { position: relative; z-index: 1; width: 11px; height: 11px; margin-top: 2px; border: 2px solid var(--biz-cyan); border-radius: 50%; background: #0b1b33; }.biz-timeline-item:first-child .biz-timeline-dot { border-color: var(--biz-orange); background: var(--biz-orange); }.biz-timeline-item:last-child .biz-timeline-dot { border-color: var(--biz-green); background: var(--biz-green); }.biz-timeline-item strong { display: block; margin-bottom: 2px; color: #dceafa; font-size: 10px; }.biz-timeline-item em { font-style: normal; }
.biz-work-order { display: grid; grid-template-columns: 1fr .85fr; gap: 24px; align-items: center; margin-top: 17px; padding: 22px 24px; background: linear-gradient(105deg, rgba(245,166,35,.11), rgba(77,144,217,.09)); }.biz-order-head { justify-content: flex-start; margin-bottom: 13px; }.biz-order-badge { margin-left: auto; padding: 5px 8px; border-radius: 6px; color: var(--biz-orange); background: rgba(245,166,35,.12); font-size: 8px; letter-spacing: 1px; }.biz-order-title { margin: 0 0 6px; color: #f5f8fb; font-size: 18px; }.biz-order-meta { color: var(--biz-muted); font-size: 11px; }.biz-order-meta b { color: var(--biz-cyan); }.biz-order-side { padding-left: 24px; border-left: 1px solid var(--biz-line); }.biz-order-side strong { display: block; margin-bottom: 7px; color: var(--biz-white); font-size: 12px; }.biz-order-side p { margin: 0; color: var(--biz-muted); font-size: 12px; }
.biz-use-case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.biz-use-case {
  overflow: hidden;
  border: 1px solid var(--biz-line);
  border-radius: var(--biz-radius);
  background: linear-gradient(145deg, rgba(21,47,80,.9), rgba(13,32,56,.72));
  transition: .25s ease;
}
.biz-use-case:hover { border-color: rgba(114,199,255,.42); transform: translateY(-5px); box-shadow: 0 18px 50px rgba(0,0,0,.24); }
.biz-use-case-media {
  position: relative;
  height: 245px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 80%, rgba(245,166,35,.16), transparent 42%),
    #0a192d;
}
.biz-photo-trigger {
  position: absolute;
  top: 18px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 154px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: zoom-in;
}
.biz-photo-trigger:focus-visible {
  outline: 3px solid var(--biz-orange);
  outline-offset: 5px;
  border-radius: 18px 18px 0 0;
}
.biz-use-case-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 12px 28px rgba(0,0,0,.36);
  transition: filter .25s ease, transform .25s ease;
}
.biz-photo-trigger:hover img,
.biz-photo-trigger:focus-visible img { filter: brightness(.72); transform: scale(1.015); }
.biz-photo-zoom-hint {
  position: absolute;
  left: 50%;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  color: #f7fbff;
  background: rgba(7,17,31,.84);
  box-shadow: 0 8px 22px rgba(0,0,0,.24);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2px;
  white-space: nowrap;
  transform: translateX(-50%) translateY(5px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.biz-photo-zoom-hint span { color: var(--biz-orange); font-size: 16px; line-height: .7; }
.biz-photo-trigger:hover .biz-photo-zoom-hint,
.biz-photo-trigger:focus-visible .biz-photo-zoom-hint { opacity: 1; transform: translateX(-50%) translateY(0); }
.biz-use-case:nth-child(2) .biz-use-case-media img { object-position: center 42%; }
.biz-use-case:nth-child(3) .biz-use-case-media img { object-position: center 42%; }
.biz-use-case-caption { padding: 20px 21px 22px; }
.biz-use-case-label { margin-bottom: 8px; color: var(--biz-orange); font-size: 10px; font-weight: 900; letter-spacing: 1.3px; text-transform: uppercase; }
.biz-use-case h3 { margin: 0 0 7px; font-size: 17px; }
.biz-use-case p { margin: 0; color: var(--biz-muted); font-size: 13px; }
.biz-generated-section { background: linear-gradient(145deg, #0a192d, #07111f); }
.biz-generated-grid { display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: repeat(2, 245px); gap: 18px; }
.biz-generated-card { position: relative; min-width: 0; overflow: hidden; border: 1px solid var(--biz-line); border-radius: var(--biz-radius); background: #0a192d; box-shadow: 0 18px 50px rgba(0,0,0,.22); }
.biz-generated-card-featured { grid-row: span 2; }
.biz-generated-media, .biz-generated-media .biz-photo-trigger { width: 100%; height: 100%; }
.biz-generated-media { position: absolute; inset: 0; }
.biz-generated-media .biz-photo-trigger { display: block; padding: 0; border: 0; background: transparent; cursor: zoom-in; }
.biz-generated-media .biz-photo-trigger::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,17,31,.02) 27%, rgba(7,17,31,.88) 100%); pointer-events: none; }
.biz-generated-media img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; box-shadow: none; transition: transform .4s ease, filter .4s ease; }
.biz-generated-card-featured img { object-position: 66% center; }
.biz-generated-card:hover { border-color: rgba(114,199,255,.48); transform: translateY(-4px); }
.biz-generated-card:hover img,
.biz-generated-card:focus-within img { filter: brightness(.8); transform: scale(1.035); }
.biz-generated-card .biz-photo-zoom-hint { z-index: 2; bottom: 19px; }
.biz-generated-caption { position: absolute; z-index: 1; right: 22px; bottom: 20px; left: 22px; pointer-events: none; }
.biz-generated-caption .biz-use-case-label { margin-bottom: 5px; }
.biz-generated-caption h3 { max-width: 420px; margin: 0 0 4px; color: var(--biz-white); font-size: 19px; }
.biz-generated-caption p { max-width: 460px; margin: 0; color: #c7d8eb; font-size: 12px; }
.biz-generated-note { margin-top: 17px; color: #71869e; font-size: 10px; letter-spacing: .2px; text-align: right; }
.biz-proof-section { background: linear-gradient(135deg, #0b1c32, #07111f); }
.biz-proof-close { margin-top: 20px !important; color: var(--biz-cyan) !important; font-weight: 700; }
.biz-proof-card { padding: 27px; border: 1px solid rgba(114,199,255,.26); border-radius: var(--biz-radius); background: radial-gradient(circle at 90% 10%, rgba(245,166,35,.16), transparent 31%), linear-gradient(145deg, rgba(21,47,80,.9), rgba(10,25,45,.8)); box-shadow: var(--biz-shadow); }
.biz-proof-card-label { margin-bottom: 20px; color: var(--biz-muted); font-size: 10px; font-weight: 900; letter-spacing: 1.4px; text-transform: uppercase; }
.biz-proof-lines { display: grid; gap: 0; }
.biz-proof-lines > div { display: flex; align-items: baseline; justify-content: space-between; gap: 15px; padding: 13px 0; border-bottom: 1px solid var(--biz-line); }
.biz-proof-lines > div:last-child { border-bottom: 0; }
.biz-proof-lines b { color: var(--biz-orange); font-size: 11px; letter-spacing: .8px; }
.biz-proof-lines span { color: #dceafa; font-size: 13px; text-align: right; }

/* Full-screen photo showcase */
.biz-lightbox[hidden] { display: none; }
.biz-lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}
.biz-lightbox-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(2,8,16,.88);
  cursor: zoom-out;
}
.biz-lightbox-dialog {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(1080px, 100%);
  max-height: calc(100dvh - 48px);
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(114,199,255,.28);
  border-radius: 22px;
  background: #081524;
  box-shadow: 0 30px 90px rgba(0,0,0,.5);
}
.biz-lightbox-topbar,
.biz-lightbox-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 20px;
  background: rgba(255,255,255,.035);
}
.biz-lightbox-topbar { border-bottom: 1px solid var(--biz-line); }
.biz-lightbox-kicker { color: var(--biz-orange); font-size: 9px; font-weight: 900; letter-spacing: 1.5px; }
.biz-lightbox-counter { margin-top: 4px; color: var(--biz-muted); font-size: 11px; }
.biz-lightbox-close,
.biz-lightbox-nav,
.biz-lightbox-controls button {
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255,255,255,.18);
  color: var(--biz-white);
  background: rgba(255,255,255,.08);
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.biz-lightbox-close:hover,
.biz-lightbox-nav:hover,
.biz-lightbox-controls button:hover { border-color: rgba(245,166,35,.72); background: rgba(245,166,35,.18); }
.biz-lightbox-close:focus-visible,
.biz-lightbox-nav:focus-visible,
.biz-lightbox-controls button:focus-visible { outline: 2px solid var(--biz-orange); outline-offset: 3px; }
.biz-lightbox-close { width: 36px; height: 36px; border-radius: 50%; font-size: 25px; line-height: 1; }
.biz-lightbox-stage {
  position: relative;
  display: grid;
  min-height: 300px;
  height: min(68vh, 670px);
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 44%, rgba(77,144,217,.14), transparent 48%),
    #050d18;
}
.biz-lightbox-image {
  max-width: calc(100% - 140px);
  max-height: calc(100% - 38px);
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
  touch-action: none;
  cursor: grab;
  transform-origin: center center;
  transition: transform .16s ease;
}
.biz-lightbox-image.is-dragging { cursor: grabbing; transition: none; }
.biz-lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
}
.biz-lightbox-nav:hover { transform: translateY(-50%) scale(1.05); }
.biz-lightbox-nav.prev { left: 20px; }
.biz-lightbox-nav.next { right: 20px; }
.biz-lightbox-bottom { align-items: flex-end; border-top: 1px solid var(--biz-line); }
.biz-lightbox-caption { min-width: 0; color: #dceafa; font-size: 13px; font-weight: 700; }
.biz-lightbox-controls { display: flex; flex-shrink: 0; gap: 6px; }
.biz-lightbox-controls button { width: 34px; height: 32px; border-radius: 8px; font-size: 18px; }
.biz-lightbox-controls button:nth-child(2) { width: 58px; color: var(--biz-cyan); font-size: 10px; font-weight: 900; }
.biz-lightbox-hint { padding: 0 20px 15px; color: #71869e; font-size: 10px; text-align: right; }
.lightbox-open { overflow: hidden; }
.biz-card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.biz-card { min-height: 215px; padding: 23px; border: 1px solid var(--biz-line); border-radius: var(--biz-radius); background: linear-gradient(145deg, rgba(21,47,80,.9), rgba(13,32,56,.7)); transition: .25s ease; }
.biz-card:hover { border-color: rgba(114,199,255,.42); transform: translateY(-5px); box-shadow: 0 18px 50px rgba(0,0,0,.2); }
.biz-card-icon { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 18px; border-radius: 12px; color: var(--biz-orange); background: rgba(245,166,35,.12); font-size: 20px; }
.biz-card:nth-child(2n) .biz-card-icon { color: var(--biz-cyan); background: rgba(77,144,217,.15); }
.biz-card h3 { margin: 0 0 7px; font-size: 16px; }
.biz-card p { margin: 0; color: var(--biz-muted); font-size: 13px; }
.biz-text-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 17px; color: var(--biz-cyan); font-size: 12px; font-weight: 800; }
.biz-text-link:hover { color: var(--biz-white); }
.biz-feature-grid { grid-template-columns: repeat(3, 1fr); }
.biz-dashboard-points { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.biz-dashboard-point { padding: 17px; border: 1px solid var(--biz-line); border-radius: 12px; background: rgba(77,144,217,.08); }
.biz-dashboard-point b { display: block; margin-bottom: 4px; color: var(--biz-white); font-size: 13px; }
.biz-dashboard-point span { color: var(--biz-muted); font-size: 11px; }
.biz-control-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.biz-control-card { padding: 23px; border: 1px solid var(--biz-line); border-radius: var(--biz-radius); background: linear-gradient(145deg, rgba(21,47,80,.82), rgba(13,32,56,.62)); }
.biz-control-card .biz-card-icon { margin-bottom: 17px; }
.biz-control-card h3 { margin: 0 0 8px; font-size: 18px; line-height: 1.28; }
.biz-control-card > p { margin: 0; color: var(--biz-muted); font-size: 13px; }
.biz-control-card ul { display: grid; gap: 11px; margin: 20px 0 0; padding: 0; list-style: none; }
.biz-control-card li { display: grid; gap: 2px; padding-left: 13px; border-left: 2px solid var(--biz-orange); }
.biz-control-card li b { color: #dceafa; font-size: 12px; }
.biz-control-card li span { color: var(--biz-muted); font-size: 11px; }
.biz-control-flow { margin-top: 21px; padding: 13px; border: 1px solid rgba(53,208,154,.25); border-radius: 10px; color: var(--biz-green); background: rgba(53,208,154,.07); font-size: 11px; font-weight: 800; line-height: 1.8; }
.biz-control-flow i { color: var(--biz-muted); font-style: normal; }
.biz-control-note { margin-top: 17px !important; }
.biz-brand-chips { display: grid; gap: 7px; margin-top: 21px; }
.biz-brand-chips span { padding: 9px 11px; border-radius: 8px; color: var(--biz-cyan); background: rgba(77,144,217,.1); font-size: 11px; font-weight: 800; }
.biz-benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.biz-benefit { padding: 19px; border: 1px solid var(--biz-line); border-radius: 12px; background: rgba(255,255,255,.035); }
.biz-benefit b { display: block; margin-bottom: 5px; color: var(--biz-orange); font-size: 13px; }
.biz-benefit span { color: var(--biz-muted); font-size: 12px; }
.biz-industries { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.biz-industry { padding: 15px 17px; border-left: 2px solid var(--biz-orange); color: #d5e2f0; background: rgba(255,255,255,.045); font-size: 13px; font-weight: 700; }
.biz-industry span { display: block; margin-top: 3px; color: var(--biz-muted); font-size: 11px; font-weight: 400; }
.biz-industry em { display: block; margin-top: 9px; color: #7891a9; font-size: 10px; font-style: normal; font-weight: 500; line-height: 1.5; }

/* Interior pages */
.biz-page-hero { padding: 158px 0 78px; background: radial-gradient(circle at 86% 8%, rgba(77,144,217,.2), transparent 28%), var(--biz-ink); }
.biz-page-hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 70px; align-items: center; }
.biz-page-hero h1 { font-size: clamp(42px, 5.2vw, 66px); }
.biz-page-hero .biz-lede { font-size: 17px; }
.biz-breadcrumb { display: flex; align-items: center; gap: 9px; margin-bottom: 24px; color: var(--biz-muted); font-size: 11px; }
.biz-breadcrumb a:hover { color: var(--biz-white); }
.biz-breadcrumb b { color: var(--biz-orange); font-weight: 500; }
.biz-page-visual { padding: 19px; border: 1px solid var(--biz-line); border-radius: 25px; background: linear-gradient(145deg, rgba(21,47,80,.8), rgba(7,17,31,.95)); box-shadow: var(--biz-shadow); }
.biz-visual-label { display: flex; align-items: center; gap: 8px; margin-bottom: 15px; color: var(--biz-muted); font-size: 10px; font-weight: 800; letter-spacing: 1.3px; text-transform: uppercase; }
.biz-visual-label i { width: 7px; height: 7px; border-radius: 50%; background: var(--biz-green); }
.biz-ui-panel { padding: 18px; border: 1px solid var(--biz-line); border-radius: 14px; background: #0b1a2f; }
.biz-ui-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; color: #dceafa; font-size: 12px; font-weight: 800; }
.biz-ui-top small { color: var(--biz-muted); font-size: 10px; font-weight: 500; }
.biz-ui-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.biz-ui-chip { padding: 14px 10px; border-radius: 10px; background: rgba(77,144,217,.12); color: var(--biz-cyan); font-size: 10px; font-weight: 800; text-align: center; }
.biz-ui-chip strong { display: block; margin-top: 4px; color: var(--biz-white); font-size: 15px; }
.biz-feature-layout { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }
.biz-feature { padding: 25px; border: 1px solid var(--biz-line); border-radius: var(--biz-radius); background: rgba(255,255,255,.035); transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.biz-feature:hover { transform: translateY(-4px); border-color: rgba(114,199,255,.4); background: rgba(255,255,255,.055); }
.biz-feature-number { margin-bottom: 22px; color: var(--biz-orange); font-size: 12px; font-weight: 900; letter-spacing: 1px; }
.biz-feature h3 { margin: 0 0 8px; font-size: 18px; }
.biz-feature p { margin: 0; color: var(--biz-muted); font-size: 13px; }
.biz-feature ul { display: grid; gap: 7px; margin: 17px 0 0; padding: 0; list-style: none; color: #c8d9e9; font-size: 12px; }
.biz-feature li::before { content: '✓'; margin-right: 8px; color: var(--biz-green); font-weight: 900; }
.biz-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.biz-two-col .biz-section-head { margin-bottom: 0; }
.biz-check-list { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; }
.biz-check-list li { display: flex; gap: 11px; align-items: flex-start; color: #cfdeed; font-size: 14px; }
.biz-check-list li::before { content: '✓'; display: grid; place-items: center; flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; color: var(--biz-green); background: rgba(53,208,154,.12); font-size: 11px; font-weight: 900; }

/* Messaging mockup */
.biz-message-window { overflow: hidden; border: 1px solid var(--biz-line); border-radius: 15px; background: #0b1b33; }
.biz-message-head { display: flex; align-items: center; gap: 10px; padding: 14px; border-bottom: 1px solid var(--biz-line); background: rgba(255,255,255,.035); }
.biz-avatar { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 9px; color: var(--biz-ink); background: var(--biz-orange); font-size: 10px; font-weight: 900; }
.biz-message-head strong { display: block; font-size: 11px; }.biz-message-head small { color: var(--biz-green); font-size: 9px; }
.biz-message-body { display: grid; gap: 13px; padding: 18px; }
.biz-message-label { color: var(--biz-cyan); font-size: 9px; font-weight: 800; letter-spacing: 1.1px; text-transform: uppercase; }
.biz-bubble { max-width: 86%; padding: 12px 13px; border-radius: 5px 13px 13px 13px; color: #dbe8f5; background: #173454; font-size: 11px; }
.biz-bubble.direct { justify-self: end; border-radius: 13px 5px 13px 13px; color: var(--biz-ink); background: var(--biz-orange); }
.biz-delivered { color: var(--biz-green); font-size: 9px; text-align: right; }

/* Geo zones */
.biz-zone-visual { display: grid; gap: 11px; }
.biz-zone-card { padding: 15px; border: 1px solid rgba(53,208,154,.33); border-radius: 13px; background: rgba(53,208,154,.08); }
.biz-zone-card.outside { border-color: rgba(245,166,35,.35); background: rgba(245,166,35,.08); }
.biz-zone-status { display: flex; justify-content: space-between; align-items: center; margin-bottom: 11px; color: #dceafa; font-size: 11px; font-weight: 800; }
.biz-zone-status b { color: var(--biz-green); font-size: 10px; }.outside .biz-zone-status b { color: var(--biz-orange); }
.biz-zone-map { position: relative; height: 98px; overflow: hidden; border-radius: 9px; background: #183957; background-image: linear-gradient(22deg, transparent 46%, rgba(132,190,222,.2) 47%, transparent 50%), linear-gradient(90deg, rgba(114,199,255,.06) 1px, transparent 1px), linear-gradient(rgba(114,199,255,.06) 1px, transparent 1px); background-size: auto, 25px 25px, 25px 25px; }
.biz-zone-map::before { content: ''; position: absolute; inset: 16px 26%; border: 1px dashed var(--biz-green); border-radius: 50%; background: rgba(53,208,154,.12); }.outside .biz-zone-map::before { border-color: var(--biz-orange); background: rgba(245,166,35,.1); }
.biz-zone-map::after { content: '✓'; position: absolute; top: 39%; left: 48%; display: grid; place-items: center; width: 22px; height: 22px; border: 2px solid var(--biz-white); border-radius: 50%; color: var(--biz-white); background: var(--biz-green); font-size: 11px; font-weight: 900; }.outside .biz-zone-map::after { content: '×'; background: var(--biz-orange); }
.biz-zone-note { margin-top: 9px; color: var(--biz-muted); font-size: 10px; }
.biz-zone-note strong { color: var(--biz-white); }

/* Stamp and branding */
.biz-stamp-preview { overflow: hidden; border: 1px solid rgba(245,166,35,.4); border-radius: 14px; background: #080f1a; }
.biz-stamp-photo { min-height: 190px; display: grid; place-items: center; color: rgba(255,255,255,.22); background: radial-gradient(circle at 42% 32%, rgba(69,128,171,.45), transparent 13%), linear-gradient(145deg, #183b55, #0b1828 60%, #102b3b); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; }
.biz-stamp-data { display: grid; grid-template-columns: 1fr auto; gap: 12px; padding: 14px; border-top: 2px solid var(--biz-orange); background: rgba(9,17,28,.96); }
.biz-stamp-company { color: var(--biz-orange); font-size: 12px; font-weight: 900; }.biz-stamp-project { margin-top: 3px; color: #dceafa; font-size: 9px; }.biz-stamp-lines { margin-top: 8px; color: #93aac0; font-size: 8px; line-height: 1.65; }.biz-stamp-logo { display: grid; place-items: center; width: 52px; height: 52px; border: 1px solid rgba(245,166,35,.5); border-radius: 10px; color: var(--biz-orange); font-size: 8px; font-weight: 900; }
.biz-branding-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.biz-brand-option { padding: 20px; border: 1px solid var(--biz-line); border-radius: 14px; background: rgba(255,255,255,.035); }.biz-brand-option b { display: block; margin-bottom: 6px; color: var(--biz-cyan); font-size: 13px; }.biz-brand-option span { color: var(--biz-muted); font-size: 12px; }

/* Dashboard interior */
.biz-dashboard-large { padding: 15px; border: 1px solid var(--biz-line); border-radius: 18px; background: #0a192d; box-shadow: var(--biz-shadow); }
.biz-large-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; padding: 3px 2px 12px; border-bottom: 1px solid var(--biz-line); }.biz-large-top strong { font-size: 14px; }.biz-large-top span { padding: 5px 9px; border-radius: 6px; color: var(--biz-green); background: rgba(53,208,154,.1); font-size: 9px; font-weight: 800; }
.biz-dashboard-large .biz-dash-main { grid-template-columns: 1.6fr 1fr; }.biz-dashboard-large .biz-map-card, .biz-dashboard-large .biz-activity-card { min-height: 300px; }.biz-dashboard-large .biz-map { height: 250px; }
.biz-metric-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 20px; }.biz-metric { padding: 17px; border: 1px solid var(--biz-line); border-radius: 12px; background: rgba(255,255,255,.035); }.biz-metric b { display: block; color: var(--biz-orange); font-size: 25px; }.biz-metric span { color: var(--biz-muted); font-size: 10px; }

.biz-cta {
  position: relative;
  overflow: hidden;
  padding: 82px 0;
  text-align: center;
  background: linear-gradient(135deg, #132e4e, #0b1a30);
}
.biz-cta::before { content: ''; position: absolute; width: 420px; height: 420px; left: -160px; top: -220px; border-radius: 50%; background: rgba(77,144,217,.16); filter: blur(20px); }
.biz-cta > .biz-container { position: relative; }
.biz-cta h2 { max-width: 680px; margin: 0 auto 14px; font-size: clamp(32px, 4.4vw, 53px); line-height: 1.1; letter-spacing: -.04em; }.biz-cta p { max-width: 540px; margin: 0 auto 27px; color: var(--biz-muted); font-size: 15px; }
.biz-cta-brand { margin-bottom: 22px; color: var(--biz-cyan); font-size: 12px; font-weight: 900; letter-spacing: 1.5px; text-transform: uppercase; }
.biz-cta-actions { justify-content: center; margin: 0; }
.biz-footer { padding: 42px 0 24px; border-top: 1px solid var(--biz-line); background: #06101d; }.biz-footer-top { display: flex; justify-content: space-between; gap: 30px; padding-bottom: 28px; }.biz-footer-copy { max-width: 330px; color: var(--biz-muted); font-size: 12px; }.biz-footer-links { display: grid; grid-template-columns: repeat(2, auto); gap: 11px 40px; color: var(--biz-muted); font-size: 12px; }.biz-footer-links a:hover { color: var(--biz-white); }.biz-footer-bottom { display: flex; justify-content: space-between; padding-top: 20px; border-top: 1px solid var(--biz-line); color: #71869e; font-size: 10px; }
.biz-reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }.biz-reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .biz-links { display: none; }
  .biz-menu-button { display: block; }
  .biz-lang-switch { display: none; }
  .biz-mobile-menu.open { padding: 8px 0 18px; }.biz-mobile-menu a { padding: 11px 12px; color: #d5e2f0; border-radius: 8px; font-size: 13px; }.biz-mobile-menu a:hover { background: rgba(255,255,255,.07); }
  .biz-hero-grid, .biz-page-hero-grid { grid-template-columns: 1fr; gap: 46px; }.biz-hero { padding-top: 140px; }.biz-hero-content { max-width: 720px; }.biz-dashboard { max-width: 680px; margin-inline: auto; }
  .biz-card-grid, .biz-control-grid, .biz-benefits-grid { grid-template-columns: repeat(2, 1fr); }.biz-industries { grid-template-columns: repeat(2, 1fr); }.biz-feature-layout { grid-template-columns: repeat(2, 1fr); }.biz-workflow { grid-template-columns: repeat(3, 1fr); gap: 28px 0; }
  .biz-workforce-board { grid-template-columns: 1fr; }
  .biz-address-layout { grid-template-columns: 1fr; gap: 38px; }
  .biz-address-layout .biz-section-head { max-width: 720px; }
}

/* Mirror reading flow for RTL languages while keeping product mockups usable. */
body.rtl-active { direction: rtl; }
body.rtl-active .biz-nav-cta { margin-left: 0; margin-right: 8px; }
body.rtl-active .biz-links { margin-left: 0; margin-right: auto; }
body.rtl-active .biz-solution-menu { left: auto; right: 0; }
body.rtl-active .biz-lang-switch { margin-left: 0; margin-right: 4px; }
body.rtl-active .biz-lang-switch-menu { right: auto; left: 0; }
body.rtl-active .biz-industry { border-left: 0; border-right: 2px solid var(--biz-orange); }
body.rtl-active .biz-feature li::before { margin-right: 0; margin-left: 8px; }
body.rtl-active .biz-dashboard { transform: perspective(1100px) rotateY(4deg) rotateX(2deg); }
body.rtl-active .biz-breadcrumb,
body.rtl-active .biz-zone-status { flex-direction: row-reverse; }
body.rtl-active .biz-message-label,
body.rtl-active .biz-delivered { text-align: right; }
body.rtl-active .biz-bubble.direct { justify-self: start; }

@media (max-width: 680px) {
  .biz-container { width: min(100% - 32px, 560px); }.biz-nav-inner { min-height: 68px; }.biz-brand-name { font-size: 14px; }.biz-brand img { width: 30px; height: 30px; }
  .biz-hero { padding: 120px 0 72px; }.biz-hero h1, .biz-page-hero h1 { font-size: clamp(39px, 12vw, 56px); }.biz-lede { font-size: 16px; }.biz-actions { margin-bottom: 27px; }.biz-button { flex: 1; min-width: 150px; }.biz-proof-line { gap: 10px 14px; font-size: 10px; }
  .biz-dashboard, body.rtl-active .biz-dashboard { padding: 8px; border-radius: 17px; transform: none; }.biz-dash-stats { grid-template-columns: repeat(2, 1fr); }.biz-dash-main, .biz-dashboard-large .biz-dash-main { grid-template-columns: 1fr; }.biz-map-card, .biz-activity-card, .biz-dashboard-large .biz-map-card, .biz-dashboard-large .biz-activity-card { min-height: unset; }.biz-map { height: 175px; }.biz-activity-card { display: none; }
  .biz-section { padding: 72px 0; }.biz-section-head { margin-bottom: 32px; }.biz-workflow { grid-template-columns: 1fr 1fr; gap: 28px 15px; }.biz-workflow-item { padding: 0; }.biz-workflow-item:not(:last-child)::after { display: none; }.biz-workflow p { font-size: 12px; }.biz-process-grid, .biz-card-grid, .biz-control-grid, .biz-benefits-grid, .biz-feature-layout, .biz-branding-grid { grid-template-columns: 1fr; }.biz-card { min-height: unset; }.biz-industries { grid-template-columns: 1fr; }.biz-use-case-grid { grid-template-columns: 1fr; }.biz-use-case-media { height: 230px; }.biz-generated-grid { grid-template-columns: 1fr; grid-template-rows: none; }.biz-generated-card, .biz-generated-card-featured { grid-row: auto; height: 230px; }
  .biz-two-col { grid-template-columns: 1fr; gap: 35px; }.biz-two-col .biz-section-head { margin-bottom: 0; }.biz-page-hero { padding: 120px 0 62px; }.biz-page-visual { padding: 12px; }.biz-ui-row { grid-template-columns: 1fr 1fr; }.biz-metric-strip { grid-template-columns: repeat(2, 1fr); }.biz-work-order { grid-template-columns: 1fr; gap: 17px; padding: 19px; }.biz-order-side { padding: 17px 0 0; border-top: 1px solid var(--biz-line); border-left: 0; }.biz-satellite-canvas { height: 220px; }.biz-footer-top, .biz-footer-bottom { flex-direction: column; }.biz-footer-links { grid-template-columns: repeat(2, 1fr); }.biz-cta { padding: 66px 0; }
  .biz-address-card { grid-template-columns: 1fr; }.biz-address-map { min-height: 200px; }.biz-address-content { padding: 20px 17px; }
  .biz-lightbox { padding: 10px; }.biz-lightbox-dialog { max-height: calc(100dvh - 20px); border-radius: 16px; }.biz-lightbox-topbar, .biz-lightbox-bottom { padding: 13px 14px; }.biz-lightbox-stage { height: min(62vh, 560px); min-height: 250px; }.biz-lightbox-image { max-width: calc(100% - 82px); max-height: calc(100% - 28px); }.biz-lightbox-nav { width: 34px; height: 34px; font-size: 28px; }.biz-lightbox-nav.prev { left: 10px; }.biz-lightbox-nav.next { right: 10px; }.biz-lightbox-caption { font-size: 11px; }.biz-lightbox-hint { padding: 0 14px 12px; font-size: 9px; }.biz-photo-zoom-hint { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ── VISUAL POLISH & ORIGINAL IMAGE LAYER ─────────────────── */
::selection { color: var(--biz-ink); background: var(--biz-orange); }

.biz-page {
  position: relative;
  background:
    radial-gradient(circle at 50% 0%, rgba(77,144,217,.06), transparent 28%),
    var(--biz-ink);
}
.biz-page::before {
  content: '';
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background-image:
    linear-gradient(rgba(114,199,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(114,199,255,.08) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(to bottom, #000, transparent 58%);
}
.biz-nav { box-shadow: 0 8px 35px rgba(0,0,0,.12); }
.biz-brand { transition: transform .2s ease; }
.biz-brand:hover { transform: translateY(-1px); }
.biz-brand img { box-shadow: 0 5px 16px rgba(77,144,217,.18); }

.biz-hero,
.biz-page-hero {
  position: relative;
  isolation: isolate;
}
.biz-hero::after,
.biz-page-hero::after {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0 0 0 42%;
  opacity: .16;
  background-image:
    linear-gradient(90deg, var(--biz-ink) 0%, rgba(7,17,31,.72) 28%, rgba(7,17,31,.18) 100%),
    url("generated-images/business-field-capture.jpg");
  background-position: center, 62% center;
  background-size: cover;
  mask-image: linear-gradient(90deg, transparent, #000 15%, #000 80%, transparent);
  pointer-events: none;
}
.biz-page-communication .biz-page-hero::after,
.biz-page-dashboard .biz-page-hero::after {
  background-image:
    linear-gradient(90deg, var(--biz-ink) 0%, rgba(7,17,31,.72) 28%, rgba(7,17,31,.18) 100%),
    url("generated-images/business-office-oversight.jpg");
  background-position: center, center;
}
.biz-page-zones .biz-page-hero::after,
.biz-page-stamp .biz-page-hero::after {
  background-image:
    linear-gradient(90deg, var(--biz-ink) 0%, rgba(7,17,31,.72) 28%, rgba(7,17,31,.18) 100%),
    url("generated-images/business-site-verification.jpg");
  background-position: center, center;
}
.biz-page-branding .biz-page-hero::after {
  background-image:
    linear-gradient(90deg, var(--biz-ink) 0%, rgba(7,17,31,.72) 28%, rgba(7,17,31,.18) 100%),
    url("generated-images/business-site-verification.jpg");
}

.biz-section-head { position: relative; }
.biz-section-head::before {
  content: '';
  position: absolute;
  top: 4px;
  left: -18px;
  width: 3px;
  height: 38px;
  border-radius: 4px;
  background: linear-gradient(var(--biz-orange), var(--biz-blue));
  opacity: .85;
}
.biz-eyebrow { letter-spacing: 2px; }
.biz-section h2,
.biz-cta h2,
.biz-hero h1,
.biz-page-hero h1 { text-wrap: balance; }
.biz-feature,
.biz-card,
.biz-control-card,
.biz-process-card,
.biz-brand-option,
.biz-benefit,
.biz-industry {
  position: relative;
  overflow: hidden;
}
.biz-feature::after,
.biz-card::after,
.biz-control-card::after,
.biz-process-card::after,
.biz-brand-option::after {
  content: '';
  position: absolute;
  right: -55px;
  bottom: -65px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(114,199,255,.07);
  filter: blur(10px);
  pointer-events: none;
}
.biz-feature-number { letter-spacing: 1.8px; }
.biz-feature:hover,
.biz-process-card:hover,
.biz-brand-option:hover {
  box-shadow: 0 17px 45px rgba(0,0,0,.18);
}

.biz-page-visual {
  position: relative;
  overflow: hidden;
}
.biz-page-visual::before {
  content: '';
  position: absolute;
  z-index: 0;
  inset: 0;
  opacity: .17;
  background:
    linear-gradient(145deg, rgba(7,17,31,.15), rgba(7,17,31,.9)),
    url("generated-images/business-field-capture.jpg") center / cover;
  filter: saturate(.9);
  pointer-events: none;
}
.biz-page-visual > * { position: relative; z-index: 1; }
.biz-page-communication .biz-page-visual::before,
.biz-page-dashboard .biz-page-visual::before {
  background-image:
    linear-gradient(145deg, rgba(7,17,31,.15), rgba(7,17,31,.9)),
    url("generated-images/business-office-oversight.jpg");
}
.biz-page-zones .biz-page-visual::before,
.biz-page-stamp .biz-page-visual::before,
.biz-page-branding .biz-page-visual::before {
  background-image:
    linear-gradient(145deg, rgba(7,17,31,.15), rgba(7,17,31,.9)),
    url("generated-images/business-site-verification.jpg");
}
.biz-page-branding .biz-stamp-photo,
.biz-page-stamp .biz-stamp-photo {
  position: relative;
  background:
    linear-gradient(180deg, rgba(8,15,26,.1), rgba(8,15,26,.58)),
    url("generated-images/business-site-verification.jpg") center 42% / cover;
  color: rgba(255,255,255,.72);
}
.biz-page-branding .biz-stamp-photo::after,
.biz-page-stamp .biz-stamp-photo::after {
  content: 'ORIGINAL FIELD IMAGE';
  position: absolute;
  right: 12px;
  bottom: 10px;
  padding: 5px 7px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 5px;
  color: rgba(255,255,255,.7);
  background: rgba(7,17,31,.5);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1px;
}
.biz-generated-card::after {
  content: '';
  position: absolute;
  inset: 1px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: calc(var(--biz-radius) - 1px);
  pointer-events: none;
}
.biz-cta {
  background:
    linear-gradient(135deg, rgba(19,46,78,.92), rgba(11,26,48,.94)),
    url("generated-images/business-office-oversight.jpg") center / cover;
}
.biz-cta::after {
  content: 'CAPTURE  /  COMMUNICATE  /  CONTROL';
  position: absolute;
  right: 24px;
  bottom: 20px;
  color: rgba(114,199,255,.2);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 2px;
}
.biz-footer { background: linear-gradient(180deg, #06101d, #040b14); }

@media (max-width: 980px) {
  .biz-hero::after,
  .biz-page-hero::after { inset: 0; opacity: .09; mask-image: linear-gradient(to bottom, #000, transparent 72%); }
  .biz-section-head::before { left: -12px; }
}

@media (max-width: 680px) {
  .biz-section-head::before { display: none; }
  .biz-cta::after { right: 12px; bottom: 12px; font-size: 7px; letter-spacing: 1px; }
  .biz-page-visual::before { opacity: .1; }
}

@media (prefers-reduced-motion: reduce) {
  .biz-sparkle-field { display: none; }
  .biz-brand,
  .biz-feature,
  .biz-process-card,
  .biz-brand-option { transition: none; }
}

/* ── STORYTELLING PATTERNS ───────────────────────────────────── */
.biz-section {
  position: relative;
  isolation: isolate;
}

.biz-section:not(.biz-section-alt)::before,
.biz-section-alt::after {
  content: '';
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.biz-section:not(.biz-section-alt)::before {
  top: 0;
  left: 50%;
  width: min(1180px, calc(100% - 48px));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(114,199,255,.2), transparent);
  transform: translateX(-50%);
}

.biz-section-alt::after {
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  opacity: .22;
  background:
    linear-gradient(115deg, transparent 0 34%, rgba(114,199,255,.08) 34% 34.3%, transparent 34.3% 63%, rgba(245,166,35,.06) 63% 63.3%, transparent 63.3%),
    linear-gradient(90deg, rgba(114,199,255,.06) 1px, transparent 1px),
    linear-gradient(rgba(114,199,255,.06) 1px, transparent 1px);
  background-size: auto, 58px 58px, 58px 58px;
  mask-image: linear-gradient(90deg, transparent, #000 30%);
}

.biz-page-hero {
  position: relative;
  isolation: isolate;
}

.biz-page-hero::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .38;
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(114,199,255,.08) 48% 48.2%, transparent 48.2% 70%, rgba(245,166,35,.08) 70% 70.2%, transparent 70.2%),
    linear-gradient(90deg, rgba(114,199,255,.045) 1px, transparent 1px),
    linear-gradient(rgba(114,199,255,.045) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
  pointer-events: none;
}

.biz-page-features .biz-solution-menu a[href="business-features.html"],
.biz-page-communication .biz-solution-menu a[href="business-communication.html"],
.biz-page-zones .biz-solution-menu a[href="business-geo-zones.html"],
.biz-page-branding .biz-solution-menu a[href="business-branding.html"],
.biz-page-stamp .biz-solution-menu a[href="business-stamp.html"],
.biz-page-dashboard .biz-solution-menu a[href="business-dashboard.html"] {
  color: var(--biz-white);
  background: rgba(245,166,35,.12);
}

.biz-feature-layout,
.biz-card-grid,
.biz-process-grid {
  align-items: stretch;
}

.biz-feature,
.biz-card,
.biz-process-card,
.biz-control-card,
.biz-brand-option {
  box-shadow: 0 13px 36px rgba(0,0,0,.12);
}

.biz-feature::before,
.biz-card::before,
.biz-process-card::before,
.biz-control-card::before,
.biz-brand-option::before {
  content: '';
  position: absolute;
  top: 0;
  right: 18px;
  left: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(114,199,255,.58), transparent);
  opacity: .45;
  pointer-events: none;
}

.biz-feature:first-child,
.biz-feature-grid > .biz-card:first-child {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(77,144,217,.16), rgba(13,32,56,.72) 62%),
    radial-gradient(circle at 90% 10%, rgba(53,208,154,.1), transparent 30%);
  border-color: rgba(114,199,255,.34);
}

.biz-feature:first-child .biz-feature-number,
.biz-feature-grid > .biz-card:first-child .biz-card-icon {
  color: var(--biz-orange);
}

.biz-feature:first-child h3,
.biz-feature-grid > .biz-card:first-child h3 {
  font-size: 20px;
}

.biz-process-grid {
  position: relative;
}

.biz-process-grid::before {
  content: '';
  position: absolute;
  top: 44px;
  right: 8%;
  left: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(114,199,255,.5), transparent);
  pointer-events: none;
}

.biz-process-card {
  z-index: 1;
}

.biz-process-card .biz-step {
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 8px #0b1b33;
}

.biz-workforce-board,
.biz-work-order,
.biz-proof-card,
.biz-dashboard-large {
  position: relative;
}

.biz-workforce-board::before,
.biz-proof-card::before,
.biz-dashboard-large::before {
  content: 'FIELD SIGNAL';
  position: absolute;
  z-index: 3;
  top: 12px;
  right: 15px;
  padding: 4px 7px;
  border: 1px solid rgba(53,208,154,.3);
  border-radius: 999px;
  color: rgba(125,231,194,.82);
  background: rgba(7,17,31,.56);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 1.2px;
  pointer-events: none;
}

.biz-work-order::before {
  content: 'NEXT ACTION';
  top: 13px;
  right: 19px;
  border-color: rgba(245,166,35,.32);
  color: rgba(245,190,96,.9);
}

.biz-cta {
  border-top: 1px solid rgba(114,199,255,.16);
  border-bottom: 1px solid rgba(245,166,35,.18);
}

.biz-cta .biz-button {
  box-shadow: 0 14px 35px rgba(245,166,35,.2);
}

.biz-inquiry {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(77,144,217,.13), transparent 28%),
    linear-gradient(135deg, #0b1b33, #081321 72%);
}

.biz-inquiry::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .32;
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(114,199,255,.09) 48% 48.2%, transparent 48.2%),
    linear-gradient(90deg, rgba(114,199,255,.045) 1px, transparent 1px),
    linear-gradient(rgba(114,199,255,.045) 1px, transparent 1px);
  background-size: auto, 64px 64px, 64px 64px;
  mask-image: linear-gradient(90deg, #000, transparent 88%);
}

.biz-inquiry-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(420px, 1.15fr);
  align-items: center;
  gap: clamp(34px, 7vw, 100px);
}

.biz-inquiry-copy h2 {
  max-width: 570px;
  margin: 12px 0 18px;
}

.biz-inquiry-copy > p {
  max-width: 530px;
  color: var(--biz-muted);
}

.biz-inquiry-notes {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.biz-inquiry-notes > div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #d6e4f3;
  font-size: 13px;
}

.biz-inquiry-notes i {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  flex: 0 0 28px;
  border: 1px solid rgba(245,166,35,.35);
  border-radius: 50%;
  color: var(--biz-orange);
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .4px;
}

.biz-inquiry-form {
  position: relative;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(114,199,255,.24);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(21,47,80,.94), rgba(9,24,43,.94));
  box-shadow: 0 24px 70px rgba(0,0,0,.25);
}

.biz-inquiry-form::before {
  content: '';
  position: absolute;
  top: 0;
  right: 32px;
  left: 32px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--biz-orange), var(--biz-cyan), transparent);
}

.biz-form-heading {
  display: grid;
  gap: 4px;
  margin-bottom: 22px;
}

.biz-form-heading span {
  color: var(--biz-cyan);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.7px;
}

.biz-form-heading b {
  color: var(--biz-white);
  font-size: 18px;
  line-height: 1.35;
}

.biz-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.biz-inquiry-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  color: #cddbeb;
  font-size: 11px;
  font-weight: 700;
}

.biz-inquiry-form input,
.biz-inquiry-form select,
.biz-inquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(168,201,235,.2);
  border-radius: 10px;
  padding: 12px 13px;
  color: var(--biz-white);
  background: rgba(7,17,31,.52);
  font: inherit;
  font-size: 12px;
  outline: none;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.biz-inquiry-form textarea {
  min-height: 108px;
  resize: vertical;
}

.biz-inquiry-form input::placeholder,
.biz-inquiry-form textarea::placeholder {
  color: #71869e;
}

.biz-inquiry-form select {
  appearance: none;
  cursor: pointer;
}

.biz-inquiry-form input:focus,
.biz-inquiry-form select:focus,
.biz-inquiry-form textarea:focus {
  border-color: var(--biz-cyan);
  background: rgba(7,17,31,.72);
  box-shadow: 0 0 0 3px rgba(114,199,255,.1);
}

.biz-form-trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0 !important;
}

.biz-inquiry-form .biz-button {
  border: 0;
  cursor: pointer;
}

.biz-form-note,
.biz-form-status {
  margin: 11px 0 0;
  color: #8499b1;
  font-size: 10px;
}

.biz-form-status {
  color: var(--biz-orange);
}

@media (max-width: 980px) {
  .biz-inquiry-grid { grid-template-columns: 1fr; gap: 34px; }
  .biz-inquiry-copy > p { max-width: 680px; }
  .biz-feature:first-child,
  .biz-feature-grid > .biz-card:first-child { grid-column: span 2; }
  .biz-process-grid::before { right: 12%; left: 12%; }
}

@media (max-width: 680px) {
  .biz-form-row { grid-template-columns: 1fr; gap: 0; }
  .biz-inquiry-form { padding: 22px 18px; }
  .biz-section-alt::after { width: 75%; opacity: .12; }
  .biz-feature:first-child,
  .biz-feature-grid > .biz-card:first-child { grid-column: auto; }
  .biz-process-grid::before { display: none; }
  .biz-process-card .biz-step { box-shadow: none; }
  .biz-workforce-board::before,
  .biz-proof-card::before,
  .biz-dashboard-large::before { top: 9px; right: 10px; font-size: 7px; }
}

@media (prefers-reduced-motion: reduce) {
  .biz-feature,
  .biz-card,
  .biz-process-card,
  .biz-control-card,
  .biz-brand-option,
  .biz-cta .biz-button { transition: none; }
}

/* ── REFERENCE-LED BUSINESS SHOWCASE REFRESH ──────────────── */
:root {
  --biz-showcase-bg: #07172b;
  --biz-showcase-panel: #102642;
  --biz-showcase-blue: #72a9ff;
  --biz-showcase-line: rgba(125, 178, 236, .22);
}

body.biz-page {
  color: #f5f8fc;
  background:
    radial-gradient(circle at 78% 4%, rgba(44, 91, 161, .16), transparent 25%),
    var(--biz-showcase-bg);
}

.biz-nav {
  background: rgba(5, 16, 31, .78);
  border-bottom-color: rgba(125, 178, 236, .1);
}

.biz-nav-inner { min-height: 68px; }
.biz-brand img { width: 36px; height: 36px; border-radius: 11px; }
.biz-links > a,
.biz-solutions > summary { color: #c5d5e8; }
.biz-nav-cta {
  border: 1px solid rgba(245,166,35,.68);
  background: linear-gradient(135deg, #f5a623, #f8bf4d);
  color: #081321 !important;
  box-shadow: 0 8px 24px rgba(245,166,35,.16);
}

.biz-hero {
  min-height: 690px;
  padding: 148px 0 86px;
  background:
    radial-gradient(ellipse at 82% 28%, rgba(71, 132, 218, .2), transparent 31%),
    radial-gradient(ellipse at 7% 86%, rgba(245, 166, 35, .08), transparent 25%),
    #07172b;
}

.biz-hero::after {
  content: '';
  position: absolute;
  right: -8%;
  bottom: -28%;
  width: 52%;
  height: 68%;
  border: 1px solid rgba(114, 169, 255, .1);
  transform: rotate(-18deg);
  pointer-events: none;
}

.biz-hero-grid {
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(36px, 6vw, 78px);
}

.biz-hero-content { position: relative; z-index: 1; }
.biz-kicker {
  margin-bottom: 18px;
  padding: 3px 0 3px 12px;
  border: 0;
  border-left: 2px solid var(--biz-orange);
  border-radius: 0;
  color: #f5b23e;
  background: transparent;
  letter-spacing: 1.8px;
}

.biz-hero h1 {
  max-width: 650px;
  margin-bottom: 24px;
  color: #f6b13c;
  font-size: clamp(45px, 5.6vw, 76px);
  letter-spacing: -.06em;
}

.biz-hero h1 span {
  display: block;
  color: var(--biz-showcase-blue);
}

.biz-lede {
  max-width: 560px;
  color: #b4c6dc;
  font-size: 16px;
  line-height: 1.75;
}

.biz-hero-tagline {
  margin-top: -8px;
  color: #e2ebf6;
  font-size: 11px;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.biz-actions { margin-bottom: 32px; }
.biz-button {
  min-height: 44px;
  padding: 11px 17px;
  border-radius: 8px;
  background: linear-gradient(135deg, #f5a623, #ffc65e);
  box-shadow: 0 12px 28px rgba(245,166,35,.18);
  color: #081321;
  font-weight: 900;
}

.biz-button:hover {
  background: linear-gradient(135deg, #ffc15a, #f5a623);
  box-shadow: 0 16px 35px rgba(245,166,35,.28);
}

.biz-button.biz-button-outline {
  border-color: rgba(245,166,35,.72);
  background: rgba(7, 23, 43, .28);
  box-shadow: none;
  color: #f5c86f;
}

.biz-button.biz-button-outline:hover {
  background: rgba(245,166,35,.12);
  color: #fff2d2;
}

.biz-proof-line {
  gap: 10px 17px;
  color: #b9cce0;
  font-size: 10px;
}

.biz-proof-line span {
  padding-right: 13px;
  border-right: 1px solid rgba(125,178,236,.18);
}

.biz-proof-line span:last-child { border-right: 0; }

.biz-dashboard {
  padding: 10px;
  border-color: rgba(125,178,236,.35);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(31, 68, 111, .94), rgba(7, 22, 42, .98)),
    #0b1b33;
  box-shadow: 0 36px 90px rgba(0,0,0,.42), 0 0 0 7px rgba(114,169,255,.045);
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}

.biz-dashboard::before {
  content: 'LIVE FIELD SIGNAL';
  position: absolute;
  top: -13px;
  right: 22px;
  padding: 5px 8px;
  border: 1px solid rgba(53,208,154,.42);
  border-radius: 999px;
  color: #86e6c1;
  background: #0a2038;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 1.2px;
}

.biz-dashboard::after {
  right: -50px;
  bottom: -38px;
  width: 190px;
  height: 190px;
  background: rgba(77,144,217,.2);
}

.biz-dash-top {
  padding: 8px 10px 14px;
  color: #e8f1fb;
  letter-spacing: .15px;
}

.biz-dash-stats { gap: 7px; }
.biz-dash-stat {
  min-height: 70px;
  padding: 10px;
  border-color: rgba(125,178,236,.18);
  border-radius: 8px;
  background: rgba(4,14,28,.46);
}

.biz-dash-stat b {
  color: #f6ba4b;
  font-size: 22px;
}

.biz-dash-stat span { font-size: 9px; }
.biz-dash-main { gap: 8px; margin-top: 8px; }
.biz-map-card,
.biz-activity-card {
  border-color: rgba(125,178,236,.2);
  border-radius: 10px;
  background: rgba(13, 39, 69, .82);
}

.biz-map { min-height: 224px; border-radius: 8px; }
.biz-activity-card { padding: 12px; }
.biz-activity { padding: 11px 0; border-bottom-color: rgba(125,178,236,.13); }

.biz-section {
  border-top: 1px solid rgba(125,178,236,.12);
  background: #07172b;
}

.biz-section-alt {
  background:
    linear-gradient(90deg, rgba(114,169,255,.025), transparent 42%, rgba(245,166,35,.025)),
    #081a30;
}

.biz-section-head h2,
.biz-inquiry-copy h2 {
  color: var(--biz-showcase-blue);
  letter-spacing: -.045em;
}

.biz-section-head h2 span,
.biz-inquiry-copy h2 span { color: #eef5fc; }

.biz-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #f5b23e;
  letter-spacing: 1.7px;
}

.biz-eyebrow::before {
  content: '';
  width: 2px;
  height: 18px;
  background: var(--biz-orange);
}

.biz-card,
.biz-feature,
.biz-process-card,
.biz-control-card,
.biz-brand-option,
.biz-problem-card,
.biz-dashboard-point,
.biz-benefit,
.biz-industry {
  border-color: var(--biz-showcase-line);
  border-radius: 13px;
  background:
    linear-gradient(145deg, rgba(18, 48, 82, .9), rgba(9, 27, 49, .86));
}

.biz-card,
.biz-feature,
.biz-process-card,
.biz-control-card,
.biz-brand-option {
  box-shadow: 0 17px 42px rgba(0,0,0,.16);
}

.biz-card:hover,
.biz-feature:hover,
.biz-control-card:hover {
  border-color: rgba(114,169,255,.52);
  box-shadow: 0 22px 55px rgba(0,0,0,.24);
}

.biz-card-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border: 1px solid rgba(245,166,35,.22);
  border-radius: 10px;
}

.biz-dashboard-points { gap: 9px; }
.biz-dashboard-point {
  padding: 15px;
  background: rgba(16, 49, 84, .56);
}

.biz-control-card li { border-left-color: var(--biz-cyan); }
.biz-control-flow {
  border-color: rgba(53,208,154,.32);
  background: rgba(53,208,154,.06);
}

.biz-benefit {
  padding: 17px;
  background: rgba(255,255,255,.035);
}

.biz-industry {
  border-left-width: 2px;
  background: rgba(16, 49, 84, .42);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.biz-industry:hover {
  transform: translateY(-3px);
  border-left-color: var(--biz-cyan);
  background: rgba(26, 67, 109, .58);
}

.biz-cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(77,144,217,.14), transparent 43%),
    #061528;
}

.biz-cta h2 { color: var(--biz-showcase-blue); }
.biz-cta h2 span { color: #f6ba4b; }
.biz-cta .biz-button { box-shadow: 0 16px 38px rgba(245,166,35,.25); }

@media (max-width: 980px) {
  .biz-hero { padding-top: 130px; }
  .biz-hero-grid { gap: 40px; }
  .biz-proof-line span { padding-right: 8px; }
}

@media (max-width: 680px) {
  .biz-hero {
    min-height: auto;
    padding: 116px 0 70px;
  }
  .biz-hero-grid { gap: 47px; }
  .biz-hero h1 { font-size: clamp(42px, 12vw, 58px); }
  .biz-lede { font-size: 15px; }
  .biz-proof-line span { border-right: 0; }
  .biz-dashboard,
  body.rtl-active .biz-dashboard {
    transform: none;
  }
  .biz-dashboard::before { top: -11px; right: 12px; }
  .biz-map { min-height: 175px; }
}