/* Container for the pricing plan */
.pricing-plan {
    border-radius: 16px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08) !important;
    padding: 32px 24px;
    width: auto;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    color: #2d3748;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pricing-plan:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
}

/* Featured plan highlighting */
.pricing-plan.featured {
    border: 2px solid #667eea;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.pricing-plan.featured::before {
    content: "Most Popular";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #f56565;
    color: white;
    padding: 6px 24px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 0 0 12px 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Plan Header */
.pricing-plan h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    color: inherit;
}

/* Subtitle text */
.pricing-plan .t1 {
    font-size: 14px;
    color: #718096;
    margin-bottom: 16px;
    font-weight: 500;
}

.pricing-plan.featured .t1 {
    color: rgba(255, 255, 255, 0.9);
}

/* Plan Price */
.pricing-plan .price {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1;
    color: inherit;
}

.pricing-plan .price span {
    font-size: 18px;
    color: #a0aec0;
    font-weight: 500;
}

.pricing-plan.featured .price span {
    color: rgba(255, 255, 255, 0.8);
}

/* Price details */
.pricing-plan .price-details {
    font-size: 14px;
    color: #718096;
    margin-bottom: 24px;
    font-weight: 500;
}

.pricing-plan.featured .price-details {
    color: rgba(255, 255, 255, 0.9);
}

/* CTA Button */
.pricing-plan .cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 24px;
    width: 100%;
    border: none;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.pricing-plan .cta-button:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.pricing-plan.featured .cta-button {
    background: white;
    color: #667eea !important;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.pricing-plan.featured .cta-button:hover {
    background: #f7fafc;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}



/* Feature list */
.pricing-plan ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.pricing-plan ul li {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 12px;
    padding-left: 4px;
    position: relative;
}

.pricing-plan ul li::before {
    content: "✓";
    color: #48bb78;
    margin-right: 12px;
    font-weight: 700;
    font-size: 16px;
}

.pricing-plan.featured ul li::before {
    color: #68d391;
}

/* Feature section header */
.pricing-plan h6 {
    padding: 0;
    margin: 0 0 16px 0;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
    color: #4a5568;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 12px;
}

.pricing-plan.featured h6 {
    color: rgba(255, 255, 255, 0.9);
}

/* Footer information */
.pricing-plan .footer-info {
    font-size: 12px;
    color: #a0aec0;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
}

.pricing-plan.featured .footer-info {
    color: rgba(255, 255, 255, 0.7);
    border-top-color: rgba(255, 255, 255, 0.2);
}

/* Responsive design */
@media (max-width: 768px) {
    .pricing-plan {
        margin-bottom: 24px;
        padding: 24px 20px;
    }
    
    .pricing-plan .price {
        font-size: 40px;
    }
}

/* Additional styling for better visual hierarchy */
.s_comparisons .container-fluid {
    max-width: 1200px;
    margin: 0 auto;
}

.s_comparisons .row {
    gap: 24px;
    justify-content: center;
}

.s_comparisons .col-lg-4 {
    flex: 0 0 auto;
    max-width: 350px;
}

.t1{
    font-size: 14px;
     color: #666;
}
