/*
 * Solution Detail Page Enhancements
 * Task 11: Enhanced ROI calculators, business outcomes, and conversion optimization
 * 
 * SAFETY: This file uses additive CSS classes only
 * - All classes prefixed with .solution-enhanced- or .roi-
 * - No modifications to existing styles
 * - Safe to apply without breaking current functionality
 */

/* ========================================
   ROI CALCULATOR COMPONENTS
   ======================================== */

/* ROI Calculator - Clean Deloitte Style */
.roi-calculator-section.o_snippet,
.roi-calculator-section {
  background: #ffffff !important;
  padding: 4rem 0 !important;
  margin: 3rem 0;
  position: relative;
}

.roi-calculator-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(30, 64, 175, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.o_website .roi-calculator-section .roi-calculator-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem;
  background: #f8f9fa;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.roi-calculator-section .roi-calculator-header {
  text-align: left;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #e5e7eb;
}

.o_website .roi-calculator-section .roi-calculator-title {
  font-size: 2rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  letter-spacing: -0.025em;
}

.o_website .roi-calculator-section .roi-calculator-subtitle {
  font-size: 1rem;
  color: #6b7280;
  max-width: 100%;
  margin: 0;
  line-height: 1.5;
}

.o_website .roi-calculator-section .roi-calculator-grid {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 968px) {
  .roi-calculator-section .roi-calculator-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }
}

/* Input Panel */
.o_website .roi-calculator-section .roi-input-panel {
  background: white;
  border-radius: 6px;
  padding: 2rem;
  box-shadow: none;
  border: 1px solid #e5e7eb;
}

.o_website .roi-calculator-section .roi-input-panel h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #f3f4f6;
}

.roi-input-group {
  margin-bottom: var(--deloitte-space-6, 1.5rem);
}

