/* =====================================================
   Eveningside — Luxury Pricing Blocks
   Injected into Services section
   ===================================================== */

.es-pricing-block {
  margin-top: 2.5rem;
  position: relative;
}

.es-pricing-inner {
  position: relative;
  border: 1px solid rgba(124, 59, 237, 0.2);
  border-radius: 1rem;
  padding: 1.75rem;
  background: linear-gradient(
    135deg,
    rgba(124, 59, 237, 0.05) 0%,
    rgba(10, 10, 20, 0.6) 50%,
    rgba(124, 59, 237, 0.03) 100%
  );
  backdrop-filter: blur(12px);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.es-pricing-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(124, 59, 237, 0.6) 30%,
    rgba(124, 59, 237, 0.8) 50%,
    rgba(124, 59, 237, 0.6) 70%,
    transparent 100%
  );
  opacity: 0.8;
}

.group:hover .es-pricing-inner {
  border-color: rgba(124, 59, 237, 0.35);
}

/* Starting From */
.es-pricing-starting {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
}

.es-label {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: hsl(262 83% 65%);
  font-family: 'Inter', sans-serif;
}

.es-price-main {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #ffffff;
  line-height: 1;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #ffffff 0%, rgba(200, 180, 255, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.es-setup-label {
  font-size: 0.75rem;
  color: hsl(240 11% 57%);
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  margin-top: 0.1rem;
}

/* Divider */
.es-pricing-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(124, 59, 237, 0.3) 0%,
    rgba(255, 255, 255, 0.06) 100%
  );
  margin: 1.25rem 0;
}

/* Monthly */
.es-pricing-monthly {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 1.25rem;
}

.es-monthly-price {
  font-size: 1.125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: -0.01em;
  font-family: 'Inter', sans-serif;
}

.es-monthly-label {
  font-size: 0.75rem;
  color: hsl(240 11% 57%);
  font-weight: 400;
  font-family: 'Inter', sans-serif;
}

/* Range */
.es-pricing-range {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(124, 59, 237, 0.08);
  border: 1px solid rgba(124, 59, 237, 0.15);
  border-radius: 0.5rem;
  padding: 0.625rem 0.875rem;
  margin-bottom: 1.125rem;
  transition: background 0.2s ease;
}

.group:hover .es-pricing-range {
  background: rgba(124, 59, 237, 0.12);
}

.es-range-label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(262 83% 65%);
  font-family: 'Inter', sans-serif;
}

.es-range-value {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.01em;
}

.es-range-arrow {
  color: rgba(124, 59, 237, 0.7);
  margin: 0 0.25rem;
}

/* Note */
.es-pricing-note {
  font-size: 0.75rem;
  line-height: 1.6;
  color: hsl(240 11% 45%);
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  font-style: italic;
  margin: 0;
}

/* Shimmer animation on hover */
.es-pricing-inner::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(124, 59, 237, 0.04) 50%,
    transparent 60%
  );
  transform: skewX(-15deg);
  transition: none;
  pointer-events: none;
}

.group:hover .es-pricing-inner::after {
  left: 120%;
  transition: left 0.8s ease;
}

/* Disclaimer */
.es-pricing-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(124, 59, 237, 0.1);
}

.es-disclaimer-icon {
  font-size: 0.5rem;
  color: rgba(124, 59, 237, 0.5);
  margin-top: 0.3rem;
  flex-shrink: 0;
}

.es-disclaimer-text {
  font-size: 0.7rem;
  line-height: 1.6;
  color: hsl(240 11% 40%);
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  margin: 0;
  font-style: normal;
}

/* Mobile */
@media (max-width: 768px) {
  .es-pricing-inner {
    padding: 1.25rem;
  }

  .es-price-main {
    font-size: 1.875rem;
  }

  .es-pricing-range {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
}
