/* pl-identity-styles.css - Professionals Lobby Identity Article Styles */

/* Hero Section */
.pl-identity-hero {
  background: linear-gradient(135deg, #0a2c5e 0%, #1a4b8c 100%);
  color: white;
}

.pl-identity-hero .hero-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  margin: 1rem 0;
}

.pl-match-visual {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.match-engine {
  position: relative;
  width: 300px;
  height: 200px;
}

.engine-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #00aaff 0%, #0066cc 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 3;
  box-shadow: 0 5px 20px rgba(0, 170, 255, 0.4);
  animation: pulseCore 2s infinite;
}

.engine-core i {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.connection-line {
  position: absolute;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  top: 50%;
  transform: translateY(-50%);
}

.connection-line.left {
  left: 0;
  width: 90px;
  animation: pulseLineLeft 2s infinite;
}

.connection-line.right {
  right: 0;
  width: 90px;
  animation: pulseLineRight 2s infinite;
}

.match-client, .match-vendor {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
}

.match-client {
  left: 0;
}

.match-vendor {
  right: 0;
}

.success-badge {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #2ecc71;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

@keyframes pulseCore {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.05); }
}

@keyframes pulseLineLeft {
  0%, 100% { width: 90px; opacity: 0.3; }
  50% { width: 100px; opacity: 0.6; }
}

@keyframes pulseLineRight {
  0%, 100% { width: 90px; opacity: 0.3; }
  50% { width: 100px; opacity: 0.6; }
}

