/* ============================================================
   COBOTS & ROBOTICS PAGE — page-specific styles
   Relies on styles.css for variables, layout utilities, nav, footer
   ============================================================ */

/* ============================================================
   HERO
   ============================================================ */
.cb-hero {
  background: linear-gradient(135deg, #0a1f0d 0%, #002b10 40%, #00632b 100%);
  padding: 36px 0 72px;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.cb-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(0,99,43,0.35) 0%, transparent 70%);
  pointer-events: none;
}

.cb-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
}
.cb-breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; }
.cb-breadcrumb a:hover { color: #fff; }
.cb-breadcrumb span { color: rgba(255,255,255,0.35); }

.cb-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cb-hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.cb-hero-content h1 {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 18px;
}

.cb-hero-intro {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  margin: 0 0 28px;
  max-width: 480px;
}

.cb-hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}

.cb-hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cb-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.cb-stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.35;
}

.cb-stat-divider {
  width: 1px;
  height: 38px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

.cb-hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================================
   ROBOT SCENE
   ============================================================ */
.cb-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cb-robot-scene {
  position: relative;
  width: 340px;
  height: 300px;
  background: rgba(0,0,0,0.35);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  backdrop-filter: blur(4px);
}

.cb-floor-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,99,43,0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,99,43,0.15) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.6;
}

/* Coverage tile sweeps */
.cb-coverage-map {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cb-covered {
  position: absolute;
  background: rgba(0,99,43,0.28);
  border-radius: 2px;
  animation: coverReveal 1s ease-out forwards;
}
.cb-covered.r1 { left: 20px; top: 20px; width: 180px; height: 56px; animation-delay: 0.2s; opacity: 0; }
.cb-covered.r2 { left: 20px; top: 82px; width: 180px; height: 56px; animation-delay: 0.6s; opacity: 0; }
.cb-covered.r3 { left: 20px; top: 144px; width: 130px; height: 56px; animation-delay: 1s; opacity: 0; }
.cb-covered.r4 { left: 20px; top: 206px; width: 80px; height: 56px; animation-delay: 1.4s; opacity: 0; }

@keyframes coverReveal {
  from { opacity: 0; transform: scaleX(0); transform-origin: left; }
  to   { opacity: 1; transform: scaleX(1); transform-origin: left; }
}

/* Robot figure */
.cb-robot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: robotFloat 3s ease-in-out infinite;
}

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

.cb-robot-body {
  width: 52px;
  height: 44px;
  background: linear-gradient(180deg, #00a847 0%, #00632b 100%);
  border-radius: 10px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(0,99,43,0.5);
}

.cb-robot-eye {
  width: 9px;
  height: 9px;
  background: #fff;
  border-radius: 50%;
  position: relative;
  animation: blink 4s ease-in-out infinite;
}
.cb-robot-eye.right { animation-delay: 0.1s; }

@keyframes blink {
  0%, 90%, 100% { transform: scaleY(1); }
  95%           { transform: scaleY(0.1); }
}

.cb-robot-mouth {
  position: absolute;
  bottom: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 5px;
  border-bottom: 2px solid rgba(255,255,255,0.7);
  border-radius: 0 0 8px 8px;
}

.cb-robot-base {
  width: 40px;
  height: 10px;
  background: #004d21;
  border-radius: 0 0 6px 6px;
  margin: 0 auto;
}

.cb-robot-trail {
  width: 6px;
  height: 20px;
  background: linear-gradient(to bottom, rgba(0,168,71,0.6), transparent);
  margin: 0 auto;
  border-radius: 0 0 4px 4px;
}

/* Scene overlay card */
.cb-scene-overlay {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(10,20,12,0.82);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 10px 12px;
  backdrop-filter: blur(6px);
}

.cb-scene-badge {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.cb-scene-live {
  font-size: 0.7rem;
  font-weight: 700;
  color: #6ee69e;
  letter-spacing: 0.03em;
  animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}

.cb-scene-area {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.55);
}

.cb-scene-progress-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 5px;
}

