 /* ROI Calculator Section Styles */
  .roi-calculator-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
  }

  /* Content Styles */
  .roi-content {
    padding: 2rem;
  }

  .roi-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }

  .roi-subheading {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
  }

  /* Benefits Section */
  .roi-benefits {
    background: #f3f4f6;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
  }

  .benefit-item {
    transition: transform 0.3s ease;
  }

  .benefit-item:hover {
    transform: translateX(8px);
  }

  .benefit-icon {
    color: #3b82f6;
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }

  .benefit-text strong {
    display: block;
    color: #1f2937;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
  }

  .benefit-text .text-muted {
    color: #9ca3af !important;
  }

  /* CTA Button */
  .roi-cta-button {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border: none;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  }

  .roi-cta-button:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    color: #fff;
    text-decoration: none;
  }

  .roi-cta-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
  }

  /* Visual Box */
  .roi-visual-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.2);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .roi-card-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
  }

  .roi-stat {
    margin-bottom: 2rem;
  }

  .roi-stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .roi-stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
  }

  .roi-stat-separator {
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    margin: 1.5rem auto;
  }

  /* Decorative Elements */
  .roi-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
  }

  .roi-deco-1 {
    width: 300px;
    height: 300px;
    background: #fff;
    top: -100px;
    right: -100px;
  }

  .roi-deco-2 {
    width: 200px;
    height: 200px;
    background: #fff;
    bottom: -80px;
    left: -80px;
  }

  /* Responsive Design */
  @media (max-width: 991.98px) {
    .roi-heading {
      font-size: 2rem;
    }

    .roi-subheading {
      font-size: 1rem;
    }

    .roi-content {
      padding: 1rem;
    }

    .roi-visual-box {
      padding: 2rem 1.5rem;
      min-height: auto;
      margin-top: 2rem;
    }

    .roi-stat-number {
      font-size: 2.5rem;
    }
  }

  @media (max-width: 576px) {
    .roi-heading {
      font-size: 1.75rem;
    }

    .roi-subheading {
      font-size: 0.95rem;
    }

    .roi-benefits {
      padding: 1rem;
    }

    .benefit-item {
      margin-bottom: 1.25rem !important;
    }

    .benefit-icon {
      min-width: 24px;
    }

    .roi-cta-button {
      width: 100%;
      padding: 0.75rem 1.5rem;
      font-size: 1rem;
    }

    .roi-visual-box {
      padding: 1.5rem;
    }

    .roi-stat-number {
      font-size: 2rem;
    }

    .roi-card-inner {
      text-align: center;
    }
  }

  /* Dark Mode Support */
  @media (prefers-color-scheme: dark) {
    .roi-calculator-section {
      background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    }

    .roi-heading {
      color: #f3f4f6;
    }

    .roi-subheading {
      color: #d1d5db;
    }

    .roi-benefits {
      background: #2d3748;
      border-left-color: #60a5fa;
    }

    .benefit-text strong {
      color: #f3f4f6;
    }

    .benefit-text .text-muted {
      color: #9ca3af !important;
    }
  }

  /* Utility Classes for Padding */
  .py-md-6 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  @media (min-width: 768px) {
    .py-md-6 {
      padding-top: 5rem;
      padding-bottom: 5rem;
    }
  }
   /* Operational Savings Section Styles */
  .operational-savings-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
  }

  /* Content Styles */
  .savings-content {
    padding: 2rem;
  }

  .savings-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }

  .savings-subheading {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
  }

  /* Outcomes Section */
  .savings-outcomes {
    background: #f3f4f6;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #10b981;
  }

  .outcome-item {
    transition: transform 0.3s ease;
  }

  .outcome-item:hover {
    transform: translateX(8px);
  }

  .outcome-icon {
    color: #10b981;
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }

  .outcome-text strong {
    display: block;
    color: #1f2937;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
  }

  .outcome-text .text-muted {
    color: #9ca3af !important;
  }

  /* CTA Button */
  .savings-cta-button {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
  }

  .savings-cta-button:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    color: #fff;
    text-decoration: none;
  }

  .savings-cta-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(16, 185, 129, 0.3);
  }

  /* Trust Badge */
  .savings-trust {
    display: flex;
    align-items: center;
  }

  .savings-trust svg {
    color: #10b981;
  }

  /* Visual Box */
  .savings-visual-box {
    background: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);
    border-radius: 16px;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(236, 72, 153, 0.2);
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .savings-card-inner {
    position: relative;
    z-index: 2;
    width: 100%;
  }

  /* Comparison Section */
  .savings-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
  }

  .comparison-item {
    text-align: center;
  }

  .comparison-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #fff;
  }

  .comparison-icon.chaos {
    background: rgba(255, 255, 255, 0.2);
  }

  .comparison-icon.profit {
    background: rgba(255, 255, 255, 0.2);
  }

  .comparison-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .comparison-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .item-tag {
    font-size: 0.75rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.4rem 0.75rem;
    border-radius: 20px;
    font-weight: 500;
    display: inline-block;
  }

  .item-tag.success {
    background: rgba(16, 185, 129, 0.3);
    color: #fff;
  }

  .comparison-arrow {
    display: flex;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
  }

  /* Metrics Section */
  .savings-metrics {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 1rem;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
  }

  .metric-item {
    padding: 0 0.5rem;
  }

  .metric-value {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .metric-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
  }

  .metric-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
  }

  /* Decorative Elements */
  .savings-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
  }

  .savings-deco-1 {
    width: 300px;
    height: 300px;
    background: #fff;
    top: -100px;
    right: -100px;
  }

  .savings-deco-2 {
    width: 200px;
    height: 200px;
    background: #fff;
    bottom: -80px;
    left: -80px;
  }

  /* Responsive Design */
  @media (max-width: 991.98px) {
    .savings-heading {
      font-size: 2rem;
    }

    .savings-subheading {
      font-size: 1rem;
    }

    .savings-content {
      padding: 1rem;
    }

    .savings-visual-box {
      padding: 2rem 1.5rem;
      min-height: auto;
      margin-top: 2rem;
    }

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

    .comparison-arrow {
      transform: rotate(90deg);
    }

    .savings-metrics {
      grid-template-columns: 1fr auto 1fr auto 1fr;
    }

    .metric-value {
      font-size: 1.5rem;
    }
  }

  @media (max-width: 576px) {
    .savings-heading {
      font-size: 1.75rem;
    }

    .savings-subheading {
      font-size: 0.95rem;
    }

    .savings-outcomes {
      padding: 1rem;
    }

    .outcome-item {
      margin-bottom: 1.25rem !important;
    }

    .outcome-icon {
      min-width: 24px;
    }

    .savings-cta-button {
      width: 100%;
      padding: 0.75rem 1.5rem;
      font-size: 1rem;
    }

    .savings-visual-box {
      padding: 1.5rem;
    }

    .savings-comparison {
      gap: 0.75rem;
    }

    .comparison-icon {
      width: 50px;
      height: 50px;
    }

    .comparison-icon svg {
      width: 28px;
      height: 28px;
    }

    .comparison-label {
      font-size: 0.8rem;
    }

    .item-tag {
      font-size: 0.7rem;
      padding: 0.3rem 0.6rem;
    }

    .savings-metrics {
      grid-template-columns: 1fr;
      gap: 1.5rem;
      padding: 1rem;
    }

    .metric-divider {
      display: none;
    }

    .metric-value {
      font-size: 1.75rem;
    }

    .metric-label {
      font-size: 0.75rem;
    }

    .savings-trust {
      flex-direction: column;
      font-size: 0.8rem;
    }
  }

  /* Dark Mode Support */
  @media (prefers-color-scheme: dark) {
    .operational-savings-section {
      background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    }

    .savings-heading {
      color: #f3f4f6;
    }

    .savings-subheading {
      color: #d1d5db;
    }

    .savings-outcomes {
      background: #2d3748;
      border-left-color: #10b981;
    }

    .outcome-text strong {
      color: #f3f4f6;
    }

    .outcome-text .text-muted {
      color: #9ca3af !important;
    }
  }

 /* Educational Transformation Section */
  .edu-transformation-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
  }

  /* Content Styles */
  .transformation-content {
    padding: 2rem;
  }

  .transformation-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }

  .transformation-subheading {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
  }

  /* Impacts Section */
  .transformation-impacts {
    background: #fef3c7;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #d97706;
  }

  .impact-item {
    transition: transform 0.3s ease;
  }

  .impact-item:hover {
    transform: translateX(8px);
  }

  .impact-icon {
    color: #d97706;
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }

  .impact-text strong {
    display: block;
    color: #1f2937;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
  }

  .impact-text .text-muted {
    color: #9ca3af !important;
  }

  /* CTA Button */
  .transformation-cta-button {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    border: none;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
  }

  .transformation-cta-button:hover {
    background: linear-gradient(135deg, #b45309 0%, #92400e 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.4);
    color: #fff;
    text-decoration: none;
  }

  .transformation-cta-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(217, 119, 6, 0.3);
  }

  /* Trust Badge */
  .transformation-trust {
    display: flex;
    align-items: center;
  }

  .transformation-trust svg {
    color: #d97706;
  }

  /* Visual Box */
  .transformation-visual-box {
    background: linear-gradient(135deg, #5b21b6 0%, #7c3aed 100%);
    border-radius: 16px;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(124, 58, 237, 0.2);
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .transformation-card-inner {
    position: relative;
    z-index: 2;
    width: 100%;
  }

  /* Transformation Flow */
  .transformation-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2.5rem;
  }

  .flow-stage {
    text-align: center;
  }

  .before-stage {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
  }

  .after-stage {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
  }

  .stage-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #fff;
  }

  .before-icon {
    background: rgba(239, 68, 68, 0.3);
  }

  .after-icon {
    background: rgba(34, 197, 94, 0.3);
  }

  .stage-title {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
  }

  .stage-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .stage-item {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
  }

  .stage-item.success {
    color: #86efac;
  }

  /* Flow Arrow */
  .flow-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
  }

  .arrow-line {
    width: 2px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    margin-bottom: 8px;
  }

  .arrow-icon {
    color: rgba(255, 255, 255, 0.7);
  }

  /* Transformation Metrics */
  .transformation-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    align-items: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
  }

  .transformation-metric {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .metric-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #fff;
    flex-shrink: 0;
  }

  .cost-icon {
    background: rgba(16, 185, 129, 0.3);
  }

  .enrollment-icon {
    background: rgba(59, 130, 246, 0.3);
  }

  .time-icon {
    background: rgba(249, 115, 22, 0.3);
  }

  .metric-info {
    flex: 1;
  }

  .metric-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
    font-weight: 600;
  }

  .metric-amount {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
  }

  .transformation-metric-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
  }

  /* Decorative Elements */
  .transformation-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
  }

  .transformation-deco-1 {
    width: 300px;
    height: 300px;
    background: #fff;
    top: -100px;
    right: -100px;
  }

  .transformation-deco-2 {
    width: 200px;
    height: 200px;
    background: #fff;
    bottom: -80px;
    left: -80px;
  }

  /* ROI Example Box */
  .roi-example-box {
    background: linear-gradient(135deg, #f0f9ff 0%, #f0f4ff 100%);
    border: 2px solid #bfdbfe;
    border-radius: 16px;
    padding: 2rem;
  }

  .example-header {
    text-align: center;
    margin-bottom: 2rem;
  }

  .example-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
  }

  .example-subtitle {
    color: #6b7280;
    font-size: 0.95rem;
  }

  .example-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    align-items: center;
  }

  .example-item {
    text-align: center;
    padding: 1.5rem;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
  }

  .example-item:hover {
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
  }

  .example-item.highlight {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border: none;
    color: #fff;
  }

  .example-label {
    font-size: 0.8rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    font-weight: 600;
  }

  .example-item.highlight .example-label {
    color: rgba(255, 255, 255, 0.8);
  }

  .example-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1f2937;
    line-height: 1;
    margin-bottom: 0.25rem;
  }

  .example-item.highlight .example-value {
    color: #fff;
  }

  .example-detail {
    font-size: 0.8rem;
    color: #9ca3af;
  }

  .example-item.highlight .example-detail {
    color: rgba(255, 255, 255, 0.7);
  }

  .example-divider {
    width: 1px;
    height: 80px;
    background: #e5e7eb;
  }

  /* Responsive Design */
  @media (max-width: 991.98px) {
    .transformation-heading {
      font-size: 2rem;
    }

    .transformation-subheading {
      font-size: 1rem;
    }

    .transformation-content {
      padding: 1rem;
    }

    .transformation-visual-box {
      margin-top: 2rem;
    }

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

    .flow-arrow {
      transform: rotate(90deg);
      margin: 0.5rem 0;
    }

    .arrow-line {
      width: 40px;
      height: 2px;
      margin: 0 8px 0 0;
    }

    .transformation-metrics {
      grid-template-columns: repeat(2, 1fr);
    }

    .example-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 576px) {
    .transformation-heading {
      font-size: 1.75rem;
    }

    .transformation-subheading {
      font-size: 0.95rem;
    }

    .transformation-content {
      padding: 1rem;
    }

    .transformation-impacts {
      padding: 1rem;
    }

    .impact-item {
      margin-bottom: 1.25rem !important;
    }

    .impact-icon {
      min-width: 24px;
    }

    .transformation-cta-button {
      width: 100%;
      padding: 0.75rem 1.5rem;
      font-size: 1rem;
    }

    .transformation-visual-box {
      padding: 1.5rem;
    }

    .stage-icon {
      width: 56px;
      height: 56px;
    }

    .stage-icon svg {
      width: 32px;
      height: 32px;
    }

    .transformation-metrics {
      grid-template-columns: 1fr;
      gap: 1.5rem;
      padding: 1rem;
    }

    .transformation-metric-divider {
      display: none;
    }

    .metric-icon {
      width: 40px;
      height: 40px;
    }

    .metric-label {
      font-size: 0.7rem;
    }

    .metric-amount {
      font-size: 1.1rem;
    }

    .transformation-flow {
      gap: 0.75rem;
    }

    .flow-stage {
      padding: 1rem;
    }

    .stage-title {
      font-size: 0.9rem;
    }

    .stage-item {
      font-size: 0.75rem;
    }

    .roi-example-box {
      padding: 1.5rem;
    }

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

    .example-divider {
      display: none;
    }

    .example-item {
      padding: 1rem;
    }

    .example-label {
      font-size: 0.75rem;
    }

    .example-value {
      font-size: 1.5rem;
    }

    .transformation-trust {
      flex-direction: column;
      font-size: 0.8rem;
    }
  }

  /* Dark Mode Support */
  @media (prefers-color-scheme: dark) {
    .edu-transformation-section {
      background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    }

    .transformation-heading {
      color: #f3f4f6;
    }

    .transformation-subheading {
      color: #d1d5db;
    }

    .transformation-impacts {
      background: rgba(217, 119, 6, 0.15);
      border-left-color: #f59e0b;
    }

    .impact-text strong {
      color: #f3f4f6;
    }

    .impact-text .text-muted {
      color: #9ca3af !important;
    }

    .roi-example-box {
      background: linear-gradient(135deg, #1e3a8a 0%, #1e293b 100%);
      border-color: #1e40af;
    }

    .example-item {
      background: #1f2937;
      border-color: #374151;
    }

    .example-label {
      color: #d1d5db;
    }

    .example-value {
      color: #f3f4f6;
    }

    .example-detail {
      color: #9ca3af;
    }
  }

  /* Utility Classes */
  .py-md-6 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  @media (min-width: 768px) {
    .py-md-6 {
      padding-top: 5rem;
      padding-bottom: 5rem;
    }
  }
  /* Project ROI Section */
  .project-roi-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
  }

  /* Content Styles */
  .project-roi-content {
    padding: 2rem;
  }

  .project-roi-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }

  .project-roi-subheading {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
  }

  /* Cost Drivers */
  .project-cost-drivers {
    background: #f0fdf4;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #22c55e;
  }

  .cost-driver {
    transition: transform 0.3s ease;
  }

  .cost-driver:hover {
    transform: translateX(8px);
  }

  .cost-icon {
    color: #22c55e;
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }

  .cost-text strong {
    display: block;
    color: #1f2937;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
  }

  .cost-text .text-muted {
    color: #9ca3af !important;
  }

  /* CTA Button */
  .project-roi-cta-button {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border: none;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
  }

  .project-roi-cta-button:hover {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
    color: #fff;
    text-decoration: none;
  }

  .project-roi-cta-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(34, 197, 94, 0.3);
  }

  /* Credibility */
  .project-roi-credibility {
    display: flex;
    align-items: center;
  }

  .project-roi-credibility svg {
    color: #22c55e;
  }

  /* Visual Box */
  .project-roi-visual-box {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    border-radius: 16px;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(5, 150, 105, 0.2);
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .project-roi-card-inner {
    position: relative;
    z-index: 2;
    width: 100%;
  }

  /* Capacity Visual */
  .capacity-visual {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
  }

  .capacity-header {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 1rem;
  }

  .capacity-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
  }

  .capacity-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
  }

  .capacity-state {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
  }

  .capacity-state.after {
    background: rgba(255, 255, 255, 0.15);
  }

  .state-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-weight: 600;
  }

  .state-value {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.75rem;
  }

  .state-cost,
  .state-efficiency {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-bottom: 0.25rem;
  }

  /* Growth Arrow */
  .capacity-growth-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }

  .arrow-animation {
    color: rgba(255, 255, 255, 0.8);
    animation: slideDown 2s infinite;
  }

  @keyframes slideDown {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.6; }
  }

  /* Project Metrics */
  .project-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    align-items: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
  }

  .project-metric {
    text-align: center;
  }

  .metric-value {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.5rem;
  }

  .metric-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
  }

  .metric-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
  }

  /* Decorative Elements */
  .project-roi-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
  }

  .project-roi-deco-1 {
    width: 300px;
    height: 300px;
    background: #fff;
    top: -100px;
    right: -100px;
  }

  .project-roi-deco-2 {
    width: 200px;
    height: 200px;
    background: #fff;
    bottom: -80px;
    left: -80px;
  }

  /* Project Math Box */
  .project-math-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fef9e7 100%);
    border: 2px solid #fcd34d;
    border-radius: 16px;
    padding: 2.5rem;
  }

  .math-header {
    text-align: center;
    margin-bottom: 2rem;
  }

  .math-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
  }

  .math-subtitle {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
  }

  .math-breakdown {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 12px;
  }

  .breakdown-item {
    text-align: center;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 8px;
  }

  .breakdown-item.highlight {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  }

  .breakdown-label {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    font-weight: 600;
  }

  .breakdown-item.highlight .breakdown-label {
    color: rgba(255, 255, 255, 0.8);
  }

  .breakdown-value {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
  }

  .breakdown-item.highlight .breakdown-value {
    color: #fff;
  }

  .breakdown-plus,
  .breakdown-equals {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6b7280;
  }

  .math-benefit {
    background: #f0fdf4;
    border: 2px solid #22c55e;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
  }

  .benefit-icon {
    color: #22c55e;
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }

  .benefit-message {
    color: #1f2937;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .benefit-message strong {
    color: #15803d;
  }

  /* Responsive Design */
  @media (max-width: 991.98px) {
    .project-roi-heading {
      font-size: 2rem;
    }

    .project-roi-subheading {
      font-size: 1rem;
    }

    .project-roi-content {
      padding: 1rem;
    }

    .project-roi-visual-box {
      margin-top: 2rem;
      padding: 2rem 1.5rem;
    }

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

    .capacity-growth-arrow {
      transform: rotate(90deg);
    }

    .project-metrics {
      grid-template-columns: repeat(3, 1fr);
    }

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

    .breakdown-plus,
    .breakdown-equals {
      display: none;
    }
  }

  @media (max-width: 576px) {
    .project-roi-heading {
      font-size: 1.75rem;
    }

    .project-roi-subheading {
      font-size: 0.95rem;
    }

    .project-roi-content {
      padding: 1rem;
    }

    .project-cost-drivers {
      padding: 1rem;
    }

    .cost-driver {
      margin-bottom: 1.25rem !important;
    }

    .cost-icon {
      min-width: 24px;
    }

    .project-roi-cta-button {
      width: 100%;
      padding: 0.75rem 1.5rem;
      font-size: 1rem;
    }

    .project-roi-visual-box {
      padding: 1.5rem;
    }

    .capacity-state {
      padding: 1rem;
    }

    .state-value {
      font-size: 1.1rem;
    }

    .state-cost,
    .state-efficiency {
      font-size: 0.75rem;
    }

    .project-metrics {
      grid-template-columns: 1fr;
      gap: 1.5rem;
      padding: 1rem;
    }

    .metric-divider {
      display: none;
    }

    .metric-value {
      font-size: 1.5rem;
    }

    .project-math-box {
      padding: 1.5rem;
    }

    .math-title {
      font-size: 1.35rem;
    }

    .math-benefit {
      flex-direction: column;
    }

    .project-roi-credibility {
      flex-direction: column;
      font-size: 0.8rem;
    }
  }

  /* Dark Mode Support */
  @media (prefers-color-scheme: dark) {
    .project-roi-section {
      background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    }

    .project-roi-heading {
      color: #f3f4f6;
    }

    .project-roi-subheading {
      color: #d1d5db;
    }

    .project-cost-drivers {
      background: rgba(34, 197, 94, 0.1);
      border-left-color: #86efac;
    }

    .cost-text strong {
      color: #f3f4f6;
    }

    .cost-text .text-muted {
      color: #9ca3af !important;
    }

    .project-math-box {
      background: linear-gradient(135deg, #78350f 0%, #5a4a3a 100%);
      border-color: #b45309;
    }

    .math-title {
      color: #f3f4f6;
    }

    .math-subtitle {
      color: #d1d5db;
    }

    .breakdown-item {
      background: #1f2937;
    }

    .breakdown-label {
      color: #d1d5db;
    }

    .breakdown-value {
      color: #f3f4f6;
    }
  }
  /* CRM ROI Section Styles */
  .crm-roi-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
  }

  /* Content Styles */
  .crm-roi-content {
    padding: 2rem;
  }

  .crm-roi-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }

  .crm-roi-subheading {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
  }

  /* Decision Points */
  .crm-decision-points {
    background: #eff6ff;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
  }

  .decision-point {
    transition: transform 0.3s ease;
  }

  .decision-point:hover {
    transform: translateX(8px);
  }

  .decision-marker {
    font-size: 1.25rem;
    font-weight: 700;
    color: #3b82f6;
    min-width: 32px;
    text-align: center;
  }

  .decision-text strong {
    display: block;
    color: #1f2937;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
  }

  .decision-text .text-muted {
    color: #9ca3af !important;
  }

  /* CTA Button */
  .crm-roi-cta-button {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border: none;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  }

  .crm-roi-cta-button:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    color: #fff;
    text-decoration: none;
  }

  .crm-roi-cta-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
  }

  /* Value Statement */
  .crm-roi-value {
    display: flex;
    align-items: center;
  }

  .crm-roi-value svg {
    color: #3b82f6;
  }

  /* Visual Box */
  .crm-roi-visual-box {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 16px;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.3);
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .crm-roi-card-inner {
    position: relative;
    z-index: 2;
    width: 100%;
  }

  /* ROI Insight */
  .roi-insight {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
  }

  .insight-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-weight: 600;
  }

  .insight-content {
    display: flex;
    justify-content: center;
  }

  .insight-row {
    display: flex;
    align-items: center;
    gap: 2rem;
  }

  .insight-item {
    text-align: center;
  }

  .insight-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #60a5fa;
    line-height: 1;
    margin-bottom: 0.5rem;
  }

  .insight-label-small {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
  }

  .insight-divider {
    width: 1px;
    height: 60px;
    background: rgba(59, 130, 246, 0.3);
  }

  /* Impact Areas */
  .impact-areas {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .impact-area-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: all 0.3s ease;
  }

  .impact-area-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
  }

  .impact-area-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    flex-shrink: 0;
  }

  .impact-area-icon.sales {
    background: rgba(34, 197, 94, 0.3);
    color: #86efac;
  }

  .impact-area-icon.cost {
    background: rgba(59, 130, 246, 0.3);
    color: #93c5fd;
  }

  .impact-area-icon.time {
    background: rgba(249, 115, 22, 0.3);
    color: #fed7aa;
  }

  .impact-area-icon.revenue {
    background: rgba(168, 85, 247, 0.3);
    color: #d8b4fe;
  }

  .impact-area-content {
    flex: 1;
  }

  .impact-area-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #f3f4f6;
    margin-bottom: 0.25rem;
  }

  .impact-area-metric {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
  }

  /* Confidence Badge */
  .roi-confidence-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .roi-confidence-badge svg {
    color: #10b981;
    flex-shrink: 0;
  }

  .roi-confidence-badge span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
  }

  /* Decorative Elements */
  .crm-roi-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    z-index: 1;
  }

  .crm-roi-deco-1 {
    width: 300px;
    height: 300px;
    background: #fff;
    top: -100px;
    right: -100px;
  }

  .crm-roi-deco-2 {
    width: 200px;
    height: 200px;
    background: #fff;
    bottom: -80px;
    left: -80px;
  }

  /* Numbers Matter Box */
  .numbers-matter-box {
    background: linear-gradient(135deg, #f3f4f6 0%, #f9fafb 100%);
    border-radius: 16px;
    padding: 2.5rem;
    border: 2px solid #e5e7eb;
  }

  .numbers-matter-header {
    text-align: center;
    margin-bottom: 2.5rem;
  }

  .numbers-matter-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
  }

  .numbers-matter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .matter-item {
    text-align: center;
  }

  .matter-item .matter-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
  }

  .matter-item strong {
    display: block;
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
  }

  .matter-item p {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
  }

  /* Responsive Design */
  @media (max-width: 991.98px) {
    .crm-roi-heading {
      font-size: 2rem;
    }

    .crm-roi-subheading {
      font-size: 1rem;
    }

    .crm-roi-content {
      padding: 1rem;
    }

    .crm-roi-visual-box {
      margin-top: 2rem;
      padding: 2rem 1.5rem;
    }

    .impact-areas {
      grid-template-columns: repeat(2, 1fr);
    }

    .insight-row {
      gap: 1.5rem;
    }

    .insight-value {
      font-size: 2rem;
    }

    .numbers-matter-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }
  }

  @media (max-width: 576px) {
    .crm-roi-heading {
      font-size: 1.75rem;
    }

    .crm-roi-subheading {
      font-size: 0.95rem;
    }

    .crm-roi-content {
      padding: 1rem;
    }

    .crm-decision-points {
      padding: 1rem;
    }

    .decision-point {
      margin-bottom: 1.25rem !important;
    }

    .decision-marker {
      font-size: 1.1rem;
    }

    .crm-roi-cta-button {
      width: 100%;
      padding: 0.75rem 1.5rem;
      font-size: 1rem;
    }

    .crm-roi-visual-box {
      padding: 1.5rem;
    }

    .roi-insight {
      padding: 1rem;
    }

    .insight-row {
      flex-direction: column;
      gap: 1rem;
    }

    .insight-divider {
      display: none;
    }

    .insight-value {
      font-size: 1.75rem;
    }

    .impact-areas {
      grid-template-columns: 1fr;
      gap: 0.75rem;
    }

    .impact-area-card {
      padding: 1rem;
    }

    .impact-area-icon {
      width: 36px;
      height: 36px;
    }

    .impact-area-icon svg {
      width: 20px;
      height: 20px;
    }

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

    .numbers-matter-box {
      padding: 1.5rem;
    }

    .numbers-matter-title {
      font-size: 1.35rem;
    }

    .matter-item .matter-icon {
      width: 40px;
      height: 40px;
    }

    .roi-confidence-badge {
      flex-wrap: wrap;
      font-size: 0.8rem;
    }

    .crm-roi-value {
      flex-direction: column;
      font-size: 0.8rem;
    }
  }

  /* Dark Mode Support */
  @media (prefers-color-scheme: dark) {
    .crm-roi-section {
      background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    }

    .crm-roi-heading {
      color: #f3f4f6;
    }

    .crm-roi-subheading {
      color: #d1d5db;
    }

    .crm-decision-points {
      background: rgba(59, 130, 246, 0.1);
      border-left-color: #60a5fa;
    }

    .decision-text strong {
      color: #f3f4f6;
    }

    .decision-text .text-muted {
      color: #9ca3af !important;
    }

    .numbers-matter-box {
      background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
      border-color: #374151;
    }

    .numbers-matter-title {
      color: #f3f4f6;
    }

    .matter-item strong {
      color: #f3f4f6;
    }

    .matter-item p {
      color: #d1d5db;
    }
  }
