/* Corrected Mobile-First Grid CSS for Humanoid Healthcare Section */

/* Section Styling */
.section-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c5f5f;
  margin-bottom: 1rem;
  text-align: center;
}

.section h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #2c5f5f;
  margin-bottom: 0.5rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #ff6b35;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-align: center;
}

.section-content p {
  text-align: center;
  color: #666;
  margin-bottom: 2rem;
}

/* Grid Layout */
.investor-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Grid Items */
.grid-item {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 2px solid #e0f2f1;
  transition: all 0.3s ease;
  position: relative;
}

.grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border-color: #4db6ac;
}

/* Primary CTA Styling */
.grid-item.primary-cta {
  background: linear-gradient(135deg, #4db6ac 0%, #26a69a 100%);
  color: white;
  border: 3px solid #ff6b35;
}

.grid-item.primary-cta h3 {
  color: white;
}

/* START HERE Badge */
.start-here-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #ff6b35;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  transform: rotate(15deg);
  box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

/* Icon Styling - All icons same size */
.grid-icon-img {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem auto;
  display: block;
  border-radius: 12px;
  object-fit: contain;
}

/* Specific adjustments for consistent sizing */
.grid-item:nth-child(2) .grid-icon-img {
  width: 110px;
  height: 110px;
}

.grid-item:nth-child(6) .grid-icon-img {
  width: 120px;
  height: 120px;
}

/* Grid Content */
.grid-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c5f5f;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.grid-item.primary-cta h3 {
  color: white;
}

/* Button Styling */
.grid-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #4db6ac;
  color: white;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  min-width: 140px;
}

.grid-button:hover {
  background: #26a69a;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(77, 182, 172, 0.4);
}

.grid-button.primary {
  background: #ff6b35;
  font-size: 1.1rem;
  padding: 1.2rem 2.5rem;
}

.grid-button.primary:hover {
  background: #e55a2b;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

/* Arrow and Download Icons */
.arrow, .download-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.grid-button:hover .arrow {
  transform: translateX(3px);
}

.grid-button:hover .download-icon {
  transform: translateY(2px);
}

/* Tablet Layout */
@media (min-width: 768px) {
  .investor-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .section-main-title {
    font-size: 3rem;
  }
  
  .section h2 {
    font-size: 2.5rem;
  }
}

/* Desktop Layout */
@media (min-width: 1024px) {
  .investor-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    padding: 0 2rem;
  }
  
  .grid-item {
    padding: 2.5rem;
  }
  
  .grid-item h3 {
    font-size: 1.4rem;
  }
}

/* Large Desktop */
@media (min-width: 1200px) {
  .investor-grid {
    padding: 0;
  }
}