.cb-scene-progress-bar {
  height: 5px;
  background: rgba(255,255,255,0.12);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 4px;
}

.cb-scene-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #00a847, #6ee69e);
  border-radius: 3px;
  transition: width 1s ease;
}

.cb-scene-progress-val {
  font-size: 0.72rem;
  font-weight: 700;
  color: #6ee69e;
  text-align: right;
}

/* ============================================================
   SECTION LABELS
   ============================================================ */
.cb-section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.cb-section-label.text-green { color: var(--green); }

/* ============================================================
   CORE PROPOSITION
   ============================================================ */
.cb-prop-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: flex-start;
}

.cb-prop-left h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--dark);
  margin: 0 0 18px;
}

.cb-prop-left p {
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 14px;
}

.cb-prop-callout {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--green-light);
  border-left: 3px solid var(--green);
  border-radius: 0 8px 8px 0;
  padding: 16px 18px;
  margin-top: 24px;
}

.cb-prop-callout-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.cb-prop-callout p {
  font-size: 0.9rem;
  color: #1a3d26;
  line-height: 1.65;
  margin: 0;
}

/* Saving card */
.cb-saving-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.cb-saving-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--green);
  margin-bottom: 20px;
}

.cb-saving-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cb-saving-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #f9f9f9;
  border-radius: 10px;
  padding: 16px;
}

.cb-saving-step.highlight {
  background: var(--green-light);
  border: 1px solid rgba(0,99,43,0.15);
}

.cb-saving-step.highlight strong {
  color: var(--green);
}

.cb-saving-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 36px;
  text-align: center;
}

.cb-saving-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cb-saving-text strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
}

.cb-saving-text span {
  font-size: 0.82rem;
  color: var(--grey);
  line-height: 1.55;
}

.cb-saving-arrow {
  text-align: center;
  color: #ccc;
  font-size: 1.1rem;
  padding: 4px 0;
  line-height: 1;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.cb-how {
  background: #fff;
}

.cb-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.cb-step {
  background: #f7f9f7;
  border: 1px solid #eaf0ea;
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
  position: relative;
}

.cb-step-num {
  font-size: 2rem;
  font-weight: 800;
  color: rgba(0,99,43,0.12);
  line-height: 1;
  margin-bottom: 10px;
}

.cb-step-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.cb-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 10px;
}

.cb-step p {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.6;
  margin: 0;
}

.cb-step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  margin-top: 56px;
  color: var(--green);
  font-size: 1.2rem;
  font-weight: 700;
  opacity: 0.5;
}

.cb-step-connector::before {
  content: '→';
}

/* ============================================================
   REPORTING
   ============================================================ */
.cb-reporting-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: flex-start;
}

/* Shiftomate report card mock */
.cb-report-card {
  background: #111a12;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
  font-family: 'Inter', sans-serif;
}

.cb-report-header {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #0d1710;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.cb-report-dots {
  display: flex;
  gap: 5px;
}

.cb-report-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
}
.cb-report-dots .red    { background: #e84848; }
.cb-report-dots .amber  { background: #f0a500; }
.cb-report-dots .green  { background: #27c93f; }

.cb-report-title {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  flex: 1;
}

.cb-report-date {
  font-size: 0.67rem;
  color: rgba(255,255,255,0.3);
}

.cb-report-body {
  padding: 16px;
}

.cb-report-kpis {
  display: flex;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 14px;
}

.cb-report-kpi {
  flex: 1;
  padding: 12px 10px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.cb-report-kpi:last-child { border-right: none; }

.cb-report-kpi-val {
  font-size: 1.1rem;
  font-weight: 800;
  color: #6ee69e;
  line-height: 1;
  margin-bottom: 4px;
}

.cb-report-kpi-label {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.35;
}

.cb-report-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 12px 0;
}

.cb-report-map-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}

/* Coverage grid map */
.cb-coverage-grid {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 10px;
}

.cb-grid-row {
  display: flex;
  gap: 3px;
}

.cb-grid-cell {
  width: 28px;
  height: 18px;
  border-radius: 2px;
}

.cb-grid-cell.covered {
  background: rgba(0,168,71,0.55);
  border: 1px solid rgba(0,168,71,0.3);
}

.cb-grid-cell.uncovered {
  background: rgba(240,165,0,0.2);
  border: 1px solid rgba(240,165,0,0.25);
}

.cb-grid-cell.wall {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.05);
}

.cb-map-legend {
  display: flex;
  gap: 14px;
  margin-bottom: 12px;
}

.cb-legend-item {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  gap: 5px;
}

.cb-legend-item::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 8px;
  border-radius: 1px;
}