/* LMS page */
 .roi-validation-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
  }

  /* Content Styles */
  .validation-content {
    padding: 2rem;
  }

  .validation-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }

  .validation-subheading {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
  }

  /* Values List */
  .validation-values {
    background: #f0fdf4;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #16a34a;
  }

  .value-item {
    transition: transform 0.3s ease;
  }

  .value-item:hover {
    transform: translateX(8px);
  }

  .value-checkbox {
    color: #16a34a;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    background: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    justify-content: center;
  }

  .value-text strong {
    display: block;
    color: #1f2937;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
  }

  .value-text .text-muted {
    color: #9ca3af !important;
  }

  /* CTA Button */
  .validation-cta-button {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    border: none;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
  }

  .validation-cta-button:hover {
    background: linear-gradient(135deg, #15803d 0%, #166534 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.4);
    color: #fff;
    text-decoration: none;
  }

  .validation-cta-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(22, 163, 74, 0.3);
  }

  /* Urgency Element */
  .validation-urgency {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .urgency-badge {
    background: #fef3c7;
    color: #92400e;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
  }

  /* Visual Box */
  .validation-visual-box {
    background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(6, 182, 212, 0.2);
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .validation-card-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    width: 100%;
    position: relative;
    z-index: 2;
  }

  /* Benefit Cards */
  .benefit-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
  }

  .benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  }

  .benefit-card-primary {
    border-color: #16a34a;
  }

  .benefit-card-primary .benefit-card-icon {
    color: #16a34a;
  }

  .benefit-card-accent {
    border-color: #0891b2;
  }

  .benefit-card-accent .benefit-card-icon {
    color: #0891b2;
  }

  .benefit-card-secondary {
    border-color: #d97706;
  }

  .benefit-card-secondary .benefit-card-icon {
    color: #d97706;
  }

  .benefit-card-success {
    border-color: #7c3aed;
  }

  .benefit-card-success .benefit-card-icon {
    color: #7c3aed;
  }

  .benefit-card-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }

  .benefit-card-text {
    flex: 1;
  }

  .benefit-card-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
  }

  .benefit-card-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1f2937;
    line-height: 1;
    margin-bottom: 0.25rem;
  }

  .benefit-card-desc {
    font-size: 0.8rem;
    color: #9ca3af;
    line-height: 1.4;
  }

  /* Decorative Elements */
  .validation-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    z-index: 1;
  }

  .validation-deco-1 {
    width: 300px;
    height: 300px;
    background: #fff;
    top: -100px;
    right: -100px;
  }

  .validation-deco-2 {
    width: 200px;
    height: 200px;
    background: #fff;
    bottom: -80px;
    left: -80px;
  }

  /* Comparison Insight */
  .comparison-insight {
    background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 100%);
    border: 2px solid #bfdbfe;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
  }

  .insight-icon {
    color: #0891b2;
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }

  .insight-content {
    color: #1e40af;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .insight-content strong {
    color: #0369a1;
  }

  /* Responsive Design */
  @media (max-width: 991.98px) {
    .validation-heading {
      font-size: 2rem;
    }

    .validation-subheading {
      font-size: 1rem;
    }

    .validation-content {
      padding: 1rem;
    }

    .validation-visual-box {
      margin-top: 2rem;
    }

    .benefit-card {
      padding: 1.25rem;
    }

    .benefit-card-value {
      font-size: 1.5rem;
    }
  }

  @media (max-width: 576px) {
    .validation-heading {
      font-size: 1.75rem;
    }

    .validation-subheading {
      font-size: 0.95rem;
    }

    .validation-content {
      padding: 1rem;
    }

    .validation-values {
      padding: 1rem;
    }

    .value-item {
      margin-bottom: 1.25rem !important;
    }

    .value-checkbox {
      width: 28px;
      height: 28px;
      min-width: 28px;
    }

    .value-checkbox svg {
      width: 16px;
      height: 16px;
    }

    .validation-cta-button {
      width: 100%;
      padding: 0.75rem 1.5rem;
      font-size: 1rem;
    }

    .validation-card-inner {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .benefit-card {
      padding: 1rem;
    }

    .benefit-card-icon {
      width: 28px;
      height: 28px;
    }

    .benefit-card-icon svg {
      width: 24px;
      height: 24px;
    }

    .benefit-card-label {
      font-size: 0.75rem;
    }

    .benefit-card-value {
      font-size: 1.35rem;
    }

    .benefit-card-desc {
      font-size: 0.75rem;
    }

    .urgency-badge {
      padding: 0.2rem 0.6rem;
      font-size: 0.8rem;
    }

    .comparison-insight {
      padding: 1rem;
      gap: 0.75rem;
    }

    .insight-content {
      font-size: 0.9rem;
    }

    .insight-icon {
      min-width: 20px;
    }

    .insight-icon svg {
      width: 20px;
      height: 20px;
    }
  }

  /* Dark Mode Support */
  @media (prefers-color-scheme: dark) {
    .roi-validation-section {
      background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    }

    .validation-heading {
      color: #f3f4f6;
    }

    .validation-subheading {
      color: #d1d5db;
    }

    .validation-values {
      background: #064e3b;
      border-left-color: #10b981;
    }

    .value-text strong {
      color: #f3f4f6;
    }

    .value-text .text-muted {
      color: #9ca3af !important;
    }

    .value-checkbox {
      background: #065f46;
      color: #10b981;
    }

    .benefit-card {
      background: rgba(17, 24, 39, 0.8);
    }

    .benefit-card-label {
      color: #d1d5db;
    }

    .benefit-card-value {
      color: #f3f4f6;
    }

    .comparison-insight {
      background: linear-gradient(135deg, #0c2340 0%, #0f172a 100%);
      border-color: #0284c7;
    }

    .insight-content {
      color: #bfdbfe;
    }

    .insight-content strong {
      color: #60a5fa;
    }

    .insight-icon {
      color: #60a5fa;
    }
  }
