/* Strategy Page Styles - Enhanced Version */

/* Container */
.strategy-container {
  padding: 24px 32px;
  max-width: 1200px;
  margin: 0 auto;
  height: calc(100vh - 64px);
  overflow-y: auto;
  line-height: 1.6;
}

/* Custom Scrollbar */
.strategy-container::-webkit-scrollbar {
  width: 8px;
}

.strategy-container::-webkit-scrollbar-track {
  background: #0b1626;
  border-radius: 4px;
}

.strategy-container::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #1c2a40, #243651);
  border-radius: 4px;
}

.strategy-container::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #284364, #31527a);
}

/* Header */
.strategy-header {
  margin-bottom: 32px;
  padding: 32px 40px;
  background: linear-gradient(135deg, #0f1928 0%, #162033 50%, #1a2942 100%);
  border: 1px solid var(--stroke);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.strategy-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #22d3ee, #10b981);
}

.strategy-header::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.strategy-header__content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.strategy-header__title {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #cfe5ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 12px 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.strategy-header__subtitle {
  font-size: 16px;
  color: #9db7d6;
  margin: 0;
  line-height: 1.5;
}

.strategy-header__subtitle span {
  color: #60a5fa;
  font-weight: 600;
}

/* Strategy Content */
.strategy-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Strategy Section */
.strategy-section {
  background: linear-gradient(180deg, #0f1928 0%, #0e1826 100%);
  border: 1px solid var(--stroke);
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  animation: fadeInUp 0.6s ease-out;
}

.strategy-section__header {
  margin: 0;
  padding: 24px 32px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(59, 130, 246, 0.02) 100%);
  border-bottom: 1px solid rgba(59, 130, 246, 0.15);
  position: relative;
}

.strategy-section__header::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #3b82f6, #22d3ee);
}

.strategy-section__title {
  font-size: 24px;
  font-weight: 700;
  color: #e6f0ff;
  margin: 0 0 6px 0;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 12px;
}

.strategy-section__title::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #3b82f6;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.strategy-section__subtitle {
  font-size: 15px;
  color: #60a5fa;
  margin: 0;
  font-style: italic;
  padding-left: 20px;
}

/* Strategy Text Content */
.strategy-text {
  color: #d1dded;
  font-size: 15px;
  line-height: 1.8;
  padding: 28px 32px;
}

.strategy-text p {
  margin-bottom: 20px;
  text-align: justify;
}

.strategy-text p:last-child {
  margin-bottom: 0;
}

.strategy-text h3 {
  font-size: 18px;
  font-weight: 700;
  color: #e6f0ff;
  margin: 32px 0 16px 0;
  padding: 12px 16px;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.1) 0%, transparent 100%);
  border-left: 3px solid #3b82f6;
  border-radius: 0 8px 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.strategy-text h3:first-child {
  margin-top: 0;
}

.strategy-text h4 {
  font-size: 16px;
  font-weight: 600;
  color: #cfe5ff;
  margin: 24px 0 12px 0;
}

/* Key Findings - Enhanced Cards */
.key-findings {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(34, 211, 238, 0.04) 100%);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 16px;
  padding: 28px;
  margin: 28px 0;
  position: relative;
  overflow: hidden;
}

.key-findings::before {
  content: '📊';
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 32px;
  opacity: 0.3;
}

.key-findings h3 {
  color: #60a5fa;
  margin: 0 0 20px 0;
  padding: 0;
  border: none;
  background: none;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.key-findings h3::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #3b82f6, #22d3ee);
  border-radius: 6px;
  flex-shrink: 0;
}

.key-findings ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.key-findings li {
  margin-bottom: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border-left: 3px solid #3b82f6;
  line-height: 1.7;
  transition: all 0.2s ease;
}

.key-findings li:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(4px);
}

.key-findings li:last-child {
  margin-bottom: 0;
}

.key-findings li strong {
  color: #60a5fa;
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
}

/* Main Recommendations - Enhanced Cards */
.main-recommendations {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(34, 211, 238, 0.04) 100%);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 16px;
  padding: 28px;
  margin: 28px 0;
  position: relative;
  overflow: hidden;
}

.main-recommendations::before {
  content: '🎯';
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 32px;
  opacity: 0.3;
}

.main-recommendations h3 {
  color: #10b981;
  margin: 0 0 16px 0;
  padding: 0;
  border: none;
  background: none;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.main-recommendations h3::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #10b981, #22d3ee);
  border-radius: 6px;
  flex-shrink: 0;
}

.main-recommendations>p {
  margin-bottom: 20px;
  color: #d1dded;
}

.main-recommendations ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: rec-counter;
}

.main-recommendations li {
  counter-increment: rec-counter;
  margin-bottom: 16px;
  padding: 20px 24px 20px 70px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  line-height: 1.7;
  position: relative;
  transition: all 0.2s ease;
}

.main-recommendations li:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(4px);
}

.main-recommendations li:last-child {
  margin-bottom: 0;
}

.main-recommendations li::before {
  content: counter(rec-counter);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
}

.main-recommendations li strong {
  color: #10b981;
}

/* Tables - Premium Style */
.indicators-table,
.medical-staff-table {
  margin: 24px 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--stroke);
}