.cb-legend-item.covered::before  { background: rgba(0,168,71,0.55); }
.cb-legend-item.uncovered::before { background: rgba(240,165,0,0.3); }
.cb-legend-item.wall::before     { background: rgba(255,255,255,0.07); }

.cb-report-session-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.72rem;
}
.cb-report-session-row:last-child { border-bottom: none; }

.cb-session-label {
  color: rgba(255,255,255,0.35);
}

.cb-session-val {
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}

.cb-session-val.green {
  color: #6ee69e;
}

/* Reporting content */
.cb-reporting-content h2 {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--dark);
  margin: 0 0 16px;
}

.cb-reporting-content > p {
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 14px;
}

.cb-reporting-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}

.cb-reporting-point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.cb-rp-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
  margin-top: 2px;
}

.cb-reporting-point h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 4px;
}

.cb-reporting-point p {
  font-size: 0.82rem;
  color: var(--grey);
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
   SOLENT FUTURESCAPE
   ============================================================ */
.cb-futurescape {
  background: #fff;
}

.cb-futurescape-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: flex-start;
}

.cb-event-tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 18px;
}

.cb-futurescape-content h2 {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--dark);
  margin: 0 0 18px;
}

.cb-futurescape-content p {
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 14px;
}

.cb-futurescape-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fffbf0;
  border: 1px solid #f0e0a0;
  border-radius: 8px;
  padding: 14px 16px;
  margin-top: 20px;
}

.cb-fn-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.cb-futurescape-note p {
  font-size: 0.83rem;
  color: #6b5e2e;
  line-height: 1.6;
  margin: 0;
}

/* Event card */
.cb-event-card {
  background: #0d1f13;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
  color: #fff;
}

.cb-event-card-header {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 20px 20px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.cb-event-logo {
  width: 42px;
  height: 42px;
  background: var(--green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.cb-event-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.cb-event-sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}

.cb-event-stats {
  display: flex;
  padding: 16px 20px;
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.cb-event-stat {
  flex: 1;
  text-align: center;
  padding: 0 10px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.cb-event-stat:last-child { border-right: none; }

.cb-event-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: #6ee69e;
  line-height: 1;
  margin-bottom: 4px;
}

.cb-event-stat-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.35;
}

.cb-event-attendees {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.cb-ea-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 10px;
}

.cb-ea-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.cb-ea-list span {
  font-size: 0.73rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 3px 8px;
  color: rgba(255,255,255,0.65);
}

.cb-ea-list span.highlight {
  background: rgba(0,99,43,0.4);
  border-color: rgba(0,168,71,0.4);
  color: #6ee69e;
  font-weight: 600;
}

.cb-event-quote {
  padding: 14px 20px;
}

.cb-event-quote p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin: 0;
  font-style: italic;
}

/* ============================================================
   HUMAN + ROBOT
   ============================================================ */
.cb-human-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.cb-split-card {
  display: flex;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
  border: 1px solid #e0e0e0;
}

.cb-split-half {
  flex: 1;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cb-split-half.robot-half {
  background: #f0f7f2;
  border-right: none;
}

.cb-split-half.human-half {
  background: #fafafa;
}

.cb-split-icon {
  font-size: 1.8rem;
}

.cb-split-half h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
  line-height: 1.3;
}

.cb-split-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.cb-split-list li {
  font-size: 0.8rem;
  color: var(--grey);
  padding-left: 14px;
  position: relative;
  line-height: 1.45;
}

.cb-split-list li::before {
  content: '·';
  position: absolute;
  left: 3px;
  color: var(--green);
  font-weight: 700;
}

.cb-split-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 3px 8px;
  border-radius: 4px;
  align-self: flex-start;
}

