.pricing-card-66ea31be {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eaeaea;
    font-family: sans-serif;
    max-width: 380px;
    margin: 0 auto;
}

.pricing-card-66ea31be .pricing-header {
    padding: 20px;
    text-align: center;
}

.pricing-card-66ea31be .pricing-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

.pricing-card-66ea31be .pricing-body {
    padding: 30px;
}

.pricing-prices {
    margin-bottom: 25px;
}

.pricing-prices .original-price {
    color: #8c97a7;
    text-decoration: line-through;
    font-size: 16px;
    margin-bottom: 5px;
}

.current-price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.current-price-row .current-price {
    font-size: 28px;
    font-weight: 700;
    color: #3b4351;
}

.current-price-row .discount-badge {
    background: #3eb853;
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
}

.pricing-prices .recurrence {
    color: #5c677d;
    font-size: 15px;
}

.pricing-divider {
    border: 0;
    border-top: 1px solid #eaeaea;
    margin: 20px 0;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #5c677d;
    font-size: 16px;
}

.pricing-features .check-icon {
    width: 18px;
    height: 18px;
    margin-right: 12px;
    flex-shrink: 0;
}

.info-tooltip {
    margin-left: 5px;
    cursor: help;
    position: relative;
    color: #8c97a7;
}

.info-tooltip:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 10;
    margin-bottom: 5px;
}

.pricing-cta-wrap {
    text-align: center;
}

.pricing-cta-btn-66ea31be {
    display: block;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s;
    border-radius: 6px;
    padding: 15px;
    overflow: hidden;
    position: relative;
}

.pricing-cta-btn-66ea31be .cta-hover-text {
    display: none;
}

.pricing-cta-btn-66ea31be:hover {
    opacity: 0.9;
}

/* Logic for text swap on hover if hover text exists */
.pricing-cta-btn-66ea31be:hover .cta-normal {
    display: var(--hover-display, block);
}
/* If hover text is present, hide normal text and show hover on hover */
.pricing-cta-btn-66ea31be:has(.cta-hover-text):hover .cta-normal {
    display: none;
}
.pricing-cta-btn-66ea31be:has(.cta-hover-text):hover .cta-hover-text {
    display: block;
}