/* Ultra Compact Pricing Section to fit all content */
.pricing-area {
    background-color: #f7f9fc;
    padding: 60px 0;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.pricing-card {
    background: #fff;
    border: 1px solid #eef0f2;
    border-radius: 12px;
    padding: 25px 15px;
    width: calc(25% - 12px);
    min-width: 260px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    position: relative;
}

.pricing-card.featured {
    border: 2px solid #00A6B2;
}

.badge-featured {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #00A6B2;
    color: #fff;
    padding: 2px 12px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.pricing-header {
    text-align: center;
    margin-bottom: 20px;
}

.package-name {
    font-size: 11px;
    font-weight: 700;
    color: #999;
    margin-bottom: 8px;
    display: block;
}

.package-title {
    font-size: 14px;
    font-weight: 700;
    color: #00A6B2;
    margin-bottom: 12px;
    line-height: 1.2;
    min-height: 34px;
}

.current-price {
    font-size: 32px;
    font-weight: 800;
    color: #333;
}

.price-currency {
    font-size: 18px;
    margin-left: 2px;
}

.old-price {
    font-size: 13px;
    color: #bbb;
    text-decoration: line-through;
}

.price-period {
    font-size: 11px;
    color: #aaa;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 12px;
    flex-grow: 1;
}

.pricing-features li {
    padding: 5px 0;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    color: #444;
}

.pricing-features li i {
    color: #00A6B2;
    margin-right: 6px;
    margin-top: 3px;
    font-size: 11px;
}

.feat-label {
    display: flex;
    align-items: flex-start;
    max-width: 80%;
    line-height: 1.2;
}

.feat-val {
    font-weight: 700;
    color: #222;
    white-space: nowrap;
    font-size: 11px;
}

.feature-group-title {
    font-weight: 700;
    color: #333;
    margin-top: 10px;
    margin-bottom: 5px;
    display: block;
    font-size: 12px;
    border-bottom: 1px solid #00A6B2;
    padding-bottom: 2px;
}

.sub-items {
    list-style: none;
    padding-left: 15px;
    margin: 5px 0;
}

.sub-items li {
    border: none;
    padding: 2px 0;
    font-size: 11px;
    color: #666;
}

@media (max-width: 1200px) {
    .pricing-card {
        width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .pricing-card {
        width: 100%;
    }
}

.pricing-bottom-btn {
    display: inline-block;
    padding: 16px 45px;
    background: #00A6B2;
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 10px 20px rgba(0, 166, 178, 0.2);
    transition: all 0.3s ease;
}

.pricing-bottom-btn:hover {
    background: #008f9a;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 166, 178, 0.3);
}
