/* Slide 11 - Financial Projections */
.slide11-content {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
  padding: 0;
  width: 1600px;
  height: 950px;
}

@media (max-width: 1800px) {
  .slide11-content {
    height: 100%;
    width: 100%;
  }
}

@media (max-height: 700px) {
  .slide11-content {
    height: unset;
  }
}

.slide11-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.financial-container-11 {
  width: 100%;
  max-width: 1400px;
  padding: 60px;
  z-index: 2;
  position: relative;
}

.financial-title-11 {
  font-size: 3.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #1e40af 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.financial-subtitle-11 {
  font-size: 1.4rem;
  text-align: center;
  color: #475569;
  margin-bottom: 50px;
  font-weight: 500;
  max-width: 100% !important;
}

.projections-section-11 {
  margin-bottom: 40px;
}

.section-title-11 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #1f2937;
  letter-spacing: -0.01em;
}

.years-grid-11 {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: stretch;
}

.year-card-11 {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 25px;
  padding: 30px 25px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  min-width: 280px;
  flex: 1;
  max-width: 350px;
}

.year-card-11:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
}

.year-card-11::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
}

.year1-11::before {
  background: linear-gradient(90deg, #3b82f6 0%, #1e40af 100%);
}

.year2-11::before {
  background: linear-gradient(90deg, #10b981 0%, #059669 100%);
}

.year3-11::before {
  background: linear-gradient(90deg, #8b5cf6 0%, #7c3aed 100%);
}

.year-header-11 {
  text-align: center;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.year-header-11 h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #1f2937;
  margin: 0;
  letter-spacing: -0.01em;
}

.year-metrics-11 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.metric-item-11 {
  background: rgba(248, 250, 252, 0.8);
  padding: 18px 20px;
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.metric-item-11:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.metric-item-11.users {
  border-left-color: #6366f1;
}

.metric-item-11.revenue {
  border-left-color: #10b981;
}

.metric-item-11.ebitda {
  border-left-color: #f59e0b;
}

.metric-label-11 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #374151;
}

.metric-value-11 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1f2937;
  text-align: right;
  line-height: 1.2;
}

/* Desktop Small (1100px - 1440px) */
@media (min-width: 1024px) and (max-width: 1600px) and (min-height: 500px) {
  .slide11-content {
    padding: 30px 20px;
  }

  .financial-container-11 {
    padding: 40px;
    max-width: 1000px;
  }

  .financial-title-11 {
    font-size: 3rem;
    margin-bottom: 12px;
  }

  .financial-subtitle-11 {
    font-size: 1.2rem;
    margin-bottom: 40px;
  }

  .section-title-11 {
    font-size: 2.2rem;
    margin-bottom: 35px;
  }

  .years-grid-11 {
    gap: 30px;
  }

  .year-card-11 {
    padding: 25px 20px;
    min-width: 250px;
    max-width: 300px;
  }

  .year-header-11 h3 {
    font-size: 1.8rem;
  }

  .metric-item-11 {
    padding: 15px 18px;
  }

  .metric-label-11 {
    font-size: 1rem;
  }

  .metric-value-11 {
    font-size: 1rem;
  }
}

/* Desktop Small (767px - 1100px) */
@media (min-width: 767px) and (max-width: 1100px) {
  .slide11-content {
    padding: 25px 15px;
  }

  .financial-container-11 {
    padding: 30px;
    max-width: 900px;
  }

  .financial-title-11 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }

  .financial-subtitle-11 {
    font-size: 1.1rem;
    margin-bottom: 35px;
  }

  .section-title-11 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .years-grid-11 {
    flex-direction: column;
    gap: 25px;
    align-items: center;
  }

  .year-card-11 {
    padding: 22px 18px;
    min-width: 300px;
    max-width: 400px;
    width: 100%;
  }

  .year-header-11 h3 {
    font-size: 1.6rem;
  }

  .metric-item-11 {
    padding: 14px 16px;
  }

  .metric-label-11 {
    font-size: 0.95rem;
  }

  .metric-value-11 {
    font-size: 0.95rem;
  }
}

@media (max-width: 767px) {
  .slide11-content {
    padding: 8px 6px;
  }

  .financial-container-11 {
    padding: 10px;
    max-width: 100%;
  }

  .financial-title-11 {
    font-size: 1.6rem;
    margin-bottom: 4px;
    line-height: 1.0;
  }

  .financial-subtitle-11 {
    display: none;
    font-size: 0.7rem;
    margin-bottom: 12px;
    padding: 0 5px;
  }

  .section-title-11 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    line-height: 1.0;
  }

  .years-grid-11 {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }

  .year-card-11 {
    padding: 10px 8px;
    min-width: 260px;
    max-width: 320px;
    width: 90%;
  }

  .year-header-11 {
    margin-bottom: 10px;
    padding-bottom: 6px;
  }

  .year-header-11 h3 {
    font-size: 1.1rem;
  }

  .year-metrics-11 {
    gap: 6px;
  }

  .metric-item-11 {
    padding: 6px 8px;
    border-radius: 8px;
  }

  .metric-label-11 {
    font-size: 0.65rem;
  }

  .metric-value-11 {
    font-size: 0.65rem;
  }
}

@media (max-height: 700px) {
  .slide11-content {
    padding: 6px 4px;
  }

  .financial-container-11 {
    padding: 8px;
  }

  .financial-title-11 {
    font-size: 1.4rem;
    margin-bottom: 3px;
  }

  .financial-subtitle-11 {
    display: none;
    font-size: 0.6rem;
    margin-bottom: 8px;
  }

  .section-title-11 {
    font-size: 1.2rem;
    margin-bottom: 6px;
  }

  .years-grid-11 {
    gap: 4px;
  }

  .year-card-11 {
    padding: 8px 6px;
    min-width: 240px;
  }

  .year-header-11 {
    margin-bottom: 6px;
    padding-bottom: 4px;
  }

  .year-header-11 h3 {
    font-size: 0.95rem;
  }

  .year-metrics-11 {
    gap: 4px;
  }

  .metric-item-11 {
    padding: 4px 6px;
  }

  .metric-label-11 {
    font-size: 0.55rem;
  }

  .metric-value-11 {
    font-size: 0.55rem;
  }
}