.o_website .roi-calculator-section .roi-input-label {
  display: block;
  font-size: var(--deloitte-text-base, 1rem);
  font-weight: 500;
  color: var(--deloitte-text-primary, #1f2937);
  margin-bottom: var(--deloitte-space-2, 0.5rem);
}

.roi-input-field {
  width: 100%;
  padding: var(--deloitte-space-3, 0.75rem) var(--deloitte-space-4, 1rem);
  border: 2px solid var(--deloitte-border-light, #e5e7eb);
  border-radius: 8px;
  font-size: var(--deloitte-text-base, 1rem);
  font-family: var(--deloitte-font-body, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.roi-input-field:focus {
  outline: none;
  border-color: var(--deloitte-primary-executive, #0066cc);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.o_website .roi-calculator-section .roi-input-help {
  font-size: var(--deloitte-text-sm, 0.875rem);
  color: var(--deloitte-text-tertiary, #9ca3af);
  margin-top: var(--deloitte-space-1, 0.25rem);
}

.roi-slider-container {
  margin-top: var(--deloitte-space-3);
}

.roi-slider {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--deloitte-border-light, #e5e7eb);
  outline: none;
  -webkit-appearance: none;
}

.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--deloitte-primary-executive, #0066cc);
  cursor: pointer;
  box-shadow: var(--deloitte-shadow-sm, 0 1px 3px rgba(0, 0, 0, 0.1));
}

.roi-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--deloitte-primary-executive, #0066cc);
  cursor: pointer;
  border: none;
  box-shadow: var(--deloitte-shadow-sm, 0 1px 3px rgba(0, 0, 0, 0.1));
}

.roi-slider-value {
  text-align: center;
  margin-top: 0.5rem;
  font-weight: 600;
  color: var(--deloitte-primary-executive, #0066cc);
}

/* Results Panel */
.o_website .roi-calculator-section .roi-results-panel {
  background: white;
  border-radius: 6px;
  padding: 2rem;
  box-shadow: none;
  border: 1px solid #e5e7eb;
  position: sticky;
  top: 2rem;
}

.o_website .roi-calculator-section .roi-results-panel h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #f3f4f6;
}

.roi-metric-grid {
  display: grid;
  gap: var(--deloitte-space-4, 1rem);
  margin-bottom: var(--deloitte-space-8, 2rem);
}

.o_website .roi-calculator-section .roi-metric-card {
  background: #f9fafb;
  border-radius: 4px;
  padding: 1.25rem;
  text-align: center;
  border: 1px solid #e5e7eb;
  border-left: 3px solid #0066cc;
}

.o_website .roi-calculator-section .roi-metric-value {
  font-size: var(--deloitte-text-3xl, 1.875rem);
  font-weight: 700;
  color: var(--deloitte-accent-executive, #0066cc);
  margin-bottom: var(--deloitte-space-1, 0.25rem);
  font-family: var(--deloitte-font-heading, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
}

.o_website .roi-calculator-section .roi-metric-label {
  font-size: var(--deloitte-text-sm, 0.875rem);
  color: var(--deloitte-text-secondary, #6b7280);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.o_website .roi-calculator-section .roi-metric-description {
  font-size: var(--deloitte-text-sm, 0.875rem);
  color: var(--deloitte-text-tertiary, #9ca3af);
  margin-top: var(--deloitte-space-1, 0.25rem);
  line-height: var(--deloitte-leading-normal, 1.5);
}

/* ROI Summary */
.o_website .roi-calculator-section .roi-summary {
  background: #0066cc;
  color: white;
  border-radius: 4px;
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.roi-summary-title {
  font-size: var(--deloitte-text-lg, 1.125rem);
  font-weight: 600;
  margin-bottom: var(--deloitte-space-2, 0.5rem);
}

.roi-summary-value {
  font-size: var(--deloitte-text-4xl, 2.25rem);
  font-weight: 700;
  margin-bottom: var(--deloitte-space-2, 0.5rem);
  font-family: var(--deloitte-font-heading, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
}

.roi-summary-timeframe {
  font-size: var(--deloitte-text-base, 1rem);
  opacity: 0.9;
}

.roi-cta-button {
  width: 100%;
  background: var(--deloitte-primary-executive, #0066cc);
  color: white;
  border: none;
  padding: var(--deloitte-space-4) var(--deloitte-space-6);
  border-radius: 8px;
  font-size: var(--deloitte-text-base);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.roi-cta-button:hover {
  background: var(--deloitte-primary-executive-dark);
  transform: translateY(-2px);
  box-shadow: var(--deloitte-shadow-lg);
}

/* ========================================
   BUSINESS OUTCOME METRICS
   ======================================== */

.business-outcomes-section {
  padding: var(--deloitte-section-padding-desktop) 0;
  background: var(--deloitte-bg-primary);
}

.business-outcomes-header {
  text-align: center;
  margin-bottom: var(--deloitte-space-16);
}

.business-outcomes-title {
  font-size: var(--deloitte-text-4xl);
  font-weight: 700;
  color: var(--deloitte-text-primary);
  margin-bottom: var(--deloitte-space-4);
  font-family: var(--deloitte-font-heading);
}

.business-outcomes-subtitle {
  font-size: var(--deloitte-text-xl);
  color: var(--deloitte-text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: var(--deloitte-leading-relaxed);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--deloitte-space-8);
  margin-bottom: var(--deloitte-space-12);
}

.outcome-card {
  background: white;
  border-radius: 12px;
  padding: var(--deloitte-space-8);
  box-shadow: var(--deloitte-shadow-md);
  border: 1px solid var(--deloitte-border-light);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.outcome-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--deloitte-primary-executive) 0%, var(--deloitte-accent-executive) 100%);
}

.outcome-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--deloitte-shadow-xl);
}

.outcome-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--deloitte-primary-executive) 0%, var(--deloitte-primary-executive-light) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--deloitte-space-6);
}

.outcome-icon i {
  font-size: var(--deloitte-text-2xl);
  color: white;
}

.outcome-title {
  font-size: var(--deloitte-text-xl);
  font-weight: 600;
  color: var(--deloitte-text-primary);
  margin-bottom: var(--deloitte-space-4);
  font-family: var(--deloitte-font-heading);
}

.outcome-description {
  font-size: var(--deloitte-text-base);
  color: var(--deloitte-text-secondary);
  line-height: var(--deloitte-leading-relaxed);
  margin-bottom: var(--deloitte-space-6);
}

.outcome-metrics {
  display: flex;
  gap: var(--deloitte-space-4);
  flex-wrap: wrap;
}

.outcome-metric {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: var(--deloitte-space-3);
  background: var(--deloitte-bg-accent);
  border-radius: 6px;
}

.outcome-metric-value {
  font-size: var(--deloitte-text-2xl);
  font-weight: 700;
  color: var(--deloitte-primary-executive);
  margin-bottom: var(--deloitte-space-1);
  font-family: var(--deloitte-font-heading);
}

.outcome-metric-label {
  font-size: var(--deloitte-text-xs);
  color: var(--deloitte-text-tertiary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ========================================
   INDUSTRY-SPECIFIC CONTENT VARIATIONS
   ======================================== */

.industry-specific-section {
  padding: var(--deloitte-section-padding-desktop) 0;
  background: var(--deloitte-bg-secondary);
}

.industry-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: var(--deloitte-space-12);
  border-bottom: 2px solid var(--deloitte-border-light);
  overflow-x: auto;
  padding-bottom: 0;
}

.industry-tab {
  background: none;
  border: none;
  padding: var(--deloitte-space-4) var(--deloitte-space-6);
  font-size: var(--deloitte-text-base);
  font-weight: 500;
  color: var(--deloitte-text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
}

.industry-tab:hover {
  color: var(--deloitte-text-primary);
}

.industry-tab.active {
  color: var(--deloitte-primary-executive);
  border-bottom-color: var(--deloitte-primary-executive);
}

.industry-content {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.industry-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.industry-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--deloitte-space-10);
  align-items: start;
}

.industry-challenges {
  background: white;
  border-radius: 12px;
  padding: var(--deloitte-space-8);
  box-shadow: var(--deloitte-shadow-md);
}

.industry-challenges h3 {
  font-size: var(--deloitte-text-2xl);
  font-weight: 600;
  color: var(--deloitte-text-primary);
  margin-bottom: var(--deloitte-space-6);
  font-family: var(--deloitte-font-heading);
}

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

.challenge-item {
  display: flex;
  align-items: flex-start;
  gap: var(--deloitte-space-3);
  margin-bottom: var(--deloitte-space-4);
  padding: var(--deloitte-space-3);
  background: var(--deloitte-bg-accent);
  border-radius: 6px;
}

.challenge-icon {
  width: 24px;
  height: 24px;
  background: var(--deloitte-primary-executive);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.challenge-icon i {
  font-size: 12px;
  color: white;
}

.challenge-text {
  font-size: var(--deloitte-text-base);
  color: var(--deloitte-text-secondary);
  line-height: var(--deloitte-leading-relaxed);
}

.industry-solutions {
  background: white;
  border-radius: 12px;
  padding: var(--deloitte-space-8);
  box-shadow: var(--deloitte-shadow-md);
}

.industry-solutions h3 {
  font-size: var(--deloitte-text-2xl);
  font-weight: 600;
  color: var(--deloitte-text-primary);
  margin-bottom: var(--deloitte-space-6);
  font-family: var(--deloitte-font-heading);
}

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

.solution-benefit {
  display: flex;
  align-items: flex-start;
  gap: var(--deloitte-space-3);
  margin-bottom: var(--deloitte-space-4);
  padding: var(--deloitte-space-3);
  background: var(--deloitte-bg-accent);
  border-radius: 6px;
}

.benefit-icon {
  width: 24px;
  height: 24px;
  background: var(--deloitte-accent-executive);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-icon i {
  font-size: 12px;
  color: white;
}

.benefit-text {
  font-size: var(--deloitte-text-base);
  color: var(--deloitte-text-secondary);
  line-height: var(--deloitte-leading-relaxed);
}

/* ========================================
   STRATEGIC CTA PLACEMENT
   ======================================== */

.strategic-cta-section {
  background: linear-gradient(135deg, var(--deloitte-primary-executive) 0%, var(--deloitte-primary-executive-dark) 100%);
  color: white;
  padding: var(--deloitte-section-padding-desktop) 0;
  position: relative;
  overflow: hidden;
}

.strategic-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-grid)"/></svg>');
  opacity: 0.3;
}

.strategic-cta-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--deloitte-space-6);
}

.strategic-cta-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--deloitte-space-12);
  align-items: center;
}

.strategic-cta-content h2 {
  font-size: var(--deloitte-text-4xl);
  font-weight: 700;
  margin-bottom: var(--deloitte-space-4);
  font-family: var(--deloitte-font-heading);
}

.strategic-cta-content p {
  font-size: var(--deloitte-text-lg);
  line-height: var(--deloitte-leading-relaxed);
  margin-bottom: var(--deloitte-space-6);
  opacity: 0.95;
}

.strategic-cta-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--deloitte-space-4);
  margin-bottom: var(--deloitte-space-8);
}

