/* Pricing Section */
.pricing-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.05;
}

.grid-pricing {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: flex-end;
}

@media (min-width: 768px) {
    .grid-pricing {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-pricing {
        grid-template-columns: repeat(4, 1fr);
    }
}

.plan-card {
    background: white;
    border-radius: 1.5rem;
    padding: 1.5rem;
    position: relative;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center bottom;
}

.plan-card:hover {
    transform: translateY(-5px);
}

/* Highlight Card */
.plan-highlight {
    background: linear-gradient(145deg, #ffffff 0%, #f0f7ff 100%);
    border: 2px solid var(--primary);
    box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.15);
    z-index: 10;
}

/* Scale logic: Only on desktop */
@media (min-width: 1024px) {
    .plan-highlight {
        transform: scale(1.05);
    }

    .plan-highlight:hover {
        transform: scale(1.08);
    }
}

.plan-basic {
    background: var(--bg-light);
    border: 1px solid #e2e8f0;
}

.plan-dark {
    background: #0f172a;
    color: white;
}

.glass-feature-box {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 3rem;
    border-left: 4px solid var(--primary);
}
/* Dark Mode Pricing */
[data-theme='dark'] .plan-card {
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
}

[data-theme='dark'] .plan-highlight {
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
    border-color: var(--primary);
}

[data-theme='dark'] .plan-basic {
    background: #0f172a;
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme='dark'] .glass-feature-box {
    background: rgba(30, 41, 59, 0.7);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme='dark'] h3, [data-theme='dark'] .price {
    color: #f1f5f9;
}

[data-theme='dark'] .text-muted {
    color: #94a3b8 !important;
}

