/* ==================================================
PLANS PAGE STYLES
================================================== */

.plans-page {
    font-family: 'Inter', sans-serif; 
    color: #333;
    /* background: #f8f9fa; */
    margin: 0;
    padding: 0;
}

.plans-page .plans-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.plans-page .plans-header {
    text-align: center;
    margin-bottom: 3rem;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.plans-page .plans-headline {
    margin-bottom: 2rem;
    text-align: center;
    width: 100%;
}

.plans-page .plans-headline span {
    border-bottom: 4px solid #4ea5f2;
    padding-bottom: 2px;
}

.plans-page .plans-subtitle {
    margin: 0;
    text-align: center;
    width: 100%;
}

.plans-page .plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.plans-page .plans-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    border: 2px solid #ccc;
    position: relative;
    justify-content: space-between;
}

.plans-page .plans-card:hover {
    transform: translateY(-5px);
    border-color: #4ea5f2;
}

.plans-page .plans-card.plans-featured {
    border: 2px solid #4ea5f2;
}

.plans-page .plans-card-header {
    text-align: center;
    margin-bottom: 1rem;
}

.plans-page .plans-card-icon {
    font-size: 2.5rem;
    color: #65B741;
    margin-bottom: 1rem;
}

.plans-page .plans-card-name {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 0.5rem;
}

.plans-page .plans-card-subtitle {
    color: #4ea5f2;
    margin-bottom: 0;
}

.plans-page .plans-card-price {
    font-size: 2.5rem;
    color: #4ea5f2;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.plans-page .plans-currency {
    /* font-size: 1rem; */
    font-weight: 400;
    color: #4ea5f2;
}

.plans-page .plans-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 0;
}

.plans-page .plans-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #000;
}

.plans-page .plans-features li::before {
    content: "✓";
    color: #65B741;
    margin-right: 0.5rem;
    font-weight: bold;
}

.plans-page .plans-purchase-btn {
    background: #4ea5f2;
    color: white;
    border: none;
    padding: 6px 30px;
    border-radius: 4px;
    font-size: 0.85em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    height: 32px;
    min-width: auto !important;
    width: 100% !important;
    text-align: center;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    white-space: nowrap;
    margin: 0 auto;
}

.plans-page .plans-purchase-btn:hover {
    background: #3a8bd9;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(78, 165, 242, 0.2);
}

.plans-page .plans-purchase-btn.plans-disabled {
    background: #cccccc;
    cursor: not-allowed;
    opacity: 0.7;
    pointer-events: none;
}

.plans-page .plans-savings-tag {
    background: #65B741;
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    position: absolute;
    top: -12px;
    right: 20px;
    z-index: 1;
}

.plans-page .plans-current-badge {
    background: #65B741;
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    position: absolute;
    top: -12px;
    left: 20px;
    z-index: 1;
}

/* Responsive styles */
/* @media (max-width: 768px) {
    .plans-page .plans-container {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .plans-page .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .plans-page .plans-card {
        padding: 1.5rem;
    }
}  */