.indicators-table h4,
.medical-staff-table h4 {
  color: #e6f0ff;
  margin: 0;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, transparent 100%);
  font-size: 17px;
  font-weight: 600;
  border-bottom: 1px solid var(--stroke);
}

.indicators-table table,
.medical-staff-table table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(15, 25, 40, 0.5);
}

.indicators-table th,
.indicators-table td,
.medical-staff-table th,
.medical-staff-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.indicators-table th,
.medical-staff-table th {
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.08) 100%);
  color: #e6f0ff;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.indicators-table td,
.medical-staff-table td {
  color: #d1dded;
  font-size: 14px;
}

.indicators-table td:first-child,
.medical-staff-table td:first-child {
  font-weight: 500;
  color: #e6f0ff;
}

.indicators-table td:nth-child(2),
.medical-staff-table td:nth-child(2) {
  font-weight: 600;
  color: #60a5fa;
}

.indicators-table tr:hover,
.medical-staff-table tr:hover {
  background: rgba(59, 130, 246, 0.05);
}

.indicators-table tr:last-child td,
.medical-staff-table tr:last-child td {
  border-bottom: none;
}

/* Recommendations Cards */
.recommendation {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.06) 0%, rgba(245, 158, 11, 0.02) 100%);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 14px;
  padding: 24px;
  margin: 24px 0;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.recommendation:hover {
  border-color: rgba(245, 158, 11, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.recommendation::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #f59e0b, #d97706);
}

.recommendation h4 {
  color: #fbbf24;
  margin: 0 0 14px 0;
  padding-left: 32px;
  font-size: 16px;
  font-weight: 600;
  position: relative;
}

.recommendation h4::before {
  content: '💡';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
}

.recommendation p {
  margin: 0;
  line-height: 1.7;
  padding-left: 32px;
}

/* Sources Section */
.sources-list {
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.04) 0%, transparent 100%);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: 14px;
  padding: 24px;
  margin: 24px 0;
}

.sources-list ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: source-counter;
  display: grid;
  gap: 12px;
}

.sources-list li {
  counter-increment: source-counter;
  padding: 12px 16px 12px 50px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  line-height: 1.6;
  color: #b8c9dc;
  font-size: 13px;
  position: relative;
  transition: all 0.2s ease;
}

.sources-list li:hover {
  background: rgba(255, 255, 255, 0.04);
}

.sources-list li::before {
  content: counter(source-counter);
  position: absolute;
  left: 12px;
  top: 12px;
  width: 26px;
  height: 26px;
  background: rgba(139, 92, 246, 0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 12px;
  color: #a78bfa;
}

.sources-list a {
  color: #60a5fa;
  text-decoration: none;
  border-bottom: 1px solid rgba(96, 165, 250, 0.3);
  transition: all 0.2s ease;
}

.sources-list a:hover {
  color: #93c5fd;
  border-bottom-color: #93c5fd;
}

/* Reading Progress Bar */
.strategy-container::before {
  content: '';
  position: fixed;
  top: 64px;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #22d3ee);
  width: var(--scroll-progress, 0%);
  z-index: 100;
  transition: width 0.1s linear;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .strategy-container {
    padding: 20px;
  }

  .strategy-header {
    padding: 24px;
  }

  .strategy-text {
    padding: 24px;
  }

  .strategy-section__header {
    padding: 20px 24px;
  }
}

@media (max-width: 768px) {
  .strategy-header__title {
    font-size: 26px;
  }

  .strategy-section__title {
    font-size: 20px;
  }

  .strategy-text {
    padding: 20px;
    font-size: 14px;
  }

  .strategy-text h3 {
    font-size: 16px;
    padding: 10px 14px;
  }

  .key-findings,
  .main-recommendations {
    padding: 20px;
  }

  .key-findings::before,
  .main-recommendations::before {
    display: none;
  }

  .main-recommendations li {
    padding-left: 60px;
  }

  .main-recommendations li::before {
    width: 30px;
    height: 30px;
    font-size: 14px;
    left: 16px;
  }

  .recommendation {
    padding: 18px;
  }

  .recommendation h4,
  .recommendation p {
    padding-left: 28px;
  }

  .indicators-table th,
  .indicators-table td,
  .medical-staff-table th,
  .medical-staff-table td {
    padding: 10px 12px;
    font-size: 13px;
  }

  .sources-list li {
    padding: 10px 12px 10px 44px;
    font-size: 12px;
  }

  .sources-list li::before {
    width: 22px;
    height: 22px;
    font-size: 11px;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Animation for sections */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.strategy-section:nth-child(1) {
  animation-delay: 0s;
}

.strategy-section:nth-child(2) {
  animation-delay: 0.1s;
}

.strategy-section:nth-child(3) {
  animation-delay: 0.2s;
}

.strategy-section:nth-child(4) {
  animation-delay: 0.3s;
}

.strategy-section:nth-child(5) {
  animation-delay: 0.4s;
}

.strategy-section:nth-child(6) {
  animation-delay: 0.5s;
}

/* Hover effects for interactive elements */
.strategy-section {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.strategy-section:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* Print styles */
@media print {
  .strategy-container {
    height: auto;
    overflow: visible;
  }

  .strategy-section {
    break-inside: avoid;
    page-break-inside: avoid;
  }
}