/* Pricing Card Styles */
.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Plan Header */
.plan-header {
    height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.plan-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    color: #1a1a1a;
    font-family: 'Lato';
}

.plan-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
    font-family: 'Lato';
    letter-spacing: 0.4px;
}

/* Discount Area */
.discount-area {
    height: 40px;
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.discount_badge {
    background: #a7f3cc;
    color: #065F41;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Price Section */
.price-section {
    margin-bottom: 2rem;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.original-price {
    color: #999;
    text-decoration: line-through;
    font-size: 1.5rem;
    margin-bottom: 0.55rem;
    height: 1.2rem;
    font-family: 'Inter';
    letter-spacing: 0.4px;
}

.current-price {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
    font-family: 'Inter';
    letter-spacing: 0.4px;
}

.price-period {
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
}

/* CTA Button */
.cta-button {
    background: #000 !important;
    color: white !important;
    border: none !important;
    border-radius: 25px !important;
    padding: 0.8rem 2rem !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    transition: all 0.3s ease !important;
    margin-bottom: 1.5rem;
    font-family: 'Inter';
}

.cta-button:hover {
    background: #333 !important;
    transform: translateY(-1px);
}

.cta-button.outline {
    background: transparent !important;
    color: #333 !important;
    border: 2px solid #ddd !important;
    border-radius: 20px !important;
}

.cta-button.outline:hover {
    background: #f5f5f5 !important;
    border-color: #2e2e2e !important;
    color: #333 !important;

}

/* Features Section */
.features_section {
    flex-grow: 1;
    margin-top: 40px;
    font-family: 'Inter';
    width: 103%;
}

.features_title {
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.feature_item {
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #333;
}

.feature_item i {
    color: #4CAF50;
    margin-right: 0.75rem;
    font-size: 0.8rem;
}

/* Usage Section */
.usage-section {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.usage-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #333;
    font-family: 'Inter';
}

.usage-item i {
    color: #4CAF50;
    margin-right: 0.75rem;
    font-size: 0.8rem;
}

/* Icon Shield */
.ic_shield > i {
    color: #333;
    font-size: 15px;
    padding-left: 8px;
}

/* Text Bold */
._pbold {
    font-weight: 600;
}