/* ========== PRICING PAGE OVERRIDES ========== */
/* Remove outer card effect from page-content only on pricing page */
.pricing-content {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

.pricing-content::before {
    display: none !important;
}

/* Override borders.css forcing borders on page-content - highest priority */
.page-container .pricing-content,
.pricing-content,
div.pricing-content {
    border: none !important;
    border-color: transparent !important;
}

.pricing-content:hover,
.pricing-content:focus,
.pricing-content:active {
    border: none !important;
    border-color: transparent !important;
}

/* ========== PRICING SECTION ========== */
.pricing-header {
    text-align: center;
    margin-bottom: 1rem;
    padding: 1rem 0;
    position: relative;
}

.pricing-hero {
    position: relative;
    z-index: 2;
}

.pricing-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #48bb78;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.pricing-subtitle {
    font-size: 1.125rem;
    color: #a0aec0;
    margin-bottom: 0.5rem;
    opacity: 0.9;
    line-height: 1.5;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-plans {
    margin-bottom: 2rem;
}

.plans-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.plan-card {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    border: 1px solid #2d3748 !important;
    border-color: #2d3748 !important;
    border-radius: 1rem;
    padding: 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
    overflow: hidden;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: #2d3748 !important;
}

.plan-card.featured {
    border-color: #48bb78;
    box-shadow: 0 5px 15px rgba(72, 187, 120, 0.2);
}

.plan-header {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.plan-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #48bb78;
    margin-bottom: 0.75rem;
}

.plan-price {
    margin-bottom: 1rem;
}

.price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.price-container .limited-time-badge {
    margin: 0.25rem 0;
}

.price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: #e2e8f0;
}

.price-original {
    font-size: 1.5rem;
    font-weight: 500;
    color: #718096;
    text-decoration: line-through;
    opacity: 0.7;
}

.price-period {
    color: #cbd5e0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.plan-savings {
    color: #48bb78;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    padding: 0.25rem 0.75rem;
    background: rgba(72, 187, 120, 0.1);
    border-radius: 9999px;
    display: inline-block;
}

.limited-time-badge {
    background: rgba(96, 165, 250, 0.2);
    color: #60a5fa;
    font-weight: 500;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    border: 1px solid rgba(96, 165, 250, 0.3);
    text-align: center;
    margin: 0.5rem 0;
    display: inline-block;
}

.plan-features {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #cbd5e0;
    border-bottom: 1px solid rgba(74, 85, 104, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    color: #48bb78;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-check {
    width: 14px;
    height: 14px;
    color: #48bb78;
    flex-shrink: 0;
}

.plan-action {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-top: auto;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .plans-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .plans-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-title {
        font-size: 2.5rem;
    }
    
    .plan-card {
        padding: 1.5rem;
    }
    
    .plan-card.featured {
        order: -1;
    }
} 