/* ═══════════════════════════════════════════════
   SERVICES PAGE — VISUAL REDESIGN v2
   Extracted from services.html inline <style>
═══════════════════════════════════════════════ */

/* ── Shared section layout ── */
.svc-section { padding: var(--space-10) 0; overflow: hidden; }
.svc-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-9);
  align-items: center;
}
.svc-text h2 { margin-bottom: var(--space-3); }
.svc-text p { max-width: 520px; font-size: var(--text-md); }
.svc-features { display: grid; gap: var(--space-2); margin-top: var(--space-5); }
.svc-feature {
  display: flex; align-items: flex-start; gap: var(--space-3);
  padding: var(--space-3) var(--space-4); border-radius: var(--radius-sm);
  background: transparent; transition: background var(--duration-fast) var(--ease-out);
  font-size: var(--text-md); color: var(--slate); line-height: 1.5;
}
.svc-feature:hover { background: var(--brand-blue-50); }
.svc-feature-icon {
  width: 20px; height: 20px; flex-shrink: 0; margin-top: 3px; color: var(--brand-blue);
}
.svc-feature strong { color: var(--ink); font-weight: 600; }

/* ── Benefits bar ── */
.benefits-section { padding: var(--space-8) 0; }
.benefits-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5);
}
.benefit-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: var(--space-5); text-align: center;
  transition: all var(--duration-normal) var(--ease-out);
  display: flex; flex-direction: column;
}
.benefit-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-hover);
  border-color: var(--brand-blue-100);
}
.benefit-value {
  font-family: var(--font-display); font-size: var(--text-3xl); font-weight: 700;
  color: var(--brand-blue); letter-spacing: -0.02em; margin-bottom: var(--space-2);
}
.benefit-label {
  font-size: var(--text-sm); color: var(--slate); line-height: 1.4;
}
.benefit-link {
  display: inline-block; margin-top: auto; padding-top: var(--space-3); font-size: var(--text-xs);
  color: var(--brand-blue); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em;
}
.benefit-link:hover { color: var(--brand-blue-700); }

/* ── 1. VERIFICATION — Hub & Spoke ── */
.svc-verification-visual {
  position: relative; width: 100%; aspect-ratio: 1; max-width: 520px; margin: 0 auto;
}
.hub-center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 120px; height: 140px; background: transparent;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 6px;
  z-index: 2;
}
.hub-shield {
  position: absolute; inset: 0; z-index: 0;
}
.hub-shield svg {
  width: 100%; height: 100%;
  filter: drop-shadow(0 0 20px rgba(0,162,255,0.15)) drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}
