/* =======================================================
   ORBITAL PRODUCT HERO (SPLIT LAYOUT: CONTENT LEFT / ORBIT RIGHT)
======================================================= */
.orbital-product-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #020617;
  overflow: hidden;
  padding: 130px 24px 120px;
  box-sizing: border-box;
  color: #ffffff;
}

/* Background Video */
.orbital-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  opacity: 0.22;
  filter: saturate(1.3) contrast(1.1);
}

/* Ambient Blue Mesh Overlay */
.orbital-mesh-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 65% 50%,
    rgba(14, 116, 244, 0.2) 0%,
    rgba(2, 6, 23, 0.2) 60%,
    #020617 100%
  );
  z-index: 1;
}

/* Isometric Floor Grid */
.isometric-grid-floor {
  position: absolute;
  bottom: -20%;
  left: -20%;
  width: 140%;
  height: 80%;
  background-image: 
    linear-gradient(rgba(56, 189, 248, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.1) 1px, transparent 1px);
  background-size: 55px 55px;
  transform: perspective(600px) rotateX(65deg);
  mask-image: linear-gradient(to top, black 20%, transparent 80%);
  -webkit-mask-image: linear-gradient(to top, black 20%, transparent 80%);
  z-index: 2;
  pointer-events: none;
  animation: gridFloorScroll 20s linear infinite;
}

@keyframes gridFloorScroll {
  from { background-position: 0 0; }
  to   { background-position: 0 55px; }
}

/* Cursor Glow Flare */
.interactive-cursor-flare {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.16) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 3;
}

/* =======================================================
   2-COLUMN SPLIT GRID CONTAINER
======================================================= */
.orbital-split-container {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px 60px;
  align-items: center;
}

/* =======================================================
   LEFT COLUMN: CONTENT STYLING
======================================================= */
.orbital-left-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

/* Header Pill */
.nexus-header-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(56, 189, 248, 0.35);
  padding: 6px 16px;
  border-radius: 50px;
  backdrop-filter: blur(12px);
  margin-bottom: 22px;
}

.pill-beacon {
  position: relative;
  width: 10px;
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.beacon-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 8px #38bdf8;
}

.beacon-pulse {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.5);
  animation: beaconPulseAnim 2s infinite ease-out;
}

@keyframes beaconPulseAnim {
  0%   { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2.6); opacity: 0; }
}

.beacon-text {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #cbd5e1;
}

.pill-badge {
  font-size: 0.65rem;
  font-weight: 900;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.15);
  padding: 2px 8px;
  border-radius: 50px;
}

/* Headline */
.nexus-main-heading {
  font-size: clamp(2.2rem, 3.8vw, 3.7rem);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0 0 20px;
}

.laser-shimmer-text {
  background: linear-gradient(110deg, #38bdf8 0%, #a855f7 40%, #fb923c 80%, #38bdf8 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: laserShimmer 5s linear infinite;
}

@keyframes laserShimmer {
  to { background-position: 200% center; }
}

.nexus-sub-lead {
  font-size: clamp(0.98rem, 1.2vw, 1.12rem);
  line-height: 1.75;
  color: #94a3b8;
  max-width: 580px;
  margin: 0 0 38px;
}

/* Actions Row */
.nexus-actions-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.nexus-btn-primary {
  position: relative;
  display: inline-flex;
  border-radius: 16px;
  padding: 2px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 10px 30px -4px rgba(14, 165, 233, 0.45);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nexus-btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
}

.laser-track {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, #38bdf8, #818cf8, transparent 40%);
  animation: rotateTrack 4s linear infinite;
  z-index: 1;
}

@keyframes rotateTrack {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.btn-core {
  position: relative;
  z-index: 2;
  background: #0284c7;
  padding: 15px 28px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #ffffff;
}

.btn-core .arrow {
  transition: transform 0.25s ease;
}

.nexus-btn-primary:hover .arrow {
  transform: translateX(4px);
}

.nexus-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  color: #f1f5f9;
  padding: 15px 24px;
  border-radius: 16px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nexus-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(56, 189, 248, 0.4);
  color: #38bdf8;
  transform: translateY(-3px);
}

.sound-wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 14px;
}

.sound-wave span {
  width: 3px;
  height: 100%;
  background: #38bdf8;
  border-radius: 3px;
  animation: soundPulse 1.2s infinite ease-in-out alternate;
}

.sound-wave span:nth-child(2) { animation-delay: 0.2s; }
.sound-wave span:nth-child(3) { animation-delay: 0.4s; }

@keyframes soundPulse {
  0%   { height: 4px; }
  100% { height: 14px; }
}

