/* Presentation Modal Styles */

/* Modal container */
#presentation-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

#presentation-modal[hidden] {
  display: none;
}

#presentation-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(4px);
}

#presentation-modal-content {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 100vw;
  max-height: 100vh;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #e2e8f0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

#presentation-slides-content {
  flex: 1;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

#presentation-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10001;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(96, 165, 250, 0.3);
  color: #e2e8f0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

#presentation-modal-close:hover {
  background: rgba(96, 165, 250, 0.2);
  border-color: #60a5fa;
  transform: translateY(-2px);
}

/* Presentation deck container */
.presentation-deck-container {
  width: 100%;
  height: 100%;
  position: relative;
  flex: 1;
  overflow: hidden;
  min-height: 0; /* Allow flex shrinking */
}

.presentation-slide {
  width: 100%;
  height: 100%;
  display: none;
  padding: 60px 100px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  overflow-y: auto;
}

.presentation-slide.active {
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 1;
}

.presentation-slide h1 {
  font-size: 68px;
  font-weight: 700;
  margin-bottom: 25px;
  letter-spacing: -2px;
  line-height: 1.1;
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.presentation-slide h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 30px;
  letter-spacing: -1px;
  color: #e2e8f0;
}

.presentation-slide h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #93c5fd;
}

.presentation-slide p {
  font-size: 22px;
  line-height: 1.7;
  color: #cbd5e1;
  max-width: 900px;
}

.presentation-slide ul {
  list-style: none;
  margin: 25px 0;
}

.presentation-slide li {
  font-size: 24px;
  line-height: 1.9;
  margin-bottom: 18px;
  padding-left: 40px;
  position: relative;
  color: #e2e8f0;
}

.presentation-slide li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #60a5fa;
  font-weight: bold;
  font-size: 26px;
}

.hero-subtitle {
  font-size: 28px;
  color: #94a3b8;
  margin-bottom: 40px;
  font-weight: 400;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  color: #ffffff;
  padding: 18px 40px;
  border-radius: 12px;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(96, 165, 250, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(96, 165, 250, 0.4);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: 16px;
  padding: 35px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(96, 165, 250, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Presentation slides: large emoji/icons in feature cards (separate from main app .feature-icon) */
.presentation-feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.feature-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #e2e8f0;
}

.feature-card p {
  font-size: 17px;
  line-height: 1.6;
  color: #94a3b8;
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin: 50px 0;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 56px;
  font-weight: 700;
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.stat-label {
  font-size: 18px;
  color: #94a3b8;
  margin-top: 10px;
}

.centered {
  text-align: center;
  align-items: center;
}

.highlight {
  background: rgba(96, 165, 250, 0.15);
  border-left: 4px solid #60a5fa;
  padding: 25px 35px;
  border-radius: 8px;
  margin: 30px 0;
}

.highlight p {
  font-size: 20px;
}

.presentation-navigation {
  position: fixed;
  bottom: 40px;
  right: 40px;
  display: flex;
  gap: 15px;
  z-index: 10002;
}

.presentation-nav-button {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(96, 165, 250, 0.3);
  color: #e2e8f0;
  padding: 12px 28px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.presentation-nav-button:hover {
  background: rgba(96, 165, 250, 0.2);
  border-color: #60a5fa;
  transform: translateY(-2px);
}

.presentation-slide-dots {
  position: fixed;
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10002;
}

.presentation-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.presentation-dot.active {
  background: #60a5fa;
  width: 30px;
  border-radius: 5px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.workflow-visual {
  background: rgba(255, 255, 255, 0.05);
  border: 2px dashed rgba(96, 165, 250, 0.3);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  font-size: 42px;
}

.price-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(96, 165, 250, 0.3);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}

.price-card.featured {
  background: rgba(96, 165, 250, 0.1);
  border-color: #60a5fa;
  transform: scale(1.05);
}

.price {
  font-size: 52px;
  font-weight: 700;
  color: #60a5fa;
  margin: 20px 0;
}

.price-label {
  font-size: 16px;
  color: #94a3b8;
}

.logo-display {
  margin-bottom: 40px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.floating {
  animation: float 3s ease-in-out infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .presentation-slide {
    padding: 40px 30px;
  }

  .presentation-slide h1 {
    font-size: 48px;
  }

  .presentation-slide h2 {
    font-size: 36px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .stats-row {
    flex-direction: column;
    gap: 40px;
  }

  .presentation-navigation {
    bottom: 20px;
    right: 20px;
  }

  .presentation-slide-dots {
    bottom: 80px;
  }
}
