/* Data-Driven Design Section */
.data-driven-section {
  background: linear-gradient(135deg, rgba(255, 240, 245, 0.3), rgba(255, 255, 255, 1));
  padding: 6rem 0;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-top: 1rem;
}

.data-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.data-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(20px);
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.data-card:hover {
  border-color: #ffd700;
}

.data-card:nth-child(1) {
  animation: fadeUp 0.8s ease-out 0.2s forwards;
}

.data-card:nth-child(2) {
  animation: fadeUp 0.8s ease-out 0.4s forwards;
}

.data-card:nth-child(3) {
  animation: fadeUp 0.8s ease-out 0.6s forwards;
}

.card-icon {
  margin-bottom: 1.5rem;
}

.card-icon svg {
  width: 32px;
  height: 32px;
  stroke: #333;
  stroke-width: 1.5;
}

.card-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.subtitle {
  font-size: 0.9rem;
  color: #666;
  display: block;
  margin-bottom: 1rem;
}

.card-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1.5rem;
}

.highlight-stat {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 1rem;
  margin-top: auto;
}

.highlight-stat .stat {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.3rem;
}

.highlight-stat .label {
  font-size: 0.9rem;
  color: #666;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .data-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 576px) {
  .data-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .data-card {
    padding: 1.5rem;
  }

  .highlight-stat .stat {
    font-size: 1.8rem;
  }
}

/* Analytics Screenshot Styles */
.analytics-container {
  max-width: 80%;
  /* Reduced by 20% from 100% */
  margin: 2rem auto;
}

.analytics-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive adjustments for analytics section */
@media (max-width: 991px) {
  .analytics-container {
    margin: 1.5rem auto;
  }
}

@media (max-width: 576px) {
  .analytics-container {
    margin: 1rem auto;
  }
}