/* =======================================================
   RIGHT COLUMN: ORBITAL REACTOR STAGE
======================================================= */
.orbital-right-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbital-reactor-stage {
  position: relative;
  width: 540px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

/* Concentric Rings */
.reactor-rings-svg {
  position: absolute;
  width: 500px;
  height: 500px;
  pointer-events: none;
  z-index: 1;
}

.ring-outer {
  fill: none;
  stroke: rgba(56, 189, 248, 0.18);
  stroke-width: 1.5;
  stroke-dasharray: 8 16;
  animation: ringClockwise 40s linear infinite;
  transform-origin: center;
}

.ring-middle {
  fill: none;
  stroke: rgba(168, 85, 247, 0.24);
  stroke-width: 1.5;
  stroke-dasharray: 6 12;
  animation: ringCounter 28s linear infinite;
  transform-origin: center;
}

.ring-inner {
  fill: none;
  stroke: rgba(56, 189, 248, 0.32);
  stroke-width: 1.5;
  stroke-dasharray: 4 8;
  animation: ringClockwise 18s linear infinite;
  transform-origin: center;
}

@keyframes ringClockwise {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes ringCounter {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}

/* Center Core */
.reactor-center-core {
  position: relative;
  z-index: 4;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.core-radial-glow {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.45) 0%, transparent 70%);
  animation: corePulseGlow 3s infinite ease-in-out alternate;
}

@keyframes corePulseGlow {
  0%   { transform: scale(0.9); opacity: 0.6; }
  100% { transform: scale(1.3); opacity: 1; }
}

.core-inner-emblem {
  position: relative;
  z-index: 2;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0284c7 0%, #082f49 100%);
  border: 2px solid rgba(56, 189, 248, 0.65);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(14, 165, 233, 0.5), inset 0 0 15px rgba(255, 255, 255, 0.2);
}

.core-pulse-label {
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #e0f2fe;
  margin-top: 4px;
}

.core-frequency {
  font-size: 0.66rem;
  font-family: monospace;
  color: #38bdf8;
}

/* =======================================================
   4 SATELLITE NODES
======================================================= */
.nexus-satellite-node {
  position: absolute;
  z-index: 5;
  border-radius: 18px;
  perspective: 600px;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.node-plate {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: #38bdf8;
  transform: translate(4px, 8px);
  opacity: 0.2;
  transition: all 0.3s ease;
}

.node-inner {
  position: relative;
  z-index: 2;
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(56, 189, 248, 0.25);
  backdrop-filter: blur(14px);
  border-radius: 18px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nexus-satellite-node:hover .node-inner {
  transform: translateY(-4px);
  border-color: #38bdf8;
  box-shadow: 0 16px 32px -6px rgba(14, 165, 233, 0.35);
}

.nexus-satellite-node:hover .node-plate {
  opacity: 0.6;
  transform: translate(6px, 12px);
}

.node-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
}

.bg-cyan   { background: #0284c7; }
.bg-indigo { background: #000000; }
.bg-orange { background: #ea580c; }
.bg-teal   { background: #0d9488; }

.node-meta {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.node-meta small {
  font-size: 0.64rem;
  color: #94a3b8;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.node-meta strong {
  font-size: 0.84rem;
  font-weight: 800;
}

.text-cyan   { color: #38bdf8; }
.text-indigo { color: #818cf8; }
.text-orange { color: #fb923c; }
.text-teal   { color: #2dd4bf; }

/* Precise Node Anchor Placements */
.node-top-left     { top: 20px; left: -10px; }
.node-top-right    { top: 20px; right: -10px; }
.node-bottom-left  { bottom: 20px; left: 0px; }
.node-bottom-right { bottom: 20px; right: 0px; }

/* =======================================================
   STEPPED CYBERNETIC BOTTOM EDGE
======================================================= */
.stepped-cyber-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  pointer-events: none;
  z-index: 6;
}

.stepped-cyber-divider svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: #ffffff;
}

/* =======================================================
   SCROLL REVEAL ANIMATIONS
======================================================= */
.on-reveal {
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.on-slide-left  { transform: translateX(-40px); }
.on-slide-right { transform: translateX(40px); }

.on-reveal.active {
  opacity: 1;
  transform: translate(0, 0);
}

/* =======================================================
   RESPONSIVE DESIGN
======================================================= */
@media (max-width: 1100px) {
  .orbital-split-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .orbital-left-col {
    align-items: center;
    text-align: center;
  }
  .nexus-sub-lead {
    margin-left: auto;
    margin-right: auto;
  }
  .nexus-actions-row {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .orbital-product-hero {
    padding: 110px 18px 100px;
  }
  .orbital-reactor-stage {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .reactor-rings-svg {
    display: none;
  }
  .nexus-satellite-node {
    position: static;
    width: 100%;
    max-width: 280px;
  }
  .reactor-center-core {
    margin-bottom: 20px;
  }
}

/* Section 2 Starts */

/* =======================================================
   PRODUCT EDITORIAL NARRATIVE (DEFAULT LIGHT BACKGROUND)
======================================================= */
.prod-narrative-section {
  position: relative;
  background-color: #f8faff;
  padding: 120px 24px 140px;
  overflow: hidden;
  color: #1e293b;
}

.pn-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Atmospheric Ambient Orbs */
.pn-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 1;
}

.pn-glow.glow-blue {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.1) 0%, transparent 70%);
  top: 10%;
  left: -100px;
}

.pn-glow.glow-orange {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.08) 0%, transparent 70%);
  bottom: 5%;
  right: -80px;
}

/* Header */
.pn-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 64px;
}

.pn-header .section-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eef2ff;
  border: 1px solid #e0e7ff;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #0284c7;
  margin-bottom: 20px;
}

.pn-header .section-pill .pill-dot {
  width: 7px;
  height: 7px;
  background: #0284c7;
  border-radius: 50%;
}

.pn-title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: #0f172a;
  margin: 0 0 20px;
}

.gradient-text {
  background: linear-gradient(135deg, #0284c7 0%, #4f46e5 50%, #ea580c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pn-lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #475569;
  margin: 0;
}

.text-brand {
  color: #0284c7;
  font-weight: 800;
}

/* =======================================================
   2-COLUMN SPLIT CARDS (WITH SHADOW BACKPLATES)
======================================================= */
.pn-split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-bottom: 50px;
}

.pn-text-card {
  position: relative;
  border-radius: 28px;
  perspective: 1000px;
  display: flex;
  cursor: pointer;
}

/* Layered Offset Colored Shadow Plate */
.pn-card-plate {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: #bae6fd;
  transform: translate(6px, 12px);
  opacity: 0.75;
  z-index: 1;
  box-shadow: 0 14px 28px -6px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.pn-card-plate.plate-orange {
  background: #fed7aa;
}

.pn-card-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 28px;
  padding: 40px 34px 36px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.pn-text-card:hover .pn-card-inner {
  transform: translateY(-6px);
  border-color: #0284c7;
}

.pn-text-card:hover .pn-card-plate {
  transform: translate(10px, 18px);
  opacity: 0.95;
}

/* Badges */
.pn-badge-row {
  margin-bottom: 16px;
}

.pn-badge {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 50px;
}

.badge-blue   { background: #e0f2fe; color: #0284c7; border: 1px solid #bae6fd; }
.badge-orange { background: #fff7ed; color: #ea580c; border: 1px solid #fed7aa; }

.pn-subheading {
  font-size: 1.45rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.015em;
  margin: 0 0 16px;
}

.pn-body-text {
  font-size: 0.96rem;
  line-height: 1.72;
  color: #64748b;
  margin: 0 0 16px;
}

.pn-body-text strong {
  color: #1e293b;
}

/* Value Feature Strip (Left Card Bottom) */
.pn-feature-strip {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px dashed #e2e8f0;
}

.strip-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #334155;
}

/* Workspaces Grid (Right Card Bottom) */
.workspaces-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px dashed #e2e8f0;
}

.ws-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
}

.ws-icon {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.ws-box strong {
  font-size: 0.82rem;
  color: #0f172a;
}

.ws-box small {
  font-size: 0.72rem;
  color: #64748b;
}

/* =======================================================
   CAPABILITIES STRIP
======================================================= */
.capabilities-bar {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 20px 26px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 16px -4px rgba(0, 0, 0, 0.03);
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.cap-title {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #0284c7;
  flex-shrink: 0;
}

.cap-badges-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.cap-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #334155;
  transition: all 0.25s ease;
}

.cap-chip:hover {
  background: #ffffff;
  border-color: #0284c7;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px -4px rgba(2, 132, 199, 0.15);
}

.cap-chip .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.dot-blue   { background: #0284c7; }
.dot-cyan   { background: #06b6d4; }
.dot-indigo { background: #4f46e5; }
.dot-orange { background: #ea580c; }
.dot-teal   { background: #0d9488; }
.dot-purple { background: #9333ea; }

/* =======================================================
   FINAL HIGH-IMPACT STATEMENT BANNER
======================================================= */
.pn-conclusion-banner {
  position: relative;
  background: #0f172a;
  border-radius: 24px;
  padding: 34px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
  box-shadow: 0 16px 36px -8px rgba(15, 23, 42, 0.25);
}

.banner-highlight-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0284c7, #38bdf8, #ea580c);
}

.banner-title {
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.015em;
}

.highlight-cyan {
  color: #38bdf8;
}

.pn-btn-primary {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  padding: 14px 26px;
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  box-shadow: 0 8px 20px -4px rgba(2, 132, 199, 0.4);
  transition: transform 0.25s ease, background 0.25s ease;
}

.pn-btn-primary:hover {
  background: #0ea5e9;
  transform: translateY(-2px);
}

.btn-arrow {
  transition: transform 0.25s ease;
}

.pn-btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

/* =======================================================
   SCROLL REVEAL ANIMATIONS
======================================================= */
.pn-reveal {
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.pn-fade-up    { transform: translateY(35px); }
.pn-slide-left  { transform: translateX(-40px); }
.pn-slide-right { transform: translateX(40px); }
.pn-scale-in   { transform: translateY(25px) scale(0.98); }

.pn-reveal.active {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* =======================================================
   RESPONSIVE DESIGN
======================================================= */
@media (max-width: 1024px) {
  .pn-split-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .pn-conclusion-banner {
    flex-direction: column;
    text-align: center;
    padding: 30px 24px;
  }
}

@media (max-width: 640px) {
  .prod-narrative-section {
    padding: 85px 18px 100px;
  }
  .pn-card-inner {
    padding: 30px 22px;
  }
  .workspaces-grid {
    grid-template-columns: 1fr;
  }
}

/* Section 2 Ends */

/* Section 3 Starts */
.suite-matrix-section {
  position: relative;
  background-color: #f8faff;
  padding: 160px 24px 140px;
  overflow: hidden;
  color: #1e293b;
  box-sizing: border-box;
}

.suite-container {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Atmospheric Ambient Blobs */
.suite-ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 1;
}

.suite-ambient-glow.glow-indigo {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
  top: 10%;
  left: -80px;
}

.suite-ambient-glow.glow-cyan {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.09) 0%, transparent 70%);
  bottom: 5%;
  right: -80px;
}

/* Header */
.suite-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 60px;
}

.suite-header .section-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eef2ff;
  border: 1px solid #e0e7ff;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #0284c7;
  margin-bottom: 20px;
}

.suite-header .section-pill .pill-dot {
  width: 7px;
  height: 7px;
  background: #0284c7;
  border-radius: 50%;
}

.suite-title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: #0f172a;
  margin: 0 0 16px;
}

.gradient-text {
  background: linear-gradient(135deg, #0284c7 0%, #4f46e5 50%, #ea580c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.suite-subtitle {
  font-size: 1.05rem;
  line-height: 1.68;
  color: #64748b;
  margin: 0;
}

/* =======================================================
   SYMMETRICAL BENTO GRID ARCHITECTURE (NO EMPTY HOLES)
======================================================= */
.suite-matrix-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.suite-matrix-grid > .suite-node-card:nth-child(1),
.suite-matrix-grid > .suite-node-card:nth-child(2),
.suite-matrix-grid > .suite-node-card:nth-child(3) {
  grid-column: span 2;
}

.suite-center-hub {
  grid-column: span 6;
}

.suite-matrix-grid > .suite-node-card:nth-child(5),
.suite-matrix-grid > .suite-node-card:nth-child(6) {
  grid-column: span 3;
}

.suite-matrix-grid > .suite-node-card:nth-child(7),
.suite-matrix-grid > .suite-node-card:nth-child(8) {
  grid-column: span 3;
}

/* Card Base */
.suite-node-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  padding: 28px 24px 22px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s ease,
              border-color 0.3s ease;
  overflow: hidden;
  cursor: pointer;
}

.suite-node-card:hover {
  transform: translateY(-6px);
  border-color: #0284c7;
  box-shadow: 0 18px 36px -10px rgba(2, 132, 199, 0.16);
}

/* Top Accent Bar */
.node-accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3.5px;
}

.bar-blue   { background: linear-gradient(90deg, #0284c7, #38bdf8); }
.bar-cyan   { background: linear-gradient(90deg, #06b6d4, #67e8f9); }
.bar-indigo { background: linear-gradient(90deg, #4f46e5, #818cf8); }
.bar-purple { background: linear-gradient(90deg, #9333ea, #c084fc); }
.bar-teal   { background: linear-gradient(90deg, #0d9488, #2dd4bf); }
.bar-orange { background: linear-gradient(90deg, #ea580c, #fb923c); }
.bar-amber  { background: linear-gradient(90deg, #d97706, #fbbf24); }

/* Header & Logo Image Slot */
.node-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.node-logo-wrap {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  flex-shrink: 0;
}

.product-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0px;
  display: block;
}

.logo-fallback {
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  border-radius: 12px;
}

.box-blue   { background: #e0f2fe; color: #0284c7; }
.box-cyan   { background: #cffafe; color: #0891b2; }
.box-indigo { background: #e0e7ff; color: #4338ca; }
.box-purple { background: #f3e8ff; color: #7e22ce; }
.box-teal   { background: #ccfbf1; color: #0f766e; }
.box-orange { background: #ffedd5; color: #c2410c; }
.box-amber  { background: #fef3c7; color: #b45309; }

.node-id-pill {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #94a3b8;
}

.node-product-name {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin: 0 0 2px;
}

.node-category {
  font-size: 0.76rem;
  font-weight: 700;
  color: #0284c7;
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 12px;
}

.node-description {
  font-size: 0.88rem;
  line-height: 1.62;
  color: #64748b;
  margin: 0 0 20px;
  flex-grow: 1;
}

.node-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px dashed #e2e8f0;
  margin-top: auto;
}

.node-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: #475569;
  background: #f1f5f9;
  padding: 4px 10px;
  border-radius: 6px;
}

.node-connector-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #cbd5e1;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.suite-node-card:hover .node-connector-dot {
  background: #0284c7;
  box-shadow: 0 0 8px #0284c7;
}

/* =======================================================
   CENTRAL FULL-WIDTH ECOSYSTEM HUB
======================================================= */
.suite-center-hub {
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #03234d 100%);
  border-radius: 24px;
  padding: 30px 40px;
  display: flex;
  align-items: center;
  box-shadow: 0 16px 36px -10px rgba(15, 23, 42, 0.25);
  color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}

.hub-pulse-ring {
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1px dashed rgba(56, 189, 248, 0.2);
  animation: spinHubRing 35s linear infinite;
  pointer-events: none;
}

@keyframes spinHubRing {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}

.hub-inner-shield {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 24px;
}

.hub-logo-mark {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
  flex-shrink: 0;
}

.hub-text-wrap {
  display: flex;
  flex-direction: column;
  text-align: left;
  flex-grow: 1;
}

.hub-badge {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #38bdf8;
  margin-bottom: 4px;
}

.hub-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
}

.hub-status-strip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.74rem;
  font-weight: 700;
  color: #cbd5e1;
  flex-shrink: 0;
}

.hub-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
}

/* =======================================================
   BOTTOM BANNER
======================================================= */
.suite-bottom-banner {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 6px 20px -4px rgba(0, 0, 0, 0.03);
}

.banner-badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #e0f2fe;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.banner-body {
  flex-grow: 1;
}

.banner-body strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 2px;
}

.banner-body p {
  font-size: 0.88rem;
  color: #64748b;
  margin: 0;
  line-height: 1.55;
}

.suite-action-btn {
  background: #0284c7;
  color: #ffffff;
  padding: 13px 22px;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  box-shadow: 0 6px 18px -3px rgba(2, 132, 199, 0.35);
  transition: all 0.25s ease;
}

.suite-action-btn:hover {
  background: #0369a1;
  transform: translateY(-2px);
}

/* =======================================================
   SCROLL REVEAL ANIMATIONS (SMOOTH ENTRANCE)
======================================================= */
.sm-reveal {
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.sm-fade-up {
  transform: translateY(35px);
}

.sm-scale-up {
  transform: translateY(30px) scale(0.97);
}

.sm-reveal.active {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* =======================================================
   RESPONSIVE DESIGN
======================================================= */
@media (max-width: 1080px) {
  .suite-matrix-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .suite-matrix-grid > .suite-node-card:nth-child(n) {
    grid-column: span 1;
  }
  .suite-center-hub {
    grid-column: span 2;
  }
  .hub-inner-shield {
    flex-direction: column;
    text-align: center;
  }
  .hub-text-wrap {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .suite-matrix-section {
    padding: 120px 18px 100px;
  }
  .suite-matrix-grid {
    grid-template-columns: 1fr;
  }
  .suite-matrix-grid > .suite-node-card:nth-child(n),
  .suite-center-hub {
    grid-column: span 1;
  }
  .suite-bottom-banner {
    flex-direction: column;
    text-align: center;
  }
  .banner-badge-icon {
    margin: 0 auto;
  }
}
/* Section 3 Ends  */

/* Sectio 4 Starts  */

/* =======================================================
   DEEBILL PRODUCT SPOTLIGHT (LIGHT THEME ARCHITECTURE)
======================================================= */
.deebill-spotlight-section {
  position: relative;
  background-color: #f8faff;
  padding: 130px 24px 140px;
  overflow: hidden;
  color: #1e293b;
}

.db-container {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Atmospheric Glow Orbs */
.db-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 1;
}

.db-glow.glow-blue {
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.1) 0%, transparent 70%);
  top: 10%;
  left: -120px;
}

.db-glow.glow-cyan {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.09) 0%, transparent 70%);
  bottom: 5%;
  right: -80px;
}

/* =======================================================
   TOP PRODUCT BRAND HEADER
======================================================= */
.db-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e2e8f0;
  flex-wrap: wrap;
  gap: 20px;
}

.db-brand-badge {
  display: flex;
  align-items: center;
  gap: 16px;
}

.db-logo-wrapper {
  width: 90px;
  height: 90px;
  border-radius: 16px;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px -4px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  flex-shrink: 0;
}

.db-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.db-logo-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  border-radius: 14px;
}

.db-brand-text {
  display: flex;
  flex-direction: column;
}

.db-product-tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #0284c7;
}

.db-product-title {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin: 0;
  line-height: 1.1;
}

/* Regional Geo Badges */
.db-geo-pills {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.geo-pill {
  font-size: 0.76rem;
  font-weight: 700;
  color: #475569;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 6px 14px;
  border-radius: 50px;
  box-shadow: 0 2px 8px -2px rgba(0, 0, 0, 0.03);
}

/* =======================================================
   2-COLUMN STAGE GRID
======================================================= */
.db-stage-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: flex-start;
  margin-bottom: 50px;
}

/* =======================================================
   LEFT COLUMN: EDITORIAL & BENTO BLOCKS
======================================================= */
.db-hero-heading {
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: #0f172a;
  margin: 0 0 18px;
}

.gradient-text {
  background: linear-gradient(135deg, #0284c7 0%, #4f46e5 50%, #ea580c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.db-summary-lead {
  font-size: 1.08rem;
  line-height: 1.75;
  color: #334155;
  margin: 0 0 14px;
}

.db-audience-note {
  font-size: 0.94rem;
  line-height: 1.68;
  color: #64748b;
  margin: 0 0 32px;
}

/* 3 Grouped Bento Capability Modules */
.db-capabilities-bento {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 38px;
}

.db-bento-block {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  box-shadow: 0 6px 18px -4px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
  cursor: pointer;
}

.db-bento-block:hover {
  transform: translateY(-4px);
  border-color: #0284c7;
  box-shadow: 0 14px 30px -8px rgba(2, 132, 199, 0.12);
}

.bento-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.box-blue   { background: #e0f2fe; color: #0284c7; }
.box-cyan   { background: #cffafe; color: #0891b2; }
.box-indigo { background: #e0e7ff; color: #4338ca; }

.bento-copy {
  flex-grow: 1;
}

.bento-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 8px;
}

.bento-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 14px;
}

.bento-feature-list li {
  font-size: 0.82rem;
  font-weight: 600;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bento-feature-list li span {
  color: #0284c7;
  font-weight: 900;
}

/* Action Buttons */
.db-actions-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.db-btn-primary {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  padding: 15px 28px;
  border-radius: 14px;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px -4px rgba(2, 132, 199, 0.4);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.db-btn-primary:hover {
  background: #0ea5e9;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -6px rgba(2, 132, 199, 0.5);
}

.btn-arrow {
  transition: transform 0.25s ease;
}

.db-btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.db-btn-secondary {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #334155;
  padding: 15px 24px;
  border-radius: 14px;
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.db-btn-secondary:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #0f172a;
}

/* =======================================================
   RIGHT COLUMN: INTERACTIVE INVOICE COCKPIT
======================================================= */
.db-cockpit-col {
  position: relative;
  perspective: 1000px;
}

.db-cockpit-wrapper {
  position: relative;
  border-radius: 28px;
  display: flex;
}

.cockpit-shadow-plate {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: linear-gradient(135deg, #bae6fd 0%, #c7d2fe 100%);
  transform: translate(8px, 14px);
  opacity: 0.85;
  z-index: 1;
  box-shadow: 0 16px 36px -8px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.db-cockpit-wrapper:hover .cockpit-shadow-plate {
  transform: translate(12px, 18px);
  opacity: 1;
}

.db-cockpit-card {
  position: relative;
  z-index: 2;
  width: 100%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.db-cockpit-wrapper:hover .db-cockpit-card {
  transform: translateY(-4px);
}

/* Card Terminal Bar */
.db-card-bar {
  background: #0f172a;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.db-window-dots {
  display: flex;
  gap: 6px;
}

.db-window-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.db-terminal-tag {
  font-size: 0.68rem;
  font-family: monospace;
  color: #94a3b8;
  letter-spacing: 0.08em;
}

.db-live-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.65rem;
  font-weight: 800;
  color: #38bdf8;
}

.indicator-ping {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px #10b981;
}

/* Invoice Body View */
.db-invoice-view {
  padding: 28px 24px 20px;
}

.inv-meta-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e2e8f0;
}

.inv-num {
  display: block;
  font-size: 1rem;
  font-weight: 900;
  color: #0f172a;
}

.inv-date {
  font-size: 0.76rem;
  color: #64748b;
}

.gst-verified-pill {
  font-size: 0.68rem;
  font-weight: 800;
  background: #e0f2fe;
  color: #0369a1;
  border: 1px solid #bae6fd;
  padding: 4px 10px;
  border-radius: 50px;
}

/* Items Table */
.inv-items-table {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.table-head {
  display: grid;
  grid-template-columns: 2fr 0.6fr 1fr 1fr;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #94a3b8;
  padding-bottom: 8px;
  border-bottom: 1px solid #f1f5f9;
}

.table-row {
  display: grid;
  grid-template-columns: 2fr 0.6fr 1fr 1fr;
  align-items: center;
  padding: 10px 0;
  font-size: 0.84rem;
  color: #334155;
  border-bottom: 1px solid #f8fafc;
}

.table-row strong {
  display: block;
  color: #0f172a;
  font-size: 0.84rem;
}

.table-row small {
  font-size: 0.7rem;
  color: #64748b;
}

.text-right {
  text-align: right;
  font-weight: 700;
  color: #0f172a;
}

/* Calculation */
.inv-calculation-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.calc-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #64748b;
}

.calc-line strong {
  color: #1e293b;
}

.calc-line.total-line {
  padding-top: 8px;
  border-top: 1px dashed #cbd5e1;
  font-size: 0.95rem;
  color: #0f172a;
}

.calc-line.total-line .highlight-val {
  font-size: 1.15rem;
  font-weight: 900;
  color: #0284c7;
}

/* Settlement Status */
.inv-settlement-row {
  display: flex;
  gap: 10px;
  margin-bottom: 6px;
}

.settle-badge {
  flex: 1;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.settle-paid  { background: #dcfce7; color: #15803d; border: 1px solid #bbf7d0; }
.settle-print { background: #f1f5f9; color: #475569; border: 1px solid #e2e8f0; }

/* Footnote Metrics */
.db-card-footnote {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  padding: 16px 22px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 10px;
}

.fn-block {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.fn-block span {
  font-size: 0.65rem;
  color: #64748b;
  text-transform: uppercase;
}

.fn-block strong {
  font-size: 0.84rem;
  color: #0f172a;
  font-weight: 800;
}

.text-blue  { color: #0284c7 !important; }
.text-green { color: #10b981 !important; }

.fn-divider {
  width: 1px;
  height: 28px;
  background: #e2e8f0;
}

/* =======================================================
   SEO TOPIC TAGS CLUSTER
======================================================= */
.db-seo-cluster {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 4px 14px -4px rgba(0, 0, 0, 0.03);
  flex-wrap: wrap;
}

.seo-title {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #0284c7;
  flex-shrink: 0;
}

.seo-pills-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.seo-badge {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #475569;
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.seo-badge:hover {
  background: #ffffff;
  border-color: #0284c7;
  color: #0284c7;
}

/* =======================================================
   SCROLL REVEAL ANIMATIONS
======================================================= */
.db-reveal {
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.db-fade-up    { transform: translateY(35px); }
.db-slide-left  { transform: translateX(-40px); }
.db-slide-right { transform: translateX(40px); }

.db-reveal.active {
  opacity: 1;
  transform: translate(0, 0);
}

/* =======================================================
   RESPONSIVE DESIGN
======================================================= */
@media (max-width: 1040px) {
  .db-stage-grid {
    grid-template-columns: 1fr;
  }
  .db-cockpit-col {
    max-width: 580px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .deebill-spotlight-section {
    padding: 85px 18px 100px;
  }
  .bento-feature-list {
    grid-template-columns: 1fr;
  }
  .db-bento-block {
    flex-direction: column;
    gap: 12px;
  }
  .db-card-footnote {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .fn-divider {
    display: none;
  }
  .db-actions-row {
    flex-direction: column;
    width: 100%;
  }
  .db-btn-primary,
  .db-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* Section 4 Ends  */

/* Section 5 Starts  */

/* =======================================================
   DEEPOS RIBBON & STAGE ARCHITECTURE (LIGHT THEME)
======================================================= */
.deepos-ribbon-section {
  position: relative;
  background-color: #f8faff;
  padding: 130px 24px 150px;
  overflow: hidden;
  color: #1e293b;
}

.pos-ribbon-container {
  max-width: 1340px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Atmospheric Ambient Orbs */
.pos-ribbon-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 1;
}

.pos-ribbon-glow.glow-emerald {
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  top: 10%;
  left: -120px;
}

.pos-ribbon-glow.glow-cyan {
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.09) 0%, transparent 70%);
  bottom: 5%;
  right: -80px;
}

/* =======================================================
   HEADER & TELEMETRY ROW
======================================================= */
.pos-ribbon-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e8f0;
  flex-wrap: wrap;
  gap: 16px;
}

.pos-brand-pill {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pos-brand-logo-frame {
  width: 90px;
  height: 90px;
  border-radius: 16px;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px -4px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  flex-shrink: 0;
}

.pos-logo-asset {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pos-logo-fallback-txt {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #10b981 0%, #0d9488 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
}

.pos-brand-meta {
  display: flex;
  flex-direction: column;
}

.pos-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #059669;
}

.pos-title-name {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin: 0;
  line-height: 1.1;
}

.pos-live-sync-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.78rem;
  color: #475569;
  box-shadow: 0 2px 8px -2px rgba(0, 0, 0, 0.04);
}

.pulse-beacon {
  position: relative;
  width: 10px;
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.beacon-core {
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 6px #10b981;
}

.beacon-wave {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.4);
  animation: beaconPulse 2s infinite ease-out;
}

@keyframes beaconPulse {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2.4); opacity: 0; }
}

/* =======================================================
   HERO CANOPY INTRO
======================================================= */
.pos-hero-canopy {
  margin-bottom: 34px;
}

.pos-canopy-heading {
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: #0f172a;
  margin: 0 0 16px;
}

.gradient-text-emerald {
  background: linear-gradient(135deg, #059669 0%, #0284c7 60%, #4f46e5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pos-canopy-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #475569;
  max-width: 980px;
  margin: 0;
}

/* =======================================================
   RETAIL PROFILE SELECTOR RIBBON
======================================================= */
.pos-mode-ribbon {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 16px 20px;
  margin-bottom: 44px;
  box-shadow: 0 6px 18px -4px rgba(0, 0, 0, 0.03);
}

.ribbon-legend {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #059669;
  margin-bottom: 12px;
}

.ribbon-buttons-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.ribbon-btn {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  outline: none;
  font-family: inherit;
  white-space: nowrap;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.ribbon-btn:hover {
  border-color: #10b981;
  background: #ffffff;
  transform: translateY(-2px);
}

.ribbon-btn.active {
  background: #0f172a;
  border-color: #0f172a;
  color: #ffffff;
  box-shadow: 0 8px 20px -4px rgba(15, 23, 42, 0.3);
}

.btn-glyph {
  font-size: 1.15rem;
}

.btn-copy {
  font-size: 0.86rem;
  font-weight: 700;
}

/* =======================================================
   DUAL HARDWARE STAGE (LEFT HUD & RIGHT CAPABILITIES)
======================================================= */
.pos-hardware-stage {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 50px;
}

/* =======================================================
   LEFT: LIVE CHECKOUT HUD CONSOLE
======================================================= */
.pos-hud-wrapper {
  position: relative;
  border-radius: 26px;
  display: flex;
  perspective: 1000px;
}

.hud-layer-plate {
  position: absolute;
  inset: 0;
  border-radius: 26px;
  background: linear-gradient(135deg, #a7f3d0 0%, #bae6fd 100%);
  transform: translate(8px, 14px);
  opacity: 0.85;
  z-index: 1;
  box-shadow: 0 16px 36px -8px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.pos-hud-wrapper:hover .hud-layer-plate {
  transform: translate(12px, 18px);
  opacity: 1;
}

.hud-console-card {
  position: relative;
  z-index: 2;
  width: 100%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pos-hud-wrapper:hover .hud-console-card {
  transform: translateY(-4px);
}

/* HUD Header */
.hud-bar-top {
  background: #0f172a;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hud-reg-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-family: monospace;
  color: #cbd5e1;
}

.hud-led {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px #10b981;
}

.hud-speed-chip {
  font-size: 0.65rem;
  font-weight: 800;
  color: #34d399;
  background: rgba(16, 185, 129, 0.15);
  padding: 3px 8px;
  border-radius: 50px;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

/* Screen Body */
.hud-screen-body {
  padding: 22px 20px 18px;
}

.hud-profile-banner {
  background: #f8faff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.profile-lbl {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 0.06em;
}

.profile-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: #0f172a;
}

.profile-chip {
  font-size: 0.68rem;
  font-weight: 700;
  background: #ecfdf5;
  color: #059669;
  border: 1px solid #a7f3d0;
  padding: 4px 10px;
  border-radius: 50px;
}

/* Cart Stream */
.hud-cart-stream {
  margin-bottom: 16px;
}

.cart-stream-head {
  display: grid;
  grid-template-columns: 2fr 0.6fr 1fr;
  font-size: 0.68rem;
  font-weight: 800;
  color: #94a3b8;
  padding-bottom: 6px;
  border-bottom: 1px solid #f1f5f9;
}

.cart-stream-row {
  display: grid;
  grid-template-columns: 2fr 0.6fr 1fr;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f8fafc;
}

.cart-stream-row strong {
  display: block;
  font-size: 0.82rem;
  color: #0f172a;
}

.cart-stream-row small {
  font-size: 0.68rem;
  color: #64748b;
  font-family: monospace;
}

.txt-end {
  text-align: right;
  font-weight: 800;
  color: #0f172a;
  font-size: 0.84rem;
}

/* Calculation Tray */
.hud-calc-tray {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.calc-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: #64748b;
}

.calc-row strong,
.calc-row span:last-child {
  color: #0f172a;
  font-weight: 700;
}

.calc-row.net-row {
  padding-top: 6px;
  border-top: 1px dashed #cbd5e1;
  font-size: 0.88rem;
  font-weight: 900;
  color: #0f172a;
}

.net-val {
  color: #059669 !important;
  font-size: 1.1rem;
}

/* Tender Action Chips */
.hud-pay-tenders {
  display: flex;
  gap: 8px;
}

.tender-chip {
  flex: 1;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 8px 4px;
  font-size: 0.7rem;
  font-weight: 800;
  text-align: center;
  color: #334155;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tender-chip.active {
  background: #0f172a;
  border-color: #0f172a;
  color: #ffffff;
}

/* Telemetry Strip */
.hud-bottom-telemetry {
  background: #f8faff;
  border-top: 1px solid #e2e8f0;
  padding: 14px 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 8px;
}

.tele-item {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.tele-item small {
  font-size: 0.65rem;
  color: #64748b;
  text-transform: uppercase;
}

.tele-item strong {
  font-size: 0.82rem;
  color: #0f172a;
}

.text-emerald { color: #059669 !important; }
.text-cyan    { color: #0284c7 !important; }

.tele-divider {
  width: 1px;
  height: 24px;
  background: #e2e8f0;
}

/* =======================================================
   RIGHT: 10 CAPABILITIES CIRCUIT GRID
======================================================= */
.pos-capabilities-canopy {
  display: flex;
  flex-direction: column;
}

.canopy-intro {
  margin-bottom: 20px;
}

.canopy-tag {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #059669;
}

.canopy-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #0f172a;
  margin: 4px 0 0;
  letter-spacing: -0.015em;
}

.pos-circuit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 30px;
}

.circuit-cell {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 14px -4px rgba(0, 0, 0, 0.03);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.circuit-cell.cell-wide {
  grid-column: span 2;
}

.circuit-cell:hover {
  transform: translateY(-3px);
  border-color: #10b981;
  box-shadow: 0 10px 24px -6px rgba(16, 185, 129, 0.15);
}

.cell-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.cell-num {
  font-size: 0.68rem;
  font-weight: 800;
  color: #059669;
  letter-spacing: 0.06em;
}

.cell-icon {
  font-size: 1rem;
}

.cell-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 4px;
}

.cell-desc {
  font-size: 0.78rem;
  line-height: 1.5;
  color: #64748b;
  margin: 0;
}

/* Action Buttons */
.pos-connect-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.pos-cta-btn {
  background: linear-gradient(135deg, #059669 0%, #0d9488 100%);
  color: #ffffff;
  padding: 15px 28px;
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px -4px rgba(5, 150, 105, 0.4);
  transition: all 0.25s ease;
}

.pos-cta-btn:hover {
  background: #047857;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -6px rgba(5, 150, 105, 0.5);
}

.pos-cta-btn .arr {
  transition: transform 0.25s ease;
}

.pos-cta-btn:hover .arr {
  transform: translateX(4px);
}

.pos-call-btn {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #334155;
  padding: 15px 24px;
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.pos-call-btn:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #0f172a;
}

/* =======================================================
   SEO TAGS FOOTER
======================================================= */
.pos-geo-footer {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 4px 14px -4px rgba(0, 0, 0, 0.03);
  flex-wrap: wrap;
}

.geo-caption {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #059669;
  flex-shrink: 0;
}

.geo-tags-list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.geo-chip {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #475569;
  transition: all 0.25s ease;
}

.geo-chip:hover {
  border-color: #10b981;
  color: #059669;
}

/* =======================================================
   SCROLL REVEAL ANIMATIONS
======================================================= */
.dpr-reveal {
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.dpr-fade-up    { transform: translateY(35px); }
.dpr-slide-left  { transform: translateX(-40px); }
.dpr-slide-right { transform: translateX(40px); }

.dpr-reveal.active {
  opacity: 1;
  transform: translate(0, 0);
}

/* =======================================================
   RESPONSIVENESS
======================================================= */
@media (max-width: 1040px) {
  .pos-hardware-stage {
    grid-template-columns: 1fr;
  }
  .pos-hud-wrapper {
    max-width: 580px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .deepos-ribbon-section {
    padding: 85px 18px 100px;
  }
  .pos-circuit-grid {
    grid-template-columns: 1fr;
  }
  .circuit-cell.cell-wide {
    grid-column: span 1;
  }
  .pos-connect-actions {
    flex-direction: column;
    width: 100%;
  }
  .pos-cta-btn,
  .pos-call-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Section 5 Ends  */


/* Section 6 Starts  */

/* =======================================================
   DEEHR WORKFORCE MATRIX & DOSSIER SECTION (LIGHT THEME)
======================================================= */
.deehr-matrix-section {
  position: relative;
  background-color: #f8faff;
  padding: 130px 24px 145px;
  overflow: hidden;
  color: #1e293b;
}

.hr-container {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Atmospheric Glow Orbs */
.hr-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 1;
}

.hr-glow.glow-violet {
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
  top: 10%;
  left: -120px;
}

.hr-glow.glow-indigo {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.09) 0%, transparent 70%);
  bottom: 5%;
  right: -80px;
}

/* =======================================================
   TOP PRODUCT BRAND HEADER
======================================================= */
.hr-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e2e8f0;
  flex-wrap: wrap;
  gap: 20px;
}

.hr-brand-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hr-logo-frame {
  width: 90px;
  height: 90px;
  border-radius: 16px;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px -4px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  flex-shrink: 0;
}

.hr-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hr-logo-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
}

.hr-brand-info {
  display: flex;
  flex-direction: column;
}

.hr-kicker-tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #7c3aed;
}

.hr-brand-heading {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin: 0;
  line-height: 1.1;
}

/* Regional & Compliance Pills */
.hr-pill-stack {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hr-meta-pill {
  font-size: 0.76rem;
  font-weight: 700;
  color: #475569;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 6px 14px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 8px -2px rgba(0, 0, 0, 0.03);
}

.hr-dot-ping {
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 6px #10b981;
}

/* =======================================================
   HERO CANOPY HEADLINE
======================================================= */
.hr-hero-canopy {
  margin-bottom: 40px;
}

.hr-canopy-title {
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: #0f172a;
  margin: 0 0 16px;
}

.gradient-text-violet {
  background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 50%, #0284c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hr-canopy-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #475569;
  max-width: 960px;
  margin: 0;
}

/* =======================================================
   2-COLUMN MATRIX STAGE
======================================================= */
.hr-matrix-stage {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: flex-start;
  margin-bottom: 50px;
}

/* =======================================================
   LEFT: INTERACTIVE CONSOLE NAV
======================================================= */
.console-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #7c3aed;
  margin-bottom: 14px;
}

.hr-console-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 34px;
}

.hr-nav-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  box-shadow: 0 4px 16px -4px rgba(0, 0, 0, 0.03);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.hr-nav-item:hover {
  border-color: #7c3aed;
  transform: translateX(4px);
  box-shadow: 0 10px 24px -6px rgba(124, 58, 237, 0.12);
}

.hr-nav-item.active {
  background: #ffffff;
  border-color: #7c3aed;
  box-shadow: 0 12px 28px -6px rgba(124, 58, 237, 0.18);
}

.nav-icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.box-violet  { background: #f5f3ff; color: #7c3aed; }
.box-indigo  { background: #e0e7ff; color: #4338ca; }
.box-cyan    { background: #e0f2fe; color: #0284c7; }
.box-fuchsia { background: #fdf4ff; color: #c026d3; }

.nav-copy {
  flex-grow: 1;
}

.nav-copy strong {
  display: block;
  font-size: 0.98rem;
  color: #0f172a;
  margin-bottom: 2px;
}

.nav-copy small {
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.4;
}

.nav-indicator-arrow {
  color: #cbd5e1;
  font-size: 1.2rem;
  transition: transform 0.25s ease, color 0.25s ease;
}

.hr-nav-item.active .nav-indicator-arrow,
.hr-nav-item:hover .nav-indicator-arrow {
  color: #7c3aed;
  transform: translateX(4px);
}

/* Action Buttons */
.hr-actions-cluster {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hr-cta-btn {
  background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
  color: #ffffff;
  padding: 15px 28px;
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px -4px rgba(124, 58, 237, 0.4);
  transition: all 0.25s ease;
}

.hr-cta-btn:hover {
  background: #6d28d9;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -6px rgba(124, 58, 237, 0.5);
}

.hr-cta-btn .btn-arrow {
  transition: transform 0.25s ease;
}

.hr-cta-btn:hover .btn-arrow {
  transform: translateX(4px);
}

.hr-call-btn {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #334155;
  padding: 15px 24px;
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.hr-call-btn:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #0f172a;
}

/* =======================================================
   RIGHT: LIVE EMPLOYEE DOSSIER CARD
======================================================= */
.hr-dossier-col {
  position: relative;
  perspective: 1000px;
}

.dossier-card-wrapper {
  position: relative;
  border-radius: 28px;
  display: flex;
}

.dossier-shadow-plate {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: linear-gradient(135deg, #ddd6fe 0%, #bae6fd 100%);
  transform: translate(8px, 14px);
  opacity: 0.85;
  z-index: 1;
  box-shadow: 0 16px 36px -8px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.dossier-card-wrapper:hover .dossier-shadow-plate {
  transform: translate(12px, 18px);
  opacity: 1;
}

.dossier-main-card {
  position: relative;
  z-index: 2;
  width: 100%;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.dossier-card-wrapper:hover .dossier-main-card {
  transform: translateY(-4px);
}

/* Window Bar */
.dossier-window-bar {
  background: #0f172a;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dossier-dots {
  display: flex;
  gap: 6px;
}

.dossier-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.dossier-window-id {
  font-size: 0.68rem;
  font-family: monospace;
  color: #cbd5e1;
  letter-spacing: 0.06em;
}

.dossier-live-tag {
  font-size: 0.65rem;
  font-weight: 800;
  color: #c084fc;
  background: rgba(192, 132, 252, 0.15);
  padding: 3px 8px;
  border-radius: 50px;
  border: 1px solid rgba(192, 132, 252, 0.3);
  display: flex;
  align-items: center;
  gap: 6px;
}

.tag-pulse {
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 6px #10b981;
}

/* Profile Header */
.dossier-profile-header {
  padding: 24px 24px 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid #f1f5f9;
}

.avatar-ring-box {
  position: relative;
}

.avatar-initials {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.3);
}

.avatar-status-dot {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #10b981;
  border: 2px solid #ffffff;
}

.dossier-profile-text {
  flex-grow: 1;
}

.name-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2px;
}

.emp-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

.emp-status-badge {
  font-size: 0.68rem;
  font-weight: 800;
  color: #15803d;
  background: #dcfce7;
  border: 1px solid #bbf7d0;
  padding: 2px 8px;
  border-radius: 50px;
}

.emp-designation {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  color: #7c3aed;
  margin-bottom: 2px;
}

.emp-dept {
  font-size: 0.72rem;
  color: #64748b;
}

/* Stats Matrix */
.dossier-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 18px 24px;
}

.d-stat-box {
  background: #f8faff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
}

.d-stat-lbl {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 4px;
}

.d-stat-val {
  font-size: 0.88rem;
  font-weight: 800;
}

.text-violet  { color: #7c3aed !important; }
.text-emerald { color: #059669 !important; }
.text-indigo  { color: #4338ca !important; }
.text-cyan    { color: #0284c7 !important; }

/* Leave Workflow Simulation */
.leave-workflow-box {
  background: #fdf4ff;
  border: 1px dashed #f0abfc;
  border-radius: 18px;
  margin: 0 24px 20px;
  padding: 16px 18px;
}

.workflow-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.wf-title {
  font-size: 0.68rem;
  font-weight: 800;
  color: #a21caf;
  letter-spacing: 0.06em;
}

.wf-type {
  font-size: 0.7rem;
  font-weight: 700;
  color: #701a75;
}

.wf-desc {
  font-size: 0.78rem;
  line-height: 1.5;
  color: #4a044e;
  margin: 0 0 12px;
}

.wf-btn-row {
  display: flex;
  gap: 8px;
}

.wf-btn {
  flex: 1;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 0.74rem;
  font-weight: 800;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.btn-approve {
  background: #7c3aed;
  color: #ffffff;
}

.btn-approve:hover {
  background: #6d28d9;
}

.btn-review {
  background: #ffffff;
  border: 1px solid #f0abfc;
  color: #86198f;
}

.btn-review:hover {
  background: #fae8ff;
}

/* Footnote Strip */
.dossier-footnote-bar {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: #64748b;
  font-weight: 600;
}

/* =======================================================
   SEO TAGS RIBBON
======================================================= */
.hr-seo-ribbon {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 4px 14px -4px rgba(0, 0, 0, 0.03);
  flex-wrap: wrap;
}

.seo-ribbon-title {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #7c3aed;
  flex-shrink: 0;
}

.seo-ribbon-chips {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.seo-pill {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #475569;
  transition: all 0.25s ease;
}

.seo-pill:hover {
  border-color: #7c3aed;
  color: #7c3aed;
}

/* =======================================================
   SCROLL REVEAL ANIMATIONS
======================================================= */
.hr-reveal {
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.hr-fade-up    { transform: translateY(35px); }
.hr-slide-left  { transform: translateX(-40px); }
.hr-slide-right { transform: translateX(40px); }

.hr-reveal.active {
  opacity: 1;
  transform: translate(0, 0);
}

/* =======================================================
   RESPONSIVE DESIGN
======================================================= */
@media (max-width: 1040px) {
  .hr-matrix-stage {
    grid-template-columns: 1fr;
  }
  .hr-dossier-col {
    max-width: 580px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .deehr-matrix-section {
    padding: 85px 18px 100px;
  }
  .dossier-stats-grid {
    grid-template-columns: 1fr;
  }
  .hr-actions-cluster {
    flex-direction: column;
    width: 100%;
  }
  .hr-cta-btn,
  .hr-call-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Section 6 Ends  */

/* Section 7 Starst  */

/* =======================================================
   DEEINVENTORY: WAREHOUSE TELEMETRY & STREAM SECTION
======================================================= */
.inventory-stream-section {
  position: relative;
  background-color: #f8faff;
  padding: 130px 24px 145px;
  overflow: hidden;
  color: #1e293b;
}

.inv-container {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Atmospheric Ambient Orbs */
.inv-ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 1;
}

.inv-ambient-glow.glow-amber {
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.08) 0%, transparent 70%);
  top: 10%;
  left: -120px;
}

.inv-ambient-glow.glow-blue {
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.09) 0%, transparent 70%);
  bottom: 5%;
  right: -80px;
}

/* =======================================================
   TOP BRAND HEADER & TELEMETRY
======================================================= */
.inv-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e2e8f0;
  flex-wrap: wrap;
  gap: 20px;
}

.inv-brand-cluster {
  display: flex;
  align-items: center;
  gap: 16px;
}

.inv-logo-box {
  width: 90px;
  height: 90px;
  border-radius: 16px;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px -4px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  flex-shrink: 0;
}

.inv-logo-file {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.inv-logo-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
}

.inv-title-meta {
  display: flex;
  flex-direction: column;
}

.inv-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #d97706;
}

.inv-product-heading {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin: 0;
  line-height: 1.1;
}

.inv-telemetry-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.76rem;
  color: #475569;
  box-shadow: 0 2px 8px -2px rgba(0, 0, 0, 0.04);
}

.tele-beacon {
  position: relative;
  width: 10px;
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.beacon-dot {
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 6px #10b981;
}

.beacon-pulse {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.4);
  animation: beaconPulse 2s infinite ease-out;
}

@keyframes beaconPulse {
  0%   { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2.4); opacity: 0; }
}

/* =======================================================
   CANOPY HEADLINE
======================================================= */
.inv-canopy-box {
  margin-bottom: 34px;
}

.inv-hero-title {
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: #0f172a;
  margin: 0 0 16px;
}

.gradient-text-amber {
  background: linear-gradient(135deg, #d97706 0%, #ea580c 50%, #4f46e5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.inv-hero-summary {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #475569;
  max-width: 960px;
  margin: 0;
}

/* =======================================================
   INTERACTIVE DEPOT SWITCHER
======================================================= */
.inv-depot-switcher {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 18px 22px;
  margin-bottom: 44px;
  box-shadow: 0 6px 18px -4px rgba(0, 0, 0, 0.03);
}

.switcher-caption {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #d97706;
  margin-bottom: 12px;
}

.depot-nodes-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.depot-node-btn {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  outline: none;
  font-family: inherit;
  text-align: left;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.depot-node-btn:hover {
  border-color: #d97706;
  background: #ffffff;
  transform: translateY(-2px);
}

.depot-node-btn.active {
  background: #0f172a;
  border-color: #0f172a;
  color: #ffffff;
  box-shadow: 0 8px 20px -4px rgba(15, 23, 42, 0.25);
}

.node-bullet {
  font-size: 1.35rem;
}

.node-text strong {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 2px;
}

.node-text small {
  font-size: 0.72rem;
  color: #64748b;
}

.depot-node-btn.active .node-text small {
  color: #94a3b8;
}

/* =======================================================
   THE DUAL WAREHOUSE DECK STAGE
======================================================= */
.inv-stage-deck {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 46px;
  align-items: flex-start;
  margin-bottom: 50px;
}

/* =======================================================
   LEFT: WAREHOUSE RACK SIMULATION CARD
======================================================= */
.inv-rack-col {
  position: relative;
  perspective: 1000px;
}

.rack-console-wrapper {
  position: relative;
  border-radius: 26px;
  display: flex;
}

.rack-shadow-plate {
  position: absolute;
  inset: 0;
  border-radius: 26px;
  background: linear-gradient(135deg, #fed7aa 0%, #c7d2fe 100%);
  transform: translate(8px, 14px);
  opacity: 0.85;
  z-index: 1;
  box-shadow: 0 16px 36px -8px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.rack-console-wrapper:hover .rack-shadow-plate {
  transform: translate(12px, 18px);
  opacity: 1;
}

.rack-console-card {
  position: relative;
  z-index: 2;
  width: 100%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.rack-console-wrapper:hover .rack-console-card {
  transform: translateY(-4px);
}

.rack-bezel-bar {
  background: #0f172a;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rack-status-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bezel-led {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px #10b981;
}

.rack-terminal-code {
  font-size: 0.68rem;
  font-family: monospace;
  color: #cbd5e1;
}

.rack-audit-badge {
  font-size: 0.65rem;
  font-weight: 800;
  color: #fbbf24;
  background: rgba(245, 158, 11, 0.15);
  padding: 3px 8px;
  border-radius: 50px;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

/* Rack Inner Body */
.rack-inner-view {
  padding: 22px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rack-sku-item {
  background: #f8faff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.25s ease;
}

.rack-sku-item:hover {
  border-color: #d97706;
  transform: translateX(3px);
}

.rack-sku-item.item-alert {
  background: #fffbeb;
  border-color: #fde68a;
}

.sku-info {
  display: flex;
  flex-direction: column;
}

.sku-id {
  font-size: 0.68rem;
  font-weight: 800;
  font-family: monospace;
  color: #0284c7;
}

.sku-title {
  font-size: 0.86rem;
  font-weight: 800;
  color: #0f172a;
  margin: 2px 0;
}

.sku-location {
  font-size: 0.72rem;
  color: #64748b;
}

.sku-quantity-box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.qty-num {
  font-size: 0.95rem;
  font-weight: 900;
  color: #0f172a;
}

.qty-status {
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 50px;
}

.status-healthy {
  background: #ecfdf5;
  color: #059669;
  border: 1px solid #a7f3d0;
}

.status-warning {
  background: #fff7ed;
  color: #c2410c;
  border: 1px solid #fed7aa;
}

/* Movement Log */
.rack-movement-simulation {
  background: #ffffff;
  border: 1px dashed #cbd5e1;
  border-radius: 12px;
  padding: 12px 14px;
  margin-top: 4px;
}

.movement-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}

.m-title {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #64748b;
}

.m-time {
  font-size: 0.66rem;
  font-family: monospace;
  color: #94a3b8;
}

.movement-log {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: #334155;
}

.log-indicator {
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 6px;
}

.log-indicator.outbound {
  background: #fee2e2;
  color: #dc2626;
}

/* Bottom Telemetry */
.rack-bottom-telemetry {
  background: #f8faff;
  border-top: 1px solid #e2e8f0;
  padding: 14px 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 8px;
}

.tele-col {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.tele-col small {
  font-size: 0.65rem;
  color: #64748b;
  text-transform: uppercase;
}

.tele-col strong {
  font-size: 0.84rem;
  color: #0f172a;
}

.text-indigo { color: #4338ca !important; }
.text-amber  { color: #d97706 !important; }

.tele-divider {
  width: 1px;
  height: 24px;
  background: #e2e8f0;
}

/* =======================================================
   RIGHT: 3-TIER PIPELINE CAPABILITIES
======================================================= */
.inv-capabilities-col {
  display: flex;
  flex-direction: column;
}

.cap-intro-header {
  margin-bottom: 24px;
}

.cap-section-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #d97706;
}

.cap-heading {
  font-size: 1.45rem;
  font-weight: 900;
  color: #0f172a;
  margin: 4px 0 8px;
  letter-spacing: -0.015em;
}

.cap-desc {
  font-size: 0.94rem;
  line-height: 1.65;
  color: #64748b;
  margin: 0;
}

.inv-pipeline-blocks {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 34px;
}

.pipeline-block {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  box-shadow: 0 4px 14px -4px rgba(0, 0, 0, 0.03);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.pipeline-block:hover {
  transform: translateY(-3px);
  border-color: #d97706;
  box-shadow: 0 10px 24px -6px rgba(217, 119, 6, 0.14);
}

.pb-indicator {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #fef3c7;
  color: #b45309;
  font-size: 0.88rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pb-body {
  flex-grow: 1;
}

.pb-body h5 {
  font-size: 0.98rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 4px;
}

.pb-body p {
  font-size: 0.84rem;
  line-height: 1.55;
  color: #64748b;
  margin: 0 0 10px;
}

.pb-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pb-tags span {
  font-size: 0.72rem;
  font-weight: 700;
  color: #475569;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 3px 10px;
  border-radius: 6px;
}

/* Action Cluster */
.inv-action-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.inv-btn-primary {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  color: #ffffff;
  padding: 15px 28px;
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px -4px rgba(217, 119, 6, 0.4);
  transition: all 0.25s ease;
}

.inv-btn-primary:hover {
  background: #92400e;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -6px rgba(217, 119, 6, 0.5);
}

.inv-btn-primary .arr {
  transition: transform 0.25s ease;
}

.inv-btn-primary:hover .arr {
  transform: translateX(4px);
}

.inv-btn-secondary {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #334155;
  padding: 15px 24px;
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.inv-btn-secondary:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #0f172a;
}

/* =======================================================
   SEO STRIP
======================================================= */
.inv-seo-strip {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 4px 14px -4px rgba(0, 0, 0, 0.03);
  flex-wrap: wrap;
}

.seo-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #d97706;
  flex-shrink: 0;
}

.seo-pill-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.seo-chip {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #475569;
  transition: all 0.25s ease;
}

.seo-chip:hover {
  border-color: #d97706;
  color: #d97706;
}

/* =======================================================
   SCROLL REVEAL ANIMATIONS
======================================================= */
.inv-reveal {
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.inv-fade-up    { transform: translateY(35px); }
.inv-slide-left  { transform: translateX(-40px); }
.inv-slide-right { transform: translateX(40px); }

.inv-reveal.active {
  opacity: 1;
  transform: translate(0, 0);
}

/* =======================================================
   RESPONSIVE DESIGN
======================================================= */
@media (max-width: 1040px) {
  .depot-nodes-track {
    grid-template-columns: 1fr;
  }
  .inv-stage-deck {
    grid-template-columns: 1fr;
  }
  .inv-rack-col {
    max-width: 580px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .inventory-stream-section {
    padding: 85px 18px 100px;
  }
  .inv-action-row {
    flex-direction: column;
    width: 100%;
  }
  .inv-btn-primary,
  .inv-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* Section 7 ENds  */

/* Section 8 Starts  */

/* =======================================================
   DEECRM: OMNICHANNEL RADAR & PIPELINE NEXUS (LIGHT THEME)
======================================================= */
.crm-nexus-section {
  position: relative;
  background-color: #f8faff;
  padding: 130px 24px 145px;
  overflow: hidden;
  color: #1e293b;
}

.crm-container {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Atmospheric Glow Orbs */
.crm-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 1;
}

.crm-glow.glow-rose {
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgba(244, 63, 94, 0.08) 0%, transparent 70%);
  top: 10%;
  left: -120px;
}

.crm-glow.glow-indigo {
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.09) 0%, transparent 70%);
  bottom: 5%;
  right: -80px;
}

/* =======================================================
   TOP PRODUCT BRAND IDENTIFICATION
======================================================= */
.crm-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e2e8f0;
  flex-wrap: wrap;
  gap: 20px;
}

.crm-brand-identity {
  display: flex;
  align-items: center;
  gap: 16px;
}

.crm-logo-box {
  width: 90px;
  height: 90px;
  border-radius: 16px;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px -4px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  flex-shrink: 0;
}

.crm-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.crm-logo-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f43f5e 0%, #e11d48 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
}

.crm-brand-titles {
  display: flex;
  flex-direction: column;
}

.crm-sub-badge {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #f43f5e;
}

.crm-main-title {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin: 0;
  line-height: 1.1;
}

/* Regional & Activity Badges */
.crm-meta-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.crm-pill {
  font-size: 0.76rem;
  font-weight: 700;
  color: #475569;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 6px 14px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 8px -2px rgba(0, 0, 0, 0.04);
}

.pill-dot-ping {
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 6px #10b981;
}

/* =======================================================
   HERO CANOPY
======================================================= */
.crm-hero-canopy {
  margin-bottom: 34px;
}

.crm-canopy-heading {
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: #0f172a;
  margin: 0 0 16px;
}

.gradient-text-rose {
  background: linear-gradient(135deg, #f43f5e 0%, #e11d48 50%, #4f46e5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.crm-canopy-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #475569;
  max-width: 960px;
  margin: 0;
}

/* =======================================================
   INTERACTIVE PIPELINE LADDER
======================================================= */
.crm-pipeline-ladder {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 18px 22px;
  margin-bottom: 44px;
  box-shadow: 0 6px 18px -4px rgba(0, 0, 0, 0.03);
}

.ladder-title {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #f43f5e;
  margin-bottom: 12px;
}

.ladder-steps-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.ladder-step {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.ladder-step:hover {
  border-color: #f43f5e;
  background: #ffffff;
  transform: translateY(-2px);
}

.ladder-step.active {
  background: #0f172a;
  border-color: #0f172a;
  color: #ffffff;
  box-shadow: 0 8px 20px -4px rgba(15, 23, 42, 0.25);
}

.step-badge {
  font-size: 0.65rem;
  font-weight: 800;
  color: #f43f5e;
  margin-bottom: 4px;
}

.ladder-step.active .step-badge {
  color: #fda4af;
}

.ladder-step strong {
  font-size: 0.88rem;
  margin-bottom: 2px;
}

.ladder-step small {
  font-size: 0.72rem;
  color: #64748b;
}

.ladder-step.active small {
  color: #94a3b8;
}

/* =======================================================
   2-COLUMN STAGE GRID
======================================================= */
.crm-stage-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: flex-start;
  margin-bottom: 50px;
}

/* =======================================================
   LEFT: LIVE CUSTOMER 360° ACTIVITY LEDGER
======================================================= */
.crm-ledger-col {
  position: relative;
  perspective: 1000px;
}

.crm-ledger-wrapper {
  position: relative;
  border-radius: 26px;
  display: flex;
}

.crm-card-shadow-plate {
  position: absolute;
  inset: 0;
  border-radius: 26px;
  background: linear-gradient(135deg, #fecdd3 0%, #c7d2fe 100%);
  transform: translate(8px, 14px);
  opacity: 0.85;
  z-index: 1;
  box-shadow: 0 16px 36px -8px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.crm-ledger-wrapper:hover .crm-card-shadow-plate {
  transform: translate(12px, 18px);
  opacity: 1;
}

.crm-ledger-card {
  position: relative;
  z-index: 2;
  width: 100%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.crm-ledger-wrapper:hover .crm-ledger-card {
  transform: translateY(-4px);
}

.ledger-top-bar {
  background: #0f172a;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ledger-status-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.led-core {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px #10b981;
}

.ledger-code {
  font-size: 0.68rem;
  font-family: monospace;
  color: #cbd5e1;
}

.ledger-status-pill {
  font-size: 0.65rem;
  font-weight: 800;
  color: #f43f5e;
  background: rgba(244, 63, 94, 0.15);
  padding: 3px 8px;
  border-radius: 50px;
  border: 1px solid rgba(244, 63, 94, 0.3);
}

/* Profile Summary Strip */
.ledger-profile-box {
  background: #f8faff;
  border-bottom: 1px solid #e2e8f0;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar-capsule {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f43f5e 0%, #e11d48 100%);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.profile-meta strong {
  display: block;
  font-size: 0.94rem;
  color: #0f172a;
  margin-bottom: 2px;
}

.profile-deal-val {
  font-size: 0.74rem;
  font-weight: 700;
  color: #059669;
}

/* Activity Stream */
.ledger-stream-track {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stream-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.stream-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.icon-green { background: #dcfce7; }
.icon-blue  { background: #e0f2fe; }
.icon-amber { background: #fef3c7; }

.stream-body {
  flex-grow: 1;
}

.stream-header-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2px;
}

.stream-header-row strong {
  font-size: 0.82rem;
  color: #0f172a;
}

.stream-header-row small {
  font-size: 0.68rem;
  color: #94a3b8;
}

.stream-body p {
  font-size: 0.76rem;
  line-height: 1.45;
  color: #64748b;
  margin: 0;
}

/* Action Tray */
.ledger-action-tray {
  display: flex;
  gap: 8px;
  padding: 0 20px 16px;
}

.action-chip {
  flex: 1;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 8px 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #334155;
  cursor: pointer;
  transition: all 0.2s ease;
}

.action-chip:hover {
  border-color: #f43f5e;
  color: #f43f5e;
}

.ledger-footnote {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  padding: 10px 20px;
  font-size: 0.7rem;
  color: #64748b;
}

/* =======================================================
   RIGHT: 6-PILLAR CAPABILITIES GRID
======================================================= */
.crm-capabilities-col {
  display: flex;
  flex-direction: column;
}

.cap-narrative {
  margin-bottom: 24px;
}

.cap-sub-tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #f43f5e;
}

.cap-main-heading {
  font-size: 1.45rem;
  font-weight: 900;
  color: #0f172a;
  margin: 4px 0 8px;
  letter-spacing: -0.015em;
}

.cap-lead-desc {
  font-size: 0.94rem;
  line-height: 1.65;
  color: #64748b;
  margin: 0;
}

.crm-pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 30px;
}

.pillar-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 14px -4px rgba(0, 0, 0, 0.03);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.pillar-card:hover {
  transform: translateY(-3px);
  border-color: #f43f5e;
  box-shadow: 0 10px 24px -6px rgba(244, 63, 94, 0.14);
}

.pillar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.pillar-num {
  font-size: 0.68rem;
  font-weight: 800;
  color: #f43f5e;
  letter-spacing: 0.06em;
}

.pillar-glyph {
  font-size: 1.1rem;
}

.pillar-card h5 {
  font-size: 0.92rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 4px;
}

.pillar-card p {
  font-size: 0.78rem;
  line-height: 1.5;
  color: #64748b;
  margin: 0;
}

/* Action Buttons */
.crm-cta-cluster {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.crm-btn-primary {
  background: linear-gradient(135deg, #f43f5e 0%, #e11d48 100%);
  color: #ffffff;
  padding: 15px 28px;
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px -4px rgba(244, 63, 94, 0.4);
  transition: all 0.25s ease;
}

.crm-btn-primary:hover {
  background: #be123c;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -6px rgba(244, 63, 94, 0.5);
}

.crm-btn-primary .btn-arr {
  transition: transform 0.25s ease;
}

.crm-btn-primary:hover .btn-arr {
  transform: translateX(4px);
}

.crm-btn-secondary {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #334155;
  padding: 15px 24px;
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.crm-btn-secondary:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #0f172a;
}

/* =======================================================
   SEO STRIP
======================================================= */
.crm-seo-ribbon {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 4px 14px -4px rgba(0, 0, 0, 0.03);
  flex-wrap: wrap;
}

.seo-caption {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #f43f5e;
  flex-shrink: 0;
}

.seo-pills-list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.seo-pill {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #475569;
  transition: all 0.25s ease;
}

.seo-pill:hover {
  border-color: #f43f5e;
  color: #f43f5e;
}

/* =======================================================
   SCROLL REVEAL ANIMATIONS
======================================================= */
.crm-reveal {
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.crm-fade-up    { transform: translateY(35px); }
.crm-slide-left  { transform: translateX(-40px); }
.crm-slide-right { transform: translateX(40px); }

.crm-reveal.active {
  opacity: 1;
  transform: translate(0, 0);
}

/* =======================================================
   RESPONSIVE DESIGN
======================================================= */
@media (max-width: 1040px) {
  .ladder-steps-track {
    grid-template-columns: repeat(2, 1fr);
  }
  .crm-stage-grid {
    grid-template-columns: 1fr;
  }
  .crm-ledger-col {
    max-width: 580px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .crm-nexus-section {
    padding: 85px 18px 100px;
  }
  .ladder-steps-track {
    grid-template-columns: 1fr;
  }
  .crm-pillars-grid {
    grid-template-columns: 1fr;
  }
  .crm-cta-cluster {
    flex-direction: column;
    width: 100%;
  }
  .crm-btn-primary,
  .crm-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}
/* Section 8 ENds  */

/* Section 9 Starts  */
/* =======================================================
   DEEATTENDANCE: BIOMETRIC TELEMETRY & GEOFENCE TERMINAL
======================================================= */
.attendance-terminal-section {
  position: relative;
  background-color: #ffffff; /* Clean light canvas */
  padding: 130px 24px 145px;
  overflow: hidden;
  color: #1e293b;
}

.att-container {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Atmospheric Ambient Orbs */
.att-ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 1;
}

.att-ambient-glow.glow-cyan {
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.09) 0%, transparent 70%);
  top: 10%;
  left: -120px;
}

.att-ambient-glow.glow-emerald {
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  bottom: 5%;
  right: -80px;
}

/* =======================================================
   TOP BRAND BAR
======================================================= */
.att-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e2e8f0;
  flex-wrap: wrap;
  gap: 20px;
}

.att-brand-box {
  display: flex;
  align-items: center;
  gap: 16px;
}

.att-logo-frame {
  width: 90px;
  height: 90px;
  border-radius: 16px;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px -4px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  flex-shrink: 0;
}

.att-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.att-logo-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
}

.att-brand-meta {
  display: flex;
  flex-direction: column;
}

.att-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #0891b2;
}

.att-brand-title {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin: 0;
  line-height: 1.1;
}

.att-status-capsule {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.76rem;
  color: #475569;
  box-shadow: 0 2px 8px -2px rgba(0, 0, 0, 0.04);
}

.pulse-beacon {
  position: relative;
  width: 10px;
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.beacon-dot {
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 6px #10b981;
}

.beacon-wave {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.4);
  animation: beaconPulse 2s infinite ease-out;
}

@keyframes beaconPulse {
  0%   { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2.4); opacity: 0; }
}

/* =======================================================
   CANOPY HEADLINE
======================================================= */
.att-canopy-box {
  margin-bottom: 34px;
}

.att-canopy-title {
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: #0f172a;
  margin: 0 0 16px;
}

.gradient-text-cyan {
  background: linear-gradient(135deg, #0891b2 0%, #06b6d4 50%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.att-canopy-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #475569;
  max-width: 960px;
  margin: 0;
}

/* =======================================================
   INTERACTIVE VERIFICATION PROTOCOL CONSOLE
======================================================= */
.att-mode-console {
  background: #f8faff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 18px 22px;
  margin-bottom: 44px;
  box-shadow: 0 6px 18px -4px rgba(0, 0, 0, 0.03);
}

.console-kicker {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #0891b2;
  margin-bottom: 12px;
}

.att-modes-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.att-mode-btn {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  outline: none;
  font-family: inherit;
  text-align: left;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.att-mode-btn:hover {
  border-color: #0891b2;
  transform: translateY(-2px);
}

.att-mode-btn.active {
  background: #0f172a;
  border-color: #0f172a;
  color: #ffffff;
  box-shadow: 0 8px 20px -4px rgba(15, 23, 42, 0.25);
}

.mode-icon {
  font-size: 1.35rem;
}

.mode-meta strong {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 2px;
}

.mode-meta small {
  font-size: 0.72rem;
  color: #64748b;
}

.att-mode-btn.active .mode-meta small {
  color: #94a3b8;
}

/* =======================================================
   TWO-TIER STAGE (TERMINAL & CAPABILITIES)
======================================================= */
.att-stage-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: flex-start;
  margin-bottom: 50px;
}

/* =======================================================
   LEFT: INTERACTIVE TERMINAL CARD
======================================================= */
.att-terminal-col {
  position: relative;
  perspective: 1000px;
}

.att-terminal-wrapper {
  position: relative;
  border-radius: 26px;
  display: flex;
}

.att-card-shadow-plate {
  position: absolute;
  inset: 0;
  border-radius: 26px;
  background: linear-gradient(135deg, #a5f3fc 0%, #a7f3d0 100%);
  transform: translate(8px, 14px);
  opacity: 0.85;
  z-index: 1;
  box-shadow: 0 16px 36px -8px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.att-terminal-wrapper:hover .att-card-shadow-plate {
  transform: translate(12px, 18px);
  opacity: 1;
}

.att-terminal-card {
  position: relative;
  z-index: 2;
  width: 100%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.att-terminal-wrapper:hover .att-terminal-card {
  transform: translateY(-4px);
}

/* Terminal Frame Top Bar */
.terminal-bar-top {
  background: #0f172a;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.terminal-bar-id {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-family: monospace;
  color: #cbd5e1;
}

.terminal-led {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px #10b981;
}

.terminal-clock {
  font-size: 0.72rem;
  font-weight: 800;
  font-family: monospace;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.15);
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid rgba(56, 189, 248, 0.3);
}

/* Terminal Screen Body */
.terminal-screen-interior {
  padding: 22px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Radar Pulse Scanner Box */
.radar-scan-box {
  position: relative;
  width: 70px;
  height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.radar-conic-beam {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0deg, #06b6d4 180deg, #10b981 360deg);
  animation: radarSpin 4s linear infinite;
  opacity: 0.8;
}

@keyframes radarSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.radar-core-shield {
  position: relative;
  z-index: 2;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.radar-check {
  font-size: 1.25rem;
  font-weight: 900;
  color: #10b981;
}

/* Profile Punch Box */
.punch-profile-card {
  background: #f8faff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.punch-avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0891b2 0%, #10b981 100%);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.punch-meta {
  flex-grow: 1;
}

.punch-name {
  display: block;
  font-size: 0.9rem;
  color: #0f172a;
}

.punch-dept {
  font-size: 0.72rem;
  color: #64748b;
  display: block;
  margin-bottom: 4px;
}

.punch-validation-row {
  display: flex;
  gap: 8px;
}

.badge-status-ok {
  font-size: 0.65rem;
  font-weight: 800;
  background: #dcfce7;
  color: #15803d;
  border: 1px solid #bbf7d0;
  padding: 2px 8px;
  border-radius: 50px;
}

.badge-time-rec {
  font-size: 0.65rem;
  font-weight: 800;
  background: #e0f2fe;
  color: #0369a1;
  border: 1px solid #bae6fd;
  padding: 2px 8px;
  border-radius: 50px;
  font-family: monospace;
}

/* Telemetry Grid */
.punch-telemetry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.telemetry-tile {
  background: #f8faff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.tile-lbl {
  font-size: 0.62rem;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.tile-val {
  font-size: 0.8rem;
  font-weight: 800;
  color: #0f172a;
}

.text-cyan    { color: #0891b2 !important; }
.text-emerald { color: #059669 !important; }

/* Shift Action Strip */
.shift-action-strip {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.shift-punch-btn {
  background: #0f172a;
  color: #ffffff;
  border: none;
  padding: 12px;
  border-radius: 12px;
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.25s ease;
}

.shift-punch-btn:hover {
  background: #0891b2;
}

.shift-footnote {
  font-size: 0.7rem;
  color: #64748b;
  text-align: center;
}

/* Device Footer */
.terminal-device-footer {
  background: #f8faff;
  border-top: 1px solid #e2e8f0;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: #64748b;
}

.lock-icon {
  font-size: 0.85rem;
}

/* =======================================================
   RIGHT: 9-CAPABILITY HIVE
======================================================= */
.att-capabilities-col {
  display: flex;
  flex-direction: column;
}

.cap-narrative-header {
  margin-bottom: 24px;
}

.cap-kicker-tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #0891b2;
}

.cap-heading {
  font-size: 1.45rem;
  font-weight: 900;
  color: #0f172a;
  margin: 4px 0 8px;
  letter-spacing: -0.015em;
}

.cap-lead {
  font-size: 0.94rem;
  line-height: 1.65;
  color: #64748b;
  margin: 0;
}

.att-pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 30px;
}

.att-pillar-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 4px 14px -4px rgba(0, 0, 0, 0.03);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.att-pillar-card.card-span-full {
  grid-column: span 2;
}

.att-pillar-card:hover {
  transform: translateY(-2px);
  border-color: #0891b2;
  box-shadow: 0 10px 24px -6px rgba(8, 145, 178, 0.14);
}

.pillar-marker {
  font-size: 0.68rem;
  font-weight: 800;
  color: #0891b2;
  background: #e0f2fe;
  border-radius: 6px;
  padding: 3px 6px;
  flex-shrink: 0;
}

.pillar-content h5 {
  font-size: 0.88rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 3px;
}

.pillar-content p {
  font-size: 0.76rem;
  line-height: 1.45;
  color: #64748b;
  margin: 0;
}

/* Action Trigger Cluster */
.att-cta-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.att-btn-primary {
  background: linear-gradient(135deg, #0891b2 0%, #059669 100%);
  color: #ffffff;
  padding: 15px 28px;
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px -4px rgba(8, 145, 178, 0.4);
  transition: all 0.25s ease;
}

.att-btn-primary:hover {
  background: #0e7490;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -6px rgba(8, 145, 178, 0.5);
}

.att-btn-primary .btn-arrow {
  transition: transform 0.25s ease;
}

.att-btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.att-btn-secondary {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #334155;
  padding: 15px 24px;
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.att-btn-secondary:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #0f172a;
}

/* =======================================================
   SEO STRIP
======================================================= */
.att-seo-strip {
  background: #f8faff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 4px 14px -4px rgba(0, 0, 0, 0.03);
  flex-wrap: wrap;
}

.seo-strip-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #0891b2;
  flex-shrink: 0;
}

.seo-tags-tray {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.seo-tag-chip {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #475569;
  transition: all 0.25s ease;
}

.seo-tag-chip:hover {
  border-color: #0891b2;
  color: #0891b2;
}

/* =======================================================
   SCROLL REVEAL ANIMATIONS
======================================================= */
.att-reveal {
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.att-fade-up    { transform: translateY(35px); }
.att-slide-left  { transform: translateX(-40px); }
.att-slide-right { transform: translateX(40px); }

.att-reveal.active {
  opacity: 1;
  transform: translate(0, 0);
}

/* =======================================================
   RESPONSIVE DESIGN
======================================================= */
@media (max-width: 1040px) {
  .att-modes-track {
    grid-template-columns: 1fr;
  }
  .att-stage-layout {
    grid-template-columns: 1fr;
  }
  .att-terminal-col {
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .attendance-terminal-section {
    padding: 85px 18px 100px;
  }
  .att-pillars-grid {
    grid-template-columns: 1fr;
  }
  .att-pillar-card.card-span-full {
    grid-column: span 1;
  }
  .att-cta-actions {
    flex-direction: column;
    width: 100%;
  }
  .att-btn-primary,
  .att-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* Section 9 Ends  */

/* Section 10 StaRTS  */

/* =======================================================
   DEECALL TELEPHONY & MOBILE APPLICATION SUITE
======================================================= */
.telephony-mobile-section {
  position: relative;
  background-color: #f8faff;
  padding: 130px 24px 150px;
  overflow: hidden;
  color: #1e293b;
}

.tm-container {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Ambient Atmospheric Glow Orbs */
.tm-ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 1;
}

.tm-ambient-glow.glow-amber {
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  top: 10%;
  left: -120px;
}

.tm-ambient-glow.glow-blue {
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.09) 0%, transparent 70%);
  bottom: 10%;
  right: -80px;
}

/* =======================================================
   TOP PRODUCT BRAND HEADER
======================================================= */
.tm-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e2e8f0;
  flex-wrap: wrap;
  gap: 20px;
}

.tm-brand-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tm-logo-frame {
  width: 90px;
  height: 90px;
  border-radius: 16px;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px -4px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  flex-shrink: 0;
}

.tm-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tm-logo-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
}

.tm-brand-info {
  display: flex;
  flex-direction: column;
}

.tm-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #d97706;
}

.tm-brand-title {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin: 0;
  line-height: 1.1;
}

.tm-pill-stack {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.tm-meta-pill {
  font-size: 0.76rem;
  font-weight: 700;
  color: #475569;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 6px 14px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 8px -2px rgba(0, 0, 0, 0.04);
}

.tm-ping-dot {
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 6px #10b981;
}

/* =======================================================
   CANOPY HEADLINE
======================================================= */
.tm-canopy-box {
  margin-bottom: 44px;
}

.tm-canopy-title {
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: #0f172a;
  margin: 0 0 16px;
}

.gradient-text-amber-blue {
  background: linear-gradient(135deg, #d97706 0%, #ea580c 40%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tm-canopy-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #475569;
  max-width: 980px;
  margin: 0;
}

/* =======================================================
   PART 1: INTERACTIVE TELEPHONY DISPATCHER GRID
======================================================= */
.tm-dispatcher-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 46px;
  align-items: flex-start;
  margin-bottom: 70px;
}

/* =======================================================
   LEFT: INTERACTIVE DIALER HUD CONSOLE
======================================================= */
.tm-console-col {
  position: relative;
  perspective: 1000px;
}

.dialer-hud-wrapper {
  position: relative;
  border-radius: 26px;
  display: flex;
}

.dialer-shadow-plate {
  position: absolute;
  inset: 0;
  border-radius: 26px;
  background: linear-gradient(135deg, #fef3c7 0%, #bfdbfe 100%);
  transform: translate(8px, 14px);
  opacity: 0.85;
  z-index: 1;
  box-shadow: 0 16px 36px -8px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.dialer-hud-wrapper:hover .dialer-shadow-plate {
  transform: translate(12px, 18px);
  opacity: 1;
}

.dialer-hud-card {
  position: relative;
  z-index: 2;
  width: 100%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.dialer-hud-wrapper:hover .dialer-hud-card {
  transform: translateY(-4px);
}

/* Frame Header */
.dialer-bezel-bar {
  background: #0f172a;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dialer-status-group {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-family: monospace;
  color: #cbd5e1;
}

.dialer-led {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px #10b981;
}

.dialer-call-badge {
  font-size: 0.68rem;
  font-weight: 800;
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.15);
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid rgba(245, 158, 11, 0.3);
  font-family: monospace;
}

/* Interior Body */
.dialer-body-interior {
  padding: 22px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.caller-profile-strip {
  background: #f8faff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.caller-avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #d97706 0%, #2563eb 100%);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.caller-meta {
  display: flex;
  flex-direction: column;
}

.caller-meta strong {
  font-size: 0.92rem;
  color: #0f172a;
}

.caller-meta span {
  font-size: 0.74rem;
  color: #64748b;
  margin-bottom: 2px;
}

.lead-stage-chip {
  font-size: 0.68rem;
  font-weight: 800;
  color: #2563eb;
}

/* Simulated Sound Wave */
.call-sound-wave-box {
  background: #f1f5f9;
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.sound-wave-bars {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 22px;
}

.sound-wave-bars span {
  width: 3px;
  height: 60%;
  background: #d97706;
  border-radius: 3px;
  animation: audioPulse 1.2s infinite ease-in-out alternate;
}

.sound-wave-bars span:nth-child(2n) { animation-delay: 0.2s; height: 90%; background: #2563eb; }
.sound-wave-bars span:nth-child(3n) { animation-delay: 0.4s; height: 40%; }
.sound-wave-bars span:nth-child(4n) { animation-delay: 0.1s; height: 100%; }

@keyframes audioPulse {
  0%   { transform: scaleY(0.3); }
  100% { transform: scaleY(1); }
}

.wave-status-txt {
  font-size: 0.68rem;
  color: #64748b;
  font-family: monospace;
}

/* Call Notes Tray */
.call-notes-tray {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.notes-lbl {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #64748b;
}

.disposition-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.disp-chip {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #475569;
  cursor: pointer;
  transition: all 0.2s ease;
}

.disp-chip:hover {
  border-color: #d97706;
  color: #d97706;
}

.disp-chip.active {
  background: #0f172a;
  border-color: #0f172a;
  color: #ffffff;
}

/* Trigger Row */
.dialer-trigger-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.btn-end-call {
  background: #fee2e2;
  border: 1px solid #fca5a5;
  color: #dc2626;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-end-call:hover {
  background: #fecaca;
}

.dialer-kpis {
  display: flex;
  gap: 14px;
}

.kpi-mini {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.kpi-mini small {
  font-size: 0.65rem;
  color: #64748b;
}

.kpi-mini strong {
  font-size: 0.84rem;
  color: #0f172a;
}

.dialer-device-footer {
  background: #f8faff;
  border-top: 1px solid #e2e8f0;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: #64748b;
}

/* =======================================================
   RIGHT: 9 DEECALL RIBBON PILLARS
======================================================= */
.tm-capabilities-col {
  display: flex;
  flex-direction: column;
}

.cap-intro-block {
  margin-bottom: 24px;
}

.cap-badge {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #d97706;
}

.cap-headline {
  font-size: 1.45rem;
  font-weight: 900;
  color: #0f172a;
  margin: 4px 0 8px;
  letter-spacing: -0.015em;
}

.cap-subtext {
  font-size: 0.94rem;
  line-height: 1.65;
  color: #64748b;
  margin: 0;
}

.tm-ribbon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.tm-ribbon-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 4px 14px -4px rgba(0, 0, 0, 0.03);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.tm-ribbon-card.card-wide {
  grid-column: span 2;
}

.tm-ribbon-card:hover {
  transform: translateY(-2px);
  border-color: #d97706;
  box-shadow: 0 10px 24px -6px rgba(217, 119, 6, 0.14);
}

.ribbon-num {
  font-size: 0.68rem;
  font-weight: 800;
  color: #d97706;
  background: #fef3c7;
  border-radius: 6px;
  padding: 3px 6px;
  flex-shrink: 0;
}

.tm-ribbon-card strong {
  display: block;
  font-size: 0.88rem;
  color: #0f172a;
  margin-bottom: 2px;
}

.tm-ribbon-card small {
  font-size: 0.74rem;
  line-height: 1.45;
  color: #64748b;
}

/* =======================================================
   PART 2: ANDROID & iOS MOBILE APPLICATIONS CANOPY
======================================================= */
.mobile-apps-canopy-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 28px;
  padding: 44px 36px 40px;
  margin-bottom: 44px;
  box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.04);
}

.mobile-section-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 34px;
}

.mobile-section-header .section-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eef2ff;
  border: 1px solid #e0e7ff;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #2563eb;
  margin-bottom: 16px;
}

.mobile-section-header .section-pill .pill-dot {
  width: 7px;
  height: 7px;
  background: #2563eb;
  border-radius: 50%;
}

.mobile-heading {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: #0f172a;
  margin: 0 0 14px;
}

.mobile-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: #64748b;
  margin: 0;
}

/* OS Switcher Pills */
.os-switch-pills {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 34px;
}

.os-btn {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 50px;
  padding: 10px 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 800;
  color: #64748b;
  cursor: pointer;
  transition: all 0.25s ease;
}

.os-btn:hover {
  border-color: #2563eb;
  color: #2563eb;
}

.os-btn.active {
  background: #0f172a;
  border-color: #0f172a;
  color: #ffffff;
  box-shadow: 0 6px 18px -4px rgba(15, 23, 42, 0.25);
}

/* Mobile Modules Bento Grid */
.mobile-modules-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.mob-card {
  background: #f8faff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.mob-card:hover {
  transform: translateY(-4px);
  border-color: #2563eb;
  box-shadow: 0 12px 24px -6px rgba(37, 99, 235, 0.12);
  background: #ffffff;
}

.mob-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.bg-amber   { background: #fef3c7; }
.bg-blue    { background: #dbeafe; }
.bg-emerald { background: #d1fae5; }
.bg-indigo  { background: #e0e7ff; }
.bg-fuchsia { background: #fae8ff; }
.bg-cyan    { background: #cffafe; }

.mob-card strong {
  font-size: 0.96rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

.mob-card p {
  font-size: 0.82rem;
  line-height: 1.55;
  color: #64748b;
  margin: 0;
}

/* =======================================================
   ACTION CLUSTER BUTTONS
======================================================= */
.tm-action-cluster {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.tm-btn-primary {
  background: linear-gradient(135deg, #d97706 0%, #2563eb 100%);
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 14px;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px -4px rgba(37, 99, 235, 0.4);
  transition: all 0.25s ease;
}

.tm-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -6px rgba(37, 99, 235, 0.5);
}

.tm-btn-primary .btn-arrow {
  transition: transform 0.25s ease;
}

.tm-btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.tm-btn-secondary {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #334155;
  padding: 16px 26px;
  border-radius: 14px;
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.tm-btn-secondary:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #0f172a;
}

/* =======================================================
   SEO STRIP
======================================================= */
.tm-seo-ribbon {
  background: #f8faff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 4px 14px -4px rgba(0, 0, 0, 0.03);
  flex-wrap: wrap;
}

.seo-caption {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #2563eb;
  flex-shrink: 0;
}

.seo-pills-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.seo-tag {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #475569;
  transition: all 0.25s ease;
}

.seo-tag:hover {
  border-color: #2563eb;
  color: #2563eb;
}

/* =======================================================
   SCROLL REVEAL ANIMATIONS
======================================================= */
.tm-reveal {
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.tm-fade-up    { transform: translateY(35px); }
.tm-slide-left  { transform: translateX(-40px); }
.tm-slide-right { transform: translateX(40px); }

.tm-reveal.active {
  opacity: 1;
  transform: translate(0, 0);
}

/* =======================================================
   RESPONSIVE DESIGN
======================================================= */
@media (max-width: 1040px) {
  .tm-dispatcher-grid {
    grid-template-columns: 1fr;
  }
  .mobile-modules-bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .tm-console-col {
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .telephony-mobile-section {
    padding: 85px 18px 100px;
  }
  .tm-ribbon-grid {
    grid-template-columns: 1fr;
  }
  .tm-ribbon-card.card-wide {
    grid-column: span 1;
  }
  .mobile-modules-bento {
    grid-template-columns: 1fr;
  }
  .mobile-apps-canopy-box {
    padding: 30px 18px;
  }
  .tm-action-cluster {
    flex-direction: column;
    width: 100%;
  }
  .tm-btn-primary,
  .tm-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* Section 10 Endsd  */

/* Section 11 Starta  */

/* =======================================================
   ONE DIGITAL ECOSYSTEM: OPERATIONAL BUS SECTION (LIGHT)
======================================================= */
.ecosystem-bus-section {
  position: relative;
  background-color: #f8faff;
  /* 160px top padding ensures safe clearance below floating navbar */
  padding: 160px 24px 140px;
  scroll-margin-top: 100px;
  overflow: hidden;
  color: #1e293b;
  box-sizing: border-box;
}

.eco-container {
  max-width: 1340px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Atmospheric Ambient Orbs */
.eco-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 1;
}

.eco-glow.glow-cyan {
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
  top: 10%;
  left: -120px;
}

.eco-glow.glow-indigo {
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.09) 0%, transparent 70%);
  bottom: 5%;
  right: -80px;
}

/* =======================================================
   TOP PRODUCT IDENTIFIER ROW
======================================================= */
.eco-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e8f0;
  flex-wrap: wrap;
  gap: 16px;
}

.eco-brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 6px 18px;
  border-radius: 50px;
  box-shadow: 0 2px 8px -2px rgba(0, 0, 0, 0.04);
}

.eco-pulse-beacon {
  position: relative;
  width: 10px;
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.beacon-core {
  width: 6px;
  height: 6px;
  background: #0284c7;
  border-radius: 50%;
  box-shadow: 0 0 6px #0284c7;
}

.beacon-ripple {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(2, 132, 199, 0.4);
  animation: ecoPulse 2s infinite ease-out;
}

@keyframes ecoPulse {
  0%   { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2.4); opacity: 0; }
}

.eco-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #0284c7;
}

.eco-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  color: #475569;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 6px 16px;
  border-radius: 50px;
}

.sync-dot {
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 6px #10b981;
}

/* =======================================================
   HERO CANOPY
======================================================= */
.eco-canopy-box {
  margin-bottom: 40px;
}

.eco-main-heading {
  font-size: clamp(2.1rem, 3.8vw, 3.1rem);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin: 0 0 10px;
}

.gradient-text-eco {
  background: linear-gradient(135deg, #0284c7 0%, #4f46e5 50%, #0d9488 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.eco-sub-heading {
  font-size: 1.25rem;
  font-weight: 800;
  color: #334155;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

.eco-canopy-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #475569;
  max-width: 980px;
  margin: 0;
}

/* =======================================================
   INTERACTIVE OPERATIONAL DATA-STREAM PIPELINE
======================================================= */
.eco-pipeline-wrapper {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  padding: 22px 24px;
  margin-bottom: 46px;
  box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.04);
}

.pipeline-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 10px;
}

.pipeline-legend {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #0284c7;
}

.pipeline-hint {
  font-size: 0.74rem;
  color: #64748b;
  font-style: italic;
}

.pipeline-flow-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow-x: auto;
  padding-bottom: 6px;
  gap: 6px;
}

.pipe-node {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 12px 14px;
  min-width: 105px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.pipe-node:hover {
  border-color: #0284c7;
  transform: translateY(-2px);
  background: #ffffff;
}

.pipe-node.active {
  background: #0f172a;
  border-color: #0f172a;
  color: #ffffff;
  box-shadow: 0 8px 20px -4px rgba(15, 23, 42, 0.25);
}

.pipe-node-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.node-seq {
  font-size: 0.65rem;
  font-weight: 800;
  color: #0284c7;
}

.pipe-node.active .node-seq {
  color: #38bdf8;
}

.node-icon {
  font-size: 1.05rem;
}

.pipe-node strong {
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.2;
}

.pipe-node small {
  font-size: 0.68rem;
  color: #64748b;
  margin-top: 2px;
}

.pipe-node.active small {
  color: #94a3b8;
}

/* Connector Pulse Line */
.pipe-connector {
  position: relative;
  width: 24px;
  height: 2px;
  background: #e2e8f0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-dot {
  width: 5px;
  height: 5px;
  background: #0284c7;
  border-radius: 50%;
  animation: flowRight 1.5s infinite linear;
}

@keyframes flowRight {
  0%   { transform: translateX(-10px); opacity: 0.2; }
  50%  { opacity: 1; }
  100% { transform: translateX(10px); opacity: 0.2; }
}

/* =======================================================
   TWO-STAGE DIAGNOSTIC DECK
======================================================= */
.eco-stage-deck {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 50px;
}

/* =======================================================
   LEFT: SILOED VS CONNECTED CONSOLE
======================================================= */
.eco-compare-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 26px;
  padding: 34px 30px;
  box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.04);
}

.compare-header {
  margin-bottom: 22px;
}

.comp-badge {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #0284c7;
}

.compare-header h4 {
  font-size: 1.4rem;
  font-weight: 900;
  color: #0f172a;
  margin: 4px 0 0;
  letter-spacing: -0.015em;
}

.comp-box {
  border-radius: 18px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}

.problem-box {
  background: #fef2f2;
  border: 1px solid #fee2e2;
}

.solution-box {
  background: #f0fdf4;
  border: 1px solid #dcfce7;
  margin-bottom: 28px;
}

.box-icon-tag {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.bg-red-soft     { background: #fee2e2; }
.bg-emerald-soft { background: #dcfce7; }

.box-copy strong {
  display: block;
  font-size: 0.95rem;
  color: #0f172a;
  margin-bottom: 4px;
}

.box-copy p {
  font-size: 0.84rem;
  line-height: 1.6;
  color: #475569;
  margin: 0 0 10px;
}

.pill-tags-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag-silo {
  font-size: 0.68rem;
  font-weight: 700;
  color: #b91c1c;
  background: #ffffff;
  border: 1px solid #fca5a5;
  padding: 3px 8px;
  border-radius: 6px;
}

.tag-unified {
  font-size: 0.68rem;
  font-weight: 700;
  color: #15803d;
  background: #ffffff;
  border: 1px solid #86efac;
  padding: 3px 8px;
  border-radius: 6px;
}

/* Action Triggers */
.eco-actions-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.eco-btn-primary {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  padding: 15px 26px;
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px -4px rgba(2, 132, 199, 0.4);
  transition: all 0.25s ease;
}

.eco-btn-primary:hover {
  background: #0ea5e9;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -6px rgba(2, 132, 199, 0.5);
}

.eco-btn-primary .btn-arrow {
  transition: transform 0.25s ease;
}

.eco-btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.eco-btn-secondary {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #334155;
  padding: 15px 22px;
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.eco-btn-secondary:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #0f172a;
}

/* =======================================================
   RIGHT: LIVE ROUTER TERMINAL
======================================================= */
.eco-terminal-col {
  position: relative;
  perspective: 1000px;
}

.eco-hud-wrapper {
  position: relative;
  border-radius: 26px;
  display: flex;
}

.eco-card-shadow-plate {
  position: absolute;
  inset: 0;
  border-radius: 26px;
  background: linear-gradient(135deg, #bae6fd 0%, #c7d2fe 100%);
  transform: translate(8px, 14px);
  opacity: 0.85;
  z-index: 1;
  box-shadow: 0 16px 36px -8px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.eco-hud-wrapper:hover .eco-card-shadow-plate {
  transform: translate(12px, 18px);
  opacity: 1;
}

.eco-hud-card {
  position: relative;
  z-index: 2;
  width: 100%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.eco-hud-wrapper:hover .eco-hud-card {
  transform: translateY(-4px);
}

/* Terminal Header */
.hud-top-bar {
  background: #0f172a;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hud-indicator-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hud-core-led {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px #10b981;
}

.hud-title-code {
  font-size: 0.68rem;
  font-family: monospace;
  color: #cbd5e1;
}

.hud-active-status {
  font-size: 0.65rem;
  font-weight: 800;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.15);
  padding: 3px 8px;
  border-radius: 50px;
  border: 1px solid rgba(56, 189, 248, 0.3);
}

/* Focus Display */
.hud-stage-focus {
  background: #f8faff;
  border-bottom: 1px solid #e2e8f0;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.focus-caption {
  font-size: 0.65rem;
  font-weight: 800;
  color: #0284c7;
  letter-spacing: 0.06em;
}

.focus-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  margin: 2px 0 4px;
}

.focus-sync-info {
  font-size: 0.78rem;
  color: #64748b;
  margin: 0;
}

.focus-metric-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  text-align: right;
  flex-shrink: 0;
}

.focus-metric-box small {
  font-size: 0.62rem;
  color: #64748b;
}

.focus-metric-box strong {
  font-size: 0.84rem;
  color: #0284c7;
}

/* Event Stream */
.sync-event-stream {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stream-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #64748b;
  margin-bottom: 2px;
}

.stream-entry {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 10px 14px;
}

.entry-marker.ok {
  color: #10b981;
  font-size: 0.85rem;
  margin-top: 1px;
}

.entry-text strong {
  display: block;
  font-size: 0.82rem;
  color: #0f172a;
}

.entry-text p {
  font-size: 0.75rem;
  color: #64748b;
  margin: 2px 0 0;
}

.hud-footnote-bar {
  background: #f8faff;
  border-top: 1px solid #e2e8f0;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: #64748b;
}

/* =======================================================
   FIXED 4-COLUMN ASSURANCE FOOTNOTE RIBBON (FLEX LAYOUT)
======================================================= */
.eco-assurance-ribbon {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 16px -4px rgba(0, 0, 0, 0.04);
  margin-top: 20px;
  box-sizing: border-box;
}

.ribbon-metric-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 4px 12px;
}

.metric-big {
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #0284c7;
  line-height: 1.2;
  white-space: nowrap;
}

.metric-caption {
  font-size: 0.78rem;
  color: #64748b;
  margin-top: 4px;
  white-space: nowrap;
}

.ribbon-divider {
  width: 1px;
  height: 38px;
  background: #e2e8f0;
  flex-shrink: 0;
}

/* =======================================================
   SCROLL REVEAL ANIMATIONS
======================================================= */
.eco-reveal {
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.eco-fade-up    { transform: translateY(35px); }
.eco-slide-left  { transform: translateX(-40px); }
.eco-slide-right { transform: translateX(40px); }

.eco-reveal.active {
  opacity: 1;
  transform: translate(0, 0);
}

/* =======================================================
   RESPONSIVE DESIGN
======================================================= */
@media (max-width: 1080px) {
  .eco-stage-deck {
    grid-template-columns: 1fr;
  }
  .eco-terminal-col {
    max-width: 580px;
    margin: 0 auto;
    width: 100%;
  }
  .eco-assurance-ribbon {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
    padding: 24px 20px;
  }
  .ribbon-divider {
    display: none;
  }
  .metric-caption {
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .ecosystem-bus-section {
    padding: 130px 18px 90px;
  }
  .eco-actions-row {
    flex-direction: column;
    width: 100%;
  }
  .eco-btn-primary,
  .eco-btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .eco-assurance-ribbon {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px 16px;
  }
  .ribbon-metric-col {
    padding: 6px 0;
  }
}

/* Section 11 Ends  */

/* Section 12 Starstg  */

/* =======================================================
   WHY CHOOSE DEEGENEX PRODUCTS SECTION (LIGHT THEME)
======================================================= */
.why-choose-products-section {
  position: relative;
  background-color: #ffffff;
  padding: 120px 24px 150px;
  overflow: hidden;
  color: #1e293b;
}

.wp-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Background Ambient Glowing Orbs */
.wp-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 1;
}

.wp-glow.glow-blue {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.1) 0%, transparent 70%);
  top: 15%;
  left: -100px;
}

.wp-glow.glow-cyan {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.09) 0%, transparent 70%);
  bottom: 10%;
  right: -80px;
}

/* Header */
.wp-header {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 64px;
}

.wp-header .section-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eef2ff;
  border: 1px solid #e0e7ff;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #0284c7;
  margin-bottom: 20px;
}

.wp-header .section-pill .pill-dot {
  width: 7px;
  height: 7px;
  background: #0284c7;
  border-radius: 50%;
}

.wp-title {
  font-size: clamp(2.1rem, 3.8vw, 3.1rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: #0f172a;
  margin: 0 0 18px;
}

.gradient-text {
  background: linear-gradient(135deg, #0284c7 0%, #4f46e5 50%, #ea580c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.wp-subtitle {
  font-size: 1.05rem;
  line-height: 1.68;
  color: #64748b;
  margin: 0;
}

/* =======================================================
   BENTO GRID ARCHITECTURE
======================================================= */
.wp-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* 2-Column Spanning Cards */
.wp-card-wrapper.card-span-2 {
  grid-column: span 2;
}

.wp-card-wrapper {
  position: relative;
  border-radius: 28px;
  display: flex;
  perspective: 1000px;
  cursor: pointer;
}

/* Signature Layered Colored Backplate */
.wp-back-plate {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  transform: translate(6px, 12px);
  opacity: 0.85;
  z-index: 1;
  box-shadow: 0 14px 28px -6px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

/* Main Front Card */
.wp-card {
  position: relative;
  z-index: 2;
  width: 100%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 28px;
  padding: 36px 30px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
  overflow: hidden;
}

.wp-card-wrapper:hover .wp-card {
  transform: translateY(-6px);
  border-color: #0284c7;
}

.wp-card-wrapper:hover .wp-back-plate {
  transform: translate(10px, 18px);
  opacity: 1;
}

/* Mouse-follow spotlight */
.wp-card-spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 28px;
  background: radial-gradient(circle 240px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.8) 0%, transparent 80%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.wp-card-wrapper:hover .wp-card-spotlight {
  opacity: 1;
}

.wp-card > * {
  position: relative;
  z-index: 2;
}

/* Card Top Row */
.wp-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.wp-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box-blue   { background: #dbeafe; color: #2563eb; }
.box-cyan   { background: #e0f2fe; color: #0284c7; }
.box-indigo { background: #e0e7ff; color: #4338ca; }
.box-teal   { background: #ccfbf1; color: #0d9488; }
.box-orange { background: #ffedd5; color: #ea580c; }
.box-purple { background: #f3e8ff; color: #7e22ce; }

.wp-badge {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 50px;
}

.badge-blue   { background: #dbeafe; color: #1d4ed8; }
.badge-cyan   { background: #e0f2fe; color: #0284c7; }
.badge-indigo { background: #e0e7ff; color: #4338ca; }
.badge-teal   { background: #ccfbf1; color: #0f766e; }
.badge-orange { background: #fff7ed; color: #c2410c; }
.badge-purple { background: #f3e8ff; color: #7e22ce; }

/* Micro step tag */
.wp-step-tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #64748b;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.wp-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: #0f172a;
  margin: 0 0 10px;
}

.wp-card-desc {
  font-size: 0.91rem;
  line-height: 1.65;
  color: #64748b;
  margin: 0 0 20px;
  flex-grow: 1;
}

/* Feature Tag Strips */
.wp-tag-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed #e2e8f0;
}

.wp-tag {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.76rem;
  font-weight: 700;
  color: #334155;
}

/* Color Plates */
.theme-blue .wp-back-plate   { background: #bfdbfe; }
.theme-cyan .wp-back-plate   { background: #bae6fd; }
.theme-indigo .wp-back-plate { background: #c7d2fe; }
.theme-teal .wp-back-plate   { background: #99f6e4; }
.theme-orange .wp-back-plate { background: #fed7aa; }
.theme-purple .wp-back-plate { background: #e9d5ff; }

/* =======================================================
   SCROLL REVEAL & RESPONSIVENESS
======================================================= */
.wp-reveal {
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.wp-fade-up {
  transform: translateY(35px);
}

.wp-reveal.active {
  opacity: 1;
  transform: translate(0, 0);
}

@media (max-width: 1024px) {
  .wp-bento-grid {
    grid-template-columns: 1fr;
  }
  .wp-card-wrapper.card-span-2 {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  .why-choose-products-section {
    padding: 85px 18px 100px;
  }
  .wp-card {
    padding: 28px 22px;
  }
}

/* Section 12 Ends  */