/* Slide 15 - MVP Development Budget */
.slide15-content {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
  padding: 0;
  width: 1600px;
  height: 950px;
}

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

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


.slide15-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.05) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.mvp-budget-container-15 {
  width: 100%;
  max-width: 950px;
  padding: 15px;
  z-index: 2;
  position: relative;
}

.section-title-15 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1e293b;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-align: center;
}

.mvp-budget-grid-15 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.mvp-budget-item-15 {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  padding: 12px 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  backdrop-filter:Howard;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.mvp-budget-item-15:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mvp-budget-item-15 .item-header {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.mvp-budget-item-15 .item-icon-15 {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.25);
  flex-shrink: 0;
}

.mvp-budget-item-15 .item-icon-15.design {
  background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
  box-shadow: 0 2px 8px rgba(236, 72, 153, 0.25);
}

.mvp-budget-item-15 .item-icon-15.development {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.25);
}

.mvp-budget-item-15 .item-icon-15.ai {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  box-shadow: 0 2px 8px rgba(139, 92, 246, 0.25);
}

.mvp-budget-item-15 .item-icon-15.marketplace {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.25);
}

.mvp-budget-item-15 .item-icon-15.mapping {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.25);
}

.mvp-budget-item-15 .item-icon-15.grants {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  box-shadow: 0 2px 8px rgba(6, 182, 212, 0.25);
}

.mvp-budget-item-15 .item-icon-15.hosting {
  background: linear-gradient(135deg, #84cc16 0%, #65a30d 100%);
  box-shadow: 0 2px 8px rgba(132, 204, 22, 0.25);
}

.mvp-budget-item-15 .item-icon-15 img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.mvp-budget-item-15 .item-info-15 h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 5px;
  line-height: 1.1;
}

.mvp-budget-item-15 .item-details-15 {
  font-size: 1.1rem;
  color: #64748b;
  font-weight: 500;
  margin: 0;
  line-height: 1.2;
}

.mvp-budget-item-15 .item-amount-15 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e293b;
  text-align: right;
  min-width: 80px;
}

.mvp-budget-total-15 {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.total-mvp-budget-card-15 {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 25px 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 20px;
  border: 2px solid rgba(59, 130, 246, 0.2);
}

.total-mvp-budget-card-15::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(59, 130, 246, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.total-mvp-budget-card-15 .total-icon-15 {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.total-mvp-budget-card-15 .total-icon-15 img {
  width: 25px;
  height: 25px;
  filter: brightness(0) invert(1);
}

.total-mvp-budget-card-15 h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  position: relative;
  z-index: 2;
  letter-spacing: -0.01em;
}




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

/* Desktop Medium (1024px - 1600px) with compact 2-per-row layout */
@media (min-width: 1024px) and (max-width: 1600px) and (min-height: 500px) {
  .slide15-content {
    padding: 40px 20px;
    align-items: center;
    justify-content: center;
  }

  .mvp-budget-container-15 {
    padding: 30px;
    max-width: 900px;
    width: 100%;
  }

  .mvp-budget-title-15 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    line-height: 1.1;
  }

  .mvp-budget-subtitle-15 {
    font-size: 0.85rem;
    margin-bottom: 25px;
  }

  .mvp-budget-header-15 {
    margin-bottom: 25px;
  }

  .mvp-budget-main-15 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
    align-items: start;
  }

  .mvp-budget-left-15 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    height: fit-content;
  }

  .mvp-budget-right-15 {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 12px;
    height: fit-content;
  }

  .mvp-budget-item-15 {
    padding: 15px 18px;
    border-radius: 12px;
    margin: 0;
    min-height: 85px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .mvp-budget-item-15 .item-header {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
  }

  .mvp-budget-item-15 .item-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    flex-shrink: 0;
  }

  .mvp-budget-item-15 .item-icon-15 img {
    width: 16px;
    height: 16px;
  }

  .mvp-budget-item-15 .item-info-15 {
    flex: 1;
  }

  .mvp-budget-item-15 .item-info-15 h3 {
    font-size: 0.8rem;
    margin-bottom: 4px;
    line-height: 1.1;
    font-weight: 600;
  }

  .mvp-budget-item-15 .item-details-15 {
    font-size: 0.65rem;
    line-height: 1.2;
    margin: 0;
  }

  .mvp-budget-item-15 .item-amount-15 {
    font-size: 0.9rem;
    min-width: 70px;
    text-align: right;
    font-weight: 700;
    flex-shrink: 0;
  }

  .mvp-budget-total-15 {
    grid-column: 1 / -1;
    margin-top: 20px;
  }

  .total-mvp-budget-card-15 {
    padding: 15px 25px;
    gap: 10px;
    border-radius: 12px;
  }

  .total-mvp-budget-card-15 .total-icon-15 {
    width: 35px;
    height: 35px;
  }

  .total-mvp-budget-card-15 .total-icon-15 img {
    width: 18px;
    height: 18px;
  }

  .total-mvp-budget-card-15 h3 {
    font-size: 1.3rem;
    line-height: 1.1;
  }
}

