/* Scenarios Page Styles */

/* Hero Stats with Description */
.hero-stats .stat-box {
  text-align: center;
}

.stat-desc {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.5rem;
}

/* Classification Grid */
.classification-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.classification-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 3px solid;
  transition: all 0.3s ease;
}

.classification-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.classification-card.scheduled {
  border-color: #f59e0b;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.05), rgba(245, 158, 11, 0.02));
}

.classification-card.event {
  border-color: #3b82f6;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(59, 130, 246, 0.02));
}

.classification-card.manual {
  border-color: #8b5cf6;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(139, 92, 246, 0.02));
}

.classification-card.approval {
  border-color: #10b981;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(16, 185, 129, 0.02));
}

.classification-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  text-align: center;
}

.classification-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  text-align: center;
}

.classification-desc {
  color: var(--text-gray);
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.classification-examples {
  background: var(--bg-light);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.classification-examples h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.classification-examples ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.classification-examples li {
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: 0.5rem;
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

.classification-examples li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.classification-principle {
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.1), rgba(10, 42, 90, 0.1));
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--text-gray);
  border-left: 4px solid var(--accent-color);
}

.classification-principle strong {
  color: var(--primary-color);
}

/* Employee Skills Section */
.employee-skills-section {
  margin-bottom: 4rem;
}

.skills-layer-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.skills-layer-header.strategic {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.05));
  border-left: 6px solid #8b5cf6;
}

.skills-layer-header.business {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.05));
  border-left: 6px solid #3b82f6;
}

.skills-layer-header.management {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
  border-left: 6px solid #10b981;
}

.skills-layer-header .layer-icon {
  font-size: 2.5rem;
}

.skills-layer-header .layer-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

/* Employee Skills Grid */
.employee-skills-grid {
  display: grid;
  gap: 2rem;
}

.employee-skill-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.employee-skill-card:hover {
  border-color: var(--accent-color);
  box-shadow: var(--shadow-md);
}

.employee-skill-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--border-color);
}

.employee-icon {
  font-size: 3rem;
}

.employee-skill-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.employee-skill-count {
  color: var(--text-gray);
  font-size: 0.95rem;
}

.skill-breakdown-mini {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.skill-mini {
  background: var(--bg-light);
  color: var(--text-gray);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid var(--border-color);
}

.skill-highlights {
  display: grid;
  gap: 1rem;
}

.skill-highlight-item {
  background: var(--bg-light);
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-gray);
}

.skill-highlight-item strong {
  color: var(--primary-color);
  display: inline-block;
  min-width: 60px;
}

/* Compact Employee Skills Grid */
.employee-skills-compact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.employee-skill-compact-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.employee-skill-compact-card:hover {
  border-color: var(--accent-color);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.compact-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.compact-icon {
  font-size: 2rem;
}

.compact-header h5 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  flex: 1;
}

.compact-count {
  background: var(--accent-color);
  color: var(--primary-color);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}

.compact-summary {
  color: var(--text-gray);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

/* CTA Content */
.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

.cta-desc {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
  .classification-grid {
    grid-template-columns: 1fr;
  }

  .employee-skills-grid,
  .employee-skills-compact-grid {
    grid-template-columns: 1fr;
  }

  .skills-layer-header {
    flex-direction: column;
    text-align: center;
  }

  .employee-skill-header {
    flex-direction: column;
    text-align: center;
  }

  .skill-breakdown-mini {
    justify-content: center;
  }

  .cta-title {
    font-size: 1.75rem;
  }

  .cta-desc {
    font-size: 1rem;
  }
}

/* ========================================
   Pricing Page Specific Styles
   ======================================== */

/* Service Content */
.service-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

/* Service CTA */
.service-cta {
  margin-top: 3rem;
  text-align: center;
}

.service-cta .btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

.service-column {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.service-column:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-color);
}