.hub-center img {
  width: 72px; height: auto;
}
.hub-ring {
  position: absolute; top: 50%; left: 50%;
  width: 360px; height: 360px; transform: translate(-50%, -50%);
  border: 1px dashed var(--line); border-radius: 50%;
}
.spoke-node {
  position: absolute; width: 76px; height: 76px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  font-size: 10px; font-weight: 600; color: var(--muted); text-transform: uppercase;
  letter-spacing: 0.04em; box-shadow: var(--shadow-sm); z-index: 2;
  transition: all var(--duration-normal) var(--ease-out);
}
.spoke-node:hover { border-color: var(--brand-blue); box-shadow: var(--shadow-hover); transform: scale(1.08); }
.spoke-node svg { width: 22px; height: 22px; color: var(--brand-blue); stroke: currentColor; stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
/* Position each node around the circle — explicit classes */
.spoke-pos-top    { top: 2%;  left: 50%; transform: translateX(-50%); }
.spoke-pos-tr     { top: 22%; right: 4%; }
.spoke-pos-br     { bottom: 22%; right: 4%; }
.spoke-pos-bottom { bottom: 2%; left: 50%; transform: translateX(-50%); }
.spoke-pos-bl     { bottom: 22%; left: 4%; }
.spoke-pos-tl     { top: 22%; left: 4%; }
.spoke-node:hover { transform: scale(1.08); }
.spoke-pos-top:hover, .spoke-pos-bottom:hover { transform: translateX(-50%) scale(1.08); }

.spoke-lines { position: absolute; inset: 0; z-index: 1; }
.spoke-lines line { stroke: var(--brand-blue); stroke-width: 1.5; stroke-dasharray: 6 4; opacity: 0.3; }
.spoke-lines line.active { animation: dashFlow 1.5s linear infinite; opacity: 0.7; }
@keyframes dashFlow { to { stroke-dashoffset: -20; } }

.spoke-check {
  position: absolute; width: 20px; height: 20px;
  background: var(--success); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; z-index: 3;
  opacity: 0; transform: scale(0.5); transition: all 0.4s var(--ease-out);
}
.spoke-check.visible { opacity: 1; transform: scale(1); }
.spoke-check svg { width: 11px; height: 11px; stroke: #fff; stroke-width: 3; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.check-pos-top    { top: 0%;  left: calc(50% + 26px); }
.check-pos-tr     { top: 18%; right: 1%; }
.check-pos-br     { bottom: 18%; right: 1%; }
.check-pos-bottom { bottom: 0%; left: calc(50% + 26px); }
.check-pos-bl     { bottom: 18%; left: 1%; }
.check-pos-tl     { top: 18%; left: 1%; }

/* 100% badge */
.verification-badge {
  display: inline-flex; align-items: center; gap: var(--space-2);
  margin-top: var(--space-4); padding: var(--space-2) var(--space-4);
  background: rgba(22,163,74,0.08); border: 1px solid rgba(22,163,74,0.2);
  border-radius: 999px; font-size: var(--text-sm); font-weight: 600; color: var(--success);
}
.verification-badge svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ── 2. CALCULATION — Dashboard Mockup ── */
.svc-calc-bg {
  background: linear-gradient(180deg, #0B0F14 0%, #131922 100%);
  border-radius: var(--radius-lg);
}
.svc-calc-bg .svc-text .eyebrow,
.svc-calc-bg .svc-text h2,
.svc-calc-bg .svc-text p,
.svc-calc-bg .svc-feature,
.svc-calc-bg .svc-feature strong { color: rgba(255,255,255,0.85); }
.svc-calc-bg .svc-text .eyebrow { color: var(--brand-blue); }
.svc-calc-bg .svc-feature:hover { background: rgba(255,255,255,0.05); }
.svc-calc-bg .svc-feature-icon { color: var(--brand-blue-200); }
.svc-calc-bg .container { padding-top: var(--space-9); padding-bottom: var(--space-9); }

.dashboard-mock {
  background: #0f172a; border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: var(--space-5);
  font-family: 'IBM Plex Mono', 'IBM Plex Sans', monospace;
  box-shadow: 0 0 80px rgba(0,162,255,0.08); overflow: hidden;
}
.dash-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: var(--space-5); padding-bottom: var(--space-3);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dash-title { font-size: 11px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.1em; }
.dash-live {
  display: flex; align-items: center; gap: 6px;
  font-size: 10px; color: var(--success); text-transform: uppercase; letter-spacing: 0.08em;
}
.dash-live-dot {
  width: 6px; height: 6px; background: var(--success); border-radius: 50%;
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(22,163,74,0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 4px rgba(22,163,74,0); }
}
.dash-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); margin-bottom: var(--space-4); }
.dash-metric {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px; padding: var(--space-3);
}
.dash-metric-label { font-size: 9px; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: var(--space-1); }
.dash-metric-value { font-size: 20px; font-weight: 500; color: #fff; font-family: 'IBM Plex Mono', monospace; }

.dash-covenants { display: flex; flex-wrap: nowrap; gap: 5px; margin-bottom: var(--space-4); overflow-x: auto; }
.dash-pill {
  display: flex; align-items: center; gap: 4px; padding: 4px 8px;
  border-radius: 999px; font-size: 10px; font-weight: 500; letter-spacing: 0.02em;
  white-space: nowrap;
}
.dash-pill-dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
.dash-pill--ok { background: rgba(22,163,74,0.12); color: #4ade80; }
.dash-pill--ok .dash-pill-dot { background: #4ade80; }
.dash-pill--warn { background: rgba(245,158,11,0.12); color: #fbbf24; }
.dash-pill--warn .dash-pill-dot { background: #fbbf24; }

.dash-alerts {
  display: flex; align-items: center; gap: var(--space-3);
  padding: var(--space-3); background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.15); border-radius: 10px;
  margin-bottom: var(--space-4); font-size: 11px; color: #fbbf24;
}
.dash-alerts svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; flex-shrink: 0; }
.dash-alerts-badge {
  margin-left: auto; background: rgba(245,158,11,0.2); padding: 2px 8px;
  border-radius: 4px; font-weight: 600; font-size: 10px;
}

.dash-waterfall {
  display: flex; align-items: flex-end; gap: 3px; height: 64px;
  padding: var(--space-3); background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05); border-radius: 10px;
}
.dash-bar { flex: 1; border-radius: 3px 3px 0 0; min-height: 4px; transition: height 0.8s var(--ease-out); }
.dash-bar--blue { background: var(--brand-blue); }
.dash-bar--teal { background: #06b6d4; }
.dash-bar--muted { background: rgba(255,255,255,0.1); }

/* ── 3. CASH MANAGEMENT — Flow Diagram + Steps ── */
/* Cash management — operations panel */
.cash-ops-panel {
  background: #0f172a; border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: var(--space-5); overflow: hidden;
  font-family: 'IBM Plex Mono', 'IBM Plex Sans', monospace;
  box-shadow: 0 0 60px rgba(0,162,255,0.06);
}
.cash-ops-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: var(--space-4); padding-bottom: var(--space-3);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cash-ops-title { font-size: 10px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.1em; }
.cash-ops-cycle {
  display: flex; flex-direction: column; gap: var(--space-3); margin-bottom: var(--space-4);
}
.cash-ops-step {
  display: flex; align-items: center; gap: var(--space-3);
  padding: 8px 12px; background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06); border-radius: 10px;
  transition: border-color 0.3s ease;
}
.cash-ops-step.active { border-color: rgba(0,162,255,0.3); background: rgba(0,162,255,0.05); }
.cash-ops-step-num {
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; flex-shrink: 0;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.4);
}
.cash-ops-step.active .cash-ops-step-num { background: var(--brand-blue); color: #fff; }
.cash-ops-step-label { font-size: 11px; color: rgba(255,255,255,0.5); flex: 1; font-family: var(--font-body); }
.cash-ops-step.active .cash-ops-step-label { color: rgba(255,255,255,0.9); }
.cash-ops-step-time {
  font-size: 10px; font-weight: 600; padding: 2px 8px; border-radius: 4px;
  white-space: nowrap;
}
.cash-ops-step .cash-ops-step-time { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.3); }
.cash-ops-step.active .cash-ops-step-time { background: rgba(0,162,255,0.15); color: var(--brand-blue-200); }
.cash-ops-metrics {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3);
  padding-top: var(--space-4); border-top: 1px solid rgba(255,255,255,0.06);
}
.cash-ops-metric {
  padding: var(--space-3); background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05); border-radius: 8px;
}
.cash-ops-metric-label { font-size: 9px; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }
.cash-ops-metric-value { font-size: 18px; font-weight: 500; color: #fff; }
.cash-ops-metric-value--green { color: #4ade80; }

/* Tabs */
.cash-ops-tabs {
  display: flex; gap: 2px; margin-bottom: var(--space-4);
  background: rgba(255,255,255,0.04); border-radius: 10px; padding: 3px;
}
.cash-ops-tab {
  flex: 1; padding: 8px 10px; border: none; background: transparent;
  border-radius: 8px; font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.4);
  cursor: pointer; transition: all 0.2s ease; font-family: var(--font-body);
  text-align: center; line-height: 1.3;
}
.cash-ops-tab:hover { color: rgba(255,255,255,0.6); }
.cash-ops-tab.active {
  background: rgba(0,162,255,0.12); color: var(--brand-blue-200);
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.cash-ops-tab-content { display: none; }
.cash-ops-tab-content.active { display: block; }
.cash-highlight {
  padding: var(--space-4);
  background: linear-gradient(135deg, rgba(0,162,255,0.05) 0%, rgba(22,163,74,0.05) 100%);
  border: 1px solid rgba(0,162,255,0.12); border-radius: var(--radius-md);
}
.cash-highlight-title {
  font-family: var(--font-display); font-size: var(--text-sm); font-weight: 700;
  color: var(--brand-blue); margin-bottom: var(--space-1);
}
.cash-highlight p { font-size: var(--text-sm); margin: 0; color: var(--slate); }

/* ── 4. DATA ANALYSIS — Portfolio Simulation ── */
.svc-data-visual {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 16px; padding: var(--space-5); box-shadow: var(--shadow-sm);
}
.sim-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: var(--space-4); padding-bottom: var(--space-3); border-bottom: 1px solid var(--line);
}
.sim-title { font-size: var(--text-xs); color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.sim-toggle { display: flex; gap: 2px; background: var(--canvas); border-radius: 8px; padding: 2px; }
.sim-toggle-btn {
  padding: 4px 12px; border: none; background: transparent; border-radius: 6px;
  font-size: 11px; font-weight: 600; color: var(--muted); cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out); font-family: inherit;
}
.sim-toggle-btn.active { background: var(--surface); color: var(--brand-blue); box-shadow: var(--shadow-xs); }

/* Workflow steps */
.sim-workflow {
  display: flex; gap: 2px; margin-bottom: var(--space-4);
}
.sim-wf-step {
  flex: 1; padding: var(--space-3); background: var(--canvas);
  border-radius: var(--radius-sm); text-align: center; position: relative;
  transition: all 0.3s var(--ease-out);
}
.sim-wf-step.active { background: var(--brand-blue-50); }
.sim-wf-step-num {
  font-size: 10px; font-weight: 700; color: var(--muted);
  margin-bottom: 2px;
}
.sim-wf-step.active .sim-wf-step-num { color: var(--brand-blue); }
.sim-wf-step-label {
  font-size: 11px; font-weight: 600; color: var(--slate);
}
.sim-wf-step.active .sim-wf-step-label { color: var(--brand-blue); }
.sim-wf-arrow {
  display: flex; align-items: center; color: var(--line); font-size: 14px; padding: 0 2px;
}

/* Projection chart */
.sim-projection {
  position: relative; height: 160px; margin-top: var(--space-3);
  border-bottom: 1px solid var(--line); border-left: 1px solid var(--line);
}
.sim-projection svg { width: 100%; height: 100%; }
.sim-proj-line {
  fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
  transition: d 0.8s var(--ease-out), opacity 0.4s ease;
}
.sim-proj-area {
  opacity: 0.08; transition: d 0.8s var(--ease-out), opacity 0.4s ease;
}
.sim-proj-labels {
  display: flex; justify-content: space-between;
  font-size: 10px; color: var(--muted); margin-top: 4px;
}
.sim-legend { display: flex; gap: var(--space-5); margin-top: var(--space-4); padding-top: var(--space-3); border-top: 1px solid var(--line); }
.sim-legend-item { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--muted); }
.sim-legend-dot { width: 10px; height: 3px; border-radius: 2px; }
.sim-legend-dot--current { background: var(--brand-blue); }
.sim-legend-dot--simulated { background: var(--success); }

