/* 2026 Business Challenges Specific Styles */

/* Hero Section */
.challenges-hero-2026 {
  background: linear-gradient(135deg, #0c2d57 0%, #1e5f8a 100%);
  color: white;
}

.challenges-hero-2026 .hero-text h1 {
  color: white;
  font-size: 2.8rem;
  line-height: 1.2;
}

.challenges-hero-2026 .article-category {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.challenges-hero-2026 .tag {
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Quick Navigation */
.quick-nav-2026 {
  background: #f8fafc;
  border-radius: 12px;
  padding: 25px;
  margin: 40px 0;
  border: 1px solid #e2e8f0;
}

.quick-nav-2026 h3 {
  margin-top: 0;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 10px;
}

.quick-nav-2026 h3 i {
  color: #3b82f6;
}

.quick-nav-grid-2026 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.nav-card-2026 {
  background: white;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #475569;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-card-2026:hover {
  transform: translateY(-5px);
  border-color: #3b82f6;
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.1);
  color: #1e40af;
}

.nav-card-2026 i {
  font-size: 28px;
  color: #3b82f6;
  margin-bottom: 10px;
}

.nav-card-2026 span {
  font-weight: 600;
  font-size: 14px;
}

/* Executive Summary */
.executive-card-2026 {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-radius: 12px;
  overflow: hidden;
  margin: 30px 0;
  border-left: 6px solid #0369a1;
}

.executive-header {
  background: #0369a1;
  color: white;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.executive-header h3 {
  margin: 0;
  font-size: 1.5rem;
}

.risk-badge {
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.risk-badge.critical {
  background: #dc2626;
  color: white;
}

.executive-content {
  padding: 25px;
}

.key-message-box {
  background: white;
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  border-left: 4px solid #f59e0b;
}

.key-message-box i {
  color: #f59e0b;
  font-size: 24px;
  margin-top: 2px;
}

.key-message-box p {
  margin: 0;
  font-style: italic;
  color: #475569;
  line-height: 1.6;
}

.challenge-impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.impact-card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.impact-card:hover {
  transform: translateY(-5px);
}

.impact-card.high-impact {
  border-top: 4px solid #dc2626;
}

.impact-card.medium-impact {
  border-top: 4px solid #f59e0b;
}

.impact-icon {
  width: 60px;
  height: 60px;
  background: #eff6ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: #3b82f6;
  font-size: 24px;
}

.impact-card.high-impact .impact-icon {
  background: #fee2e2;
  color: #dc2626;
}

.impact-card.medium-impact .impact-icon {
  background: #fef3c7;
  color: #d97706;
}

.impact-card h4 {
  margin: 0 0 8px 0;
  color: #1e293b;
  font-size: 1.1rem;
}

.impact-card p {
  margin: 0;
  font-size: 13px;
  color: #64748b;
  line-height: 1.4;
}

/* Challenge Cards */
.challenge-card-2026 {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin: 40px 0;
  border: 1px solid #e2e8f0;
}

.challenge-header {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  color: white;
  padding: 20px 25px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.challenge-number {
  font-size: 36px;
  font-weight: 800;
  opacity: 0.9;
  min-width: 60px;
}

.challenge-title {
  flex: 1;
}

.challenge-title h3 {
  margin: 0 0 5px 0;
  font-size: 1.5rem;
}

.timeline-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
}

.challenge-content {
  padding: 25px;
}

.why-it-matters {
  margin-bottom: 25px;
}

.why-it-matters h4 {
  color: #1e40af;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.why-it-matters h4 i {
  color: #3b82f6;
}

.source-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  padding: 10px 15px;
  background: #f8fafc;
  border-radius: 6px;
  font-size: 13px;
  color: #64748b;
}

.source-tag i {
  color: #94a3b8;
}

.risk-analysis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin: 30px 0;
}

@media (max-width: 768px) {
  .risk-analysis {
    grid-template-columns: 1fr;
  }
}

.risk-visual h4 {
  margin-top: 0;
  color: #1e293b;
}

.risk-meter {
  margin: 15px 0;
}

.risk-level {
  height: 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  padding-left: 15px;
  font-size: 12px;
  font-weight: 600;
  color: white;
  transition: width 0.5s ease;
}

.risk-level.high-risk {
  background: linear-gradient(90deg, #dc2626, #ef4444);
}

.risk-level.medium-risk {
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.consequences-box {
  background: #fef2f2;
  border-radius: 8px;
  padding: 20px;
  border-left: 4px solid #dc2626;
}

.consequences-box h4 {
  color: #dc2626;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 0;
}

.consequences-box ul {
  margin: 10px 0 0 0;
  padding-left: 20px;
}

.consequences-box li {
  margin-bottom: 8px;
  color: #7f1d1d;
  font-size: 14px;
}

/* Preparation Steps */
.preparation-steps h4 {
  color: #059669;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 25px 0;
}

.step-card {
  background: #f8fafc;
  border-radius: 10px;
  padding: 20px;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 36px;
  height: 36px;
  background: #3b82f6;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 15px;
}

.step-card h5 {
  margin: 0 0 10px 0;
  color: #1e293b;
  font-size: 1.1rem;
}

.step-card p {
  margin: 0 0 15px 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.5;
}

.step-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tool-tag {
  background: white;
  border: 1px solid #cbd5e1;
  border-radius: 15px;
  padding: 4px 10px;
  font-size: 11px;
  color: #475569;
}

/* Tax Section Specific */
.deadline-warning {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 20px 0;
  border-left: 4px solid #d97706;
}

.deadline-warning i {
  font-size: 28px;
  color: #d97706;
  min-width: 40px;
}

.deadline-warning h4 {
  margin: 0 0 5px 0;
  color: #92400e;
}

.deadline-warning p {
  margin: 0;
  color: #92400e;
  font-size: 14px;
}

.urgent-action-box {
  background: #f0f9ff;
  border-radius: 10px;
  padding: 25px;
  margin: 25px 0;
  border: 2px solid #0ea5e9;
}

.urgent-action-box h5 {
  color: #0369a1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 0;
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.action-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.action-item i {
  color: #3b82f6;
  font-size: 20px;
  margin-top: 3px;
  min-width: 24px;
}

.action-item h6 {
  margin: 0 0 8px 0;
  color: #1e293b;
  font-size: 15px;
}

.action-item p {
  margin: 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.5;
}

.tax-timeline {
  margin-top: 30px;
}

.timeline-2026 {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.timeline-phase {
  flex: 0 0 200px;
  background: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  position: relative;
}

.timeline-phase.urgent {
  border-top: 4px solid #dc2626;
}

.timeline-phase.important {
  border-top: 4px solid #f59e0b;
}

.timeline-phase.warning {
  border-top: 4px solid #3b82f6;
}

.timeline-phase.critical {
  border-top: 4px solid #059669;
}

.phase-marker {
  position: absolute;
  top: -12px;
  left: 20px;
  background: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-weight: 700;
  font-size: 12px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.timeline-phase.urgent .phase-marker {
  color: #dc2626;
  border: 2px solid #dc2626;
}

.timeline-phase.important .phase-marker {
  color: #d97706;
  border: 2px solid #f59e0b;
}

.timeline-phase.warning .phase-marker {
  color: #1d4ed8;
  border: 2px solid #3b82f6;
}

.timeline-phase.critical .phase-marker {
  color: #047857;
  border: 2px solid #059669;
}

.phase-content h6 {
  margin: 0 0 5px 0;
  font-size: 15px;
}

.phase-content p {
  margin: 0;
  font-size: 13px;
  color: #64748b;
}

/* Cybersecurity Specific */
.threat-intelligence {
  margin: 30px 0;
}

.threat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.threat-card {
  background: white;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.threat-card.critical {
  border-top: 4px solid #dc2626;
}

.threat-card.high {
  border-top: 4px solid #f59e0b;
}

.threat-card.medium {
  border-top: 4px solid #3b82f6;
}

.threat-card i {
  font-size: 28px;
  margin-bottom: 10px;
  display: block;
}

.threat-card.critical i {
  color: #dc2626;
}

.threat-card.high i {
  color: #f59e0b;
}

.threat-card.medium i {
  color: #3b82f6;
}

.threat-card h5 {
  margin: 0 0 8px 0;
  font-size: 15px;
}

.threat-card p {
  margin: 0;
  font-size: 12px;
  color: #64748b;
  line-height: 1.4;
}

.sbom-section {
  background: #f0f9ff;
  border-radius: 10px;
  padding: 25px;
  margin: 25px 0;
}

.sbom-section h5 {
  color: #0369a1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 0;
}

.sbom-requirements {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

.requirement {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: white;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
}

.requirement i {
  color: #059669;
}

.defense-strategies {
  margin-top: 30px;
}

.strategy-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.strategy-card {
  background: white;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

.strategy-icon {
  width: 70px;
  height: 70px;
  background: #eff6ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #3b82f6;
  font-size: 28px;
}

.strategy-card h6 {
  margin: 0 0 10px 0;
  font-size: 16px;
  color: #1e293b;
}

.strategy-card p {
  margin: 0;
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
}

/* ERP Modernization Specific */
.erp-migration-path {
  margin: 30px 0;
}

.migration-visual {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  flex-wrap: wrap;
  gap: 20px;
}

@media (max-width: 768px) {
  .migration-visual {
    flex-direction: column;
    align-items: stretch;
  }
  
  .migration-arrow {
    transform: rotate(90deg);
    text-align: center;
    padding: 10px 0;
  }
}

.migration-stage {
  flex: 1;
  min-width: 200px;
  background: white;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.stage-icon {
  width: 50px;
  height: 50px;
  background: #eff6ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  font-size: 20px;
}

.migration-stage h5 {
  margin: 0 0 5px 0;
  font-size: 15px;
}

.migration-stage p {
  margin: 0;
  font-size: 13px;
  color: #64748b;
}

.migration-arrow {
  color: #94a3b8;
  font-size: 24px;
}

.erp-strategy {
  margin: 25px 0;
}

.framework-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.framework-item {
  background: #f8fafc;
  border-radius: 8px;
  padding: 20px;
  border-left: 4px solid #3b82f6;
}

.framework-number {
  width: 32px;
  height: 32px;
  background: #3b82f6;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 15px;
}

.framework-item h6 {
  margin: 0 0 10px 0;
  font-size: 15px;
  color: #1e293b;
}

.framework-item p {
  margin: 0;
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
}

.change-management-box {
  background: #f0f9ff;
  border-radius: 10px;
  padding: 25px;
  margin-top: 25px;
}

.change-management-box h5 {
  color: #0369a1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 0;
}

.change-tips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

.tip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: white;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
}

.tip i {
  color: #3b82f6;
  min-width: 20px;
}

/* Workforce Automation Specific */
.workforce-impact {
  margin: 30px 0;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.impact-stat {
  background: white;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #8b5cf6;
}

.stat-value {
  font-size: 32px;
  font-weight: 800;
  color: #8b5cf6;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: #64748b;
  line-height: 1.3;
}

.reskilling-framework {
  margin: 25px 0;
}

.framework-step {
  background: #f8fafc;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  border-left: 4px solid #8b5cf6;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.step-number {
  width: 32px;
  height: 32px;
  background: #8b5cf6;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.framework-step h6 {
  margin: 0;
  font-size: 16px;
  color: #1e293b;
}

.framework-step p {
  margin: 0;
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
}

.metrics-dashboard {
  background: white;
  border-radius: 10px;
  padding: 25px;
  margin-top: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.metric-card {
  background: #f8fafc;
  border-radius: 8px;
  padding: 20px;
}

.metric-title {
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 8px;
  font-size: 14px;
}

.metric-target {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 10px;
}

.metric-bar {
  height: 8px;
  background: #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
}

.metric-fill {
  height: 100%;
  background: linear-gradient(90deg, #8b5cf6, #a78bfa);
  border-radius: 4px;
  transition: width 1s ease;
}

/* Additional Challenges */
.additional-challenges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 25px 0;
}

.additional-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.additional-header {
  background: #f8fafc;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid #e2e8f0;
}

.additional-header i {
  font-size: 24px;
  color: #3b82f6;
}

.additional-header h3 {
  margin: 0;
  font-size: 1.2rem;
}

.additional-content {
  padding: 20px;
}

.additional-content p {
  margin: 0 0 15px 0;
  color: #475569;
  line-height: 1.5;
}

.solution-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.solution-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #475569;
}

.solution-item i {
  color: #059669;
  margin-top: 3px;
}

/* Checklist */
.checklist-container {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin: 30px 0;
  border: 1px solid #e2e8f0;
}

.checklist-header {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  color: white;
  padding: 25px;
}

.checklist-header h3 {
  margin: 0 0 20px 0;
  font-size: 1.5rem;
}

.checklist-progress {
  display: flex;
  align-items: center;
  gap: 15px;
}

.progress-bar {
  flex: 1;
  height: 10px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: white;
  border-radius: 5px;
  transition: width 0.5s ease;
}

.progress-text {
  font-weight: 600;
  font-size: 14px;
  min-width: 120px;
}

.checklist-items {
  padding: 20px;
}

.checklist-item {
  display: flex;
  gap: 15px;
  padding: 20px;
  border-bottom: 1px solid #e2e8f0;
  align-items: flex-start;
}

.checklist-item:last-child {
  border-bottom: none;
}

.checklist-checkbox {
  position: relative;
  margin-top: 5px;
}

.checklist-checkbox input[type="checkbox"] {
  display: none;
}

.checklist-checkbox label {
  width: 24px;
  height: 24px;
  border: 2px solid #cbd5e1;
  border-radius: 6px;
  display: block;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.checklist-checkbox input[type="checkbox"]:checked + label {
  background: #059669;
  border-color: #059669;
}

.checklist-checkbox input[type="checkbox"]:checked + label::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
  font-size: 14px;
}

.checklist-content {
  flex: 1;
}

.checklist-content h4 {
  margin: 0 0 8px 0;
  color: #1e293b;
  font-size: 16px;
}

.checklist-content p {
  margin: 0 0 10px 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.5;
}

.checklist-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tag.priority-high {
  background: #fee2e2;
  color: #dc2626;
}

.tag.priority-medium {
  background: #fef3c7;
  color: #d97706;
}

.tag.priority-low {
  background: #dbeafe;
  color: #1d4ed8;
}

.tag.department-legal {
  background: #f3e8ff;
  color: #7c3aed;
}

.tag.department-it {
  background: #f0f9ff;
  color: #0369a1;
}

.tag.department-compliance {
  background: #ecfdf5;
  color: #059669;
}

.tag.department-finance {
  background: #fef2f2;
  color: #dc2626;
}

.tag.department-security {
  background: #fef3c7;
  color: #d97706;
}

.tag.department-operations {
  background: #eff6ff;
  color: #1d4ed8;
}

.tag.department-hr {
  background: #fdf2f8;
  color: #db2777;
}

.tag.department-procurement {
  background: #ecfdf5;
  color: #059669;
}

.tag.department-sustainability {
  background: #f0f9ff;
  color: #0ea5e9;
}

.tag.department-leadership {
  background: #fef3c7;
  color: #d97706;
}

.checklist-actions {
  padding: 20px;
  background: #f8fafc;
  display: flex;
  gap: 15px;
  justify-content: center;
  border-top: 1px solid #e2e8f0;
}

.btn-checklist {
  background: white;
  border: 2px solid #3b82f6;
  color: #3b82f6;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-checklist:hover {
  background: #3b82f6;
  color: white;
}

/* 90-Day Plan */
.ninety-day-plan {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin: 30px 0;
}

@media (max-width: 768px) {
  .ninety-day-plan {
    gap: 20px;
  }
}

.plan-phase {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.phase-header {
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e2e8f0;
}

.phase-title {
  display: flex;
  align-items: center;
  gap: 15px;
}

.phase-number {
  font-size: 14px;
  font-weight: 700;
  color: #64748b;
  background: #f1f5f9;
  padding: 4px 12px;
  border-radius: 15px;
}

.phase-header h3 {
  margin: 0;
  font-size: 1.3rem;
  color: #1e293b;
}

.phase-badge {
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.phase-badge.foundation {
  background: #dbeafe;
  color: #1d4ed8;
}

.phase-badge.execution {
  background: #fef3c7;
  color: #d97706;
}

.phase-badge.integration {
  background: #dcfce7;
  color: #059669;
}

.phase-tasks {
  padding: 25px;
}

.task-item {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #f1f5f9;
}

.task-item:last-child {
  border-bottom: none;
}

.task-item i {
  color: #3b82f6;
  font-size: 20px;
  margin-top: 3px;
  min-width: 24px;
}

.task-item h4 {
  margin: 0 0 8px 0;
  color: #1e293b;
  font-size: 15px;
}

.task-item p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.5;
}

/* Help Services */
.help-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.service-card {
  background: white;
  border-radius: 10px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: #eff6ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #3b82f6;
  font-size: 28px;
}

.service-content h3 {
  margin: 0 0 15px 0;
  color: #1e293b;
  font-size: 1.2rem;
}

.service-content p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.5;
}

.cta-box-2026 {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  border-radius: 12px;
  padding: 30px;
  margin-top: 30px;
  color: white;
  text-align: center;
}

.cta-box-2026 h3 {
  margin: 0 0 15px 0;
  font-size: 1.5rem;
}

.cta-box-2026 p {
  margin: 0 0 25px 0;
  font-size: 16px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary-2026 {
  background: white;
  color: #1e40af;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary-2026:hover {
  background: #f1f5f9;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Board Memo */
.board-memo {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  margin: 30px 0;
}

.memo-header {
  background: #f8fafc;
  padding: 25px;
  border-bottom: 1px solid #e2e8f0;
}

.memo-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 10px;
}

.memo-title h3 {
  margin: 0;
  font-size: 1.3rem;
  color: #1e293b;
}

.memo-date {
  font-size: 14px;
  color: #64748b;
  background: white;
  padding: 4px 12px;
  border-radius: 15px;
  border: 1px solid #e2e8f0;
}

.memo-subject h4 {
  margin: 0;
  color: #475569;
  font-size: 1rem;
  font-weight: 500;
}

.memo-content {
  padding: 25px;
}

.recommendation-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #f1f5f9;
}

.recommendation-item:last-child {
  border-bottom: none;
}

.rec-icon {
  width: 50px;
  height: 50px;
  background: #eff6ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  font-size: 20px;
  flex-shrink: 0;
}

.rec-content h5 {
  margin: 0 0 10px 0;
  color: #1e293b;
  font-size: 1.1rem;
}

.rec-content p {
  margin: 0;
  color: #64748b;
  line-height: 1.5;
}

.memo-footer {
  padding: 25px;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}

.memo-signature {
  text-align: right;
}

.memo-signature strong {
  display: block;
  color: #1e293b;
  margin-bottom: 5px;
}

.memo-signature span {
  color: #64748b;
  font-size: 14px;
}

/* Sources & AI Prompts */
.sources-section {
  margin: 30px 0;
}

.sources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 30px;
}

.source-card {
  background: #f8fafc;
  border-radius: 10px;
  padding: 25px;
  border: 1px solid #e2e8f0;
}

.source-card h4 {
  margin-top: 0;
  color: #1e293b;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.source-card ul {
  margin: 0;
  padding-left: 20px;
}

.source-card li {
  margin-bottom: 10px;
  color: #475569;
  font-size: 14px;
  line-height: 1.5;
}

.ai-prompts h4 {
  color: #1e293b;
  margin-bottom: 20px;
}

.prompt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.prompt-card {
  background: white;
  border-radius: 8px;
  padding: 15px;
  border: 1px solid #e2e8f0;
  font-size: 13px;
  color: #475569;
  font-style: italic;
  transition: all 0.3s ease;
}

.prompt-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.1);
  transform: translateY(-3px);
}

/* Sidebar Styles */
.download-resources {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.download-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #f8fafc;
  border-radius: 8px;
  color: #475569;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.download-card:hover {
  background: white;
  border-color: #3b82f6;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.download-card i {
  font-size: 24px;
  color: #3b82f6;
}

.download-card h4 {
  margin: 0 0 5px 0;
  font-size: 15px;
  color: #1e293b;
}

.download-card span {
  font-size: 12px;
  color: #64748b;
}

.risk-widget {
  text-align: center;
}

.risk-meter-widget {
  margin-bottom: 15px;
}

.risk-label {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 10px;
}

.meter-container {
  height: 10px;
  background: #e2e8f0;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 10px;
}

.meter-fill {
  height: 100%;
  background: linear-gradient(90deg, #059669, #10b981);
  border-radius: 5px;
  width: 30%;
  transition: width 0.5s ease;
}

.risk-score {
  font-weight: 700;
  color: #059669;
  font-size: 14px;
}

.btn-small {
  display: inline-block;
  background: #3b82f6;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-small:hover {
  background: #2563eb;
  transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .challenge-hero-2026 .hero-text h1 {
    font-size: 2rem;
  }
  
  .quick-nav-grid-2026 {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  
  .challenge-impact-grid,
  .steps-grid,
  .action-grid,
  .threat-grid,
  .strategy-cards,
  .framework-grid,
  .impact-stats,
  .metrics-grid,
  .additional-challenges,
  .help-services,
  .sources-grid {
    grid-template-columns: 1fr;
  }
  
  .checklist-progress {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  
  .progress-text {
    text-align: center;
  }
  
  .memo-title {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .phase-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .phase-badge {
    align-self: flex-start;
  }
}

@media (max-width: 480px) {
  .challenge-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .challenge-number {
    font-size: 28px;
  }
  
  .checklist-item {
    flex-direction: column;
    gap: 10px;
  }
  
  .checklist-checkbox {
    align-self: flex-start;
  }
  
  .checklist-actions {
    flex-direction: column;
  }
  
  .btn-checklist {
    justify-content: center;
  }
}