/* ====== FADE IN ANIMATIONS ====== */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.animated {
  opacity: 1;
  transform: translateY(0);
}

/* ====== PRICING SECTION BACKGROUND ====== */
.pricing-section {
  background-color: #0a0a0c;
  color: #ffffff;
  text-align: center;
  position: relative;
  padding: 40px 20px;
  width: 100vw; /* Full viewport width */
  margin-left: calc(-50vw + 50%); /* Center full-width element */
  margin-right: calc(-50vw + 50%);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; /* Keep title bold */
  text-align: center;
  margin-bottom: 40px;
  background: linear-gradient(135deg, #ffffff, #aaa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
}

.pricing-cards-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 100%; /* Full width on mobile */
  margin: 0 auto;
  padding: 0 20px; /* Add padding instead of constraining width */
}

.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px 25px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(14, 165, 255, 0.15);
}

.pricing-card.online {
  border-top: 5px solid #0ea5ff;
}

.pricing-card.office {
  border-top: 5px solid #7c3aed;
}

.pricing-header {
  margin-bottom: 30px;
  text-align: center;
  width: 100%;
}

.pricing-type {
  font-size: 1.3rem;
  font-weight: 600; /* Reduced from 700 */
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.price-large {
  font-size: 3rem;
  font-weight: 800; /* Keep price bold */
  background: linear-gradient(135deg, #0ea5ff, #7c3aed);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
  line-height: 1;
  text-align: center;
}

.price-subtitle {
  font-size: 1rem;
  font-weight: 400; /* Normal weight */
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.4;
}

.features-list {
  text-align: left;
  width: 100%;
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.95);
}

.feature-check {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #0ea5ff, #7c3aed);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.feature-item span {
  font-size: 0.95rem;
  font-weight: 400; /* Normal weight */
  line-height: 1.4;
  text-align: justify;
}

.buy-btn {
  background: linear-gradient(135deg, #0ea5ff, #7c3aed);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 600; /* Slightly bold for button */
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-decoration: none;
  width: 100%;
}

.buy-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(14, 165, 255, 0.3);
}

.pricing-note {
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
  font-weight: 400;
}

/* ====== MOBILE VERSION ====== */
@media (max-width: 768px) {
  .pricing-cards-container {
    padding: 0 15px;
  }
  
  .pricing-card {
    padding: 25px 20px;
  }
  
  .price-large {
    font-size: 2.5rem;
  }
  
  .feature-item span {
    font-size: 0.9rem;
  }
  
  .buy-btn {
    padding: 0.9rem;
    font-size: 0.95rem;
  }
  
  .section-title {
    font-size: 1.6rem;
    line-height: 1.3;
    margin-bottom: 25px;
  }
}


/* ====== DESKTOP STYLES ====== */
@media (min-width: 768px) {
  .pricing-section {
    padding: 80px 40px;
  }
  
  .section-title {
    margin-bottom: 50px;
  }
  
  .pricing-cards-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px; /* Wider container */
    padding: 0 40px;
  }
  
  .pricing-card {
    padding: 50px 40px;
    border-radius: 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .price-large {
    font-size: 3.5rem;
  }
  
  .price-subtitle {
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.5;
  
  }
    .pricing-note {
    font-size: 1rem;
    max-width: 700px;
  }
}