/* ── 5. KEY DIFFERENCE — Before/After Flow ── */
.diff-section { padding: var(--space-10) 0; }
.diff-container { max-width: 1280px; margin: 0 auto; padding: 0 var(--space-6); }
.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); margin-top: var(--space-7); }
.diff-flow { border-radius: 16px; padding: var(--space-6); position: relative; overflow: hidden; }
.diff-flow--old { background: #FEF2F2; border: 1px solid rgba(220,38,38,0.12); }
.diff-flow--new { background: var(--brand-blue-50); border: 1px solid rgba(0,162,255,0.15); }
.diff-flow-label { font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: var(--space-5); }
.diff-flow--old .diff-flow-label { color: var(--error); }
.diff-flow--new .diff-flow-label { color: var(--brand-blue); }
.diff-steps { display: flex; flex-direction: column; gap: var(--space-3); }
.diff-step {
  display: flex; align-items: center; gap: var(--space-3);
  padding: var(--space-3) var(--space-4); background: rgba(255,255,255,0.7);
  border-radius: var(--radius-sm); font-size: var(--text-sm); font-weight: 500; color: var(--ink);
  opacity: 0; transform: translateX(-12px); transition: all 0.4s var(--ease-out);
}
.diff-flow--new .diff-step { transform: translateX(12px); }
.diff-step.visible { opacity: 1; transform: translateX(0); }
.diff-step-icon {
  width: 28px; height: 28px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.diff-flow--old .diff-step-icon { background: rgba(220,38,38,0.1); color: var(--error); }
.diff-flow--new .diff-step-icon { background: rgba(0,162,255,0.12); color: var(--brand-blue); }
.diff-step-icon svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 2; fill: none; }
.diff-step-time {
  margin-left: auto; font-size: 11px; font-weight: 600;
  font-family: 'IBM Plex Mono', monospace; padding: 2px 8px; border-radius: 4px; white-space: nowrap;
}
.diff-flow--old .diff-step-time { background: rgba(220,38,38,0.08); color: var(--error); }
.diff-flow--new .diff-step-time { background: rgba(0,162,255,0.1); color: var(--brand-blue); }

/* ── 6. DEPLOYMENT — Modular Blocks ── */
.deploy-section { padding: var(--space-10) 0; }
.deploy-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5);
  max-width: 1000px; margin: var(--space-7) auto 0;
}
.deploy-block {
  padding: var(--space-5) var(--space-6); border-radius: 16px;
  position: relative; transition: all 0.6s var(--ease-out);
  opacity: 0; transform: translateY(20px);
}
.deploy-block.visible { opacity: 1; transform: translateY(0); }
.deploy-block:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.deploy-block--va { background: var(--brand-blue-50); border: 1px solid rgba(0,162,255,0.2); }
.deploy-block--ca { background: linear-gradient(135deg, #E6F7FF 0%, #BAE7FF 100%); border: 1px solid rgba(0,162,255,0.25); }
.deploy-block--cm { background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-600) 100%); border: none; color: #fff; }
.deploy-block-header { display: flex; align-items: center; gap: var(--space-3); }
.deploy-block-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.deploy-block-icon svg { width: 20px; height: 20px; stroke: currentColor; stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.deploy-block--va .deploy-block-icon { background: rgba(0,162,255,0.12); color: var(--brand-blue); }
.deploy-block--ca .deploy-block-icon { background: rgba(0,162,255,0.15); color: var(--brand-blue-700); }
.deploy-block--cm .deploy-block-icon { background: rgba(255,255,255,0.2); color: #fff; }
.deploy-block-title { font-family: var(--font-display); font-size: var(--text-md); font-weight: 600; }
.deploy-block--cm .deploy-block-title { color: #fff; }
.deploy-block p { margin: var(--space-2) 0 0; font-size: var(--text-sm); }
.deploy-block--cm p { color: rgba(255,255,255,0.8); }
.deploy-block-tag { display: none; }

/* ── 7. COMPARISON — Table Format ── */
.compare-section { padding: var(--space-10) 0; background: linear-gradient(180deg, var(--canvas) 0%, #fff 100%); }
.compare-table {
  max-width: 900px; margin: var(--space-7) auto 0;
  border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  background: var(--surface);
}
.compare-table-header {
  display: grid; grid-template-columns: 0.75fr 1.125fr 1.125fr;
  background: var(--canvas); border-bottom: 1px solid var(--line);
  padding: var(--space-3) var(--space-5); font-size: var(--text-xs);
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted);
}
.compare-table-row {
  display: grid; grid-template-columns: 0.75fr 1.125fr 1.125fr;
  padding: var(--space-4) var(--space-5); border-bottom: 1px solid var(--line);
  align-items: center; font-size: var(--text-sm);
  opacity: 0; transform: translateY(8px); transition: all 0.4s var(--ease-out);
}
.compare-table-row.visible { opacity: 1; transform: translateY(0); }
.compare-table-row:last-child { border-bottom: none; }
.compare-metric-name { font-weight: 600; color: var(--ink); }
.compare-old {
  display: flex; align-items: center; gap: var(--space-2); color: var(--muted);
}
.compare-old-icon {
  width: 18px; height: 18px; background: rgba(220,38,38,0.08);
  border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.compare-old-icon svg { width: 10px; height: 10px; stroke: var(--error); stroke-width: 2.5; fill: none; }
.compare-new {
  display: flex; align-items: center; gap: var(--space-2); color: var(--brand-blue); font-weight: 600;
}
.compare-new-icon {
  width: 18px; height: 18px; background: rgba(0,162,255,0.1);
  border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.compare-new-icon svg { width: 10px; height: 10px; stroke: var(--brand-blue); stroke-width: 2.5; fill: none; }

/* ── Responsive ── */
@media (max-width: 1000px) {
  .svc-section .container { grid-template-columns: 1fr; gap: var(--space-6); }
  .diff-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .deploy-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .compare-table-header, .compare-table-row { grid-template-columns: 0.75fr 1.125fr 1.125fr; }
  .hub-ring { width: 280px; height: 280px; }
  .spoke-node { width: 64px; height: 64px; font-size: 9px; }
}
@media (max-width: 680px) {
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .svc-verification-visual { max-width: 320px; }
  .hub-center { width: 76px; height: 76px; border-radius: 18px; }
  .hub-center-label { font-size: 16px; }
  .hub-ring { width: 220px; height: 220px; }
  .spoke-node { width: 52px; height: 52px; font-size: 8px; border-radius: 12px; }
  .spoke-node svg { width: 18px; height: 18px; }
  .dash-metrics { grid-template-columns: 1fr; }
  .sim-chart { height: 120px; }
  .compare-table-header, .compare-table-row { grid-template-columns: 1fr; gap: var(--space-2); }
  .compare-table-header > span:first-child { display: none; }
  .compare-table-row { padding: var(--space-4); }
  .compare-metric-name { margin-bottom: var(--space-2); }
}

@media (prefers-reduced-motion: reduce) {
  .spoke-lines line, .dash-live-dot, .dash-bar, .sim-bar, .diff-step, .deploy-block, .compare-table-row {
    animation: none !important; transition: none !important;
  }
  .diff-step, .deploy-block, .spoke-check, .compare-table-row { opacity: 1; transform: none; }
}
