/* Pricing Value Section */
.pricing-value {
  padding: 5rem 0;
  background: rgba(255, 255, 255, 0.95);
  position: relative;
  overflow: hidden;
}

.pricing-value::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 249, 249, 0.95) 100%);
  z-index: 0;
}

.pricing-value .container {
  position: relative;
  z-index: 1;
}

.pricing-value .container {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.pricing-value .container.visible {
  opacity: 1;
  transform: scale(1);
}

.section-title {
  display: inline-block;
}

.section-title span {
  display: inline-block;
}

.section-title span:nth-child(1) { animation: letterWave 0.5s ease-out 0.1s forwards; }
.section-title span:nth-child(2) { animation: letterWave 0.5s ease-out 0.15s forwards; }
.section-title span:nth-child(3) { animation: letterWave 0.5s ease-out 0.2s forwards; }
.section-title span:nth-child(4) { animation: letterWave 0.5s ease-out 0.25s forwards; }
.section-title span:nth-child(5) { animation: letterWave 0.5s ease-out 0.3s forwards; }
.section-title span:nth-child(6) { animation: letterWave 0.5s ease-out 0.35s forwards; }
.section-title span:nth-child(7) { animation: letterWave 0.5s ease-out 0.4s forwards; }
.section-title span:nth-child(8) { animation: letterWave 0.5s ease-out 0.45s forwards; }
.section-title span:nth-child(9) { animation: letterWave 0.5s ease-out 0.5s forwards; }
.section-title span:nth-child(10) { animation: letterWave 0.5s ease-out 0.55s forwards; }
.section-title span:nth-child(11) { animation: letterWave 0.5s ease-out 0.6s forwards; }
.section-title span:nth-child(12) { animation: letterWave 0.5s ease-out 0.65s forwards; }
.section-title span:nth-child(13) { animation: letterWave 0.5s ease-out 0.7s forwards; }
.section-title span:nth-child(14) { animation: letterWave 0.5s ease-out 0.75s forwards; }
.section-title span:nth-child(15) { animation: letterWave 0.5s ease-out 0.8s forwards; }
.section-title span:nth-child(16) { animation: letterWave 0.5s ease-out 0.85s forwards; }

@keyframes letterWave {
  0% { transform: translateY(0); opacity: 0; }
  50% { transform: translateY(-10px); opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-item {
  background: linear-gradient(135deg, var(--white) 0%, #f9f9f9 100%);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(20px);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.feature-item.feature-highlight {
  border: 2px solid var(--yellow-accent);
  position: relative;
  transition: box-shadow 0.3s ease;
}

.feature-item.feature-highlight:hover {
  box-shadow: 0 0 20px rgba(250, 195, 17, 0.5);
  animation: none;
}

.feature-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.feature-item:not(.feature-highlight) {
  transition: box-shadow 0.3s ease;
}

.feature-item.feature-highlight:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-item:nth-child(1) {
  animation: fadeInUp 0.4s ease-out 0.2s forwards;
}

.feature-item:nth-child(2) {
  animation: fadeInUp 0.4s ease-out 0.4s forwards;
}

.feature-item:nth-child(3) {
  animation: fadeInUp 0.4s ease-out 0.6s forwards;
}

.feature-item:nth-child(4) {
  animation: fadeInUp 0.4s ease-out 0.8s forwards;
}

.feature-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.feature-item:hover .feature-icon {
  text-shadow: 0 0 15px rgba(250, 195, 17, 0.7);
  transform: scale(1.2) translateY(-5px);
  animation: iconBounce 0.6s ease infinite alternate;
}

.feature-icon {
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--yellow-accent);
}

.feature-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--dark-text);
}

.feature-description {
  color: var(--secondary-text);
}

.comparison-container {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  animation: fadeIn 1s ease-out 0.9s both;
  position: relative;
}

.comparison-column {
  flex: 1;
  max-width: 400px;
  animation: slideIn 1s ease-out 1.2s both;
  opacity: 1;
  transition: opacity 0.3s ease;
}
