h1,
h2 {
    font-family: 'Inter', sans-serif;
}

.card {
    background: white;
    /*border-radius: 12px;*/
    padding: 1.25rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    margin-bottom: 1rem;
}

.container {
    margin: 0 auto;
}



.muted {
    color: #666;
    font-size: .95rem;
}


.small {
    font-size: .9rem
}

.members-list {
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.feature-row {
    display: flex;
    justify-content: space-between;
    padding: .5rem 0;
    border-bottom: 1px solid #f1f1f1
}

.hidden {
    display: none
}

.scrolled-header-bg {
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.space-dropdown {
    max-height: 400px;
    overflow-y: auto;
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Modal Content */
.modal-content {
    background: white;
    border-radius: 24px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
    from {
        transform: translateY(20px) scale(0.98);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Account Plan Cards */
.account-plan-card {
    background: #fdfdfd;
    border: 2px solid #f1f1f1;
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.account-plan-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.account-plan-card.featured {
    border-color: var(--persian-green);
    background: #fff;
    transform: scale(1.02);
}

.account-plan-card.current {
    border-color: #e5e7eb;
    background: #f9fafb;
    opacity: 0.9;
}

.featured-label {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--persian-green);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-plan-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent-primary);
}

.modal-plan-price.loading-price {
    font-size: 1rem;
    color: #9ca3af;
    font-style: italic;
    font-weight: 400;
}

/* Purchase Button */
.purchase-btn {
    display: block;
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.purchase-btn.btn-primary {
    background: var(--accent-primary);
    color: white;
}

.purchase-btn.btn-secondary {
    background: #f3f4f6;
    color: #374151;
}

.purchase-btn.disabled {
    background: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
    pointer-events: none;
}

.purchase-btn:not(.disabled):hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

.hidden {
    display: none !important;
}