.cb-split-tag.robot {
  background: rgba(0,99,43,0.12);
  color: var(--green);
}

.cb-split-tag.human {
  background: rgba(0,0,0,0.06);
  color: #555;
}

.cb-split-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  background: #e8e8e8;
  flex-shrink: 0;
  position: relative;
}

.cb-split-plus {
  width: 22px;
  height: 22px;
  background: #fff;
  border: 2px solid #ccc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #888;
  position: relative;
  z-index: 1;
}

/* Human content col */
.cb-human-content h2 {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--dark);
  margin: 0 0 16px;
}

.cb-human-content p {
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 14px;
}

.cb-human-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--green-light);
  border-left: 4px solid var(--green);
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  margin-top: 24px;
}

.cb-human-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.cb-human-stat-label {
  font-size: 0.82rem;
  color: #1a3d26;
  line-height: 1.4;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cb-cta {
  background: var(--green);
}

.cb-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cb-cta-actions {
  flex-shrink: 0;
}

/* ============================================================
   TECH NAV GRID
   ============================================================ */
.cb-tech-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cb-tech-nav-card {
  display: block;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.cb-tech-nav-card:hover {
  box-shadow: 0 6px 28px rgba(0,0,0,0.1);
  transform: translateY(-2px);
  border-color: var(--green);
}

.cb-tech-nav-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  display: block;
}

.cb-tech-nav-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 8px;
}

.cb-tech-nav-card p {
  font-size: 0.83rem;
  color: var(--grey);
  line-height: 1.55;
  margin: 0 0 12px;
}

.cb-tech-nav-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
}

/* ============================================================
   RESPONSIVE — 960px
   ============================================================ */
@media (max-width: 960px) {
  .cb-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cb-hero-visual {
    order: -1;
  }

  .cb-robot-scene {
    width: 100%;
    max-width: 400px;
    height: 260px;
  }

  .cb-prop-inner,
  .cb-reporting-inner,
  .cb-futurescape-inner,
  .cb-human-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cb-steps {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .cb-step-connector {
    display: none;
  }

  .cb-reporting-visual { order: -1; }
  .cb-futurescape-visual { order: -1; }
  .cb-human-visual { order: -1; }

  .cb-tech-nav-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cb-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cb-reporting-points {
    grid-template-columns: 1fr;
  }

  .cb-split-card {
    flex-direction: column;
  }

  .cb-split-divider {
    width: 100%;
    height: 32px;
    flex-direction: row;
  }

  .cb-split-divider::before,
  .cb-split-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #ccc;
  }
}

/* ============================================================
   RESPONSIVE — 600px
   ============================================================ */
@media (max-width: 600px) {
  .cb-hero {
    padding: 24px 0 48px;
  }

  .cb-hero-stats {
    flex-wrap: wrap;
    gap: 14px;
  }

  .cb-stat-divider {
    display: none;
  }

  .cb-hero-ctas {
    flex-direction: column;
  }

  .cb-hero-ctas .btn {
    width: 100%;
    text-align: center;
  }

  .cb-steps {
    grid-template-columns: 1fr;
  }

  .cb-tech-nav-grid {
    grid-template-columns: 1fr;
  }

  .cb-report-kpis {
    flex-direction: column;
  }

  .cb-report-kpi {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    text-align: left;
    padding: 8px 10px;
  }

  .cb-report-kpi:last-child { border-bottom: none; }

  .cb-split-card {
    flex-direction: column;
  }

  .cb-event-stats {
    flex-direction: column;
    gap: 12px;
  }

  .cb-event-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    text-align: left;
    padding-bottom: 12px;
  }

  .cb-event-stat:last-child { border-bottom: none; }
}
