/* Pricing Section */
#pricing {
   width: 100vw;
   height: 100vh;
   margin: 0;
   overflow: hidden;
   display: flex;
   align-items: center;
   justify-content: center;
}

/* Wrapper for the three boxes */
.pricing-box-wrapper {
  display: flex;
  gap: 50px; /* space between boxes */
}

/* Individual box styling */
.pricing-box {
  width: 322px;
  height: 500px;
  background-color: #0d0d0d;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
}

/* Title */
.pricing-box__title {
  margin-top: 30px;
  color: #DC1C57;
  font-size: 20px;
  text-transform: uppercase;
  font-weight:bold;
}

/* Subtitle */
.pricing-box__subtitle {
  margin-top:-20px;	
  color: #999999;
  font-size: 14px;
	
}

/* Price */
.pricing-box__price {
  margin-top: 20px;
  color: #ffffff;
  font-size: 45px;
  font-weight: bold;
}

/* View License Button */
.pricing-box__button {
  margin-top: 20px;
  padding: 10px 24px;
  background-color: #DC1C57;
  color: #f5f5f5;               /* slightly off-white for better contrast */
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Button Hover State */
.pricing-box__button:hover {
  background-color: #fff;    /* a darker shade of DC1C57 */
  color: #000;
  transform: scale(1.05);
}

/* Divider Line */
.pricing-box__divider {
  width: 80%;
  height: 1px;
  background-color: rgba(255,255,255,0.3);
  margin: 30px auto 0;
}

/* Features Container */
.pricing-box__features {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;  /* space between feature rows */
  width: 100%;
  align-items: flex-start;  /* left-align text */
  padding: 0 20px;          /* horizontal padding inside box */
  box-sizing: border-box;
  margin-left:50px;
}

/* Each feature row */
.pricing-box__feature {
  display: flex;
  align-items: center;
}

/* Icon square */
.pricing-box__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: #370405;  /* slightly darker than #370405 */
  border-radius: 4px;
  color: #DC1C57;
  font-size: 16px;
  margin-right: 10px;
}

/* Feature text */
.pricing-box__feat-text {
  color: #fff;
  font-size: 16px;
}




