/* === CHUNK 1/4: CSS reset, custom properties, base typography, glow, header/nav, hero, buttons, scroll indicator === */

:root {
  --color-dark: #000000;
  --color-text: #f5f5f7;
  --color-text-secondary: #a1a1a6;
  --color-text-muted: #6e6e73;
  --color-blue: #0071e3;
  --color-blue-hover: #0077ed;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-glass: rgba(28, 28, 30, 1);
  --color-surface: #1c1c1e;
}

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

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

html,
body {
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-dark);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

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

main {
  position: relative;
  z-index: 2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 0 clamp(1rem, 4vw, 22px);
  border-bottom: 1px solid var(--color-border);
  background: rgba(29, 29, 31, 0.72);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.site-header.is-sticky {
  background: rgba(0, 0, 0, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0.75rem 2rem rgba(4, 4, 12, 0.45);
}

.brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  white-space: nowrap;
}

.logo-sm {
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
}

.brand-text {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2rem);
}

.site-nav a {
  position: relative;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: transparent;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #ffffff;
}

.menu-toggle {
  display: none;
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--color-border);
  border-radius: 0.65rem;
  background: var(--color-glass);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 50%;
  width: 1.25rem;
  height: 2px;
  border-radius: 999px;
  background: var(--color-text);
  transform: translateX(-50%);
  transition: transform 0.2s ease, top 0.2s ease, opacity 0.2s ease;
}

.menu-toggle span:nth-child(1) {
  top: calc(50% - 0.28rem);
}

.menu-toggle span:nth-child(2) {
  top: calc(50% + 0.28rem);
}

.menu-toggle.is-active span:nth-child(1) {
  top: 50%;
  transform: translateX(-50%) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  top: 50%;
  transform: translateX(-50%) rotate(-45deg);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 4.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(100%, 52rem);
  margin-inline: auto;
  padding: clamp(5rem, 10vh, 7rem) clamp(1rem, 3vw, 2rem) clamp(5.5rem, 11vh, 7rem);
  text-align: center;
}

.hero h1 {
  font-size: clamp(3rem, 7.5vw, 5.6rem);
  line-height: 1.06;
  letter-spacing: -0.015em;
  font-weight: 600;
  color: #f5f5f7;
}

.hero-subtitle {
  max-width: 36rem;
  margin: 1rem auto 0;
  font-size: clamp(1.125rem, 2vw, 1.3125rem);
  color: var(--color-text-secondary);
  font-weight: 400;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1px solid transparent;
  border-radius: 980px;
  padding: 12px 22px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease,
    border-color 0.2s ease, color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: none;
}

.btn:focus-visible,
.menu-toggle:focus-visible,
.site-nav a:focus-visible {
  outline: 2px solid var(--color-blue);
  outline-offset: 3px;
}

.btn-primary {
  color: #ffffff;
  background: var(--color-blue);
  box-shadow: none;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #0077ed;
  box-shadow: none;
}

.btn-secondary {
  color: var(--color-blue);
  background: transparent;
  border-color: transparent;
  padding: 12px 4px;
  font-size: 21px;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  color: var(--color-blue-hover);
  background: transparent;
  border-color: transparent;
  text-decoration: underline;
}

.hero-visual {
  margin-top: 3.5rem;
  perspective: 1200px;
}

.hero-ui-card {
  max-width: 52rem;
  margin: 0 auto;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  background: #161617;
  overflow: hidden;
  transform: perspective(1200px) rotateX(2deg);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
}

.hero-ui-bar {
  display: flex;
  gap: 6px;
  padding: 8px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  align-items: center;
}

.hero-ui-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}