/* Executive Summary */
.pl-identity-summary .summary-card {
  background: linear-gradient(135deg, #f8fafc 0%, #e6f7ff 100%);
  border-left: 5px solid #0a2c5e;
}

/* Problem Section */
.pl-problem-section .process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.process-step {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  position: relative;
  border: 2px solid #e0e0e0;
}

.process-step.problematic {
  border-color: #e74c3c;
  background: #fff5f5;
}

.process-step::after {
  content: '→';
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  color: #95a5a6;
  font-weight: bold;
  font-size: 1.2rem;
}

.process-step:last-child::after {
  display: none;
}

.step-number {
  width: 40px;
  height: 40px;
  background: #e74c3c;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  font-weight: bold;
}

.consequences-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.consequence {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  border-top: 4px solid #e74c3c;
}

.consequence i {
  font-size: 2rem;
  color: #e74c3c;
  margin-bottom: 1rem;
}

.consequence h5 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.consequence p {
  color: #7f8c8d;
  font-size: 0.9rem;
}

/* Solution Architecture */
.pl-architecture {
  margin: 3rem 0;
}

.architecture-diagram {
  position: relative;
  height: 400px;
  margin: 2rem 0;
  background: #f8fafc;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.layer {
  position: absolute;
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 160px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.layer-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: white;
}

.client-layer {
  top: 20%;
  left: 10%;
  border-top: 4px solid #3498db;
}

.client-layer .layer-icon {
  background: #3498db;
}

.ai-engine-layer {
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  border-top: 4px solid #00aaff;
  z-index: 3;
}

.ai-engine-layer .layer-icon {
  background: linear-gradient(135deg, #00aaff, #0066cc);
}

.engine-pulse {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(0, 170, 255, 0.1);
  animation: pulse 2s infinite;
  z-index: 1;
}

.human-verification-layer {
  top: 20%;
  right: 10%;
  border-top: 4px solid #2ecc71;
}

.human-verification-layer .layer-icon {
  background: #2ecc71;
}

.vendor-layer {
  bottom: 20%;
  left: 10%;
  border-top: 4px solid #9b59b6;
}

.vendor-layer .layer-icon {
  background: #9b59b6;
}

.success-layer {
  bottom: 20%;
  right: 10%;
  border-top: 4px solid #f39c12;
}

.success-layer .layer-icon {
  background: #f39c12;
}

.connection {
  position: absolute;
  height: 2px;
  background: #00aaff;
  z-index: 1;
}

.c1 {
  top: 40%;
  left: 27%;
  width: 23%;
  transform: rotate(0deg);
}

.c2 {
  top: 40%;
  left: 50%;
  width: 23%;
  transform: rotate(0deg);
}

.c3 {
  bottom: 40%;
  left: 27%;
  width: 23%;
  transform: rotate(0deg);
}

.c4 {
  bottom: 40%;
  left: 50%;
  width: 23%;
  transform: rotate(0deg);
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.1; }
  50% { transform: scale(1.2); opacity: 0.3; }
  100% { transform: scale(1); opacity: 0.1; }
}

/* Differentiator Cards */
.differentiator-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

.differentiator-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.differentiator-card:hover {
  transform: translateY(-5px);
}

.differentiator-card.primary {
  border-top: 4px solid #00aaff;
}

.differentiator-card.secondary {
  border-top: 4px solid #2ecc71;
}

.differentiator-card.tertiary {
  border-top: 4px solid #f39c12;
}

.differentiator-card.quaternary {
  border-top: 4px solid #9b59b6;
}

.differentiator-header {
  padding: 1.5rem;
  background: #f8fafc;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid #e0e0e0;
}

.differentiator-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

.differentiator-card.primary .differentiator-icon {
  background: #00aaff;
}

.differentiator-card.secondary .differentiator-icon {
  background: #2ecc71;
}

.differentiator-card.tertiary .differentiator-icon {
  background: #f39c12;
}

.differentiator-card.quaternary .differentiator-icon {
  background: #9b59b6;
}

.differentiator-content {
  padding: 1.5rem;
}

.ai-capabilities ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.ai-capabilities li {
  padding: 0.5rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.ai-capabilities i {
  color: #00aaff;
  margin-top: 0.2rem;
}

.independence-matrix {
  margin: 1.5rem 0;
}

.matrix-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.matrix-item {
  padding: 1rem;
  border-radius: 8px;
}

.what-we-are {
  background: #e8f6f3;
  border-left: 4px solid #2ecc71;
}

.what-we-are-not {
  background: #fdedec;
  border-left: 4px solid #e74c3c;
}

.matrix-item h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.what-we-are h4 i {
  color: #2ecc71;
}

.what-we-are-not h4 i {
  color: #e74c3c;
}

.matrix-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.matrix-item li {
  padding: 0.3rem 0;
  font-size: 0.9rem;
}

.verification-process {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

.verification-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.step-icon {
  width: 40px;
  height: 40px;
  background: #f39c12;
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.oversight-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

.oversight-phase {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1rem;
  border-top: 4px solid #9b59b6;
}

.phase-title {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.oversight-phase ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.oversight-phase li {
  padding: 0.3rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.oversight-phase i {
  color: #9b59b6;
  margin-top: 0.2rem;
}

.benefit-box {
  background: #e8f6f3;
  border-radius: 8px;
  padding: 1rem;
  margin-top: 1rem;
  border-left: 4px solid #2ecc71;
}

.benefit-box h5 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

/* Engine Demo */
.demo-scenario {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin: 2rem 0;
}

.scenario-header {
  background: linear-gradient(135deg, #0a2c5e 0%, #1a4b8c 100%);
  color: white;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.scenario-tag {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
}

.scenario-content {
  padding: 2rem;
}

.scenario-step {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px dashed #e0e0e0;
}

.scenario-step:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.step-number {
  width: 40px;
  height: 40px;
  background: #00aaff;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.input-card {
  background: #f8fafc;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
  border-left: 4px solid #3498db;
}

.input-card h5 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  color: #2c3e50;
}

.ai-analysis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1rem 0;
}

.analysis-metric {
  text-align: center;
  padding: 1rem;
  background: #f0f9ff;
  border-radius: 8px;
  border: 2px solid #00aaff;
}

.metric-value {
  font-size: 2rem;
  font-weight: bold;
  color: #00aaff;
  margin-bottom: 0.3rem;
}

.metric-label {
  font-size: 0.85rem;
  color: #546e7a;
}

.match-criteria {
  margin: 1.5rem 0;
}

.criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.criterion {
  background: #e6f7ff;
  color: #0066cc;
  padding: 0.5rem;
  border-radius: 4px;
  font-size: 0.85rem;
  text-align: center;
}

.verification-result {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.result-card {
  text-align: center;
  padding: 1rem;
  border-radius: 8px;
  background: #f8f9fa;
}

.result-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.result-count {
  background: #00aaff;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.outcome-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.outcome-metric {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #e8f6f3;
  border-radius: 8px;
}

.outcome-metric.improvement {
  background: #e8f6f3;
  border-left: 4px solid #2ecc71;
}

.metric-icon {
  width: 50px;
  height: 50px;
  background: #2ecc71;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.metric-value {
  font-size: 1.8rem;
  font-weight: bold;
  color: #2c3e50;
}

.metric-note {
  font-size: 0.85rem;
  color: #546e7a;
  margin-top: 0.2rem;
}

/* Domain Wheel */
.domain-wheel {
  position: relative;
  height: 400px;
  margin: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wheel-center {
  position: absolute;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #0a2c5e 0%, #1a4b8c 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 2;
  box-shadow: 0 5px 20px rgba(10, 44, 94, 0.3);
}

.center-content i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.wheel-item {
  position: absolute;
  width: 100px;
  height: 100px;
  background: white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
  z-index: 1;
}

.wheel-item:hover {
  transform: scale(1.1);
  z-index: 3;
}

.wheel-item i {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.wheel-item span {
  font-size: 0.7rem;
  text-align: center;
  font-weight: 500;
}

/* Position wheel items */
.wheel-item.ai { top: 10%; left: 50%; transform: translateX(-50%); background: #e6f7ff; color: #00aaff; }
.wheel-item.erp { top: 25%; right: 15%; background: #f0f9ff; color: #0066cc; }
.wheel-item.it { bottom: 25%; right: 15%; background: #f8f9fa; color: #3498db; }
.wheel-item.legal { bottom: 10%; left: 50%; transform: translateX(-50%); background: #f9f0ff; color: #9b59b6; }
.wheel-item.finance { bottom: 25%; left: 15%; background: #f0fff4; color: #2ecc71; }
.wheel-item.strategy { top: 25%; left: 15%; background: #fff8e6; color: #f39c12; }
.wheel-item.education { top: 40%; left: 5%; background: #fff0f6; color: #e74c3c; }
.wheel-item.property { top: 40%; right: 5%; background: #e6fff9; color: #1abc9c; }

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.advantage-card {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.advantage-card i {
  font-size: 2rem;
  color: #0a2c5e;
  margin-bottom: 1rem;
}

/* Vendor Comparison */
.vendor-comparison {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

.comparison-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.comparison-card.traditional {
  border-top: 4px solid #e74c3c;
}

.comparison-card.pl {
  border-top: 4px solid #2ecc71;
}

.comparison-header {
  padding: 1.5rem;
  background: #f8fafc;
  border-bottom: 1px solid #e0e0e0;
}

.comparison-content {
  padding: 1.5rem;
}

.comparison-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.comparison-content li {
  padding: 0.8rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  border-bottom: 1px solid #f0f0f0;
}

.comparison-content li:last-child {
  border-bottom: none;
}

.comparison-content li.negative i {
  color: #e74c3c;
}

.comparison-content li.positive i {
  color: #2ecc71;
}

.conversion-metric {
  text-align: center;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.comparison-card.traditional .conversion-metric {
  border: 2px solid #e74c3c;
}

.comparison-card.pl .conversion-metric {
  border: 2px solid #2ecc71;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.stat-card {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.stat-value {
  font-size: 2.5rem;
  font-weight: bold;
  color: #0a2c5e;
  margin-bottom: 0.5rem;
}

/* Trust Pyramid */
.trust-pyramid {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 3rem 0;
}

.pyramid-level {
  width: 80%;
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #00aaff;
}

.pyramid-level:nth-child(2) {
  width: 70%;
  border-left-color: #2ecc71;
}

.pyramid-level:nth-child(3) {
  width: 60%;
  border-left-color: #f39c12;
}

.pyramid-level:nth-child(4) {
  width: 50%;
  border-left-color: #9b59b6;
}

.pyramid-level.apex {
  width: 40%;
  border-left-color: #0a2c5e;
  background: linear-gradient(135deg, #0a2c5e 0%, #1a4b8c 100%);
  color: white;
}

.level-number {
  width: 50px;
  height: 50px;
  background: #00aaff;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.pyramid-level:nth-child(2) .level-number {
  background: #2ecc71;
}

.pyramid-level:nth-child(3) .level-number {
  background: #f39c12;
}

.pyramid-level:nth-child(4) .level-number {
  background: #9b59b6;
}

.pyramid-level.apex .level-number {
  background: white;
  color: #0a2c5e;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.metric-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.metric-icon {
  width: 60px;
  height: 60px;
  background: #0a2c5e;
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.metric-value {
  font-size: 1.8rem;
  font-weight: bold;
  color: #0a2c5e;
}

/* CTA Section */
.pl-cta {
  background: linear-gradient(135deg, #0a2c5e 0%, #1a4b8c 100%);
  color: white;
  border-radius: 12px;
  margin: 3rem 0;
  padding: 2.5rem;
}

.cta-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.cta-content h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.cta-testimonial {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1.5rem;
}

.testimonial-content {
  position: relative;
}

.testimonial-content i.fa-quote-left {
  position: absolute;
  top: -10px;
  left: -10px;
  font-size: 2rem;
  opacity: 0.3;
}

.testimonial-author {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-author strong {
  display: block;
  margin-bottom: 0.2rem;
}

.testimonial-author span {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Sidebar Widgets */
.ai-engine-info {
  background: #f8fafc;
  border-radius: 8px;
  padding: 1.5rem;
}

.engine-spec {
  margin-bottom: 1.5rem;
}

.engine-spec:last-child {
  margin-bottom: 0;
}

.engine-spec h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  color: #2c3e50;
}

.engine-spec ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.engine-spec li {
  padding: 0.3rem 0;
  font-size: 0.9rem;
}

.domains-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.domain-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem;
  background: #f8f9fa;
  border-radius: 6px;
  color: #2c3e50;
  text-decoration: none;
  transition: background 0.3s ease;
}

.domain-item:hover {
  background: #e6f7ff;
}

.domain-item i {
  color: #00aaff;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .process-timeline,
  .differentiator-cards,
  .vendor-comparison,
  .advantage-grid,
  .stats-grid,
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cta-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .verification-process,
  .oversight-timeline,
  .ai-analysis,
  .verification-result,
  .outcome-metrics {
    grid-template-columns: 1fr;
  }
  
  .matrix-row {
    grid-template-columns: 1fr;
  }
  
  .architecture-diagram {
    height: 600px;
  }
  
  .layer {
    position: static;
    margin: 0.5rem auto;
    width: 80%;
  }
  
  .connection {
    display: none;
  }
}

@media (max-width: 768px) {
  .process-timeline,
  .differentiator-cards,
  .vendor-comparison,
  .advantage-grid,
  .stats-grid,
  .metrics-grid {
    grid-template-columns: 1fr;
  }
  
  .process-step::after {
    display: none;
  }
  
  .criteria-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .domain-wheel {
    height: 300px;
  }
  
  .wheel-item {
    width: 80px;
    height: 80px;
    font-size: 0.7rem;
  }
  
  .wheel-item i {
    font-size: 1.2rem;
  }
  
  .pyramid-level {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .criteria-grid {
    grid-template-columns: 1fr;
  }
  
  .domains-list {
    grid-template-columns: 1fr;
  }
  
  .match-engine {
    transform: scale(0.8);
  }
}