/* Slide 7 - Projected Growth & Profitability */
.slide7-content {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
  padding: 0;
  width: 1600px;
  height: 950px;
}


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

}

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

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

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

.growth-title-7 {
  font-size: 3.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 15px;
  color: #1f2937;
  letter-spacing: -0.02em;
}

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

.chart-section-7 {
  margin-bottom: 50px;
}

.chart-container-7 {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.chart-header-7 {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.legend-7 {
  display: flex;
  gap: 40px;
}

.legend-item-7 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1.1rem;
  color: #374151;
}

.legend-color-7 {
  width: 20px;
  height: 20px;
  border-radius: 4px;
}

.legend-color-7.revenue-7 {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.legend-color-7.ebitda-7 {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

.chart-area-7 {
  display: flex;
  align-items: flex-end;
  height: 400px;
  position: relative;
}

.y-axis-7 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  margin-right: 20px;
  font-weight: 500;
  color: #6b7280;
  font-size: 0.9rem;
  align-items: flex-end;
  width: 30px;
}

.chart-bars-7 {
  flex: 1;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  height: 100%;
  position: relative;
  background-image: 
    linear-gradient(to right, #f3f4f6 1px, transparent 1px),
    linear-gradient(to top, #e5e7eb 1px, transparent 1px);
  background-size: 100% 25%, 100% 25%;
  background-position: 
    0 100%,
    0 75%,
    0 50%,
    0 25%,
    0 0%;
}

.chart-bars-7::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: #9ca3af;
}

.year-group-7 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.bars-container-7 {
  display: flex;
  gap: 15px;
  align-items: flex-end;
  height: 350px;
  position: relative;
  top: 37px;
}

.bar-7 {
  width: 60px;
  border-radius: 8px 8px 0 0;
  position: relative;
  transition: all 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  animation: growUp 1.5s ease-out;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

@keyframes growUp {
  from {
    height: 0 !important;
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.revenue-bar-7 {
  background: linear-gradient(180deg, #34d399 0%, #10b981 50%, #059669 100%);
}

.ebitda-bar-7 {
  background: linear-gradient(180deg, #f87171 0%, #ef4444 50%, #dc2626 100%);
}

.bar-7:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.bar-label-7 {
  font-weight: 700;
  font-size: 1rem;
  color: #374151;
  text-shadow: none;
  position: absolute;
  top: -25px;
  background: rgba(255, 255, 255, 0.9);
  padding: 4px 8px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.year-label-7 {
  font-weight: 600;
  font-size: 1.1rem;
  color: #374151;
  text-align: center;
  position: relative;
  top: 30px;
}

.growth-highlights-7 {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
}

.highlight-stat-7 {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.95);
  padding: 25px 35px;
  border-radius: 20px;
  box-shadow: 0 15px 35px 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);
}

.highlight-stat-7:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.highlight-stat-7 img {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.stat-content-7 h3 {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 5px;
  line-height: 1;
}

.stat-content-7 p {
  font-size: 0.95rem;
  color: #6b7280;
  font-weight: 600;
  line-height: 1.3;
}

/* ------------------------------------------------------------------- */

/* Desktop Small (1020px - 1440px) */
@media (min-width: 1024px) and (max-width: 1600px) and (min-height: 500px) {
  .slide7-content {
    padding: 0;
  }

  .growth-container-7 {
    max-width: 1000px;
    padding: 150px 40px;
  }

  .growth-title-7 {
    font-size: 3rem;
    margin-bottom: 12px;
  }

  .growth-subtitle-7 {
    font-size: 1.2rem;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .chart-section-7 {
    margin-bottom: 40px;
  }

  .chart-container-7 {
    padding: 35px;
    border-radius: 22px;
  }

  .legend-7 {
    gap: 35px;
  }

  .legend-item-7 {
    font-size: 1rem;
  }

  .legend-color-7 {
    width: 18px;
    height: 18px;
  }

  .chart-area-7 {
    height: 350px;
  }

  .y-axis-7 {
    font-size: 0.85rem;
    width: 28px;
  }

  .bars-container-7 {
    height: 300px;
    gap: 12px;
  }

  .bar-7 {
    width: 55px;
  }

  .bar-label-7 {
    font-size: 0.9rem;
    top: -22px;
  }

  .year-label-7 {
    font-size: 1rem;
  }

  .growth-highlights-7 {
    gap: 40px;
    margin-top: 35px;
  }

  .highlight-stat-7 {
    padding: 22px 30px;
    border-radius: 18px;
  }

  .highlight-stat-7 img {
    width: 45px;
    height: 45px;
  }

  .stat-content-7 h3 {
    font-size: 1.8rem;
  }

  .stat-content-7 p {
    font-size: 0.9rem;
  }
}

/* Desktop Small (767px - 1020px) */
@media (min-width: 767px) and (max-width: 1100px) {
  .slide7-content {
    padding: 0;
  }

  .growth-container-7 {
    max-width: 900px;
    padding: 200px 30px;
  }

  .growth-title-7 {
    font-size: 2.6rem;
    margin-bottom: 10px;
  }

  .growth-subtitle-7 {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .chart-section-7 {
    margin-bottom: 35px;
  }

  .chart-container-7 {
    padding: 30px;
    border-radius: 20px;
  }

  .legend-7 {
    gap: 30px;
  }

  .legend-item-7 {
    font-size: 0.95rem;
  }

  .legend-color-7 {
    width: 16px;
    height: 16px;
  }

  .chart-area-7 {
    height: 320px;
  }

  .y-axis-7 {
    font-size: 0.8rem;
    width: 25px;
  }

  .bars-container-7 {
    height: 270px;
    gap: 10px;
  }

  .bar-7 {
    width: 50px;
  }

  .bar-label-7 {
    font-size: 0.85rem;
    top: -20px;
  }

  .year-label-7 {
    font-size: 0.95rem;
  }

  .growth-highlights-7 {
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .highlight-stat-7 {
    padding: 20px 25px;
    border-radius: 16px;
    flex: 0 1 auto;
    min-width: 250px;
  }

  .highlight-stat-7 img {
    width: 40px;
    height: 40px;
  }

  .stat-content-7 h3 {
    font-size: 1.6rem;
  }

  .stat-content-7 p {
    font-size: 0.85rem;
  }
}

@media (max-width: 767px) {
  .slide7-content {
    padding: 0;
  }

  .growth-container-7 {
    max-width: 100%;
    padding: 90px 15px;
  }

  .growth-title-7 {
    font-size: 2rem;
    margin-bottom: 8px;
    line-height: 1.1;
  }

  .growth-subtitle-7 {
    font-size: 0.9rem;
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .chart-section-7 {
    margin-bottom: 25px;
  }

  .chart-container-7 {
    padding: 20px;
    border-radius: 18px;
  }

  .chart-header-7 {
    margin-bottom: 20px;
  }

  .legend-7 {
    gap: 20px;
    flex-direction: column;
    align-items: center;
  }

  .legend-item-7 {
    font-size: 0.85rem;
  }

  .legend-color-7 {
    width: 14px;
    height: 14px;
  }

  .chart-area-7 {
    height: 280px;
  }

  .y-axis-7 {
    font-size: 0.75rem;
    width: 20px;
    margin-right: 15px;
  }

  .bars-container-7 {
    height: 230px;
    gap: 8px;
  }

  .bar-7 {
    width: 35px;
  }

  .bar-label-7 {
    font-size: 0.7rem;
    top: -18px;
    padding: 2px 4px;
  }

  .year-label-7 {
    font-size: 0.8rem;
    top: 25px;
  }

  .growth-highlights-7 {
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
    align-items: center;
  }

  .highlight-stat-7 {
    padding: 15px 20px;
    border-radius: 15px;
    width: 100%;
    max-width: 300px;
    gap: 15px;
  }

  .highlight-stat-7 img {
    width: 35px;
    height: 35px;
  }

  .stat-content-7 h3 {
    font-size: 1.4rem;
  }

  .stat-content-7 p {
    font-size: 0.75rem;
  }
}

@media (max-height: 700px) {
  .slide7-content {
    padding-top: 150px;
    padding-bottom: 120px;
  }
}