/* Desktop Small (1100px - 1440px) */
@media (min-width: 1100px) and (max-width: 1440px) {
  .slide15-content {
    padding: 20px 12px;
  }

  .mvp-budget-container-15 {
    padding: 20px;
    max-width: 850px;
  }

  .mvp-budget-title-15 {
    font-size: 1.7rem;
    margin-bottom: 6px;
  }

  .mvp-budget-subtitle-15 {
    font-size: 0.8rem;
  }

  .mvp-budget-header-15 {
    margin-bottom: 16px;
  }

  .mvp-budget-main-15 {
    gap: 12px;
    margin-bottom: 16px;
    align-items: start;
  }

  .mvp-budget-left-15 {
    grid-template-rows: repeat(4, 1fr);
    gap: 6px;
  }

  .mvp-budget-right-15 {
    grid-template-rows: repeat(3, 1fr);
    gap: 6px;
  }

  .mvp-budget-item-15 {
    padding: 10px 12px;
  }

  .mvp-budget-item-15 .item-header {
    gap: 8px;
  }

  .mvp-budget-item-15 .item-icon {
    width: 26px;
    height: 26px;
  }

  .mvp-budget-item-15 .item-icon-15 img {
    width: 13px;
    height: 13px;
  }

  .mvp-budget-item-15 .item-info-15 h3 {
    font-size: 0.75rem;
  }

  .mvp-budget-item-15 .item-details-15 {
    font-size: 0.6rem;
  }

  .mvp-budget-item-15 .item-amount-15 {
    font-size: 0.85rem;
    min-width: 60px;
  }

  .total-mvp-budget-card-15 {
    padding: 12px 20px;
    gap: 8px;
  }

  .total-mvp-budget-card-15 .total-icon-15 {
    width: 30px;
    height: 30px;
  }

  .total-mvp-budget-card-15 .total-icon-15 img {
    width: 15px;
    height: 15px;
  }

  .total-mvp-budget-card-15 h3 {
    font-size: 1.2rem;
  }
}

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

  .mvp-budget-container-15 {
    padding: 18px;
    max-width: 650px;
  }

  .mvp-budget-title-15 {
    font-size: 1.5rem;
    margin-bottom: 5px;
  }

  .mvp-budget-subtitle-15 {
    font-size: 0.75rem;
  }

  .mvp-budget-header-15 {
    margin-bottom: 14px;
  }

  .mvp-budget-main-15 {
    gap: 10px;
    margin-bottom: 14px;
    align-items: start;
  }

  .mvp-budget-left-15 {
    grid-template-rows: repeat(4, 1fr);
    gap: 5px;
  }

  .mvp-budget-right-15 {
    grid-template-rows: repeat(3, 1fr);
    gap: 5px;
  }

  .mvp-budget-item-15 {
    padding: 8px 10px;
  }

  .mvp-budget-item-15 .item-header {
    gap: 6px;
  }

  .mvp-budget-item-15 .item-icon {
    width: 24px;
    height: 24px;
  }

  .mvp-budget-item-15 .item-icon-15 img {
    width: 12px;
    height: 12px;
  }

  .mvp-budget-item-15 .item-info-15 h3 {
    font-size: 0.7rem;
  }

  .mvp-budget-item-15 .item-details-15 {
    font-size: 0.55rem;
  }

  .mvp-budget-item-15 .item-amount-15 {
    font-size: 0.8rem;
    min-width: 55px;
  }

  .total-mvp-budget-card-15 {
    padding: 10px 18px;
    gap: 6px;
  }

  .total-mvp-budget-card-15 .total-icon-15 {
    width: 28px;
    height: 28px;
  }

  .total-mvp-budget-card-15 .total-icon-15 img {
    width: 14px;
    height: 14px;
  }

  .total-mvp-budget-card-15 h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 767px) {
  .slide15-content {
    padding: 12px 5px;
  }

  .mvp-budget-container-15 {
    padding: 12px;
    max-width: 100%;
  }

  .mvp-budget-title-15 {
    font-size: 1.3rem;
    margin-bottom: 3px;
    line-height: 1.1;
  }

  .mvp-budget-subtitle-15 {
    font-size: 0.7rem;
    padding: 0 5px;
  }

  .mvp-budget-header-15 {
    margin-bottom: 12px;
  }

  .mvp-budget-main-15 {
    grid-template-columns: 1fr;
    gap: 5px;
    margin-bottom: 12px;
  }

  .mvp-budget-left-15,
  .mvp-budget-right-15 {
    gap: 4px;
  }

  .mvp-budget-item-15 {
    padding: 8px 10px;
    flex-direction: row;
    gap: 8px;
    text-align: left;
  }

  .mvp-budget-item-15 .item-header {
    gap: 8px;
    justify-content: flex-start;
    flex-direction: row;
  }

  .mvp-budget-item-15 .item-icon {
    width: 22px;
    height: 22px;
  }

  .mvp-budget-item-15 .item-icon-15 img {
    width: 11px;
    height: 11px;
  }

  .mvp-budget-item-15 .item-info-15 h3 {
    font-size: 0.7rem;
    text-align: left;
  }

  .mvp-budget-item-15 .item-details-15 {
    font-size: 0.5rem;
    text-align: left;
  }

  .mvp-budget-item-15 .item-amount-15 {
    font-size: 0.75rem;
    min-width: auto;
    text-align: right;
  }

  .total-mvp-budget-card-15 {
    padding: 10px 15px;
    gap: 6px;
    flex-direction: row;
    text-align: center;
  }

  .total-mvp-budget-card-15 .total-icon-15 {
    width: 25px;
    height: 25px;
  }

  .total-mvp-budget-card-15 .total-icon-15 img {
    width: 12px;
    height: 12px;
  }

  .total-mvp-budget-card-15 h3 {
    font-size: 1rem;
  }
}

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

  .mvp-budget-container-15 {
    padding: 8px;
  }

  .mvp-budget-title-15 {
    font-size: 1.2rem;
    margin-bottom: 2px;
  }

  .mvp-budget-subtitle-15 {
    font-size: 0.6rem;
  }

  .mvp-budget-header-15 {
    margin-bottom: 8px;
  }

  .mvp-budget-main-15 {
    gap: 4px;
    margin-bottom: 8px;
  }

  .mvp-budget-left-15,
  .mvp-budget-right-15 {
    gap: 3px;
  }

  .mvp-budget-item-15 {
    padding: 6px 8px;
  }

  .mvp-budget-item-15 .item-header {
    gap: 5px;
  }

  .mvp-budget-item-15 .item-icon {
    width: 20px;
    height: 20px;
  }

  .mvp-budget-item-15 .item-icon-15 img {
    width: 10px;
    height: 10px;
  }

  .mvp-budget-item-15 .item-info-15 h3 {
    font-size: 0.6rem;
  }

  .mvp-budget-item-15 .item-details-15 {
    font-size: 0.5rem;
  }

  .mvp-budget-item-15 .item-amount-15 {
    font-size: 0.7rem;
    min-width: 50px;
  }

  .total-mvp-budget-card-15 {
    padding: 8px 12px;
    gap: 4px;
  }

  .total-mvp-budget-card-15 .total-icon-15 {
    width: 22px;
    height: 22px;
  }

  .total-mvp-budget-card-15 .total-icon-15 img {
    width: 11px;
    height: 11px;
  }

  .total-mvp-budget-card-15 h3 {
    font-size: 0.9rem;
  }
}