.strategic-cta-feature {
  display: flex;
  align-items: center;
  gap: var(--deloitte-space-3);
}

.strategic-cta-feature i {
  color: var(--deloitte-accent-light);
  font-size: var(--deloitte-text-base);
}

.strategic-cta-feature span {
  font-size: var(--deloitte-text-base);
  font-weight: 500;
}

.strategic-cta-actions {
  display: flex;
  flex-direction: column;
  gap: var(--deloitte-space-4);
}

.strategic-cta-primary {
  background: white;
  color: var(--deloitte-primary-executive);
  border: none;
  padding: var(--deloitte-space-4) var(--deloitte-space-8);
  border-radius: 8px;
  font-size: var(--deloitte-text-lg);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  display: inline-block;
}

.strategic-cta-primary:hover {
  background: var(--deloitte-bg-accent);
  transform: translateY(-2px);
  box-shadow: var(--deloitte-shadow-xl);
}

.strategic-cta-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.8);
  padding: var(--deloitte-space-3) var(--deloitte-space-6);
  border-radius: 8px;
  font-size: var(--deloitte-text-base);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  display: inline-block;
}

.strategic-cta-secondary:hover {
  background: white;
  color: var(--deloitte-primary-executive);
  border-color: white;
}

/* ========================================
   CONVERSION PATH OPTIMIZATION
   ======================================== */

