/* Pricing Slabs */
.lab-slabs {
    margin: 40px 0;
    text-align: center;
}

.slab-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.slab-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    flex: 1;
    min-width: 250px;
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.slab-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--secondary-color);
}

.slab-box:nth-child(2)::before {
    background: #ffa502;
}

.slab-box:nth-child(3)::before {
    background: var(--primary-color);
}

.slab-percent {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    display: block;
    margin-bottom: 5px;
}

.slab-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slab-range {
    display: block;
    margin-top: 10px;
    font-weight: 600;
    color: var(--primary-color);
}

/* New Pricing Cards */
.pricing-section {
    padding: 60px 0;
    background: #f8fafc;
}

.pricing-header-row {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.price-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.price-card.featured {
    border-color: var(--secondary-color);
    transform: scale(1.05);
    z-index: 5;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.price-card.featured:hover {
    transform: scale(1.08);
    /* slightly more on hover */
}

.best-value-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--secondary-color);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.price-header {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid #dbeafe;
}

.price-card.featured .price-header {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.price-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.price-tag {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.price-tag span {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.price-features {
    padding: 30px;
    flex-grow: 1;
}

.price-features ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: start;
    gap: 12px;
    font-size: 1rem;
    color: #4b5563;
}

.price-features ul li i {
    color: var(--secondary-color);
    margin-top: 5px;
}

.price-footer {
    padding: 30px;
    text-align: center;
    background: #f9fafb;
}

.price-btn {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.price-btn.basic {
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.price-btn.basic:hover {
    background: var(--primary-color);
    color: white;
}

.price-btn.pro {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 14px rgba(0, 86, 179, 0.3);
}

.price-btn.pro:hover {
    background: var(--primary-dark);
}

/* Specialized Departments Grid */
.dept-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin: 30px 0;
}

.dept-tag {
    background: rgba(0, 198, 255, 0.1);
    color: var(--primary-dark);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dept-tag i {
    color: var(--secondary-color);
}