.hero-ui-dot.red { background: #ff5f57; }
.hero-ui-dot.yellow { background: #febc2e; }
.hero-ui-dot.green { background: #28c840; }

.hero-app-name {
  font-size: 10px;
  color: var(--color-text-muted);
  margin-left: auto;
  letter-spacing: 0.02em;
}

.hero-ui-content {
  display: grid;
  grid-template-columns: 130px 1fr;
  min-height: 260px;
}

.hero-ui-sidebar {
  padding: 12px 10px;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 11px;
  color: var(--color-text-muted);
  transition: background 0.2s ease;
}

.hero-nav-item.active {
  background: rgba(59, 130, 246, 0.12);
  color: #5ab0ff;
}

.hero-nav-icon {
  font-size: 12px;
  line-height: 1;
}

.hero-ui-main {
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Hero stats row */
.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.hero-stat-card {
  padding: 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.hero-stat-num {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
}

.hero-stat-card small {
  font-size: 8px;
  color: var(--color-text-muted);
}

.hero-stat-card.accent-green { background: rgba(16, 185, 129, 0.08); border-color: rgba(16, 185, 129, 0.2); }
.hero-stat-card.accent-green .hero-stat-num { color: #34d399; }
.hero-stat-card.accent-blue { background: rgba(59, 130, 246, 0.08); border-color: rgba(59, 130, 246, 0.2); }
.hero-stat-card.accent-blue .hero-stat-num { color: #5ab0ff; }
.hero-stat-card.accent-amber { background: rgba(245, 158, 11, 0.08); border-color: rgba(245, 158, 11, 0.2); }
.hero-stat-card.accent-amber .hero-stat-num { color: #fbbf24; }

/* Hero main grid: pipeline + chart */
.hero-main-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 12px;
  flex: 1;
}

.hero-section-title {
  font-size: 9px;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

/* Pipeline mini */
.hero-pipeline-mini {
  padding: 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-pipeline-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.hero-pipe-label {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 8px;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 5px;
}

.hero-pipe-label i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  display: inline-block;
}

.hero-pipe-item {
  font-size: 8px;
  padding: 4px 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 2px solid rgba(245, 158, 11, 0.4);
  color: var(--color-text-secondary);
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-pipe-item.hl {
  border-left-color: rgba(59, 130, 246, 0.5);
  background: rgba(59, 130, 246, 0.06);
}

.hero-pipe-item.done {
  border-left-color: rgba(16, 185, 129, 0.4);
  color: var(--color-text-muted);
}

/* Chart mini */
.hero-chart-mini {
  padding: 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
}

.hero-mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  flex: 1;
  min-height: 80px;
}

.hero-chart-bar {
  flex: 1;
  height: var(--h, 50%);
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.35), rgba(59, 130, 246, 0.12));
  position: relative;
  transition: height 0.6s ease;
}

.hero-chart-bar.today {
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.7), rgba(59, 130, 246, 0.3));
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.3);
}

.hero-chart-bar small {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 7px;
  color: var(--color-text-muted);
}

/* === CHUNK 2/4: Section layout, .reveal animation, .eyebrow, services grid with glass cards, service icons, process section with sticky panel and step highlighting === */

.section {
  padding: clamp(5rem, 10vw, 7.5rem) 0;
}

.container {
  width: min(100% - 3rem, 76rem);
  margin-inline: auto;
}

.section-head {
  max-width: 42rem;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.section-head h2 {
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 32px, 0) scale(0.97);
  will-change: opacity, transform;
}

.reveal.in-view {
  animation: reveal-up-3d 800ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes reveal-up-3d {
  from {
    opacity: 0;
    transform: translate3d(0, 32px, 0) scale(0.97);
  }

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

.hero .reveal {
  opacity: 1;
  transform: none;
  animation: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.in-view {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.65rem;
  color: var(--color-text-secondary);
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16.5rem, 1fr));
  gap: clamp(1rem, 2.2vw, 2rem);
}

.card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(28, 28, 30, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 
    0 2px 4px rgba(0,0,0,0.1),
    0 8px 24px rgba(0,0,0,0.15),
    inset 0 1px 0 rgba(255,255,255,0.04);
  transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1), 
              box-shadow 400ms ease,
              border-color 400ms ease,
              background-color 300ms ease;
}

.card:hover {
  transform: translateY(-4px) scale(1.015);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 
    0 4px 8px rgba(0,0,0,0.15),
    0 16px 48px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.06);
  background: rgba(44, 44, 46, 0.7);
}

.service-card {
  padding: clamp(1.5rem, 2.8vw, 2.3rem);
  border-top: 2px solid transparent;
  background-image: none;
  overflow: hidden;
  position: relative;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-blue), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 200%;
  height: 200%;
  transform: translate(-50%, -80%);
  background: radial-gradient(circle, rgba(0, 113, 227, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.service-card:hover::after {
  opacity: 1;
}

.service-card h3 {
  margin: 1.2rem 0 0.65rem;
  color: var(--color-text);
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  font-weight: 700;
  line-height: 1.3;
}

.service-card p {
  color: var(--color-text-muted);
  font-size: 0.96rem;
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.service-example {
  display: block;
  font-size: 0.8125rem;
  color: var(--color-blue);
  line-height: 1.5;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0.8;
}

.service-icon-wrap {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(0, 113, 227, 0.08);
  border: 1px solid rgba(0, 113, 227, 0.15);
  transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover .service-icon-wrap {
  background: rgba(0, 113, 227, 0.14);
  border-color: rgba(0, 113, 227, 0.3);
  transform: translateY(-2px);
}

.service-icon {
  width: 1.75rem;
  height: 1.75rem;
  stroke: var(--color-blue);
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 220ms ease;
}

.process {
  background: var(--color-surface);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(15rem, 0.85fr) minmax(0, 1.7fr);
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: start;
}

.process-panel {
  position: sticky;
  top: 7rem;
}

.process-panel h2 {
  margin-bottom: 1.15rem;
  color: var(--color-text);
  font-size: clamp(2rem, 4.8vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.process-panel > p {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.process-track {
  display: grid;
  gap: 1rem;
}

.process-step {
  min-height: 6.8rem;
  padding: 1.55rem 1.5rem 1.55rem 4.2rem;
  overflow: hidden;
}

.process-step::before {
  content: "";
  position: absolute;
  top: 0.95rem;
  bottom: 0.95rem;
  left: 1.6rem;
  width: 2px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0.5;
  transform: scaleY(0.45);
  transform-origin: top;
  transition:
    opacity 240ms ease,
    transform 280ms ease;
}

.process-step.is-active {
  border-color: rgba(255, 255, 255, 0.15);
  background: linear-gradient(
    170deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.04) 70%
  );
}

.process-step.is-active::before {
  opacity: 1;
  transform: scaleY(1);
}

.phase-index {
  position: absolute;
  left: 0.85rem;
  top: 1.1rem;
  color: rgba(255, 255, 255, 0.15);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  transition:
    color 220ms ease,
    opacity 220ms ease,
    transform 260ms ease;
}

.process-step.is-active .phase-index {
  color: var(--color-text);
  opacity: 1;
  transform: translateX(2px);
}

.process-step h3 {
  margin-bottom: 0.45rem;
  color: var(--color-text);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
}

.process-step p {
  color: var(--color-text-muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

/* === CHUNK 3/4: Showcase section: laptop and phone mockups, device screens with transitions, metric grid, job list, inventory bars, map with pings, showcase steps, inline-cta === */

.showcase {
  position: relative;
  overflow: clip;
}

.showcase .context-line {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.showcase-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.device-pin-wrap {
  position: relative;
}

.device-stage {
  position: relative;
  height: min(560px, 70vw);
  min-height: 420px;
}

.laptop-mockup {
  position: absolute;
  inset: 0 56px 28px 0;
  border-radius: 18px 18px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(165deg, #20263d 0%, #171b2c 100%);
  box-shadow: 
    0 8px 16px rgba(0,0,0,0.2),
    0 32px 64px rgba(0,0,0,0.4),
    0 64px 128px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.05);
  overflow: hidden;
  transform: perspective(800px) rotateY(-2deg);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.laptop-camera {
  position: absolute;
  top: 11px;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: #06070e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 3;
}

.laptop-screen {
  position: absolute;
  inset: 28px 14px 16px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(140deg, #0f1727 0%, #1a2441 100%);
}

.laptop-base {
  position: absolute;
  left: 6%;
  right: 12%;
  bottom: 0;
  height: 20px;
  border-radius: 0 0 16px 16px;
  background: linear-gradient(180deg, #313645 0%, #191d2b 100%);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.45);
}

.laptop-base::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 6px;
  width: 30%;
  height: 4px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: rgba(7, 9, 17, 0.7);
}

.screen-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.device-screen {
  position: absolute;
  inset: 0;
  padding: 24px;
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  transition: opacity 0.45s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.device-screen.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.screen-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.screen-header strong {
  color: var(--color-text);
  font-weight: 600;
}

.screen-header span {
  color: var(--color-blue);
  background: rgba(41, 151, 255, 0.14);
  border: 1px solid rgba(41, 151, 255, 0.32);
  border-radius: 999px;
  padding: 4px 9px;
  font-weight: 600;
}

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

.metric-card {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  padding: 14px;
}

.metric-card span {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  color: var(--color-text-muted);
}

.metric-card strong {
  display: block;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  color: var(--color-text);
}

.job-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.job-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.job-list li:last-child {
  border-bottom: 0;
}

.job-list b {
  font-size: 13px;
  color: var(--color-text);
}

.job-list span {
  font-size: 11px;
  color: var(--color-text-muted);
}

.job-list i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  font-style: normal;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-blue);
  background: rgba(41, 151, 255, 0.16);
  border: 1px solid rgba(41, 151, 255, 0.28);
  border-radius: 999px;
  padding: 3px 8px;
}

.inventory-bars {
  display: grid;
  gap: 12px;
  margin-top: 2px;
}

.inventory-bars > div {
  display: grid;
  grid-template-columns: minmax(0, 92px) 1fr;
  align-items: center;
  gap: 12px;
}

.inventory-bars span {
  font-size: 12px;
  color: var(--color-text-muted);
}

.inventory-bars i {
  position: relative;
  display: block;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.inventory-bars i::before {
  content: "";
  position: absolute;
  inset: 0;
  width: var(--fill, 50%);
  border-radius: inherit;
  background: #2997ff;
}

.map-surface {
  position: relative;
  height: 172px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle at 30% 20%, rgba(41, 151, 255, 0.2), transparent 58%),
    linear-gradient(140deg, rgba(41, 151, 255, 0.1), rgba(41, 151, 255, 0.04));
}

.map-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.4;
}

.map-ping {
  position: absolute;
  z-index: 2;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-blue);
  box-shadow: 0 0 0 0 rgba(41, 151, 255, 0.4);
  animation: map-ping-pulse 2.2s infinite;
}

.ping-a {
  top: 24%;
  left: 22%;
  animation-delay: 0s;
}

.ping-b {
  top: 60%;
  left: 48%;
  animation-delay: 0.45s;
}

.ping-c {
  top: 36%;
  left: 76%;
  animation-delay: 0.9s;
}

@keyframes map-ping-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(41, 151, 255, 0.42);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(41, 151, 255, 0);
  }
  100% {
    transform: scale(0.92);
    box-shadow: 0 0 0 0 rgba(41, 151, 255, 0);
  }
}

.map-route {
  position: absolute;
  left: 26%;
  top: 52%;
  width: 52%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(41, 151, 255, 0.08), rgba(41, 151, 255, 0.72), rgba(41, 151, 255, 0.1));
  transform: rotate(-12deg);
  transform-origin: left center;
}

.phone-mockup {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(42%, 228px);
  aspect-ratio: 9 / 19;
  border-radius: 34px;
  background: #11192c;
  border: 8px solid #080b14;
  box-shadow: 
    0 10px 24px rgba(0,0,0,0.3),
    0 40px 80px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.05);
  overflow: hidden;
  transform: translate(14%, 8%) perspective(600px) rotateY(5deg);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  width: 40%;
  height: 30px;
  border-radius: 0 0 16px 16px;
  transform: translateX(-50%);
  background: #080b14;
  z-index: 3;
}

.phone-screen {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, #0f1526 0%, #18233f 100%);
}

.phone-screen-glow {
  position: absolute;
  inset: -35%;
  background: radial-gradient(circle at 50% 30%, rgba(41, 151, 255, 0.46) 0%, rgba(41, 151, 255, 0.14) 38%, transparent 68%);
  animation: phone-glow-pulse 4.6s ease-in-out infinite;
}

@keyframes phone-glow-pulse {
  0%,
  100% {
    opacity: 0.34;
    transform: scale(1);
  }
  50% {
    opacity: 0.62;
    transform: scale(1.08);
  }
}

.showcase-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.showcase-step.card {
  cursor: pointer;
  padding: 24px;
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.showcase-step.card:hover {
  transform: translateY(-2px);
  border-color: rgba(41, 151, 255, 0.45);
}

.showcase-step h3 {
  margin-bottom: 8px;
  font-size: 19px;
  font-weight: 700;
  color: #b8bdcb;
  transition: color 0.25s ease;
}

.showcase-step p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-text-muted);
  transition: color 0.25s ease;
}

.showcase-step.is-active {
  background: #2c2c2e;
  transform: none;
}

.showcase-step.is-active h3,
.showcase-step.is-active p {
  color: var(--color-text);
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--color-blue);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  width: fit-content;
  transition: color 0.2s ease;
}

.inline-cta::after {
  content: "->";
  transition: transform 0.2s ease;
}

.inline-cta:hover {
  color: #5ab0ff;
}

.inline-cta:hover::after {
  transform: translateX(4px);
}

.inline-cta:focus-visible {
  outline: 2px solid var(--color-blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* === CHUNK 4/4: Stats/value cards, contact form, footer, responsive breakpoints (768px, 480px) === */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 80px;
  text-align: center;
}

.stat-card {
  text-align: center;
  padding: 40px 20px;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.stat-card:not(:last-child) {
  border-right: 1px solid var(--color-border);
}

.stat-card:hover {
  transform: none;
  background: none;
}

.stat-value {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 14px;
  color: var(--color-text-muted);
  font-weight: 400;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.value-card {
  padding: 40px 32px;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  border-top: 1px solid var(--color-border);
}

.value-card:hover {
  transform: none;
  background: none;
}

.value-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text);
}

.value-card p {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.btn.full-width {
  width: 100%;
}

.site-footer {
  border-top: 1px solid var(--color-border);
  background: var(--color-surface);
  padding: 60px 0;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.footer-brand {
  display: flex;
  gap: 20px;
}

.footer-brand > div p {
  font-size: 14px;
  color: var(--color-text-muted);
  margin: 4px 0;
}

.footer-brand > div p:first-child {
  color: var(--color-text);
  font-weight: 600;
}

.footer-contact {
  text-align: right;
}

.footer-contact a {
  display: inline-block;
  font-size: 14px;
  color: var(--color-blue);
  text-decoration: none;
  transition: var(--transition);
  margin-bottom: 16px;
}

.footer-contact a:hover {
  color: var(--color-text);
}

.copyright {
  text-align: center;
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--color-border);
}

/* === SOCIAL PROOF / CLIENTS === */

.trust-logos {
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 6vw, 5rem);
  margin-bottom: 3rem;
}

.trust-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.trust-logo-icon {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.trust-logo-item span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
}

.trust-logo-item small {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.testimonial-card {
  max-width: 42rem;
  margin: 0 auto;
  padding: 2.5rem;
  border-radius: 18px;
  background: rgba(28, 28, 30, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 
    0 4px 12px rgba(0,0,0,0.1),
    0 20px 40px rgba(0,0,0,0.15);
}

.testimonial-card blockquote p {
  font-size: clamp(1.125rem, 2vw, 1.3125rem);
  line-height: 1.7;
  color: var(--color-text);
  font-style: italic;
  margin-bottom: 1.25rem;
}

.testimonial-card footer {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial-card footer strong {
  font-size: 0.9375rem;
  color: var(--color-text);
  font-style: normal;
}

.testimonial-card footer span {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  font-style: normal;
}

/* === TBA SHOWCASE === */

.showcase-layout-reverse {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.showcase-tba {
  background: var(--color-surface);
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.schedule-slot {
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  padding: 10px;
  text-align: center;
  transition: background 0.2s ease;
}

.schedule-slot.filled {
  background: rgba(41, 151, 255, 0.1);
  border-color: rgba(41, 151, 255, 0.25);
}

.schedule-slot span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.schedule-slot small {
  font-size: 10px;
  color: var(--color-text-muted);
}

.schedule-slot.filled small {
  color: var(--color-blue);
}

.student-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.student-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 12px;
}

.student-row b {
  font-size: 12px;
  color: var(--color-text);
}

.student-row small {
  font-size: 10px;
  color: var(--color-text-muted);
  text-align: right;
}

.progress-bar {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.progress-bar i {
  display: block;
  height: 100%;
  width: var(--fill, 50%);
  border-radius: inherit;
  background: linear-gradient(90deg, #0071e3, #5ab0ff);
  transition: width 0.8s ease;
}

.venue-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.venue-card {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  padding: 14px;
  text-align: center;
}

.venue-card strong {
  display: block;
  font-size: 12px;
  color: var(--color-text);
  margin-bottom: 6px;
}

.venue-card span {
  display: block;
  font-size: 11px;
  color: var(--color-text-muted);
}

.venue-card small {
  display: block;
  font-size: 10px;
  color: var(--color-blue);
  margin-top: 4px;
}

/* === PHONE MOCKUP CONTENT === */

.phone-screen-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 40px 12px 0;
  background: linear-gradient(165deg, #0f1526 0%, #18233f 100%);
}

.phone-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 12px;
}

.phone-header-bar small {
  font-size: 10px;
  font-weight: 600;
  color: var(--color-text);
}

.phone-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #30d158;
  box-shadow: 0 0 6px rgba(48, 209, 88, 0.5);
}

.phone-job-card {
  padding: 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 8px;
}

.phone-job-card strong {
  display: block;
  font-size: 9px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.phone-job-card p {
  font-size: 11px;
  color: var(--color-text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.phone-job-status {
  display: inline-block;
  font-size: 9px;
  font-weight: 600;
  color: var(--color-blue);
  background: rgba(41, 151, 255, 0.16);
  border: 1px solid rgba(41, 151, 255, 0.28);
  border-radius: 999px;
  padding: 2px 8px;
}

.phone-job-status.upcoming {
  color: var(--color-text-muted);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.phone-nav-bar {
  margin-top: auto;
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 16px;
}

/* === SHOWCASE AUTO-CYCLE PROGRESS === */

.showcase-step .step-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--color-blue);
  border-radius: 0 0 18px 18px;
  width: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.showcase-step.is-active .step-progress {
  opacity: 1;
  animation: step-fill 5s linear forwards;
}

@keyframes step-fill {
  from { width: 0; }
  to { width: 100%; }
}

/* === HERO GRADIENT ANIMATION === */

.hero::before {
  content: "";
  position: absolute;
  inset: -50%;
  z-index: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(0, 113, 227, 0.15) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 50%, rgba(90, 176, 255, 0.1) 0%, transparent 50%);
  animation: hero-gradient-shift 8s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes hero-gradient-shift {
  0% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  50% { transform: translate(-5%, 3%) scale(1.1); opacity: 0.8; }
  100% { transform: translate(5%, -3%) scale(1.05); opacity: 0.6; }
}

/* === SECTION TRANSITIONS (gradient shifts between sections) === */

#services {
  background: linear-gradient(180deg, var(--color-dark) 0%, rgba(15, 15, 20, 1) 100%);
}

#clients {
  background: linear-gradient(180deg, rgba(15, 15, 20, 1) 0%, var(--color-dark) 100%);
}

#why {
  background: linear-gradient(180deg, var(--color-dark) 0%, rgba(10, 10, 18, 1) 50%, var(--color-dark) 100%);
}

/* === CONTACT FORM === */

.contact-form {
  max-width: 28rem;
  margin: 0 auto 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(28, 28, 30, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--color-text);
  font-size: 0.9375rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: rgba(0, 113, 227, 0.5);
  background: rgba(28, 28, 30, 0.8);
  box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.12), 0 4px 12px rgba(0,0,0,0.2);
}

.form-input::placeholder {
  color: var(--color-text-muted);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
}

.form-success {
  text-align: center;
  padding: 1.5rem;
  border-radius: 12px;
  background: rgba(48, 209, 88, 0.1);
  border: 1px solid rgba(48, 209, 88, 0.3);
  color: #30d158;
  font-weight: 600;
}

/* === FT SHOWCASE: Admin Dashboard === */

.ft-summary-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 12px;
}

.ft-summary-item {
  text-align: center;
  padding: 8px 4px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.ft-summary-item.urgent { background: rgba(239, 68, 68, 0.1); border-color: rgba(239, 68, 68, 0.25); }
.ft-summary-item.warn { background: rgba(245, 158, 11, 0.1); border-color: rgba(245, 158, 11, 0.25); }
.ft-summary-item.good { background: rgba(16, 185, 129, 0.1); border-color: rgba(16, 185, 129, 0.25); }

.ft-count { display: block; font-size: 16px; font-weight: 700; color: var(--color-text); line-height: 1.2; }
.ft-summary-item.urgent .ft-count { color: #f87171; }
.ft-summary-item.warn .ft-count { color: #fbbf24; }
.ft-summary-item.good .ft-count { color: #34d399; }
.ft-summary-item small { font-size: 8px; color: var(--color-text-muted); letter-spacing: 0.02em; }

.ft-pipeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.ft-pipeline-col { min-width: 0; }

.ft-col-header {
  display: flex; align-items: center; gap: 4px;
  font-size: 9px; font-weight: 600; color: var(--color-text-muted);
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 6px; padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.ft-col-header b { font-size: 9px; color: var(--color-text-secondary); }
.ft-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }

.ft-job-chip {
  padding: 5px 7px; border-radius: 6px; font-size: 9px; font-weight: 500;
  color: var(--color-text); background: rgba(255, 255, 255, 0.04);
  border-left: 2px solid rgba(245, 158, 11, 0.5); margin-bottom: 4px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ft-job-chip.active { border-left-color: rgba(59, 130, 246, 0.6); background: rgba(59, 130, 246, 0.08); }
.ft-job-chip.done { border-left-color: rgba(16, 185, 129, 0.5); background: rgba(16, 185, 129, 0.06); color: var(--color-text-muted); }
.ft-job-chip small { display: block; font-size: 8px; color: var(--color-text-muted); font-weight: 400; margin-top: 1px; }

/* === FT SHOWCASE: Job Detail === */

.ft-job-detail { display: flex; flex-direction: column; gap: 10px; }
.ft-job-info { display: flex; flex-direction: column; gap: 6px; }
.ft-job-info > div { display: flex; flex-direction: column; gap: 1px; }
.ft-job-info small { font-size: 8px; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.04em; }
.ft-job-info b { font-size: 11px; color: var(--color-text); font-weight: 500; }

.ft-timer-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 10px; border-radius: 8px;
  background: rgba(59, 130, 246, 0.08); border: 1px solid rgba(59, 130, 246, 0.2);
}
.ft-timer { font-size: 14px; font-weight: 700; color: var(--color-text); font-variant-numeric: tabular-nums; }
.ft-timer span { margin-right: 4px; }
.ft-status-pill { font-size: 9px; font-weight: 600; color: #34d399; background: rgba(16, 185, 129, 0.12); border: 1px solid rgba(16, 185, 129, 0.3); padding: 2px 8px; border-radius: 999px; }

.ft-parts-mini { display: flex; flex-direction: column; gap: 4px; }
.ft-section-label { font-size: 9px; font-weight: 600; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 2px; }
.ft-part-row { display: flex; justify-content: space-between; align-items: center; padding: 4px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.04); font-size: 10px; }
.ft-part-row span { color: var(--color-text-secondary); }
.ft-part-row b { color: var(--color-text); font-weight: 600; font-size: 10px; }

/* === FT SHOWCASE: Inventory === */

.ft-inv-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin-bottom: 10px; }

.ft-inv-stat { text-align: center; padding: 6px 4px; border-radius: 8px; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.06); }
.ft-inv-stat b { display: block; font-size: 13px; font-weight: 700; color: var(--color-text); }
.ft-inv-stat small { font-size: 8px; color: var(--color-text-muted); }
.ft-inv-stat.warn { background: rgba(245, 158, 11, 0.08); border-color: rgba(245, 158, 11, 0.2); }
.ft-inv-stat.warn b { color: #fbbf24; }
.ft-inv-stat.danger { background: rgba(239, 68, 68, 0.08); border-color: rgba(239, 68, 68, 0.2); }
.ft-inv-stat.danger b { color: #f87171; }
.ft-inv-stat.good { background: rgba(16, 185, 129, 0.08); border-color: rgba(16, 185, 129, 0.2); }
.ft-inv-stat.good b { color: #34d399; }

.ft-inv-table { display: flex; flex-direction: column; }
.ft-inv-header { display: grid; grid-template-columns: 1fr 50px 50px; gap: 8px; padding: 4px 6px; font-size: 8px; font-weight: 600; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.04em; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.ft-inv-row { display: grid; grid-template-columns: 1fr 50px 50px; gap: 8px; padding: 5px 6px; font-size: 10px; color: var(--color-text-secondary); border-bottom: 1px solid rgba(255, 255, 255, 0.03); align-items: center; }
.ft-inv-row span:first-child { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.ft-badge-ok, .ft-badge-low, .ft-badge-out { font-size: 8px; font-weight: 600; padding: 1px 5px; border-radius: 4px; text-align: center; }
.ft-badge-ok { color: #34d399; background: rgba(16, 185, 129, 0.12); }
.ft-badge-low { color: #fbbf24; background: rgba(245, 158, 11, 0.12); }
.ft-badge-out { color: #f87171; background: rgba(239, 68, 68, 0.12); }

/* === FT SHOWCASE: Technician View === */

.ft-tech-view { display: flex; flex-direction: column; gap: 8px; }
.ft-tech-current { margin-bottom: 4px; }

.ft-tech-job { padding: 8px 10px; border-radius: 8px; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.06); margin-bottom: 6px; }
.ft-tech-job.active { background: rgba(59, 130, 246, 0.06); border-color: rgba(59, 130, 246, 0.2); }
.ft-tech-job-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 3px; }
.ft-tech-job-head b { font-size: 11px; color: var(--color-text); }
.ft-tech-job-head span { font-size: 10px; color: var(--color-blue); font-weight: 600; font-variant-numeric: tabular-nums; }
.ft-tech-job p { font-size: 10px; color: var(--color-text-muted); line-height: 1.4; margin: 0; }

.ft-tech-actions { display: flex; gap: 4px; margin-top: 6px; }
.ft-btn-sm { font-size: 8px; font-weight: 600; padding: 3px 8px; border-radius: 4px; border: 1px solid rgba(255, 255, 255, 0.12); background: rgba(255, 255, 255, 0.04); color: var(--color-text-secondary); cursor: default; }
.ft-btn-sm.primary { background: rgba(59, 130, 246, 0.15); border-color: rgba(59, 130, 246, 0.3); color: #5ab0ff; }

/* === FT Phone: Quick Actions === */

.phone-quick-actions { display: flex; justify-content: space-around; padding: 8px 0; margin-bottom: 8px; }
.phone-quick-actions span { font-size: 9px; color: var(--color-text-muted); text-align: center; }
.phone-timer { font-size: 12px; font-weight: 700; color: var(--color-blue); font-variant-numeric: tabular-nums; margin-bottom: 4px; }

/* === TBA SHOWCASE: Dashboard === */

.tba-greeting { font-size: 12px; color: var(--color-text-secondary); margin-bottom: 10px; }
.tba-greeting b { color: var(--color-text); }

.tba-today-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-bottom: 12px; }
.tba-stat { text-align: center; padding: 8px 4px; border-radius: 8px; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.06); }
.tba-stat b { display: block; font-size: 16px; font-weight: 700; color: var(--color-text); }
.tba-stat small { font-size: 8px; color: var(--color-text-muted); }
.tba-stat.accent b { color: #fbbf24; }
.tba-stat.accent { background: rgba(245, 158, 11, 0.08); border-color: rgba(245, 158, 11, 0.2); }

.tba-week-cal { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.tba-day { text-align: center; padding: 6px 2px 4px; border-radius: 8px; cursor: default; }
.tba-day small { display: block; font-size: 8px; color: var(--color-text-muted); margin-bottom: 2px; }
.tba-day span { display: block; font-size: 12px; font-weight: 600; color: var(--color-text); margin-bottom: 3px; }
.tba-day.selected { background: rgba(59, 130, 246, 0.15); }
.tba-day.selected span { color: #5ab0ff; }
.tba-day.dimmed span { color: var(--color-text-muted); }
.tba-dot { display: inline-block; width: 4px; height: 4px; border-radius: 50%; background: var(--color-blue); margin: 0 1px; }
.tba-day.dimmed .tba-dot { background: rgba(255, 255, 255, 0.1); }

/* === TBA SHOWCASE: Sessions === */

.tba-sessions { display: flex; flex-direction: column; gap: 8px; }
.tba-session-card { display: grid; grid-template-columns: auto 1fr; gap: 10px; padding: 10px; border-radius: 10px; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.06); }
.tba-session-time { font-size: 9px; font-weight: 600; color: var(--color-text-muted); white-space: nowrap; padding-top: 2px; }
.tba-session-info b { display: block; font-size: 11px; color: var(--color-text); margin-bottom: 2px; }
.tba-session-info span { display: block; font-size: 9px; color: var(--color-text-muted); margin-bottom: 4px; }
.tba-session-meta { display: flex; align-items: center; gap: 8px; font-size: 9px; color: var(--color-text-muted); }
.tba-badge { font-size: 8px; font-weight: 600; padding: 1px 6px; border-radius: 4px; }
.tba-badge.blue { color: #5ab0ff; background: rgba(59, 130, 246, 0.12); }
.tba-badge.green { color: #34d399; background: rgba(16, 185, 129, 0.12); }

/* === TBA SHOWCASE: Students === */

.tba-student-table { display: flex; flex-direction: column; gap: 8px; }
.tba-student-row { display: grid; grid-template-columns: 28px 1fr 60px; gap: 8px; align-items: center; padding: 6px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.04); }
.tba-avatar { width: 28px; height: 28px; border-radius: 50%; background: rgba(59, 130, 246, 0.15); color: #5ab0ff; font-size: 9px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.tba-student-info b { display: block; font-size: 11px; color: var(--color-text); }
.tba-student-info small { font-size: 9px; color: var(--color-text-muted); }

.tba-attendance { display: flex; align-items: center; gap: 4px; }
.tba-att-bar { display: block; width: 36px; height: 4px; border-radius: 999px; background: rgba(255, 255, 255, 0.08); overflow: hidden; position: relative; }
.tba-att-bar::after { content: ""; position: absolute; left: 0; top: 0; height: 100%; width: var(--fill, 50%); border-radius: inherit; background: linear-gradient(90deg, #0071e3, #5ab0ff); }
.tba-attendance small { font-size: 9px; color: var(--color-text-muted); font-variant-numeric: tabular-nums; }

/* === ENHANCED SECTION TRANSITIONS === */

.section { position: relative; }

.showcase::before { content: ""; position: absolute; top: 0; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, rgba(41, 151, 255, 0.2), transparent); }
.showcase-tba::before { background: linear-gradient(90deg, transparent, rgba(41, 151, 255, 0.12), transparent); }
#why::before { content: ""; position: absolute; top: 0; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent); }

.process::before { content: ""; position: absolute; top: -40px; left: 0; right: 0; height: 40px; background: linear-gradient(180deg, transparent, var(--color-surface)); pointer-events: none; }
.process::after { content: ""; position: absolute; bottom: -40px; left: 0; right: 0; height: 40px; background: linear-gradient(180deg, var(--color-surface), transparent); pointer-events: none; z-index: 1; }
.showcase-tba::after { content: ""; position: absolute; bottom: -40px; left: 0; right: 0; height: 40px; background: linear-gradient(180deg, var(--color-surface), transparent); pointer-events: none; z-index: 1; }

/* === 3D DEPTH & APPLE-STYLE EFFECTS === */

/* Ambient glow orbs - floating background lights */
.hero::after {
  content: "";
  position: absolute;
  top: 20%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 113, 227, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  animation: float-orb 12s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

@keyframes float-orb {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-40px, 30px) scale(1.1); }
  66% { transform: translate(20px, -20px) scale(0.95); }
  100% { transform: translate(-10px, 40px) scale(1.05); }
}

/* Hero card 3D perspective + glassmorphism */
.hero-ui-card {
  max-width: 52rem;
  margin: 0 auto;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(22, 22, 23, 0.7);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  overflow: hidden;
  transform: perspective(1200px) rotateX(2deg);
  box-shadow: 
    0 4px 6px rgba(0,0,0,0.1),
    0 20px 40px rgba(0,0,0,0.3),
    0 60px 100px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.06);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
  will-change: transform;
}

.hero-ui-card:hover {
  transform: perspective(1200px) rotateX(0deg) translateY(-4px);
  box-shadow: 
    0 4px 6px rgba(0,0,0,0.1),
    0 30px 60px rgba(0,0,0,0.35),
    0 80px 120px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

/* 3D depth interactions for device mockups */
.device-pin-wrap:hover .laptop-mockup {
  transform: perspective(800px) rotateY(0deg);
}

.device-pin-wrap:hover .phone-mockup {
  transform: translate(14%, 8%) perspective(600px) rotateY(2deg);
}

/* Stat cards — lift and glow */
.stat-card {
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-2px) !important;
  background: rgba(255, 255, 255, 0.02) !important;
}

.stat-value {
  background: linear-gradient(180deg, #ffffff 0%, #a1a1a6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* testimonial depth applied to original .testimonial-card above */

/* Ambient section glow orbs */
#services::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 113, 227, 0.06) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

/* showcase ambient glow handled via ::before accent line */

/* reveal-up-3d defined in original .reveal block above */

/* form-input glass styles merged into original .form-input above */

/* Noise texture overlay for premium feel */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.015;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

@media (max-width: 768px) {
  .site-header {
    padding: 0 20px;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
  }

  .site-nav.is-active {
    display: flex;
  }

  .site-nav a {
    padding: 16px 20px;
    border-bottom: 1px solid var(--color-border);
  }

  .site-nav a::after {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .container {
    padding: 0 20px;
  }

  .section {
    padding: 80px 0;
  }

  .hero {
    min-height: calc(100vh - 72px);
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process-panel {
    position: static;
  }

  .showcase-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .device-stage {
    height: 300px;
  }

  .laptop-mockup {
    max-width: 100%;
  }

  .phone-mockup {
    display: none;
  }

  .trust-logos {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .showcase-layout-reverse {
    grid-template-columns: 1fr;
  }

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

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

  .venue-cards {
    grid-template-columns: 1fr;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-contact {
    text-align: center;
  }

  

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

  .stat-card:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }

  .value-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 0 16px;
    height: 60px;
  }

  .container {
    padding: 0 16px;
  }

  .section {
    padding: 60px 0;
  }

  .card {
    padding: 24px;
  }

  

  .eyebrow {
    font-size: 11px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 13px;
  }
}