.conversion-path-section {
  padding: var(--deloitte-section-padding-desktop) 0;
  background: var(--deloitte-bg-primary);
}

.conversion-path-header {
  text-align: center;
  margin-bottom: var(--deloitte-space-16);
}

.conversion-path-title {
  font-size: var(--deloitte-text-4xl);
  font-weight: 700;
  color: var(--deloitte-text-primary);
  margin-bottom: var(--deloitte-space-4);
  font-family: var(--deloitte-font-heading);
}

.conversion-path-subtitle {
  font-size: var(--deloitte-text-xl);
  color: var(--deloitte-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: var(--deloitte-leading-relaxed);
}

.conversion-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--deloitte-space-8);
  position: relative;
}

.conversion-step {
  background: white;
  border-radius: 12px;
  padding: var(--deloitte-space-8);
  box-shadow: var(--deloitte-shadow-md);
  border: 1px solid var(--deloitte-border-light);
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.conversion-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--deloitte-shadow-xl);
}

.conversion-step-number {
  width: 48px;
  height: 48px;
  background: var(--deloitte-primary-executive);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--deloitte-text-xl);
  font-weight: 700;
  margin: 0 auto var(--deloitte-space-6) auto;
  font-family: var(--deloitte-font-heading);
}

.conversion-step-title {
  font-size: var(--deloitte-text-xl);
  font-weight: 600;
  color: var(--deloitte-text-primary);
  margin-bottom: var(--deloitte-space-4);
  font-family: var(--deloitte-font-heading);
}

