/* Smooth Scroll Behavior */
html {
  scroll-behavior: smooth;
}

/* Hero Stats Compact - Inline Style */
.hero-stats-compact {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.stat-item-compact {
  text-align: center;
}

.stat-number-compact {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label-compact {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.stat-divider-compact {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
}

/* Pillars Visual Container */
.pillars-visual-container {
  position: relative;
  width: 100%;
  animation: float-visual 6s ease-in-out infinite;
  max-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillars-showcase-img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

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

/* Value Props Compact */
.value-props-compact {
  position: relative;
  z-index: 2;
}

.value-prop-item {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  height: 100%;
}

.value-prop-item:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.value-prop-item i {
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
}

.value-prop-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  line-height: 1.3;
}

/* Responsive - Compact Stats */
@media (max-width: 768px) {
  .pillars-visual-container {
    max-height: 300px;
  }

  .pillars-showcase-img {
    max-height: 300px;
  }

  .stat-number-compact {
    font-size: 1.5rem;
  }

  .stat-label-compact {
    font-size: 0.7rem;
  }

  .stat-divider-compact {
    height: 35px;
  }

  .value-prop-item {
    padding: 1rem;
  }

  .value-prop-item i {
    font-size: 1.25rem;
  }

  .value-prop-item span {
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .pillars-visual-container {
    max-height: 250px;
  }

  .pillars-showcase-img {
    max-height: 250px;
  }

  .hero-stats-compact {
    justify-content: space-between;
    width: 100%;
  }

  .stat-number-compact {
    font-size: 1.25rem;
  }

  .stat-label-compact {
    font-size: 0.65rem;
  }

  .stat-divider-compact {
    height: 30px;
  }
}