.service-column-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border-color);
}

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

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  color: var(--text-gray);
  line-height: 1.6;
  font-size: 0.95rem;
}

.service-list li:last-child {
  margin-bottom: 0;
}

.service-icon {
  color: var(--success-color);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1.125rem;
}

.service-list strong {
  color: var(--text-dark);
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

/* Pricing Card */
.pricing-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-color);
}

/* Featured Pricing Card */
.pricing-card.featured {
  border-color: var(--accent-color);
  border-width: 3px;
  box-shadow: 0 10px 40px rgba(0, 210, 255, 0.2);
}

.pricing-card.featured:hover {
  box-shadow: 0 15px 50px rgba(0, 210, 255, 0.3);
}

/* Pricing Badge */
.pricing-badge {
  position: absolute;
  top: -12px;
  right: 2rem;
  background: linear-gradient(135deg, var(--accent-color), #0099cc);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 210, 255, 0.3);
}

/* Pricing Header */
.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--border-color);
}

.stage-number {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), #0a3a6a);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.pricing-card.featured .stage-number {
  background: linear-gradient(135deg, var(--accent-color), #0099cc);
}

.pricing-plan-name {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.pricing-plan-desc {
  color: var(--text-gray);
  font-size: 0.95rem;
}

/* Pricing Price */
.pricing-price {
  text-align: center;
  margin-bottom: 2rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.pricing-card.featured .price-amount {
  background: linear-gradient(135deg, var(--accent-color), #0099cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-period {
  font-size: 1.125rem;
  color: var(--text-gray);
  font-weight: 600;
}

/* Pricing Features */
.pricing-features {
  flex: 1;
  margin-bottom: 2rem;
}

.features-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.features-list li {
  padding: 0.75rem 0;
  color: var(--text-gray);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-icon {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.features-list li strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* Stage Deliverables */
.stage-deliverables {
  margin-top: 1.5rem;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: 8px;
  border-left: 4px solid var(--accent-color);
}

.stage-deliverables h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stage-deliverables p {
  color: var(--text-gray);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

/* Stage Duration */
.stage-duration {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: rgba(0, 210, 255, 0.1);
  border-radius: 8px;
}

.duration-icon {
  font-size: 1.25rem;
}

.duration-text {
  font-weight: 600;
  color: var(--text-dark);
}

/* Pricing Note */
.pricing-note {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.pricing-note p {
  margin: 0;
  color: var(--text-gray);
  font-size: 0.95rem;
  text-align: center;
  line-height: 1.6;
}

/* Pricing CTA */
.pricing-cta {
  text-align: center;
}

.pricing-cta .btn {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 700;
}

/* Private Deployment Notice */
.deployment-notice {
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.1), rgba(59, 130, 246, 0.1));
  border-radius: var(--border-radius);
  border: 2px solid var(--accent-color);
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.notice-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.notice-content {
  flex: 1;
}

.notice-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.notice-desc {
  color: var(--text-gray);
  line-height: 1.8;
  margin: 0;
  font-size: 1rem;
}

/* Pricing Comparison Table */
.pricing-comparison-table {
  margin-top: 3rem;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comparison-table thead {
  background: linear-gradient(135deg, var(--primary-color), #0a3a6a);
}

.comparison-table thead th {
  padding: 1.5rem 1rem;
  font-weight: 700;
  text-align: center;
  font-size: 1.125rem;
}

.comparison-table thead th.feature-column {
  text-align: center;
  width: 15%;
}

.comparison-table thead th.featured-column {
  background: linear-gradient(135deg, var(--accent-color), #0099cc);
  position: relative;
  color: white !important;
}

.comparison-table tbody tr {
  border-bottom: 1px solid var(--border-color);
}

.comparison-table tbody tr:last-child {
  border-bottom: none;
}

.comparison-table tbody tr:hover {
  background: var(--bg-light);
}

.comparison-table tbody td {
  padding: 1rem;
  text-align: center;
  color: var(--text-gray);
  line-height: 1.5;
  vertical-align: middle;
}

.comparison-table tbody td.feature-name {
  text-align: center;
  font-weight: 600;
  color: var(--text-dark);
}

.comparison-table tbody td.featured-cell {
  background: rgba(0, 210, 255, 0.05);
  font-weight: 500;
  color: var(--text-dark);
  text-align: left;
  padding-left: 1.5rem;
}

.comparison-table tbody td strong {
  color: var(--primary-color);
  font-size: 0.95rem;
  font-weight: 600;
}

.comparison-table tbody td.featured-cell strong {
  background: linear-gradient(135deg, var(--accent-color), #0099cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* FAQ Grid */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.faq-item {
  background: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--accent-color);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.faq-question {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.faq-question::before {
  content: "Q";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: linear-gradient(135deg, var(--accent-color), #0099cc);
  color: white;
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.faq-answer {
  color: var(--text-gray);
  line-height: 1.8;
  margin: 0;
}

/* Service Comparison */
.service-comparison {
  margin-top: 3rem;
}

.service-features {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.service-intro {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: 8px;
  border-left: 4px solid var(--accent-color);
}

.service-intro strong {
  color: var(--text-dark);
  font-weight: 600;
}

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

.service-list li {
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-gray);
  line-height: 1.6;
}

.service-icon {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.comparison-table-wrapper {
  overflow-x: auto;
}

/* Case Study */
.case-study-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.case-study-column {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  min-width: 0;
  overflow: hidden;
}

.case-study-column.featured {
  border: 3px solid var(--accent-color);
  box-shadow: 0 10px 40px rgba(0, 210, 255, 0.2);
}

.case-study-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border-color);
}

.process-steps {
  margin-bottom: 2rem;
}

.process-step {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  gap: 1rem !important;
  padding: 0.75rem;
  margin-bottom: 0.5rem;
  border-radius: 8px;
  background: var(--bg-light);
  width: 100%;
  box-sizing: border-box;
}

.process-step.ai-step {
  background: rgba(0, 210, 255, 0.1);
}

.process-step.human-step {
  background: rgba(139, 92, 246, 0.1);
}

.step-number {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 2rem !important;
  height: 2rem !important;
  min-width: 2rem !important;
  background: var(--text-gray);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0 !important;
  position: relative !important;
}

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2rem;
  padding: 0 0.75rem;
  background: var(--accent-color);
  color: white;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.process-step.human-step .step-badge {
  background: #8b5cf6;
}

.process-step p {
  margin: 0 !important;
  color: var(--text-gray);
  line-height: 1.6;
  font-size: 0.95rem;
  flex: 1 !important;
  min-width: 0 !important;
  word-wrap: break-word;
}

.process-step strong {
  color: var(--text-dark);
  font-weight: 600;
}

.case-problems,
.case-results {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: 8px;
}

.case-results {
  border-left-color: var(--accent-color);
  background: rgba(0, 210, 255, 0.05);
}

.case-problems h4,
.case-results h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.case-problems ul,
.case-results ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.case-problems li,
.case-results li {
  padding: 0.5rem 0;
  color: var(--text-gray);
  line-height: 1.6;
}

.case-results li strong {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 1.125rem;
}

/* Strategic Assessment Section */
.assessment-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.assessment-intro {
  background: white;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

.assessment-intro-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.assessment-intro-desc {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.assessment-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.assessment-benefits li {
  padding: 0.75rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: var(--text-gray);
  line-height: 1.6;
  font-size: 1.05rem;
}

.benefit-icon {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.assessment-cta {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border-color);
  text-align: center;
}

.assessment-note {
  margin-top: 1rem;
  color: var(--text-gray);
  font-size: 0.95rem;
  text-align: center;
}

.assessment-results {
  background: white;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

.results-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2rem;
  text-align: center;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.result-card {
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: var(--border-radius);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.result-card:hover {
  background: white;
  border-color: var(--accent-color);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.result-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.result-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.result-desc {
  color: var(--text-gray);
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

.onsite-assessment-cta {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border-color);
  text-align: center;
}

.onsite-note {
  margin-top: 1rem;
  color: var(--text-gray);
  font-size: 0.95rem;
  text-align: center;
}

/* Stages Grid - Three Columns */
.stages-grid-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.stage-card-compact {
  position: relative;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  padding: 2rem;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.stage-card-compact:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-color);
  transform: translateY(-8px);
}

.stage-card-compact.featured {
  border-color: var(--accent-color);
  border-width: 3px;
  box-shadow: 0 10px 40px rgba(0, 210, 255, 0.2);
}

.stage-badge-compact {
  position: absolute;
  top: -12px;
  right: 1.5rem;
  background: linear-gradient(135deg, var(--accent-color), #0099cc);
  color: white;
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 210, 255, 0.3);
}

.stage-header-compact {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--border-color);
}

.stage-number-compact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--primary-color), #0a3a6a);
  color: white;
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.stage-card-compact.featured .stage-number-compact {
  background: linear-gradient(135deg, var(--accent-color), #0099cc);
}

.stage-title-compact {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
}

.stage-subtitle-compact {
  color: var(--text-gray);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

.stage-content-compact {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.stage-duration-compact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 210, 255, 0.1);
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.duration-icon {
  font-size: 1.125rem;
}

.duration-text {
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
  font-size: 0.95rem;
}

.work-title-compact {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.work-list-compact {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.work-list-compact li {
  padding: 0.75rem 0;
  color: var(--text-gray);
  line-height: 1.8;
  font-size: 0.95rem;
}

.work-icon {
  font-size: 1.125rem;
  margin-right: 0.5rem;
}

.work-list-compact li strong {
  display: inline;
  color: var(--text-dark);
  font-weight: 700;
}

.stage-deliverables-compact {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 2px solid var(--border-color);
}

.deliverables-title-compact {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.deliverables-desc-compact {
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: 8px;
  font-size: 0.9rem;
}

/* Tablet Responsive Styles */
@media (max-width: 1024px) {
  .assessment-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .results-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stages-grid-three {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Responsive Styles for Unified Service Card */
@media (max-width: 1200px) {
  .service-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}



@media (max-width: 768px) {
  .service-content {
    margin-top: 2rem;
  }

  .service-column {
    padding: 1.5rem;
  }

  .service-cta {
    margin-top: 2rem;
  }
}

/* Responsive Styles for Pricing */
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pricing-card {
    padding: 2rem;
  }

  .price-amount {
    font-size: 2.5rem;
  }

  .pricing-badge {
    right: 1rem;
  }

  .comparison-table {
    font-size: 0.875rem;
  }

  .comparison-table thead th,
  .comparison-table tbody td {
    padding: 1rem 0.5rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .faq-item {
    padding: 1.5rem;
  }



  .case-study-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .deployment-notice {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .notice-icon {
    font-size: 2.5rem;
  }

  .notice-title {
    font-size: 1.25rem;
  }

  .notice-desc {
    font-size: 0.95rem;
  }

  .assessment-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .assessment-intro {
    padding: 1.5rem;
  }

  .assessment-intro-title {
    font-size: 1.5rem;
  }

  .assessment-results {
    padding: 1.5rem;
  }

  .results-title {
    font-size: 1.25rem;
  }

  .results-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .result-card {
    padding: 1.25rem;
  }

  .result-icon {
    font-size: 2rem;
  }

  .onsite-note {
    font-size: 0.9rem;
  }

  .stages-grid-three {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stage-card-compact {
    padding: 1.5rem;
  }

  .stage-badge-compact {
    right: 1rem;
  }

  .stage-title-compact {
    font-size: 1.25rem;
  }

  .work-list-compact li {
    font-size: 0.9rem;
  }
}