.conversion-step-description {
  font-size: var(--deloitte-text-base);
  color: var(--deloitte-text-secondary);
  line-height: var(--deloitte-leading-relaxed);
  margin-bottom: var(--deloitte-space-6);
}

.conversion-step-cta {
  background: var(--deloitte-primary-executive);
  color: white;
  border: none;
  padding: var(--deloitte-space-3) var(--deloitte-space-6);
  border-radius: 6px;
  font-size: var(--deloitte-text-base);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.conversion-step-cta:hover {
  background: var(--deloitte-primary-executive-dark);
  transform: translateY(-1px);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
  .roi-calculator-grid {
    grid-template-columns: 1fr;
    gap: var(--deloitte-space-8);
  }
  
  .roi-results-panel {
    position: static;
  }
  
  .industry-content-grid {
    grid-template-columns: 1fr;
    gap: var(--deloitte-space-6);
  }
  
  .strategic-cta-grid {
    grid-template-columns: 1fr;
    gap: var(--deloitte-space-8);
    text-align: center;
  }
  
  .strategic-cta-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .roi-calculator-section,
  .business-outcomes-section,
  .industry-specific-section,
  .strategic-cta-section,
  .conversion-path-section {
    padding: var(--deloitte-section-padding-mobile) 0;
  }
  
  .roi-calculator-title,
  .business-outcomes-title,
  .strategic-cta-content h2,
  .conversion-path-title {
    font-size: var(--deloitte-text-3xl);
  }
  
  .outcomes-grid {
    grid-template-columns: 1fr;
    gap: var(--deloitte-space-6);
  }
  
  .outcome-metrics {
    flex-direction: column;
    gap: var(--deloitte-space-3);
  }
  
  .industry-tabs {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  
  .conversion-steps {
    grid-template-columns: 1fr;
    gap: var(--deloitte-space-6);
  }
  
  .strategic-cta-actions {
    gap: var(--deloitte-space-3);
  }
}

@media (max-width: 480px) {
  .roi-input-panel,
  .roi-results-panel,
  .outcome-card,
  .industry-challenges,
  .industry-solutions,
  .conversion-step {
    padding: var(--deloitte-space-6);
  }
  
  .roi-metric-grid {
    gap: var(--deloitte-space-3);
  }
  
  .outcome-icon {
    width: 48px;
    height: 48px;
  }
  
  .outcome-icon i {
    font-size: var(--deloitte-text-xl);
  }
}

/* ========================================
   ACCESSIBILITY ENHANCEMENTS
   ======================================== */

.roi-input-field:focus,
.roi-slider:focus,
.industry-tab:focus,
.strategic-cta-primary:focus,
.strategic-cta-secondary:focus,
.conversion-step-cta:focus {
  outline: 2px solid var(--deloitte-accent-executive);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .outcome-card,
  .conversion-step,
  .strategic-cta-primary,
  .strategic-cta-secondary,
  .conversion-step-cta {
    transition: none;
  }
  
  .outcome-card:hover,
  .conversion-step:hover {
    transform: none;
  }
  
  .industry-content {
    animation: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .roi-input-field,
  .outcome-card,
  .industry-challenges,
  .industry-solutions,
  .conversion-step {
    border: 2px solid var(--deloitte-text-primary);
  }
  
  .roi-calculator-section,
  .business-outcomes-section,
  .industry-specific-section,
  .conversion-path-section {
    background: white;
  }
  
  .strategic-cta-section {
    background: var(--deloitte-text-primary);
  }
}